diff --git a/Docker/requirements.txt b/Docker/requirements.txt index cbbd2bf..78c9ce1 100644 --- a/Docker/requirements.txt +++ b/Docker/requirements.txt @@ -26,6 +26,10 @@ certifi==2026.1.4 # requests charset-normalizer==3.4.4 # via requests +chonkie==1.5.6 + # via assistance-engine +chonkie-core==0.9.2 + # via chonkie click==8.3.1 # via nltk colorama==0.4.6 ; sys_platform == 'win32' @@ -81,12 +85,16 @@ idna==3.11 # httpx # requests # yarl +jinja2==3.1.6 + # via model2vec jmespath==1.1.0 # via # boto3 # botocore joblib==1.5.3 - # via nltk + # via + # model2vec + # nltk jsonpatch==1.33 # via langchain-core jsonpointer==3.0.0 @@ -137,8 +145,16 @@ langsmith==0.7.6 # langchain-core loguru==0.7.3 # via assistance-engine +markdown-it-py==4.0.0 + # via rich +markupsafe==3.0.3 + # via jinja2 marshmallow==3.26.2 # via dataclasses-json +mdurl==0.1.2 + # via markdown-it-py +model2vec==0.7.0 + # via chonkie multidict==6.7.1 # via # aiohttp @@ -150,9 +166,12 @@ nltk==3.9.3 numpy==2.4.2 # via # assistance-engine + # chonkie + # chonkie-core # elasticsearch # langchain-aws # langchain-community + # model2vec # pandas ollama==0.6.1 # via langchain-ollama @@ -192,6 +211,8 @@ pydantic-core==2.41.5 # via pydantic pydantic-settings==2.13.1 # via langchain-community +pygments==2.19.2 + # via rich python-dateutil==2.9.0.post0 # via # botocore @@ -220,10 +241,16 @@ requests==2.32.5 # requests-toolbelt requests-toolbelt==1.0.0 # via langsmith +rich==14.3.3 + # via model2vec s3transfer==0.16.0 # via boto3 +safetensors==0.7.0 + # via model2vec setuptools==82.0.0 - # via grpcio-tools + # via + # grpcio-tools + # model2vec simsimd==6.5.13 # via elasticsearch six==1.17.0 @@ -234,14 +261,20 @@ sqlalchemy==2.0.46 # langchain-community tenacity==9.1.4 # via + # chonkie # langchain-community # langchain-core tokenizers==0.22.2 - # via langchain-huggingface + # via + # chonkie + # langchain-huggingface + # model2vec tqdm==4.67.3 # via # assistance-engine + # chonkie # huggingface-hub + # model2vec # nltk typing-extensions==4.15.0 # via diff --git a/Docker/src/server.py b/Docker/src/server.py index 128a582..310d5bc 100644 --- a/Docker/src/server.py +++ b/Docker/src/server.py @@ -1,6 +1,8 @@ import logging import os from concurrent import futures +from dotenv import load_dotenv +load_dotenv() import brunix_pb2 import brunix_pb2_grpc @@ -35,7 +37,7 @@ class BrunixEngine(brunix_pb2_grpc.AssistanceEngineServicer): index_name=os.getenv("ELASTICSEARCH_INDEX"), embedding=self.embeddings, query_field="text", - vector_query_field="vector", + vector_query_field="embedding", ) self.graph = build_graph( llm=self.llm, diff --git a/Makefile b/Makefile deleted file mode 100644 index c678e67..0000000 --- a/Makefile +++ /dev/null @@ -1,22 +0,0 @@ -.PHONY: help requirements docker-build docker-up docker-down clean start tunnels_up - -help: - @echo "Available commands:" - @echo " make sync_requirements - Export dependencies from pyproject.toml to requirements.txt" - @echo " make tunnels_up - Start tunnels" - @echo " make compose_up - Run tunnels script and start Docker Compose" - -sync_requirements: - @echo "Exporting dependencies from pyproject.toml to requirements.txt..." - uv export --format requirements-txt --no-hashes --no-dev -o Docker/requirements.txt - @echo "✓ requirements.txt updated successfully" - -tunnels_up: - bash ./scripts/start-tunnels.sh < /dev/null & - @echo "✓ Tunnels started!" - -compose_up: - bash ./scripts/start-tunnels.sh < /dev/null & - sleep 2 - docker compose -f Docker/docker-compose.yaml up -d --build - @echo "✓ Done!" diff --git a/README.md b/README.md index 9959fbf..5daf4c1 100644 --- a/README.md +++ b/README.md @@ -46,16 +46,18 @@ graph TD ├── README.md # System documentation & Dev guide ├── changelog # Version tracking and release history ├── pyproject.toml # Python project configuration -├── docs/ -| ├── AVAP Language: ... # AVAP DSL Documentation -| | └── AVAP.md -│ ├── developer.avapfr... # Documents on developer web page -| └── LRM/ # AVAP LRM documentation -| └── avap.md ├── Docker/ +│ ├── protos/ +│ │ └── brunix.proto # Protocol Buffers: The source of truth for the API +│ ├── src/ +│ │ ├── graph.py # Workflow graph orchestration +│ │ ├── prompts.py # Centralized prompt definitions +│ │ ├── server.py # gRPC Server & RAG Orchestration +│ │ ├── state.py # Shared state management +│ │ └── utils/ # Utility modules │ ├── Dockerfile # Container definition for the Engine │ ├── docker-compose.yaml # Local orchestration for dev environment -│ ├── requirements.txt # Python dependencies for Docker +│ ├── requirements.txt # Python dependencies for Docker │ ├── protos/ │ │ └── brunix.proto # Protocol Buffers: The source of truth for the API │ └── src/ @@ -70,16 +72,12 @@ graph TD │ └── kubeconfig.yaml # Kubernetes cluster configuration ├── scripts/ │ └── pipelines/ -| ├── samples_generator/ # AVAP Sample generator -| | └─ generate_mbap.py │ └── flows/ # Data processing flows -| └─ elasticsearch_ingestion.py └── src/ - ├── __init__.py + ├── config.py # Environment variables configuration file └── utils/ ├── emb_factory.py # Embedding model factory - ├── llm_factory.py # LLM model factory - └── __init__.py + └── llm_factory.py # LLM model factory ``` --- @@ -138,6 +136,7 @@ The engine utilizes Langfuse for end-to-end tracing and performance monitoring. Create a `.env` file in the project root with the following variables: ```env +PYTHONPATH=${PYTHONPATH}:/home/... ELASTICSEARCH_URL=http://host.docker.internal:9200 ELASTICSEARCH_LOCAL_URL=http://localhost:9200 ELASTICSEARCH_INDEX=avap-docs-test @@ -149,10 +148,13 @@ OLLAMA_URL=http://host.docker.internal:11434 OLLAMA_LOCAL_URL=http://localhost:11434 OLLAMA_MODEL_NAME=qwen2.5:1.5b OLLAMA_EMB_MODEL_NAME=qwen3-0.6B-emb:latest +HF_TOKEN=hf_... +HF_EMB_MODEL_NAME=Qwen/Qwen3-Embedding-0.6B ``` | Variable | Required | Description | Example | |---|---|---|---| +| `PYTHONPATH` | No | Path that aims to the root of the project | `${PYTHONPATH}:/home/...` | | `ELASTICSEARCH_URL` | Yes | Elasticsearch endpoint used for vector/context retrieval in Docker | `http://host.docker.internal:9200` | | `ELASTICSEARCH_LOCAL_URL` | Yes | Elasticsearch endpoint used for vector/context retrieval in local | `http://localhost:9200` | | `ELASTICSEARCH_INDEX` | Yes | Elasticsearch index name used by the engine | `avap-docs-test` | @@ -164,6 +166,8 @@ OLLAMA_EMB_MODEL_NAME=qwen3-0.6B-emb:latest | `OLLAMA_LOCAL_URL` | Yes | Ollama endpoint used for text generation/embeddings in local | `http://localhost:11434` | | `OLLAMA_MODEL_NAME` | Yes | Ollama model name for generation | `qwen2.5:1.5b` | | `OLLAMA_EMB_MODEL_NAME` | Yes | Ollama embeddings model name | `qwen3-0.6B-emb:latest` | +| `HF_TOKEN` | Yes | Hugginface secret token | `hf_...` | +| `HF_EMB_MODEL_NAME` | Yes | Hugginface embeddings model name | `Qwen/Qwen3-Embedding-0.6B` | > Never commit real secret values. Use placeholder values when sharing configuration examples. @@ -172,13 +176,13 @@ Open a terminal and establish the connection to the Devaron Cluster: ```bash # 1. AI Model Tunnel (Ollama) -kubectl port-forward --address 0.0.0.0 svc/ollama-light-service 11434:11434 -n brunix --kubeconfig ./kubernetes/ivar.yaml & +kubectl port-forward --address 0.0.0.0 svc/ollama-light-service 11434:11434 -n brunix --kubeconfig ./kubernetes/kubeconfig.yaml & # 2. Knowledge Base Tunnel (Elasticsearch) -kubectl port-forward --address 0.0.0.0 svc/brunix-vector-db 9200:9200 -n brunix --kubeconfig ./kubernetes/ivar.yaml & +kubectl port-forward --address 0.0.0.0 svc/brunix-vector-db 9200:9200 -n brunix --kubeconfig ./kubernetes/kubeconfig.yaml & # 3. Observability DB Tunnel (PostgreSQL) -kubectl port-forward --address 0.0.0.0 svc/brunix-postgres 5432:5432 -n brunix --kubeconfig ./kubernetes/ivar.yaml & +kubectl port-forward --address 0.0.0.0 svc/brunix-postgres 5432:5432 -n brunix --kubeconfig ./kubernetes/kubeconfig.yaml & ``` ### 5. Launch the Engine diff --git a/changelog b/changelog index ac8e3f3..3d90407 100644 --- a/changelog +++ b/changelog @@ -4,6 +4,25 @@ All notable changes to the **Brunix Assistance Engine** will be documented in th --- +## [1.5.0] - 2026-03-12 + +### Added +- IMPLEMENTED: + - `scripts/pipelines/flows/translate_mbpp.py`: pipeline to generate synthetic dataset from mbpp dataset. + - `scripts/tasks/prompts.py`: module containing prompts for pipelines. + - `scripts/tasks/chunk.py`: module containing functions related to chunk management. + - `synthetic_datasets`: folder containing generated synthetic datasets. + - `src/config.py`: environment variables configuration file. + +### Changed +- REFACTORED: `scripts/pipelines/flows/elasticsearch_ingestion.py` now uses `docs/LRM` or `docs/samples` documents instead of pre chunked files. +- RENAMED `docs/AVAP Language: Core Commands & Functional Specification` to `docs/avap_language_github_docs`. +- REMOVED: `Makefile` file. +- REMOVED: `scripts/start-tunnels.sh` script. +- DEPENDENCIES: `requirements.txt` updated with new libraries required by the new modules. +- MOVED `scripts/generate_mbap.py` into `scripts/flows/generate_mbap.py`. + + ## [1.4.0] - 2026-03-10 ### Added @@ -23,12 +42,12 @@ All notable changes to the **Brunix Assistance Engine** will be documented in th ### Added - IMPLEMENTED: - - `src/utils/emb_factory`: factory modules created for embedding model generation. - - `src/utils/llm_factory`: factory modules created for LLM generation. - - `src/graph.py`: workflow graph orchestration module added. - - `src/prompts.py`: centralized prompt definitions added. - - `src/state.py`: shared state management module added. - - `pipelines/flows/elasticsearch_ingestion.py`: pipeline to populate the elasticsearch vector database. + - `Docker/src/utils/emb_factory`: factory modules created for embedding model generation. + - `Docker/src/utils/llm_factory`: factory modules created for LLM generation. + - `Docker/src/graph.py`: workflow graph orchestration module added. + - `Docker/src/prompts.py`: centralized prompt definitions added. + - `Docker/src/state.py`: shared state management module added. + - `scripts/pipelines/flows/elasticsearch_ingestion.py`: pipeline to populate the elasticsearch vector database. - `ingestion/docs`: folder containing all chunked AVAP documents. ### Changed diff --git a/docs/AVAP Language: Core Commands & Functional Specification/AVAP.md b/docs/avap_language_github_docs/AVAP.md similarity index 100% rename from docs/AVAP Language: Core Commands & Functional Specification/AVAP.md rename to docs/avap_language_github_docs/AVAP.md diff --git a/docs/samples/hello_world.avap b/docs/samples/hello_world.avap new file mode 100644 index 0000000..2322564 --- /dev/null +++ b/docs/samples/hello_world.avap @@ -0,0 +1,3 @@ +addParam("Alberto",name) +result = "Hello," + name +addResult(result) \ No newline at end of file diff --git a/ingestion/chunks.json b/ingestion/chunks.json new file mode 100644 index 0000000..bd635b2 --- /dev/null +++ b/ingestion/chunks.json @@ -0,0 +1,92295 @@ +[ + { + "_index": "avap-docs-test-v3", + "_id": "326b984d-715a-57b1-b7b4-6b10f0e77ba3", + "_source": { + "text": "subtotal = 150.50\niva = subtotal * 0.21\ntotal = subtotal + iva\naddResult(total)", + "embedding": [ + -0.019175486639142036, + 0.009698993526399136, + -0.0032845193054527044, + -0.00531203206628561, + -0.028207462280988693, + -0.029678834602236748, + 0.005653258878737688, + 0.03423518314957619, + -0.056107696145772934, + -0.016662366688251495, + 0.02522902749478817, + -0.0020022394601255655, + -0.0008199346484616399, + -0.0009092767140828073, + -0.006585841067135334, + -0.014833000488579273, + 0.008134419098496437, + -0.023344194516539574, + -0.03249035030603409, + 0.06018441915512085, + -0.09525449573993683, + -0.030035169795155525, + -0.046881068497896194, + 0.00866338238120079, + -0.03740349039435387, + 0.04782084375619888, + -0.009638383984565735, + 0.04776306077837944, + 0.048047661781311035, + -0.06111887842416763, + 0.07361602783203125, + 0.03852199763059616, + -0.07107728719711304, + 0.020877936854958534, + -0.0016023180214688182, + -0.005489169619977474, + 0.02333070896565914, + -0.010684863664209843, + 0.045193862169981, + 0.015520436689257622, + 0.0200657919049263, + 0.0073103816248476505, + -0.006023133173584938, + -0.006387914996594191, + -0.012199954129755497, + 0.051806963980197906, + 0.010904530994594097, + 0.021483197808265686, + 0.0785229504108429, + -0.028832420706748962, + 0.012055003084242344, + -0.00759787717834115, + 0.02855091169476509, + -0.056265849620103836, + -0.003512904979288578, + -0.03659723699092865, + 0.008464640937745571, + 0.06828958541154861, + 0.002285510767251253, + 0.019173018634319305, + 0.012470279820263386, + 0.03823982551693916, + 0.017017824575304985, + -0.034791842103004456, + 0.009415941312909126, + -0.03232431784272194, + -0.0020133499056100845, + 0.042639732360839844, + -0.07710262387990952, + -0.03190455213189125, + -0.0034010615199804306, + -0.03856233134865761, + -0.017595432698726654, + 0.006390316411852837, + 0.02012161910533905, + -0.0265597365796566, + -0.025521395727992058, + 0.0017119623953476548, + -0.04490013048052788, + -0.03024858981370926, + 0.0014206449268385768, + 0.014555905945599079, + -0.003758207894861698, + -0.017307739704847336, + 0.0010158593067899346, + 0.06608712673187256, + 0.0019114903407171369, + -0.015630509704351425, + -0.010551095008850098, + 0.03974253311753273, + -0.0045185387134552, + 0.03675073757767677, + -0.12368887662887573, + 0.033554211258888245, + 0.012816179543733597, + 0.01765345223248005, + 0.058718763291835785, + 0.02704116329550743, + -0.06267067044973373, + 0.0036158098373562098, + -0.01748766005039215, + 0.019503967836499214, + 0.0034528523683547974, + -0.011428463272750378, + 0.023679088801145554, + -0.0007612615008838475, + -0.09197205305099487, + -0.01346521358937025, + -0.029068227857351303, + -0.005913992412388325, + -0.023112010210752487, + -0.016451235860586166, + -0.030519941821694374, + 0.007744562346488237, + -0.027153443545103073, + 0.002520643873140216, + 0.026135051622986794, + 0.045733239501714706, + -0.027237145230174065, + -0.003021473763510585, + 0.03316081315279007, + -0.019191496074199677, + 0.002738100942224264, + -0.05390331521630287, + -0.021834127604961395, + 0.002892466727644205, + -0.013851065188646317, + -0.01326307374984026, + 0.036294493824243546, + 0.00698988838121295, + -0.01359100267291069, + -0.0292876735329628, + -0.043938759714365005, + 0.010790468193590641, + 0.01203320361673832, + 0.014523216523230076, + -0.010611669160425663, + 0.0017806298565119505, + 0.01784607395529747, + 0.018512465059757233, + 0.005069446749985218, + 0.008871467784047127, + 0.009461561217904091, + -0.028142763301730156, + 0.014796262606978416, + 0.030363816767930984, + -0.00808857660740614, + 0.05210340395569801, + -0.02484373189508915, + 0.030236760154366493, + 0.007280515506863594, + 0.005123563576489687, + 0.026218578219413757, + 0.018399477005004883, + 0.0255470871925354, + 0.0796898677945137, + -0.008008350618183613, + -0.000701473094522953, + -0.004786947276443243, + -0.018168997019529343, + 0.007625669240951538, + 0.03869931772351265, + 0.004915457218885422, + -0.047283269464969635, + -0.016758017241954803, + 0.017559833824634552, + -0.011141292750835419, + -0.0060784537345170975, + -0.05193917825818062, + -0.0383351668715477, + 0.038401391357183456, + 0.035420432686805725, + -0.024775970727205276, + 0.04036037251353264, + 0.0028466463554650545, + -0.02213866449892521, + -0.015383346006274223, + -0.04991709813475609, + -0.012658055871725082, + 0.012284287251532078, + -0.002176836831495166, + 0.018494078889489174, + 0.011852901428937912, + -0.014397994615137577, + -0.027356019243597984, + 0.02922661229968071, + 0.008525819517672062, + 0.010760770179331303, + -0.027128348127007484, + 0.012024115771055222, + 0.045544128865003586, + 0.00594074372202158, + -0.02609020471572876, + -0.0078349057585001, + 0.004835953935980797, + -0.028026608750224113, + 0.014518129639327526, + -0.013798205181956291, + 0.012959610670804977, + -0.003691201563924551, + -0.012189905159175396, + -0.09302949160337448, + 0.010790547356009483, + 0.019012607634067535, + -0.007740456145256758, + -0.03739699348807335, + 0.021061113104224205, + 0.04781289026141167, + -0.008473768830299377, + 0.014505995437502861, + -0.003229823661968112, + 0.03345053642988205, + 0.0002735928865149617, + -0.029029257595539093, + 0.017557382583618164, + -0.049888428300619125, + -0.003023654455319047, + -0.014085926115512848, + 0.014703919179737568, + 0.029590744525194168, + -0.0018615395529195666, + 0.04709901288151741, + -0.03097468987107277, + 0.013979362323880196, + 0.00930329691618681, + -0.04478580504655838, + 0.00437680771574378, + -0.011771570891141891, + -0.0245765782892704, + 0.03237161040306091, + 0.006421427708119154, + -0.0016367880161851645, + 0.016742002218961716, + 0.030567480251193047, + 0.0033037809189409018, + 0.026764201000332832, + -0.023653928190469742, + 0.058561328798532486, + 0.04476519674062729, + 0.019110308960080147, + 0.024115681648254395, + -0.010965138673782349, + -0.019506923854351044, + 0.021721763536334038, + 0.011277647688984871, + -0.018855007365345955, + -0.03468432277441025, + 0.03641258180141449, + -0.015394734218716621, + -0.0019293612567707896, + 0.005467182490974665, + 0.00407700939103961, + -0.04399603232741356, + 0.005664393771439791, + 0.02774539403617382, + 0.006163484882563353, + 0.02002488635480404, + -0.00822804681956768, + -0.009336872026324272, + 0.019056247547268867, + -0.004902529530227184, + -0.02089609205722809, + -0.01723358780145645, + -0.00734942639246583, + -0.01761838234961033, + 0.006024378817528486, + -0.004838517867028713, + 0.045066170394420624, + 0.00915522687137127, + 0.001198427751660347, + 0.013974540866911411, + 0.03821547329425812, + 0.011582791805267334, + 0.03457020968198776, + 0.017834296450018883, + 0.030735213309526443, + 0.008438809774816036, + -0.0019815750420093536, + -0.02185731753706932, + -0.04038786515593529, + -0.005235424730926752, + -0.0038646624889224768, + -0.003668597200885415, + 0.0005437748623080552, + -0.050979215651750565, + 0.004957195837050676, + -0.007668961305171251, + 0.023827774450182915, + 0.013975238427519798, + 0.017883101478219032, + 0.00946761667728424, + -0.019449230283498764, + -0.011629954911768436, + -0.03258905187249184, + -0.03706944361329079, + -0.027203483507037163, + 0.03552033752202988, + 0.02521771937608719, + 0.00015570325194858015, + -0.005718267057090998, + 0.014023779891431332, + 0.03350455313920975, + -0.008110721595585346, + -0.0008772744913585484, + -0.008231439627707005, + -0.005012438632547855, + 0.010607676580548286, + -0.008975218050181866, + -0.02847386710345745, + -0.010476332157850266, + 0.07599750906229019, + -0.027630750089883804, + -0.02217964082956314, + -0.017818128690123558, + -0.0073822918348014355, + -0.0011187390191480517, + 7.077705959090963e-05, + 0.023450186476111412, + 0.07182837277650833, + -0.05702505260705948, + 0.07394753396511078, + -0.006310550030320883, + -0.010281044989824295, + -0.07397747039794922, + 0.01601354219019413, + 0.01654019206762314, + -0.05668758973479271, + 0.0009700927184894681, + -0.013373020105063915, + -0.0167689211666584, + 0.022221917286515236, + 0.01459206361323595, + 0.057334817945957184, + -0.03958171606063843, + -0.048307985067367554, + 0.04495827481150627, + 0.025989238172769547, + -0.017415650188922882, + 0.028060590848326683, + -0.01993386261165142, + 0.029908644035458565, + -0.04416986182332039, + -0.05850186571478844, + 0.04690057411789894, + 0.0207029078155756, + -0.019692257046699524, + -0.06941523402929306, + -0.09958913922309875, + 0.04444286972284317, + 0.008776238188147545, + -0.035138893872499466, + 0.020514104515314102, + 0.0034341239370405674, + -0.01468550693243742, + 0.006791610270738602, + 0.03499424830079079, + -0.00616209814324975, + 0.02026290073990822, + -0.01745692454278469, + -0.039410121738910675, + -0.010846402496099472, + -0.024279510602355003, + 0.020140083506703377, + 0.02045361138880253, + -0.04283025488257408, + 0.021449396386742592, + -0.0276138074696064, + 0.03425830230116844, + 0.014829796738922596, + 0.014702674001455307, + -0.061396390199661255, + 0.0599607452750206, + 0.007420920766890049, + 0.03133555129170418, + 0.00650750519707799, + 0.017560919746756554, + 0.028407881036400795, + -0.038210175931453705, + -0.012262895703315735, + 0.07106738537549973, + 0.002746002748608589, + 0.040893349796533585, + -0.04226745665073395, + 0.020062152296304703, + -0.016663143411278725, + 0.003567745676264167, + -0.027967870235443115, + 0.013329929672181606, + -0.015280644409358501, + -0.014493457041680813, + 0.016167355701327324, + -0.014223254285752773, + 0.03443437069654465, + -0.004613653291016817, + -0.020852338522672653, + -0.016915349289774895, + -0.033108048141002655, + 0.011239278130233288, + -0.01312587596476078, + 0.004727533087134361, + 0.0010076218750327826, + -0.019760502502322197, + -0.011852981522679329, + 0.028171395882964134, + -0.008529200218617916, + -0.015190450474619865, + -0.002522994065657258, + 0.012207483872771263, + -0.04153047129511833, + -0.010124574415385723, + 0.034707799553871155, + -0.04065893217921257, + 0.0017841669032350183, + -0.026765909045934677, + 0.020985938608646393, + -0.021506505087018013, + 0.017354832962155342, + -0.025704283267259598, + -0.011876039206981659, + -0.005685239564627409, + 0.03342925012111664, + 0.0292765311896801, + -0.04742491617798805, + 0.008266482502222061, + -0.012476131319999695, + 5.933552165515721e-05, + -0.010478271171450615, + 0.005275082774460316, + -0.031938377767801285, + 0.04887109994888306, + 0.03219832852482796, + -0.054381344467401505, + -0.02214483916759491, + -0.021286888048052788, + -0.004573501646518707, + -0.034930769354104996, + -0.0071273306384682655, + -0.015196342952549458, + 0.004781733267009258, + 0.00974571704864502, + 0.008765770122408867, + 0.024959394708275795, + -0.03774286061525345, + 0.03004228137433529, + -0.014275065623223782, + -0.011464389972388744, + 0.0077684614807367325, + 0.0068750763311982155, + 0.01124955527484417, + -0.015460663475096226, + -0.046678926795721054, + 0.04212068393826485, + -0.003187792841345072, + 0.054091643542051315, + -0.00013005889195483178, + -0.013598939403891563, + -0.06398111581802368, + 0.05908069387078285, + 0.05662701651453972, + 0.01246468722820282, + 0.042571771889925, + 0.0396835058927536, + -0.009345008060336113, + 0.012511606328189373, + -0.010060422122478485, + -0.010977604426443577, + -0.04594852402806282, + 0.020117290318012238, + 0.006473635323345661, + -0.04662883281707764, + 0.050850559026002884, + 0.006817939225584269, + -0.00013611975009553134, + -0.0471695251762867, + -0.05372362211346626, + -0.04908943548798561, + -0.033245522528886795, + 0.025713685899972916, + -0.02648690901696682, + -0.015690375119447708, + -0.04250962287187576, + -0.0061142463237047195, + -0.002323324326425791, + -0.01803099550306797, + 0.07777183502912521, + -0.012707126326858997, + 0.0002577215782366693, + -0.03310917690396309, + -0.017343584448099136, + 0.0030996231362223625, + -0.009151331149041653, + 0.0060879625380039215, + 0.011268271133303642, + 0.002341990824788809, + 0.047062233090400696, + -0.05591228976845741, + 0.03975943103432655, + 0.00022070501290727407, + -0.019167309626936913, + 0.025316409766674042, + -0.03017442300915718, + 0.00043108107638545334, + -0.006275813095271587, + -0.011158464476466179, + -0.05346890166401863, + -0.019453415647149086, + -0.006081296131014824, + -0.007467655465006828, + 0.03860046714544296, + -0.016115494072437286, + -0.012125414796173573, + 0.017910392954945564, + 0.00947932805866003, + -0.003133415710180998, + -0.052498988807201385, + -0.06189831718802452, + 0.00782561395317316, + -0.046291351318359375, + -0.0518997386097908, + -0.0007738638087175786, + -0.007199001964181662, + 0.02259267121553421, + 0.06046260520815849, + 0.05585194006562233, + 0.006930230185389519, + 0.017706481739878654, + 0.027755575254559517, + 0.013894567266106606, + 0.03811829537153244, + 0.044360965490341187, + -0.06697944551706314, + 0.013803101144731045, + 0.004428646992892027, + 0.03128589317202568, + 0.05147815868258476, + 0.01096600852906704, + -0.03321346268057823, + -0.03315797820687294, + -0.0036504631862044334, + -0.0019967027474194765, + -0.035864364355802536, + -0.08087652921676636, + -0.06104239076375961, + -0.013312661089003086, + -0.06049535423517227, + -5.937398600508459e-05, + -0.07535067945718765, + 0.05685258284211159, + 0.02268260344862938, + 0.062211424112319946, + -0.027222339063882828, + 0.03045591525733471, + 0.0520758293569088, + 0.018467864021658897, + 0.028920795768499374, + -0.002505576703697443, + 0.04806194826960564, + 0.0268136914819479, + -0.0073196664452552795, + -0.0207647904753685, + -0.003833317430689931, + 0.028827041387557983, + 0.02423742040991783, + -0.01226760633289814, + -0.016555828973650932, + -0.03273507207632065, + 0.019865090027451515, + 0.02058429829776287, + -0.008675819262862206, + 0.03907589986920357, + 0.008438315242528915, + 0.01105339452624321, + 0.012875568121671677, + -0.004796208348125219, + 0.006543444935232401, + -0.02461559697985649, + -0.013730375096201897, + 0.04421870782971382, + 0.03075568564236164, + -0.016731617972254753, + 0.03526577726006508, + 0.004993930924683809, + -0.061188407242298126, + -0.025135522708296776, + -0.03264077007770538, + -0.04136300086975098, + 0.00983344204723835, + 0.019681962206959724, + -0.04889684543013573, + -0.003798732301220298, + -0.005840797908604145, + 0.005718596279621124, + 0.02195434272289276, + 0.0412442572414875, + 0.013216800056397915, + -0.03005143627524376, + -0.019859297201037407, + -0.00360417109914124, + 0.013962673023343086, + -0.028032520785927773, + 0.04946817457675934, + 0.033741679042577744, + -0.04651918634772301, + 0.01744224689900875, + 0.0017423832323402166, + 0.016716692596673965, + -0.04040873795747757, + 0.019863607361912727, + 0.012849144637584686, + -0.004342421889305115, + 0.0024654751177877188, + 0.013257271610200405, + -0.041243989020586014, + -0.01584485173225403, + -0.006500230170786381, + 0.04311101883649826, + -0.06007798761129379, + -0.007268885616213083, + -0.02674160711467266, + 0.01014676596969366, + -0.0006050479132682085, + 0.06128552556037903, + -0.03945673257112503, + 0.030198959633708, + -0.0065751876682043076, + 0.00839979201555252, + 0.041578758507966995, + 0.0038343763444572687, + -0.07311693578958511, + 0.05690883845090866, + 0.025679906830191612, + -0.023100484162569046, + -0.10874495655298233, + -0.001094043254852295, + 0.02579292096197605, + 0.009990900754928589, + 0.0034756134264171124, + -0.012932070530951023, + 0.039098817855119705, + 0.055993158370256424, + -0.012126646935939789, + -0.05753098428249359, + 0.009424546733498573, + -0.02741597779095173, + -0.03223658725619316, + 0.08166506886482239, + -0.009091588668525219, + -0.023921482264995575, + 0.002671952126547694, + 0.003800870617851615, + 0.025408873334527016, + -0.007845706306397915, + -0.034139763563871384, + 0.020255520939826965, + -0.005192481447011232, + 0.024627814069390297, + -0.031301647424697876, + -0.028192922472953796, + -0.009609253145754337, + 0.01901673711836338, + 0.007316634524613619, + -0.0512692928314209, + 0.014368699863553047, + 0.010351832956075668, + -0.006329669151455164, + -0.032024089246988297, + 0.04586872458457947, + 0.014891136437654495, + 0.025234118103981018, + -0.07563257217407227, + 0.01695014163851738, + -0.00924194697290659, + -0.024250825867056847, + 0.0014888601144775748, + -0.02048136293888092, + 0.00814402848482132, + -0.020021095871925354, + 0.009068951942026615, + -0.020886076614260674, + 0.010837635025382042, + 0.02140313945710659, + -0.06340306997299194, + -0.07437612116336823, + 0.018056336790323257, + -0.013428487814962864, + -0.0497371070086956, + -0.1033996194601059, + 0.023884208872914314, + 0.00949433445930481, + -0.021059010177850723, + -0.0184291023761034, + 0.033521056175231934, + -0.008602868765592575, + -0.003531564027070999, + -0.05589084327220917, + -0.022153496742248535, + -0.021242400631308556, + 0.04147767275571823, + 0.011355506256222725, + 0.02139163576066494, + 0.013307289220392704, + -0.01194450631737709, + 0.021945035085082054, + 0.06708307564258575, + 0.02683308534324169, + 0.030634799972176552, + -0.0023976718075573444, + -0.01882031001150608, + -0.05655462667346001, + -0.06564328819513321, + 0.02387349307537079, + 0.01813763566315174, + -0.00565521651878953, + 0.03658416122198105, + 0.03225472569465637, + 0.06141303852200508, + -0.09085928648710251, + -0.04273303225636482, + 0.020808039233088493, + -0.026388179510831833, + -0.016809100285172462, + -0.0010191769106313586, + 0.018606314435601234, + 0.012932882644236088, + 0.013551452197134495, + -0.004561881069093943, + 0.012595824897289276, + -0.010704410262405872, + -0.0008686595829203725, + -0.016490396112203598, + 0.03797799348831177, + 0.0013042110949754715, + -0.027443205937743187, + 0.0024290219880640507, + 0.012444368563592434, + 0.02883400022983551, + 0.040776241570711136, + 0.015896625816822052, + -0.022981148213148117, + -0.000707810337189585, + -0.023048223927617073, + 0.01681741327047348, + -0.0646117627620697, + -0.07950934767723083, + -0.0235936027020216, + -0.0021049759816378355, + -0.02147631347179413, + 0.0003691607271321118, + 0.03506616875529289, + 0.017374251037836075, + 0.029663823544979095, + 0.006035566795617342, + -0.017820635810494423, + 0.06523007154464722, + -0.009395159780979156, + 0.04364738613367081, + -0.02309793420135975, + -0.029587803408503532, + 0.010924124158918858, + 0.0419246144592762, + 0.015467881225049496, + 9.04557527974248e-05, + -0.006767891347408295, + 0.00029354405705817044, + -0.00927706714719534, + 0.019919950515031815, + 0.04547979682683945, + -0.02620312198996544, + -0.007766310125589371, + 0.008527347818017006, + -0.004969382658600807, + -0.039123013615608215, + -0.04893879592418671, + -0.0032512154430150986, + 0.013484523631632328, + -0.037658508867025375, + 0.04651999473571777, + -0.03690992295742035, + -0.020853081718087196, + -0.029328538104891777, + -0.04116412624716759, + 0.002663888270035386, + 0.014374066144227982, + 0.03071201965212822, + 0.03347046300768852, + 0.08620911836624146, + -0.01352629717439413, + 0.0592789500951767, + 0.0021816801745444536, + 0.020595332607626915, + 0.04278947040438652, + 0.013522868044674397, + 0.01185185182839632, + 0.02359841950237751, + -0.0339360274374485, + -0.0008107511093840003, + -0.05771954730153084, + 0.04781942069530487, + 6.900254811625928e-05, + -0.0037499985191971064, + -0.003164910012856126, + 0.013501457870006561, + -0.04058295115828514, + 0.008658338338136673, + 0.0435863621532917, + 0.02383117564022541, + -0.05841032415628433, + 0.02574552781879902, + -0.012303813360631466, + -0.003361018607392907, + 0.006810919381678104, + -0.013652404770255089, + -0.007678656373172998, + 0.01572374440729618, + -0.006365750916302204, + 0.03090425208210945, + -0.020736735314130783, + -0.048671744763851166, + 0.001545427949167788, + -0.022094907239079475, + -0.03209434077143669, + -0.006767443846911192, + -0.03061806596815586, + -0.017040010541677475, + -0.046879589557647705, + -0.018426023423671722, + 0.016812266781926155, + -0.011309375055134296, + 0.019458845257759094, + 0.03120059333741665, + 0.02098851650953293, + -0.027585292235016823, + -0.025175048038363457, + -0.006768100429326296, + 0.020573627203702927, + 0.053149864077568054, + 0.02502082847058773, + -0.02933128923177719, + 0.029669295996427536, + 0.03766811639070511, + -0.03696271777153015, + 0.04292014613747597, + 0.00593685545027256, + 0.002520511159673333, + 0.0057056681253015995, + 0.0030249771662056446, + 0.041538503021001816, + 0.02086605690419674, + -0.0016161013627424836, + -0.023059476166963577, + -0.06828012317419052, + -0.038829173892736435, + -0.06199243292212486, + -0.013152365572750568, + -0.03610994294285774, + 0.038226187229156494, + 0.05815598741173744, + -0.03702271357178688, + -0.024016426876187325, + 0.031620003283023834, + -0.029861144721508026, + 0.011241070926189423, + -0.06407321989536285, + -0.022993778809905052, + -0.03819311037659645, + 0.0931958332657814, + -0.002896757097914815, + 0.012912940233945847, + 0.020459523424506187, + -0.004397237673401833, + -0.003081729868426919, + -0.06590745598077774, + 0.03695034608244896, + 0.11289665848016739, + -0.000353324314346537, + -0.018923316150903702, + -0.01158689521253109, + -0.00418039970099926, + 0.056546494364738464, + 0.006846083328127861, + 0.018568402156233788, + 0.020536037161946297, + 0.030707573518157005, + 0.059100206941366196, + -0.056843943893909454, + 0.0201476588845253, + -0.014999843202531338, + 0.02652834542095661, + 0.00961117260158062, + -0.05300524830818176, + -0.029938988387584686, + -0.012490054592490196, + -0.009754529222846031, + 0.0038905644323676825, + -0.06973936408758163, + 0.027198266237974167, + 0.03147139400243759, + 0.04410542920231819, + -0.017107123509049416, + -0.0200587697327137, + -0.020733250305056572, + -0.05914938822388649, + -0.023523766547441483, + -0.02090899460017681, + -0.016886211931705475, + -0.030943237245082855, + 0.01888832077383995, + 0.02835679240524769, + -0.027172185480594635, + 0.015242748893797398, + -0.031944263726472855, + 0.02170606702566147, + -0.022930193692445755, + 0.013647869229316711, + -0.0034594980534166098, + -0.0022406575735658407, + -0.02297169342637062, + 0.029461778700351715, + 0.0029833666048943996, + 0.0070974137634038925, + 0.02910817414522171, + 0.01828569918870926, + 0.008534172549843788, + 0.008281267248094082, + 0.02208585850894451, + -0.011612717062234879, + -0.06869783252477646, + 0.0063931941986083984, + 0.018608635291457176, + 0.009937800467014313, + -0.028461145237088203, + 0.05060982704162598, + 0.009991474449634552, + -0.03424394875764847, + 0.0076233153231441975, + -0.011107122525572777, + -0.0032750063110142946, + -0.044492628425359726, + -0.03440126031637192, + -0.0027552759274840355, + -0.014259543269872665, + 0.0294902715831995, + -0.0006953043630346656, + 0.012028375640511513, + 0.043055158108472824, + -0.018113235011696815, + -0.005446251947432756, + -0.031117890030145645, + 0.013075770810246468, + 0.007994869723916054, + 0.06339185684919357, + -0.016880648210644722, + -0.036354124546051025, + -0.01179505791515112, + -0.023876475170254707, + -0.03167865425348282, + -0.018127597868442535, + -0.004576066974550486, + 0.018401149660348892, + -0.002031422918662429, + 0.044482775032520294, + -0.045070867985486984, + -0.04762641340494156, + 0.00274210749194026, + 0.018511805683374405, + -0.03559320792555809, + -0.009888915345072746, + -0.006513130851089954, + 0.008830961771309376, + -0.005551165901124477, + -0.02061573415994644, + 0.035607751458883286, + 0.003847768995910883, + 0.013607337139546871, + 0.027460208162665367, + -0.06714149564504623, + -0.02913913130760193, + 0.004224199336022139, + 0.011990289203822613, + 0.0037275298964232206, + -0.002785142045468092, + -0.05073659121990204, + 0.05337800830602646, + -0.06775997579097748, + -0.0034353556111454964, + 0.05628402158617973, + 0.03184445947408676, + -0.00796325970441103, + 0.034749604761600494, + -0.04332827776670456, + -0.023517463356256485, + 0.027969008311629295, + 0.022104205563664436, + 0.015443705022335052, + -0.01564980484545231, + 0.0389472134411335, + -0.011547801084816456, + 0.0204340647906065, + -0.017685269936919212, + 0.0017519431421533227, + -0.0478927418589592, + -0.03521551564335823, + 0.007826714776456356, + 0.04411458596587181, + -0.03371308371424675, + -0.008323445916175842, + 0.021002380177378654, + -0.053873930126428604, + -0.03391372039914131, + 0.0077852969989180565, + 0.00802079401910305, + -0.02217540331184864, + -0.019462788477540016, + -0.00811266340315342, + -0.00532798795029521, + 0.05831792950630188, + -0.004427175037562847, + 0.018021661788225174, + 0.029556643217802048, + -0.030796237289905548, + 0.05295410752296448, + 0.04526655748486519, + 0.05751786381006241, + -0.022825494408607483 + ], + "start_index": 0, + "end_index": 79, + "token_count": 31, + "file": "asignacion_matematica.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "16f6ef21-fc13-5e76-bab8-a6c09611bfcd", + "_source": { + "text": "datos_cliente = \"datos\"\naddVar(clave, \"cliente_vip\")\nAddvariableToJSON(clave, datos_cliente, mi_json_final)\naddResult(mi_json_final)", + "embedding": [ + 0.012911813333630562, + 0.03580578416585922, + -0.011881216429173946, + -0.071832574903965, + 0.022667810320854187, + -0.09342020750045776, + -0.025008797645568848, + 0.01605110988020897, + -0.007417366374284029, + 0.01052608247846365, + 0.033934108912944794, + 0.002235421445220709, + -0.02393990010023117, + -0.009204328991472721, + -0.03421040251851082, + 0.03486458212137222, + -0.03948032855987549, + 0.027032742276787758, + -0.014617004431784153, + 0.024699535220861435, + -0.01701851189136505, + -0.01718774065375328, + -0.07297198474407196, + 0.04106592386960983, + 0.04836532473564148, + -0.04056917503476143, + -0.0256483256816864, + 0.03838011622428894, + 0.05109183117747307, + -0.02834504470229149, + 0.05426584184169769, + -0.05404878780245781, + -0.04024999216198921, + 0.015937890857458115, + -0.00358084449544549, + -0.014398436062037945, + 0.040178172290325165, + -0.033113304525613785, + -0.033918287605047226, + -0.02717246487736702, + 0.01039212103933096, + 0.059467658400535583, + 0.009882424958050251, + 0.0588798001408577, + 0.02239222824573517, + -0.04728689417243004, + 0.03991883248090744, + -0.012409094721078873, + 0.005771642550826073, + -0.03826836124062538, + 0.005608181934803724, + 0.04516954720020294, + 0.028813064098358154, + -0.020522261038422585, + -0.00150400644633919, + 0.017583735287189484, + 0.03663889318704605, + 0.01883239857852459, + 0.00406700698658824, + 0.016772059723734856, + -0.07852079719305038, + 0.030743297189474106, + -0.017921658232808113, + -0.01823178119957447, + -0.026149360463023186, + -0.018902702257037163, + 0.008205189369618893, + 0.009106923826038837, + -0.052097540348768234, + -0.021616443991661072, + -0.005270182155072689, + -0.08966732025146484, + -0.020335452631115913, + 0.032888732850551605, + -0.017153646796941757, + -0.00842035748064518, + -0.008280003443360329, + 0.04745924845337868, + 0.028498848900198936, + -0.0008458247175440192, + -0.018008356913924217, + 0.059256624430418015, + 0.0331958569586277, + 0.018630072474479675, + -0.029222216457128525, + 0.050985269248485565, + -0.04332658648490906, + 0.010239880532026291, + 0.027750413864850998, + 0.017149146646261215, + 0.025997424498200417, + -0.021651361137628555, + -0.04948534071445465, + 0.006764695048332214, + 0.02386440895497799, + 0.002742041600868106, + 0.04254823178052902, + 0.013866092078387737, + -0.019804565235972404, + 0.0037926402874290943, + -0.03152612969279289, + -0.004692568443715572, + -0.015562576241791248, + -0.008037040010094643, + -0.03188234940171242, + 0.010064806789159775, + -0.0700065866112709, + -0.01805073581635952, + -0.05446759611368179, + -0.0038057558704167604, + -0.013324735686182976, + 0.03853486478328705, + 0.013499733991920948, + 0.018320849165320396, + -0.04810943827033043, + 0.015605061315000057, + 0.008913657627999783, + -0.029569514095783234, + -0.03283945471048355, + -0.02130201645195484, + 0.02085832878947258, + -0.00820198655128479, + 0.02648613043129444, + 0.003199733793735504, + 0.045627448707818985, + 0.01055134180933237, + -0.024172581732273102, + -0.03096967190504074, + -0.005746924784034491, + 0.0066939606331288815, + 0.023632772266864777, + -0.031530074775218964, + -0.015211459249258041, + -0.00841380562633276, + 0.027608774602413177, + 0.0059980847872793674, + -0.004532347898930311, + -0.001995776779949665, + 0.030513698235154152, + -0.003376293694600463, + -0.006369210779666901, + -0.008100786246359348, + -0.005776655860245228, + 0.0026440592482686043, + 0.00024139200104400516, + 0.03668041527271271, + -0.031863898038864136, + -0.005894239526242018, + -0.002261624438688159, + -0.011784612201154232, + -0.01336367055773735, + 0.010739680379629135, + -0.012575779110193253, + -0.019606567919254303, + 0.0042776064947247505, + 0.03663429990410805, + -0.011158592998981476, + -0.017385246232151985, + -0.00964987650513649, + 0.01766047440469265, + -0.014930924400687218, + 0.0020405021496117115, + -0.01286295522004366, + -0.03580642119050026, + -0.025836694985628128, + 0.021890264004468918, + -0.008068916387856007, + -0.04136701300740242, + -0.049929019063711166, + -0.008140522986650467, + 0.009218968451023102, + 0.019589606672525406, + -0.016354147344827652, + -0.030437590554356575, + -0.010600577108561993, + -0.02660270780324936, + -0.02693091705441475, + -0.0570853017270565, + -0.004586880560964346, + 0.009623355232179165, + 0.0047590765170753, + -0.01477236207574606, + 0.013619487173855305, + 0.03946243226528168, + 0.0023645528126507998, + 0.016905365511775017, + 0.01314465794712305, + -0.04416703060269356, + -0.006144629325717688, + -0.06504115462303162, + 0.010694034397602081, + -0.002121605910360813, + -0.008674699813127518, + -0.025270402431488037, + -0.003930866252630949, + -0.028260884806513786, + 0.0028675261419266462, + -0.009803859516978264, + -0.014269210398197174, + 0.008316216990351677, + -0.015707924962043762, + -0.018008597195148468, + -0.000975040951743722, + 0.0015160139882937074, + -0.012859361246228218, + -0.02793256938457489, + 0.03782343119382858, + 0.01879812218248844, + 0.006507197394967079, + -0.03185894340276718, + -0.07465675473213196, + 0.045781005173921585, + 0.01290491595864296, + -0.044891729950904846, + 0.012304327450692654, + -0.06514935940504074, + 0.038330595940351486, + -0.012303699739277363, + 0.03318650275468826, + 0.030453786253929138, + 0.012781658209860325, + 0.06213497743010521, + -0.025528786703944206, + 0.008201709017157555, + 0.03171441704034805, + -0.02220820263028145, + -0.005532439332455397, + -0.017000172287225723, + 0.048625312745571136, + 0.0014053527265787125, + -0.05890071019530296, + -0.0015296726487576962, + 0.0012163241626694798, + 0.023396693170070648, + 0.023550648242235184, + 0.042949117720127106, + 0.004006757400929928, + -0.009254245087504387, + 0.03979986160993576, + 0.04141758754849434, + -0.015352373011410236, + -0.014667341485619545, + 0.045371703803539276, + 0.01902773790061474, + -0.01852364093065262, + 0.026166187599301338, + -0.015914982184767723, + 0.041496723890304565, + -0.02026267535984516, + 0.015702243894338608, + 0.04166204482316971, + 0.04154515638947487, + -0.04113149270415306, + 0.02750285156071186, + 0.019233684986829758, + -0.023825185373425484, + 0.02060072124004364, + -0.027494531124830246, + 0.02708844281733036, + -0.009255222044885159, + -0.01275224331766367, + -0.030968109145760536, + -0.030372697860002518, + 0.010528537444770336, + -0.004384779836982489, + 0.026568645611405373, + 0.0021202757488936186, + 0.05624247342348099, + -0.011952853761613369, + -0.002938257995992899, + -0.04891481250524521, + 0.020036496222019196, + 0.018454164266586304, + 0.033680982887744904, + 0.027410877868533134, + -0.003938625101000071, + -0.012865998782217503, + -0.10796317458152771, + 0.03383481875061989, + -0.03940748795866966, + -0.06424033641815186, + 0.024103926494717598, + -0.005932927597314119, + -0.03711893409490585, + 0.01639968901872635, + 0.02543756365776062, + 0.034235671162605286, + 0.020524093881249428, + -0.03187914192676544, + -0.019640741869807243, + 0.008720778860151768, + -0.00400799373164773, + -0.04848779737949371, + -0.010917308740317822, + 0.01825670711696148, + 0.04168923199176788, + -0.006708809640258551, + 0.04417252913117409, + 0.001840558834373951, + -0.01763174869120121, + 0.011083231307566166, + -0.014394900761544704, + 0.03129778057336807, + 0.015805544331669807, + -0.024499626830220222, + -0.0032554103527218103, + 0.07205422967672348, + 0.003302826778963208, + 0.08690225332975388, + -0.009734208695590496, + 0.06887908279895782, + -0.03851499781012535, + 0.012553136795759201, + 0.010461206547915936, + 0.0275802593678236, + 0.039117828011512756, + -0.02350291609764099, + -0.013342018239200115, + 0.031716618686914444, + -0.0035176037345081568, + -0.017382359132170677, + -0.01320475060492754, + 0.001199054066091776, + 0.003800169099122286, + 0.0017697525909170508, + 0.014842003583908081, + -0.020821930840611458, + 0.02752813696861267, + 0.011656356044113636, + 0.05595614016056061, + 0.0765041708946228, + 0.014392939396202564, + -0.002533446531742811, + -0.04165066033601761, + -0.005872383713722229, + 0.03302750736474991, + 0.061669714748859406, + -0.0030701500363647938, + 0.01530376449227333, + -0.02219259925186634, + 0.0037857110146433115, + -0.0036636563017964363, + -0.06146908178925514, + 0.023932144045829773, + -0.046994708478450775, + -0.00857179332524538, + -0.035978276282548904, + -0.0442647859454155, + -0.003666861215606332, + 0.03190235048532486, + -0.0020973612554371357, + 0.010710868053138256, + 0.0010568812722340226, + -0.009624587371945381, + 0.03656305372714996, + -0.039028480648994446, + 0.008556263521313667, + 0.03228834643959999, + -0.027932681143283844, + -0.03308247774839401, + 0.03130677342414856, + -0.009318498894572258, + 0.02235851250588894, + -0.020068107172846794, + 0.022541970014572144, + 0.000643281324300915, + -0.012818916700780392, + -0.02134844847023487, + 0.06097036227583885, + -0.03410288691520691, + -0.07226813584566116, + -0.0028307850006967783, + 0.048714276403188705, + -0.014035547152161598, + 0.04037166014313698, + 0.01297691185027361, + 0.06167175620794296, + -0.050019294023513794, + 0.00022222822008188814, + 0.01277810800820589, + 0.02352745831012726, + 0.01596248522400856, + -0.03852459788322449, + 0.02210044488310814, + -0.016168862581253052, + -0.06309397518634796, + 0.033978067338466644, + -0.0268300361931324, + 0.025628674775362015, + -0.028773361817002296, + 0.023189326748251915, + -0.02698775753378868, + 0.05488735809922218, + 0.01848849467933178, + 0.011342714540660381, + 0.0054542929865419865, + -0.07976476848125458, + -0.006553940940648317, + -0.01650182157754898, + 0.026368357241153717, + 0.04655929654836655, + -0.03031524270772934, + -0.06779468059539795, + 0.03376832976937294, + -0.007632303982973099, + -0.013991246931254864, + 0.017915029078722, + 0.04049190878868103, + 0.01640159823000431, + -0.005469226744025946, + 0.03996209055185318, + -0.00939564872533083, + -8.264239295385778e-05, + -0.00970824621617794, + 0.024431217461824417, + -0.012981724925339222, + -0.0029874825850129128, + 0.007173143792897463, + 0.010652494616806507, + -0.03160635754466057, + 0.05079454928636551, + 0.0483635812997818, + -0.03136352077126503, + 0.007781662046909332, + 0.02522401139140129, + -0.013615257106721401, + 0.006656563375145197, + -0.062370188534259796, + -0.017132941633462906, + 0.08223512768745422, + -0.006994438357651234, + -0.07281647622585297, + -0.025031475350260735, + 0.030761338770389557, + -0.0827910453081131, + 0.013020831160247326, + -0.00043388589983806014, + 0.015737248584628105, + 0.03249260038137436, + -0.013432878069579601, + 0.03778456151485443, + 0.03741368278861046, + -0.012937759980559349, + -0.011718005873262882, + -0.11282528191804886, + 0.03160608932375908, + 0.02242995984852314, + 0.014437733218073845, + -0.0532505139708519, + 0.0011258481536060572, + -0.023114103823900223, + 0.011113349348306656, + -0.001833244925364852, + -0.0022624987177550793, + 0.02827114798128605, + 0.02287393994629383, + 0.011107235215604305, + 0.023008501157164574, + 0.007093043997883797, + 0.05317666381597519, + 0.030607493594288826, + 0.054815247654914856, + 0.004418819211423397, + 0.042677443474531174, + -0.05472997575998306, + 0.011044633574783802, + -0.04631327465176582, + -0.04107657074928284, + 0.03973330929875374, + -0.03671365976333618, + 0.03132304176688194, + 0.029055746272206306, + -0.018277427181601524, + -0.05807765945792198, + -0.010322540998458862, + -0.02829982154071331, + -0.03604009374976158, + 0.04034145921468735, + -0.059966228902339935, + -0.02523615211248398, + 0.05880987271666527, + -0.017604220658540726, + 0.006581935100257397, + -0.05667803809046745, + 0.10604657977819443, + -0.023479770869016647, + 0.014400152489542961, + -0.02954498492181301, + -0.03662928193807602, + -0.019394809380173683, + 0.03917374834418297, + 0.06123209372162819, + 0.01012307871133089, + -0.02167537435889244, + -0.030982624739408493, + -0.038146842271089554, + -0.03769989684224129, + -0.060317348688840866, + -0.0557279959321022, + 0.03455829992890358, + -0.02765944041311741, + 0.003646817523986101, + 0.042414113879203796, + 0.013442328199744225, + -0.06321851164102554, + -0.042074382305145264, + 0.08154380321502686, + 0.004220017697662115, + -0.015363707207143307, + 0.030464598909020424, + 0.056375592947006226, + -0.021875157952308655, + 0.031052689999341965, + 0.03971363231539726, + -0.05892404541373253, + 0.008024136535823345, + 0.025317488238215446, + 0.012755284085869789, + -0.042875368148088455, + 0.057235632091760635, + 0.027422796934843063, + 0.02834121696650982, + 0.030378393828868866, + -0.07603263854980469, + -0.0008719083270989358, + 0.021155361086130142, + -0.03868751600384712, + 0.015370472334325314, + -0.007744673173874617, + 0.03399886190891266, + -0.040174342691898346, + -0.029258141294121742, + -0.005508685018867254, + 3.2861720683285967e-05, + 0.04842839390039444, + -0.02060333825647831, + -0.04407832771539688, + 0.02412935346364975, + -0.024834798648953438, + 0.022735796868801117, + 0.006778318900614977, + -0.044707439839839935, + -0.02765161544084549, + -0.009589368477463722, + 0.021437136456370354, + -0.04460649937391281, + -0.003958143759518862, + 0.06227225437760353, + -0.0004165688587818295, + 0.007297700271010399, + -0.000308572081848979, + 0.033296000212430954, + 0.02768220752477646, + 0.007844083942472935, + 0.03063870407640934, + -0.03836583346128464, + 0.07301461696624756, + 0.03240532428026199, + 0.0032045545522123575, + 0.029677700251340866, + 0.011898158118128777, + 0.03664783760905266, + 0.06494017690420151, + 0.04138145595788956, + 0.025759123265743256, + 0.03339618444442749, + -0.04958480969071388, + 0.0011712451232597232, + 0.017216134816408157, + 0.04814193770289421, + 0.023665472865104675, + -0.0051700277253985405, + -0.0229757409542799, + 0.023006673902273178, + -0.04529066011309624, + -0.06880620867013931, + 0.0325099416077137, + 0.0487372986972332, + 0.033864181488752365, + -0.07780171930789948, + 0.016962429508566856, + 0.03212825953960419, + -0.019908128306269646, + -0.014964099042117596, + -0.0312667079269886, + -0.007567056454718113, + 0.016341056674718857, + 0.006268666125833988, + -0.019020361825823784, + -0.0272061750292778, + 0.009312351234257221, + -0.053178709000349045, + -0.008614623919129372, + 0.017362091690301895, + 0.03977001830935478, + -0.013957662507891655, + -0.04189508408308029, + 0.004558130633085966, + -0.03713444247841835, + 0.007480656262487173, + 0.06705701351165771, + 0.007584827020764351, + -0.02756054326891899, + -0.00030960311414673924, + -0.05261823907494545, + 0.030764181166887283, + 0.009392879903316498, + 0.028336141258478165, + -0.038212910294532776, + -0.02857508510351181, + -0.007715428713709116, + -0.014420520514249802, + -0.07589110732078552, + -0.03202737495303154, + -0.01088621187955141, + -0.010847055353224277, + 0.0008503550197929144, + 0.02321947179734707, + 0.02186395972967148, + -0.04219932481646538, + -0.0265792328864336, + 0.003784445347264409, + 0.017228687182068825, + 0.06285116076469421, + 0.01656583696603775, + 0.052625834941864014, + 0.052166931331157684, + 0.0351993553340435, + 0.014917323365807533, + -0.0046873800456523895, + -0.02968302182853222, + 0.03993243724107742, + -0.027440324425697327, + -0.024650253355503082, + -0.03254074230790138, + 0.006714475806802511, + 0.007037015166133642, + -0.047277044504880905, + 0.016095148399472237, + -0.017085662111639977, + -0.0001693533849902451, + -0.0035302259493619204, + 0.0013531296281144023, + -0.014695672318339348, + 0.01809968240559101, + 0.004862968344241381, + -0.02862873673439026, + 0.03922247514128685, + 0.01203771773725748, + -0.019146572798490524, + 0.04607949033379555, + 0.015085823833942413, + 0.022913118824362755, + 0.0002823109971359372, + -0.03195815160870552, + -0.017707619816064835, + -0.051874831318855286, + 0.010564452968537807, + -0.026250753551721573, + 0.011156616732478142, + -0.030563678592443466, + -0.044514451175928116, + 0.01567775197327137, + -0.01598365791141987, + -0.048782553523778915, + 0.0007036100141704082, + 0.02926444076001644, + 0.05657723546028137, + 0.04710723087191582, + -0.047264114022254944, + -0.043684422969818115, + -0.04602665454149246, + 0.0323125459253788, + -0.013052322901785374, + -0.018516140058636665, + -0.0038038718048483133, + 0.015001583844423294, + -0.08274431526660919, + 0.012457753531634808, + -0.008611534722149372, + -0.055022891610860825, + -0.030106619000434875, + 0.021268436685204506, + -0.02749333716928959, + 0.001742099178954959, + -0.0518592968583107, + -0.05750854313373566, + -0.03349948301911354, + 0.05719921737909317, + 0.02120770700275898, + -0.035568006336688995, + -0.006181892938911915, + 0.0071348329074680805, + 0.004046790301799774, + -0.010648454539477825, + 0.008832029066979885, + 0.021840538829565048, + 0.021713517606258392, + -0.016893697902560234, + 0.00673546502366662, + -0.010822153650224209, + -0.010040990076959133, + -0.0038781145121902227, + 0.024804499000310898, + -0.02514580450952053, + -0.031203029677271843, + -0.05486537143588066, + -0.011337937787175179, + 0.0021723827812820673, + 0.0009049500222317874, + -0.01775554195046425, + 0.0017352144932374358, + 0.0156298466026783, + 0.02734736166894436, + 0.05751169100403786, + -0.030169837176799774, + -0.002825290197506547, + 0.005714795086532831, + 0.004957863129675388, + -0.01549401693046093, + 0.012196323834359646, + -0.060011520981788635, + 0.04406476765871048, + 0.05651620402932167, + -0.030621763318777084, + -0.02153780125081539, + 0.013334386982023716, + -0.002279890701174736, + 0.008501227013766766, + -0.06078008934855461, + 0.03509115055203438, + -0.002950173569843173, + 0.03615549951791763, + -0.027231674641370773, + -0.011927792802453041, + 0.0658312737941742, + 0.04885733127593994, + 0.0479407012462616, + -0.019786905497312546, + 0.03342501446604729, + 0.026309125125408173, + 0.029550187289714813, + 0.013211310841143131, + 0.0212278850376606, + 0.018750764429569244, + -0.008442765101790428, + 0.04042218253016472, + 0.012446087785065174, + 0.011968453414738178, + -0.022555794566869736, + 0.007092887070029974, + -0.018623298034071922, + -0.04031296819448471, + 0.05189353972673416, + -0.005607124418020248, + -0.00512008648365736, + 0.02575814723968506, + -0.0002458626695442945, + -0.02628088928759098, + 0.011300909332931042, + 0.02185479924082756, + -0.0066396985203027725, + 0.004342243075370789, + -0.009812818840146065, + 0.012727765366435051, + -0.03689071908593178, + 0.01311213243752718, + -0.025634683668613434, + 0.0036899386905133724, + 0.010575062595307827, + 0.01590302772819996, + -0.05226146802306175, + 0.01705954223871231, + 0.043144989758729935, + -0.002177371410652995, + -0.021636860445141792, + 0.032615337520837784, + -0.03269771486520767, + 0.0259605310857296, + -0.017137113958597183, + 0.05022043734788895, + 0.0015502392780035734, + -0.006854367908090353, + -0.004595797974616289, + -0.012420525774359703, + 0.043063849210739136, + 0.016051718965172768, + 7.947926496854052e-05, + 0.0009714859188534319, + 0.02424408495426178, + -0.036720260977745056, + -0.029594827443361282, + 0.040399737656116486, + -0.022781211882829666, + 0.013096645474433899, + -0.013959919102489948, + -0.013480652123689651, + 0.05374165251851082, + -0.018273137509822845, + 0.004625382833182812, + -0.030428986996412277, + -0.011782873421907425, + -0.004830625839531422, + 0.034670088440179825, + 0.02968921884894371, + -0.0069777523167431355, + -0.02573724277317524, + -0.010417706333100796, + -0.031698595732450485, + 0.01085794996470213, + 0.012456011027097702, + 0.02101687341928482, + -0.0020984322763979435, + 0.015013505704700947, + -0.005675508640706539, + 0.032211244106292725, + -0.07479602098464966, + -0.05616496875882149, + -0.018382329493761063, + -0.017328238114714622, + -0.004012206103652716, + -0.03521423786878586, + -0.014984301291406155, + -0.022675752639770508, + 0.0033051164355129004, + -0.03095056302845478, + 0.03759671375155449, + -0.005413379054516554, + -0.014181847684085369, + 0.014871644787490368, + 0.04970886558294296, + -0.030717914924025536, + 0.02169647626578808, + 0.0007617600494995713, + 0.046557001769542694, + -0.007341860793530941, + -0.019526464864611626, + 0.011148138903081417, + -0.011685133911669254, + -0.02966584637761116, + 0.035071078687906265, + 0.025329355150461197, + 0.03793122619390488, + 0.025780683383345604, + -2.798077503030072e-06, + 0.032336510717868805, + -0.024055572226643562, + -0.015135296620428562, + 0.024073543027043343, + 0.017859920859336853, + -0.0032124589197337627, + 0.02898094803094864, + -0.04234180599451065, + -0.050325892865657806, + 0.014088931493461132, + 0.014131060801446438, + 0.085797019302845, + -0.021224554628133774, + -0.017756162211298943, + 0.019732926040887833, + -0.025469135493040085, + -0.034097813069820404, + 0.0064241643995046616, + -0.0229246374219656, + -0.05301951617002487, + 0.027964651584625244, + -0.019924486055970192, + -0.00028235980425961316, + 0.010152140632271767, + -0.01448890008032322, + -0.02248043566942215, + -0.0236623864620924, + 0.044417157769203186, + 0.018919803202152252, + -0.035207174718379974, + 0.032652370631694794, + -0.020038370043039322, + 0.026736591011285782, + 0.016475729644298553, + 0.01121191680431366, + -0.04658637195825577, + 0.048956453800201416, + -0.016107803210616112, + 0.049961742013692856, + -0.051854223012924194, + -0.010479211807250977, + -0.0037535717710852623, + 0.0052176835015416145, + 0.03636399284005165, + -0.02366677112877369, + -0.041150011122226715, + -0.00993076991289854, + -0.018402088433504105, + 0.014681787230074406, + -0.08148312568664551, + 0.015199368819594383, + 0.03149373456835747, + -0.005540300160646439, + -0.013341526500880718, + -0.02441195212304592, + 0.01221703551709652, + -0.06797312200069427, + 0.0058721438981592655, + -0.026031533256173134, + -0.008775230497121811, + -0.005670792888849974, + 0.04303465411067009, + 0.02841857448220253, + -0.025703109800815582, + -0.03825601562857628, + 0.0012560460017994046, + 0.014047479256987572, + -0.0028499991167336702, + -0.005532011389732361, + -0.002110550180077553, + -0.018823854625225067, + -0.004159332253038883, + 0.0024050220381468534, + 0.07743106782436371, + 0.019592365249991417, + -0.012613712809979916, + -0.003449792042374611, + -0.022346464917063713, + 0.007919532246887684, + -0.016324235126376152, + -0.029829025268554688, + -0.032632116228342056, + 0.022129641845822334, + 0.016568951308727264, + 0.028424805030226707, + 0.024930082261562347, + 0.03765945881605148, + 0.03402277082204819, + 0.029829025268554688, + 0.01568753458559513, + -0.06222672015428543, + 0.010285568423569202, + -0.02855587564408779, + -0.011717427521944046, + 0.021195005625486374, + -0.005248741712421179, + -0.02721440978348255, + -0.031160710379481316, + -0.032636262476444244, + 0.034040387719869614, + 0.008178452961146832, + 0.011692088097333908, + -0.006028462201356888, + 0.026201047003269196, + 0.03556999936699867, + -0.0498662032186985, + -0.0025583342649042606, + -0.06333674490451813, + -0.0380602590739727, + 0.025202475488185883, + -0.016575459390878677, + 0.0032851193100214005, + 0.012491093017160892, + 0.010626192204654217, + -0.01163197960704565, + 0.012666131369769573, + -0.01787734031677246, + -0.015352827496826649, + 0.0198234710842371, + 0.04841534048318863, + -0.010595710948109627, + -0.04981619119644165, + -0.0391252301633358, + 0.007334032561630011, + 0.006568965036422014, + -0.013221938163042068, + 0.01858019083738327, + -0.0036966700572520494, + 0.0339457131922245, + -0.004079665057361126, + -0.011666594073176384, + 0.003506782464683056, + -0.04943035542964935, + -0.01291550975292921, + -0.036825031042099, + -0.015216424129903316, + -0.012173725292086601, + 0.050896622240543365, + 0.019186297431588173, + -0.020399749279022217, + -0.012700631283223629, + 0.03825196251273155, + -0.04442255571484566, + -0.016311589628458023, + -0.02958660013973713, + 0.016128700226545334, + -0.010681942105293274, + 0.02284589596092701, + 0.025744078680872917, + 0.03153759986162186, + 0.07751987129449844, + -0.014012051746249199, + 0.015035925433039665, + -0.027130767703056335, + -0.0018732388271018863, + -0.005052204709500074, + -0.004697732161730528, + 0.013516009785234928, + 0.02135087549686432, + -0.005419655237346888, + 0.04398438706994057, + 0.020893065258860588, + 0.03451193869113922, + -0.03663184121251106, + 0.021418362855911255, + 0.02329934760928154, + 0.000648756162263453, + -0.03220951184630394, + -0.022539179772138596, + 1.9283277651993558e-05, + -0.011386106722056866, + 0.017046967521309853, + -0.01450166292488575, + -0.0014521070988848805, + 0.001703611109405756, + 0.004103005398064852, + -0.04294940084218979, + 0.06943630427122116, + -0.030530516058206558 + ], + "start_index": 0, + "end_index": 132, + "token_count": 36, + "file": "construccion_dinamica_de_objeto.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "43978b54-bd7d-57e5-b162-52dcb6683f99", + "_source": { + "text": "addParam(userrype, user_type)\naddParam(sells, compras)\nif(None, None, \" user_type == 'VIP' or compras > 100\")\n addVar(descuento, 0.20)\nend()\naddResult(descuento)", + "embedding": [ + 0.0056639849208295345, + 0.0015314570628106594, + -0.013337383978068829, + -0.03141665458679199, + 0.0378294475376606, + -0.03882095217704773, + -0.013706080615520477, + -0.012453197501599789, + -0.021162522956728935, + 0.04623712599277496, + -0.012686595320701599, + -0.010604125447571278, + 0.03156391903758049, + -0.011235813610255718, + -0.04865894094109535, + 0.03156135231256485, + 0.03403441235423088, + -0.025539763271808624, + -0.03821174427866936, + 0.03147725388407707, + 0.025348057970404625, + -0.045977599918842316, + -0.030418798327445984, + 0.09624923765659332, + 0.035802725702524185, + 0.03868179768323898, + -0.01984565705060959, + 0.03474642336368561, + 0.026042038574814796, + -0.057839535176754, + 0.0021806485019624233, + -0.05228720232844353, + -0.05580881983041763, + -0.02312205731868744, + 0.007379516493529081, + -0.016542278230190277, + -0.017305530607700348, + 0.02016819827258587, + -0.0357481874525547, + 0.031524721533060074, + 0.030429616570472717, + -0.004299734253436327, + -0.008943925611674786, + 0.009297019802033901, + 0.03602215275168419, + -0.03786298260092735, + 0.04662472754716873, + -0.00973434280604124, + 0.05372994765639305, + 0.03100348450243473, + 0.04092734679579735, + -0.009454002603888512, + 0.00274098408408463, + 0.012769755907356739, + -0.010084901936352253, + -0.03513606637716293, + 0.020337704569101334, + 0.05588855594396591, + 0.043017733842134476, + 0.021057475358247757, + -0.024595696479082108, + 0.010510489344596863, + -0.0533842109143734, + -0.07812537252902985, + 0.02003767155110836, + -0.020471639931201935, + 0.00981824565678835, + -0.01507140789180994, + -0.08822307735681534, + -0.009883412159979343, + -0.012992913834750652, + -0.049213144928216934, + -0.0006288423901423812, + 0.044957514852285385, + -0.029081543907523155, + 0.0021496396511793137, + 0.013684078119695187, + -0.01781555451452732, + 0.0075646513141691685, + -0.03541828319430351, + 0.03052867203950882, + -0.0032838769257068634, + 0.04727230593562126, + 0.02037033438682556, + -0.0009755778592079878, + 0.018457449972629547, + 0.017942504957318306, + -0.016045430675148964, + 0.023703299462795258, + 0.006655147764831781, + 0.023733660578727722, + -0.008424912579357624, + -0.08350760489702225, + 0.018857020884752274, + 0.011639520525932312, + -0.002686417195945978, + 0.05534053221344948, + -0.02491649053990841, + -0.02139478363096714, + 0.0035138872917741537, + -0.010540029965341091, + 0.0209592804312706, + -0.015201893635094166, + 0.024425411596894264, + -0.0010658474639058113, + 0.012378132902085781, + -0.06683278828859329, + 0.02623388171195984, + -0.04099124297499657, + -0.009985609911382198, + 0.031168125569820404, + -0.018585318699479103, + -0.009483209811151028, + 0.015811312943696976, + -0.006326904986053705, + 0.020652571693062782, + -0.005212156567722559, + -0.036091968417167664, + 0.010643004439771175, + 0.009854089468717575, + -0.024319473654031754, + 0.028367511928081512, + -0.008547574281692505, + -0.034007478505373, + 0.06489016115665436, + -0.008501086384057999, + -0.02784271165728569, + -0.0043426803313195705, + 0.02092421054840088, + -0.027664387598633766, + -0.024305736646056175, + 0.0199490524828434, + -0.027688883244991302, + 0.025912145152688026, + 0.02530883066356182, + -0.005067282821983099, + -0.030996859073638916, + 0.029729073867201805, + 0.028629139065742493, + 0.02922356314957142, + -0.010958819650113583, + -0.008786426857113838, + -0.010890970006585121, + -0.016351668164134026, + 0.012937293387949467, + 0.049669038504362106, + -0.013929158449172974, + 0.02993154153227806, + 0.004831859841942787, + 0.06568235903978348, + 0.014410186558961868, + -0.020401980727910995, + -0.008759679272770882, + -0.02078183926641941, + -0.014279520139098167, + 0.05570393055677414, + -0.01091455016285181, + -0.02105606719851494, + -0.007305216509848833, + 6.390683847712353e-05, + -0.015594197437167168, + -0.016047503799200058, + 0.02776363119482994, + -0.0544416718184948, + -0.04745766520500183, + 0.0071664834395051, + -0.005322379991412163, + -0.024322912096977234, + -0.03883187472820282, + -0.022119691595435143, + 0.0076952544040977955, + 0.021983714774250984, + -0.017041293904185295, + 0.00801136065274477, + 0.006852209568023682, + 0.010901959612965584, + -0.029188305139541626, + -0.05493107810616493, + -0.02502363547682762, + -0.02671939879655838, + 0.03772023320198059, + 0.0047383494675159454, + -0.0009868463966995478, + -0.0026800762861967087, + -0.005976627580821514, + 0.009874816052615643, + 0.02040804922580719, + 0.03847214952111244, + -0.01576942764222622, + -0.046156905591487885, + -0.02571968547999859, + 0.0026818709447979927, + -0.004529062658548355, + 0.006106620188802481, + -0.034740570932626724, + -0.028325259685516357, + -0.02881186455488205, + -0.01504526287317276, + 0.013688919134438038, + 0.002965244697406888, + -0.03665798529982567, + -0.030335504561662674, + -0.006358131766319275, + 0.016400465741753578, + -0.022701069712638855, + -0.0065754977986216545, + 0.026895802468061447, + -0.018085777759552002, + -0.026478257030248642, + -0.02676044963300228, + -0.007650053594261408, + 0.014415832236409187, + 0.0018098900327458978, + -0.045194849371910095, + 0.0008678882732056081, + -0.0073459213599562645, + -0.019792886450886726, + 0.02333003841340542, + 0.007144469767808914, + 0.036450646817684174, + 0.00958666019141674, + 0.022073371335864067, + 0.010975318029522896, + 0.013297736644744873, + 0.048622358590364456, + -0.030474092811346054, + 0.004078591242432594, + -0.00861617736518383, + 0.023362698033452034, + -0.037773046642541885, + -0.00647848891094327, + 0.012790156528353691, + -0.018970351666212082, + -0.013774261809885502, + 0.005980519577860832, + -0.010944463312625885, + -0.0034801424480974674, + 0.02327275089919567, + 0.012084419839084148, + 0.030928023159503937, + -0.013954206369817257, + 0.008326307870447636, + 0.021508680656552315, + 0.02592345140874386, + -0.0449703149497509, + 0.018642177805304527, + -0.03129452466964722, + 0.04230854660272598, + 0.010729859583079815, + -0.03613880276679993, + 0.029599713161587715, + -0.026038890704512596, + -0.048166949301958084, + 0.023699406534433365, + 0.01617351919412613, + -0.03190354257822037, + 0.02102186530828476, + -3.6899768019793555e-05, + -0.0018692216835916042, + 0.014490014873445034, + -0.01842779479920864, + -0.012938914820551872, + -0.013543377630412579, + 0.030601734295487404, + -0.01378454826772213, + 0.015569367446005344, + -0.0027232507709413767, + 0.0595867782831192, + -0.031186649575829506, + -0.02693703956902027, + -0.059747032821178436, + 0.05369521677494049, + 0.019363293424248695, + -0.04028802737593651, + 0.04581289738416672, + 0.014993991702795029, + 0.012603724375367165, + -0.04151449352502823, + 0.07986286282539368, + -0.05323575437068939, + 0.009431077167391777, + 0.0012231779983267188, + -0.04678994044661522, + -0.0335516482591629, + 0.0027072629891335964, + 0.027286319062113762, + 0.02774330973625183, + -0.010473472997546196, + 0.01493826787918806, + -0.006117444485425949, + 0.04820500314235687, + -0.02593633532524109, + -0.025801576673984528, + -0.006302376743406057, + -0.037785012274980545, + 0.0003468523209448904, + 0.03798406198620796, + 0.09248433262109756, + -0.021342746913433075, + -0.011765110306441784, + 0.027697667479515076, + -0.0007508257403969765, + -0.03547655791044235, + 0.004755509551614523, + -0.05238579958677292, + -0.003969679586589336, + 0.041358832269907, + 0.0067764511331915855, + 0.011776626110076904, + -0.018942151218652725, + 0.12813018262386322, + 0.007987122982740402, + -0.006163089070469141, + -0.0002418561780359596, + -0.008770281448960304, + -0.015349231660366058, + -0.05646248534321785, + 0.0029940574895590544, + 0.03317858278751373, + -0.027575140818953514, + 0.056793104857206345, + -0.0262704249471426, + 0.0034972988069057465, + -0.053505223244428635, + 0.01883130520582199, + 0.02386091649532318, + 0.02362765185534954, + -0.024806199595332146, + 0.02895914949476719, + -0.011318502947688103, + 0.0470796562731266, + -0.004047464579343796, + 0.001984760630875826, + 0.03122202306985855, + -0.0029926616698503494, + 0.05792168155312538, + 0.024592764675617218, + 0.003130231285467744, + -0.01903102919459343, + -0.005736549384891987, + 0.011445356532931328, + -0.006474506575614214, + -0.033729322254657745, + 0.017446886748075485, + -0.023743517696857452, + -0.030634237453341484, + -0.06096726655960083, + -0.005528787616640329, + -0.04795678332448006, + -0.018610896542668343, + 0.009437162429094315, + 0.033379990607500076, + -0.021823281422257423, + -0.05079611390829086, + 0.009674615226686, + -0.04418797045946121, + -0.049915675073862076, + 0.01405549980700016, + -0.05903216451406479, + -0.023776160553097725, + -0.03252171352505684, + -0.013733923435211182, + 0.05958239361643791, + 0.03202223405241966, + -0.042830709367990494, + 0.024059582501649857, + -0.06369944661855698, + 0.004126155283302069, + 0.01720235124230385, + 0.04999436438083649, + -0.050196681171655655, + 0.050844307988882065, + 0.024609658867120743, + 0.05542496591806412, + 0.019381552934646606, + -0.016020148992538452, + 0.03492734208703041, + -0.0388416163623333, + 0.0052048210054636, + 0.01447748951613903, + 0.03009120188653469, + 0.008685369044542313, + -0.050845079123973846, + 0.03471428155899048, + -0.06526904553174973, + -0.061240632086992264, + 0.03756452351808548, + 0.014257778413593769, + 0.013293682597577572, + -0.024543095380067825, + 0.038818731904029846, + 0.027686426416039467, + 0.03083871677517891, + 0.021476412191987038, + -0.00281252502463758, + 0.04485601559281349, + -0.07972417026758194, + 0.0015740209491923451, + -0.023376433178782463, + 0.03860418498516083, + 0.01536316704005003, + -0.0081421984359622, + -0.03820313885807991, + -0.03176845610141754, + 0.027254290878772736, + -0.0007931329892016947, + -0.010183213278651237, + -0.006152736023068428, + 0.02693246118724346, + 0.024787427857518196, + 0.037986189126968384, + 0.06027667224407196, + -0.037936821579933167, + -0.0627719908952713, + -0.03488428518176079, + -0.04313959181308746, + 0.042710304260253906, + -0.0017333320574834943, + -0.0008762397337704897, + 0.016784125939011574, + -0.02191440388560295, + 0.022081542760133743, + -0.01998644694685936, + -0.0400162935256958, + 0.01245732232928276, + 0.07310086488723755, + -0.02191956713795662, + -0.046067554503679276, + -0.021760547533631325, + 0.04987353831529617, + -0.005494563840329647, + 0.014994939789175987, + 0.05573727935552597, + 0.0028518610633909702, + -0.06826511770486832, + -0.01086470391601324, + 0.004972475115209818, + 0.04045000299811363, + -0.014027681201696396, + -0.05928851291537285, + -0.014164606109261513, + 0.01626035012304783, + -0.06256178021430969, + -0.025477418676018715, + -0.02936656028032303, + 0.01525361742824316, + 0.0004593912453856319, + -0.0015323036350309849, + -0.007703944109380245, + -0.016410669311881065, + -0.02849246934056282, + -0.025993401184678078, + 0.02243565022945404, + 0.03074079006910324, + 0.03080916777253151, + -0.027714597061276436, + -0.029928265139460564, + -0.037017032504081726, + 0.06435069441795349, + 0.00900537520647049, + 0.008492465130984783, + 0.03725244477391243, + 0.04834723472595215, + -0.02008378505706787, + 0.007560666650533676, + 0.02888757362961769, + -0.022921741008758545, + -0.013831030577421188, + 0.03620881214737892, + -0.019643301144242287, + 0.05933469906449318, + 0.03171992674469948, + 0.018734535202383995, + -0.02908516861498356, + 0.00840914435684681, + -0.012621979229152203, + 0.01988408900797367, + 0.007719211280345917, + 0.015533266589045525, + -0.007669992279261351, + -0.02179981768131256, + 0.003481126157566905, + 0.036458905786275864, + -0.04301414266228676, + 0.08131599426269531, + -0.0044864993542432785, + 0.029348624870181084, + -0.009390495717525482, + -0.04303177446126938, + 0.009319343604147434, + 0.020098598673939705, + 0.004343216307461262, + 0.038537412881851196, + -0.0091933598741889, + 0.010841169394552708, + -0.03598430007696152, + 0.00036778501817025244, + -0.041237205266952515, + -0.031049657613039017, + 0.03303426504135132, + -0.062461648136377335, + -0.011882953345775604, + -0.08947733044624329, + 0.04357974976301193, + -0.022573210299015045, + -0.014780583791434765, + 0.001555241527967155, + -0.03159568831324577, + 0.014881065115332603, + 0.03617202118039131, + 0.036113642156124115, + -0.03321155905723572, + -0.005236034747213125, + 0.01820429041981697, + -0.01826935075223446, + 0.0018525393679738045, + 0.04388192668557167, + -0.007290475070476532, + -0.02630538120865822, + 0.04749032482504845, + 0.00502048572525382, + -0.0018687513656914234, + -0.01030055433511734, + -0.0056317998096346855, + -0.020000765100121498, + 0.030315453186631203, + 0.027852175757288933, + -0.07033099234104156, + 0.007312174886465073, + 0.033805135637521744, + -0.018382955342531204, + 0.013173094019293785, + 0.012246562168002129, + -0.011300057172775269, + 0.04635081812739372, + 0.010060619562864304, + -0.03580085560679436, + -0.008533417247235775, + 0.023436781018972397, + 0.03176606819033623, + -0.004108625464141369, + -0.044233307242393494, + -0.013811027631163597, + -0.0458914078772068, + -0.005474177189171314, + -0.01045999675989151, + -0.02702774666249752, + 0.005443389993160963, + 0.016890132799744606, + -0.009144594892859459, + 0.009321989491581917, + -0.005215462297201157, + 0.0379270575940609, + -0.028727544471621513, + -0.005229630041867495, + 0.0115492669865489, + 0.04745452105998993, + 0.027086980640888214, + 0.02427186258137226, + 0.000897455494850874, + 0.010012236423790455, + 0.039556752890348434, + -0.03271486610174179, + -0.03377441689372063, + 0.02658112719655037, + -0.040792468935251236, + -0.041720595210790634, + -0.016560636460781097, + 0.021804630756378174, + -0.02684810943901539, + -0.0012211231514811516, + -0.0029720354359596968, + 0.059604305773973465, + 0.01542360708117485, + -0.008346950635313988, + -0.052660513669252396, + -0.009250202216207981, + 0.021003922447562218, + 0.05245238170027733, + 0.036045268177986145, + -0.01292668841779232, + -0.019580882042646408, + -0.012868614867329597, + 0.012212835252285004, + 0.012583720497786999, + 0.020234018564224243, + 0.040070790797472, + 0.00999745074659586, + -0.007250247988849878, + -0.007268713321536779, + -0.022960305213928223, + -0.027874469757080078, + 0.014774488285183907, + 0.02661343663930893, + 0.07196200639009476, + 0.02416232042014599, + -0.07285558432340622, + -0.03577461466193199, + 0.0024703729432076216, + -0.029196981340646744, + 0.04450278356671333, + 0.08414861559867859, + -0.003631721017882228, + 0.020234333351254463, + -0.020950529724359512, + -0.0002916052471846342, + -0.02888718619942665, + 0.01768282987177372, + -0.07110493630170822, + 0.0178756695240736, + -0.030896535143256187, + 0.00702902814373374, + -0.0632348284125328, + 0.02089725062251091, + -0.03734288737177849, + 0.024354424327611923, + -0.013288306072354317, + 0.01326441578567028, + 0.026511099189519882, + -0.05501900240778923, + 0.0028045307844877243, + 0.04899362102150917, + -0.009796051308512688, + 0.10578582435846329, + -0.00659734383225441, + 0.004082739818841219, + 0.010849970392882824, + -4.3677111534634605e-05, + -0.01326936949044466, + 0.023824570700526237, + -0.0928029865026474, + -0.03719586879014969, + -0.04612354561686516, + 0.036484625190496445, + -0.0029121357947587967, + -0.006419388111680746, + -0.002138972980901599, + -0.062393058091402054, + 0.027584977447986603, + -0.03113817237317562, + -0.0038699517026543617, + -0.014854839071631432, + 0.044882312417030334, + -0.04624418914318085, + 0.006962876301258802, + -0.01610328070819378, + -0.03132747858762741, + 0.02292388491332531, + 0.033916063606739044, + -0.009565037675201893, + 0.025885140523314476, + 0.005308013875037432, + -0.004864583723247051, + -0.000597702048253268, + -0.027208350598812103, + 0.01957709528505802, + 0.027045996859669685, + -0.007675818167626858, + 0.014538747258484364, + -0.01719939149916172, + 0.022009912878274918, + -0.04366142302751541, + 0.029997384175658226, + -0.024141784757375717, + -0.073044553399086, + 0.015930859372019768, + 0.07927224040031433, + 0.007292075082659721, + 0.013986684381961823, + -0.009660864248871803, + -0.01819772459566593, + -0.008205866441130638, + 0.03626570478081703, + -0.029296856373548508, + -0.0074914549477398396, + -0.030183203518390656, + 0.0037768336478620768, + -0.026946526020765305, + -0.08175469934940338, + -0.009953273460268974, + -0.028206562623381615, + -0.031440164893865585, + -0.011096447706222534, + -0.06889909505844116, + 0.016548821702599525, + -0.02413257397711277, + -0.05926375463604927, + 0.025136753916740417, + 0.02117227204144001, + -0.05776647478342056, + -0.009134742431342602, + -0.018569594249129295, + 0.014596215449273586, + 0.018461525440216064, + -0.031417760998010635, + -0.0007428659009747207, + -0.021392937749624252, + -0.008726506493985653, + -0.03862934559583664, + 0.03029627911746502, + 0.011522619053721428, + 0.021840723231434822, + 0.019891411066055298, + 0.029718490317463875, + -0.006620268803089857, + 0.0019123322563245893, + -0.024536220356822014, + -0.013007617555558681, + -0.06117062270641327, + -0.04577575623989105, + -0.022452237084507942, + -0.03706451877951622, + 0.009837676770985126, + 0.0192771777510643, + 0.04585782438516617, + 0.02611791342496872, + -0.023950297385454178, + 0.021872946992516518, + -0.036955006420612335, + -0.027248280122876167, + -0.019475970417261124, + -0.009565015323460102, + 0.0656861886382103, + -0.03125331178307533, + 0.0033313126768916845, + -0.029230961576104164, + 0.04761109873652458, + 0.02705824375152588, + -0.01784130372107029, + -0.05598017945885658, + 0.019117241725325584, + -0.02122674137353897, + 0.006721209269016981, + -0.009964457713067532, + 0.010291101410984993, + 0.03757031634449959, + 0.041122227907180786, + -0.01234079897403717, + 0.01475282572209835, + -0.01879003643989563, + 0.05791962519288063, + -0.020209521055221558, + -0.029786154627799988, + 0.010801412165164948, + 0.018625853583216667, + 0.024731015786528587, + -0.01084606908261776, + -0.01573130302131176, + 0.037428151816129684, + 0.04728750139474869, + 0.0063585140742361546, + -0.012083018198609352, + -0.006208425387740135, + 0.08301202207803726, + -0.024789782240986824, + -0.029519381001591682, + -0.005285477265715599, + 0.023806173354387283, + 0.004040741361677647, + 0.0046167755499482155, + 0.015948591753840446, + 0.022994915023446083, + -0.002914915094152093, + 0.0027123268228024244, + 0.030123237520456314, + -0.014367037452757359, + 0.003190946066752076, + -0.04446440190076828, + 0.02398131787776947, + -0.0011567433830350637, + -0.006464723031967878, + -0.040695980191230774, + 0.046073224395513535, + 0.056010548025369644, + -0.002678584773093462, + 0.011464801616966724, + -0.010926718823611736, + -0.011857500299811363, + -0.007091464940458536, + -0.002710184082388878, + 0.03514561802148819, + 0.004473128356039524, + -0.02236991934478283, + 0.01211072038859129, + 0.022020190954208374, + 0.05279771238565445, + 0.019876180216670036, + 0.04052601009607315, + 0.00819379836320877, + 0.03361256420612335, + 0.044543422758579254, + 0.0076508899219334126, + -0.008293083868920803, + 0.002063099527731538, + 0.0010719613637775183, + 0.04093904793262482, + -0.04037850722670555, + 0.024273104965686798, + 0.02819567732512951, + 0.04842687398195267, + -0.028267543762922287, + -0.000563981884624809, + -0.01307192537933588, + -0.007775974925607443, + 0.0456731803715229, + -0.007701775524765253, + -0.037577345967292786, + 0.018469536677002907, + -0.04825584217905998, + -0.011300807818770409, + 0.014105426147580147, + 0.06761389970779419, + -0.04609844833612442, + 0.07334063202142715, + 0.010794097557663918, + 0.07397593557834625, + -0.05906587839126587, + -0.0238420981913805, + -0.04641593620181084, + -0.03431699424982071, + 0.0031885006465017796, + 0.02405356615781784, + 0.017872054129838943, + 0.056941766291856766, + -0.05154133588075638, + -0.005792712327092886, + 0.02560562640428543, + -0.015109899453818798, + 0.012951133772730827, + -0.035553328692913055, + 0.0037017494905740023, + -0.03744666650891304, + 0.06697403639554977, + -0.006472970824688673, + 0.05461840704083443, + 0.02943689003586769, + -0.01741734705865383, + 0.015975728631019592, + 0.008950254879891872, + -0.004100407939404249, + 0.026100626215338707, + 0.00208285846747458, + -2.7351641620043665e-05, + 0.008375557139515877, + 0.013283470645546913, + 0.05287962034344673, + -0.047661907970905304, + 0.0425882413983345, + -0.0005058426759205759, + -0.01880568452179432, + -0.0064324126578867435, + 0.02440955862402916, + -0.020115718245506287, + -0.008476683869957924, + 0.03976932913064957, + 0.07426457107067108, + 0.0037413521204143763, + 0.027401892468333244, + -0.028382189571857452, + 0.017133120447397232, + -0.02541733719408512, + -0.06431563198566437, + -0.00255884462967515, + -0.01889309659600258, + -0.012171135284006596, + 0.02506376802921295, + 0.0032055778428912163, + 0.03843553364276886, + 0.038772374391555786, + -0.02860676497220993, + -0.015300939790904522, + -0.0008958869148045778, + 0.02513928711414337, + 0.0566692091524601, + -0.05592882260680199, + -0.00761135620996356, + -0.0213856790214777, + -0.022184761241078377, + 0.09115125238895416, + 0.013195289298892021, + 0.0011244026245549321, + 0.011125082150101662, + 0.01996803842484951, + -0.020155739039182663, + -0.03073360025882721, + -0.03361722454428673, + 0.014267553575336933, + 0.0048523652367293835, + 0.0017093487549573183, + 0.017672469839453697, + -0.03498338162899017, + -0.020152991637587547, + 0.0024681594222784042, + 0.030216624960303307, + -0.09986921399831772, + -0.027190616354346275, + 0.03298817574977875, + 0.007767295930534601, + -0.049196287989616394, + -0.0074918800964951515, + 0.028159124776721, + -0.02208118513226509, + -0.047624483704566956, + -0.02933439053595066, + 0.01511149387806654, + -0.025568155571818352, + 0.0059872581623494625, + 0.0042088450863957405, + 0.033543314784765244, + 0.002596719656139612, + -0.05203743651509285, + 0.023697230964899063, + 0.046312760561704636, + 0.027772272005677223, + 0.01002240926027298, + -0.017360923811793327, + -0.033935800194740295, + -0.023662013933062553, + -0.008819935843348503, + -0.029637500643730164, + 0.02640117146074772, + -0.014242450706660748, + -0.0301617793738842, + 0.004814572632312775, + -0.012899118475615978, + -0.018351487815380096, + -0.015097451396286488, + -0.025761185213923454, + 0.026834633201360703, + 0.064029261469841, + 0.03730335086584091, + 0.039178136736154556, + 0.049834951758384705, + -0.020502060651779175, + -0.002652618335559964, + 0.00751476688310504, + 0.010756338015198708, + -0.0056162020191550255, + -0.005827135406434536, + 0.009396111592650414, + 0.013657912611961365, + -0.013336366042494774, + 0.08059298247098923, + 0.04377797618508339, + 0.030846349895000458, + 0.023700982332229614, + -0.052420299500226974, + 0.011563328094780445, + 0.010157941840589046, + 0.015039583668112755, + -0.037603821605443954, + 0.033535752445459366, + -0.011354883201420307, + 0.01687263883650303, + -0.028184376657009125, + -0.008321468718349934, + -0.05362030118703842, + 0.016397014260292053, + 0.0016175037017092109, + -0.015936732292175293, + 0.0022560209035873413, + 0.03252749517560005, + -0.02399960532784462, + 0.03836571425199509, + 0.02022307738661766, + -0.03989436849951744, + -0.03504813835024834, + -0.013237971812486649, + -0.016381708905100822, + -0.023576196283102036, + 0.022510001435875893, + 0.04936807230114937, + -0.03540327027440071, + 0.023419251665472984, + 0.04226211458444595, + -0.001845138263888657, + -0.00787911843508482, + -0.04238847643136978, + 0.03691510111093521, + -0.005654036067426205, + -0.019652122631669044, + -0.03374112769961357, + 0.07033248245716095, + -0.010504099540412426, + 0.00686532212421298, + -0.03427276387810707, + 0.024022528901696205, + -0.013501004315912724, + 0.020392799749970436, + -0.05296201631426811, + 0.006257856730371714, + 0.04099796339869499, + -0.028178991749882698, + -0.048533227294683456, + 0.018628738820552826, + 0.0743442252278328, + 0.004997449927031994, + 0.013950745575129986, + 0.02574210986495018, + -0.036001481115818024, + -0.007903028279542923, + -0.014358102343976498, + -0.01280391588807106, + -0.01575128547847271, + 0.0058016106486320496, + -0.013650864362716675, + -0.00341300037689507, + -0.006381180603057146, + -0.02501816675066948, + 0.02871621586382389, + 0.02324087917804718, + 0.009764427319169044, + 0.022224679589271545, + -0.01636888086795807, + 0.04643818363547325, + 0.0008616152335889637, + 0.017929449677467346, + 0.04916538670659065, + 0.02934819646179676, + -0.011853396892547607, + -0.002165700774639845, + 0.02070099487900734, + 0.021987812593579292, + 0.00867312029004097 + ], + "start_index": 0, + "end_index": 164, + "token_count": 57, + "file": "expresion_compleja.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "32624d83-253b-5e2e-8f2b-8738853a33aa", + "_source": { + "text": "nombre = \"Sistema\"\nlog = \"Evento registrado por: %s\" % nombre\naddResult(log)", + "embedding": [ + 0.020264845341444016, + -0.011063451878726482, + -0.011208518408238888, + -0.1025601178407669, + 0.03151103854179382, + -0.05835919827222824, + -0.01343728881329298, + 0.053626030683517456, + -0.019696248695254326, + 0.003254158655181527, + -0.019032899290323257, + -0.10850127041339874, + 0.028256474062800407, + -0.011562446132302284, + -0.03811929374933243, + 0.09461358934640884, + -0.05351338908076286, + 0.020729783922433853, + 0.024276863783597946, + -0.03599262610077858, + -0.0178969856351614, + 0.010228151455521584, + -0.030251696705818176, + -0.01231051329523325, + -0.006601027213037014, + -0.0026620381977409124, + -0.07369288057088852, + 0.10646194219589233, + 0.025017380714416504, + 0.008211679756641388, + 0.0713033378124237, + -0.010886013507843018, + -0.04539423808455467, + -0.005430720280855894, + -0.009566816501319408, + -0.01643683947622776, + -0.024225983768701553, + -0.02053440921008587, + -0.028594406321644783, + 0.011039147153496742, + 0.06732354313135147, + 0.05364396795630455, + 0.0305594801902771, + -0.014907052740454674, + 0.016386862844228745, + -0.03927518427371979, + -0.004098521079868078, + -0.004182927310466766, + -0.03291666507720947, + -0.01910926029086113, + -0.016840288415551186, + 0.030691979452967644, + -0.003104474861174822, + 0.008251371793448925, + -0.005537307355552912, + -0.016663895919919014, + 0.014422304928302765, + 0.017814146354794502, + 0.013483227230608463, + -0.01565365679562092, + -0.029588481411337852, + 0.04242655634880066, + -0.0012531880056485534, + -0.08632619678974152, + 0.016822006553411484, + -0.0147834038361907, + 0.004737563896924257, + -0.05743410810828209, + -0.10946781933307648, + 0.010357074439525604, + 0.021658485755324364, + -0.025310033932328224, + -0.0031216503120958805, + 0.034085094928741455, + 0.010573981329798698, + 0.039801351726055145, + 0.021636178717017174, + -0.03403327986598015, + 0.008200987242162228, + 0.017843570560216904, + -0.009029398672282696, + 0.039708297699689865, + 0.03225318714976311, + -0.005832667928189039, + -0.02103753760457039, + 0.019989609718322754, + -0.009919931180775166, + 0.023966198787093163, + -0.07161963731050491, + -0.008119919337332249, + -0.03162732347846031, + 0.06362447887659073, + -0.04116629809141159, + 0.007963059470057487, + -0.008095908910036087, + 0.009246893227100372, + 0.004874729085713625, + 0.07768680155277252, + -0.009236406534910202, + 0.0037247040309011936, + -0.024017347022891045, + -0.028291428461670876, + 0.0010072984732687473, + -0.042624253779649734, + 0.002323644235730171, + 0.035189494490623474, + -0.06455213576555252, + 0.008085543289780617, + -0.03976357355713844, + -0.023754918947815895, + -0.02629324048757553, + 0.0458507314324379, + 0.00010537763591855764, + 0.04184930399060249, + -0.02570950612425804, + 0.02749343402683735, + 0.03487219288945198, + 0.01956804469227791, + 0.007090216502547264, + -0.028685463592410088, + -0.008605724200606346, + -0.016026362776756287, + 0.010235077701508999, + 0.0075114998035132885, + 0.0003453501558396965, + -0.03004852682352066, + -0.03964200243353844, + -0.019834399223327637, + 0.0117544736713171, + -0.0106250224635005, + 0.0004892664146609604, + 0.00862604845315218, + -0.021416740491986275, + -0.060606345534324646, + 0.026578189805150032, + -0.0002031354233622551, + -0.012627044692635536, + -0.018728656694293022, + 0.0034077882301062346, + -0.0003289338492322713, + -0.03170919418334961, + 0.0010655594523996115, + 0.013562900014221668, + 0.008848185651004314, + 0.0017248446820303798, + 0.027872461825609207, + -0.017473094165325165, + 0.007134196348488331, + 0.02987058274447918, + -0.00623124185949564, + -0.01086126547306776, + 2.4918437702581286e-05, + -0.014442257583141327, + 0.014764003455638885, + -0.03331577777862549, + 0.019908372312784195, + 0.01533226016908884, + -0.018103081732988358, + 0.021816998720169067, + 0.008305132389068604, + -0.0036949291825294495, + -0.008942845277488232, + -0.020571112632751465, + -0.0597638376057148, + -0.025839313864707947, + 0.009682917036116123, + -0.0173636544495821, + -0.010868401266634464, + 0.014220279641449451, + 0.023990385234355927, + -0.016709139570593834, + 0.01884455606341362, + -0.017786722630262375, + -0.008623050525784492, + -0.004483321215957403, + -0.016072846949100494, + -0.025738602504134178, + -0.09365261346101761, + -0.013047903776168823, + 0.018888285383582115, + 0.052429068833589554, + -0.03285682201385498, + 0.026219284161925316, + 0.02744459919631481, + 0.00983811728656292, + 0.05185973271727562, + 0.013916165567934513, + 0.013782012276351452, + 0.012819261290133, + -0.019128235056996346, + 0.00031418309663422406, + 0.03141123056411743, + -0.0340096578001976, + -0.028560573235154152, + -0.0022855934221297503, + -0.024579957127571106, + 0.038588859140872955, + -0.014448602683842182, + -0.02444177120923996, + -0.009911020286381245, + -0.004357818514108658, + 0.011887556873261929, + 0.015516433864831924, + 0.004520069342106581, + -0.0014424542896449566, + 0.018766159191727638, + 0.028920456767082214, + -0.028703952208161354, + 0.00112094113137573, + 0.020144926384091377, + -0.022067073732614517, + -0.004403056111186743, + -0.024009503424167633, + -0.01705191284418106, + -0.0031391445081681013, + 0.04074905812740326, + 0.023288581520318985, + 0.026897437870502472, + 0.0029963639099150896, + 0.017827510833740234, + 0.019350962713360786, + 0.03718356788158417, + 0.008092663250863552, + 0.011708789505064487, + -0.05020655319094658, + 0.007667902857065201, + 0.0006060937303118408, + -0.007628371473401785, + -0.0030743374954909086, + 0.011181412264704704, + -0.049912452697753906, + 0.010749069973826408, + 0.03389902040362358, + 0.006652174051851034, + 0.06583382934331894, + 0.04374144226312637, + 0.0305069200694561, + 0.05076633766293526, + 0.021176399663090706, + -0.002804171061143279, + -0.004030178301036358, + 0.0182354673743248, + 0.02167704328894615, + 0.011717138811945915, + -0.04837775602936745, + 0.012607775628566742, + -0.013634972274303436, + 0.03719280660152435, + -0.030630631372332573, + -0.02876267582178116, + 0.013439320959150791, + 0.010642155073583126, + -0.04599059000611305, + -0.0004691988287959248, + 0.023121638223528862, + -0.0049115014262497425, + 0.0201515294611454, + -0.010926318354904652, + 0.016463911160826683, + -0.010046928189694881, + 0.0012526026694104075, + -0.03502101078629494, + -0.04086083918809891, + 0.0411490872502327, + 0.051205407828092575, + 0.017989875748753548, + -0.0276627354323864, + -0.013831024058163166, + 0.0013600230449810624, + -0.008887247182428837, + 0.030697740614414215, + 0.009533765725791454, + -0.04145456477999687, + 0.0022979790810495615, + -0.013642248697578907, + 0.055012427270412445, + -0.0007576278294436634, + -0.11243059486150742, + 0.03087642975151539, + 0.0013482219073921442, + 0.06594233214855194, + 0.0165121890604496, + -0.030527517199516296, + 0.006769272498786449, + -0.024259747937321663, + 0.030893098562955856, + 0.03708411753177643, + 0.0358365997672081, + 0.027585308998823166, + 0.0006958577432669699, + -0.029719192534685135, + -0.025851234793663025, + -0.07464312016963959, + 0.05844787880778313, + -0.014896508306264877, + 0.03197728469967842, + -0.023150775581598282, + 0.020598111674189568, + 0.004721591714769602, + 0.00499396026134491, + 0.02927345409989357, + 0.0004073058080393821, + 0.005978110712021589, + 0.010843330062925816, + -0.0033972831442952156, + 0.005648150108754635, + 0.03531276807188988, + 0.020558346062898636, + 0.05115398392081261, + -0.032399725168943405, + 0.04437408223748207, + -0.013540747575461864, + 0.006437677424401045, + -0.028372876346111298, + -0.006686229258775711, + -0.011351094581186771, + -0.017901208251714706, + -0.0011444390984252095, + 0.012920763343572617, + 0.03619148209691048, + 0.019213739782571793, + -0.05784061923623085, + -0.01975993625819683, + -0.016709575429558754, + 0.0029976030346006155, + 0.052704162895679474, + -0.05208483338356018, + -0.0029840876813977957, + 0.03440682590007782, + 0.0025020975153893232, + 0.020730916410684586, + 0.030884429812431335, + 0.039108917117118835, + -0.018098972737789154, + -0.051503632217645645, + 0.04216979071497917, + 0.0019966166000813246, + -0.003250003792345524, + 0.022925399243831635, + 0.013692386448383331, + 0.039942946285009384, + 0.009699121117591858, + -0.02764889784157276, + -0.03039255551993847, + 0.008621487766504288, + -0.035983189940452576, + -0.04644785448908806, + -0.03434419259428978, + 0.018129171803593636, + 0.027163345366716385, + -0.03777249529957771, + 0.0162059236317873, + 0.014931411482393742, + -0.04109860956668854, + -0.024464311078190804, + -0.01794220693409443, + -0.013961265794932842, + 0.056847501546144485, + -0.011555519886314869, + -0.013268813490867615, + -0.015152126550674438, + -0.0060453820042312145, + 0.047156065702438354, + -0.02204662188887596, + -0.0103449122980237, + 0.009411738254129887, + -0.00393687654286623, + 0.01091452781111002, + 0.10051561892032623, + -0.05172979459166527, + -0.08797943592071533, + -0.07658374309539795, + -0.007799217011779547, + 0.015093756839632988, + 0.058372560888528824, + 0.01245237048715353, + 0.03221648186445236, + 0.02070074900984764, + -0.010918622836470604, + 0.05271056666970253, + 0.00703337462618947, + 0.005025076679885387, + -0.01916240155696869, + 0.015013430267572403, + -0.002156455535441637, + -0.0693991407752037, + 0.06936109811067581, + -0.09266282618045807, + 0.011028158478438854, + 0.024026725441217422, + 0.01515139453113079, + -0.03608042746782303, + 0.027970023453235626, + 0.020747007802128792, + 0.03052722103893757, + 0.04290751740336418, + -0.05225121229887009, + 0.0037008507642894983, + -0.041120078414678574, + -0.007511351257562637, + 0.005604150705039501, + 0.020585091784596443, + -0.027737362310290337, + -0.008044624701142311, + 0.004922442603856325, + -0.0015830862103030086, + -0.005542431958019733, + 0.029414286836981773, + -0.010347792878746986, + 0.008257132954895496, + 0.04082844778895378, + 0.018700702115893364, + 0.015009615570306778, + -0.0382235161960125, + 0.07620182633399963, + -0.024265125393867493, + 0.02425653301179409, + -0.03696896508336067, + -0.0053991954773664474, + -0.00316827860660851, + 0.0013244051951915026, + 0.04268203675746918, + -0.031847286969423294, + -0.020084600895643234, + -0.011347409337759018, + -0.020111173391342163, + -0.03370475769042969, + -0.04260345175862312, + 0.004730611573904753, + 0.09407859295606613, + -0.0027047789189964533, + -0.018229568377137184, + 0.007555308751761913, + -0.030884645879268646, + -0.03697822988033295, + 0.025234371423721313, + 0.0008076843223534524, + -0.02271580696105957, + 0.05547786504030228, + -0.0508212111890316, + -0.009375836700201035, + 0.04537300020456314, + -0.008175954222679138, + 0.04249955341219902, + -0.013694056309759617, + -0.010428170673549175, + -0.01267488207668066, + 0.020168282091617584, + -0.02474617026746273, + -0.021617339923977852, + -0.0182988028973341, + -0.03800688311457634, + 0.03432604297995567, + 0.03581256791949272, + 0.06876240670681, + -0.05841439589858055, + -0.034100692719221115, + 0.023243039846420288, + 0.04090399667620659, + 0.044866591691970825, + 0.034384388476610184, + -0.0005862436955794692, + 0.026683175936341286, + 0.06315957009792328, + -0.012315727770328522, + 0.008989709429442883, + 0.052821673452854156, + 0.021073415875434875, + 0.036663856357336044, + -0.012883675284683704, + 0.04142208769917488, + 0.0362272784113884, + 0.018294446170330048, + 0.011682359501719475, + 0.009104782715439796, + -0.042655959725379944, + -0.022919852286577225, + -0.0732010006904602, + 0.020460356026887894, + 0.004300986882299185, + -0.014830786734819412, + -0.005941277835518122, + -0.0065806773491203785, + -0.02883830852806568, + 0.06298527866601944, + -0.038086336106061935, + 0.017810512334108353, + -0.010688730515539646, + 0.025064850226044655, + 0.01923675648868084, + -0.0026096547953784466, + 0.06026647984981537, + -0.014963722787797451, + -0.023387698456645012, + 0.026292404159903526, + -0.04881416633725166, + -0.03405296429991722, + -0.05859637260437012, + -0.023059315979480743, + 0.009358668699860573, + -0.0310483667999506, + 0.0411250963807106, + 0.005266295745968819, + 0.033172477036714554, + -0.020713424310088158, + -0.01887749508023262, + 0.023326223716139793, + -0.026608474552631378, + 0.0022914090659469366, + 0.024107404053211212, + 0.03777649998664856, + -0.02121078036725521, + 0.039829861372709274, + -0.012441452592611313, + -0.03763006255030632, + 0.04312897473573685, + 0.03088279440999031, + -0.007124681491404772, + -0.03072734922170639, + 0.04508829861879349, + -0.025110093876719475, + 0.038220278918743134, + 0.07049428671598434, + 0.0060722604393959045, + 0.007695877458900213, + 0.027608953416347504, + 0.07783622294664383, + -0.016579745337367058, + 0.026233715936541557, + -0.026695169508457184, + -0.0371301993727684, + 0.02021821215748787, + -0.01617090031504631, + 0.012598691508173943, + 0.06357865780591965, + -0.013329459354281425, + -0.009121764451265335, + -0.03174477815628052, + -0.009661090560257435, + 0.06645551323890686, + 0.004992522299289703, + -0.01994774304330349, + -0.037940602749586105, + -0.0013046714011579752, + 0.04378625750541687, + -0.022617848590016365, + 0.04865633696317673, + -0.020861102268099785, + -0.05448072776198387, + 0.028786664828658104, + -0.01248385664075613, + -0.01763221248984337, + 0.03875231742858887, + 0.03095480054616928, + 0.009486221708357334, + -0.005108726676553488, + -0.02271767146885395, + 0.004924151115119457, + -0.002057852456346154, + 0.025544164702296257, + -0.01926940307021141, + 0.025260260328650475, + 0.013170648366212845, + -0.025115273892879486, + -0.01649206317961216, + 0.016936803236603737, + -0.010867783799767494, + 0.018347779288887978, + 0.038237106055021286, + -0.010399392805993557, + 0.01176381204277277, + 0.010578365996479988, + 0.020110182464122772, + 0.03792334347963333, + 0.021143050864338875, + -0.042320653796195984, + -0.013376174494624138, + 0.04911329969763756, + 0.034578658640384674, + -0.008878495544195175, + 0.004672957584261894, + 0.03566848859190941, + -0.06357867270708084, + 0.0406164824962616, + -0.07687915861606598, + -0.05299247056245804, + 0.021610384806990623, + -0.006123961415141821, + -0.009876824915409088, + -0.052407506853342056, + -0.018534211441874504, + -0.0555943101644516, + 0.021015485748648643, + 0.042736608535051346, + 0.03761294111609459, + -0.012643982656300068, + -0.02127772569656372, + -0.028211381286382675, + 0.048443373292684555, + -0.014250185340642929, + 0.0045651658438146114, + 0.039521511644124985, + 0.041700638830661774, + -0.005717811640352011, + -0.040906473994255066, + -0.03294932469725609, + -0.027310337871313095, + 0.020897384732961655, + -0.0005173654644750059, + 0.03427111729979515, + -0.019677359610795975, + -0.020094171166419983, + -0.04244087636470795, + -0.03019685111939907, + -0.018183568492531776, + -0.04252341389656067, + -0.03346872329711914, + 0.016373388469219208, + 0.006822854280471802, + -0.05731001868844032, + -0.007226218935102224, + -0.0027632226701825857, + 0.002210015431046486, + 0.0477343387901783, + 0.007602458354085684, + -0.008031119592487812, + -0.04025884345173836, + 0.025012191385030746, + -0.042721886187791824, + -0.013824820518493652, + 0.0006804935401305556, + -0.015005083754658699, + -0.05753304809331894, + -0.014746444299817085, + 0.04071490094065666, + -0.03733751177787781, + -0.03066214919090271, + -0.031849205493927, + -0.008134759031236172, + -0.03430242836475372, + 0.012198369018733501, + -0.02976561337709427, + 0.004332588519901037, + 0.010695109143853188, + 0.008078799583017826, + -0.018774237483739853, + -0.008199948817491531, + -0.008369785733520985, + 0.08277219533920288, + -0.028420859947800636, + 0.016666073352098465, + 0.03967510163784027, + 0.016733797267079353, + 0.024245325475931168, + -0.030456820502877235, + -0.03024311363697052, + 0.019831491634249687, + 0.01795017719268799, + -0.0039702290669083595, + 0.017225973308086395, + -0.005281927529722452, + -0.022456225007772446, + 0.05916459485888481, + -0.02355630323290825, + -0.0019612316973507404, + -0.052312999963760376, + 0.07565665990114212, + -0.010522219352424145, + 0.01881290227174759, + 0.002283116104081273, + -0.005528172478079796, + -0.04632502794265747, + 0.017464622855186462, + 0.01458404678851366, + -0.010410673916339874, + 0.012547002173960209, + -0.02129632979631424, + -0.018666086718440056, + -0.01758461818099022, + -0.025177571922540665, + -0.0384114645421505, + 0.008607123047113419, + -0.01869058609008789, + -0.02256804332137108, + -0.061363112181425095, + -0.009371341206133366, + -0.025093920528888702, + 0.006789809092879295, + 0.03202350065112114, + -0.0023400133941322565, + -0.02021370455622673, + 0.014223695732653141, + 0.015085078775882721, + -0.005870933644473553, + -0.048934295773506165, + 0.07425737380981445, + 0.008156758733093739, + 0.035976674407720566, + -0.031922560185194016, + 0.024842213839292526, + -0.007878937758505344, + -0.01597193069756031, + -0.045500580221414566, + -0.00234406441450119, + 0.02758600004017353, + 0.03364036604762077, + -0.030986648052930832, + 0.018300406634807587, + -0.010467310436069965, + -0.041628580540418625, + 0.009293612092733383, + 0.006179595831781626, + -0.04931402578949928, + -0.028883710503578186, + -0.0030705993995070457, + 0.025238491594791412, + -0.03566466644406319, + 0.026207564398646355, + -0.021946774795651436, + 0.004305207170546055, + 0.021916106343269348, + -0.0762292891740799, + 0.016273347660899162, + 0.007834157906472683, + 0.024012479931116104, + -0.03503783419728279, + 0.03565429523587227, + 0.018083209171891212, + 0.01751207746565342, + 0.006290206220000982, + 0.025248566642403603, + 0.040983423590660095, + 0.032055482268333435, + -0.05845240503549576, + 0.024024829268455505, + 0.028981570154428482, + 0.045014433562755585, + -0.0029209458734840155, + -0.005517676007002592, + 0.015568391419947147, + 0.011852865107357502, + -0.011751636862754822, + -0.03591271862387657, + -0.023394471034407616, + 0.01791127771139145, + 0.01489782053977251, + -0.0016902294009923935, + -0.02478235401213169, + -0.0026602025609463453, + 0.03160912171006203, + 0.01375257782638073, + -0.0027663270011544228, + -0.027234500274062157, + 0.029677076265215874, + 0.021575497463345528, + -0.027017900720238686, + 3.8951446185819805e-05, + 0.04579593613743782, + -0.014136919751763344, + -0.003227250650525093, + -0.015483313240110874, + -0.023311974480748177, + -0.007066508289426565, + -0.008073030039668083, + 0.049083907157182693, + 0.013891005888581276, + 0.05162178725004196, + -0.04696273431181908, + -0.025387898087501526, + 0.012520680204033852, + -0.005109663587063551, + -0.014333466067910194, + 0.03137699514627457, + 0.047234028577804565, + 0.004708822816610336, + -0.0069821360521018505, + 0.027832429856061935, + 0.007728078402578831, + -0.011411136947572231, + 0.012878925539553165, + 0.005033519119024277, + -0.020679153501987457, + 0.02956932596862316, + -0.004828387871384621, + -0.03159132972359657, + 0.03579771891236305, + 0.049973681569099426, + 0.0018803613493219018, + 0.03453558310866356, + 0.05436147004365921, + -0.0018034870736300945, + 0.012788180261850357, + -0.031902119517326355, + 0.025616727769374847, + -0.04442843049764633, + -0.0010630125179886818, + -0.03964487463235855, + 0.03851009160280228, + -0.03820722922682762, + 0.04673503339290619, + -0.04279506579041481, + 0.014401436783373356, + 0.00531351612880826, + 0.04233711212873459, + 0.09202030301094055, + -0.022593334317207336, + -0.004273195751011372, + -0.015789644792675972, + -0.004875627346336842, + -0.04500144347548485, + 0.025046607479453087, + 0.05764792487025261, + -0.003369135782122612, + 0.00016970174328889698, + 0.0018647767137736082, + 0.024682778865098953, + -0.029902327805757523, + -0.035213541239500046, + -0.017719587311148643, + -0.02686651423573494, + -0.029739422723650932, + 0.004764041863381863, + 0.045777466148138046, + 0.0005340177449397743, + -0.06262359768152237, + 0.008229096420109272, + 0.019524097442626953, + -0.01202663965523243, + -0.038874782621860504, + 0.02040092647075653, + -0.02527669444680214, + 0.04105160012841225, + -0.024495387449860573, + -0.004866544157266617, + 0.08824072778224945, + -0.006051961798220873, + 0.012403180822730064, + -0.023424139246344566, + -0.025826528668403625, + 0.012713653966784477, + 0.059751830995082855, + 0.013180634006857872, + 0.025339949876070023, + 0.051242996007204056, + 0.054774049669504166, + 0.004877795930951834, + -0.004631690215319395, + -0.011063626036047935, + 0.019197244197130203, + 0.04665764793753624, + 0.0053819273598492146, + -0.01705235242843628, + -0.012983376160264015, + -0.0032259735744446516, + -0.02837604284286499, + 0.02409210428595543, + 0.02601565048098564, + -0.01480359397828579, + -0.01541026309132576, + -0.001112653873860836, + -0.01897580921649933, + 0.0026664233300834894, + -0.021163012832403183, + -0.0024127119686454535, + -0.021915337070822716, + 0.05331546068191528, + -0.05174403265118599, + -0.0003555781440809369, + 0.05469070002436638, + -0.018001927062869072, + 0.03734733536839485, + -0.047564927488565445, + 0.032520685344934464, + 0.015748221427202225, + -0.021607879549264908, + -0.0018911170773208141, + 0.00578234251588583, + -9.172189311357215e-05, + -0.004389466252177954, + -0.015121323987841606, + -0.0021500105503946543, + 0.03767913952469826, + 0.000634620722848922, + -0.017832351848483086, + -0.017464229837059975, + 0.018177011981606483, + -0.010185145772993565, + -0.004453710280358791, + 0.0238475501537323, + -0.021925706416368484, + -0.018639255315065384, + -0.04578305408358574, + -0.04644972085952759, + 0.02795868180692196, + -0.10588370263576508, + -0.027987226843833923, + 0.02807735837996006, + -0.0032603805884718895, + -0.0030954480171203613, + -0.013377523049712181, + 0.015209004282951355, + -0.007302185520529747, + 0.036144379526376724, + -0.0277201309800148, + -0.024846907705068588, + -0.027882728725671768, + 0.0041745565831661224, + -0.018634678795933723, + 0.03717643395066261, + 0.0283355712890625, + -0.02220907248556614, + 0.006404259242117405, + 0.01377810351550579, + -0.021732622757554054, + -0.030294740572571754, + -0.01278026681393385, + 0.006067279260605574, + 0.009846569038927555, + 0.006542230490595102, + 0.008848689496517181, + 0.01092041190713644, + -0.015273158438503742, + -0.043394189327955246, + -0.019644323736429214, + 0.004060269799083471, + -0.033876046538352966, + -0.023198138922452927, + -0.00709100067615509, + 0.054071683436632156, + 0.05319414660334587, + -0.000884313543792814, + 0.03248050436377525, + 0.04306268319487572, + 0.0627492293715477, + -0.01762954331934452, + -0.03651120513677597, + -0.006544630508869886, + -0.03758016228675842, + 0.018800731748342514, + 0.02680935338139534, + -0.05757869407534599, + -0.052463553845882416, + 0.0286665391176939, + 0.03293327987194061, + 0.004062095656991005, + 0.01615644060075283, + 0.015535919927060604, + 0.016243159770965576, + 0.061813730746507645, + 0.024855205789208412, + -0.016751393675804138, + 0.059093400835990906, + 0.004655248951166868, + -0.04938746243715286, + -0.02239045314490795, + -0.047678329050540924, + -0.015846839174628258, + -0.0114579563960433, + 0.004220374394208193, + -0.020895227789878845, + 0.010236628353595734, + 0.0005833720788359642, + 0.015850909054279327, + -0.0017024525441229343, + 0.04506075754761696, + -0.05647066980600357, + -0.04554106295108795, + -0.021870536729693413, + -0.002124384744092822, + -0.014274085871875286, + -0.005286609288305044, + 0.019970962777733803, + -0.004925922956317663, + 0.012698725797235966, + 0.028188636526465416, + 0.03212754800915718, + 0.01853061467409134, + 0.009325318969786167, + 0.01589972898364067, + -0.026577388867735863, + -0.022368580102920532, + -0.010738697834312916, + 0.02040717378258705, + 0.03097747080028057, + 0.013574572280049324, + -0.07359348237514496, + 0.029882902279496193, + -0.010766644962131977, + -0.028144678100943565, + -0.010262740775942802, + 0.07747269421815872, + 0.002266921568661928, + 0.0007528397254645824, + -0.024058884009718895, + -0.015065670013427734, + 0.03485455736517906, + 0.019911058247089386, + 0.03730638697743416, + -0.02447292022407055, + -0.024249881505966187, + -0.05676804855465889, + -0.003943810239434242, + -0.003696355503052473, + -0.014040113426744938, + 0.02129628323018551, + 0.012256011366844177, + 0.004037737380713224, + 0.04386257380247116, + -0.04787581413984299, + 0.00466386042535305, + 0.03473472222685814, + 0.00988656934350729, + 0.01728757843375206, + -0.021974222734570503, + -0.05254814401268959, + -0.01681303046643734, + 0.0072521367110311985, + -0.01815009117126465, + -0.01630968600511551, + -0.04203781858086586, + -0.052418582141399384, + 0.017260313034057617, + 0.060064319521188736, + -0.01645798049867153 + ], + "start_index": 0, + "end_index": 76, + "token_count": 23, + "file": "concatenacion_dinamica.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "6cde2dc6-3010-5bde-b05f-807c0c634300", + "_source": { + "text": "replace(\"REF_1234_OLD\",\"OLD\", \"NEW\", ref_actualizada)\naddResult(ref_actualizada)", + "embedding": [ + -0.00916364137083292, + -0.0030167815275490284, + -0.007457518018782139, + -0.06245207414031029, + 0.07412554323673248, + -0.024515444412827492, + 0.007658043876290321, + -0.0035727748181670904, + -0.027933532372117043, + -0.012647184543311596, + -0.07415603846311569, + -0.05669692903757095, + -0.04224046692252159, + -0.00934605672955513, + -0.028955597430467606, + 0.052245400846004486, + -0.013274666853249073, + 0.024512851610779762, + -0.022371884435415268, + 0.02602977491915226, + 0.012157181277871132, + -0.04712184891104698, + -0.008600232191383839, + -0.008848374709486961, + 0.06285284459590912, + 0.05930088087916374, + -0.06566879153251648, + 0.015935182571411133, + 0.032002583146095276, + -0.031778786331415176, + -0.011570259928703308, + -0.014542974531650543, + -0.061278898268938065, + -0.02097315527498722, + 0.04918010160326958, + -0.01303444616496563, + -0.03934742510318756, + 0.0019097918411716819, + -0.039771668612957, + 0.03621865063905716, + 0.03780974820256233, + 0.004650754854083061, + -0.0053922031074762344, + 0.02200326882302761, + -0.005306634586304426, + 0.008785378187894821, + 0.00680767185986042, + -0.005951850675046444, + 0.010609764605760574, + 0.014329600147902966, + 0.003727383678779006, + 0.05981918051838875, + 0.013524132780730724, + -0.008384536020457745, + -0.00517943175509572, + -0.06970208138227463, + 0.05264293774962425, + -0.0016432265983894467, + 0.00039859776734374464, + 0.021309869363904, + -0.011418608017265797, + 0.017893146723508835, + 0.043278053402900696, + 0.033225759863853455, + 0.014309495687484741, + -0.008505872450768948, + 0.020408673211932182, + 0.023064471781253815, + -0.10386267304420471, + 0.00825130008161068, + 0.013590590097010136, + -0.0321432426571846, + -0.025948727503418922, + -0.009087144397199154, + -0.015638820827007294, + 0.04494217038154602, + 0.03419497236609459, + 0.006270409096032381, + -0.0005133612430654466, + -0.04722942039370537, + 0.04022723808884621, + 0.0032043159008026123, + 0.06441640108823776, + 0.03386574238538742, + 0.006253923289477825, + 0.009794128127396107, + -0.05833454802632332, + 0.024023720994591713, + -0.005037934985011816, + -0.002781563438475132, + -0.06414587795734406, + 0.06124595180153847, + -0.03770098462700844, + 0.05923410877585411, + -0.0007986245327629149, + -0.0079946955665946, + 0.040691640228033066, + 0.056923337280750275, + -0.007007851265370846, + 0.015939852222800255, + 0.004169745836406946, + -0.014612071216106415, + 0.021054888144135475, + -0.021810676902532578, + 0.01416587270796299, + 0.05527611821889877, + -0.11797348409891129, + -0.026293503120541573, + -0.005933675915002823, + -0.0157115887850523, + -0.017516247928142548, + 0.024590468034148216, + -0.01626879721879959, + 0.01004351582378149, + 0.030818996950984, + 0.06111063435673714, + 0.024322906509041786, + -0.020749177783727646, + 0.022918211296200752, + 0.0025241149123758078, + 0.015069407410919666, + 0.05285417661070824, + -0.009022572077810764, + -0.0007238943944685161, + 0.021461142227053642, + 0.0020588531624525785, + -0.016146916896104813, + 0.017673496156930923, + 0.002888710703700781, + -0.03593215346336365, + 0.010878368280827999, + 0.024425102397799492, + -0.01358638796955347, + -0.00804116204380989, + 0.011748965829610825, + 0.025507086887955666, + -0.02403334341943264, + 0.03834976628422737, + 0.08176659792661667, + -0.009016919881105423, + 0.035983145236968994, + -0.0269553791731596, + -0.02166503481566906, + -0.03340687230229378, + 0.0171197522431612, + 0.040859732776880264, + 0.009959113784134388, + 0.01108189020305872, + 0.007839449681341648, + -0.023961905390024185, + 0.002983430866152048, + 0.013425513170659542, + -0.004549468867480755, + 0.04331349581480026, + 0.0014954730868339539, + 0.01627485826611519, + -0.0067526791244745255, + 0.026609746739268303, + 0.022972630336880684, + 0.04526622220873833, + 0.0144535843282938, + -0.03644820675253868, + 0.0036592830438166857, + -0.03358921781182289, + -0.01923942193388939, + -0.019518116489052773, + 0.012143574655056, + -0.019958429038524628, + 0.04348354414105415, + -0.011608018539845943, + -0.02008182369172573, + 0.02033327706158161, + -0.0021329012233763933, + -0.012928682379424572, + -0.009353029541671276, + 0.030702779069542885, + -0.01830863393843174, + -0.03396571800112724, + -0.012938641011714935, + -0.007665227632969618, + 0.004593100864440203, + 0.0027208866085857153, + 0.021280013024806976, + 0.0043884641490876675, + 0.005145890638232231, + 0.0305956844240427, + -0.03645206615328789, + -0.020205151289701462, + -0.023967793211340904, + -0.05674390122294426, + -0.010816458612680435, + 0.04149959236383438, + -0.0037090745754539967, + -0.015802232548594475, + -0.0159782562404871, + -0.02949955128133297, + -0.02614940144121647, + 0.004197285510599613, + -0.024459468200802803, + 0.029234381392598152, + 0.03829427808523178, + -0.03956664353609085, + -0.009557859040796757, + 0.029179710894823074, + -0.0010900162160396576, + -0.0012059083674103022, + 0.036570753902196884, + 0.00423166761174798, + -0.018960950896143913, + 0.00021226154058240354, + 0.005437757819890976, + 0.03917478024959564, + 0.015804903581738472, + -0.0007089667487889528, + 0.0003268814762122929, + -0.03508763760328293, + 0.01062661875039339, + 0.010990118607878685, + 0.004247611854225397, + 0.003717642044648528, + 0.00782398134469986, + 0.04130811244249344, + -0.018746837973594666, + 0.0025995594915002584, + 0.024812975898385048, + -0.010103226639330387, + 0.019560687243938446, + 0.007207249291241169, + 0.013623089529573917, + -0.0014327075332403183, + -0.0012945800554007292, + -0.04358600825071335, + -0.03692823648452759, + -0.04081195965409279, + 0.014860491268336773, + 0.018265675753355026, + -0.01657494530081749, + -0.02394085004925728, + 0.05575793981552124, + 0.052614618092775345, + -0.007164415903389454, + -0.018350079655647278, + 0.03833326697349548, + 0.0057722353376448154, + -0.06303086876869202, + -0.013595274649560452, + -0.031046438962221146, + -0.012987612746655941, + -0.03049011155962944, + 0.0023628221824765205, + -0.013678064569830894, + 0.03997858613729477, + -0.019652629271149635, + 0.01025419495999813, + 0.016867583617568016, + 0.00957272294908762, + 0.015967173501849174, + 0.01441692840307951, + -0.0037348533514887094, + 0.00751880556344986, + 0.03876049071550369, + -0.043694570660591125, + -0.07464353740215302, + 0.02128019742667675, + 0.048261940479278564, + -0.010465915314853191, + -0.028328150510787964, + 0.02563798800110817, + -0.03667598217725754, + 0.0014362747315317392, + -0.029029572382569313, + 0.011991123668849468, + -0.01621457003057003, + -0.006617667619138956, + -0.008938747458159924, + 0.04600325971841812, + -0.02026466652750969, + -0.07657220959663391, + 0.025737889111042023, + 0.0367431603372097, + 0.0060840449295938015, + 0.03338279202580452, + -0.03883593529462814, + -0.03789890184998512, + 0.02746405638754368, + 0.004122672602534294, + 0.06207353249192238, + -0.028434108942747116, + 0.02837451547384262, + -0.006632623262703419, + -0.024490492418408394, + -0.00788130797445774, + -0.03491225093603134, + -0.02667725645005703, + -0.032044339925050735, + -0.004139082971960306, + -0.017334651201963425, + 0.13175642490386963, + -0.01959352195262909, + 0.013850465416908264, + 0.015949130058288574, + -0.04601461812853813, + -0.0007440740591846406, + -0.031515806913375854, + 0.0005944375297985971, + -0.006094013806432486, + 0.09289979934692383, + 0.019927898421883583, + -0.002083025174215436, + 0.004779021255671978, + 0.04390333965420723, + 0.004969107452780008, + -0.01533267367631197, + -0.00037814039387740195, + -0.00949177984148264, + -0.006652099546045065, + -0.09890627861022949, + 0.020041752606630325, + 0.0035219495184719563, + -0.041885700076818466, + -0.011907252483069897, + -0.029386311769485474, + 0.03678901121020317, + -0.015142972581088543, + 0.013554817996919155, + -0.0169693436473608, + -0.021299174055457115, + 0.02950187772512436, + 0.017554761841893196, + 0.015589382499456406, + 0.019376149401068687, + 0.033534277230501175, + 0.11556121706962585, + -0.011324782855808735, + -0.05109976977109909, + 0.044794272631406784, + 0.02341357059776783, + 0.02489526756107807, + 0.08132465183734894, + 0.002639931859448552, + -0.010107956826686859, + -0.036351706832647324, + -0.03816579282283783, + 0.046349842101335526, + 0.0026187687180936337, + -0.05560392513871193, + 0.0074322824366390705, + 0.01683296076953411, + 0.011136344633996487, + 0.02195863053202629, + -0.07908722013235092, + 0.0008742993813939393, + 0.00689841341227293, + -0.044963378459215164, + -0.03801008313894272, + -0.011415531858801842, + 0.023280920460820198, + 0.01104719191789627, + -0.028082052245736122, + -0.022570258006453514, + -0.03851895034313202, + -0.03371113911271095, + 0.03435162454843521, + 0.001154458848759532, + 0.014426520094275475, + -0.03397185355424881, + -0.025555936619639397, + 0.009325250051915646, + 0.07766860723495483, + -0.024760877713561058, + -0.10030597448348999, + -0.027663908898830414, + 0.0033390934113413095, + 0.006686672568321228, + 0.00838867761194706, + 0.018676474690437317, + 0.009143160656094551, + -0.0364915169775486, + 0.02858760952949524, + -0.014660283923149109, + 0.0043607125990092754, + 0.005346548743546009, + -0.04157538339495659, + -0.004817164037376642, + -0.034828029572963715, + -0.04939202964305878, + 0.007719159591943026, + 0.01804247312247753, + -0.007902397774159908, + -0.022372938692569733, + 0.03255697712302208, + 0.005321022588759661, + -0.008918956853449345, + 0.024715982377529144, + 0.03890203312039375, + 0.07098282873630524, + -0.046232495456933975, + -0.007048418279737234, + 0.02341489866375923, + 0.04653691127896309, + -0.046536970883607864, + 0.03323901444673538, + 0.023551739752292633, + -0.024822067469358444, + -0.001736992853693664, + -0.007607657928019762, + 0.027536988258361816, + 0.021329212933778763, + 0.04381217435002327, + -0.0032096754293888807, + 0.01982700452208519, + -0.022484278306365013, + 0.022390754893422127, + -0.00212061102502048, + 0.01660974510014057, + -0.0023756250739097595, + -0.022740842774510384, + -0.026799868792295456, + 0.010113957338035107, + -0.03951822966337204, + -0.003438723972067237, + 0.03977415710687637, + -0.009849989786744118, + 0.02981479838490486, + 0.007462237495929003, + 0.0006423814920708537, + -0.013174733147025108, + -0.06593073159456253, + -0.00689280079677701, + 0.051865994930267334, + 0.01712171919643879, + 0.02101697213947773, + 0.04057471081614494, + -0.017309831455349922, + 0.017702678218483925, + -0.008847199380397797, + 0.07082120329141617, + -0.010135558433830738, + 0.01837514527142048, + -0.023781709372997284, + 0.062202297151088715, + 0.058178048580884933, + -0.014896242879331112, + 0.006034607533365488, + 0.015689708292484283, + 0.02384939230978489, + -0.025527553632855415, + -0.00584260281175375, + 0.025082409381866455, + -0.02013971097767353, + -0.07370514422655106, + -0.025823280215263367, + 0.0034311290364712477, + 0.021017704159021378, + 0.01552839856594801, + -0.03923579305410385, + -0.029504701495170593, + 0.0774650126695633, + 0.01918124035000801, + 0.02395510859787464, + 0.002541082911193371, + 0.014363856986165047, + 0.013249383307993412, + 0.014540587551891804, + 0.04182850196957588, + 0.0563637800514698, + 0.04138168692588806, + -0.015025299973785877, + 0.07433819025754929, + -0.010143045336008072, + 0.0655626431107521, + 0.05723445862531662, + 0.01100936345756054, + -0.05084357038140297, + 0.012666991911828518, + -0.05211047828197479, + -0.041927989572286606, + -0.039178792387247086, + 0.012714036740362644, + -0.00368802179582417, + 0.017552416771650314, + -0.011377427726984024, + -0.013834917917847633, + -0.030777545645833015, + 0.06559117138385773, + -0.0483894906938076, + 0.004222193267196417, + -0.012911070138216019, + 0.02467392571270466, + -0.04619301110506058, + -0.053965985774993896, + 0.05263681337237358, + -0.022811610251665115, + -0.020290730521082878, + 0.028006786480545998, + 0.009638099931180477, + -0.012133585289120674, + -0.07782962173223495, + -0.042252976447343826, + 0.030670464038848877, + 0.020494820550084114, + 0.041914213448762894, + -0.008100579492747784, + 0.0018520295852795243, + 0.030460815876722336, + 0.0077852243557572365, + 0.04204931855201721, + -0.010761098004877567, + 0.022376790642738342, + 0.008954692631959915, + -0.028241364285349846, + 0.002096412470564246, + 0.026741713285446167, + -0.004040829837322235, + -0.040528081357479095, + 4.604989953804761e-05, + -0.007334860973060131, + -0.004251447971910238, + -0.024144703522324562, + 0.023132767528295517, + -0.003366724820807576, + -0.022394711151719093, + 0.049109283834695816, + -0.015018689446151257, + 0.028653401881456375, + -0.0008650291711091995, + 0.018136916682124138, + 0.0032844434026628733, + 0.0027756397612392902, + -0.002897181548178196, + 0.05960676074028015, + -0.021081143990159035, + 0.005886057857424021, + 0.005448782350867987, + 0.061312172561883926, + 0.03600921481847763, + 0.014131743460893631, + -0.005483813118189573, + -0.0038189240731298923, + 0.0472518615424633, + -0.02347683720290661, + 0.022547688335180283, + 0.020173827186226845, + 0.01019335724413395, + 0.09154538810253143, + 0.00694110756739974, + 0.019251827150583267, + 0.037233125418424606, + -0.002462492324411869, + 0.01608426868915558, + -0.015582490712404251, + 0.048213038593530655, + 0.021762115880846977, + 0.024619223549962044, + 0.053044434636831284, + 0.005862638354301453, + -0.008594661951065063, + 0.026572557166218758, + 0.0474216565489769, + 0.021295325830578804, + 0.011475293897092342, + 0.027531825006008148, + 0.020575907081365585, + 0.023461082950234413, + 0.029673557728528976, + 0.03804560750722885, + -0.0099770063534379, + 0.0004893768928013742, + -0.00729269627481699, + 0.005085628945380449, + 0.050384946167469025, + -0.0014113932847976685, + -0.011969974264502525, + 0.05792158469557762, + -0.0032257342245429754, + -0.055853597819805145, + -0.0004022945067845285, + 0.05119384825229645, + 0.007240304257720709, + 0.014911659993231297, + 0.017586760222911835, + 0.018999958410859108, + -0.028818001970648766, + -0.04350954666733742, + -0.0015890593640506268, + -0.0066697318106889725, + 0.010679217055439949, + -0.008770057931542397, + 0.011858111247420311, + -0.0006411937647499144, + -0.028602411970496178, + -0.04237319901585579, + -0.0043152398429811, + 0.053946539759635925, + 0.020879855379462242, + 0.01907982863485813, + -0.03012152574956417, + -0.03431040421128273, + 0.019028693437576294, + -0.0022074421867728233, + -0.012332792393863201, + 0.03608252853155136, + -0.012183504179120064, + 0.02280053310096264, + 0.005639752838760614, + -0.0014066017465665936, + -0.019537407904863358, + 0.050234753638505936, + -0.009953873232007027, + 0.050603292882442474, + 0.02033422514796257, + 0.03161367401480675, + 0.00499078119173646, + 0.008770252577960491, + 0.07402899116277695, + 0.016165904700756073, + 0.021551337093114853, + 0.04900253191590309, + 0.0175037682056427, + 0.013587352819740772, + -0.052260734140872955, + 0.00033103092573583126, + 0.012764955870807171, + 0.03518228232860565, + -0.017864082008600235, + -0.004427818115800619, + 0.06666135042905807, + 0.02737206593155861, + -0.03460615128278732, + -0.07241930067539215, + -0.04044730216264725, + -0.019492536783218384, + -0.03116343729197979, + 0.02560402825474739, + 0.03428410738706589, + 0.00946412980556488, + 0.016895972192287445, + -0.038050152361392975, + 0.0019420686876401305, + -0.046770066022872925, + -0.009198008105158806, + -0.014177896082401276, + 0.03815006837248802, + 0.008067043498158455, + 0.0031395251862704754, + 0.003997108433395624, + 0.027697177603840828, + -0.017799274995923042, + 0.052310358732938766, + -0.0041240486316382885, + -0.027070946991443634, + 0.004792374093085527, + 0.025662247091531754, + 0.006812421604990959, + -0.033480942249298096, + 0.013516082428395748, + -0.055534034967422485, + 0.05365559458732605, + -0.028861671686172485, + -0.018241098150610924, + 0.01746993698179722, + -0.005262018647044897, + 0.024653950706124306, + 0.004845619201660156, + -0.027053968980908394, + -0.03980577364563942, + 0.042139600962400436, + 0.04586188495159149, + 0.02795693650841713, + -0.032958872616291046, + -0.019047435373067856, + -0.012022482231259346, + 0.01686679571866989, + -0.02767820656299591, + 0.0010779775911942124, + -0.03366756811738014, + -0.05540234223008156, + -0.02501712739467621, + -0.028523728251457214, + -0.003711273428052664, + 0.02074260078370571, + -0.015631606802344322, + 0.03287837654352188, + -0.04669032245874405, + -0.02028866484761238, + -0.015254718251526356, + -0.040483634918928146, + 0.0053062234073877335, + 0.052373990416526794, + -0.058259956538677216, + -0.0029541095718741417, + -0.02283642068505287, + -0.0012663672678172588, + -0.03505769744515419, + -0.019084462895989418, + 0.037941429764032364, + 0.00024491557269357145, + 0.005093386396765709, + -0.013236544094979763, + -0.011532286182045937, + -0.03665170073509216, + -0.030974531546235085, + -0.04015668109059334, + 0.033822350203990936, + 0.02595409005880356, + -0.05704396218061447, + -0.02078966237604618, + -0.0356360524892807, + 0.021773265674710274, + -0.01339755393564701, + 0.025843871757388115, + 0.028478562831878662, + 0.024815475568175316, + 0.00351945823058486, + 0.04264472797513008, + 0.027260007336735725, + -0.008570596575737, + 0.08026944100856781, + -0.006700835190713406, + -0.04571060836315155, + -0.009994251653552055, + -0.059771377593278885, + -0.010218062438070774, + 0.049626365303993225, + -0.045427609235048294, + -0.02610894851386547, + 0.014857540838420391, + -0.016247062012553215, + -0.019065098837018013, + -0.008953196927905083, + 0.02602292411029339, + 0.024203874170780182, + 0.02980959787964821, + -0.00888845045119524, + 0.03030659444630146, + -0.012781759724020958, + 0.03902638331055641, + -0.010767688043415546, + 0.027464112266898155, + 0.0008201977470889688, + 0.04174495115876198, + -0.019118916243314743, + -0.046766769140958786, + -0.02080105058848858, + -0.005492063704878092, + 0.020048577338457108, + -0.004786137957125902, + 0.03972947970032692, + 0.057503294199705124, + 0.007038498762995005, + 0.011794034391641617, + -0.0031503778882324696, + -0.04118156060576439, + 0.01018599420785904, + -0.024027088657021523, + -0.0030163724441081285, + -0.014911613427102566, + 0.023477828130126, + 0.010396470315754414, + 0.02481689676642418, + -0.023585068061947823, + -0.019878776744008064, + 0.014641212299466133, + -0.015697745606303215, + 0.03679611533880234, + -0.008090455085039139, + 0.032480258494615555, + -0.013219926506280899, + 0.014258448034524918, + 0.018125183880329132, + 0.05202221870422363, + -0.059777457267045975, + -0.05415882170200348, + 0.06565694510936737, + -0.0019435802241787314, + -0.03630248084664345, + 0.017844660207629204, + -0.03289689123630524, + -0.016503676772117615, + 0.005615428555756807, + -0.0029230627696961164, + -0.023236768320202827, + -0.0024137385189533234, + 0.04456467926502228, + -0.06379184126853943, + 0.07689041644334793, + -0.011933468282222748, + -0.004076357465237379, + -0.0221757460385561, + -0.004166643135249615, + 0.02992335893213749, + 0.06299125403165817, + 0.003611593507230282, + 0.037876278162002563, + -0.0037102701608091593, + 0.0459812767803669, + 0.0026568896137177944, + 0.012535635381937027, + -0.006239958107471466, + 0.026754003018140793, + -0.03113137185573578, + 0.02330515719950199, + -0.01827457919716835, + 0.009784501045942307, + 0.10123617202043533, + -0.03412226215004921, + -0.0223985705524683, + 0.013013750314712524, + -0.03228669986128807, + 0.010513566434383392, + 0.04300622642040253, + 0.04146021977066994, + 0.0014873910695314407, + 0.026986513286828995, + -0.04433862119913101, + 0.06340307742357254, + -0.008701291866600513, + -0.03947417810559273, + 0.022388096898794174, + -0.031622499227523804, + -0.06347569823265076, + 0.02111518569290638, + 0.040156763046979904, + 0.008594694547355175, + -0.0613514706492424, + 0.026923207566142082, + 0.0057510025799274445, + 0.0037656868807971478, + -0.06982771307229996, + 0.010537819936871529, + 0.02722681500017643, + 0.030806083232164383, + -0.013911559246480465, + -0.038822662085294724, + 0.002239636844024062, + -0.02772102691233158, + -0.00011554702359717339, + -0.024322450160980225, + 0.009994425810873508, + 0.07562848180532455, + 0.040574509650468826, + 0.04510832950472832, + 0.024779310449957848, + 0.03465832769870758, + -0.016334498301148415, + -0.014497284777462482, + -0.022268295288085938, + -0.028816092759370804, + 0.02552102319896221, + 0.006401303689926863, + -0.036774005740880966, + 0.04640895128250122, + -0.038841377943754196, + -0.0246450062841177, + -0.03403701260685921, + 0.021872572600841522, + -0.019099272787570953, + 0.020181987434625626, + -0.04807690531015396, + -0.04717162996530533, + -0.04379434138536453, + -0.007847052067518234, + -0.009599238634109497, + -0.04202642664313316, + -0.03556803986430168, + 0.04046589881181717, + -0.030544135719537735, + -0.0009061970631591976, + 0.027598731219768524, + -0.03343026340007782, + -0.034826185554265976, + -0.026749450713396072, + 0.030529087409377098, + 0.03155878558754921, + 0.005187002010643482, + -0.050013843923807144, + -0.012483631260693073, + 0.03176012262701988, + -0.009194762445986271, + 0.028165513649582863, + 0.03222057968378067, + 0.043722134083509445, + 0.022074714303016663, + -0.024669703096151352, + -0.02410687692463398, + -0.008293990977108479, + 0.023363620042800903, + 0.02119448222219944, + -0.006091182120144367, + -0.031454287469387054, + -0.005812684539705515, + -0.039236873388290405, + -0.026228221133351326, + 0.03277444839477539, + -0.07103991508483887, + 0.0059613934718072414, + 0.01979047618806362, + 0.051359985023736954, + -0.011174671351909637, + -0.03225087746977806, + -0.017239050939679146, + 0.0106056435033679, + -0.022421663627028465, + 0.007361689582467079, + -0.010264321230351925, + -0.011355243623256683, + 0.010211537592113018, + -0.01971392333507538, + 0.022289277985692024, + -0.009277216158807278, + -0.03331322595477104, + 0.043988585472106934, + 0.029874403029680252, + 0.00474950298666954, + -0.012980966828763485, + 0.004831660073250532, + -0.01940854825079441, + -0.02785860002040863, + -0.014415659941732883, + -0.014814910478889942, + -0.021690083667635918, + 0.008749100379645824, + 0.035733144730329514, + -0.027847476303577423, + 0.016782034188508987, + -0.02263430319726467, + 0.03595626726746559, + 0.02050699107348919, + 0.05776650458574295, + 0.020861463621258736, + 0.022264834493398666, + -0.006418106611818075, + 0.022053312510252, + 0.004232821986079216, + -0.01872061751782894, + 0.037499696016311646, + -0.015557452104985714, + 0.009607178159058094, + 0.016930347308516502, + -0.0025428803637623787, + 0.005232286173850298, + -0.026484163478016853, + 0.04473883658647537, + -0.013224360533058643, + 0.04256671667098999, + -0.010524299927055836, + -0.00843186303973198, + 0.005699532572180033, + 0.014700069092214108, + 0.012270674109458923, + -0.025963347405195236, + 0.002193332416936755, + -0.0021742635872215033, + 0.01920950412750244, + -0.005364963784813881, + -0.08300086110830307, + 0.001744672073982656, + -0.02813449315726757, + 0.0029177411925047636, + 0.02721366472542286, + 0.01177998911589384, + 0.010635610669851303, + 0.017929283902049065, + 0.019282378256320953, + 0.007477929815649986, + 0.06450331956148148, + -0.01372347492724657, + -0.024774692952632904, + -0.008582647889852524, + 0.009511330164968967, + 0.015440922230482101, + 0.050222259014844894, + 0.02307051233947277, + -0.02220039628446102, + 0.03864941745996475, + 0.04392387345433235, + 0.03392714262008667, + -0.031501494348049164, + 0.018766343593597412, + -0.017655005678534508, + -0.013146947138011456, + 0.0012057280400767922, + -0.0027228377293795347, + -0.015517182648181915, + 0.02210657298564911, + -0.037021175026893616, + 0.05038861930370331, + -0.02094898372888565, + 0.03556837886571884, + 0.004471504595130682, + 0.030200602486729622, + 0.021832695230841637, + 0.0075240358710289, + 0.01138380728662014, + 0.03884851932525635, + 0.007039135787636042, + -0.015164903365075588, + 0.04158685728907585, + 0.014640104956924915, + 0.004076401237398386, + 0.014222515746951103, + -0.03520500659942627, + -0.03888128697872162, + 0.03717931732535362, + 0.008904590271413326, + -0.021488400176167488, + 0.045535050332546234, + 0.024090545251965523, + -0.01761592924594879, + 0.023709800094366074, + -0.020324816927313805, + -0.02847515605390072, + -0.02714787982404232, + 0.006119214929640293, + -0.03467872738838196, + 0.014490504749119282, + -0.05827423930168152, + 0.06735339760780334, + 0.027169570326805115, + -0.03494752198457718, + 0.012918306514620781, + -0.0005138133419677615, + 0.008512199856340885, + -0.034502144902944565 + ], + "start_index": 0, + "end_index": 80, + "token_count": 25, + "file": "limpieza_de_strings.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "f5efb6fb-483a-5fd2-9985-6161bb84592f", + "_source": { + "text": "addVar(mensaje, \"Hola mundo desde AVAP\")\naddResult(mensaje)", + "embedding": [ + -0.01439674012362957, + 0.030341388657689095, + -0.010566663928329945, + -0.0691533237695694, + 0.009890972636640072, + -0.06389384716749191, + -0.010517639108002186, + 0.02415783517062664, + -0.04499451816082001, + -0.023826267570257187, + -0.018271254375576973, + -0.06966344267129898, + -0.023652072995901108, + -0.009373712353408337, + -0.02454383485019207, + 0.0467514805495739, + -0.0263964980840683, + 0.04733862727880478, + 0.06423384696245193, + -0.030018894001841545, + 0.009018761105835438, + -0.009823405183851719, + -0.06919310986995697, + 0.08862806111574173, + 0.0036267132963985205, + 0.03664761781692505, + 0.002021909225732088, + 0.05777391046285629, + 0.025619566440582275, + 0.008518346585333347, + -0.03738251328468323, + 0.03330017626285553, + 0.011473745107650757, + -0.025998836383223534, + -0.010364971123635769, + -0.012194204144179821, + 0.028206272050738335, + -0.033806778490543365, + 0.01937287673354149, + -0.012101980857551098, + 0.02536509558558464, + 0.019214214757084846, + 0.050408072769641876, + 0.028002381324768066, + -0.009620126336812973, + -0.020618798211216927, + 0.010266006924211979, + -0.009288441389799118, + 0.03472818061709404, + -0.03522839769721031, + 0.004292646888643503, + 0.01773126982152462, + 0.005138444248586893, + 0.003354059299454093, + -0.028498250991106033, + -0.009855649434030056, + -0.005169219803065062, + 0.025174444541335106, + 0.013876876793801785, + -0.00910805445164442, + -0.06164507567882538, + 0.00455858139321208, + -0.023052213713526726, + -0.017717860639095306, + -0.038108743727207184, + 0.01496582105755806, + 0.02398311346769333, + -0.01761619746685028, + -0.12921327352523804, + 0.014896510168910027, + -0.030944837257266045, + -0.06547516584396362, + -0.028797075152397156, + -0.02319224923849106, + -0.0166058037430048, + 0.03623708337545395, + 0.00017161353025585413, + -0.04809148237109184, + 0.005058610811829567, + -0.04094673693180084, + -0.028608135879039764, + 0.036395296454429626, + 0.05610675364732742, + 0.017604894936084747, + -0.007972474209964275, + 0.03139016404747963, + -0.05234374850988388, + -0.024882271885871887, + -0.03280844911932945, + 0.0013599699595943093, + 0.0586090162396431, + 0.022783493623137474, + -0.015180518850684166, + -0.00780603988096118, + 0.013557158410549164, + -0.01146895531564951, + -0.0020162384025752544, + 0.06838299334049225, + 0.0004902265500277281, + -0.0045736380852758884, + -0.03380938991904259, + -0.0061769853346049786, + 0.0077507677488029, + -0.013579429127275944, + -0.03393460065126419, + 0.003479832084849477, + -0.09243559837341309, + 0.034617308527231216, + -0.046645455062389374, + -0.04413183405995369, + -0.02538447082042694, + 0.011784257367253304, + 0.025004001334309578, + 0.0551106259226799, + -0.05285268276929855, + 0.03095371089875698, + 0.05427255108952522, + 0.038540907204151154, + -0.020026730373501778, + -0.019197890534996986, + 0.009130656719207764, + -0.006263483315706253, + -0.007011584937572479, + -0.005557720549404621, + -0.03133099153637886, + -0.006091986317187548, + -0.03446701914072037, + 0.013976612128317356, + -0.010916591621935368, + -0.01754995435476303, + 0.022927770391106606, + -0.0026504332199692726, + -0.014491625130176544, + -0.04305970296263695, + 0.0023752604611217976, + -0.00820112880319357, + -0.022705422714352608, + 0.003040147013962269, + 0.042879458516836166, + -0.008202928118407726, + -0.00191694765817374, + -0.02041260525584221, + -0.018390187993645668, + -0.015389525331556797, + 0.023229915648698807, + 0.021599572151899338, + -0.02583547867834568, + 0.011353584006428719, + 0.015268523246049881, + 0.018115870654582977, + 0.03044339269399643, + -0.00423306692391634, + 0.010197870433330536, + 0.0038651907816529274, + -0.025884777307510376, + 0.06010814383625984, + 0.00250902958214283, + -0.020519817247986794, + 0.010463882237672806, + 0.02714543230831623, + 0.011931334622204304, + 0.02035452425479889, + -0.006389569956809282, + -0.03652959689497948, + -0.0485583059489727, + 0.03522400185465813, + -0.03251495957374573, + -0.010782199911773205, + -0.02549836039543152, + 0.03185025975108147, + 0.027857022359967232, + 0.022863835096359253, + -0.006271891295909882, + -0.02943180687725544, + -0.032853566110134125, + -0.00553362350910902, + 0.002237699693068862, + -0.05740649253129959, + -0.03274846449494362, + -0.030816616490483284, + 0.022572098299860954, + -0.02042883262038231, + 0.010345506481826305, + 0.01259137038141489, + 0.04241015389561653, + 0.044776517897844315, + 0.01257179956883192, + 0.021662218496203423, + 0.0014297447632998228, + -0.020937170833349228, + -0.008740141987800598, + 0.011724024079740047, + -0.07372355461120605, + -0.0023697656579315662, + -0.005238872021436691, + -0.023626308888196945, + 0.04074496775865555, + 0.0013103536330163479, + 0.018063876777887344, + 0.02500307373702526, + -0.015927651897072792, + -0.01592765375971794, + -0.008739595301449299, + -0.013363760896027088, + -0.019956402480602264, + 0.00021049773204140365, + 0.024631239473819733, + 0.027594873681664467, + -0.03377522900700569, + -0.00047608313616365194, + -0.00211134715937078, + -0.003575294977054, + -0.0307847261428833, + -0.07404321432113647, + -0.011285212822258472, + 0.002291521057486534, + -0.010837843641638756, + 0.009008522145450115, + 0.012480656616389751, + -0.0014781422214582562, + 0.002042965264990926, + 0.013616160489618778, + -0.00856049545109272, + 0.008770435117185116, + 0.03957763686776161, + -0.012038213200867176, + -0.005626746919006109, + -0.01487517636269331, + 0.005821526050567627, + 0.005602751858532429, + -0.031655482947826385, + -0.0297857653349638, + 0.04489739239215851, + 0.010941562242805958, + 0.016425617039203644, + 0.004727466963231564, + 0.00877572875469923, + 0.030042828992009163, + 0.035514019429683685, + -0.002971398178488016, + -0.04573456197977066, + 0.015809036791324615, + 0.019557930529117584, + 0.0015937649877741933, + -0.026774242520332336, + -0.009191138669848442, + 0.00012395935482345521, + 0.0064976816065609455, + -0.03838115930557251, + -0.04574067145586014, + -0.0010683677392080426, + 0.06097959727048874, + 0.015515651553869247, + -0.016630232334136963, + 0.011635829694569111, + -0.038649991154670715, + 0.006326756440103054, + -0.023323018103837967, + 0.013863936066627502, + 0.0019023629138246179, + -0.009814469143748283, + -0.043019168078899384, + -0.0058205281384289265, + -0.01971324533224106, + 0.03451760858297348, + 0.004694423638284206, + -0.013199917040765285, + 0.013295036740601063, + -0.027506796643137932, + -0.015274845995008945, + 0.030360788106918335, + 0.004998855292797089, + 0.011899374425411224, + -0.01671801321208477, + 0.017110170796513557, + 0.03813139349222183, + -0.01754041761159897, + -0.12203969806432724, + 0.04296483099460602, + -0.00802263431251049, + 0.004346897359937429, + 0.028896106407046318, + -0.01999404840171337, + 0.015574340708553791, + 0.0032535793725401163, + 0.03441803902387619, + 0.02974904142320156, + 0.011697571724653244, + -0.023948557674884796, + -0.0024209143593907356, + 0.017116567119956017, + -0.0017501837573945522, + -0.02513228729367256, + 0.049443963915109634, + -0.009864270687103271, + -0.0043113925494253635, + -0.030896252021193504, + 0.031499918550252914, + 0.03221910074353218, + -0.005225431639701128, + -0.012213563546538353, + -0.022940421476960182, + 0.037609245628118515, + -0.003483513370156288, + -0.025198275223374367, + 0.011084317229688168, + 0.0808759555220604, + -0.027556372806429863, + 0.02008742466568947, + 0.03294317424297333, + 0.11504699289798737, + 0.004245422314852476, + -0.0032801181077957153, + 0.007774433121085167, + -0.02186325006186962, + 0.016754724085330963, + -0.03857097029685974, + 0.021674150601029396, + 0.07207805663347244, + 0.013969245366752148, + 0.021881025284528732, + 0.010017335414886475, + 0.012975247576832771, + -0.04848340153694153, + 0.004868038464337587, + 0.025710271671414375, + -0.022793414071202278, + 0.00641839113086462, + 0.0031561513897031546, + -0.04459010064601898, + -0.014264587312936783, + 0.009184341877698898, + -0.0007858210592530668, + 0.012491877190768719, + -0.011076841503381729, + 0.008338451385498047, + 0.008312124758958817, + 0.011458247900009155, + 0.013911798596382141, + -0.04874946177005768, + 0.05738019570708275, + 0.012257382273674011, + -0.04517362266778946, + 0.04253185912966728, + 0.00752489548176527, + -0.018219759687781334, + -0.025618944317102432, + -0.01814970374107361, + 0.008460570126771927, + -0.023058660328388214, + -0.04828101024031639, + -0.02299673482775688, + 0.01731274463236332, + -0.024238618090748787, + -0.04467850923538208, + 0.011689492501318455, + 0.009047056548297405, + 0.036947187036275864, + -0.04852493107318878, + -0.02136523835361004, + 0.01023000106215477, + -0.01304404903203249, + 0.033041827380657196, + -0.03176507353782654, + -0.007293252274394035, + 0.009514891542494297, + -0.04159337282180786, + -0.0058024972677230835, + 0.02234991267323494, + 0.004602641798555851, + -0.0789465457201004, + 0.018837185576558113, + 0.00908356811851263, + 0.015465877950191498, + 0.04397064447402954, + 0.022611191496253014, + 0.03643186017870903, + -0.024419134482741356, + -0.017707079648971558, + 0.03183693066239357, + 0.03826427459716797, + 0.013243647292256355, + -0.04934961721301079, + 0.022039897739887238, + -0.03739548474550247, + -0.08102694898843765, + 0.07232800126075745, + -0.030703742057085037, + -0.021260546520352364, + -0.005257875192910433, + 0.027496790513396263, + -0.03026534430682659, + 0.022238411009311676, + -0.03988729044795036, + 0.031449202448129654, + 0.010616397485136986, + -0.03544684126973152, + 0.03518030047416687, + -0.025691457092761993, + -0.01148452889174223, + 0.03817865625023842, + 0.021106578409671783, + -0.048099763691425323, + 0.036312803626060486, + -0.005721567664295435, + -0.0011476653162389994, + 0.006828867830336094, + 0.015451839193701744, + 0.05331876501441002, + 0.013226313516497612, + 0.03660747408866882, + 0.029470501467585564, + 0.03659936040639877, + 0.03429446741938591, + 0.04249471053481102, + -0.0258458461612463, + 0.019534068182110786, + 0.0033250399865210056, + 0.02521079033613205, + 0.008241788484156132, + 0.0015024691820144653, + 0.020043643191456795, + -0.027005087584257126, + 0.004842707887291908, + -0.011141914874315262, + -0.021496973931789398, + -0.018488314002752304, + -0.06893126666545868, + -0.0037591245491057634, + 0.08216475695371628, + 0.0020536237861961126, + -0.021589146926999092, + 0.030261842533946037, + 0.01638234406709671, + -0.04267408698797226, + 0.045241378247737885, + 0.06365890800952911, + -0.012782069854438305, + 0.03156327083706856, + -0.0010599999222904444, + -0.0021235905587673187, + 0.04296695068478584, + 0.004822068382054567, + 0.004002780187875032, + -0.02689027413725853, + 0.008473370224237442, + -0.015215466730296612, + 0.004784698132425547, + -0.025217683985829353, + -0.0032400423660874367, + 0.0017241736641153693, + -0.04746963828802109, + 0.01932709664106369, + 0.014889516867697239, + 0.05466455966234207, + -0.04996011033654213, + -0.010811509564518929, + 0.00496406527236104, + 0.025031866505742073, + 0.025865688920021057, + -0.01039970200508833, + 0.04087836295366287, + 0.019027672708034515, + 0.02212761715054512, + -0.058173879981040955, + 0.05817359313368797, + 0.008883409202098846, + -0.03692474216222763, + 0.030532333999872208, + -0.007080746814608574, + 0.041785359382629395, + 0.09499283134937286, + -0.0013536281185224652, + -0.02214992418885231, + -0.05030600726604462, + -0.03402113541960716, + -0.05434972420334816, + 0.006802406627684832, + 0.006142630707472563, + 0.005836797878146172, + 0.012532273307442665, + 0.003650427097454667, + 0.03771335631608963, + -0.008010718040168285, + 0.0669156089425087, + -0.03565962240099907, + 0.031638167798519135, + 0.0007631255430169404, + -0.003154535312205553, + 0.03009803220629692, + -0.007051925174891949, + 0.031863752752542496, + 0.0007146881544031203, + -0.01214552205055952, + 0.005230345763266087, + -0.026704590767621994, + 0.01063242182135582, + -0.05570629984140396, + -0.05501263588666916, + 0.03066468983888626, + 0.002358596073463559, + 0.015616501681506634, + -0.020763596519827843, + 0.030856072902679443, + -0.051451753824949265, + 0.0024508051574230194, + 0.009308033622801304, + -0.03164781257510185, + 0.04219057410955429, + 0.011936657130718231, + 0.0235434602946043, + -0.02326698787510395, + 0.024433979764580727, + 0.027860503643751144, + -0.03081134334206581, + -0.0007075226167216897, + 0.03526937589049339, + 0.009236318990588188, + -0.03622793033719063, + 0.005191281903535128, + -0.02477269247174263, + 0.022439826279878616, + 0.04858247563242912, + -0.018257208168506622, + 0.002260152017697692, + -0.01490661222487688, + 0.017358385026454926, + 0.0046054706908762455, + 0.005655502434819937, + 0.02756580337882042, + -0.01704121194779873, + -0.049880169332027435, + -0.025031913071870804, + -0.030187157914042473, + 0.030791835859417915, + -0.017918461933732033, + -0.04039291664958, + -0.054921314120292664, + -0.04128240793943405, + 0.09170892089605331, + 0.02545677311718464, + -0.0012033517705276608, + 0.020601186901330948, + 0.01712963916361332, + 0.0317077673971653, + -0.014078707434237003, + 0.020010648295283318, + 0.06823653727769852, + -0.026987344026565552, + 0.04997378587722778, + 0.019315598532557487, + 0.011359279043972492, + 0.009365498088300228, + -0.006914714816957712, + 0.029727213084697723, + -0.006914462428539991, + 0.02653905190527439, + 0.022277982905507088, + 0.03911716118454933, + -0.029234707355499268, + 0.012630270794034004, + 0.010973582044243813, + 0.029855022206902504, + -0.002300868509337306, + 0.023002728819847107, + -0.0002882122353184968, + -0.02314697951078415, + -0.010766620747745037, + 0.025742948055267334, + -0.008704925887286663, + 0.013315964490175247, + -0.02283397875726223, + -0.012438696809113026, + 0.009016313590109348, + -0.013862324878573418, + -0.0398608036339283, + 0.012141302227973938, + 0.035291820764541626, + 0.06209743395447731, + -0.0069210887886583805, + 0.0331260971724987, + 0.01877758465707302, + 0.020811213180422783, + -0.006434385199099779, + -0.021749716252088547, + -0.0032080323435366154, + -0.021491922438144684, + -0.04133603721857071, + 0.0071663642302155495, + -0.024006443098187447, + -0.04106052592396736, + -0.050051249563694, + -0.009199973195791245, + -0.031081240624189377, + 0.011772128753364086, + 0.005532171577215195, + -0.012768281623721123, + 0.008325845934450626, + 0.037604548037052155, + 0.014602306298911572, + 0.006852275226265192, + 0.011670845560729504, + -0.010762435384094715, + 0.0014821412041783333, + -0.06641986221075058, + -0.009063249453902245, + 0.03239675983786583, + 0.013301108963787556, + -0.041063591837882996, + 0.0037297899834811687, + -0.03319874778389931, + 0.04196375980973244, + -0.07175389677286148, + -0.031729575246572495, + 0.015229211188852787, + 0.008898599073290825, + -0.041855257004499435, + 0.0030720066279172897, + 0.02632063813507557, + -0.06378120929002762, + 0.004130439832806587, + 0.004247851204127073, + -0.018702132627367973, + 0.07645873725414276, + -0.008216142654418945, + 0.0037748385220766068, + -0.04212584346532822, + -0.012452377006411552, + -0.05522393435239792, + -0.035205818712711334, + 0.020840371027588844, + -0.019114220514893532, + -0.04085175320506096, + -0.023021988570690155, + -0.033072326332330704, + -0.032399557530879974, + -0.021866481751203537, + -0.047384001314640045, + -0.010985266417264938, + -0.013749903067946434, + 0.010461607947945595, + -0.006518207490444183, + -0.026644354686141014, + 0.0056566898711025715, + 0.024534225463867188, + -0.003301817923784256, + -0.0356714092195034, + 0.0007265604799613357, + 0.02132084034383297, + -0.017185647040605545, + 0.009363635443150997, + 0.03401748836040497, + 0.025861667469143867, + 0.006158648524433374, + -0.015551652759313583, + -0.008080976083874702, + -0.032147131860256195, + 0.060329485684633255, + -0.015456483699381351, + 0.007974605076014996, + -0.014627520926296711, + -0.06644072383642197, + 0.046330809593200684, + -0.07045704126358032, + -0.016602788120508194, + -0.0279091764241457, + 0.06703362613916397, + 0.0033980002626776695, + -0.05402649939060211, + 0.0018405549926683307, + -0.04048830270767212, + -0.04983177036046982, + 0.007777253165841103, + 0.04193515330553055, + 0.04467914253473282, + -0.03603892773389816, + -0.05561067536473274, + -0.05537143349647522, + 0.026035025715827942, + -0.04107186198234558, + -0.05559048056602478, + -0.04868908226490021, + -0.002882091561332345, + -0.014545428566634655, + 0.00448031397536397, + -0.04869925603270531, + -0.04625649377703667, + 0.006449436768889427, + 0.028934134170413017, + 0.01443780492991209, + -0.04557134211063385, + -0.03332880511879921, + 0.013642927631735802, + -0.008038622327148914, + -0.012144518084824085, + 0.005762884858995676, + 0.016188375651836395, + -0.0041438001208007336, + 0.01737653836607933, + 0.03274209424853325, + 0.007823272608220577, + -0.0038135156501084566, + 0.029396938160061836, + -0.007305137347429991, + 0.025538800284266472, + -0.0010835055727511644, + -0.012702982872724533, + -0.01456066220998764, + -0.0188259519636631, + -0.032406944781541824, + -0.009842578321695328, + 0.03956775739789009, + 0.009209479205310345, + -0.02959427610039711, + 0.032128237187862396, + -0.012280238792300224, + -0.03464961051940918, + 0.015501853078603745, + -0.004713015165179968, + -0.0030976233538240194, + 0.04185331240296364, + -0.04750926047563553, + 0.06864945590496063, + -0.015237757936120033, + -0.008911991491913795, + -0.04520921781659126, + 0.002756911562755704, + 0.020521754398941994, + -0.01218641921877861, + -0.018584461882710457, + 0.04051513969898224, + -0.022376645356416702, + 0.032899804413318634, + -0.03095421940088272, + 0.012792162597179413, + 0.00897168554365635, + 0.07542115449905396, + -0.00011308362445561215, + -0.00181397155392915, + 0.0023693416733294725, + -0.0017380152130499482, + -0.038047004491090775, + 0.022416681051254272, + -0.04873509705066681, + 0.04650026932358742, + 0.018332207575440407, + 0.01712092198431492, + -0.026457959786057472, + -0.04932447522878647, + -0.03395167365670204, + 0.024745717644691467, + -0.024917367845773697, + -0.007008636370301247, + 0.04554206132888794, + -0.04213730990886688, + -0.010631144046783447, + 0.015600360929965973, + 0.06731928884983063, + -0.010219106450676918, + -0.007451924029737711, + -0.00926242582499981, + 0.006897631101310253, + -0.010706414468586445, + -0.016285723075270653, + 0.039312418550252914, + -0.016329865902662277, + 0.04682410508394241, + -0.023451412096619606, + -0.013935688883066177, + -0.0078097013756632805, + 0.00524967722594738, + -0.06361642479896545, + -2.6972343221132178e-06, + -0.007913862355053425, + -0.010367841459810734, + 0.003067473415285349, + 0.02519693411886692, + -0.018453406170010567, + -0.03740526735782623, + 0.01730923354625702, + 0.008969140239059925, + -0.019913572818040848, + -0.0038935504853725433, + 0.01655644178390503, + 0.032655924558639526, + 0.030902093276381493, + 0.0030851687770336866, + -0.004866625647991896, + 0.03091389313340187, + 0.0406053252518177, + -0.04963088780641556, + 4.128449654672295e-05, + 0.08844566345214844, + 0.017703812569379807, + -0.01033676415681839, + -0.025777257978916168, + -0.022045928984880447, + 0.05263142287731171, + -0.06245417520403862, + 0.04233696311712265, + -0.03048134408891201, + 0.046996358782052994, + -0.005739775951951742, + -0.010249517858028412, + 0.06538479775190353, + -0.03157132863998413, + -0.022849271073937416, + 0.026225807145237923, + -0.04327663406729698, + -0.003513382049277425, + -0.002349233254790306, + 0.04457898437976837, + 0.010824303142726421, + 0.02619733102619648, + 0.022136805579066277, + 0.015561727806925774, + -0.05691516771912575, + -0.007357071153819561, + -0.018593356013298035, + -0.026416826993227005, + -0.01404789462685585, + -0.00022337058908306062, + 0.008961482904851437, + -0.0052561648190021515, + -0.008903359062969685, + 0.01801338791847229, + -0.016249731183052063, + 0.012377682141959667, + -0.009159661829471588, + -0.004706555977463722, + 0.009159172885119915, + -0.03380831703543663, + -0.0025379632133990526, + 0.0008947336464188993, + 0.024655237793922424, + -0.0021901282016187906, + -0.03526053950190544, + 0.05055515095591545, + -0.00045182471512816846, + 0.026618555188179016, + 0.04037732258439064, + 0.005699307657778263, + -0.03799588605761528, + 0.06311166286468506, + 0.033972207456827164, + 0.046188533306121826, + 0.008153624832630157, + 0.0009024351020343602, + 0.006151095498353243, + -0.0030608035158365965, + -0.029429148882627487, + 0.0100048016756773, + -0.05028689280152321, + -0.028979729861021042, + -0.04717245325446129, + 0.03375004976987839, + 0.030493684113025665, + 0.004876145161688328, + -0.009972202591598034, + 0.014164825901389122, + -0.03313751146197319, + -0.02650235779583454, + -0.015333392657339573, + -0.09006886184215546, + -0.02639780007302761, + 0.030917691066861153, + -0.006163635291159153, + -0.0017731981351971626, + 0.00779047841206193, + 0.0017189155332744122, + -0.011006412096321583, + -0.03680514916777611, + 0.0007030116394162178, + 0.04612720385193825, + 0.00405711866915226, + 0.04078763723373413, + -0.07482217997312546, + 0.0019637609366327524, + 0.039785079658031464, + 0.01711433194577694, + -0.0650484710931778, + -0.002924753352999687, + 0.02239612117409706, + 0.014431130141019821, + 0.0074654025956988335, + 0.02133997716009617, + -0.012567299418151379, + 0.031114039942622185, + 0.01153416559100151, + -0.0209711492061615, + -0.08501946926116943, + -0.03959233686327934, + -0.024809079244732857, + 0.03278143331408501, + -0.1462213099002838, + -0.016999738290905952, + 0.04222898185253143, + 0.007298282813280821, + -6.500204472104087e-05, + -0.022235337644815445, + 0.014736686833202839, + -0.010576305910944939, + 0.023919401690363884, + -0.04034409299492836, + -0.031258706003427505, + -0.03242863342165947, + 0.053922589868307114, + 0.023677147924900055, + 0.018596839159727097, + 0.03414536640048027, + -0.03801147639751434, + 0.0004200336697977036, + 0.021978816017508507, + -0.004401397425681353, + -0.05009881779551506, + 0.01795613393187523, + 0.003703139489516616, + 0.016042597591876984, + 0.021125636994838715, + 0.00453005637973547, + -0.009158952161669731, + 0.0010920589556917548, + -0.051405712962150574, + -0.009306476451456547, + 0.0036126398481428623, + -0.06298094987869263, + -0.0548345185816288, + 0.03887017071247101, + 9.351670450996608e-05, + 0.01832316443324089, + 0.004933188669383526, + 0.058991480618715286, + 0.02072025276720524, + 0.05542859435081482, + 0.029029661789536476, + -0.05279610678553581, + 0.0074884239584207535, + -0.007524809334427118, + -0.00568665424361825, + -0.0013197069056332111, + -0.03320014476776123, + -0.0321260504424572, + 0.02362225018441677, + 0.05959406495094299, + 0.035434916615486145, + 0.01113869622349739, + 0.0017671955283731222, + -0.0024344741832464933, + 0.0080678416416049, + 0.045585066080093384, + 0.002489435486495495, + -0.011249877512454987, + -0.025309452787041664, + -0.032403767108917236, + -0.018799014389514923, + -0.05686493217945099, + -0.026034090667963028, + 0.025118721649050713, + -0.02610217221081257, + -0.02947973646223545, + 0.0024309654254466295, + 0.0031964147929102182, + 0.023713519796729088, + 0.02245044894516468, + 0.03125428035855293, + -0.03312313184142113, + -0.04608401656150818, + 0.02611697092652321, + -0.02506774663925171, + 0.017616380006074905, + 0.03213179111480713, + 0.04723600670695305, + -0.008221165277063847, + -0.05595485866069794, + 0.020790481939911842, + -8.657146099722013e-05, + 0.007963019423186779, + 0.006330668926239014, + 0.029250096529722214, + -0.031041955575346947, + -0.05394333228468895, + -0.00028141523944213986, + 0.04781230166554451, + 0.022036222741007805, + -0.08602846413850784, + -0.03309258818626404, + 0.06440898776054382, + 0.05133018642663956, + 0.017341751605272293, + -0.022174764424562454, + 0.05278404802083969, + 0.007469518110156059, + 0.009343038313090801, + -0.04189135134220123, + 0.02567845582962036, + 0.045458633452653885, + -0.03612181916832924, + 0.0632600337266922, + -0.047585379332304, + -0.01964494027197361, + 0.0008231615065596998, + -0.02378683164715767, + -0.005416193511337042, + -0.004192347172647715, + -0.014455190859735012, + 0.012159821577370167, + 0.011240013875067234, + 0.006552255246788263, + -0.05476311966776848, + 0.07304050028324127, + 0.010066783986985683, + -0.016935817897319794, + -0.02391139231622219, + -0.020580200478434563, + 0.02804124541580677, + -0.002070767106488347, + -0.004028587602078915, + -0.019291643053293228, + 0.022560101002454758, + -0.03788986802101135, + -0.06509945541620255, + 0.012200445868074894, + 0.042729467153549194, + -0.005789145361632109 + ], + "start_index": 0, + "end_index": 59, + "token_count": 17, + "file": "hola_mundo.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "ca05033f-b262-52ab-9efa-b0df43eb05a5", + "_source": { + "text": " function es_valido(token){\n response = False\n if(token, \"SECRET\", \"=\")\n response = True\n end()\n return(response)\n }\nautorizado = es_valido(\"SECRET\")\naddResult(autorizado)", + "embedding": [ + 0.003163547022268176, + -0.014524118043482304, + -0.011483347043395042, + -0.0831303820014, + 0.009514709934592247, + -0.06675658375024796, + -0.0456695631146431, + 0.0425545759499073, + 0.010466319508850574, + -0.06240687519311905, + -0.02817530743777752, + -0.07664770632982254, + 0.054045576602220535, + -0.010665466077625751, + -0.05145511403679848, + 0.08320321142673492, + 0.032338064163923264, + -0.049278564751148224, + 0.00030882269493304193, + -0.029165498912334442, + 0.024576857686042786, + -0.011829404160380363, + -0.01964506134390831, + 0.05883223935961723, + 0.019051145762205124, + 0.020273642614483833, + -0.05585567653179169, + 0.07407844811677933, + 0.02968674711883068, + -0.005730058997869492, + -0.001264304737560451, + -0.03605460375547409, + -0.035516589879989624, + -0.011895268224179745, + -0.01846127398312092, + -0.016613952815532684, + 0.01596173457801342, + -0.0030664619989693165, + -0.006939418613910675, + -0.002745778299868107, + -0.007108817342668772, + 0.04302804917097092, + 0.05667084455490112, + 0.02549220435321331, + 0.04178222268819809, + -0.058953650295734406, + 0.009757895953953266, + -0.0036564439069479704, + -0.003339563263580203, + -0.0081811947748065, + -0.003507439512759447, + -0.001180445309728384, + -0.0017179326387122273, + 0.0020822612568736076, + -0.050737179815769196, + -0.0742800384759903, + 0.016810251399874687, + 0.029724176973104477, + -0.000124350655823946, + 0.020776359364390373, + -0.06538179516792297, + 0.02735847793519497, + -0.026738543063402176, + -0.057828597724437714, + 0.00336263095960021, + 0.040996648371219635, + 0.023282701149582863, + -0.0038591630291193724, + -0.0935460552573204, + -0.00784306600689888, + 0.0017547538736835122, + -0.035979222506284714, + -0.007264218293130398, + 0.056536074727773666, + 0.02073364146053791, + 0.05055336654186249, + 0.02072882279753685, + -0.027653327211737633, + 0.029164206236600876, + 0.016435978934168816, + -0.007864084094762802, + 0.07501930743455887, + 0.0352235771715641, + 0.001079948851838708, + -0.0016458779573440552, + 0.049120333045721054, + 0.01485731452703476, + -0.02281271107494831, + 0.02188238874077797, + 0.02983039617538452, + 0.026981068775057793, + 0.0127274664118886, + -0.05388633906841278, + 0.055976927280426025, + 0.03606634959578514, + 0.01877295784652233, + 0.0017916893120855093, + 0.05518443137407303, + -0.02285505272448063, + -0.00991874746978283, + -0.026299795135855675, + 0.002073294250294566, + -0.008390657603740692, + -0.010149277746677399, + -0.005898239091038704, + 0.04688197001814842, + -0.05413532629609108, + 0.0303636584430933, + -0.01609301008284092, + -0.0265229232609272, + 0.0058563160710036755, + 0.011629855260252953, + 0.029237575829029083, + 0.038327012211084366, + 0.006394995842128992, + -0.01003273669630289, + -0.013306470587849617, + -0.025892706587910652, + 0.0029142326675355434, + -0.011182865127921104, + 0.020385125651955605, + -0.02152230590581894, + -0.00486792204901576, + -0.006239181384444237, + 0.05231405794620514, + 0.020010754466056824, + -0.03434896469116211, + 0.018210556358098984, + 0.011388679035007954, + -0.024967076256871223, + -0.03553282842040062, + -0.039897412061691284, + -0.009255911223590374, + -0.003793834475800395, + 0.03234786540269852, + 0.008530652150511742, + -0.02263244241476059, + -0.02141137421131134, + 0.03910832107067108, + 0.0054026637226343155, + 0.024838566780090332, + 0.02568475902080536, + 0.01875913329422474, + 0.00017075966752599925, + 0.02676195092499256, + 0.038588762283325195, + 0.002673593582585454, + -0.03629743680357933, + 0.02750980854034424, + 0.01094091683626175, + 0.01357156690210104, + 0.018200038000941277, + -0.06444475799798965, + 0.010087256319820881, + -0.00726699223741889, + 0.010568692348897457, + -0.006900211796164513, + -0.030218517407774925, + -0.0013391553657129407, + -0.0014513588976114988, + -0.002784628886729479, + -0.03662998601794243, + -0.028141112998127937, + -0.048949990421533585, + -0.022861333563923836, + 0.02082524262368679, + -0.06323286145925522, + -0.06364220380783081, + -0.025196971371769905, + 0.005675341468304396, + -0.015145735815167427, + 0.0014675224665552378, + -0.03490198403596878, + -0.025009896606206894, + 0.004994742106646299, + -0.035025134682655334, + -0.007719077169895172, + -0.00511974049732089, + -0.01568038947880268, + -0.0146697498857975, + 0.008207922801375389, + -0.03739701956510544, + 0.0058736735954880714, + 0.00833485834300518, + 0.024650877341628075, + 0.049414683133363724, + 0.013730994425714016, + 0.006584949791431427, + 0.012807682156562805, + -0.029833894222974777, + 0.0127312783151865, + -0.00838406290858984, + -0.06083756685256958, + -0.01819640025496483, + -0.010192588903009892, + -0.03383271396160126, + 0.020124051719903946, + -0.005475412588566542, + -0.00229700212366879, + -0.016944698989391327, + 0.015382052399218082, + -0.005849149078130722, + 0.005539563484489918, + -0.0004063322558067739, + -0.018207700923085213, + 0.0037474187556654215, + 0.009282959625124931, + -0.001769063645042479, + -0.009314211085438728, + -0.05038660392165184, + -0.008147105574607849, + 0.02083580754697323, + 0.016650483012199402, + -0.009835097938776016, + -0.011092033237218857, + -0.020270459353923798, + -0.014164703898131847, + 0.0080611202865839, + -0.0006271810852922499, + 0.014111277647316456, + 0.006395847070962191, + 0.001745871384628117, + -0.02213122323155403, + -0.006944564636796713, + 0.02610146813094616, + -0.013164331205189228, + -0.010483011603355408, + 0.0023465538397431374, + 0.011239430867135525, + 0.00589665025472641, + -0.02076946385204792, + -0.040835097432136536, + -0.017276711761951447, + -0.02485201321542263, + 0.028611017391085625, + -0.006383218802511692, + 0.004369223024696112, + 0.0055097793228924274, + 0.056638021022081375, + 0.0240319836884737, + -0.0019200326642021537, + 0.029075175523757935, + 0.00019805676129180938, + 0.03183843195438385, + -0.04839649051427841, + 0.01964019238948822, + -0.023734109476208687, + -0.011823276989161968, + -0.02285596914589405, + 0.0007439273176714778, + -0.0017134160734713078, + 0.0038690187502652407, + -0.0052144452929496765, + 0.041335079818964005, + -0.006264916155487299, + -0.002033496741205454, + 0.0005010373424738646, + -0.013136327266693115, + -0.010775310918688774, + -0.03031235933303833, + -0.02659791335463524, + -0.04297054186463356, + -0.03862344101071358, + 0.04650459438562393, + -0.014721252955496311, + 0.009790077805519104, + -0.009517259895801544, + -0.0393572598695755, + -0.021803155541419983, + -0.030842045322060585, + 0.006757216528058052, + 0.017738157883286476, + -0.021762775257229805, + 0.02328657917678356, + 0.010220757685601711, + -0.0067310337908566, + -0.002921660663560033, + -0.09264624118804932, + 0.026058854535222054, + 0.04467324912548065, + -0.01951344683766365, + 0.01565994881093502, + 0.011822819709777832, + -0.057676367461681366, + -0.01968645676970482, + 0.05070246756076813, + 0.01923462748527527, + 0.02745678462088108, + 0.015256506390869617, + 0.007368579972535372, + 0.015452609397470951, + 0.02840271405875683, + -0.04394577443599701, + 0.0361407995223999, + -0.025067798793315887, + -0.009240769781172276, + -0.009942995384335518, + 0.06893043220043182, + 0.014766344800591469, + -0.01242772676050663, + 0.034491341561079025, + -0.014843138866126537, + 0.02037886530160904, + -0.026440724730491638, + -0.03374714031815529, + -0.025122400373220444, + 0.010385001078248024, + -0.01220009196549654, + 0.02560117468237877, + 0.005087689496576786, + 0.05814991146326065, + 0.0006307417061179876, + -0.014645152725279331, + -0.010549021884799004, + -0.037078507244586945, + -0.01724162884056568, + -0.012202974408864975, + 0.04183289408683777, + -0.007964180782437325, + 0.036999501287937164, + -0.013341140933334827, + 0.015475100837647915, + -0.00523300701752305, + -0.0004194281646050513, + 0.007027413230389357, + 0.022824881598353386, + 0.07422325760126114, + 0.03334696590900421, + 0.032605770975351334, + 0.02615068294107914, + 0.04350780323147774, + 0.046551793813705444, + 0.00265254988335073, + -0.017263391986489296, + 0.03519458323717117, + 0.0142302131280303, + -0.03998246416449547, + 0.03292565792798996, + -0.07658378779888153, + 0.0032738971058279276, + 0.01332399994134903, + -0.06119271740317345, + -0.015700172632932663, + 0.04249618574976921, + -0.05999334901571274, + 0.0027419235557317734, + -0.0687558650970459, + 0.03684891387820244, + -0.005217063240706921, + -0.013936279341578484, + -0.006288299802690744, + 0.026618987321853638, + 0.008169588632881641, + 0.004374459385871887, + -9.609910193830729e-06, + -0.056402869522571564, + -0.02574148029088974, + -0.0032945042476058006, + -0.02111390046775341, + -0.01847723498940468, + -0.028397053480148315, + 0.0009425466414541006, + 0.04248768836259842, + -0.028333865106105804, + -0.03509308025240898, + 0.04199966788291931, + -0.025116385892033577, + -0.05332507938146591, + 0.007509517017751932, + -0.03084738366305828, + -0.15700657665729523, + -0.027634402737021446, + -0.0033179172314703465, + -0.011640246957540512, + 0.05857264623045921, + -0.0031364799942821264, + 0.06686905771493912, + 0.0038887434639036655, + 0.004278120584785938, + 0.018737290054559708, + -0.002805805066600442, + 0.025893090292811394, + -0.041447702795267105, + 0.005782389547675848, + -0.06158991903066635, + -0.05101458355784416, + 0.01255603414028883, + -0.06369106471538544, + -0.012610352598130703, + -0.011803638190031052, + 0.01910112053155899, + 0.022778160870075226, + 0.011645262129604816, + -0.01544937863945961, + 0.04629683494567871, + 0.07005322724580765, + -0.054913777858018875, + -0.005385248456150293, + 0.011988547630608082, + 0.05074483901262283, + 0.03177256137132645, + -0.04828743636608124, + -0.08858907222747803, + -0.01711527444422245, + 0.017358779907226562, + 0.024396834895014763, + 0.011270444840192795, + -0.06047149747610092, + -0.033423226326704025, + -0.004836442414671183, + 0.05895227938890457, + 0.019887935370206833, + 0.028050854802131653, + -0.031847331672906876, + -0.003296461421996355, + -0.02490975521504879, + 0.03236475586891174, + -0.05221658572554588, + -0.02053036168217659, + -0.014730021357536316, + -0.009220794774591923, + -0.008975597098469734, + -0.048302989453077316, + -0.008418495766818523, + 0.014566603116691113, + -0.014130497351288795, + -0.015692520886659622, + -0.0924428403377533, + -0.0009464897448197007, + 0.1247933954000473, + -0.05270586907863617, + -0.03335224837064743, + 0.04098153114318848, + 0.0031195690389722586, + -0.011482837609946728, + -0.014756370335817337, + 0.074626125395298, + 0.041277773678302765, + 0.018484944477677345, + -0.015307236462831497, + -0.010965262539684772, + -0.006837956141680479, + 0.006536311935633421, + -0.017153602093458176, + -0.041989654302597046, + -0.013302122242748737, + -0.06328629702329636, + 0.02389664575457573, + -0.003663134528324008, + 0.006580831483006477, + -0.0057083056308329105, + -0.0036315624602138996, + 0.010773872956633568, + 0.042759139090776443, + -5.4208358051255345e-05, + -0.04285634309053421, + 0.02407681941986084, + 0.03597632423043251, + 0.022268639877438545, + 0.04220547899603844, + 0.045094821602106094, + 0.04343084990978241, + 0.010918758809566498, + -0.0025945596862584352, + -0.060031209141016006, + 0.018025832250714302, + -0.012232409790158272, + 0.011427321471273899, + 0.029293330386281013, + -0.00956130400300026, + 0.01557917706668377, + -0.04576314613223076, + 0.008866149932146072, + -0.03584277629852295, + -0.003577648662030697, + 0.022231249138712883, + -0.016076285392045975, + -0.033274095505476, + -0.04415067657828331, + -0.027298539876937866, + 0.013581117615103722, + -0.050169769674539566, + -0.0073084281757473946, + -0.09899191558361053, + 0.03642892464995384, + 0.00022882729535922408, + 0.04764527827501297, + -0.023725178092718124, + -0.042187388986349106, + -0.010214516893029213, + -0.005489409435540438, + 0.008364302106201649, + 0.0058964211493730545, + -0.0725940614938736, + -0.009654831141233444, + 0.003096390748396516, + 0.016412900760769844, + -0.039876580238342285, + -0.09562226384878159, + 0.01157351490110159, + 0.05837605893611908, + 0.02143475040793419, + 0.001710364711470902, + -0.021094415336847305, + -0.005166525486856699, + 0.008537019602954388, + 0.023792507126927376, + -0.062492866069078445, + 0.02741691656410694, + 0.04826170578598976, + 0.013073946349322796, + -0.02320868894457817, + 0.01289197988808155, + 0.05564234405755997, + -0.02324933558702469, + -0.002094836439937353, + 0.016106799244880676, + -0.026443757116794586, + -0.05431713908910751, + 0.04725920781493187, + 0.0318911112844944, + 0.04045334458351135, + 0.015520190820097923, + 0.027939192950725555, + 0.04268280044198036, + 0.009496394544839859, + 0.013421337120234966, + 0.02432664856314659, + -0.012859334237873554, + -0.0006964632775634527, + 0.03661177307367325, + 0.003517499892041087, + 0.002340235048905015, + -0.001503022969700396, + -0.010603677481412888, + 0.03245679289102554, + -0.021898576989769936, + 0.006929138209670782, + 0.01985209994018078, + -0.0036664828658103943, + 0.014065311290323734, + -0.009919880889356136, + 0.008870747871696949, + -0.02428087405860424, + -0.0012970040552318096, + -0.047866854816675186, + -0.032247066497802734, + -0.04098273441195488, + 0.05371672287583351, + 0.034596968442201614, + 0.06570415943861008, + 0.009571701288223267, + 0.044268738478422165, + -0.032538577914237976, + 0.00599272083491087, + -0.024909427389502525, + 0.052162352949380875, + 0.0183873251080513, + 0.011466835625469685, + -0.005210446193814278, + -0.022851454094052315, + -0.04119952768087387, + 0.0006091847899369895, + 0.01727486215531826, + -0.011364717036485672, + -0.002296534599736333, + 0.023885944858193398, + -0.00733511196449399, + -0.0002474890206940472, + -0.0011083888821303844, + 0.0526258759200573, + 0.025147458538413048, + 0.017492711544036865, + 0.017137033864855766, + 0.027982883155345917, + -0.045105643570423126, + 0.006846792064607143, + 0.09466658532619476, + 0.025985436514019966, + -0.031422194093465805, + 0.030858494341373444, + -0.0010556166525930166, + 0.002078356919810176, + 0.007022445555776358, + 0.01166496891528368, + 0.001835028873756528, + -0.01104756724089384, + 0.0115228071808815, + -0.006815476808696985, + 0.013865008018910885, + -0.040929023176431656, + -0.021563835442066193, + 0.0029351720586419106, + -0.015563352964818478, + 0.0637819841504097, + 0.010814892128109932, + -0.04054015129804611, + -0.0185755155980587, + -0.014838297851383686, + -0.022676708176732063, + -0.012461709789931774, + 0.03739588335156441, + 0.008305461145937443, + 0.0482662171125412, + -0.050574999302625656, + -0.009573363699018955, + -0.008314022794365883, + 0.00031510848202742636, + -0.020357923582196236, + 0.009177609346807003, + -0.007019129116088152, + 0.05349127575755119, + -0.060550663620233536, + 0.03992851823568344, + 0.006441123783588409, + -0.018198225647211075, + 0.005849012173712254, + 0.0021093995310366154, + -0.013448760844767094, + -0.06794720888137817, + -0.03528493642807007, + 0.01469995267689228, + 0.011344443075358868, + 0.09838098287582397, + -0.01852746680378914, + 0.021159885451197624, + 0.027859486639499664, + -0.02395598776638508, + -0.012554117478430271, + -0.01327548362314701, + -0.0252190250903368, + 0.02381066605448723, + -0.04443410784006119, + 0.05770106986165047, + 0.02594069577753544, + -0.05064084753394127, + -0.012662075459957123, + -0.02124869078397751, + -0.033226970583200455, + -0.013151352293789387, + 0.02657727710902691, + 0.025650225579738617, + 0.02477770484983921, + 0.017782744020223618, + 0.047282714396715164, + 0.027773942798376083, + -0.031692828983068466, + 0.011659097857773304, + 0.039093922823667526, + 0.015569903887808323, + 0.014509419910609722, + -0.004740146920084953, + 0.006432949099689722, + -0.0015433141961693764, + -0.028443342074751854, + -0.012142134830355644, + 0.02203872799873352, + 0.03207021206617355, + 0.0063623650930821896, + -0.05867205932736397, + -0.011795982718467712, + -0.03938227519392967, + -0.00013079080963507295, + -0.04705158248543739, + -0.006656566169112921, + 0.011041796766221523, + 0.03696727752685547, + 0.012569529004395008, + 0.04052279517054558, + -0.004682150669395924, + -0.015277585946023464, + -0.02988877147436142, + -0.005426411982625723, + 0.007090957369655371, + -0.035214148461818695, + -0.046663470566272736, + 0.03648490086197853, + 0.0005475749494507909, + -0.06735213100910187, + -0.03660334274172783, + 0.014647414907813072, + -0.05921309441328049, + -0.005717438645660877, + -0.06366562098264694, + 0.031835269182920456, + -0.035216059535741806, + -0.06491222977638245, + 0.03854408860206604, + 0.04082436487078667, + 0.019932236522436142, + -0.040178313851356506, + -0.03428369015455246, + 0.01945115439593792, + 0.03889542073011398, + 0.010151566006243229, + -0.0003792101633735001, + -0.032619722187519073, + 0.004783784970641136, + -0.029735982418060303, + 0.02141658030450344, + 0.014862682670354843, + -0.02410929836332798, + -0.06278608739376068, + 0.019686270505189896, + 0.012660957872867584, + -0.04008423909544945, + -0.029786013066768646, + -0.06228215619921684, + -0.04155576229095459, + -0.0010447014356032014, + 0.015251023694872856, + 0.0560118705034256, + 0.007549211848527193, + -0.028346575796604156, + 0.04798109829425812, + 0.003965964540839195, + -0.01949298568069935, + -0.02778143621981144, + -0.01398530974984169, + 0.015011976473033428, + -0.03285565972328186, + -0.02159694768488407, + 0.030293919146060944, + 0.05677731707692146, + -0.061882853507995605, + 0.006546091288328171, + -0.0018437644466757774, + 0.023461364209651947, + 0.02966396138072014, + -0.05866919085383415, + -0.00989596825093031, + -0.023912252858281136, + 0.001620762050151825, + -0.023028338328003883, + 0.05684438347816467, + 0.005605015438050032, + 0.05537484213709831, + 0.015854204073548317, + -0.02717922441661358, + -0.005852167494595051, + 0.02947441302239895, + -0.014384062960743904, + -0.01733998954296112, + 0.025469522923231125, + -0.0018866267055273056, + 0.06123238056898117, + -0.020107300952076912, + -0.0010338335996493697, + -0.014230192638933659, + 0.0060552749782800674, + 0.01525125466287136, + 0.012714761309325695, + -0.01584623008966446, + 0.029086245223879814, + -0.026362277567386627, + -0.01945018209517002, + -0.020796149969100952, + 0.07282210141420364, + 0.030125083401799202, + 0.011293096467852592, + 0.013372634537518024, + 0.016900908201932907, + -0.018160438165068626, + 0.04434341937303543, + 0.012104902416467667, + -0.0654079020023346, + 0.030270026996731758, + -0.05170351639389992, + -0.012593754567205906, + -0.035757407546043396, + -0.025851288810372353, + -0.04124977067112923, + 0.032678939402103424, + 0.030635157600045204, + 0.009024055674672127, + -0.004303979687392712, + 0.0324181392788887, + -0.020232034847140312, + -0.011673146858811378, + -0.011412662453949451, + 0.019766157492995262, + -0.05432336404919624, + 0.02716268040239811, + -0.030101099982857704, + -0.026179078966379166, + 0.03797890245914459, + -0.003336832858622074, + 0.008101552724838257, + 0.020740138366818428, + 0.03128485754132271, + 0.005024766083806753, + -0.009016571566462517, + 0.002839347580447793, + 0.0015368375461548567, + -0.03881595656275749, + 0.009080994874238968, + -0.00850885920226574, + 0.01008489541709423, + 0.010642865672707558, + 0.05725974962115288, + -0.043621454387903214, + -0.0010649808682501316, + -0.02276747114956379, + -0.0403192862868309, + 0.0411650687456131, + -0.04260080307722092, + 0.02863757684826851, + 0.0025844555348157883, + 0.0028760095592588186, + -0.03629877418279648, + 0.0103572653606534, + 0.0609297938644886, + 0.06452006846666336, + 0.0030636037699878216, + 0.02017669938504696, + 0.08492087572813034, + -0.00626261904835701, + -0.03102085553109646, + -0.0329030342400074, + 0.016301393508911133, + -0.031450916081666946, + 0.010925483889877796, + -0.011909558437764645, + -0.028800541535019875, + -0.03818703815340996, + 0.013027176260948181, + 0.02406584657728672, + 0.020917648449540138, + -0.03166808560490608, + 0.030922533944249153, + 0.005801488645374775, + -0.015634410083293915, + 0.006690806243568659, + -0.022277619689702988, + 0.08482974022626877, + 0.044899147003889084, + -0.05072993040084839, + -0.007597642485052347, + 0.02244831807911396, + 0.04885760322213173, + 0.024610377848148346, + 0.011946461163461208, + -0.022646868601441383, + 0.019262198358774185, + -0.013414370827376842, + 0.00722126429900527, + -0.014239253476262093, + -0.005857213865965605, + 0.057274967432022095, + -0.0015718835638836026, + 0.03770130127668381, + -0.01719607599079609, + -0.013875019736588001, + -0.03690400347113609, + -0.04278230294585228, + 0.02704860083758831, + 0.03838639706373215, + 0.010687344707548618, + -0.030376169830560684, + 0.02367216907441616, + -0.030976084992289543, + -0.029659101739525795, + -0.009593757800757885, + -0.003531555412337184, + 0.004653100855648518, + 0.10634716600179672, + -0.004550612531602383, + 0.01636243611574173, + 0.012817101553082466, + 0.013238507322967052, + 0.018681352958083153, + 0.021575236693024635, + 0.01964723877608776, + 0.001292963046580553, + 0.026044659316539764, + 0.0021972698159515858, + -0.0032512140460312366, + 0.03418564796447754, + 0.037052251398563385, + 0.06825581192970276, + 0.002534904284402728, + 0.04146211966872215, + -0.0030168595258146524, + 0.01018626056611538, + 0.013102794997394085, + -0.011546647176146507, + 0.006241610739380121, + -0.02697788178920746, + -0.004843450617045164, + 0.01681067794561386, + 0.03410548344254494, + -0.019006608054041862, + -0.0018619404872879386, + 0.03827229514718056, + -0.06819707155227661, + -0.004492460284382105, + -0.0017326527740806341, + -0.008624931797385216, + 0.01213776133954525, + 0.017154591158032417, + 0.043599508702754974, + 0.011117219924926758, + -0.03574436902999878, + 0.007083587348461151, + -0.011531730182468891, + 0.00966618675738573, + 0.0242935661226511, + -0.02444140426814556, + -0.009742969647049904, + 0.021083911880850792, + 0.008037918247282505, + 0.021749643608927727, + -0.010809804312884808, + 0.030011514201760292, + -0.0354030467569828, + -0.022306323051452637, + -0.014511232264339924, + 0.009522964246571064, + -0.01753612793982029, + -0.00892029982060194, + -0.008871558122336864, + -0.01356736570596695, + 0.016440199688076973, + -0.017338640987873077, + -0.01686365343630314, + -0.014740033075213432, + 0.022955212742090225, + 0.07439974695444107, + -0.009309069253504276, + 0.04106597602367401, + -0.004917663522064686, + 0.014066032133996487, + 0.039983995258808136, + -0.011038742028176785, + -0.02819780632853508, + 0.011178086511790752, + 0.017581786960363388, + -0.009839696809649467, + 0.028093203902244568, + -0.009594738483428955, + 0.003242440288886428, + -0.046053241938352585, + 0.02889269031584263, + 0.026976970955729485, + 0.015215442515909672, + -0.03353859856724739, + 0.0072008538991212845, + -0.023854084312915802, + 0.04263902083039284, + 0.0299408920109272, + 0.017882397398352623, + 0.0040098633617162704, + -0.028730962425470352, + -0.006827058736234903, + 0.03769988939166069, + -0.03994531184434891, + -0.02625957317650318, + 0.0111665865406394, + 0.018906066194176674, + 0.00829783920198679, + -0.010977805592119694, + 0.024754030629992485, + 0.019796930253505707, + 0.026038289070129395, + 0.07131176441907883, + -0.011167550459504128, + 0.016360562294721603, + 0.01855296641588211, + -0.004193530883640051, + -0.023246755823493004, + 0.04413880780339241, + 0.013174723833799362, + -0.01801881566643715, + 0.035090867429971695, + 0.03422313928604126, + 0.027198849245905876, + -0.04354478046298027, + 0.04142722859978676, + 0.004885272588580847, + 0.02855342999100685, + -0.0631205216050148, + -0.015270370990037918, + 0.056949060410261154, + 0.03839199244976044, + -0.005239839665591717, + -0.003443859750404954, + 0.01437064353376627, + -0.01723705232143402, + 0.014087804593145847, + -0.043931759893894196, + 0.0168616883456707, + -0.001280731987208128, + -0.012699289247393608, + -0.004941038321703672, + 0.04826929420232773, + 0.0436723455786705, + 0.016819870099425316, + -0.029165523126721382, + -0.002575887134298682, + -0.01167707797139883, + 0.00310318311676383, + -0.020363271236419678, + 0.025089727714657784, + -0.0009842260042205453, + -0.00794229842722416, + -0.02630898542702198, + 0.0352630577981472, + 0.01672263815999031, + -0.021756555885076523, + 0.0026065774727612734, + -0.012633179314434528, + -0.007987063378095627, + 0.03390025347471237, + -0.02162298373878002, + 0.007673144806176424, + -0.042039647698402405, + -0.005882051773369312, + 0.011027065105736256, + -0.02325807325541973, + -0.02367236465215683, + -0.003972605336457491, + -0.040147244930267334, + 0.012365927919745445, + 0.011957093141973019 + ], + "start_index": 0, + "end_index": 193, + "token_count": 49, + "file": "funcion_validacion_acceso.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "2cc41190-3593-574c-82d9-a44ea10fee17", + "_source": { + "text": "encontrado = False\nstartLoop(i, 1, 10)\n if(i, 5, \"==\")\n encontrado = True\n i = 11 \n end()\nendLoop()\naddResult(encontrado)", + "embedding": [ + 0.0132789621129632, + -0.020074335858225822, + -0.010640517808496952, + -0.06555768847465515, + 0.003759772749617696, + 0.05857451632618904, + -0.01941658928990364, + 0.015319076366722584, + 0.023806249722838402, + -0.007482282351702452, + 0.015575477853417397, + -0.0810350775718689, + 0.03660469502210617, + -0.00908740796148777, + -0.029519548639655113, + 0.08323394507169724, + -0.009396346285939217, + -0.06899222731590271, + 0.029067421332001686, + -0.01878467947244644, + -0.08433812856674194, + 0.040286969393491745, + -0.004231445491313934, + 0.022054778411984444, + -0.0113245053216815, + -0.02371973916888237, + -0.0384676419198513, + 0.023216642439365387, + 0.034273911267519, + -0.037131164222955704, + 0.012663580477237701, + 0.062284454703330994, + -0.05806570500135422, + 0.010333706624805927, + -0.00702308677136898, + -0.01474843081086874, + -0.014881198294460773, + -0.008846686221659184, + 0.028563614934682846, + 0.010272480547428131, + -0.06483124941587448, + 0.007503265980631113, + -0.029980067163705826, + 0.0071120550855994225, + 0.02854103595018387, + 0.02164788357913494, + 0.05933128297328949, + 0.012181471101939678, + 0.01846466399729252, + 0.021238604560494423, + 0.005004396662116051, + 0.04279018193483353, + 0.015372157096862793, + 0.004716064315289259, + -0.020145684480667114, + -0.031642846763134, + 0.03976349160075188, + -0.032778941094875336, + -0.006070493254810572, + 0.015158993192017078, + -0.053906526416540146, + 0.005567046348005533, + -0.02484087646007538, + -0.03848367556929588, + 0.01685759797692299, + -0.019433530047535896, + 0.0036690416745841503, + 0.010405889712274075, + -0.09245827794075012, + 0.021205659955739975, + -0.05416034534573555, + -0.01221507042646408, + 0.006671922281384468, + 0.022210126742720604, + 0.015715651214122772, + 0.0016250821063295007, + 0.030650489032268524, + -0.06785312294960022, + 0.00813987385481596, + 0.022808700799942017, + -0.011433392763137817, + 0.022777851670980453, + 0.006541257258504629, + 0.02168610692024231, + 0.009498466737568378, + -0.0028932015411555767, + -0.003343879710882902, + 0.006841657683253288, + 0.003655789652839303, + 0.010410135611891747, + -0.07745809108018875, + 0.01976952515542507, + -0.00999881699681282, + -0.0070428200997412205, + -0.02949841320514679, + -0.010250182822346687, + 0.023365860804915428, + 0.07846443355083466, + -0.004073226824402809, + 0.003079068847000599, + 0.013098472729325294, + -0.011414739303290844, + 0.011701208539307117, + 0.019611744210124016, + 0.009336858056485653, + 0.05155554786324501, + -0.04185263440012932, + 0.03582458570599556, + -0.01176502462476492, + -0.02756698802113533, + 0.010455182753503323, + -0.011139851063489914, + 0.032725151628255844, + 0.005272029433399439, + -0.016479190438985825, + -0.02461049146950245, + -0.0013118080096319318, + -0.036383312195539474, + 0.004342963919043541, + -0.016579734161496162, + -0.00180427182931453, + -0.04285871610045433, + -0.030848074704408646, + -0.021236222237348557, + -0.04298277571797371, + 0.011257901787757874, + -0.01731836423277855, + -0.0015555802965536714, + 0.025101298466324806, + -0.01985531859099865, + -0.008331846445798874, + -0.01026972196996212, + -0.03348199650645256, + 0.009526651352643967, + 0.026027442887425423, + 0.01270738709717989, + -0.009831922128796577, + -0.02391776069998741, + 0.026606827974319458, + 0.018737085163593292, + -0.03882254660129547, + 0.014418699778616428, + 0.0495375394821167, + -0.016476033255457878, + 0.016849417239427567, + 0.03158038109540939, + 0.006742932368069887, + 0.004827157594263554, + 0.016186822205781937, + 0.02047499641776085, + 0.00039996366831474006, + -0.02549600601196289, + -0.04646223783493042, + -0.022233160212635994, + -0.037087079137563705, + 0.0512508898973465, + -0.022788263857364655, + -0.02428581565618515, + -0.016796845942735672, + 0.03458375483751297, + -0.04545760154724121, + 0.0038851224817335606, + 0.007797666359692812, + -0.034320708364248276, + -0.022498687729239464, + 0.02444278448820114, + -0.07340613007545471, + -0.044978123158216476, + -0.0674622431397438, + -0.0354665145277977, + -0.02052951045334339, + 0.014821910299360752, + 0.03247235715389252, + -0.021246513351798058, + 0.03162165731191635, + 0.013166287913918495, + -0.010704847052693367, + -0.00967301893979311, + -0.0022661995608359575, + -0.03973683714866638, + 0.003050656523555517, + -0.006325064226984978, + 0.01742991805076599, + 0.013969163410365582, + -0.002920159138739109, + 0.0028096011374145746, + -0.005899705924093723, + -0.024587741121649742, + -0.005201119463890791, + -0.02716248482465744, + 0.05699058249592781, + 0.008382810279726982, + -0.011547795496881008, + -0.04001940041780472, + -0.028748221695423126, + -0.025604620575904846, + -0.016695724800229073, + -0.006061856634914875, + 0.013378149829804897, + -0.015743892639875412, + 0.012501548044383526, + 0.017051557078957558, + -0.006555167492479086, + 0.020048312842845917, + -0.007904625497758389, + 0.0035623740404844284, + 0.014752221293747425, + 0.016393030062317848, + -0.013393229804933071, + -0.021908218041062355, + -0.0027626806404441595, + 0.015855733305215836, + 0.008537630550563335, + 0.017000459134578705, + -0.023742370307445526, + -0.02865106239914894, + 0.010424441657960415, + 0.0008297962485812604, + -0.019120682030916214, + 0.020495804026722908, + 0.019228264689445496, + 0.012813090346753597, + -0.006081526167690754, + 0.009858343750238419, + 0.038181811571121216, + -0.025884022936224937, + 0.0037490185350179672, + -0.025290552526712418, + -0.0503060445189476, + 0.02868080511689186, + -0.002968631451949477, + -0.04606570675969124, + 0.0008393818861804903, + 0.006425539962947369, + 0.022062283009290695, + 0.03819571062922478, + -0.04249976947903633, + -0.022355876863002777, + 0.037040434777736664, + -0.061834439635276794, + -0.0005237540462985635, + -0.0011359493946656585, + 0.007250302005559206, + -0.004674048162996769, + -0.042964838445186615, + -0.0072700451128184795, + 0.00964000727981329, + -0.043068211525678635, + 0.006849709432572126, + 0.02594216912984848, + 0.009884586557745934, + 0.046679820865392685, + -0.016711382195353508, + 0.0574941448867321, + -0.02754833549261093, + 0.008642157539725304, + 0.017544317990541458, + -0.023511433973908424, + -0.01770792528986931, + 0.03481580317020416, + 0.04580487683415413, + -0.027155369520187378, + -0.01590251363813877, + 0.019989168271422386, + 0.01288146898150444, + 0.021307330578565598, + -0.017846113070845604, + -0.046090930700302124, + -0.013701863586902618, + -0.015536056831479073, + 0.005279389210045338, + 0.005245518870651722, + -0.036498017609119415, + -0.016383985057473183, + 0.0027320426888763905, + 0.004492081236094236, + 0.02396342158317566, + -0.07885576039552689, + 0.002036983147263527, + 0.043588317930698395, + -0.020010825246572495, + 0.0015715797198936343, + 0.02356983721256256, + -0.08447667211294174, + -0.032608624547719955, + 0.040164243429899216, + 0.02265753410756588, + 0.006445516832172871, + 0.0032159830443561077, + -0.007843783125281334, + 0.040266867727041245, + -0.006815876346081495, + -0.020388830453157425, + -0.008191823959350586, + -0.028102770447731018, + 0.04542592167854309, + -0.003423015819862485, + 0.032338205724954605, + 0.05212532728910446, + 0.0322071798145771, + 0.03333808481693268, + -0.033342111855745316, + 0.02012404426932335, + -0.048073820769786835, + -0.01601835899055004, + 0.002787510398775339, + 0.05660742521286011, + -0.010001185350120068, + -0.011755735613405704, + -0.0025148058775812387, + 0.010158540681004524, + 0.015081468969583511, + -0.0044654663652181625, + 0.005952250212430954, + -0.005425618961453438, + -0.009080717340111732, + -0.07001759856939316, + 0.030864886939525604, + 0.06437844783067703, + 0.014642658643424511, + 0.03510426729917526, + 0.03750186040997505, + 0.00409854156896472, + 0.01921532303094864, + 0.007461302448064089, + 0.048497218638658524, + 0.03067229688167572, + 0.0051310681737959385, + 0.047931939363479614, + -0.009041735902428627, + 0.011821416206657887, + 0.02059233747422695, + 0.04210933297872543, + -0.005902933422476053, + -0.02418622188270092, + 0.04703273996710777, + -0.0016288354527205229, + 0.011322150006890297, + -0.029959185048937798, + -0.004986296407878399, + 0.03338529169559479, + -0.007179343141615391, + -0.002650399226695299, + 0.03477027267217636, + -0.04813283681869507, + -0.011195586062967777, + -0.008964376524090767, + 0.005926081910729408, + 0.017941780388355255, + -0.01157150324434042, + -0.026710394769906998, + -0.011872271075844765, + 0.011761197820305824, + -0.010381261818110943, + 0.027079546824097633, + -0.06559807807207108, + -0.012641054578125477, + -0.03209755942225456, + -0.039341915398836136, + -0.008210265077650547, + -0.1073278859257698, + -0.029553426429629326, + 0.03830951079726219, + -0.01175251416862011, + -0.06460105627775192, + 0.016493016853928566, + -0.03554864972829819, + -0.001984355039894581, + 0.040607113391160965, + -0.00769398408010602, + -0.11529510468244553, + -0.051016878336668015, + -0.012722386047244072, + 0.016050538048148155, + 0.05439409613609314, + 0.014826901257038116, + 0.07888048142194748, + 0.044436465948820114, + -0.041648391634225845, + 0.06305296719074249, + 0.04454974830150604, + 0.02385064586997032, + 0.043871451169252396, + 0.01173606887459755, + -0.04562825709581375, + -0.01052563451230526, + -0.016407517716288567, + -0.011023561470210552, + -4.49265462520998e-05, + -0.004654556512832642, + -0.00933456514030695, + -0.023047229275107384, + -0.01932414248585701, + -0.012948093004524708, + -0.00574879627674818, + 0.027702772989869118, + -0.04659714177250862, + -0.017214838415384293, + 0.019629715010523796, + 0.012949180789291859, + -0.021463314071297646, + -0.0003322807315271348, + -0.08606003224849701, + -0.017902573570609093, + -0.030604423955082893, + 0.012463015504181385, + -0.014669883996248245, + 0.010413823649287224, + -0.00875728577375412, + 0.005762703716754913, + 0.006750389467924833, + 0.018299270421266556, + -0.02249143458902836, + 0.011415763758122921, + 0.026650061830878258, + 0.017087234184145927, + 0.06059445068240166, + -0.049570608884096146, + -0.07638348639011383, + -0.013449895195662975, + -0.017287610098719597, + 0.002661013277247548, + -0.06844378262758255, + -0.00295814941637218, + 0.008041326887905598, + 0.049572136253118515, + 0.010565918870270252, + -0.06127619743347168, + -0.034376632422208786, + 0.06299827247858047, + 0.0010376150021329522, + 0.007703712210059166, + 0.016894979402422905, + -0.002413600916042924, + -0.03660880774259567, + 0.01379434484988451, + 0.057157181203365326, + 0.011604840867221355, + -0.018026214092969894, + -0.03873066231608391, + -0.01659581810235977, + -0.00012124220666009933, + -0.013767142780125141, + 0.009091008454561234, + -0.01662563905119896, + -0.008172485046088696, + 0.010860943235456944, + 0.007699285168200731, + 0.004934210330247879, + -0.016064653173089027, + 0.035281602293252945, + 0.0036133769899606705, + -0.004238345194607973, + 0.046132296323776245, + -0.041409239172935486, + 0.005332666914910078, + -0.029612747952342033, + -0.02125459350645542, + -0.0022114457096904516, + 0.006609486415982246, + 0.049006227403879166, + 0.06074802577495575, + -0.007352469023317099, + -0.03379388898611069, + -0.011413773521780968, + 0.021808233112096786, + -0.014772264286875725, + 0.018141506239771843, + -0.0006011001532897353, + 0.016985321417450905, + 0.01434328779578209, + -0.022701893001794815, + -0.03305627778172493, + -0.021115561947226524, + 0.006906203925609589, + -0.012041144073009491, + -0.05266452580690384, + -0.03619292750954628, + -0.08510743826627731, + -0.026235701516270638, + -0.03516583517193794, + -0.060130707919597626, + 0.003401143942028284, + -0.05594438314437866, + 0.06793142110109329, + -0.04220859333872795, + 0.04622545465826988, + -0.02270008809864521, + 0.03782979026436806, + 0.021526142954826355, + -0.03630761429667473, + 0.011588199995458126, + -0.02695888839662075, + -0.117576465010643, + 0.05410225689411163, + -0.044188376516103745, + -0.010343935340642929, + -0.019003186374902725, + -0.09921010583639145, + 0.004810198210179806, + 0.011919497512280941, + -0.026315955445170403, + 0.02681713178753853, + 0.03409115597605705, + -0.024658069014549255, + 0.012644353322684765, + 0.03278953582048416, + 0.019291875883936882, + -0.007239417172968388, + 0.038354117423295975, + -0.00841943733394146, + -0.0061695207841694355, + 0.01571037992835045, + -0.015178018249571323, + -0.03182417154312134, + 0.005065966863185167, + 0.03444762900471687, + 0.04793901741504669, + -0.039966680109500885, + 0.03599708527326584, + -0.008964047767221928, + 0.06498334556818008, + 0.034457623958587646, + 0.019234780222177505, + 0.008326112292706966, + -0.0008623501053079963, + 0.0066611552610993385, + -0.007106228265911341, + -0.006764019839465618, + 0.02867945283651352, + 0.04152021184563637, + 0.028394430875778198, + -0.011400661431252956, + -0.01879202201962471, + 0.016993939876556396, + 0.06933924555778503, + -0.06237303465604782, + -0.03937642648816109, + 0.01625472865998745, + 0.004584505222737789, + -0.05070216581225395, + -0.03211253881454468, + 0.013319450430572033, + 0.015883387997746468, + -0.05188111588358879, + 0.039487361907958984, + -0.015313505195081234, + 0.03150295466184616, + 0.034814972430467606, + 0.05574162304401398, + 0.02339765802025795, + -0.010981469415128231, + 0.04036746919155121, + 0.023440970107913017, + -0.0038703219033777714, + -0.008174284361302853, + -0.024842433631420135, + 0.03241420164704323, + 0.034207042306661606, + -0.04259933531284332, + -0.014137433841824532, + 0.006169275380671024, + 0.05189560726284981, + -0.049310751259326935, + 0.01751544140279293, + -0.03590509295463562, + -0.012307503260672092, + -0.02237260527908802, + 0.0519389882683754, + -0.03398531675338745, + 0.03772854432463646, + 0.011195828206837177, + 0.05015129968523979, + 0.043861132115125656, + -0.019119368866086006, + -0.03416140377521515, + -0.0412493459880352, + 0.019413258880376816, + 0.033070825040340424, + 0.00482366094365716, + 0.0032104363199323416, + 0.009761389344930649, + -0.04149219021201134, + 0.03901034966111183, + -0.02061746083199978, + 0.010264027863740921, + 0.06376048922538757, + -0.010955220088362694, + -0.03087466210126877, + -0.004520510323345661, + 0.003623638767749071, + -0.04181552678346634, + -0.020873459056019783, + 0.011046191677451134, + 0.06736508756875992, + 0.040377065539360046, + -0.06000464782118797, + -0.009259921498596668, + 0.02284814603626728, + -0.008654067292809486, + 0.00658731535077095, + 0.05158122256398201, + -0.0011452611070126295, + -0.001470788149163127, + -0.029814282432198524, + 0.025539936497807503, + -0.028743142262101173, + -0.006280843634158373, + 0.010156834498047829, + -0.003752753371372819, + -0.039638251066207886, + 0.02105870470404625, + -0.008882226422429085, + 0.032617174088954926, + 0.014736015349626541, + -0.03230201080441475, + -0.01711650751531124, + 0.06296917796134949, + 0.011387241072952747, + -0.03222886845469475, + 0.014397895894944668, + 0.01296691969037056, + -0.03382338210940361, + 0.06975207477807999, + 0.001476201694458723, + 0.03768050670623779, + 0.011831852607429028, + -0.05496527627110481, + -0.03498385101556778, + -0.014785006642341614, + -0.03310265764594078, + -0.010245333425700665, + -0.023008521646261215, + -0.018701357766985893, + 0.0008988104527816176, + -0.04942762851715088, + -0.037171754986047745, + -0.017227163538336754, + 0.008255519904196262, + 0.002500121248885989, + 0.018413666635751724, + -0.01142792496830225, + -0.03283128887414932, + 0.01608344167470932, + -0.03370820730924606, + 0.01118415966629982, + -0.005948941223323345, + 0.0064347595907747746, + 0.02419980987906456, + -0.04618781432509422, + 0.025057222694158554, + -0.004517860244959593, + -0.0013383550103753805, + 0.06778523325920105, + -0.014906376600265503, + -0.016554588451981544, + 0.02180316485464573, + 0.015622143633663654, + -0.06168808043003082, + -0.013473755680024624, + -0.008602132089436054, + -0.018741348758339882, + 0.02489023096859455, + -0.03836056590080261, + -0.0203555878251791, + 0.022600263357162476, + 0.030113518238067627, + 0.0010993046453222632, + 0.034231435507535934, + -0.05759164318442345, + -0.019392983987927437, + -0.03147570788860321, + -0.029407138004899025, + 0.07240880280733109, + -0.0012564031640067697, + -0.02642349898815155, + -0.05797553062438965, + -0.050882067531347275, + -0.01631065085530281, + -0.009506290778517723, + -0.007253756746649742, + -0.05349724739789963, + 0.041595883667469025, + 0.011038932017982006, + -0.05068429931998253, + -0.00926313828676939, + -0.06726118922233582, + 0.02637927234172821, + 0.008475042879581451, + -0.040821608155965805, + -0.002521206857636571, + -0.02385026402771473, + 0.047733429819345474, + -0.049135129898786545, + -0.009776178747415543, + 0.031596045941114426, + 0.04454527795314789, + -0.019329924136400223, + -0.022289684042334557, + 0.021046731621026993, + 0.02072998136281967, + 0.022199343889951706, + -0.003388330340385437, + -0.002624185523018241, + 0.03617434948682785, + -0.016394753009080887, + -0.005587527062743902, + 0.003754963865503669, + -0.047849420458078384, + -0.026080098003149033, + 0.038403358310461044, + 0.06844621151685715, + -0.022710232064127922, + -0.038144927471876144, + 0.012860763818025589, + 0.0011215303093194962, + -0.043311260640621185, + -0.06023642048239708, + 0.03085990808904171, + 0.03964129835367203, + -0.028679393231868744, + -0.03343474492430687, + 0.07634913921356201, + 0.023748690262436867, + 0.030378030613064766, + -0.003753645345568657, + 0.0184828769415617, + -0.004876971244812012, + 0.01296322513371706, + -0.041360579431056976, + 0.03270924091339111, + -0.028818311169743538, + -0.00033047006581909955, + 0.007331679109483957, + 0.009055578149855137, + 0.012090184725821018, + 0.03607793152332306, + -0.039758406579494476, + 0.02398310787975788, + -0.00446008425205946, + -0.013902358710765839, + 0.023094307631254196, + -0.048111893236637115, + -0.025925584137439728, + 0.01382910180836916, + 0.07569841295480728, + -0.015989530831575394, + -0.000777004228439182, + -0.017373353242874146, + 0.03389662876725197, + 0.043193280696868896, + -0.03371601551771164, + -0.0033131863456219435, + 0.010251211933791637, + -0.005185290239751339, + 0.019930845126509666, + -0.03503710776567459, + 0.015447312034666538, + -0.005250553600490093, + 0.04434538632631302, + -0.02960028499364853, + 0.007983485236763954, + 0.023926403373479843, + -0.014960762113332748, + 0.025727389380335808, + -0.01667424663901329, + 0.07093415409326553, + -0.00715496763586998, + -0.006824256386607885, + 0.006289862096309662, + 0.009864218533039093, + -0.03940379247069359, + -0.014378621242940426, + 0.0163717120885849, + 0.04661015421152115, + 0.00815373845398426, + -0.019276443868875504, + -0.024255450814962387, + 0.005238753277808428, + 0.05045725405216217, + -0.017139563336968422, + -0.03661488741636276, + 0.022192442789673805, + -0.0026620877906680107, + -0.07662470638751984, + 0.06813817471265793, + 0.024308038875460625, + 0.018521098420023918, + 0.025325624272227287, + 0.03244512528181076, + -0.03208400681614876, + 0.015694770961999893, + -0.020540719851851463, + 0.05231660604476929, + -0.02706032432615757, + -0.0022998510394245386, + -0.027767419815063477, + 0.02889048308134079, + 0.003585630329325795, + 0.028581613674759865, + -0.01391915325075388, + -0.01200118288397789, + -0.05328690633177757, + 0.011515638791024685, + 0.018814222887158394, + -0.02268347144126892, + 0.022577116265892982, + -0.00476382952183485, + -0.013563989661633968, + -0.07667210698127747, + 0.02118789404630661, + 0.02021126076579094, + 0.04437866434454918, + 0.015583851374685764, + -0.01900256611406803, + 0.009341220371425152, + 0.003908267244696617, + -0.050798945128917694, + -0.02127770334482193, + 0.02764323726296425, + -0.06738198548555374, + 0.025884002447128296, + -0.03613116219639778, + -0.0012091166572645307, + -0.04706166684627533, + 0.0410807840526104, + -0.0026834949385374784, + 0.02139529027044773, + -0.04447084665298462, + 0.016343677416443825, + 0.002675566589459777, + -0.009441358968615532, + 0.007502850145101547, + -0.0343686006963253, + 0.05792023614048958, + -0.013474338687956333, + 0.012500769458711147, + 0.04211723059415817, + 0.008233011700212955, + 0.021919382736086845, + -0.0030560605227947235, + 0.006663224659860134, + 0.0073754675686359406, + 0.010716275312006474, + -0.002327224938198924, + -0.02011907286942005, + 0.0076876613311469555, + -0.018977897241711617, + 0.042504604905843735, + -0.014481456950306892, + -0.012122958898544312, + -0.0009592954884283245, + -0.06109306588768959, + -0.022066272795200348, + -0.03443727269768715, + 0.019708935171365738, + -0.008047793991863728, + -0.032455071806907654, + -0.06340783089399338, + -0.02470044232904911, + -0.050131961703300476, + 0.004243266303092241, + -0.026466449722647667, + 0.03762532398104668, + -0.026236290112137794, + 0.06589405983686447, + -0.07180480659008026, + 0.04019211232662201, + 0.01353334728628397, + 0.004779559560120106, + 0.028952712193131447, + 0.023019544780254364, + 0.004716678988188505, + 0.05496879294514656, + -0.040862686932086945, + -0.02610950544476509, + -0.027372822165489197, + 0.026278654113411903, + 0.03400852903723717, + -0.021697290241718292, + -0.004549822304397821, + 0.049772243946790695, + -0.008361062966287136, + 0.05432271584868431, + -0.013687575235962868, + -0.005898546893149614, + -0.007417865097522736, + -0.010092617943882942, + 0.017567194998264313, + 0.024243708699941635, + 0.021964235231280327, + -0.028676165267825127, + 0.0007173359044827521, + 0.029004402458667755, + -0.08133051544427872, + -0.05850595608353615, + 0.04961510747671127, + -0.006683500949293375, + 0.020740635693073273, + -0.030884673818945885, + 0.014471873641014099, + -0.03340966999530792, + 0.019862204790115356, + -0.03462231904268265, + -0.020453013479709625, + 0.012227694503962994, + 0.06273255497217178, + -0.01497510727494955, + -0.035228434950113297, + 0.03420256823301315, + -0.010484021157026291, + 0.003782939398661256, + 0.0017109917243942618, + -0.011567232199013233, + 0.0009761201217770576, + -0.001717329490929842, + -0.01876521110534668, + 0.006413305178284645, + -0.05349894240498543, + 0.019866585731506348, + -0.012923098169267178, + -0.04195314645767212, + 0.026377227157354355, + -0.0017515614163130522, + -0.032649196684360504, + -0.0054644811898469925, + 0.019072137773036957, + 0.019164007157087326, + -0.03369647637009621, + 0.009574064053595066, + -0.017247918993234634, + 0.0221477672457695, + -0.007481019012629986, + 0.030590364709496498, + 0.017751427367329597, + 0.0003834344679489732, + 0.029011055827140808, + -0.030342385172843933, + 0.053640082478523254, + 0.02690938115119934, + 0.006855649407953024, + -0.026401685550808907, + 0.03541140258312225, + 0.03722492605447769, + 0.03268621861934662, + -0.011353940702974796, + -0.0333191379904747, + -0.0029521328397095203, + 0.037629809230566025, + -0.011497695930302143, + -0.0033465875312685966, + -0.016181886196136475, + -0.008878055959939957, + -0.02007991448044777, + 0.04325868934392929, + -0.041108276695013046, + 0.004931532312184572, + 0.049937136471271515, + 0.001151650445535779, + 0.007834750227630138, + -0.0011523974826559424, + -0.012353803962469101, + 0.020274819806218147, + 0.05168161168694496, + 0.009982282295823097, + -0.022887947037816048, + -0.040635623037815094, + 0.003705985378473997, + -0.03435128182172775, + 0.026925815269351006, + -0.01817365735769272, + 0.028342653065919876, + 0.018057534471154213, + 0.02693444862961769, + 0.0392894446849823, + 0.0394621416926384, + -0.026837730780243874, + 0.036415185779333115, + 0.009813109412789345, + -0.0085891243070364, + -0.018428025767207146, + -0.06115857511758804, + 0.05481398478150368, + -0.0010822850745171309, + 0.008540387265384197, + 0.02583259530365467, + 0.047645553946495056, + 0.0018862627912312746, + 0.01766219735145569, + -0.02863403968513012, + -0.007477732840925455, + 0.012965267524123192, + 0.010283213108778, + -0.019375819712877274, + 0.03140866011381149, + 0.037688031792640686, + -0.03746795281767845, + 0.03524516522884369, + 0.023768285289406776, + 0.01259262952953577, + 0.007764341309666634, + -0.03712417557835579, + -0.015068244189023972, + 0.03167691454291344, + -0.017130643129348755, + 0.013661425560712814, + 0.0211334191262722, + -0.0021812866907566786, + -0.020065130665898323, + 0.015728658065199852, + -0.01445395965129137, + -0.04127983748912811, + 0.04240817576646805, + -0.007720246911048889, + -0.01753235049545765, + -0.010787426494061947, + 0.009371318854391575, + 0.0418391227722168, + 0.0019265066366642714, + -0.06255704164505005, + -0.018158776685595512, + -0.03284585848450661, + 0.09075745195150375, + -0.044466279447078705 + ], + "start_index": 0, + "end_index": 141, + "token_count": 50, + "file": "salida_bucle_correcta.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "b88af312-98ab-5cc6-81b2-9740cb73ed51", + "_source": { + "text": "addParam(\"page\", p)\naddParam(\"size\", s)\nregistros = [\"u1\", \"u2\", \"u3\", \"u4\", \"u5\", \"u6\"]\noffset = int(p) * int(s)\nlimite = offset + int(s)\ncontador = 0\naddResult(offset)\naddResult(limite)\nstartLoop(i, 2, limite)\n actual = registros[int(i)]\n titulo = \"reg_%s\" % i\n AddvariableToJSON(titulo, actual, pagina_json)\nendLoop()\naddResult(pagina_json)", + "embedding": [ + 0.025230802595615387, + 0.002598363906145096, + -0.008210538886487484, + -0.08892378956079483, + 0.01557792816311121, + 0.03292573243379593, + 0.04243730753660202, + -0.027639737352728844, + -0.015470338054001331, + 0.024430997669696808, + 0.00017856352496892214, + -0.011286532506346703, + 0.0006818783585913479, + -0.006996167823672295, + -0.04884923994541168, + 0.032986849546432495, + -0.051741864532232285, + 0.007686654571443796, + -0.008539368398487568, + 0.01786373369395733, + -0.005266634747385979, + -0.004661924671381712, + 0.04711059480905533, + 0.010303995572030544, + 0.07122857868671417, + -0.01223321259021759, + 0.042542386800050735, + 0.019401101395487785, + 0.06391589343547821, + -0.010618536733090878, + 0.061298537999391556, + -0.043846890330314636, + -0.005042386241257191, + -0.0016394129488617182, + -0.0015158547321334481, + -0.010388758964836597, + -0.02316068299114704, + -0.027625299990177155, + -0.0028898315504193306, + 0.029414111748337746, + 0.02521739900112152, + 2.7599635359365493e-05, + -0.02175222337245941, + 0.013315045274794102, + -0.008810191415250301, + -0.07814332842826843, + 0.04156452789902687, + 0.013582831248641014, + -0.0013377134455367923, + 0.012896421365439892, + -0.009859655052423477, + 0.003473936580121517, + -0.00036958546843379736, + -0.0021421448327600956, + -0.012540179304778576, + -0.029088668525218964, + 0.007822099141776562, + -0.02943975292146206, + -0.026776542887091637, + 0.03443659842014313, + -0.05528175085783005, + -0.05506996810436249, + -0.07380153983831406, + -0.005558031611144543, + 0.011402765288949013, + -0.12247651070356369, + -0.011782651767134666, + 0.003417688887566328, + -0.02291765995323658, + 0.01367849949747324, + -0.0025465458165854216, + -0.06129368394613266, + -0.015422811731696129, + 0.054941575974226, + -0.038254860788583755, + 0.03126005455851555, + -0.00020255980780348182, + 0.033246010541915894, + 0.03681737929582596, + -0.0016174785559996963, + 0.0035716977436095476, + 0.03706737607717514, + -6.576433952432126e-05, + 0.009214523248374462, + 0.017811622470617294, + 0.027011273428797722, + -0.03956221044063568, + 0.0012827747268602252, + -0.03636683151125908, + -0.04140956699848175, + -0.04772820696234703, + 0.02248130924999714, + -0.06102714315056801, + 0.026309184730052948, + 0.0024552957620471716, + 0.0027585856150835752, + 0.03841182217001915, + -0.015585020184516907, + -0.019430071115493774, + -0.016025228425860405, + 0.006808286998420954, + 0.002779069123789668, + -0.06273534893989563, + 0.0037768688052892685, + -0.02823782153427601, + -0.0049281795509159565, + -0.07986246794462204, + 0.019524985924363136, + -0.012446182779967785, + -0.0006471535889431834, + -0.027525929734110832, + 0.029819656163454056, + 0.020561356097459793, + 0.05417073890566826, + -0.008994062431156635, + -0.06700105965137482, + 0.0064921253360807896, + -0.005014386493712664, + 0.021656444296240807, + -0.029004864394664764, + -0.011008626781404018, + -0.009818557649850845, + -0.021088767796754837, + -0.008019880391657352, + 0.02829807437956333, + 0.004199379123747349, + -0.00020413465972524136, + -0.008839162066578865, + 0.0182636771351099, + -0.032784897834062576, + -0.0004328788782004267, + 0.015897640958428383, + -0.011536047793924809, + 0.0275470782071352, + 0.01932673156261444, + 0.015761492773890495, + 0.003563243430107832, + -0.017180461436510086, + 0.036544401198625565, + 0.005009658634662628, + -0.02946109138429165, + -0.022056708112359047, + -0.017658716067671776, + 0.0054488470777869225, + -0.0040497747249901295, + 0.023354528471827507, + 0.02639090269804001, + 0.005279651843011379, + 0.012573431245982647, + 0.04918978363275528, + 7.599381933687255e-05, + -0.0032458575442433357, + -0.004170367028564215, + -0.017304802313447, + 0.02583550103008747, + 0.05792877450585365, + -0.0001165721332654357, + 0.019004667177796364, + 0.001009115600027144, + 0.016456060111522675, + 0.003135096747428179, + -0.029915450140833855, + 0.0012611033162102103, + -0.058287113904953, + -0.04123629629611969, + 0.007951266132295132, + 0.011601332575082779, + -0.015873899683356285, + -0.02077631466090679, + 0.06219380348920822, + 0.026636570692062378, + -0.01347450539469719, + 0.006475268863141537, + -0.023803111165761948, + -0.017906323075294495, + -0.027034249156713486, + -0.042322006076574326, + -0.03172557055950165, + 0.025645194575190544, + 0.02929130382835865, + -0.02316739782691002, + 0.01654524728655815, + 0.02295493893325329, + -7.40166797186248e-05, + 0.019199516624212265, + 0.05634978786110878, + 0.0023192870430648327, + -0.046089548617601395, + 0.01242046058177948, + -0.024741990491747856, + -0.006933786906301975, + 0.01416089665144682, + -0.07046923041343689, + -0.007832204923033714, + -0.03947093337774277, + -0.014274924993515015, + 0.005240879952907562, + 0.02604571543633938, + -0.0026417425833642483, + -0.005539129953831434, + -0.02863888442516327, + -0.006430244073271751, + 0.01603064313530922, + 0.00032272955286316574, + -0.005599019583314657, + 0.01303135510534048, + 0.00791369192302227, + 0.016671383753418922, + -0.009798509068787098, + 0.003929818980395794, + -0.015868984162807465, + 0.02287687174975872, + 0.026227721944451332, + 0.020355205982923508, + 0.0196116603910923, + -0.019125673919916153, + 0.015258031897246838, + 0.004083242733031511, + 0.01861933432519436, + 0.023552274331450462, + 0.011302164755761623, + 0.04358011111617088, + -0.06268879771232605, + -0.0038090269081294537, + -0.01867944560945034, + 0.02002307027578354, + -0.010242939926683903, + 0.02690845914185047, + 0.017665809020400047, + 0.020240724086761475, + -0.03137946501374245, + -0.03175775706768036, + 0.06987358629703522, + 0.028602758422493935, + 0.022541942074894905, + 0.019290445372462273, + -0.002154221059754491, + -0.010205565951764584, + 0.013461794704198837, + -0.02389778010547161, + -0.0007077883929014206, + -0.0212653037160635, + 0.028492270037531853, + -0.0018673647427931428, + -0.008082789368927479, + 0.021404171362519264, + -0.019199784845113754, + 0.01902410201728344, + -0.035136591643095016, + -0.0028622164390981197, + 0.050106048583984375, + 0.027747582644224167, + -0.0020876056514680386, + -0.020582087337970734, + -0.006254205945879221, + -0.007354802452027798, + 0.016497420147061348, + 0.008336720988154411, + 0.01238987222313881, + 0.01142309233546257, + 0.03694755584001541, + -0.02181260474026203, + 0.026012606918811798, + -0.010182615369558334, + -0.03356518596410751, + 0.013651564717292786, + -0.006932362448424101, + 0.023741338402032852, + -0.007312819827347994, + -0.014351299963891506, + 0.01142133492976427, + 0.015997186303138733, + -0.0029704265762120485, + -0.03286493197083473, + 0.019347762688994408, + 0.011990728788077831, + 0.0008049642783589661, + -0.10513148456811905, + 0.038131169974803925, + -0.03701161593198776, + -0.032944805920124054, + 0.009067598730325699, + -0.03826453164219856, + 0.020674066618084908, + -0.015890486538410187, + 0.031547848135232925, + 0.030099155381321907, + -0.00040522695053368807, + 0.0036091466899961233, + 0.026024457067251205, + 0.056282252073287964, + 0.04813200607895851, + -0.018661538138985634, + 0.03505227714776993, + -0.03179226815700531, + 0.015593783929944038, + 0.020908383652567863, + 0.013795394450426102, + 0.05320676416158676, + 0.010451274923980236, + 0.03369627520442009, + -0.04464035853743553, + -0.007396091241389513, + -0.004507212899625301, + -0.018347393721342087, + -0.014656981453299522, + 0.035607513040304184, + 0.011047156527638435, + 0.04780431091785431, + -0.027681315317749977, + 0.046745553612709045, + 0.001561992452479899, + 0.0077970982529222965, + -8.19940833025612e-05, + -0.004278923384845257, + 0.009448590688407421, + -0.07512462139129639, + -0.015741465613245964, + 0.04878067225217819, + -0.041293833404779434, + 0.0282785352319479, + -0.016080159693956375, + 4.1284376493422315e-05, + -0.024522701278328896, + -0.0029330190736800432, + 0.02520337700843811, + -0.022164536640048027, + 0.024555429816246033, + 0.025948159396648407, + 0.0019268366741016507, + 0.02352621592581272, + 0.04928170517086983, + 0.02137552946805954, + 0.0285913348197937, + 0.04337209090590477, + 0.008300536312162876, + 0.05745362490415573, + 0.013028779998421669, + -0.04642290994524956, + -0.05859389528632164, + -0.013294040225446224, + -0.001160439569503069, + 0.01521605160087347, + 0.0018453315133228898, + -0.016740228980779648, + -0.015907056629657745, + -0.036567263305187225, + -0.03946973383426666, + -0.01155451126396656, + 0.00241931714117527, + 0.039414677768945694, + -0.013805546797811985, + 0.013535362668335438, + 0.0066144829615950584, + -0.019049273803830147, + -0.007635065354406834, + -0.00817970559000969, + -0.008108689449727535, + -0.006472889333963394, + 0.05486417934298515, + -0.007958097383379936, + -0.0049783228896558285, + 0.06310241669416428, + 0.04168295860290527, + -0.010904294438660145, + -0.013392949476838112, + -0.04761728644371033, + 0.015522181987762451, + 0.07191567867994308, + -0.003916011191904545, + -0.026118380948901176, + -0.018777497112751007, + 0.0287285465747118, + 0.00965428352355957, + 0.017162181437015533, + 0.03968251496553421, + 0.05389603227376938, + -0.017746733501553535, + -0.025313083082437515, + 0.011481423862278461, + 0.0022855871357023716, + -0.0019257126841694117, + 0.015215829946100712, + -0.008155926130712032, + 0.006375649478286505, + -0.07361281663179398, + 0.025824053213000298, + -0.029530268162488937, + -0.004279394634068012, + 0.034970227628946304, + 0.0005715381703339517, + 0.006692993920296431, + 0.048593033105134964, + 0.013600497506558895, + 0.001729529700241983, + -0.023097936064004898, + -0.06732387840747833, + -0.017260801047086716, + 0.019000153988599777, + 0.007027633022516966, + -0.013812951743602753, + -0.007593543268740177, + -0.045568373054265976, + -0.02105148881673813, + 0.04944325610995293, + -0.004067170433700085, + 0.028262710198760033, + 0.05116848275065422, + -0.005107065197080374, + -0.011149932630360126, + 0.03584328666329384, + 0.008021167479455471, + 0.00031332168146036565, + -0.03398456424474716, + 0.021240413188934326, + 0.020349401980638504, + 0.0628565177321434, + -0.02400524728000164, + -0.0274795088917017, + -0.017986077815294266, + 0.04152970388531685, + -0.008296377025544643, + -0.046418555080890656, + 0.012102324515581131, + -0.0028264091815799475, + -0.014138254337012768, + -0.03750057891011238, + -0.04400886967778206, + 0.004537999164313078, + 0.008481641300022602, + 0.03267831727862358, + 0.0272139273583889, + 0.023763325065374374, + 0.018459664657711983, + -0.043602004647254944, + 0.04678358882665634, + 0.032170478254556656, + 0.035491783171892166, + 0.027951614931225777, + -0.024248449131846428, + 0.00547978188842535, + 0.03115999326109886, + -0.008588285185396671, + 0.025021160021424294, + -0.04093249887228012, + -0.012497572228312492, + -0.019720779731869698, + 0.05699753388762474, + -0.0200544074177742, + -0.02111188881099224, + 0.02873609960079193, + -0.052843738347291946, + -0.03842746466398239, + 0.009272534400224686, + 0.01075805351138115, + -0.04805624485015869, + 0.006723188329488039, + -0.005520191974937916, + -0.013697508722543716, + 0.0009611692512407899, + 0.04282829910516739, + 0.12206773459911346, + -0.027108527719974518, + -0.004732351750135422, + 0.050598353147506714, + -0.03549771010875702, + -0.004182850942015648, + 0.044581860303878784, + 0.07911380380392075, + -0.016162237152457237, + -0.005990616511553526, + -0.008455007337033749, + -0.010362486355006695, + -0.03279457241296768, + 0.045473795384168625, + -0.006048693787306547, + -0.03822144865989685, + 0.004834257531911135, + -0.0486992783844471, + -0.02647417224943638, + -0.023333394899964333, + -0.05006435140967369, + 0.021169573068618774, + -0.0015549162635579705, + 0.08316008746623993, + -0.039265599101781845, + -0.012874229811131954, + -0.03759431093931198, + -0.017010563984513283, + -0.011609351262450218, + 0.08552341163158417, + 0.06340213865041733, + 0.015044601634144783, + -0.022164905443787575, + 0.013037226162850857, + -0.042551107704639435, + -0.006629046052694321, + -0.029685307294130325, + -0.039586421102285385, + 0.007068675942718983, + 0.006516650319099426, + -0.05107244849205017, + 0.0021058362908661366, + 0.04232652112841606, + 0.013353228569030762, + -0.02677016705274582, + 0.0521509125828743, + -0.024816371500492096, + -0.03894808888435364, + 0.012340100482106209, + 0.046550020575523376, + 0.01421684492379427, + 0.010342638939619064, + 0.050530970096588135, + -0.05019857734441757, + 0.0133034223690629, + 0.029239414259791374, + -0.010266479104757309, + -0.030143557116389275, + 0.015379845164716244, + -0.02848806418478489, + -0.03235387057065964, + 0.03762555494904518, + -0.06057386472821236, + 0.021712135523557663, + 0.035405028611421585, + 0.053291693329811096, + -0.026887936517596245, + 0.04243847727775574, + -0.023950422182679176, + -0.006197906099259853, + 1.6653842976666056e-05, + -0.021247537806630135, + -0.03120146319270134, + 0.025743575766682625, + 0.04627700522542, + -0.017823783680796623, + -0.006476439069956541, + 0.005623475182801485, + 0.03869691863656044, + -0.01308874599635601, + -0.015210835263133049, + -0.057122401893138885, + -0.018471455201506615, + 0.0065847900696098804, + 0.024922503158450127, + 0.0018342416733503342, + 0.03977833688259125, + 0.02187242917716503, + 0.016185425221920013, + 0.026174718514084816, + -0.02518211118876934, + 0.019540108740329742, + -0.03759326413273811, + 0.04420345276594162, + -0.043081048876047134, + 0.06278892606496811, + 0.02170109935104847, + 0.034127067774534225, + 0.020557092502713203, + 0.003753173863515258, + -0.029774516820907593, + 0.05104783549904823, + -0.01575629785656929, + 0.04465198516845703, + -0.05831922963261604, + -0.006329505238682032, + 0.01726265251636505, + -0.0028501772321760654, + 0.0018122581532225013, + 0.04224598780274391, + 0.00524191465228796, + 0.003731474746018648, + -0.00984097458422184, + 0.0244554802775383, + -0.03116004168987274, + 0.02188347466289997, + -0.008987539447844028, + 0.010646426118910313, + -0.03557403013110161, + 0.051562629640102386, + -0.001963020535185933, + 0.02967289835214615, + 0.0630449429154396, + 0.0011622721794992685, + 0.02006210945546627, + 0.0673447772860527, + -0.005287663545459509, + 0.018239842727780342, + -0.07457412034273148, + 0.004906722344458103, + -0.06128960847854614, + 0.047501835972070694, + -0.005145431030541658, + 0.02788507752120495, + 0.05601576715707779, + -0.05507730320096016, + 0.018193239346146584, + -0.043087564408779144, + -0.020155202597379684, + 0.03733871132135391, + 0.07724690437316895, + -0.002340857172384858, + -0.01590956375002861, + -0.006595691666007042, + -0.0016001668991521, + -0.03963328152894974, + 0.03143066167831421, + -0.008886441588401794, + -0.022607460618019104, + -0.02190152369439602, + 0.00413883151486516, + -0.010999400168657303, + 0.046239424496889114, + -0.001961142523214221, + -0.002047403948381543, + 0.001058428199030459, + 0.06269177794456482, + -0.018261142075061798, + -0.028784021735191345, + -0.00481580663472414, + 0.0011835664045065641, + 0.012371639721095562, + 0.06680189073085785, + 0.008071694523096085, + 0.001229537301696837, + -0.022026192396879196, + 0.051984962075948715, + 0.008046693168580532, + -0.04776851460337639, + -0.027426589280366898, + -0.018466895446181297, + -0.06143421307206154, + 0.00028333262889645994, + 0.005975937936455011, + -0.008947736583650112, + -0.007563201244920492, + 0.01710493303835392, + 0.0210262443870306, + -0.0019739908166229725, + 0.00455540930852294, + 0.013424343429505825, + 0.00200838316231966, + -0.04583948105573654, + -0.01733061857521534, + 0.003039697417989373, + 0.002477050758898258, + 0.007139814551919699, + 0.03671855852007866, + -0.044709742069244385, + 0.047451626509428024, + 0.025804266333580017, + 0.006613751873373985, + 0.0015151967527344823, + -0.003911889158189297, + -0.02279268391430378, + -0.02730868011713028, + 0.027550162747502327, + 0.041464630514383316, + 0.017468556761741638, + 0.003700699657201767, + 0.06443353742361069, + 0.01443052850663662, + -0.04994551092386246, + -0.03248482942581177, + 0.017169825732707977, + 0.07235369086265564, + 0.05499614402651787, + 0.05631917715072632, + -0.023435425013303757, + -0.02671087346971035, + -0.017808537930250168, + 0.01894502528011799, + -0.04389900341629982, + 0.0006883721216581762, + 0.02736535854637623, + 0.03163262456655502, + -0.0623914934694767, + -0.03672216087579727, + -0.01586615853011608, + -0.026573851704597473, + 0.010851303115487099, + 0.008342270739376545, + -0.050954628735780716, + -0.01495757419615984, + -0.0227105300873518, + -0.08152282983064651, + 0.013031992129981518, + 0.03023688867688179, + -0.0006074120756238699, + -0.024172335863113403, + 0.027306895703077316, + 0.05030117183923721, + -0.0013574155746027827, + 0.03300732746720314, + 0.014588559977710247, + -0.04688901826739311, + 0.02878185361623764, + 0.08246604353189468, + -0.01977284997701645, + -0.016474995762109756, + 0.030359450727701187, + -0.020927883684635162, + -0.016550498083233833, + 0.019720161333680153, + -0.020218804478645325, + -0.05689245089888573, + -0.04040468856692314, + -0.0062075587920844555, + -0.03161559998989105, + -0.008119240403175354, + -0.05842294171452522, + -0.043128591030836105, + 0.001418253406882286, + 0.013176902197301388, + -0.03980911895632744, + -0.02354408986866474, + 0.01163551677018404, + -0.0086668711155653, + -0.02129945158958435, + 0.0038532998878508806, + -0.0041274563409388065, + -0.017152074724435806, + 0.011021161451935768, + 0.008596375584602356, + -0.04544062167406082, + 0.00513056106865406, + 0.004661054350435734, + -0.024368643760681152, + 0.050658322870731354, + 0.012767953798174858, + 0.016583308577537537, + 0.024146633222699165, + -0.022160546854138374, + 0.022350480780005455, + -0.04510214179754257, + 0.039323754608631134, + -0.08693118393421173, + -0.007663064636290073, + 0.033004168421030045, + -0.015953166410326958, + 0.027862323448061943, + -0.027218297123908997, + -0.013791520148515701, + -0.03444783389568329, + 0.027773724868893623, + 0.01137429941445589, + -0.05493940785527229, + 0.00654382212087512, + -0.026954133063554764, + -0.043592531234025955, + 0.009273209609091282, + 0.013046612031757832, + 0.07128747552633286, + 0.066602922976017, + -0.01015838049352169, + 0.012839727103710175, + 0.052429571747779846, + -0.003217762103304267, + 0.02275252714753151, + -0.012968704104423523, + -0.0576249323785305, + -0.007138645276427269, + 0.014290140941739082, + 0.012126132845878601, + -0.010990544222295284, + 0.014285026118159294, + 0.003382472787052393, + 0.019087519496679306, + -0.018183229491114616, + 0.0016954876482486725, + 0.01834673434495926, + -0.005315679591149092, + 0.03379780799150467, + 0.008500218391418457, + 0.016010668128728867, + -0.016895242035388947, + -0.01742607355117798, + -0.015468954108655453, + -0.023882374167442322, + 0.025004884228110313, + -0.0495058074593544, + 0.012757898308336735, + -0.0075370329432189465, + 0.010598501190543175, + 0.011738043278455734, + 0.026647919788956642, + 0.03355586901307106, + -0.017142433673143387, + -0.0317605659365654, + -0.005388427060097456, + 0.03746259585022926, + 0.04404831305146217, + 0.0021933859679847956, + -0.02049426920711994, + 0.037427328526973724, + 0.05678918585181236, + 0.03125300630927086, + 0.027883950620889664, + 0.01382781658321619, + -0.024067122489213943, + 0.007878760807216167, + -0.017694620415568352, + -0.010972099378705025, + 0.06434965133666992, + -0.05149480327963829, + -0.00901156198233366, + 0.02695929817855358, + -0.010948180221021175, + -0.0057753585278987885, + 0.022279085591435432, + -0.0038303963374346495, + -0.001680002547800541, + 0.01047568954527378, + -0.012458537705242634, + 0.015600075013935566, + -0.04063746705651283, + -0.04905024915933609, + -0.029578901827335358, + -0.05883150175213814, + -0.015475829131901264, + 0.00897312257438898, + 0.03757248818874359, + -0.02752380631864071, + -0.038770731538534164, + 0.0181956198066473, + 0.06675048172473907, + -0.022995222359895706, + -0.05324912071228027, + 0.01052479725331068, + -0.011361961252987385, + 0.011439362540841103, + -0.009272851049900055, + -0.02874133363366127, + 0.04115784540772438, + -0.048847224563360214, + 0.02774077281355858, + -0.03382158279418945, + -0.0010940979700535536, + -0.0037718177773058414, + 0.05733371153473854, + 0.046051766723394394, + 0.01918300986289978, + 0.00953298807144165, + -0.020786214619874954, + 0.019785283133387566, + -0.053159285336732864, + 0.010348064824938774, + -0.05367925763130188, + -0.028914712369441986, + 0.019059769809246063, + -0.034428298473358154, + -0.03266289830207825, + -0.03911633417010307, + -0.013872314244508743, + 0.025918321684002876, + -0.029779745265841484, + -0.005057256668806076, + -0.03918842971324921, + -0.014253256842494011, + -0.07167399674654007, + -0.01337908674031496, + -0.013705933466553688, + 0.002697000280022621, + 0.035338591784238815, + 0.10855530202388763, + -0.010730132460594177, + 0.018159575760364532, + 0.06366430222988129, + -0.02591708116233349, + 0.049661390483379364, + -0.0019110952271148562, + 0.02786182425916195, + -0.05168013647198677, + -0.04511819779872894, + -0.011403289623558521, + -0.04476257786154747, + 0.050612617284059525, + -0.021489428356289864, + -0.00831595715135336, + -0.05882043391466141, + 0.018316349014639854, + 0.008372090756893158, + 0.0062088510021567345, + 0.003391871927306056, + -0.00092494604177773, + 0.0099262660369277, + -0.008291780017316341, + 0.04630663990974426, + -0.013447963632643223, + -0.008924780413508415, + -0.024318400770425797, + -0.0001998189400183037, + 0.03364793583750725, + -0.05329591780900955, + -0.021066399291157722, + 0.05040447413921356, + 0.03858886659145355, + -0.011693342588841915, + -0.007022918201982975, + 0.009150233119726181, + -0.018456969410181046, + 0.011588416993618011, + -0.032395146787166595, + 0.005565133411437273, + -0.03659498691558838, + 0.07247026264667511, + -0.0192139632999897, + -0.005964150186628103, + 0.03803509473800659, + -0.05437488853931427, + 0.014632378704845905, + 0.0006464563775807619, + -0.038949139416217804, + 0.04108778387308121, + 0.015676584094762802, + -0.02580716647207737, + -0.010595696046948433, + -0.001932443119585514, + 0.02484201267361641, + -0.05326198786497116, + -0.04047238081693649, + 0.01584482006728649, + -0.016916930675506592, + 0.02699671871960163, + -0.007652758155018091, + 0.007840601727366447, + 0.03758470341563225, + 0.01283495407551527, + 0.025629432871937752, + -0.003877757815644145, + 0.05034659057855606, + 0.00638517877086997, + 0.04021574929356575, + -0.048330944031476974, + 0.016749069094657898, + 0.01162452157586813, + 0.007852666079998016, + 0.04613382741808891, + -0.03016706556081772, + -0.014979654923081398, + -0.01789419911801815, + -0.003391777165234089, + 0.041636109352111816, + 0.02226508967578411, + 0.004135958384722471, + -0.023147128522396088, + 0.0024814484640955925, + 0.052978288382291794, + 0.04593649506568909, + -0.034547995775938034, + -0.023838575929403305, + -0.026045607402920723, + -0.0015803484711796045, + 0.020776016637682915, + 0.01335696317255497, + -0.005782050546258688, + 0.01226117368787527, + -0.0011467835865914822, + -0.012194475159049034, + -0.01910402998328209, + -0.016819771379232407, + 0.0011977499816566706, + 0.005706379655748606, + 0.032631464302539825, + -0.06611493229866028, + 0.030106157064437866, + -0.037534452974796295, + -0.028582362458109856, + -0.006477721035480499, + -0.0013902923092246056, + -0.00828439462929964, + 0.06819836795330048, + 0.058702241629362106, + -0.020259568467736244, + 0.03252893686294556, + -0.011744208633899689, + -0.006684130989015102, + -0.009185463190078735, + -0.020947424694895744, + -0.048795364797115326, + -0.010726856999099255, + 0.013904513791203499, + 0.012251948937773705, + -0.013209323398768902, + -0.01986667513847351, + 0.025466525927186012, + 0.0024849362671375275, + 0.016947345808148384, + -0.027036257088184357, + 0.022717133164405823, + -0.0010974131291732192, + 0.0008723926148377359, + -0.03611224889755249, + 0.007487901020795107, + 0.07581529021263123, + 0.005620991345494986, + 0.012147200293838978, + -0.02939145639538765, + -0.007442771457135677, + -0.009799590334296227, + -0.022710947319865227, + -0.016228919848799706, + 0.014276163652539253, + 0.022564278915524483, + 0.017628973349928856, + 0.04845146834850311, + 0.053843338042497635, + -0.014639102853834629, + 0.004327031318098307, + 0.01305377297103405, + -0.016563264653086662, + 0.11535540968179703, + -0.008115793578326702, + 0.008492564782500267, + 0.038733091205358505, + -0.028386155143380165, + 0.009012053720653057, + -0.02361387573182583, + -0.0960903912782669, + -0.013066266663372517, + -0.007176180370151997, + 0.10026440024375916, + -0.005268024746328592 + ], + "start_index": 0, + "end_index": 352, + "token_count": 122, + "file": "paginacion_dinamica_recursos.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "647d010a-5516-5ffc-8dbd-f7f55c91291d", + "_source": { + "text": "getDateTime(\"\", 86400, \"UTC\", expira)\naddResult(expira)", + "embedding": [ + -0.0056954496540129185, + 0.05553346127271652, + -0.010945063084363937, + -0.022067876532673836, + 0.07787710428237915, + -0.05204084515571594, + -0.01003909483551979, + 0.039834924042224884, + -0.03585847094655037, + -0.026032116264104843, + -0.013719222508370876, + -0.02162662334740162, + -0.014939162880182266, + -0.011347968131303787, + -0.045155420899391174, + 0.0760926902294159, + -0.016244100406765938, + -0.05873950198292732, + -0.0076954299584031105, + 0.04201056435704231, + 0.04655633866786957, + 0.041099730879068375, + -0.011271771043539047, + 0.02911810763180256, + 0.058936022222042084, + 0.02258148603141308, + -0.03428878262639046, + 0.06275475770235062, + 0.08896071463823318, + -0.061150383204221725, + 0.007161085493862629, + 0.013713384978473186, + -0.08024519681930542, + -0.018384508788585663, + -0.013939425349235535, + -0.016634609550237656, + 0.004771246109157801, + 0.011535018682479858, + 0.013505221344530582, + 0.005535339470952749, + -0.015732236206531525, + -0.03421146050095558, + 0.08364389091730118, + 0.013757921755313873, + 0.010928064584732056, + 0.0046746376901865005, + 0.003380563110113144, + 0.025939030572772026, + 0.015165413729846478, + -0.007991156540811062, + -0.006339751183986664, + 0.05250614881515503, + -0.028132915496826172, + 0.016843242570757866, + 0.03473066911101341, + -0.07893403619527817, + 0.013327531516551971, + -0.008126736618578434, + 0.00710189389064908, + -0.03272533044219017, + -0.0474097765982151, + 0.042085256427526474, + 0.028900427743792534, + -0.02776360884308815, + 0.005270816385746002, + 0.006018080748617649, + 0.019122304394841194, + -0.004483264870941639, + -0.03263203799724579, + 0.013905638828873634, + 0.0052230400033295155, + -0.05605890229344368, + -0.008060685358941555, + 0.03254641592502594, + 0.008721408434212208, + -0.029329724609851837, + 0.013011625967919827, + -0.034038107842206955, + 0.02119833417236805, + -0.007250337395817041, + 0.034976471215486526, + 0.030574360862374306, + 0.0030345625709742308, + 0.02243080548942089, + -0.006053372751921415, + 0.019993867725133896, + -0.002194305881857872, + -0.014506268315017223, + -0.022457068786025047, + -0.023755261674523354, + -0.017494920641183853, + 0.02603861689567566, + -0.07724417001008987, + 0.02466324158012867, + -0.050723493099212646, + 0.027163896709680557, + -0.010910444892942905, + 0.06984329223632812, + -0.005416857078671455, + 0.0061656152829527855, + -0.007459430955350399, + -0.019718823954463005, + 0.01329624280333519, + -0.025429461151361465, + 0.02175377681851387, + 0.05493301525712013, + -0.07626044750213623, + -0.012394877150654793, + -0.055835336446762085, + -0.057853564620018005, + -0.036246128380298615, + 0.04797569289803505, + 0.016824571415781975, + 0.029622351750731468, + -0.0038777790032327175, + -0.0052302503027021885, + -0.016450034454464912, + 0.0038616929668933153, + 0.012989518232643604, + -0.019367750734090805, + 0.0017845571273937821, + 0.045452214777469635, + 0.009327610023319721, + -0.03722867742180824, + 0.04558687284588814, + -0.013678248971700668, + -0.014816158451139927, + -0.010891159065067768, + 0.0236612930893898, + -0.016402574256062508, + 0.005014487076550722, + 0.01283488143235445, + -0.022480500862002373, + -0.08353401720523834, + 0.01827484369277954, + 0.01947525329887867, + 0.023447148501873016, + -0.019029583781957626, + 0.03245531767606735, + -0.018375597894191742, + -0.037973739206790924, + -0.052412018179893494, + -0.05205921828746796, + -0.020006457343697548, + -0.011651979759335518, + 0.02071760781109333, + -0.02230214700102806, + -0.005206113215535879, + 0.02603285014629364, + 0.07886036485433578, + 0.020242750644683838, + -0.004033405799418688, + -0.04558546841144562, + -0.005523344036191702, + -0.013823083601891994, + 0.014418726786971092, + 0.004653069656342268, + -0.013322113081812859, + 0.0559597946703434, + 0.02446255274116993, + 0.01085628755390644, + -0.028404563665390015, + 0.0028889800887554884, + -0.038654062896966934, + 0.0013459499459713697, + 0.03667702153325081, + 0.01684289425611496, + -0.037699420005083084, + -0.0578346848487854, + -0.042685769498348236, + -0.019750608131289482, + 0.013822349719703197, + -7.778978761052713e-05, + 0.004066789988428354, + -0.002972722053527832, + -0.032216913998126984, + -0.031206462532281876, + -0.015195316635072231, + 0.01103695947676897, + -0.016975408419966698, + -0.0017445508856326342, + -0.01822306029498577, + 0.007513320539146662, + 0.02200896479189396, + -0.01206160243600607, + -0.030694058164954185, + -0.02108135260641575, + -0.02741960622370243, + -0.028524158522486687, + 0.0075433989986777306, + -0.03248133137822151, + -0.03646108880639076, + -0.018230710178613663, + -0.031224004924297333, + 0.00587652251124382, + -0.031684573739767075, + 0.0033222560305148363, + 0.015151613391935825, + -0.028316127136349678, + 0.005493068601936102, + 0.04440676048398018, + -0.012464992702007294, + -0.001216747215948999, + 0.01235996000468731, + 0.0007801720057614148, + -0.0026797682512551546, + 0.012127626687288284, + 0.008296585641801357, + -0.01898432895541191, + -0.015349841676652431, + -0.04707768186926842, + 0.020372549071907997, + -0.009507252834737301, + 0.04418075084686279, + -0.02329777181148529, + 0.03444906696677208, + 0.033806443214416504, + 0.03728055581450462, + 0.011190042831003666, + 0.01737482286989689, + 0.02981482446193695, + 0.04208528250455856, + -0.001629504607990384, + -0.012026257812976837, + 0.010582011193037033, + -0.05014757439494133, + 0.006699723657220602, + 0.021768806502223015, + 0.009827984496951103, + 0.0007573723560199142, + 0.021986357867717743, + -0.010870587080717087, + -0.04238039255142212, + -0.010801849886775017, + 0.035114407539367676, + -0.017767637968063354, + 0.01549584325402975, + 0.051710691303014755, + 0.11318470537662506, + -0.020219672471284866, + 0.05980018153786659, + 0.006038988940417767, + 0.02844245545566082, + 0.03216945752501488, + -0.040776804089546204, + 0.04414505511522293, + -0.00786265917122364, + 0.0036246804520487785, + -0.038643136620521545, + -0.016769692301750183, + 0.03077845647931099, + 0.014218194410204887, + -0.025208037346601486, + -0.0318402536213398, + 0.0337117575109005, + 0.01657259277999401, + -0.03393382206559181, + 0.02489873394370079, + 0.0034364734310656786, + 0.012061714194715023, + 0.01861143857240677, + -0.0422983393073082, + -0.01918114349246025, + -0.006247199140489101, + -0.011664328165352345, + -0.003728894516825676, + -0.01964404620230198, + -0.005999624729156494, + -0.03952402621507645, + -0.011092167347669601, + 0.014954270794987679, + 0.022723199799656868, + -0.021441327407956123, + -0.017996352165937424, + 0.009558781050145626, + 0.003809093264862895, + 0.006806706544011831, + -0.04927983507514, + -0.007100698538124561, + 0.052594393491744995, + 0.048897046595811844, + -0.010300570167601109, + -0.05595014616847038, + -0.027924593538045883, + -0.006594835314899683, + 0.038730189204216, + 0.02283025160431862, + 0.05128462612628937, + 0.0037104475777596235, + 0.006621857173740864, + 0.014081576839089394, + 0.04274902492761612, + -0.0743786171078682, + 0.016750572249293327, + 0.02546670287847519, + -0.038300443440675735, + -0.021547866985201836, + 0.07337213307619095, + 0.042007170617580414, + -0.014609592035412788, + 0.012215254828333855, + 0.018307164311408997, + -0.016136428341269493, + 0.06161358579993248, + 0.02033195272088051, + -0.007182939909398556, + 0.03466664254665375, + -0.017127634957432747, + 0.01011771522462368, + -0.0005036318325437605, + 0.03539353981614113, + -0.014973697252571583, + -0.0007375672576017678, + -0.0018685441464185715, + -0.0011244489578530192, + 0.007514989003539085, + -0.03983326628804207, + 0.011796889826655388, + -0.0050525907427072525, + -0.0003715885686688125, + -0.03132243454456329, + -0.05638296902179718, + 0.006942195817828178, + -0.011690734885632992, + 0.02106603980064392, + 0.026974018663167953, + 0.02940126322209835, + 0.00305132451467216, + -0.003699112217873335, + 0.06992005556821823, + 0.04148414358496666, + 0.004237427841871977, + 0.0540376678109169, + 0.004243438597768545, + 0.013573178090155125, + 0.06554783880710602, + 0.01996641233563423, + -0.007835009135305882, + -0.026360537856817245, + 0.015864266082644463, + -0.022768424823880196, + 0.0438716746866703, + -0.029487594962120056, + -0.02693345583975315, + 0.004458357114344835, + 0.0216677226126194, + 0.025243598967790604, + 0.024144429713487625, + 0.001464342582039535, + 0.048116035759449005, + 0.012317102402448654, + 0.024816906079649925, + 0.0275547094643116, + -0.01799815148115158, + -0.025582725182175636, + -0.020456798374652863, + -0.012858524918556213, + 0.018884336575865746, + -0.01653863489627838, + -0.015946313738822937, + -0.05161549150943756, + -0.019303087145090103, + 0.04140814393758774, + -0.030865272507071495, + 0.015364404767751694, + -0.05444110184907913, + 0.03236287832260132, + -0.019840894266963005, + 0.00892933551222086, + -0.05580750107765198, + -0.05697460100054741, + 0.029191888868808746, + -0.02732062339782715, + -0.00527216587215662, + 0.028008563444018364, + 0.04307807236909866, + -0.010816002264618874, + -0.02779269404709339, + 0.015921760350465775, + 0.020396875217556953, + 0.011948823928833008, + 0.03057054802775383, + -0.006761572323739529, + 0.004082621540874243, + -0.05800781771540642, + -0.02011430636048317, + 0.024079330265522003, + -0.05366183817386627, + 0.03432111814618111, + -0.045976292341947556, + 0.01509068626910448, + 0.06776893883943558, + 0.020344329997897148, + 0.01330069825053215, + 0.008073799312114716, + 0.020119037479162216, + -0.09054656326770782, + 0.0065512037836015224, + 0.021259361878037453, + -0.006601681932806969, + 0.09074801206588745, + 0.042353205382823944, + 0.0006283213151618838, + -0.007087987847626209, + 0.0024494852405041456, + 0.01000198908150196, + -0.008280920796096325, + -0.025852715596556664, + 0.03677115589380264, + 0.015374640934169292, + 0.051701027899980545, + 0.03449545055627823, + 0.027721475809812546, + -0.0020233828108757734, + 0.011791283264756203, + 0.012785553000867367, + 0.0282448623329401, + -0.01431250385940075, + 0.014136994257569313, + 0.029959628358483315, + 0.06761284917593002, + 0.02373446896672249, + -0.03939252346754074, + -0.02518896572291851, + 0.05106990411877632, + -0.015305927023291588, + -0.0015810541808605194, + -0.04836568236351013, + -0.037306901067495346, + 0.09942413121461868, + -0.029343437403440475, + -0.03757332265377045, + -0.006378595717251301, + 0.037533096969127655, + -0.02008671872317791, + -0.029759764671325684, + 0.004954516887664795, + 0.035665109753608704, + -0.042645279318094254, + 0.030606744810938835, + -0.008862287737429142, + 0.06926301121711731, + -0.04416893422603607, + -0.03178192675113678, + -0.028990693390369415, + -0.030515354126691818, + -0.024937057867646217, + 0.0031345125753432512, + -0.026090772822499275, + -0.023405903950333595, + -0.022996550425887108, + -0.035088881850242615, + 0.040143635123968124, + 0.005547504872083664, + 0.012519086711108685, + -0.03144706040620804, + 0.032040055841207504, + -0.021776072680950165, + -0.007851582951843739, + 0.01570139452815056, + -0.009103118441998959, + 0.09580659866333008, + 0.011650950647890568, + -0.0640382468700409, + 0.03684156760573387, + 0.05425859987735748, + -0.0017580408602952957, + -0.004238935653120279, + 0.017136238515377045, + -0.01069674827158451, + 0.017141535878181458, + 0.042402949184179306, + -0.06430872529745102, + 0.01385954674333334, + 0.011428289115428925, + 0.008474081754684448, + -0.01217681635171175, + 0.03481302037835121, + 0.031483445316553116, + 0.010093560442328453, + 0.017500486224889755, + -0.046845413744449615, + 0.0029786014929413795, + -0.06876097619533539, + 0.05905675143003464, + -0.030554741621017456, + 0.015430302359163761, + -0.023510200902819633, + -0.052593912929296494, + -0.002477983944118023, + -0.02573218196630478, + 0.021708976477384567, + -0.015052173286676407, + -0.06789124757051468, + -0.026492124423384666, + 0.027661677449941635, + 0.003391190432012081, + -0.04866126552224159, + -0.04365382716059685, + 0.0024513425305485725, + 0.01021617278456688, + -0.003290987340733409, + -0.012331118807196617, + -0.04355189576745033, + -0.004147441126406193, + -0.0235219094902277, + 0.033420901745557785, + -0.03346661478281021, + 0.017219703644514084, + 0.024303819984197617, + 0.030070437118411064, + -0.006494544912129641, + -0.01027005072683096, + 0.023964693769812584, + -0.06408706307411194, + -0.01560200471431017, + 0.003790202084928751, + 0.05480183660984039, + -0.04920831695199013, + 0.018180228769779205, + 0.03628596290946007, + -0.02548108622431755, + 0.02712096832692623, + 0.025750508531928062, + -0.005564417224377394, + 0.02864026464521885, + 0.027873029932379723, + -0.009340448305010796, + 0.014847930520772934, + 0.04079708084464073, + 0.04870634526014328, + 0.0016512364381924272, + -0.013558879494667053, + 0.02782062441110611, + -0.007007792126387358, + 0.03080195002257824, + 0.010576673783361912, + -0.018426913768053055, + 0.008549664169549942, + 0.008634177967905998, + 0.049246128648519516, + 0.004787284415215254, + -0.0007596684154123068, + -0.01639408804476261, + 0.029516620561480522, + -0.005586516112089157, + 0.036243684589862823, + -0.00037647169665433466, + -0.0005346342804841697, + 0.039788808673620224, + 0.04316171631217003, + -0.001985344337299466, + 0.027411095798015594, + 0.050875741988420486, + 0.011179167777299881, + -0.04281469061970711, + 0.008951191790401936, + 0.05421824753284454, + 0.018254896625876427, + -0.03151692450046539, + -0.03185005858540535, + 0.016750961542129517, + -0.007944871671497822, + 0.00964876264333725, + 0.03468501567840576, + -0.02420138567686081, + 0.008961143903434277, + 0.006014636717736721, + 0.025608336552977562, + -0.004063277039676905, + 0.033036161214113235, + -0.06656841188669205, + -0.05216589197516441, + 0.04320228099822998, + -0.011940755881369114, + -0.014783428981900215, + -0.017510894685983658, + 0.02624651975929737, + 0.055357493460178375, + -0.010448900982737541, + 0.05306409299373627, + 0.00509690772742033, + 0.0028765506576746702, + -0.0416346937417984, + -0.01351877860724926, + -0.009751456789672375, + 0.06405024975538254, + 0.014571749605238438, + 0.017492081969976425, + -0.0066196308471262455, + -0.04268469661474228, + -0.04345995560288429, + -0.008837005123496056, + 0.05715532600879669, + 0.04252287372946739, + -0.006307899486273527, + -0.045194439589977264, + -0.008674334734678268, + -0.018076952546834946, + -0.05153006687760353, + 0.0029795796144753695, + 0.00455475552007556, + 0.0038275355473160744, + -0.035659875720739365, + -0.024555407464504242, + -0.053177040070295334, + -0.030565835535526276, + 0.02845670096576214, + -0.01824445277452469, + 0.03479164466261864, + 0.0034831922966986895, + -0.0050790924578905106, + -0.06278840452432632, + -0.0331425704061985, + 0.0029016146436333656, + -0.029612811282277107, + -0.015542748384177685, + 0.008840135298669338, + 0.009930222295224667, + -0.05528884008526802, + -0.002800305373966694, + 0.02153371274471283, + 0.01862252503633499, + 0.03888624161481857, + 0.0036655794829130173, + 0.0422530397772789, + -0.03413104638457298, + -0.06461703032255173, + -0.01778632216155529, + -0.013705624267458916, + -0.05214004963636398, + -0.0338134691119194, + 0.008366521447896957, + -0.009309367276728153, + 0.029724182561039925, + 0.014738233759999275, + 0.020431051030755043, + -0.002177187241613865, + 0.0027892275247722864, + 0.007636696565896273, + 0.035552892833948135, + 0.022559305652976036, + 0.06501517444849014, + 0.002238723449409008, + 0.0065338341519236565, + 0.0014517221134155989, + -0.01539609581232071, + 0.0435316227376461, + 0.05476592853665352, + -0.002558579668402672, + 0.0031229970045387745, + -0.037088543176651, + 0.03304722532629967, + -0.0007186272996477783, + -0.0248798169195652, + -0.02186184749007225, + -0.05210592970252037, + 0.04072032496333122, + 0.020205408334732056, + -0.026327507570385933, + -0.015224325470626354, + -0.0685611143708229, + 0.01968478225171566, + -0.021178187802433968, + -0.06525649130344391, + -0.007326940074563026, + 0.04623612388968468, + -0.026080820709466934, + 0.02490069717168808, + -0.04533118009567261, + -0.016051199287176132, + 0.001963833114132285, + 0.006184619385749102, + -0.002690002089366317, + 0.008305535651743412, + -0.008676365949213505, + -0.02615981735289097, + 0.025398680940270424, + -0.03658677265048027, + -0.00971148256212473, + 0.01223005447536707, + -0.006042433436959982, + -0.011465874500572681, + -0.04660840332508087, + -0.04551991820335388, + -0.01398071926087141, + -0.05614481493830681, + -0.026898151263594627, + -0.0072192782536149025, + -0.01116185076534748, + 0.005780035629868507, + -0.02219454012811184, + -0.002715600887313485, + 0.0029956530779600143, + -0.03288378566503525, + 0.01296309381723404, + 0.004480179399251938, + -0.023339323699474335, + -0.02146005444228649, + 0.0051998961716890335, + 0.012561777606606483, + 0.0018408420728519559, + -0.027766134589910507, + 0.0392148531973362, + -0.004531837068498135, + -0.02497006393969059, + -0.06057965010404587, + 0.03848101943731308, + -0.05383835732936859, + -0.01668534055352211, + 0.05700395256280899, + 0.006995629984885454, + -0.01579168625175953, + -0.04111240804195404, + 0.001383189344778657, + 0.014554642140865326, + -0.02863684669137001, + -0.04392882063984871, + -0.0045127542689442635, + -0.025613155215978622, + -0.0167393796145916, + -0.03205682337284088, + 0.04179148003458977, + 0.04947754740715027, + -0.0526379756629467, + -0.028724368661642075, + -0.030602723360061646, + 0.028261033818125725, + -0.012671015225350857, + -0.028572218492627144, + -0.005937164183706045, + -0.0686788558959961, + -0.012306605465710163, + -0.010439584031701088, + 0.003643973730504513, + 0.009663492441177368, + 0.047819606959819794, + 0.003984813578426838, + 0.038078371435403824, + -0.0017595042008906603, + 0.013912225142121315, + -0.01852896623313427, + -0.026951253414154053, + 0.03357937932014465, + 0.01406027376651764, + -0.020797157660126686, + -0.012687833048403263, + 0.0018069461220875382, + 0.026204772293567657, + 0.024742644280195236, + 0.00588873028755188, + -0.017705541104078293, + 0.049115851521492004, + 0.02380933240056038, + -0.016618631780147552, + -0.0063280281610786915, + 0.02043781988322735, + 0.014813057146966457, + 0.031992051750421524, + 0.004722166806459427, + -0.011777565814554691, + -0.06381206214427948, + 0.02449505403637886, + 0.006717934273183346, + 0.04411232843995094, + 0.020222922787070274, + -0.00400598393753171, + -0.04421898350119591, + -0.021767133846879005, + 0.026513859629631042, + 0.005041391123086214, + -0.02562643773853779, + -0.03147996962070465, + 0.025039711967110634, + -0.045527104288339615, + 0.030015194788575172, + 0.02603789232671261, + -0.01705203391611576, + -0.007316961884498596, + 0.016292370855808258, + 0.031994521617889404, + -0.054086364805698395, + 0.02584761194884777, + 0.07109827548265457, + -0.039154134690761566, + 0.033687423914670944, + 0.013336664997041225, + 0.029392914846539497, + -0.016554133966565132, + 0.029766960069537163, + 0.02837311290204525, + 0.004514731932431459, + 0.007013389375060797, + 0.03318358212709427, + -0.03408108651638031, + 0.03377562761306763, + -0.03404368832707405, + 0.010464669205248356, + -0.020313560962677002, + 0.04289991781115532, + 0.004742038436233997, + 0.028058160096406937, + -0.03429063409566879, + 0.009283718653023243, + 0.08527965098619461, + -0.011038798838853836, + -0.04291430860757828, + -0.034933850169181824, + 0.020186517387628555, + -0.009800576604902744, + 0.021182579919695854, + 0.02691645175218582, + 0.01046299934387207, + 0.038419775664806366, + 0.007754456251859665, + 0.07965471595525742, + -0.04326682537794113, + -0.00013450851838570088, + -0.03767375648021698, + 0.006484765559434891, + -0.024186071008443832, + -0.010240830481052399, + 0.03715110942721367, + 0.012498031370341778, + -0.06661634147167206, + 0.024955525994300842, + -0.013202659785747528, + 0.031759947538375854, + -0.04265422374010086, + 0.0033809272572398186, + 0.016584672033786774, + -0.03519266098737717, + -0.030131688341498375, + -0.011182199232280254, + 0.021255195140838623, + 0.06603901088237762, + 0.002144286409020424, + -0.007919914089143276, + 0.016195198521018028, + 0.06838733702898026, + 0.030150817707180977, + 0.02386324852705002, + 0.013833802193403244, + 0.006673185154795647, + -0.020053081214427948, + 0.0013544113608077168, + -0.02506568282842636, + 0.039843760430812836, + 0.04991559311747551, + -0.011222200468182564, + 0.0013711749343201518, + 0.007474474608898163, + -0.01545977033674717, + 0.01139049418270588, + -0.08111013472080231, + -0.0065195863135159016, + 0.009733657352626324, + -0.0017569278134033084, + -0.001885242760181427, + -0.006444410886615515, + -0.04946267977356911, + 0.002480585128068924, + -0.001084828283637762, + -0.03993722423911095, + -0.0236805472522974, + -0.003561092307791114, + -0.02643284574151039, + -0.012346837669610977, + 0.03579571470618248, + 0.03025691770017147, + 0.0035581730771809816, + -0.020928626880049706, + 0.0014204924227669835, + 0.04341316595673561, + -0.0546635165810585, + 0.013346493244171143, + -0.0024958869908005, + 0.04266209155321121, + 0.04042233154177666, + 0.037285398691892624, + -0.05366218835115433, + 0.036979421973228455, + 0.008750240318477154, + 0.012600895948708057, + -0.02881389670073986, + 0.013015263713896275, + -0.01715497486293316, + -0.013618653640151024, + -0.01639668643474579, + -0.039897315204143524, + -0.015229363925755024, + 0.027152227237820625, + -0.02987104281783104, + 0.01851569674909115, + -0.06308949738740921, + -0.009401348419487476, + 0.040933169424533844, + -0.008680588565766811, + -0.016773976385593414, + 0.029226576909422874, + 0.0274142287671566, + 0.015071681700646877, + 0.052957385778427124, + 0.019883669912815094, + -0.05666234344244003, + -0.007477147039026022, + 0.008089986629784107, + -0.01932942122220993, + 0.007675159256905317, + 0.05152776464819908, + -0.021107062697410583, + 0.05385065823793411, + -0.02277863398194313, + 0.013291661627590656, + -0.019507521763443947, + 0.025664588436484337, + -0.0035152302589267492, + 0.0066964393481612206, + -0.011566434986889362, + -0.020921893417835236, + -0.01889108307659626, + 0.019797706976532936, + -0.022082984447479248, + -0.009344181977212429, + -0.019370511174201965, + -0.02258722111582756, + 0.008992173708975315, + 0.010955682955682278, + 0.015370058827102184, + 0.013199240900576115, + 0.056509919464588165, + 0.03206796571612358, + 0.07660988718271255, + 0.010421321727335453, + -0.016915015876293182, + -0.030574798583984375, + 0.026053739711642265, + -0.056971676647663116, + -0.016118936240673065, + 0.032449010759592056, + -0.023471901193261147, + 0.030783122405409813, + 0.04216374456882477, + -0.027455639094114304, + 0.06850343197584152, + 0.022426625713706017, + 0.01011710986495018, + -0.011454826220870018, + -0.010358642786741257, + 0.004086011089384556, + -0.019334066659212112, + 0.017012406140565872, + -0.008521650917828083, + -0.06263574957847595, + 0.0469067208468914, + -0.05787745490670204, + -0.047184016555547714, + -0.03533179685473442, + 0.024135462939739227, + -0.019391292706131935, + -0.019282763823866844, + -0.02510523423552513, + 0.008389665745198727, + 0.034321580082178116, + 0.06844434142112732, + -0.03937108442187309, + -0.05937549099326134, + 0.014110683463513851, + 0.038333918899297714, + -0.06974785774946213, + 0.007079619448632002, + -0.03177160397171974, + 0.010869349353015423, + 0.0020801490172743797, + 0.004886050708591938, + -0.011989117600023746, + -0.010326975956559181, + 0.01738462969660759, + -0.044499389827251434, + -0.02669893018901348, + -0.048952676355838776, + 0.0006302712135948241, + 0.017989616841077805, + -0.0006366900634020567, + 0.03320905566215515, + -0.026725327596068382, + 0.06154472008347511, + 0.02852768637239933, + -0.020988384261727333, + -0.01487558800727129, + 0.0578966923058033, + -0.03135371953248978, + 0.03134399279952049, + -0.023177094757556915, + 0.002310975221917033, + 0.05322069674730301, + 0.02017497457563877, + -0.04531986266374588, + 0.05069122463464737, + -0.005688476376235485, + 0.008045465685427189, + 0.004933263175189495, + 0.009057986550033092, + 0.025850018486380577, + -0.022144628688693047, + -0.04506489634513855, + -0.0015846793539822102, + -0.029954779893159866, + -0.03386915102601051, + 0.007824786007404327, + -0.006648472044616938, + -0.03200988098978996, + 0.021901985630393028, + -0.02884344942867756, + 0.009271644055843353, + 0.03845445439219475, + -0.015330393798649311, + -0.0061620608903467655, + -0.01016369741410017, + -0.0024644893128424883, + 0.0018067776691168547, + -0.029494967311620712, + 0.020083462819457054, + -0.020889025181531906 + ], + "start_index": 0, + "end_index": 55, + "token_count": 21, + "file": "calculo_de_expiracion.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "dbb86790-df04-5445-ab58-081c158ef026", + "_source": { + "text": "addVar(code, 200)\naddVar(status, \"Success\")\naddResult(code)\naddResult(status)", + "embedding": [ + 0.001830495079047978, + 0.014758692122995853, + -0.0076868124306201935, + -0.0332527831196785, + -0.031354255974292755, + -0.006292884703725576, + 0.001999586122110486, + 0.014830928295850754, + -0.00979674980044365, + -0.0041252379305660725, + -0.023816833272576332, + -0.010902246460318565, + -0.018405858427286148, + -0.006848533637821674, + -0.03176453337073326, + 0.06736746430397034, + -0.04897211864590645, + -0.016570279374718666, + -0.013826548121869564, + 0.015979845076799393, + -0.03823288902640343, + -0.027002627030014992, + -0.003867056453600526, + 0.05181937292218208, + -0.014236822724342346, + 0.03268219530582428, + 0.0020272471010684967, + 0.09260009229183197, + 0.038532864302396774, + 0.01843227446079254, + 0.02784614823758602, + -0.01056880783289671, + -0.03463354334235191, + -0.0080995699390769, + -0.027606869116425514, + -0.010935976170003414, + 0.046569887548685074, + -0.0016909035621210933, + -0.034599971026182175, + 0.019619937986135483, + -0.03127975016832352, + -0.023430362343788147, + 0.05465325713157654, + 0.012354262173175812, + 0.0280144065618515, + 0.008172715082764626, + 0.02607954852283001, + -0.03811022266745567, + 0.024497218430042267, + 0.03746706247329712, + 0.0001225870510097593, + 0.03485655412077904, + 0.0015044892206788063, + -0.025741485878825188, + -0.006970754358917475, + 0.013933966867625713, + 0.02095647342503071, + 0.04185608774423599, + -0.010731825605034828, + 0.013343331404030323, + -0.0009669804130680859, + 0.04741834104061127, + 0.0014965494628995657, + -0.03830059617757797, + -0.022437099367380142, + 0.016358312219381332, + 0.003950092475861311, + 0.013890724629163742, + -0.058376990258693695, + -0.031395137310028076, + 0.055817198008298874, + -0.05931200459599495, + -0.04331043362617493, + 0.04766462743282318, + 0.023535575717687607, + 0.008489858359098434, + 0.014239921234548092, + -0.0006129068206064403, + 0.019577113911509514, + 0.026686204597353935, + 0.007101515773683786, + 0.024962563067674637, + -0.00307915429584682, + 0.024563413113355637, + -0.009512443095445633, + 0.016070667654275894, + -0.10441136360168457, + -0.03716300427913666, + 0.011508237570524216, + 0.0005238251178525388, + -0.022717317566275597, + 0.0453798845410347, + 0.0046434043906629086, + -0.0022802664898335934, + -0.008784506469964981, + 0.021289270371198654, + -0.017406342551112175, + 0.08245889842510223, + 0.0005692996783182025, + 0.02372041530907154, + 0.016483984887599945, + 0.0052140806801617146, + -0.005842036101967096, + -0.021314935758709908, + 0.035712163895368576, + 0.0015428414335474372, + -8.865677227731794e-05, + 0.012610277161002159, + -0.048191603273153305, + -0.051953911781311035, + 0.01301263552159071, + -0.01760413870215416, + 0.04063013941049576, + 0.05396970734000206, + -0.03489494323730469, + 0.03227880224585533, + 0.02800089865922928, + -0.009432561695575714, + 0.0003530648536980152, + -0.006246778182685375, + 0.04043927043676376, + -0.061672747135162354, + 0.017016548663377762, + -0.007472081109881401, + -0.031151292845606804, + -0.0029743146151304245, + 0.009380271658301353, + -0.008287973701953888, + 0.029659951105713844, + 6.14246673649177e-05, + 0.0015465024625882506, + -0.028962621465325356, + 0.003981542307883501, + 0.020856978371739388, + 0.008743167854845524, + 0.0320289209485054, + -0.0008508266764692962, + 0.01073898933827877, + 0.014068180695176125, + -0.02392677776515484, + 0.01172440592199564, + -0.0214842539280653, + 0.024422891438007355, + -0.02807149663567543, + -0.015346729196608067, + 0.005824457388371229, + -0.02652333676815033, + -0.005931337829679251, + 0.01822136528789997, + -0.000729185645468533, + -0.012796256691217422, + -0.005626113619655371, + -0.03153117001056671, + -0.012523742392659187, + -0.016905520111322403, + -0.005371038801968098, + 0.017421450465917587, + -0.0011551864445209503, + -0.0005238405428826809, + -0.007043956313282251, + -0.014619201421737671, + 0.008162776939570904, + -0.023472299799323082, + -0.05682677403092384, + -0.019004622474312782, + 0.04372069612145424, + 0.006286566145718098, + 0.01840629242360592, + -0.06506216526031494, + 0.01982119493186474, + 0.045150768011808395, + 0.0006330459727905691, + -0.024007752537727356, + -0.021324489265680313, + -0.04543118551373482, + -0.033588752150535583, + -0.025456277653574944, + -0.048952024430036545, + -0.035948123782873154, + -0.030529268085956573, + 0.0130406953394413, + -0.0123749403283, + 0.01864938624203205, + 0.0196461770683527, + 0.029194654896855354, + 0.030414026230573654, + -0.010356158018112183, + -0.0004113147733733058, + -0.00300065940245986, + -0.04135465249419212, + 0.001178488484583795, + -0.03397936373949051, + -0.003917895723134279, + 0.0018973362166434526, + -0.033934321254491806, + -0.007465287111699581, + 0.00899267103523016, + -0.020290182903409004, + 0.024516889825463295, + 0.006418212782591581, + -0.03441738337278366, + -0.06776345521211624, + 0.03134641796350479, + 0.00649151299148798, + 0.03267236799001694, + 0.0039400081150233746, + 0.039727579802274704, + 0.0081962114199996, + 0.02901620604097843, + -0.025980200618505478, + -0.04102050140500069, + -0.009643330238759518, + -0.01562681794166565, + -0.07595209777355194, + 0.01708824746310711, + -0.043118540197610855, + -0.04567916691303253, + 0.029499022290110588, + -0.016444390639662743, + 0.02286909520626068, + 0.021641453728079796, + 0.022943926975131035, + -0.010136581026017666, + 0.0059506529942154884, + -0.0012803892605006695, + -0.029948001727461815, + 0.00688194390386343, + 0.012393243610858917, + 0.013368619605898857, + 0.02288994751870632, + -0.05216166377067566, + -0.003487799782305956, + 0.05139637738466263, + 0.05224723368883133, + 0.027973100543022156, + -0.017754927277565002, + 0.0070043462328612804, + 0.02822282165288925, + 0.0029154878575354815, + 0.014028032310307026, + 0.011979763396084309, + -0.00691996980458498, + 0.04408355429768562, + 0.00914007704705, + -0.004034299869090319, + 0.024858910590410233, + -0.0015589636750519276, + -0.017894301563501358, + -0.03789101913571358, + -0.002424338599666953, + -0.0015165122458711267, + -0.0789826363325119, + -0.02651841565966606, + -0.058938201516866684, + 0.023044083267450333, + -0.009532921016216278, + 0.02435949817299843, + -0.02865232340991497, + 0.03899529203772545, + -0.004375984892249107, + 0.010501658543944359, + -0.050873346626758575, + 0.01794333942234516, + -0.031718555837869644, + 0.09082449227571487, + -0.0016165381530299783, + -0.04379737004637718, + 0.00032723930780775845, + -0.021465688943862915, + -0.03495585173368454, + 0.0032222142908722162, + 0.022359678521752357, + 0.031279344111680984, + 0.05368470773100853, + -0.014951146207749844, + 0.030283300206065178, + 0.004315739963203669, + -0.062176089733839035, + -0.028361158445477486, + -0.018837159499526024, + 0.0005131802754476666, + 0.019399147480726242, + -0.03643826022744179, + -0.04816146567463875, + -0.022106824442744255, + 0.0065572308376431465, + 0.03967415168881416, + 0.026597436517477036, + -0.014184659346938133, + 0.01074456050992012, + 0.023362897336483, + -0.006332110613584518, + -0.004053817596286535, + 0.036206070333719254, + 0.018194403499364853, + -0.020743951201438904, + -0.0009605753002688289, + 0.050890643149614334, + -0.025768201798200607, + -0.04065040871500969, + 0.003836234100162983, + 0.013700373470783234, + 0.05464984104037285, + 0.00754161924123764, + 0.009802979417145252, + -0.0272764153778553, + 0.0005784592940472066, + 0.04124758392572403, + -0.01606476865708828, + -0.02272200398147106, + 0.05331632122397423, + -0.022160956636071205, + -4.35294714407064e-05, + 0.0062493085861206055, + 0.01888568513095379, + -0.04380270466208458, + -0.023902112618088722, + -0.03023080714046955, + 0.007692235987633467, + 0.056430865079164505, + 0.0009175812010653317, + 0.011157284490764141, + 0.009503229521214962, + -0.0625917837023735, + 0.022075146436691284, + -0.01593114249408245, + -0.011777513660490513, + 0.0249859057366848, + -0.009396013803780079, + 0.020966127514839172, + 0.038607314229011536, + 0.020959125831723213, + 0.04199116304516792, + -0.02129972353577614, + -0.0003056467976421118, + 0.008754431270062923, + 0.004762749187648296, + 0.020814258605241776, + -0.014302300289273262, + -0.036416955292224884, + 0.027862951159477234, + 0.0009274596814066172, + -0.03544604033231735, + 0.037675488740205765, + -0.012945502996444702, + 0.0017625953769311309, + -0.050473760813474655, + -0.03250567242503166, + -0.0010473044821992517, + -0.014218001626431942, + -0.015255379490554333, + -0.04252517968416214, + -0.007758498657494783, + -0.010094779543578625, + 0.03694285824894905, + -0.034278277307748795, + -0.011134780943393707, + 0.030665364116430283, + 0.033290568739175797, + 0.005705609917640686, + -0.012135663069784641, + -0.02081187628209591, + 0.019602950662374496, + -0.02232607640326023, + -0.028337137773633003, + 0.026294400915503502, + -0.00032633048249408603, + -0.02029535174369812, + 0.07475943863391876, + -0.04348747432231903, + 0.0068069640547037125, + 0.019633999094367027, + -0.025458019226789474, + 0.017381398007273674, + 0.012102953158318996, + 0.005841217003762722, + 0.011547557078301907, + 0.02281094342470169, + -0.02675739862024784, + 0.01711377501487732, + -0.00031444718479178846, + 0.01859382353723049, + -0.0014910425525158644, + -0.03610692173242569, + -0.08426497131586075, + -0.04513980448246002, + 0.03322034329175949, + 0.04369954392313957, + 0.007105428725481033, + -0.05047497898340225, + 0.014116305857896805, + -0.006314306519925594, + -0.04054274037480354, + 0.030012905597686768, + 0.02688991278409958, + 0.03581593930721283, + -0.05413731932640076, + 0.010776945389807224, + -0.01506547536700964, + 0.03146510571241379, + 0.004500288981944323, + -0.01540989987552166, + 0.007716289721429348, + -0.024476289749145508, + 0.006223161704838276, + 0.016499681398272514, + -0.009630479849874973, + 0.02525477483868599, + 0.022788675501942635, + 0.04100021347403526, + 0.022288892418146133, + 0.04354633018374443, + 0.05166338384151459, + -0.039219051599502563, + 0.0318501777946949, + 0.0030234460718929768, + 0.025460349395871162, + -0.0004930480499751866, + 0.03162705898284912, + -0.07416624575853348, + 0.02760152705013752, + -0.03307383880019188, + -0.021977229043841362, + 0.011146954260766506, + 0.035329703241586685, + -0.007272963412106037, + -0.0448666587471962, + -0.05358964577317238, + 0.004437257070094347, + 0.019138634204864502, + -0.015082651749253273, + -0.06559039652347565, + 0.0010028957622125745, + 0.012980639934539795, + -0.036867786198854446, + 0.04125380888581276, + 0.03781920298933983, + 0.0616590790450573, + 0.03222974017262459, + 0.019114864990115166, + 0.01428450457751751, + -0.0315653495490551, + -0.039563633501529694, + 0.03664306178689003, + -0.06162402033805847, + 0.006838751025497913, + -0.06898584961891174, + 0.04211195558309555, + -0.05643800273537636, + -0.01850302331149578, + -0.05043197423219681, + 0.0354088693857193, + -0.014440838247537613, + -0.03701514005661011, + 0.0416426882147789, + -0.004354182630777359, + -0.010686947032809258, + -0.06374149024486542, + 0.02587382309138775, + -0.004278423730283976, + 0.01004825346171856, + -0.019922975450754166, + 0.025512555614113808, + -0.051372114568948746, + -0.07553522288799286, + -0.010431276634335518, + 0.03425684943795204, + 0.00040538574103266, + 0.03561021387577057, + 0.003909584134817123, + 0.017407193779945374, + -0.023308925330638885, + -0.006354666780680418, + -0.05888178199529648, + 0.008124628104269505, + -0.0675589069724083, + -0.06977241486310959, + -0.013411831110715866, + -0.08403504639863968, + -0.005128955934196711, + -0.01594582572579384, + -0.014103311114013195, + -0.03515026718378067, + -0.08406779170036316, + 0.01888410374522209, + -0.006835750304162502, + 0.03903521969914436, + -0.010679008439183235, + -0.015649741515517235, + 0.037324097007513046, + 0.054326947778463364, + 0.02702195756137371, + 0.04421773925423622, + -0.05586714670062065, + -0.0016269683837890625, + 0.01286645233631134, + 0.030238956212997437, + -0.019985536113381386, + -0.049650855362415314, + 0.00972030684351921, + -0.007083924952894449, + 0.015757864341139793, + -0.0026626749895513058, + 0.07420137524604797, + 0.019547708332538605, + 0.025815865024924278, + 0.00573853449895978, + 0.007574969902634621, + 0.026603834703564644, + -0.007738996297121048, + -0.027675844728946686, + -0.003763291984796524, + -0.007981219328939915, + 0.03189496323466301, + -0.034079067409038544, + 0.011307455599308014, + 0.09446167200803757, + 0.0058921463787555695, + 0.022150125354528427, + 0.03781532496213913, + 0.039494745433330536, + 0.013242477551102638, + 0.048181042075157166, + -0.0036266520619392395, + 0.009121687151491642, + 0.014817304909229279, + 0.014910448342561722, + -0.015848370268940926, + 0.03382563963532448, + 0.06471716612577438, + -0.008009189739823341, + 0.025554239749908447, + -0.014316822402179241, + -0.03612624853849411, + 0.08089882880449295, + -0.06079299375414848, + -0.08993419259786606, + -0.02617301605641842, + 0.036388199776411057, + 0.07319050282239914, + 0.007067457307130098, + 0.037692032754421234, + -0.016502797603607178, + -0.011705626733601093, + 0.009995043277740479, + 0.045939043164253235, + 0.013165164738893509, + 0.025032252073287964, + -0.0006087742513045669, + 0.02907169982790947, + 0.04549729451537132, + 0.0349750854074955, + -0.013101820833981037, + 0.02699427306652069, + -0.01297348365187645, + 0.0019127443665638566, + -0.014041395857930183, + -0.0036079888232052326, + 0.05083659291267395, + 0.0056857760064303875, + 0.022792812436819077, + 0.03929198160767555, + -0.046776216477155685, + 0.007339523173868656, + -0.002361132064834237, + -0.014557605609297752, + -0.04871398210525513, + 0.012777145951986313, + 0.03626111149787903, + 0.003372425911948085, + 0.003203762462362647, + 0.03622116148471832, + 0.013020379468798637, + 0.018771104514598846, + 0.019670788198709488, + -0.07515256851911545, + 0.020688746124505997, + 0.022326355800032616, + 0.0277742687612772, + -0.01583895832300186, + 0.039519257843494415, + 0.01424237247556448, + -0.006708802655339241, + -0.00979593489319086, + -0.01410179864615202, + 0.011131039820611477, + 0.02866051159799099, + -0.0783841460943222, + -0.024508150294423103, + -0.01920120231807232, + -8.003277616808191e-05, + -0.01461413037031889, + -0.030516745522618294, + -0.028609301894903183, + 0.015501896850764751, + -0.01785157062113285, + -0.08509980142116547, + 0.01690223254263401, + -0.01291954517364502, + -0.02942587248980999, + 0.09814158827066422, + 0.02635427564382553, + -0.006777591072022915, + -0.020793745294213295, + -0.031025227159261703, + 0.04434442147612572, + 0.010356351733207703, + 0.04766101390123367, + -0.059661418199539185, + 0.04583992063999176, + -0.025385117158293724, + 0.006874267943203449, + -0.07099206000566483, + -0.08105922490358353, + -0.035564593970775604, + -0.0408313162624836, + -0.016250360757112503, + 0.02789825014770031, + 0.03930075839161873, + -0.042786963284015656, + -0.0028265153523534536, + -0.008411274291574955, + -0.0028004313353449106, + 0.004242835100740194, + -0.06091243028640747, + 0.014399337582290173, + -0.049890849739313126, + -0.045483268797397614, + -0.011759418062865734, + -0.03959745168685913, + 0.009777454659342766, + -0.04817669838666916, + -0.08057631552219391, + -0.001891445484943688, + -0.013123473152518272, + 0.02163829281926155, + 0.007492253556847572, + 0.004038524813950062, + -0.007478613406419754, + -0.02531680464744568, + 0.02917121909558773, + -0.016366230323910713, + -3.357544119353406e-05, + -0.0037545294035226107, + 0.013965561054646969, + -0.003390624187886715, + 0.037707895040512085, + -0.02999444492161274, + 0.021249277517199516, + 0.0005011033499613404, + 0.018325433135032654, + -0.00239710696041584, + -0.014774623326957226, + -0.009213179349899292, + -0.020032191649079323, + -0.005539476405829191, + -0.06341177970170975, + 0.0343598946928978, + -0.006570867262780666, + -0.04444632679224014, + -0.00422613276168704, + -0.08635720610618591, + 0.004275466315448284, + -0.018459521234035492, + -0.10526618361473083, + -0.026099346578121185, + -0.026542529463768005, + 0.003575707785785198, + -0.02046319656074047, + -0.011553396470844746, + -0.07038744539022446, + -0.02339211478829384, + -0.011421489529311657, + -0.015246568247675896, + -0.06565707921981812, + -0.008722901344299316, + -0.01938530057668686, + 0.05265771970152855, + -0.028162440285086632, + -0.0381452776491642, + -0.04897458106279373, + -0.04836913198232651, + -0.004858385771512985, + -0.01778825744986534, + 0.02589530311524868, + 0.009873968549072742, + -0.008721615187823772, + 0.004216874483972788, + 0.015392488799989223, + -0.02118401601910591, + -0.023580817505717278, + -0.0001944067480508238, + 0.02319328300654888, + 0.03533106669783592, + -0.017462708055973053, + 0.0033756878692656755, + 0.04693620279431343, + 0.038179557770490646, + -0.02964138798415661, + -0.008925541304051876, + 0.010167505592107773, + 0.022954527288675308, + -0.02484368346631527, + 0.029272187501192093, + -0.015885718166828156, + 0.03618311882019043, + -0.019960639998316765, + -0.015913786366581917, + -0.026067402213811874, + -0.02539067529141903, + 0.011770125478506088, + 0.028285302221775055, + 0.022968022152781487, + -0.03682141378521919, + -0.033265404403209686, + 0.012248756363987923, + -0.05754547938704491, + 6.0850492445752025e-05, + -0.027346940711140633, + 0.026023702695965767, + -0.020345324650406837, + 0.00258560199290514, + 0.019363630563020706, + 0.002780408365651965, + -0.012531758286058903, + -0.0014758192701265216, + 0.009548000991344452, + 0.007266487926244736, + -0.011052444577217102, + -0.021754318848252296, + 0.03432709723711014, + -0.021991446614265442, + 0.03952871635556221, + -0.020007815212011337, + 0.02649637497961521, + 0.00669934693723917, + 0.04579036682844162, + -0.00557009968906641, + -0.0304244514554739, + 0.047721024602651596, + 0.010308968834578991, + -0.02188926748931408, + -0.0029705376364290714, + -0.010147610679268837, + -0.03867598623037338, + 0.005838196258991957, + -0.017454974353313446, + -0.017475051805377007, + -0.009076826274394989, + -0.007257735822349787, + 0.014419169165194035, + -0.016838420182466507, + -0.0149277588352561, + -0.027013827115297318, + -0.015010426752269268, + -0.005658126436173916, + 0.015988586470484734, + 0.018611125648021698, + 0.03919728472828865, + 0.047781672328710556, + 0.0457184873521328, + 0.006142461206763983, + 0.015352017246186733, + -0.013652113266289234, + -0.024017224088311195, + -0.02135833352804184, + 0.058340977877378464, + -0.034871406853199005, + 0.04520811513066292, + 0.03328617662191391, + 0.03961975499987602, + 0.008891133591532707, + 0.014024649746716022, + 0.04800635948777199, + 0.012325141578912735, + -0.010987021028995514, + -0.01565076783299446, + -0.00531354732811451, + -0.04139570891857147, + -0.027858629822731018, + -0.02246597595512867, + -0.05843068286776543, + 0.012098832055926323, + -0.014516985975205898, + -0.0003369716869201511, + 0.010484435595571995, + 0.028338568285107613, + 0.014181602746248245, + 0.029338432475924492, + 0.07579867541790009, + 0.036475781351327896, + -0.029075797647237778, + 0.011287187226116657, + 0.0385119765996933, + -0.03198624774813652, + 0.018957210704684258, + -0.03552059456706047, + 0.010243373923003674, + -0.042586639523506165, + 0.003009143518283963, + -0.05240240693092346, + -0.0013622555416077375, + -0.055651478469371796, + 0.005818317644298077, + 0.02159620262682438, + -0.005066489800810814, + 0.0014530874323099852, + 0.038543593138456345, + -0.016096461564302444, + 0.021641017869114876, + -0.05479615926742554, + -0.007692764047533274, + -0.029656382277607918, + 0.02323181740939617, + 0.011074841022491455, + 0.06442783027887344, + -0.06674003601074219, + 0.0015849139308556914, + -0.03343585506081581, + 0.04302537813782692, + -0.049050088971853256, + 0.02886107563972473, + 0.0031597651541233063, + -0.05953941494226456, + -0.04383504390716553, + 0.056329622864723206, + 0.037938494235277176, + 0.04118230938911438, + -0.009187609888613224, + -0.007193324156105518, + 0.0006246877019293606, + 0.0034831122029572725, + -0.022514034062623978, + -0.010371578857302666, + 0.0395868755877018, + -0.017154214903712273, + -0.024826282635331154, + 0.03664733096957207, + 0.011600853875279427, + 0.02277553267776966, + 0.05653686076402664, + 0.026470741257071495, + 0.012649201788008213, + 0.020018652081489563, + 0.041741564869880676, + 0.09887706488370895, + 0.007348129991441965, + 0.038841184228658676, + 0.06353247165679932, + 0.004317733459174633, + -0.006714180111885071, + -0.03527136892080307, + -0.04392943158745766, + 0.0014744928339496255, + -0.04509441554546356, + 0.014126397669315338, + 0.017917638644576073, + 0.032339293509721756, + -0.05145486816763878, + 0.02827400155365467, + -0.048038020730018616, + -0.008724892511963844, + 0.004785898141562939, + -0.020379452034831047, + 0.013813155703246593, + 0.054731596261262894, + -0.026997091248631477, + -0.009594286791980267, + 0.038608502596616745, + 0.009639275260269642, + 0.038426440209150314, + -0.03420061990618706, + 0.016006676480174065, + -0.029831955209374428, + 0.0016104402020573616, + 0.04222015291452408, + -0.019018011167645454, + -0.023525511845946312, + -0.017139725387096405, + -0.06258856505155563, + -0.026450464501976967, + 0.02563350275158882, + -0.04983840137720108, + 0.0010493778390809894, + 0.004387326538562775, + -0.009611764922738075, + -0.031291790306568146, + 0.01344287022948265, + 0.006130665075033903, + 0.016240395605564117, + -0.054595302790403366, + -0.03634263202548027, + -0.008823288604617119, + 0.02256973460316658, + -0.000527182302903384, + -0.05470499396324158, + 0.03310006856918335, + 0.029399678111076355, + 0.016892945393919945, + 0.005023453384637833, + 0.01677551679313183, + -0.0413784496486187, + -0.0036712102591991425, + 0.019949547946453094, + -0.018903307616710663, + -0.03169596940279007, + 0.03751404955983162, + -0.013214681297540665, + -0.001973579404875636, + 0.03893407806754112, + 0.0019901487976312637, + 0.008458739146590233, + -0.0017518851673230529, + -0.015409890562295914, + 0.0167387668043375, + -0.01340852864086628, + -0.002697815652936697, + 0.001724623958580196, + -0.028886154294013977, + 0.03544187545776367, + -0.011626304127275944, + 0.0022109290584921837, + -0.04276890680193901, + -0.007211498916149139, + -0.01937769167125225, + 0.004207308404147625, + -0.01767689734697342, + 0.05617741867899895, + 0.024054568260908127, + 0.030080437660217285, + -0.013530085794627666, + 0.007745446637272835, + 0.09211281687021255, + 0.020642811432480812, + 0.021624095737934113, + -0.03202579915523529, + 0.02569979801774025, + 0.0012424081796780229, + -0.0345611497759819, + 0.010998407378792763, + -0.015733616426587105, + -0.0010992517927661538, + -0.01596081629395485, + 0.03407689929008484, + 0.03726249188184738, + -0.0054274871945381165, + 0.04459001496434212, + -0.022545363754034042, + 0.02796805649995804, + 0.040406376123428345, + -0.010612884536385536, + 0.020677074790000916, + -0.06254538148641586, + -0.006339503917843103, + 0.04279995337128639, + 0.01700115017592907, + -0.018972644582390785, + 0.06451328098773956, + -0.008341465145349503, + -0.04542308673262596, + 0.009598451666533947, + -0.01049369852989912, + 0.03561093285679817, + 0.019178880378603935, + 0.019790008664131165, + -0.04663233458995819, + -0.07004044950008392, + 0.017792508006095886, + 0.04208105430006981, + 0.02247905172407627, + 0.02551608346402645, + -0.014520240016281605, + 0.027306511998176575, + 0.03276825696229935, + 0.009435548447072506, + 0.022901058197021484, + 0.022352125495672226, + -0.0017516763182356954, + -0.009131352417171001, + -0.05113255977630615, + -0.04742319509387016, + 0.004451996646821499, + 0.01637735776603222, + -0.04183168709278107, + -0.002359661739319563, + 0.01418444886803627, + -0.020535502582788467, + 0.013318227604031563, + 0.03516073897480965, + -0.04279893636703491, + 0.004262692295014858, + 0.01942087896168232, + 0.03527582809329033, + 0.022068193182349205, + 0.012063726782798767, + 0.07210064679384232, + -0.022860871627926826, + -0.020477434620261192, + -0.024507256224751472, + -0.03544647619128227, + 0.0007166344439610839, + -0.015739141032099724, + 0.030041061341762543, + 0.017795123159885406, + 0.011183961294591427, + 0.0007963213720358908, + -0.0038286945782601833, + -0.018321245908737183, + -0.07869762182235718, + 0.013157801702618599, + 0.027610236778855324, + -0.04205215349793434, + 0.018447453156113625, + -0.012587505392730236, + 0.0022903247736394405, + 0.011489343829452991, + 0.001023935852572322, + 0.006374940276145935, + -0.01156332716345787, + -0.041866470128297806, + -0.005618577357381582, + 0.040163230150938034, + 0.014887893572449684, + -0.054741572588682175 + ], + "start_index": 0, + "end_index": 77, + "token_count": 24, + "file": "respuesta_multiple.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "7a08ec00-8218-5eab-b088-d9ca1f908705", + "_source": { + "text": "startLoop(i,1,10)\n item = \"item_%s\" % i\n AddvariableToJSON(item,'valor_generado',mi_json)\nendLoop()\naddResult(mi_json)\n\n", + "embedding": [ + 0.02440626546740532, + 0.05629405751824379, + -0.014208595268428326, + -0.09495431184768677, + 0.035204723477363586, + 0.009354452602565289, + -0.00195270124822855, + 0.0011806465918198228, + 0.020139338448643684, + -0.015743356198072433, + 0.013118397444486618, + 0.0021996889263391495, + -0.0300168264657259, + -0.011782347224652767, + -0.024524549022316933, + 0.06436439603567123, + -0.030940379947423935, + 0.041689444333314896, + -0.0006977875018492341, + -0.010872185230255127, + -0.04485635831952095, + -0.003822169965133071, + -0.04624200239777565, + 0.03220844641327858, + 0.019984306767582893, + -0.04774532467126846, + 0.007420494221150875, + 0.06334952265024185, + 0.04181766137480736, + -0.04364835470914841, + 0.02048471011221409, + -0.010181432589888573, + -0.003969152458012104, + -0.031631093472242355, + -0.03579307720065117, + -0.018307406455278397, + 0.05475901812314987, + -0.036392368376255035, + -0.02647395245730877, + 0.02315937727689743, + -0.03729759529232979, + 0.019430167973041534, + 0.02703971229493618, + 0.022668669000267982, + 0.049615878611803055, + -0.0037866306956857443, + 0.015393907204270363, + -0.016414960846304893, + 0.05477661266922951, + -0.03563657030463219, + 0.004046994261443615, + 0.05285581573843956, + 0.044212885200977325, + -0.016028355807065964, + 0.006252615246921778, + 0.02574973553419113, + 0.03821229934692383, + 0.0015538946026936173, + -0.010532055981457233, + -0.002117487136274576, + -0.0719025507569313, + -0.03600253164768219, + -0.03756890073418617, + -0.023729803040623665, + -0.03600065037608147, + -0.06822377443313599, + -0.00515004014596343, + -0.004338534083217382, + -0.04174881428480148, + 0.0027859602123498917, + -0.009579808451235294, + -0.045088984072208405, + -0.013495665974915028, + 0.028727564960718155, + 0.001379370572976768, + 0.020012615248560905, + 0.018272724002599716, + -0.010473236441612244, + 0.007283379323780537, + 0.025848297402262688, + -0.0029153332579880953, + 0.013057736679911613, + 0.03124222345650196, + 0.015705300495028496, + -0.008461829274892807, + 0.012993093580007553, + -0.059278540313243866, + 0.002531614853069186, + -0.035693682730197906, + -0.010041682980954647, + -0.04609637334942818, + -0.004759888630360365, + -0.02596103586256504, + -0.002438832074403763, + 0.012318534776568413, + -0.03081551380455494, + 0.04581143334507942, + 0.036870792508125305, + -0.021055996417999268, + 0.010689196176826954, + -0.016951942816376686, + -0.021052220836281776, + -0.04444215074181557, + -0.01351138111203909, + -0.02378137968480587, + 0.02704441174864769, + -0.06946322321891785, + 0.056784387677907944, + -0.043825414031744, + -0.009616929106414318, + -0.005114708095788956, + 0.018049849197268486, + 0.02007235214114189, + 0.017353808507323265, + -0.04400595650076866, + -0.04139083996415138, + -0.022531477734446526, + 0.0032882224768400192, + 0.006788734812289476, + -0.0412999726831913, + 0.004548746161162853, + 0.006379983387887478, + -0.0018666508840397, + -0.015325842425227165, + 0.01997997984290123, + -0.015560327097773552, + -0.025995394214987755, + -0.0033758499193936586, + 0.036003272980451584, + -0.027306698262691498, + 0.007404137868434191, + -0.018258342519402504, + -0.01907961815595627, + -0.02226121351122856, + 0.03243761137127876, + 0.0016539664939045906, + 0.010607333853840828, + -0.020044421777129173, + 0.061846837401390076, + -0.0120330099016428, + -0.015419778414070606, + -0.04343143478035927, + 0.008207997307181358, + -0.006354005541652441, + -0.017811523750424385, + 0.018024224787950516, + -0.02270079217851162, + -0.0006872403318993747, + 0.02794468030333519, + 0.06245449185371399, + -0.038727838546037674, + 0.0019250813638791442, + 0.00338663998991251, + -0.018538035452365875, + 0.026128962635993958, + 0.04639254882931709, + 0.0027910706121474504, + -0.02331574074923992, + -0.0028391447849571705, + 0.02207101136445999, + 0.0006072381511330605, + -0.005469588562846184, + -0.006013365462422371, + -0.04760601744055748, + -0.03314654529094696, + 0.04729193449020386, + -0.06588341295719147, + -0.04506411775946617, + -0.08096255362033844, + 0.012916120700538158, + -0.004852903075516224, + 0.01746441423892975, + 0.002490679267793894, + -0.011870012618601322, + 0.00030518134008161724, + 0.009198462590575218, + -0.03498665615916252, + -0.06827808171510696, + 0.041666705161333084, + 0.006588040851056576, + 0.004803471267223358, + -0.004718481097370386, + 0.031732622534036636, + 0.018497340381145477, + -0.007227880414575338, + 0.007583363447338343, + -0.0020168181508779526, + -0.03144003450870514, + 0.02049967832863331, + -0.06015915423631668, + -0.01905064284801483, + 0.03386963531374931, + -0.014766017906367779, + -0.03343880549073219, + -0.001377458916977048, + -0.035020265728235245, + 0.01047213189303875, + 0.005858166608959436, + 0.02363727055490017, + -0.006617723498493433, + -0.021587109193205833, + -0.047469690442085266, + 0.0008933036006055772, + 0.035288240760564804, + -0.01338927075266838, + -0.040802642703056335, + -0.006365060806274414, + 0.02621464990079403, + -0.027710871770977974, + 0.008848568424582481, + -0.032522182911634445, + 0.054007407277822495, + -0.004339463543146849, + -0.003726903349161148, + -0.015194362960755825, + -0.03275574371218681, + 0.0400533452630043, + -0.03060171566903591, + 0.023766523227095604, + 0.0020992320496588945, + -0.0023249443620443344, + 0.053730860352516174, + -0.033669378608465195, + 0.014577170833945274, + 0.03526514768600464, + -0.0038726055063307285, + -0.002815361600369215, + -0.007683211006224155, + -0.013201765716075897, + 0.02466438338160515, + -0.05040588602423668, + -0.035793986171483994, + 0.03949302062392235, + -0.0040664831176400185, + 0.007200806867331266, + 0.05966799333691597, + 0.006666633766144514, + 0.015535310842096806, + 0.040027160197496414, + -0.06703226268291473, + -0.0033179442398250103, + -0.02481735683977604, + 0.017094440758228302, + 0.009190409444272518, + -0.013822323642671108, + 0.00429938267916441, + -0.01486949436366558, + 0.002526130760088563, + -0.025254417210817337, + -0.004524760413914919, + 0.03735484182834625, + 0.03469696640968323, + -0.07677989453077316, + 0.0279972106218338, + 0.010601386427879333, + 0.025410274043679237, + 0.0181081835180521, + -0.015909874811768532, + 0.021292295306921005, + -0.00915807019919157, + 0.03775880113244057, + -0.05380132421851158, + 0.015044420026242733, + 0.004050334449857473, + 0.01921587623655796, + 0.02837981842458248, + -0.016122911125421524, + 0.017351854592561722, + -0.015092622488737106, + -0.008706588298082352, + 0.030923329293727875, + 0.03646570444107056, + -0.015269291587173939, + 0.017474813386797905, + 0.017275657504796982, + -0.026596883311867714, + -0.003416427643969655, + -0.10213922709226608, + -0.006223909556865692, + -0.04065467044711113, + -0.035420000553131104, + -0.018210463225841522, + 0.03662300109863281, + -0.03985719755291939, + -0.019266318529844284, + 0.035963937640190125, + 0.010404047556221485, + 0.01761390082538128, + -0.0369659923017025, + 0.005021685268729925, + 0.008741455152630806, + 0.00670240493491292, + -0.010488785803318024, + 0.048151012510061264, + 0.0055158319883048534, + 0.038239993155002594, + -0.02555643767118454, + 0.03722783550620079, + 0.02053399570286274, + 0.00820897426456213, + 0.04231669753789902, + -0.010588094592094421, + -0.017667256295681, + -0.019985251128673553, + -0.04424014315009117, + -0.014253322035074234, + 0.05236852169036865, + 0.0205723587423563, + 0.06502428650856018, + 0.010368146933615208, + 0.07165134698152542, + -0.022461814805865288, + 0.023810679093003273, + 0.0352124460041523, + 0.006119124591350555, + 0.031151974573731422, + -0.06313960254192352, + -0.022664478048682213, + 0.02215876430273056, + 0.020506544038653374, + -0.0081595778465271, + -0.007823965512216091, + 0.01820439100265503, + 0.003968498203903437, + 0.0037869238294661045, + -0.012221570126712322, + -0.042278192937374115, + 0.0030637430027127266, + 0.003980184905230999, + -0.006982415448874235, + 0.04763968288898468, + 0.039064668118953705, + 0.055421266704797745, + -0.009628769010305405, + 0.007849721238017082, + 0.01621159538626671, + 0.03997376561164856, + 0.005763294640928507, + 0.015238536521792412, + -0.014570500701665878, + 0.012662921100854874, + 0.024801520630717278, + -0.01813507452607155, + 0.004490182269364595, + -0.0355244055390358, + -0.005279864650219679, + -0.04362226650118828, + -0.04622996225953102, + -0.026059767231345177, + 0.008914011530578136, + 0.010324910283088684, + -0.003168042516335845, + 0.008962910622358322, + -0.0270914938300848, + 0.002789145102724433, + -0.040366075932979584, + -0.012563607655465603, + 0.005886616185307503, + -0.01841246709227562, + -0.04001693055033684, + 0.005880647338926792, + -0.03361443802714348, + 0.06933343410491943, + 0.01584136113524437, + -0.013569149188697338, + 0.036514781415462494, + -0.03288992494344711, + 0.0002434508060105145, + 0.050173208117485046, + -0.03830903396010399, + -0.05332300439476967, + 0.017510555684566498, + 0.020246481522917747, + -0.055568575859069824, + 0.05405845120549202, + 0.040709178894758224, + 0.02134842798113823, + -0.01714232936501503, + -0.013291138224303722, + 0.027195515111088753, + 0.05908186733722687, + 0.0038841625209897757, + -0.0205979086458683, + 0.017216825857758522, + 0.002848709002137184, + -0.03347998112440109, + -0.009068482555449009, + -0.034261833876371384, + -0.06508943438529968, + -0.02161620929837227, + 0.02489161305129528, + -0.05454148352146149, + 0.03600318357348442, + -0.010088996961712837, + -0.026662399992346764, + -0.011857790872454643, + -0.05636056140065193, + -0.006069691851735115, + -0.007132456637918949, + 0.010425778105854988, + 0.03090853989124298, + 0.006259058136492968, + -0.0399663932621479, + -0.0004124641709495336, + 0.0033137849532067776, + 0.03883303329348564, + 0.029237274080514908, + 0.055407099425792694, + -0.004011261276900768, + -0.006430629175156355, + 0.04120717942714691, + -0.00035445723915472627, + -0.014375574886798859, + -0.005693412385880947, + 0.022768700495362282, + 0.009717350825667381, + 0.05093291401863098, + 0.022679965943098068, + 0.012150879949331284, + -0.043248023837804794, + 0.0260442066937685, + -0.001293547684326768, + -0.08157402276992798, + -0.0024040977004915476, + 0.013154864311218262, + -0.009263865649700165, + 0.013811667449772358, + -0.052502430975437164, + -0.01982201635837555, + 0.07055968791246414, + 0.020773418247699738, + -0.04597168415784836, + -0.010575123131275177, + 0.031647030264139175, + -0.047109492123126984, + 0.030706433579325676, + 0.05002021789550781, + 0.0377696193754673, + 0.02957257442176342, + 0.0006908264476805925, + 0.007502663880586624, + 0.06729444116353989, + 0.013497092761099339, + -0.004351460840553045, + -0.06255773454904556, + 0.0033724112436175346, + -0.01846275106072426, + -0.0024920853320509195, + -0.06102629005908966, + -0.025161193683743477, + 0.02830701321363449, + 0.007043663412332535, + 0.0059942761436104774, + -0.010189398191869259, + 0.0076188077218830585, + 0.0037563079968094826, + 0.0044672926887869835, + -0.013130255974829197, + -0.034833889454603195, + -0.009241062216460705, + 0.08258412778377533, + 0.06367271393537521, + -0.003975727595388889, + -0.022136176005005836, + -0.04235279932618141, + 0.03355029597878456, + -0.02353762648999691, + -0.025102730840444565, + 0.019822126254439354, + -0.018138494342565536, + -0.00048165416228584945, + 0.05332549661397934, + -0.03044966422021389, + -0.03468426689505577, + -0.005730422213673592, + -0.0026235792320221663, + -0.03858724236488342, + 0.024894025176763535, + -0.05126655474305153, + -0.025106526911258698, + -0.012676293961703777, + -0.00474901357665658, + -0.014318195171654224, + -0.059180404990911484, + 0.08689003437757492, + -0.024860266596078873, + 0.006586382165551186, + -0.01677774265408516, + -0.04069948568940163, + -0.006459461525082588, + 0.019045772030949593, + 0.07338011264801025, + -0.015546431764960289, + -0.052924055606126785, + -0.008651967160403728, + -0.05472153052687645, + -0.0377049557864666, + -0.03968990221619606, + -0.08178214728832245, + -0.00607568584382534, + 0.015949396416544914, + 0.0072753289714455605, + 0.008792959153652191, + 0.0020143112633377314, + -0.013432281091809273, + -0.017556704580783844, + 0.07786650955677032, + 0.00196618540212512, + -0.042125631123781204, + -0.010514257475733757, + 0.015124497935175896, + -0.0011556455865502357, + 0.037919726222753525, + 0.019069097936153412, + -0.0672115609049797, + -0.01078211423009634, + 0.012199227698147297, + -0.018296560272574425, + -0.02670704387128353, + 0.034587230533361435, + -0.04667776823043823, + -0.0002501000417396426, + 0.03447900339961052, + -0.029061995446681976, + 0.010710636153817177, + 0.04007689282298088, + -0.023881295695900917, + 0.0179014652967453, + 0.006110782269388437, + 0.020578201860189438, + -0.01500650029629469, + -0.009429517202079296, + -0.006099982187151909, + -0.007552023511379957, + -0.005395735148340464, + 0.0023396757896989584, + 0.0015338653465732932, + -0.016555141657590866, + 0.013400040566921234, + 0.010709203779697418, + -0.002625026972964406, + -0.03289380297064781, + -0.038787923753261566, + 0.010182651691138744, + 0.0206134170293808, + 0.002972082234919071, + 0.012639939785003662, + 0.05765330418944359, + -0.014497697353363037, + 0.03789500147104263, + 0.0061375172808766365, + -0.010730315931141376, + 0.011553439311683178, + -0.04061667621135712, + 0.008061900734901428, + -0.0002564333553891629, + 0.024204684421420097, + 0.03729419410228729, + 0.016721105203032494, + 0.03210021182894707, + -0.01515732891857624, + 0.03401481360197067, + 0.04406178742647171, + 0.02337091974914074, + 0.04382341727614403, + 0.024686142802238464, + -0.01199413277208805, + -0.02212212234735489, + 0.06562849879264832, + 0.04123197868466377, + 0.08971285074949265, + -0.029609210789203644, + -0.00874385517090559, + 0.0696697011590004, + -0.0021677990444004536, + -0.0613391175866127, + -0.01849447563290596, + -0.021228376775979996, + 0.02953433245420456, + -0.06477487832307816, + 0.028138993307948112, + 0.03366294503211975, + -0.022185519337654114, + -0.010263499803841114, + -0.03713761270046234, + -0.01837647520005703, + 0.06302173435688019, + -0.01625858247280121, + 0.02756308764219284, + -0.028896108269691467, + 0.017011983320116997, + -0.038656122982501984, + -0.04823439195752144, + 0.01824403926730156, + 0.012516619637608528, + 0.0011755641316995025, + -0.06920646131038666, + 0.007896209135651588, + -0.029779622331261635, + -0.030523160472512245, + 0.042403362691402435, + 0.057601023465394974, + -0.010804246179759502, + -0.026018500328063965, + -0.036912951618433, + 0.005591009743511677, + 0.020603954792022705, + 0.016032418236136436, + -0.042582154273986816, + -0.007512843236327171, + -0.0053900498896837234, + -0.03415041044354439, + -0.03988552838563919, + -0.025890657678246498, + 0.0162778589874506, + -0.018695881590247154, + -0.013722989708185196, + 0.08481793105602264, + 0.01860917918384075, + -0.050032805651426315, + 0.009221669286489487, + 0.01565500535070896, + -0.004637253936380148, + 0.12982375919818878, + -0.016654614359140396, + -0.010247977450489998, + -0.004296694416552782, + 0.025969287380576134, + 0.0453452467918396, + -0.014883776195347309, + 0.0034015942364931107, + 0.0010170796886086464, + -0.08054772019386292, + -0.039456095546483994, + -0.0002966192550957203, + 0.016323266550898552, + 0.02629399113357067, + -0.033465638756752014, + 0.029670309275388718, + 0.0024552601389586926, + -0.027301177382469177, + -0.008233056403696537, + -0.01301687303930521, + -0.013591605238616467, + -0.023213671520352364, + -0.005448440555483103, + -0.026616862043738365, + 0.0771588534116745, + -0.032763343304395676, + -0.03908584266901016, + 0.07088511437177658, + -0.02954719215631485, + -0.002545587019994855, + 0.016397986561059952, + -0.031041111797094345, + -0.024972369894385338, + -0.031311310827732086, + 0.020203327760100365, + -0.03662220016121864, + 0.03623244911432266, + 0.011524111032485962, + -0.02272047847509384, + 0.04921674355864525, + -0.04392993822693825, + -0.04407432675361633, + 0.029112476855516434, + 0.04241562262177467, + 0.020774105563759804, + 0.03059348464012146, + -0.04459496960043907, + -0.07215188443660736, + -0.06854422390460968, + -0.009911813773214817, + -0.012797129340469837, + -0.005387919954955578, + -0.008899079635739326, + -0.009932931512594223, + -0.0333603210747242, + 0.03461508825421333, + -0.047242388129234314, + -0.06508573889732361, + -0.009939000941812992, + 0.03242975473403931, + -0.07712285220623016, + -0.013491964899003506, + -0.04471468925476074, + -0.04447439685463905, + -0.006241007708013058, + 0.043077051639556885, + 0.0033556099515408278, + -0.023013519123196602, + -0.005833761766552925, + -0.010759284719824791, + -0.02705802395939827, + 0.01896766386926174, + -0.007475916296243668, + 0.038359202444553375, + 0.03835373371839523, + 0.009132224135100842, + 0.025483038276433945, + 0.024332843720912933, + 0.00942112598568201, + -0.011746695265173912, + 0.0133241917937994, + 0.020151304081082344, + 0.03843824565410614, + -0.04033486917614937, + -0.000577472907025367, + -0.0292915478348732, + -0.026673423126339912, + 0.019878940656781197, + 0.01177919004112482, + 0.005597956478595734, + -0.002879834733903408, + 0.011641975492238998, + -0.023222938179969788, + 0.014237897470593452, + 0.01685221493244171, + 0.012777944095432758, + 0.030376549810171127, + 0.022035885602235794, + -0.050061602145433426, + 0.06146303191781044, + 0.014640566892921925, + -0.00253224465996027, + -0.012246740981936455, + 0.022567251697182655, + 0.012994399294257164, + 0.0008972160285338759, + -0.03513539582490921, + 0.025063147768378258, + -0.01302836462855339, + 0.0368904173374176, + -0.0712563619017601, + 0.04751913622021675, + 0.0034896759316325188, + 0.01808268390595913, + 0.010986109264194965, + -0.020258383825421333, + 0.030445892363786697, + -0.031354885548353195, + 0.01327110081911087, + 0.0019441286567598581, + -0.023207856342196465, + 0.006217284593731165, + -0.0028031698893755674, + -0.02778881974518299, + 0.025614013895392418, + -0.003248323919251561, + 0.023758437484502792, + -0.012854103930294514, + -0.008107226341962814, + -0.0033069828059524298, + 0.06599246710538864, + -0.024971045553684235, + 0.04778031259775162, + 0.025200827047228813, + 0.012471992522478104, + 0.0028985454700887203, + 0.03279710188508034, + 0.013601843267679214, + -0.03513669967651367, + 0.0025356262922286987, + -0.01757741905748844, + 0.030187271535396576, + -0.059602197259664536, + 0.012165364809334278, + -0.025908883661031723, + -0.036329735070466995, + 0.027531268075108528, + 0.045050159096717834, + -0.03899483010172844, + -0.006411754060536623, + 0.048701152205467224, + -0.005394641309976578, + -0.03278425335884094, + 0.014897271059453487, + -0.0006079637678340077, + 0.016552330926060677, + -0.0008416080381721258, + 0.029748909175395966, + -0.0252139400690794, + -0.022791629657149315, + -0.005222782958298922, + -0.013555848971009254, + 0.06148663908243179, + 0.040571268647909164, + 0.016514571383595467, + -0.017976339906454086, + 0.006836123764514923, + -0.03982048109173775, + -0.01719563826918602, + 0.04561493173241615, + -0.005935597699135542, + 0.0032815998420119286, + -0.00011234983685426414, + 0.0360393300652504, + 0.05231163278222084, + -0.027110343798995018, + 0.04647531360387802, + -0.028469448909163475, + -0.010839554481208324, + -0.02905677631497383, + 0.026616206392645836, + 0.10134058445692062, + -0.02166236750781536, + -0.006118146702647209, + -0.0029846555553376675, + -0.02433156967163086, + -0.01938546448945999, + 0.023997727781534195, + -0.00925119686871767, + 0.015530847012996674, + -0.01226689200848341, + 0.00627518305554986, + 0.019481221213936806, + -0.020708080381155014, + -0.05351238697767258, + -0.015876060351729393, + 0.04876292124390602, + -0.023005785420536995, + 0.012262995354831219, + -0.030707238242030144, + -0.010294323787093163, + -0.04171137139201164, + -0.012152805924415588, + 0.02117076702415943, + -0.010317648760974407, + -0.022965820506215096, + -0.0020874193869531155, + 0.035217348486185074, + 0.006146084051579237, + 0.025371884927153587, + -0.01670101284980774, + 0.03897097334265709, + 0.01473136804997921, + 0.03543785959482193, + 0.027822937816381454, + -0.019165802747011185, + -0.023076778277754784, + 0.04337375983595848, + -0.02077958546578884, + 0.015075234696269035, + 0.03674762323498726, + -0.012096107937395573, + 0.019074995070695877, + -0.034683194011449814, + 0.006823048461228609, + 0.003195397090166807, + 0.020520301535725594, + 0.033310018479824066, + 0.06059185042977333, + -0.053259801119565964, + -0.016841012984514236, + 0.01857166923582554, + 0.01522494200617075, + 0.03409365192055702, + 0.019139202311635017, + -0.0024405040312558413, + 0.009988969191908836, + -0.043447792530059814, + -0.0166265070438385, + 0.011376205831766129, + -0.004898665472865105, + -0.047117460519075394, + 0.028334610164165497, + -0.013299642130732536, + 0.010913649573922157, + 0.02625812217593193, + -0.023708991706371307, + -0.019095929339528084, + -0.03507433459162712, + 0.041738107800483704, + 0.026469720527529716, + -0.03290686011314392, + 0.019519837573170662, + -0.0223606638610363, + -0.027210136875510216, + 0.004743830766528845, + 0.016324780881404877, + -0.07236829400062561, + 0.04860817641019821, + -0.024351293221116066, + 0.04801707714796066, + -0.04734937101602554, + -0.019875163212418556, + -0.015940800309181213, + 0.0008265815558843315, + 0.04448290914297104, + -0.030113372951745987, + -0.02801186591386795, + -0.02770545706152916, + 0.008762902580201626, + 0.05342136323451996, + -0.02793925628066063, + -0.00942933652549982, + 0.037838105112314224, + -0.002496451372280717, + 0.007100521586835384, + -0.020346829667687416, + 0.011415515094995499, + -0.09435650706291199, + 0.0016605494311079383, + -0.0024671375285834074, + -0.014697019010782242, + -0.03273411840200424, + 0.018283439800143242, + -0.032023850828409195, + -0.025499314069747925, + 0.016446847468614578, + -0.007924745790660381, + 0.008869540877640247, + -0.03166276216506958, + -0.012362796813249588, + -0.008377766236662865, + 0.009147964417934418, + 0.008366206660866737, + 0.016260698437690735, + 0.03701622039079666, + 0.01197658572345972, + -0.02768898382782936, + 0.003274125512689352, + -0.037275541573762894, + -0.023553213104605675, + -0.00955171138048172, + -0.03951485827565193, + -0.029789626598358154, + -0.01499171368777752, + -0.018967263400554657, + 0.02003614790737629, + -0.04569506272673607, + 0.027724623680114746, + 0.04974021390080452, + 0.035443760454654694, + -0.001663811388425529, + -0.051976900547742844, + 0.010806668549776077, + -0.06013990193605423, + -0.0032819113694131374, + -0.002695508999750018, + -0.008970220573246479, + -0.032093558460474014, + -0.01512946281582117, + 0.0119096077978611, + 0.0382271446287632, + 0.017934149131178856, + -0.009341797791421413, + 0.025497587397694588, + 0.005781125742942095, + 0.0009921211749315262, + -0.042992204427719116, + -0.03750663995742798, + 0.004577010404318571, + -0.02710685133934021, + 0.04999490827322006, + -0.025934014469385147, + -0.04007088765501976, + 0.026505572721362114, + 0.018953965976834297, + -0.019763648509979248, + -0.011919226497411728, + -0.06661702692508698, + 0.007473301142454147, + 0.019360722973942757, + -0.012237409129738808, + -0.03954796493053436, + -0.019279785454273224, + 0.0020901700481772423, + -0.004684727173298597, + 0.025126947090029716, + 0.0013254722580313683, + 0.016644243150949478, + -0.0158174317330122, + 0.05948362126946449, + -0.019597556442022324, + -0.026724470779299736, + 0.01581714302301407, + -0.03919946774840355, + 0.02527361735701561, + -0.061664778739213943, + -0.05584357678890228, + -0.010982159525156021, + 0.0027626745868474245, + 0.044777944684028625, + -0.07948541641235352, + 0.0023041421081870794, + -0.0015282073291018605, + -0.014651275239884853, + 0.018130211159586906, + -0.034800268709659576, + 0.03840797394514084, + 0.027824651449918747, + -0.021639849990606308, + -0.006443712394684553, + 0.06026878207921982, + 0.04191085323691368, + -0.022459156811237335, + 0.0032892015296965837, + 0.014401989057660103, + -0.004482561256736517, + -0.004676709417253733, + -0.06030062586069107, + 0.04261201247572899, + 0.028208371251821518, + 0.008904394693672657, + 0.0354846753180027, + 0.04394001513719559, + 0.039630744606256485, + -0.020814945921301842, + 0.017388654872775078, + -0.007293411996215582, + -0.019780011847615242, + 0.03495168685913086, + -0.03132344409823418, + -0.002363676205277443, + 0.03589751571416855, + -0.01630125194787979, + -0.033043328672647476, + -0.013243669643998146, + -0.052793458104133606, + -0.008415397256612778, + -0.044681333005428314, + 0.06282629817724228, + -0.023458609357476234 + ], + "start_index": 0, + "end_index": 134, + "token_count": 42, + "file": "bucle_1_10.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "e5a47781-d4fd-57d9-afe6-b0ddfeea1e0b", + "_source": { + "text": "encodeSHA256(\"payload_data\", checksum)\naddResult(checksum)", + "embedding": [ + 0.02477949671447277, + -0.004943625535815954, + -0.00937996618449688, + -0.04638896510004997, + -0.05204741284251213, + 0.013349992223083973, + -0.0623621866106987, + 0.05273517966270447, + -4.761563832289539e-05, + -0.02853245846927166, + -0.009465043433010578, + -0.04949047788977623, + 0.057846780866384506, + -0.005326976999640465, + -0.027738971635699272, + 0.055595189332962036, + 0.06258119642734528, + 0.002786939265206456, + -0.05436592549085617, + 0.07088659703731537, + -0.01361604779958725, + -0.03616885840892792, + 0.008203248493373394, + 0.04276098310947418, + -0.014248768799006939, + 0.006917449180036783, + 0.04414369538426399, + -0.02107771672308445, + 0.02288931794464588, + 0.03829088807106018, + 0.02864544466137886, + -0.04177854582667351, + -0.027825234457850456, + -0.007741323206573725, + 0.052693575620651245, + -0.009233660064637661, + -0.01404789462685585, + 0.04476594924926758, + 0.002964205574244261, + -0.02580464445054531, + -0.008405623026192188, + 0.025436921045184135, + 0.07600244134664536, + -0.036595553159713745, + 0.00016873607819434255, + 0.026875296607613564, + 0.013409465551376343, + -0.007302277255803347, + 0.03875499218702316, + 0.004617610480636358, + 0.006126364693045616, + -0.07281264662742615, + -0.02887299284338951, + 0.0039866152219474316, + 0.03172553330659866, + 0.057891782373189926, + 0.048364803194999695, + 0.014237256720662117, + -0.02167270891368389, + -0.022840548306703568, + -0.09672380238771439, + 0.09891068935394287, + 0.01798054948449135, + 0.008496823720633984, + 0.04538853093981743, + -0.014546573162078857, + 0.027643995359539986, + 0.011816720478236675, + -0.006254614796489477, + -0.03975160792469978, + -0.0035496787168085575, + -0.017424073070287704, + -0.02209153026342392, + 0.026620347052812576, + -0.019555093720555305, + 0.012098231352865696, + -3.125894727418199e-05, + -0.020956415683031082, + -0.006761751137673855, + -0.005576100666075945, + 0.0020680290181189775, + 0.011935665272176266, + 0.00407316442579031, + 0.00353378732688725, + -0.017273467034101486, + -0.02413608506321907, + -0.0707172378897667, + -0.03205369785428047, + 0.027919838204979897, + -0.012594848871231079, + -0.002273841528221965, + 0.05732189863920212, + -0.05035088583827019, + 0.053241997957229614, + -0.020153982564806938, + -0.010077976621687412, + 0.0118075180798769, + 0.03181686997413635, + -0.008945428766310215, + -0.0324995294213295, + -0.04895927011966705, + 0.007482442073523998, + 0.08567533642053604, + -0.08348071575164795, + -0.03305942937731743, + 0.023244820535182953, + -0.029358554631471634, + 0.012517898343503475, + -0.05210665240883827, + -0.03167523443698883, + -0.04217337816953659, + 0.038828473538160324, + 0.0028383880853652954, + 0.003955278545618057, + -0.028409965336322784, + 0.02705397643148899, + -0.003654422704130411, + -0.01271265558898449, + 0.018320519477128983, + 0.020181994885206223, + 0.0062533109448850155, + -0.025263318791985512, + -0.016883842647075653, + -0.03160513564944267, + -0.026251791045069695, + -0.012089301832020283, + -0.019534045830368996, + -0.013972941786050797, + -0.007444229442626238, + -0.013326934538781643, + 0.018390946090221405, + 0.0336577370762825, + -0.027506045997142792, + 0.006896937265992165, + 0.0027496747206896544, + 0.029235271736979485, + 0.001959491753950715, + 0.04004422575235367, + 0.038063183426856995, + 0.0019078052137047052, + 0.10430394858121872, + -0.0035579390823841095, + 0.004415319301187992, + 0.014723963104188442, + -0.026820627972483635, + 0.031867869198322296, + 0.006753674708306789, + -0.021440649405121803, + 0.019054830074310303, + 0.012885332107543945, + 0.03567884489893913, + -0.026954013854265213, + 0.007309312466531992, + -0.01952730491757393, + -0.009248643182218075, + -0.03922826051712036, + 0.0032787781674414873, + -0.011428019031882286, + 0.02645636722445488, + -0.00679042236879468, + 0.000817848660517484, + 0.0212866123765707, + 0.0047903405502438545, + -0.01821056380867958, + 0.016768744215369225, + 0.00419323006644845, + -0.0018681796500459313, + -0.00512354914098978, + -0.011112123727798462, + -0.03084053099155426, + 0.00844656303524971, + 0.023376071825623512, + 0.011692333966493607, + -0.00784000288695097, + 0.0047308276407420635, + 0.009089223109185696, + -0.034139279276132584, + -0.08260709047317505, + 0.021239914000034332, + -0.040263812988996506, + -0.044283974915742874, + 0.03520755097270012, + 0.011654091067612171, + 0.008398340083658695, + 0.006837792228907347, + 0.050384797155857086, + 0.024335363879799843, + -0.016725122928619385, + -0.02069385163486004, + -0.04587570205330849, + -0.013425123877823353, + -0.01559692807495594, + -0.09369020164012909, + -0.0007813630509190261, + -0.027623962610960007, + -0.0025806762278079987, + 0.026149341836571693, + 0.03099174238741398, + 0.008662673644721508, + -0.007237148936837912, + -0.033813443034887314, + 0.000313894561259076, + -0.0060090431943535805, + 0.0052258470095694065, + -0.035398513078689575, + 0.028464866802096367, + -0.002064123982563615, + 0.018895931541919708, + 0.0021551712416112423, + -0.027546511963009834, + 0.004160682205110788, + 0.022302864119410515, + -0.06979788839817047, + -0.05607201159000397, + 0.006169052794575691, + 0.0119562279433012, + -0.002492297673597932, + -0.006018630228936672, + -0.02484658733010292, + 0.0577193982899189, + 0.03404591605067253, + -0.0031251520849764347, + 0.022262370213866234, + 0.053573619574308395, + -0.03217098489403725, + 0.004266364499926567, + 0.012515583075582981, + -0.036421336233615875, + 0.041130803525447845, + 0.013121698051691055, + 0.024299878627061844, + 0.01903645135462284, + 0.012391836382448673, + -0.020686229690909386, + 0.04723371937870979, + -0.011458799242973328, + 0.02569654956459999, + -0.00019520134082995355, + -0.013549639843404293, + 0.054902367293834686, + 0.01897563226521015, + 0.02750231884419918, + 0.02129460498690605, + 0.02787788212299347, + -0.04676494374871254, + 0.030095497146248817, + 0.004641346167773008, + 0.01730743795633316, + -0.02643369883298874, + 0.025725897401571274, + -0.036890871822834015, + -0.03523145616054535, + -0.0085319047793746, + 0.012643879279494286, + 0.037576768547296524, + 0.00272573484107852, + -0.011094368062913418, + -0.01956873945891857, + 0.009063687175512314, + -0.0223138015717268, + 0.03796549141407013, + 0.0008840936352498829, + -0.03407350927591324, + 0.012703456915915012, + -0.0006151074776425958, + 0.0006904177134856582, + -0.00034426950151100755, + 0.03300992771983147, + 0.030306769534945488, + -0.023540111258625984, + -0.032842185348272324, + 0.024871481582522392, + -0.019142337143421173, + -0.024135630577802658, + -0.03524966165423393, + 0.022319713607430458, + -0.008849388919770718, + -0.036617837846279144, + -0.031611036509275436, + 0.009997911751270294, + -0.01370249129831791, + 0.031016912311315536, + -0.02562732808291912, + -0.03378646820783615, + 0.008850907906889915, + 0.030808743089437485, + 0.016281647607684135, + 0.004416434094309807, + -0.01573777385056019, + 0.012279137037694454, + -0.005045762751251459, + -0.006161343306303024, + -0.021711019799113274, + 0.023237377405166626, + -0.006283968687057495, + 0.01807948388159275, + -0.05793524533510208, + 0.01707606576383114, + -0.04093127325177193, + -0.07567819207906723, + 0.028405070304870605, + 0.017712760716676712, + 0.020206093788146973, + 0.0624089278280735, + 0.04303189739584923, + -0.0005005504353903234, + -0.027690494433045387, + -0.04143942520022392, + 0.008650291711091995, + -0.035075727850198746, + -0.0018658365588635206, + -0.01925390213727951, + -0.0094582699239254, + -0.00784400012344122, + 0.009319303557276726, + -0.019817136228084564, + -0.02974013425409794, + 0.021210869774222374, + 0.01928362064063549, + 0.02874143235385418, + -0.0075389305129647255, + 0.05066059157252312, + -0.008273450657725334, + -0.024961460381746292, + 0.005658886395394802, + 0.01604955829679966, + -0.023866768926382065, + -0.010001122951507568, + -0.003674873150885105, + 0.060132063925266266, + 0.03479422628879547, + 0.09805633127689362, + 0.027595574036240578, + -0.004903972148895264, + 0.05065533518791199, + 0.014568744227290154, + -0.023054517805576324, + -0.0027502980083227158, + -0.02299989014863968, + 0.006357107311487198, + -0.016642730683088303, + 0.028359930962324142, + -0.05262415111064911, + 0.02211417257785797, + -0.00619681878015399, + 0.008342597633600235, + 0.022189587354660034, + -0.018226275220513344, + 0.07290919125080109, + 0.01195848360657692, + -0.00604278314858675, + -0.023941030725836754, + -0.014008935540914536, + -0.03245712071657181, + -0.00011350220302119851, + -0.0038925816770642996, + 0.03976358845829964, + 0.02484080381691456, + -0.031793639063835144, + 0.01376508641988039, + 0.004292139783501625, + -0.05524393543601036, + 0.06982363760471344, + -0.060941074043512344, + -0.025344999507069588, + 0.04190979525446892, + -0.006059675477445126, + -0.016941135749220848, + -0.0018684425158426166, + -0.046186696738004684, + 0.020697329193353653, + 0.055355869233608246, + 0.012464691884815693, + -0.06686101108789444, + 0.09731460362672806, + 0.0027051286306232214, + 0.035567425191402435, + 0.011724414303898811, + 0.010994264855980873, + 0.0177182387560606, + -0.00849155243486166, + -0.015494297258555889, + -0.01349473837763071, + 0.016117235645651817, + -0.02800588309764862, + -0.016376376152038574, + 0.03687237203121185, + -0.02201176807284355, + -0.01493251696228981, + -0.03898093104362488, + 0.016176939010620117, + 0.011388559825718403, + -0.01322985626757145, + -0.02218877151608467, + 0.04065129533410072, + 0.026424473151564598, + -0.040961917489767075, + 0.04897540807723999, + -0.005094596184790134, + -0.03860727697610855, + 0.05675860121846199, + -0.0959497019648552, + -0.06556936353445053, + -0.00665286835283041, + -0.017067838460206985, + -0.005232928786426783, + -0.015538712963461876, + 0.007486189249902964, + 0.00016736198449507356, + 0.049495548009872437, + 0.09208366274833679, + -0.005146713927388191, + 0.04774390161037445, + -0.019031094387173653, + 0.04854101687669754, + -0.054252393543720245, + 0.04920347407460213, + -0.023736121132969856, + 0.031219564378261566, + -0.056960925459861755, + 0.038953747600317, + 0.00872048269957304, + -0.01988598145544529, + -0.038996320217847824, + -0.026924343779683113, + -0.060939569026231766, + -0.05756836384534836, + -0.043200090527534485, + -0.04856538400053978, + 0.027057450264692307, + 0.04698745906352997, + 0.014801351353526115, + 0.005884427111595869, + -0.03786751627922058, + -0.039917103946208954, + 0.007477632723748684, + 0.014609704725444317, + -0.019963787868618965, + -0.004784011747688055, + 0.04921548813581467, + -0.018043313175439835, + 0.055102284997701645, + 0.005028505809605122, + -0.01627667248249054, + -0.013967972248792648, + 0.06864570826292038, + -0.030112117528915405, + -0.03552890196442604, + 0.009054920636117458, + -0.011837057769298553, + 0.0005710971308872104, + -0.006403330713510513, + 0.0036031347699463367, + -0.039356157183647156, + -0.0381341390311718, + -0.025156717747449875, + -0.005214795470237732, + -0.007982134819030762, + -0.007671934086829424, + -0.02079470455646515, + 0.015209751203656197, + -0.026222454383969307, + 0.005926501005887985, + 0.021154040470719337, + -0.049103349447250366, + 0.008087501861155033, + -0.0010234997607767582, + -0.03415875509381294, + -0.01773914135992527, + -0.001474424498155713, + 0.06407231092453003, + 0.028575491160154343, + 0.0005765511305071414, + -0.034671682864427567, + 0.005386987701058388, + 0.022974276915192604, + -0.088401198387146, + -0.0073843481950461864, + -0.015106180682778358, + 0.03948338329792023, + 0.007336745969951153, + 0.0024936182890087366, + 0.007042363751679659, + -0.06243423372507095, + 0.05485594645142555, + 0.0026474844198673964, + -0.011384942568838596, + 0.02910505421459675, + 0.0020509501919150352, + 0.04082290828227997, + 0.0447336882352829, + 0.024711066856980324, + 0.02065843529999256, + -0.009382394142448902, + 0.020586000755429268, + -0.026145998388528824, + -0.011764825321733952, + 0.02155458740890026, + -0.06031512841582298, + 0.035169292241334915, + -0.005788476672023535, + -0.04099096357822418, + -0.0010521265212446451, + 0.00251338304951787, + -0.023129936307668686, + -0.035351067781448364, + -0.01161291915923357, + -0.03630585968494415, + 0.023344827815890312, + -0.0023435791954398155, + -0.0013288918416947126, + 0.06337016820907593, + -0.011769341304898262, + 0.07018934935331345, + -0.03328670933842659, + 0.025494826957583427, + 0.013811406679451466, + -0.03323259949684143, + -0.0601724237203598, + 0.020952865481376648, + -0.03070002980530262, + 0.003022356890141964, + 0.02361915446817875, + 0.05336408689618111, + -0.06266491115093231, + -0.015788093209266663, + -0.038021158427000046, + -0.024021925404667854, + -0.006636874750256538, + -0.050014931708574295, + 0.002809294033795595, + 0.025910228490829468, + 0.0012328712036833167, + -0.0222006943076849, + 0.02581685408949852, + -0.03367007151246071, + -0.013188713230192661, + 0.008439777418971062, + -0.031730297952890396, + 0.008291839621961117, + -0.03293142467737198, + -0.02201639488339424, + 0.04290187358856201, + -0.06267470121383667, + 0.023299112915992737, + 0.034708309918642044, + -0.03435731306672096, + 0.009981786832213402, + -0.009527813643217087, + 0.040760792791843414, + -0.023022666573524475, + -0.010842058807611465, + -0.02496924437582493, + 0.0076773460023105145, + -0.011024044826626778, + -0.023815372958779335, + 0.06979964673519135, + -0.02742268145084381, + 0.0071817380376160145, + -0.015503494068980217, + -0.007019682787358761, + 0.020375989377498627, + -0.02486560493707657, + -0.04465842619538307, + -0.0004612552293110639, + 0.04442310333251953, + 0.01883745566010475, + 0.01081563625484705, + -0.0007862747879698873, + 0.03209516778588295, + 0.0423152782022953, + -0.03292279317975044, + 0.032079122960567474, + -0.03779592365026474, + -0.038292236626148224, + -0.0383082814514637, + -0.06820613890886307, + -0.01175635401159525, + 0.0119436951354146, + -0.012424813583493233, + -0.015317516401410103, + 0.029777638614177704, + -0.007848160341382027, + 0.020780615508556366, + -0.050226472318172455, + -0.014144469983875751, + -0.05035260319709778, + 0.01207785401493311, + -0.02968633361160755, + 0.050118159502744675, + 0.026886552572250366, + -0.05523837357759476, + -0.024743270128965378, + -0.06531808525323868, + 0.05749790370464325, + 0.01967952772974968, + -0.06677854061126709, + -0.021419625729322433, + -0.04176119714975357, + -0.02224918082356453, + 0.03764105588197708, + 0.008737245574593544, + -0.025974849238991737, + 0.04526223987340927, + 0.031414229422807693, + -0.015039162710309029, + -0.012586540542542934, + 0.028869394212961197, + -0.017784645780920982, + 0.03709812089800835, + -0.010876857675611973, + 0.041868384927511215, + -0.02999298833310604, + 0.00732359429821372, + -0.02208082191646099, + -0.001869130996055901, + -0.022649744525551796, + 0.01134362630546093, + 0.013780509121716022, + -0.004569705575704575, + -0.010922272689640522, + -0.03464748337864876, + 0.006546470336616039, + 0.047663863748311996, + -0.012295867316424847, + 0.00799690093845129, + 0.03921307250857353, + -0.03073907643556595, + -0.03819843381643295, + 0.041322775185108185, + -0.0257433969527483, + 0.009337530471384525, + -0.06319429725408554, + -0.008085020817816257, + 0.047217655926942825, + 0.016793392598628998, + 0.01524069719016552, + -0.006714635994285345, + -0.02556900680065155, + 0.016627449542284012, + -0.00027652166318148375, + -0.045535858720541, + -0.019017774611711502, + 0.029968218877911568, + 0.0023472150787711143, + -0.008471578359603882, + -0.008150704205036163, + 0.021230431273579597, + -0.023406624794006348, + -0.028913090005517006, + 0.04668884351849556, + -0.04187247157096863, + 0.07108904421329498, + -0.0483645498752594, + 0.0015108785592019558, + -0.009871694259345531, + -0.011717922054231167, + 0.024142248556017876, + 0.032530974596738815, + -0.05761023238301277, + -0.0334743931889534, + -0.06065665930509567, + -0.01611020788550377, + -0.014079121872782707, + -0.04497349634766579, + 0.018084507435560226, + 0.02818884514272213, + -0.0016283293953165412, + 0.06825488805770874, + 0.016531292349100113, + -0.021617494523525238, + -0.0024739063810557127, + 0.04353136569261551, + 0.007325493730604649, + 0.018091818317770958, + 0.03282323479652405, + 0.040236517786979675, + -0.02036513201892376, + 0.020990006625652313, + -0.0304613895714283, + -0.020096248015761375, + -0.04830654710531235, + -0.053857214748859406, + -0.004027221817523241, + -0.01263715885579586, + -0.004769146908074617, + -0.08188294619321823, + 0.038273949176073074, + 0.03987561911344528, + -0.0015308903530240059, + -0.05899278447031975, + -0.02248689904808998, + -0.002053346950560808, + -0.010996110737323761, + -0.047445688396692276, + -0.020730720832943916, + -0.014599725604057312, + -0.005292912479490042, + 0.035276588052511215, + 0.0024086388293653727, + -0.002960748737677932, + 0.05625271424651146, + -0.049355391412973404, + 0.010064703412353992, + 0.012314511463046074, + -0.08734510093927383, + -0.02062477171421051, + -0.010515272617340088, + 0.01153588853776455, + -0.04209994524717331, + -0.006138002499938011, + -0.024752208963036537, + 0.021716346964240074, + -0.00047112812171690166, + -0.021771665662527084, + 0.04836153984069824, + -0.01724519208073616, + 0.013542886823415756, + -0.031629033386707306, + -0.0320005938410759, + 0.009646483696997166, + -0.01733313873410225, + 0.05768754705786705, + -0.007097369991242886, + -0.039493411779403687, + -0.020978983491659164, + 0.01596860960125923, + -0.004550919868052006, + 0.015986712649464607, + -0.023934217169880867, + 0.017740147188305855, + -0.08181088417768478, + -0.03251223266124725, + 0.012663192115724087, + 0.04132171347737312, + 0.01582939922809601, + 0.021617265418171883, + 0.01916876807808876, + 0.016847003251314163, + -0.006199931725859642, + 0.046250633895397186, + 0.0037876046262681484, + -0.04646328464150429, + -0.0025942171923816204, + 0.032005973160266876, + -0.05894235521554947, + -0.0334303118288517, + 0.0035518419463187456, + 0.020213184878230095, + -0.029168058186769485, + -0.006052843295037746, + 0.009638589806854725, + 0.0006225722027011216, + -0.006838674657046795, + -0.011617093347012997, + -0.049258455634117126, + 0.0005457799998112023, + 0.04220284894108772, + -0.028345733880996704, + 0.0041586533188819885, + -0.013364319689571857, + -0.058430686593055725, + -0.008301381953060627, + -0.05849830061197281, + 0.00569697143509984, + 0.01633157767355442, + 0.024523833766579628, + -0.013362283818423748, + 0.06572653353214264, + 0.019023779779672623, + -0.001249051303602755, + -0.02138642594218254, + 0.010083195753395557, + -0.013357268646359444, + -0.021587999537587166, + 0.03774803504347801, + -0.0035185692831873894, + -0.033809397369623184, + -0.016329340636730194, + -0.04123571515083313, + -0.01403133012354374, + 0.04548878222703934, + 0.006692640017718077, + 0.014066757634282112, + 0.001665001269429922, + -0.008219936862587929, + 0.00028833106625825167, + 0.06413739174604416, + 0.002719635609537363, + 0.030840054154396057, + -0.03815581277012825, + -0.02309853956103325, + 0.004425870720297098, + 0.02517888695001602, + -0.012749412097036839, + -0.007018411532044411, + 0.03368347883224487, + 0.006381050683557987, + -0.04691917076706886, + -0.005748436786234379, + 0.00015660841017961502, + 0.019091663882136345, + 0.002474496141076088, + 0.0028060523327440023, + 0.021936869248747826, + -0.01893257349729538, + -0.022387664765119553, + 0.0894104540348053, + -0.0590023510158062, + -0.02720004692673683, + 0.0023261732421815395, + 0.027049291878938675, + 0.00048075354425236583, + 0.021005326882004738, + 0.02384190261363983, + -0.026932982727885246, + -0.0314786434173584, + 0.02028658613562584, + -0.05379638448357582, + -0.018463676795363426, + -0.037895336747169495, + 0.0018738189246505499, + 0.026700273156166077, + -0.038574784994125366, + -0.0071685113944113255, + 0.06194254755973816, + 0.0024722381494939327, + 0.013504773378372192, + -0.017301583662629128, + -0.0385320819914341, + -0.05085884407162666, + -0.007066648919135332, + -0.03983714058995247, + 0.012209851294755936, + 0.06037843972444534, + -0.003223016392439604, + 0.021105442196130753, + 0.043029144406318665, + 0.008402430452406406, + 0.036395397037267685, + 0.029667284339666367, + -0.0342063345015049, + -0.01998772844672203, + -0.010280883871018887, + 0.00604425510391593, + -0.02807614393532276, + -0.0031983330845832825, + -0.042155977338552475, + 0.03745591267943382, + -0.03089730069041252, + 0.0036836580839008093, + 0.023592576384544373, + 0.018418969586491585, + 0.00019342284940648824, + -0.009603140875697136, + 0.005742404609918594, + -0.0424453467130661, + -0.004713661037385464, + -0.012170140631496906, + 0.001395697589032352, + -0.02727525681257248, + -0.0026944593992084265, + -0.03376055136322975, + 0.014801893383264542, + -0.020664824172854424, + 0.015905052423477173, + -0.020060518756508827, + 0.0024201110936701298, + 0.014144414104521275, + -0.012854274362325668, + 0.006212076172232628, + -0.00224122847430408, + -0.03573682904243469, + -0.019412467256188393, + -0.03049015812575817, + 0.045386120676994324, + -0.03041469119489193, + 0.010378241539001465, + 0.02969498187303543, + -0.026278208941221237, + -0.023700157180428505, + -0.018298165872693062, + -0.024991393089294434, + 0.030708158388733864, + 0.022222260013222694, + 0.022531911730766296, + -0.018626157194375992, + 0.026167886331677437, + 0.013949286192655563, + -0.04661138728260994, + 0.03415398299694061, + -0.015463200397789478, + -0.011645346879959106, + -0.027333326637744904, + 0.010877844877541065, + -0.0017998925177380443, + 0.03691773861646652, + 0.07608062773942947, + -0.0404168963432312, + 0.022126968950033188, + 0.03822901472449303, + -0.00846087746322155, + 0.03679632768034935, + 0.01902191899716854, + -0.05029233545064926, + 0.011371176689863205, + -0.0053169019520282745, + 0.04372876137495041, + -0.0013364804908633232, + 0.03920878469944, + -0.03440115228295326, + 0.05243001878261566, + 0.0005667827208526433, + 0.03901805356144905, + -0.0675063505768776, + 0.02062988467514515, + -0.060126133263111115, + -0.04020053893327713, + -0.021745653823018074, + -0.0034905874636024237, + 0.04102979600429535, + 0.016503045335412025, + -0.002408629981800914, + -0.007062396500259638, + -0.029470235109329224, + -0.05176062136888504, + 0.022805720567703247, + 0.006269287317991257, + 0.03925768658518791, + -0.017490098252892494, + 0.01673063263297081, + 0.06247071549296379, + 0.04851335287094116, + 0.05699560046195984, + -0.025872360914945602, + -0.02820785902440548, + -0.020278366282582283, + -0.027994932606816292, + -0.010389348492026329, + 0.0008499053074046969, + 0.04250066354870796, + 0.01175230834633112, + -0.0020665107294917107, + -0.017316285520792007, + -0.009472925215959549, + 0.00576248113065958, + -0.029437223449349403, + -0.025462759658694267, + 0.01839509978890419, + -0.018540820106863976, + -0.012222809717059135, + -0.008365425281226635, + -0.018788078799843788, + 0.013944641686975956, + -0.020745914429426193, + -0.049941204488277435, + -0.022266792133450508, + -0.002107555279508233, + 0.03419686108827591, + 0.028243286535143852, + -0.013158725574612617, + -0.03525645285844803, + -0.007063449360430241, + 0.03567167744040489, + 0.027819763869047165, + -0.04782918095588684, + -0.04374270513653755, + -0.021489057689905167, + -0.015011541545391083, + -0.023063773289322853, + 0.025797948241233826, + -0.015764400362968445, + -0.011132797226309776, + -0.007140229921787977, + -0.02878378890454769, + -0.04435199871659279, + 0.02519269473850727, + 0.010395817458629608, + 0.030998827889561653, + 0.015552080236375332, + -0.021806813776493073, + -0.004234078340232372, + 0.00886572152376175, + 0.014038117602467537, + -0.014258627779781818, + -0.029569583013653755, + -0.017196545377373695, + 0.0012632632860913873, + 0.045141492038965225, + -0.013741755858063698, + 0.03927301615476608, + 0.006276722531765699, + 0.052652087062597275, + -0.0333624966442585, + -0.014227268286049366, + 0.039902448654174805, + -0.0029878648929297924, + 0.024441199377179146, + 0.009346049278974533, + -0.0017293132841587067, + 0.027214108034968376, + -0.04324813932180405, + 0.023610612377524376, + 0.0015608815010637045, + -0.018053479492664337, + -0.004047413822263479, + -0.008294833824038506, + -0.013221656903624535, + -0.014758971519768238, + 0.054068684577941895, + 0.0343075767159462, + -0.037081871181726456, + 0.004871414043009281, + -0.06842033565044403, + -0.012939134612679482, + -0.02846689708530903, + 0.02441948652267456, + 0.03706981614232063, + 0.021651901304721832, + 0.016383027657866478, + 0.003861364210024476, + 0.03556395322084427, + 0.005045042838901281, + -0.014905571937561035 + ], + "start_index": 0, + "end_index": 58, + "token_count": 16, + "file": "hash_SHA256_para_integridad.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "77b30e33-990b-5b1f-9f5d-5278422438ed", + "_source": { + "text": "addParam(\"rol\", r)\nif(r, [\"admin\", \"editor\", \"root\"], \"in\")\n acceso = True\nend()\naddResult(acceso)", + "embedding": [ + 0.03216967359185219, + -0.034647971391677856, + -0.007592507638037205, + -0.05787830054759979, + 0.014391249045729637, + -0.04538172110915184, + -0.013780131936073303, + 0.03222023695707321, + 0.09071018546819687, + 0.005218308884650469, + -0.038231298327445984, + -0.020049316808581352, + 0.06733723729848862, + -0.008401226252317429, + -0.028941476717591286, + 0.08611368387937546, + -0.0069925193674862385, + -0.007975547574460506, + -0.033268995583057404, + 0.014146932400763035, + -0.026951827108860016, + -0.002231913385912776, + 0.00667313439771533, + -0.004847088363021612, + 0.06467398256063461, + 0.00514571089297533, + -0.039139728993177414, + 0.04711560904979706, + 0.05406631901860237, + -0.028739994391798973, + -0.02390703186392784, + 0.024390649050474167, + -0.05726035684347153, + 0.007843613624572754, + 0.015022198669612408, + -0.010590537451207638, + 0.0018118852749466896, + -0.048275645822286606, + 0.01811874657869339, + 0.03999178111553192, + 0.0018166950903832912, + -0.004265537951141596, + 0.07488717138767242, + -0.006309232674539089, + 0.0006967883673496544, + -0.06428749114274979, + -0.014954142272472382, + 0.014432284981012344, + -0.018124202266335487, + -0.023338589817285538, + -0.043277084827423096, + 0.02641267701983452, + -0.03987564519047737, + 0.011895421892404556, + -0.05125005543231964, + -0.0834730789065361, + 0.025025339797139168, + -0.022119062021374702, + 0.027979429811239243, + 0.0271313339471817, + -0.03005269169807434, + -0.04477371647953987, + -0.026893435046076775, + -0.014823805540800095, + 0.016284503042697906, + 0.05363069474697113, + 0.021277016028761864, + 0.002858908614143729, + -0.06032539904117584, + -0.0034618042409420013, + -0.020082177594304085, + -0.00962933711707592, + 0.005504311993718147, + -0.016683120280504227, + -0.01456373743712902, + 0.0392155796289444, + 0.044561099261045456, + -0.03755853697657585, + 0.03679024055600166, + -0.03568490967154503, + -0.008469036780297756, + 0.035288408398628235, + 0.02015240304172039, + -0.012972131371498108, + 0.014503056183457375, + 0.031222857534885406, + 0.03372262418270111, + -0.014208353124558926, + -0.009410448372364044, + 0.015344733372330666, + 0.0058092987164855, + -0.03244904428720474, + -0.04303223639726639, + 0.0035135189536958933, + 0.0033398629166185856, + 0.02060057781636715, + 0.004206972662359476, + 0.04289925843477249, + -0.0126088447868824, + -0.03638260066509247, + 0.00010656053200364113, + -0.008496097289025784, + 0.013654807582497597, + 0.04486127197742462, + 0.042357563972473145, + 0.06099765747785568, + -0.06570901721715927, + 0.011653396300971508, + 0.01473303698003292, + -0.010902795009315014, + 0.022653674706816673, + 0.04062241315841675, + -0.011352725327014923, + 0.028193552047014236, + 0.020645860582590103, + 0.05459349974989891, + -0.021337537094950676, + -0.04144510626792908, + -0.015053932555019855, + -0.012392560951411724, + -0.05094226449728012, + 0.003948862198740244, + -0.01686997525393963, + -0.03840726241469383, + 0.005162591114640236, + -0.021683039143681526, + -0.040906790643930435, + 0.015885669738054276, + 0.02672170288860798, + -0.016524076461791992, + -0.01570141687989235, + -0.00028797908453270793, + -0.010301841422915459, + 0.046345654875040054, + 0.021440524607896805, + -0.011458246037364006, + 0.018459023907780647, + -0.03021048754453659, + -0.005377148278057575, + 0.007403133437037468, + -0.01805359311401844, + 0.012297549284994602, + -0.003382614580914378, + -0.020818786695599556, + 0.018033796921372414, + 0.041212137788534164, + -0.001382180955260992, + 0.011043884791433811, + -0.038242243230342865, + -0.01703641749918461, + -0.000684368540532887, + -0.0014526696177199483, + -0.0875757560133934, + -0.03598631173372269, + -0.013670285232365131, + 0.03528883308172226, + 0.003046833910048008, + 0.01426925603300333, + -0.004712244495749474, + -0.010386807844042778, + -0.012410944327712059, + -0.023510538041591644, + 0.02134949527680874, + -0.04455586150288582, + -0.038895200937986374, + -0.0084611214697361, + 0.025283625349402428, + -0.0501815602183342, + -0.060175422579050064, + 0.011563998647034168, + 0.015309524722397327, + 0.021716022863984108, + -0.0056892442516982555, + -0.020191363990306854, + -0.006721057929098606, + 0.011737363412976265, + -0.03598107025027275, + -0.018352515995502472, + 0.005587310064584017, + -0.027047161012887955, + 0.013843917287886143, + -0.014254303649067879, + -0.010078851133584976, + 0.017444608733057976, + 0.009802000597119331, + 0.0020509969908744097, + -0.0013476010644808412, + -0.03494967892765999, + -0.035057537257671356, + -0.03135349601507187, + -0.011236794292926788, + 0.004016689024865627, + -0.07207634299993515, + -0.01079383585602045, + -0.019928263500332832, + 0.0064572906121611595, + 0.015015610493719578, + -0.014492244459688663, + 0.0016918430337682366, + 0.0007617537048645318, + -0.02220161072909832, + -0.010867306031286716, + -0.014766843058168888, + 0.007173108868300915, + 0.012048996053636074, + -0.003296775510534644, + 0.03595363348722458, + -0.005431989673525095, + -0.014931142330169678, + 0.012844067066907883, + 0.030420195311307907, + 0.01801377162337303, + 0.06212660297751427, + 0.03590283915400505, + 0.017194032669067383, + -0.010968035086989403, + -0.002961129182949662, + 0.005172846373170614, + -0.0018595836590975523, + 0.00033965197508223355, + -0.00036699254997074604, + 0.018099293112754822, + -0.04510167986154556, + -0.009829200804233551, + -0.016049910336732864, + 0.002596392994746566, + 0.02263731136918068, + -0.005685979966074228, + 0.004443720914423466, + 0.013369467109441757, + -0.03165878728032112, + -0.023158548399806023, + 0.014633255079388618, + -0.012596887536346912, + 0.00587861705571413, + 0.019122973084449768, + 0.007602090947329998, + -0.0048857745714485645, + -0.015248253010213375, + 0.029552696272730827, + -0.0015623209765180945, + 0.003965318668633699, + 0.03948219493031502, + 0.010694598779082298, + -0.009695873595774174, + -0.009323984384536743, + -0.018400564789772034, + 0.03594735264778137, + -0.020266706123948097, + -0.06966746598482132, + 0.04759534075856209, + 0.011700582690536976, + 0.004409529268741608, + 0.006629667244851589, + 0.009227356873452663, + 0.02288307249546051, + -0.010051988996565342, + -0.0031080730259418488, + 0.030571306124329567, + -0.009895186871290207, + -0.03647569194436073, + -0.02385803312063217, + -0.01886347308754921, + 0.02951643243432045, + -0.0008698684396222234, + -0.010121668688952923, + -0.027720488607883453, + 0.0010219562100246549, + -0.045731134712696075, + -0.026400761678814888, + -0.008808494545519352, + -0.009673629887402058, + -0.011858504265546799, + -0.0394861213862896, + 0.014285605400800705, + 0.013843783177435398, + -0.0008274392457678914, + -0.034543227404356, + 0.06641043722629547, + -0.023291291669011116, + 0.005660684779286385, + 0.016589419916272163, + 0.04702858254313469, + -0.02646888978779316, + 0.006758426316082478, + 0.047193121165037155, + 0.013646786101162434, + 0.06543130427598953, + 0.040015801787376404, + -0.028869327157735825, + -0.026556536555290222, + 0.02014392986893654, + -0.012118841521441936, + 0.04646948352456093, + -0.0414523221552372, + -0.03613996505737305, + 0.04815244674682617, + 0.040188997983932495, + -0.04275314509868622, + 0.03791195526719093, + -0.013796146959066391, + -0.060230690985918045, + 0.02438158169388771, + -0.005921957083046436, + 0.002994515234604478, + -0.017857568338513374, + 0.01064484752714634, + 0.02444598451256752, + -0.01894274167716503, + 0.035361286252737045, + 0.08670204132795334, + -0.048442959785461426, + 0.013064401224255562, + 0.01086878776550293, + 0.03358802944421768, + -0.0208817720413208, + 0.02990242838859558, + 0.02413775958120823, + 0.02198164165019989, + -0.028290167450904846, + 0.03787946701049805, + -0.0556408055126667, + -0.013534562662243843, + -0.04790794849395752, + 0.03241433575749397, + -0.0009830722119659185, + 0.019975025206804276, + 0.013580113649368286, + 0.0010457519674673676, + 0.016480082646012306, + 0.0012591585982590914, + 0.02358919382095337, + 0.020527498796582222, + -0.021939119324088097, + 0.011181872338056564, + 0.022317517548799515, + -0.005878028925508261, + 0.02072477713227272, + -0.04055606201291084, + 0.005197607912123203, + 0.017957912757992744, + -0.02949778363108635, + 0.0025793719105422497, + 0.007992115803062916, + -0.0019008569652214646, + -0.004682615399360657, + -0.03901103511452675, + 0.04927775636315346, + 0.04693304002285004, + -0.04565393924713135, + -0.011079785414040089, + 0.011629910208284855, + 0.005813164636492729, + 0.011981048621237278, + -0.02121017314493656, + 0.011678332462906837, + -0.011265117675065994, + -0.05523960664868355, + -0.053307000547647476, + -0.013406019657850266, + -0.033589690923690796, + -0.01966240629553795, + 0.051599469035863876, + -0.009803337045013905, + -0.04430261626839638, + 0.0229896642267704, + -0.03035460226237774, + 0.004794510547071695, + 0.03733053430914879, + -0.0021075280383229256, + -0.12617488205432892, + -0.04217904806137085, + 0.054922495037317276, + 0.012976322323083878, + 0.001070248894393444, + -0.021788716316223145, + 0.017742715775966644, + 0.0130105996504426, + -0.007661269512027502, + 0.02175973914563656, + 0.0474533811211586, + -0.00413415627554059, + -0.0461045578122139, + 0.007139103952795267, + -0.055255476385354996, + -0.03384685888886452, + 0.0473257340490818, + -0.028677476570010185, + 0.03238387778401375, + -0.029076537117362022, + 0.04366043582558632, + 0.032922741025686264, + -0.006018562708050013, + 0.013779309578239918, + 0.04555179551243782, + 0.006461769808083773, + -0.06699150800704956, + 0.008145824074745178, + 0.038226500153541565, + -0.007859012112021446, + -0.0009050028747878969, + 0.041313286870718, + -0.07337642461061478, + -0.06857774406671524, + 0.02577667124569416, + 0.03742855042219162, + 0.013544381596148014, + -0.03318061679601669, + -0.013007644563913345, + 0.04893963783979416, + 0.015654226765036583, + -0.0031873625703155994, + 0.02909102477133274, + -0.0014528672909364104, + -0.01853756047785282, + -0.006030745338648558, + 0.07172077149152756, + -0.007996791042387486, + -0.030034558847546577, + -0.01607503928244114, + -0.017311489209532738, + 0.0377754382789135, + -0.044740550220012665, + -0.04725858196616173, + -0.0091251190751791, + -0.022001709789037704, + -0.034198760986328125, + -0.057592667639255524, + 0.004478779621422291, + 0.08261259645223618, + -0.03970438987016678, + -0.01435778010636568, + 0.06263425946235657, + -0.004170455504208803, + -0.005951639264822006, + 0.05011850595474243, + 0.012157426215708256, + 0.02690211310982704, + 0.0011501123663038015, + -0.010328667238354683, + 0.028760256245732307, + -0.0014370298013091087, + 0.0017433924367651343, + 0.016117960214614868, + -0.006671839859336615, + 0.015194258652627468, + -0.027179693803191185, + -0.031520720571279526, + -0.030405648052692413, + -0.028324170038104057, + -0.015120266936719418, + -0.050412192940711975, + 0.008371179923415184, + 0.021523118019104004, + -0.018100721761584282, + -0.0009304978884756565, + -0.04962648078799248, + -0.011007179506123066, + 0.009842878207564354, + -0.031215371564030647, + -0.02002781070768833, + 0.05773472785949707, + 0.05437067896127701, + 0.01662178337574005, + -0.02506258524954319, + -0.006295566447079182, + 0.0020414339378476143, + -0.04576040059328079, + -0.0764572024345398, + 0.011791549623012543, + 0.04138007387518883, + -0.020169446244835854, + -0.018719159066677094, + -0.017385827377438545, + -0.02766433358192444, + 0.01843276433646679, + 0.05371752008795738, + -0.04056282714009285, + 0.014924095012247562, + 0.029314912855625153, + 0.0343630351126194, + -0.020290451124310493, + 0.01948879100382328, + -0.03768865764141083, + 0.06206539273262024, + 0.02821420319378376, + 0.00023052978212945163, + -0.062405459582805634, + 0.005319216754287481, + -0.004726686980575323, + 0.023917073383927345, + -0.028101768344640732, + 0.02508498914539814, + -0.037769220769405365, + -0.021573355421423912, + -0.009354198351502419, + -0.02517867274582386, + -0.05345793813467026, + -0.054406795650720596, + 0.02423146925866604, + 0.016351599246263504, + 0.025262797251343727, + 0.011969056911766529, + 0.030096422880887985, + -0.031579747796058655, + -0.015973815694451332, + 0.014065046794712543, + -0.0064942361786961555, + 0.014194374904036522, + 0.02441249042749405, + 0.04423878714442253, + -0.07259773463010788, + -0.003663132432848215, + -0.0213770791888237, + -0.025825850665569305, + 0.01725263148546219, + 0.021006111055612564, + -0.013215191662311554, + -0.01788836158812046, + 0.025993023067712784, + 0.01758292317390442, + 0.022138115018606186, + 0.04816249758005142, + -0.040199991315603256, + 0.015422678552567959, + 0.05227220430970192, + 0.02998153306543827, + 0.03238449618220329, + 0.0035477890633046627, + -0.0025021641049534082, + 0.054629284888505936, + 0.014926450327038765, + 0.0005095723900012672, + -0.02199598215520382, + 0.03171434998512268, + -0.004959257319569588, + 0.036687515676021576, + 0.014604385010898113, + -0.004483368247747421, + 0.018046626821160316, + 0.01251585315912962, + 0.01646442338824272, + -0.002730508102104068, + 0.0024854952935129404, + -0.016724994406104088, + -0.006993490736931562, + -0.03205812722444534, + 0.010259274393320084, + 0.02224968560039997, + -0.02787773497402668, + 0.011144558899104595, + -0.004702333360910416, + 0.00893920287489891, + 0.003049766644835472, + -0.003948344383388758, + -0.010297904722392559, + 0.010762077756226063, + -0.0006233447347767651, + 0.024657446891069412, + -0.01079702191054821, + 0.010441502556204796, + -0.05999339744448662, + -0.0014169005444273353, + 0.012454808689653873, + 0.0039777071215212345, + 0.009135640226304531, + 0.02642068639397621, + 0.01806584931910038, + 0.025433441624045372, + 0.02166758105158806, + -0.01939895562827587, + 0.027458107098937035, + 0.017834987491369247, + -0.026319462805986404, + 0.05305061116814613, + -0.04876507446169853, + 0.01624899171292782, + 0.06765717267990112, + 0.024172555655241013, + 0.02826964668929577, + 0.029702654108405113, + 0.046961795538663864, + -0.0004599415115080774, + 0.05974670127034187, + -0.012741797603666782, + -0.03685210272669792, + 0.009059379808604717, + 0.011276605539023876, + -0.03318123519420624, + -0.0017886769492179155, + -0.046831488609313965, + -0.02208476886153221, + -0.027252988889813423, + 0.01964997500181198, + 0.061431918293237686, + 0.017889410257339478, + -0.02530062571167946, + -0.012321784161031246, + -0.010977867059409618, + -0.014178520068526268, + 0.030235646292567253, + 0.06508417427539825, + 0.010976813733577728, + 0.036854662001132965, + 0.005304659251123667, + -0.003926196601241827, + -0.06891346722841263, + 0.024442357942461967, + -0.02176598459482193, + 0.04007508605718613, + -0.01019321195781231, + 0.018311474472284317, + 0.023430565372109413, + -0.025034669786691666, + 0.02647770754992962, + 0.022286618128418922, + -0.0008542468422092497, + -0.006041584070771933, + -0.023918792605400085, + -0.05057144910097122, + -0.008039643988013268, + 0.027090013027191162, + 0.007379617542028427, + 0.06571437418460846, + 0.027823401615023613, + 0.0002272824349347502, + -0.02319774590432644, + 0.007616641465574503, + 0.005474238656461239, + 0.006420194171369076, + 0.014118298888206482, + 0.015337671153247356, + -0.01722767949104309, + 0.017930686473846436, + 0.028186487033963203, + -0.004224902018904686, + -0.0562458373606205, + -0.022167878225445747, + -0.038305845111608505, + -0.04343884438276291, + 0.0064373929053545, + -0.023850509896874428, + 0.002390858018770814, + 0.05832386389374733, + 0.018104299902915955, + 0.005501679610460997, + 0.0559050478041172, + -0.01848405785858631, + 0.09791094809770584, + -0.021534088999032974, + 0.03500472754240036, + -0.008062330074608326, + -0.0035876387264579535, + 0.055213380604982376, + -0.0009650693973526359, + -0.019893916323781013, + -0.001235940377227962, + 0.018687812611460686, + 0.0668872520327568, + 0.0422041229903698, + 0.024845829233527184, + 0.004366563633084297, + 0.001039664726704359, + -0.03585907071828842, + -0.05863533541560173, + -0.0016623928677290678, + 0.0460306741297245, + 0.04275422915816307, + 0.04235967621207237, + -0.05093091353774071, + -0.03230072930455208, + -0.036931347101926804, + -0.0285731703042984, + 0.01087320689111948, + 0.007138722110539675, + 0.0004660344566218555, + 0.006339502986520529, + -0.018357226625084877, + -0.07236472517251968, + -0.05361352488398552, + -0.03432640805840492, + -0.04132761433720589, + -0.0068207415752112865, + -0.042203377932310104, + -0.018007714301347733, + -0.006607648450881243, + -0.055592119693756104, + -0.026603225618600845, + 0.04670249670743942, + -0.028176438063383102, + -0.052316658198833466, + -0.0494714081287384, + 0.03839666023850441, + -0.015251577831804752, + -0.03633248433470726, + -0.05080239102244377, + 0.04843561351299286, + -0.014463000930845737, + -0.0023285115603357553, + 0.03537802770733833, + -0.016857994720339775, + -0.0033631545957177877, + 0.007951908744871616, + 0.04315444454550743, + -0.010200252756476402, + 0.004763337317854166, + -0.024213209748268127, + -0.026317192241549492, + -0.03086272068321705, + 0.055667582899332047, + -0.013974078930914402, + -0.018512725830078125, + -0.005288710352033377, + -0.06934741139411926, + -0.034481361508369446, + -0.009223333559930325, + -0.010356311686336994, + 0.01482764258980751, + 0.0014442240353673697, + -0.014287049882113934, + -0.01302830595523119, + -0.011107717640697956, + 0.02522970736026764, + -0.011293606832623482, + -0.01696215383708477, + 0.024422364309430122, + 0.027053235098719597, + 0.01832844316959381, + -0.004474840592592955, + -0.048337943851947784, + -0.04973853752017021, + -0.03356314077973366, + 0.028703205287456512, + -0.033543627709150314, + 0.03776466101408005, + 0.0018784154672175646, + 0.04177151992917061, + 0.003966581076383591, + -0.07909996062517166, + 0.012088962830603123, + 0.019816197454929352, + -0.011296079494059086, + 0.005156780127435923, + 0.026984132826328278, + -0.014560420997440815, + 0.029146138578653336, + 0.01013653539121151, + -0.04356139525771141, + -0.00425067450851202, + -0.00605336669832468, + -0.005433721002191305, + -0.004336043260991573, + -0.06595676392316818, + 0.017842065542936325, + -0.00916910357773304, + -0.004051420837640762, + -0.004140755161643028, + -0.008009462617337704, + 0.0014933319762349129, + -0.002304806374013424, + -0.05305610969662666, + -0.015257948078215122, + -0.004592126701027155, + 0.012564429081976414, + 0.014623071067035198, + -0.00833955779671669, + 0.044965002685785294, + -0.029109453782439232, + 0.04728749021887779, + -0.0025705737061798573, + -0.013891075737774372, + -0.011341942474246025, + -0.0076629663817584515, + 0.0289724450558424, + 0.05369384214282036, + -0.031337350606918335, + -0.03633840009570122, + -0.04743819311261177, + -0.015691665932536125, + 0.01467420905828476, + 0.012831213884055614, + -0.002739861374720931, + -0.019479844719171524, + 0.015920063480734825, + 0.026662614196538925, + -0.00254644057713449, + 0.013675721362233162, + 0.012071961537003517, + 0.03865477442741394, + 0.02292468212544918, + 0.0503603033721447, + -0.0009580105543136597, + 0.04680377244949341, + 0.03180975466966629, + -0.006623971275985241, + -0.040375884622335434, + 0.019490061327815056, + 0.040793277323246, + -0.03662501275539398, + 0.0036584832705557346, + -0.012758966535329819, + 0.01896601729094982, + -0.013321472331881523, + 0.043047524988651276, + 0.05515700578689575, + 0.015743423253297806, + -0.06800885498523712, + 0.0668187066912651, + -0.04572058841586113, + -0.017180796712636948, + 0.0287775881588459, + 0.036166973412036896, + 0.03927066549658775, + -0.05787718668580055, + -0.030466550961136818, + 0.0800359845161438, + 0.00984988734126091, + 0.027780646458268166, + -0.06340071558952332, + -0.011375227943062782, + -0.0007223203429020941, + 0.046942681074142456, + 0.001409064861945808, + -0.02681093104183674, + -0.04064692556858063, + 0.03525248542428017, + 0.017386939376592636, + 0.029309464618563652, + -0.0713786706328392, + 0.028857393190264702, + 0.016951242461800575, + -0.01645403914153576, + 0.02290727198123932, + -0.05497259646654129, + 0.07040244340896606, + -0.018018681555986404, + -0.007596604526042938, + 0.019145982339978218, + 0.0013242028653621674, + 0.02954847365617752, + 0.05082235112786293, + 0.026933694258332253, + 0.02941637486219406, + -0.045500390231609344, + -0.010124356485903263, + 0.04371894896030426, + -1.0522547881919309e-06, + 0.04090501740574837, + 0.04316549375653267, + -0.011447320692241192, + 0.03144722059369087, + 0.006718576420098543, + -0.05295123532414436, + 0.03136572986841202, + -0.05343908071517944, + 0.006051516626030207, + 0.06194355711340904, + 0.024306612089276314, + -0.0638824999332428, + 0.03808604180812836, + -0.017313724383711815, + -0.041180968284606934, + 0.002449803752824664, + -0.006784101482480764, + -0.008759826421737671, + 0.023274648934602737, + -0.012016582302749157, + 0.04857423156499863, + 0.025283247232437134, + 0.00374402804300189, + -0.026225358247756958, + 0.0008350455318577588, + -0.0008665955974720418, + 0.009945675730705261, + 0.014903644099831581, + -0.015910429880023003, + 0.0027559224981814623, + -0.011601156555116177, + 0.047402653843164444, + 0.02762911655008793, + 0.04132791608572006, + 0.06115259975194931, + 0.016029629856348038, + 0.009764211252331734, + 0.022516265511512756, + -0.02601645700633526, + 0.04916268587112427, + 0.043045882135629654, + -0.01204143837094307, + -0.025399554520845413, + 0.016107728704810143, + -0.01091029867529869, + 0.03479878976941109, + 0.03011503256857395, + -0.06966636329889297, + -0.017625775188207626, + 0.00042816446512006223, + 0.032381389290094376, + 0.016294283792376518, + 0.05062329024076462, + 0.019740812480449677, + 0.02840207889676094, + 0.02025260217487812, + -0.0030227601528167725, + -0.020590675994753838, + -0.00741404527798295, + 0.026223773136734962, + -0.06838113069534302, + 0.050636496394872665, + -0.004545691888779402, + -0.02728528529405594, + 0.00713077187538147, + -0.009147940203547478, + 0.024978099390864372, + -0.001468943664804101, + 0.02200930565595627, + -0.04845158010721207, + -0.028918571770191193, + -0.03714945539832115, + -0.01442757435142994, + -0.0132368765771389, + -0.027033163234591484, + -0.02595202624797821, + -0.02902643010020256, + -0.007118746638298035, + 0.03106115199625492, + -0.021064842119812965, + 0.060614462941884995, + 0.026222025975584984, + -0.02342618629336357, + 0.0068671079352498055, + 0.028635701164603233, + 0.026205576956272125, + -0.03331349045038223, + -0.021503539755940437, + 0.013600028119981289, + -0.008766256272792816, + -0.018347924575209618, + 0.030546411871910095, + -0.013209898956120014, + -0.010317359119653702, + 0.008829066529870033, + 0.03696674853563309, + 0.02069905772805214, + 0.03687245398759842, + 0.01062170322984457, + -0.009404540061950684, + -0.017412304878234863, + 0.0026804914232343435, + 0.04803525656461716, + -0.021396100521087646, + -0.000779944472014904, + 0.07607123255729675, + -0.04610245302319527, + 0.006133485585451126, + -0.05540308728814125, + -0.00706581212580204, + -0.012829442508518696, + 0.04790415242314339, + -0.0069984863512218, + -0.04727918282151222, + -0.00948075670748949, + 0.03677878528833389, + 0.05980026721954346, + 0.06691069155931473, + -0.01004790235310793, + 0.04383121430873871, + -0.0007797323050908744, + -0.006088546477258205, + -0.02913832850754261, + 0.03153175488114357, + -0.0034914787393063307, + 0.01660390943288803, + -0.025038734078407288, + 0.05371461063623428, + 0.0025771416258066893, + 0.03409808874130249, + 0.035280343145132065, + -0.02547254040837288, + 0.004258578177541494, + 0.013720173388719559, + 0.0036345969419926405, + 0.0523858442902565, + -0.015300782397389412, + -0.00022689660545438528, + -0.003186166752129793, + 0.0385492667555809, + -0.05053279548883438, + 0.0158646572381258, + -0.023726822808384895, + 0.05952867493033409, + 0.024226700887084007, + 0.06623193621635437, + -0.011238474398851395, + -0.021792273968458176, + 0.10112865269184113, + 0.004957419354468584, + -0.01962013728916645, + 0.017924277111887932, + -0.03556600958108902, + 0.01113917212933302, + -0.0024787355214357376, + 0.03930358961224556, + -0.003152503864839673, + 0.029623476788401604, + -0.02940310537815094, + 0.0002012945042224601, + -0.01722032018005848, + 0.03639741986989975, + 0.03116169385612011, + 0.023526329547166824, + -0.012468688189983368, + 0.0054603139869868755, + -0.017992792651057243, + -0.006716523319482803, + -0.08081839978694916, + 0.02959534525871277, + -0.027280708774924278, + -0.05812077596783638, + -0.05041557550430298, + 0.008710918948054314, + -0.008048503659665585, + 0.02092960849404335, + -0.05986734852194786 + ], + "start_index": 0, + "end_index": 101, + "token_count": 34, + "file": "validacion_in_pertenece_a_lista.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "7393eda3-64b0-5221-a579-73f2b2b0f7a1", + "_source": { + "text": "getDateTime(\"%Y-%m-%d %H:%M:%S\", 0, \"Europe/Madrid\", sql_date)\naddResult(sql_date)", + "embedding": [ + -0.014473737217485905, + 0.007426430471241474, + -0.007185341324657202, + -0.05284227058291435, + 0.07094525545835495, + -0.005078681278973818, + -0.02404857985675335, + -0.049315836280584335, + -0.06660552322864532, + -0.05695062503218651, + 0.0019950999412685633, + 0.009939148090779781, + 0.012082797475159168, + -0.0081478301435709, + -0.03490809351205826, + 0.08350881934165955, + -0.020462237298488617, + 0.018107527866959572, + 0.04270346835255623, + 0.015921838581562042, + 0.06735341250896454, + 0.027226625010371208, + 0.014819282107055187, + -0.0026030545122921467, + 0.04603743180632591, + -0.003608083352446556, + -0.045188598334789276, + 0.05462014675140381, + 0.07567019015550613, + -0.04689478129148483, + 0.05178925395011902, + -0.01916726864874363, + 0.005710999481379986, + 0.004877669271081686, + 0.033988844603300095, + -0.012580899521708488, + 0.005689380224794149, + -0.0162626001983881, + 0.0019238507375121117, + -0.011420090682804585, + 0.042322296649217606, + -0.05648984760046005, + 0.03921486809849739, + 0.0039033740758895874, + 0.0018080153968185186, + -0.005749141797423363, + -0.0050002834759652615, + 0.02242993377149105, + 0.02860468253493309, + -0.020441092550754547, + -0.0402359813451767, + 0.05526582524180412, + 0.008403917774558067, + -0.0034349963534623384, + -0.029648542404174805, + -0.03451426699757576, + -0.030903181061148643, + 0.007319341879338026, + 0.004300305619835854, + -0.01195068471133709, + -0.055706098675727844, + 0.03063919022679329, + 0.020319359377026558, + -0.057796660810709, + 0.020175481215119362, + -0.04422954469919205, + 0.0035929917357861996, + -0.033015407621860504, + -0.06268393248319626, + 0.024719497188925743, + -0.003795192576944828, + -0.008414224721491337, + 0.04233497381210327, + 0.048948582261800766, + -0.014274680987000465, + 0.08116703480482101, + 0.011135403998196125, + 0.03627363592386246, + 0.008819681592285633, + -0.017979389056563377, + 0.023376625031232834, + 0.06388240307569504, + 0.003474949160590768, + -0.0069603933952748775, + -0.01449674740433693, + -0.026126183569431305, + -0.038769736886024475, + -0.023826830089092255, + 0.013863490894436836, + -0.026289282366633415, + -0.02887420356273651, + 0.037373702973127365, + -0.07332029938697815, + -0.011943509802222252, + -0.0038429691921919584, + 0.013669981621205807, + 0.007616142742335796, + 0.023977644741535187, + -0.024567196145653725, + 0.022518407553434372, + -0.022192902863025665, + -0.02467493526637554, + 0.014035692438483238, + 0.031525708734989166, + -0.016410714015364647, + -0.0012515455018728971, + -0.02079990692436695, + -0.006747526116669178, + -0.07949204742908478, + -0.06140705198049545, + -0.0013017598539590836, + 0.024220053106546402, + 0.03019733354449272, + 0.04456055164337158, + -0.023192528635263443, + 0.07891660183668137, + -0.01700904220342636, + 0.0004342758620623499, + 0.04833722859621048, + -0.011111370287835598, + -0.03699274733662605, + 0.029632899910211563, + -0.0012642221990972757, + -0.011941393837332726, + 0.025190552696585655, + 0.01672791689634323, + -0.03433153033256531, + 0.005999830085784197, + -0.0019717218820005655, + -0.054074738174676895, + -0.029149319976568222, + 0.015091028064489365, + -0.022981172427535057, + 0.002561870263889432, + 0.015141854993999004, + -0.0021918120328336954, + -0.014978659339249134, + 0.003062293864786625, + 0.027866343036293983, + 0.001862275879830122, + -0.013426966033875942, + -0.04788697883486748, + -0.0003498214646242559, + -0.0032654856331646442, + -0.013396017253398895, + 0.0453004352748394, + -0.00015638825425412506, + 0.01565915159881115, + 0.01311715692281723, + 0.042940910905599594, + -0.00102607614826411, + -0.029158467426896095, + -0.04376037418842316, + 0.025155656039714813, + -0.015123410150408745, + 0.020896881818771362, + 0.00344888330437243, + 0.00986408069729805, + 0.04412845894694328, + 0.02857193723320961, + 0.017037488520145416, + -0.01699184440076351, + -0.019265882670879364, + -0.034026335924863815, + 0.0015883396845310926, + 0.040753595530986786, + 0.0018525586929172277, + -0.044824518263339996, + -0.011775825172662735, + 0.010491468012332916, + 0.005247083958238363, + 0.007272313814610243, + -0.023798080161213875, + 0.01580006442964077, + 0.021100999787449837, + -0.006108058150857687, + -0.01943555288016796, + -0.07067495584487915, + 0.023669393733143806, + -0.009928639978170395, + 0.01329018548130989, + -0.004985659383237362, + -0.0017761786002665758, + 0.005899275187402964, + -0.011276651173830032, + 0.015878083184361458, + 0.026788627728819847, + -0.03403486683964729, + -0.0011926292208954692, + -0.005522266495972872, + -0.011848356574773788, + 0.023241017013788223, + 0.0331503227353096, + -0.00036447643651627004, + -0.0017142943106591702, + -0.038874659687280655, + -0.0035094432532787323, + -0.0041704424656927586, + -0.02965087629854679, + 0.026724256575107574, + 0.0018044159514829516, + -0.021700143814086914, + -0.011678451672196388, + 0.00581565173342824, + 0.003658537520095706, + 0.05596359074115753, + -0.0009589239489287138, + 0.008122543804347515, + 0.012754478491842747, + 0.024995366111397743, + 0.0410885214805603, + 0.01781526394188404, + 0.029384681954979897, + -0.01151177566498518, + -0.0021595084108412266, + -0.0014827335253357887, + 0.017800388857722282, + 0.04967637360095978, + 0.009103725664317608, + 0.01965230144560337, + -0.0010257781250402331, + -0.005546127911657095, + -0.02514592930674553, + 0.007355500012636185, + -0.021315930411219597, + -0.02798093482851982, + 0.034812964498996735, + 0.006325972732156515, + 0.027902347967028618, + 0.004188587889075279, + -0.0023276747670024633, + 0.0014526181621477008, + -0.07780204713344574, + -0.018081599846482277, + 0.05450236052274704, + -0.06280142813920975, + 0.014889461919665337, + 0.027280766516923904, + 0.024956796318292618, + 0.011968092061579227, + 0.03075067512691021, + 0.0008780296193435788, + -0.02743913233280182, + 0.031264033168554306, + -0.06731298565864563, + 0.021132823079824448, + -0.012347369454801083, + 0.03520824387669563, + -0.03767746314406395, + 0.03205633535981178, + 0.04797465726733208, + -0.07030261307954788, + -0.016577666625380516, + 0.005886843428015709, + -0.0001787122746463865, + -0.0004474814049899578, + 0.0098825478926301, + 0.004439567215740681, + 0.008279110305011272, + 0.011791029945015907, + 0.022663939744234085, + -0.04157432168722153, + -0.02305562049150467, + 0.023745892569422722, + 0.023909680545330048, + 0.005979039706289768, + 0.0051427679136395454, + -0.03163379803299904, + -0.005194298457354307, + -0.01414366252720356, + 0.012176415883004665, + 0.03429139778017998, + -0.028631163761019707, + 0.032016269862651825, + 0.006312605459243059, + 0.014769898727536201, + 0.026065612211823463, + -0.07094302028417587, + 0.019050978124141693, + 0.025227591395378113, + 0.09648111462593079, + 0.009698016569018364, + -0.05455384775996208, + -0.0037935550790280104, + 0.02416587807238102, + 0.035017501562833786, + 0.03780874237418175, + -0.002909323200583458, + 0.005362199619412422, + 0.024964364245533943, + 0.06625019758939743, + 0.012672334909439087, + -0.048131994903087616, + 0.07009293138980865, + 0.0027604347560554743, + -0.056017033755779266, + 0.015764517709612846, + 0.008185074664652348, + 0.02045794390141964, + -0.061094362288713455, + -0.026508754119277, + -0.013169476762413979, + 0.00837697647511959, + -0.018554411828517914, + 0.06973974406719208, + -0.011871060356497765, + 0.029954226687550545, + 0.005966464523226023, + -0.006936769001185894, + 0.014723757281899452, + 0.0056306771002709866, + 0.023350371047854424, + 0.011095792055130005, + -0.009829028509557247, + -0.017088402062654495, + -0.030220877379179, + -0.04739640653133392, + -0.0022490727715194225, + 0.013918323442339897, + -0.023443760350346565, + -0.023803165182471275, + -0.017628518864512444, + -0.0016201304970309138, + 0.05484062433242798, + 0.007558238692581654, + 0.02994423173367977, + 0.03690895065665245, + -0.0021505304612219334, + 0.03342997282743454, + 0.05423857271671295, + 0.02278350479900837, + -0.0014591728104278445, + 0.007260921411216259, + 0.05417081341147423, + 0.0297103151679039, + 0.06463495641946793, + 0.027006641030311584, + -0.018257826566696167, + 0.0015164610231295228, + -0.06256953626871109, + -0.015851709991693497, + 0.04647234082221985, + -0.006384517997503281, + -0.0055879564024508, + 0.013334183022379875, + 0.012165451422333717, + 0.011928115971386433, + -0.039884306490421295, + 0.01689922995865345, + 0.0468730591237545, + -0.00574870128184557, + 0.01226737629622221, + 0.009890103712677956, + -0.059397779405117035, + -0.018384724855422974, + 0.030072126537561417, + -0.0023827524855732918, + 0.03503048047423363, + -0.04256944730877876, + -0.008935465477406979, + -0.08121877163648605, + -0.013505015522241592, + 0.0321495421230793, + 0.031132515519857407, + 0.031352829188108444, + -0.012699953280389309, + 0.03531254827976227, + -0.07029525190591812, + 0.026314835995435715, + -0.07301187515258789, + -0.037905868142843246, + -0.017211198806762695, + -0.03376273065805435, + -0.001007523969747126, + 0.01716732233762741, + 0.04136127606034279, + 0.025693893432617188, + -0.01916349120438099, + -0.020551398396492004, + 0.028982406482100487, + 0.07018641382455826, + -0.05724833905696869, + -0.05815070867538452, + 0.022303979843854904, + -0.0002130553184542805, + -0.06457158923149109, + 0.035023920238018036, + -0.04196147993206978, + 0.010748084634542465, + -0.03046257793903351, + 0.03611643612384796, + 0.041356995701789856, + -0.00878827553242445, + 0.00547788105905056, + 0.029817525297403336, + 0.08676706254482269, + -0.07295756787061691, + 0.006328158546239138, + -0.03906424716114998, + 0.018545476719737053, + 0.028475956991314888, + 0.09391968697309494, + -0.03165694698691368, + -0.03529446944594383, + 0.047705624252557755, + -0.021480519324541092, + -0.016119446605443954, + -0.06207672879099846, + 0.03823693469166756, + -0.024318400770425797, + 0.028357023373246193, + -0.0035887425765395164, + -0.04463516175746918, + 0.02503090724349022, + 0.019310489296913147, + 0.01168162189424038, + 0.04701533168554306, + -0.0579882487654686, + -0.036612190306186676, + -0.020928485319018364, + 0.047109801322221756, + 0.062396340072155, + -0.034000638872385025, + -0.03955468162894249, + 0.010134439915418625, + 0.01809065043926239, + -0.0010463554644957185, + -0.016388684511184692, + -0.018305189907550812, + 0.09490348398685455, + 0.00024184197536669672, + -0.043480291962623596, + 0.04225340858101845, + 0.03700408339500427, + -0.004203727934509516, + 0.005088099278509617, + 0.0034248600713908672, + 0.04012021794915199, + -0.023236259818077087, + -0.03091500513255596, + -0.0067021953873336315, + 0.036056891083717346, + -0.03086921013891697, + 0.00117675366345793, + 0.011393506079912186, + -0.00946943648159504, + 0.06731399893760681, + 0.003376023145392537, + 0.02360703982412815, + -0.0032913258764892817, + 0.003638544585555792, + -0.04889102652668953, + -0.014477602206170559, + -0.02100515365600586, + 0.041742026805877686, + -0.054590560495853424, + -0.006081812083721161, + -0.08083764463663101, + -0.02513076178729534, + 0.018462801352143288, + -0.04739227145910263, + 0.04839133471250534, + 0.02960708923637867, + 0.010876591317355633, + 0.018277639523148537, + 0.059447962790727615, + 0.03830261528491974, + 0.00992618314921856, + -0.0015208853874355555, + -0.04283727705478668, + 0.02292683906853199, + 0.006903883535414934, + -0.048222385346889496, + -0.0532415397465229, + 0.010348551906645298, + 0.011580610647797585, + -0.03742328658699989, + 0.015394283458590508, + -0.018553417176008224, + 0.009192083030939102, + 0.005330814514309168, + -0.025387192144989967, + 0.009150877594947815, + 0.017706025391817093, + 0.06872106343507767, + -0.009654082357883453, + 0.0023589939810335636, + -0.005428031086921692, + -0.005214623641222715, + -0.04167049750685692, + 0.017170602455735207, + 0.04632066935300827, + 0.011406638659536839, + -0.04812240973114967, + 0.00591026758775115, + 0.02758227474987507, + 0.0023376212920993567, + -0.054716434329748154, + -0.060080766677856445, + -0.026567663997411728, + -0.011141577735543251, + 0.03491345793008804, + -0.02242816612124443, + 0.013656090013682842, + -0.0027908673509955406, + -0.010165028274059296, + 0.015906671062111855, + -0.05727343633770943, + -0.015110124833881855, + 0.04739491268992424, + 0.015801966190338135, + -0.0230854582041502, + -0.015198005363345146, + 0.03013412281870842, + -0.004964916501194239, + -0.00464663514867425, + 0.02769683487713337, + 0.017239294946193695, + -0.07718344032764435, + 0.017284784466028214, + -0.018401362001895905, + 0.0019794285763055086, + 0.06459242850542068, + -0.022873258218169212, + -0.03293420746922493, + 0.04926469177007675, + -0.008929050527513027, + -0.050351858139038086, + -0.007194384001195431, + 0.018411319702863693, + -0.034574054181575775, + -0.03986196592450142, + -0.024840233847498894, + 0.0449446439743042, + 0.041160039603710175, + 0.07496563345193863, + -0.04045071825385094, + -0.03168383613228798, + -0.01792658120393753, + -0.0213319081813097, + -0.01414861623197794, + -0.021672476083040237, + -0.0066741229966282845, + -0.03397973254323006, + 0.03778505325317383, + 0.020226966589689255, + 0.02285631373524666, + 0.0006767656886950135, + -0.030176566913723946, + 0.03275337815284729, + -0.00985556747764349, + 0.01674397476017475, + 0.028420301154255867, + 0.07072900235652924, + 0.04357949271798134, + -0.027974652126431465, + 0.05863020569086075, + 0.04028986394405365, + 0.06704387813806534, + 0.05240246653556824, + -0.0063325478695333, + 0.013241993263363838, + 0.030970726162195206, + -0.06571021676063538, + 0.009644907899200916, + -0.029493380337953568, + -0.0018831569468602538, + -0.004524983465671539, + -0.004813843872398138, + -0.02584337443113327, + 0.06567160040140152, + -0.01910315826535225, + -0.004387364722788334, + 0.05415333807468414, + -0.004444699734449387, + -0.06150922179222107, + -0.0018187487730756402, + 0.04333547130227089, + 0.020420098677277565, + -0.0266302190721035, + 0.01226210780441761, + 0.03667495772242546, + 0.008180439472198486, + 0.02251751720905304, + -0.039581798017024994, + -0.020203381776809692, + 0.05910377576947212, + -0.012751244008541107, + 0.0348501056432724, + -0.043630216270685196, + -0.021297939121723175, + -0.030787238851189613, + -0.006422598846256733, + 0.028358187526464462, + 0.03457969054579735, + -0.03660872206091881, + -0.027152379974722862, + -0.02956334501504898, + 0.010967954061925411, + -0.027077555656433105, + 0.019007530063390732, + 0.049733348190784454, + 0.029261993244290352, + -0.013311192393302917, + -0.029914626851677895, + -0.05075093358755112, + -0.023736972361803055, + -0.0120152048766613, + 0.00635308725759387, + 0.0006359532126225531, + -0.047372300177812576, + -0.0048538316041231155, + -0.06556997448205948, + -0.006346612237393856, + -0.0013693771325051785, + -0.034334179013967514, + -0.003722431370988488, + 0.03669494390487671, + -0.008197497576475143, + -0.04386019706726074, + 0.05254595726728439, + 0.06587362289428711, + -0.006678029429167509, + 0.026174165308475494, + -0.02334062196314335, + 0.03393223509192467, + -0.05065380781888962, + -0.062179308384656906, + -0.020830867812037468, + 0.0037264220882207155, + 0.0019687314052134752, + -0.022730208933353424, + 0.0019093187293037772, + -0.0432739220559597, + 0.0036372593604028225, + -0.034305937588214874, + 0.021149395033717155, + -0.03166945278644562, + 0.01274958997964859, + -0.003254133276641369, + 0.01913456991314888, + -0.024477042257785797, + 0.02238488756120205, + -0.020680438727140427, + 0.0070879338309168816, + 0.009653790853917599, + -0.015066306106746197, + 0.031543899327516556, + -0.007379048503935337, + -0.0035905842669308186, + 0.0024017845280468464, + 0.010156224481761456, + 0.02243098057806492, + 0.022970521822571754, + -0.03966115787625313, + -0.04416618496179581, + -0.017511459067463875, + 0.02859971672296524, + -0.04950445890426636, + -0.0733499601483345, + 0.03584045171737671, + -0.03255261853337288, + 0.026773711666464806, + -0.028684712946414948, + -0.03737536072731018, + -0.0029739902820438147, + 0.03919456526637077, + -0.003434213111177087, + 0.0026865312829613686, + -0.01713685691356659, + -0.022407734766602516, + 0.00706088449805975, + 0.00934379268437624, + 0.00931541807949543, + -0.02709326520562172, + -0.023349495604634285, + -0.03126728534698486, + 0.020006000995635986, + -0.05312064662575722, + 0.031023960560560226, + -0.020796149969100952, + -0.0040977029129862785, + 0.05233826860785484, + 0.005756274331361055, + -0.011487128213047981, + 0.058758676052093506, + -0.04967973753809929, + -0.00995399709790945, + 0.01014165673404932, + -0.024632073938846588, + 0.00665656104683876, + 0.005569429136812687, + 0.003698603482916951, + 0.03573887422680855, + -0.023631121963262558, + 0.03429562970995903, + 0.015536198392510414, + -0.05228116363286972, + 0.025230178609490395, + 0.012914597988128662, + -0.015876121819019318, + -0.02526152692735195, + 0.009591778740286827, + 0.011599640361964703, + 0.003042027121409774, + -0.026300176978111267, + -0.04752388224005699, + -0.0008671992109157145, + -0.01872294209897518, + -0.020894166082143784, + -0.0010699023259803653, + 0.011281056329607964, + -0.022547099739313126, + -0.02215004526078701, + -0.030699502676725388, + 0.03048299066722393, + 5.6038050388451666e-05, + -0.0014356524916365743, + -0.012282099574804306, + -0.03288927674293518, + 0.027947431430220604, + -0.05007992684841156, + 0.038364291191101074, + 0.014937893487513065, + 0.009232370182871819, + 0.0076438626274466515, + -0.018415415659546852, + 0.01564364694058895, + 0.012643104419112206, + 0.016340559348464012, + 0.0006382841966114938, + -0.01632717065513134, + 0.025470122694969177, + -0.004412542097270489, + 0.0002192811807617545, + 0.01534216944128275, + 0.012027646414935589, + -0.033549048006534576, + 0.015649976208806038, + 0.022547971457242966, + 0.036273133009672165, + -0.007415792439132929, + 0.003354154760017991, + 0.038173969835042953, + 0.011139513924717903, + -0.05521463602781296, + -0.006758423056453466, + -0.037213560193777084, + -0.01885550282895565, + 0.025572799146175385, + -0.013943416066467762, + -0.01786956377327442, + -0.017163634300231934, + 0.042488135397434235, + 0.02529679238796234, + -0.0060546244494616985, + 0.0026239173021167517, + -0.002387469168752432, + 0.05223943293094635, + -0.002904321765527129, + 0.010783826932311058, + -0.019742457196116447, + -0.03532428294420242, + 0.00041314770351164043, + 0.025562496855854988, + 0.030217314139008522, + -0.018857533112168312, + -0.0636066421866417, + 0.024926111102104187, + 0.04816531762480736, + -0.06891202181577682, + -0.06711938977241516, + 0.014518849551677704, + 0.03417544811964035, + -0.014781822450459003, + 0.034550443291664124, + 0.023657843470573425, + -0.026709359139204025, + -0.002549640368670225, + -0.011180500499904156, + -0.004435226321220398, + -0.013920863159000874, + 0.013017396442592144, + 0.006533992942422628, + -0.00040915427962318063, + 0.01861703395843506, + 0.01588301546871662, + -0.0019383581820875406, + -0.03170352801680565, + 0.021238289773464203, + 0.05134802684187889, + 0.012920641340315342, + -0.019740886986255646, + -0.01289832778275013, + -0.023500360548496246, + 0.014888654462993145, + 0.06570947170257568, + 0.018065478652715683, + -0.045835357159376144, + 0.0038060974329710007, + -0.03681403398513794, + 0.0450594387948513, + 0.003277410753071308, + -0.0619552843272686, + 0.05564259737730026, + -0.029751956462860107, + -0.029324326664209366, + 0.008118057623505592, + -0.044662147760391235, + -0.030364949256181717, + 0.014644818380475044, + -0.017682455480098724, + 0.024253355339169502, + 0.029072565957903862, + -0.008837814442813396, + 0.045045156031847, + -0.04983966797590256, + -0.00036580825690180063, + -0.04793575033545494, + -0.01782662235200405, + -0.008368783630430698, + -0.0315697006881237, + 0.006642260123044252, + 0.02467428520321846, + -0.042564887553453445, + 0.016707738861441612, + -0.02509690448641777, + 0.01086959708482027, + -0.01606934331357479, + 0.019740814343094826, + -0.0029650789219886065, + -0.01760227046906948, + 0.01640336588025093, + -0.003663104958832264, + 0.05436073988676071, + 0.005089676007628441, + -0.03297540545463562, + -0.03684677556157112, + 0.03165730834007263, + 0.03552253916859627, + 0.038828782737255096, + 0.003396663349121809, + 0.039620112627744675, + 0.0671854093670845, + -0.016372060403227806, + 0.03813978657126427, + -0.017025994136929512, + 0.02676352858543396, + 0.009444817900657654, + 0.03151247650384903, + -0.010418012738227844, + -0.0029725017957389355, + -0.01561714243143797, + -0.0391947403550148, + -0.0648878887295723, + -0.0006045530899427831, + -0.042853690683841705, + 0.06044050678610802, + -0.029280658811330795, + -0.00777991209179163, + -0.019716409966349602, + 0.039421577006578445, + 0.0067855301313102245, + -0.03752247616648674, + -0.02176620624959469, + -0.005214380100369453, + -0.03620954602956772, + -0.01702778972685337, + 0.01998843066394329, + 0.010778061114251614, + 0.04538341611623764, + -0.02214956469833851, + 0.05305008590221405, + 0.024251680821180344, + -0.035042017698287964, + -0.023942934349179268, + 0.003267045598477125, + 0.03360534831881523, + 0.007119880057871342, + 0.016106244176626205, + -0.025023775175213814, + 0.016901003196835518, + -0.007061080075800419, + 0.007587864063680172, + -0.021236451342701912, + -0.012259270995855331, + 0.022178497165441513, + 0.01075802743434906, + -0.0393497459590435, + -0.04347144812345505, + 0.00926111824810505, + 0.015731796622276306, + -0.049162112176418304, + 0.004510366357862949, + -0.06683466583490372, + -0.009967828169465065, + 0.005660473369061947, + -0.02483966015279293, + 0.021768582984805107, + 0.006369445938616991, + -0.028126636520028114, + 0.0020270561799407005, + 0.05348872393369675, + 0.052711278200149536, + -0.028737016022205353, + -0.023208890110254288, + -0.0025347780901938677, + 0.022880472242832184, + 0.012162297032773495, + 0.035119831562042236, + -0.05835089087486267, + 0.0092399250715971, + 0.004081993363797665, + 0.036182038486003876, + 0.029331695288419724, + -0.018220027908682823, + 0.019222190603613853, + 0.0372823104262352, + 0.011917474679648876, + 0.008862235583364964, + -0.01563851907849312, + -0.038801051676273346, + -0.05727367848157883, + 0.001576445298269391, + 0.03342961147427559, + -0.008827835321426392, + -0.03282855078577995, + 0.01704998128116131, + 0.033534497022628784, + 0.02629254199564457, + 0.023850778117775917, + 0.00712621072307229, + 0.11976151913404465, + 0.03217809274792671, + 0.013336134143173695, + 0.010672247037291527, + 0.0169113390147686, + -0.033559154719114304, + -0.01855102926492691, + 0.01441379263997078, + 0.0014159965794533491, + -0.005472391378134489, + 0.02341991476714611, + 0.005517457611858845, + 0.033782958984375, + -0.018475830554962158, + 0.0127214090898633, + -0.029199641197919846, + 0.0016170070739462972, + 0.023139873519539833, + -0.01478987094014883, + 0.012237091548740864, + 0.00430886447429657, + -0.03601919114589691, + -0.00886029563844204, + -0.07318222522735596, + -0.014878383837640285, + 0.008228265680372715, + 0.016915300861001015, + -0.010262860916554928, + 0.005008528009057045, + -0.022535165771842003, + -0.07544419914484024, + 0.030746005475521088, + 0.03769683837890625, + -0.02088208682835102, + -0.04230204224586487, + 0.005388540215790272, + 0.03311033919453621, + -0.016127699986100197, + 0.021961476653814316, + -0.02100829780101776, + -0.0008060612017288804, + 0.046031344681978226, + -0.018115593120455742, + -0.0008050120668485761, + -0.03356687352061272, + -0.016890624538064003, + -0.019347330555319786, + -0.02979539893567562, + -0.025748714804649353, + -0.009889677166938782, + -0.006098578218370676, + 0.03214842081069946, + 0.004403262864798307, + -0.04545057937502861, + 0.02418667823076248, + 0.019515160471200943, + 0.025745263323187828, + 0.019938815385103226, + 0.07107808440923691, + 0.01934819296002388, + 0.01770620606839657, + -0.007001034449785948, + -0.04515078663825989, + 0.0026586942840367556, + 0.07574905455112457, + 0.0036190797109156847, + -0.006994061172008514, + 0.006368383299559355, + 0.02167973481118679, + 0.0047103664837777615, + 0.003223933046683669, + 0.01329907774925232, + 0.01857537403702736, + 0.0006978270248509943, + -0.01729460619390011, + -0.016162823885679245, + 0.01394596602767706, + 0.008664960041642189, + 0.04975869134068489, + -0.0047244424931705, + -0.007066798862069845, + -0.011682825163006783, + 0.01369941420853138, + -0.0032396551687270403, + -0.0010445780353620648, + -0.03002592921257019, + 0.010438109748065472, + -0.020109642297029495, + -0.04300100356340408, + 0.015223057009279728, + 0.00999974925071001, + 0.015567765571177006 + ], + "start_index": 0, + "end_index": 82, + "token_count": 32, + "file": "fecha_para_base_de_datos.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "98251c78-6469-5390-9668-62c5d8b47870", + "_source": { + "text": "addVar(base, 1000)\naddVar(copia, $base)\naddResult(copia)", + "embedding": [ + 0.02242497354745865, + -0.058780454099178314, + -0.011840921826660633, + -0.010299041867256165, + 0.054332002997398376, + -0.015428704209625721, + -0.014103244990110397, + -0.04263201355934143, + 0.011106510646641254, + 0.04889984428882599, + 0.01692488230764866, + -0.027388257905840874, + -0.004663393832743168, + -0.009799305349588394, + -0.04298492521047592, + 0.05148851498961449, + 0.0469641275703907, + 0.024037213996052742, + -0.04199805483222008, + 0.0460796058177948, + -0.01591082476079464, + 0.027520477771759033, + 0.0019054921576753259, + 0.0538395456969738, + 0.008493808098137379, + 0.019693132489919662, + -0.035385288298130035, + 0.03028981201350689, + 0.048091184347867966, + -0.04523015767335892, + 0.009568826295435429, + -0.057516321539878845, + -0.08099370449781418, + 0.002224312163889408, + 0.02606082707643509, + -0.014001197181642056, + 0.05495566129684448, + -0.047930363565683365, + 0.003104396164417267, + 0.01268838346004486, + 0.013619542121887207, + -0.01921026222407818, + -0.006322720553725958, + 0.01649818941950798, + -0.003899866947904229, + 0.023817073553800583, + 0.03047347441315651, + -0.027169441804289818, + 0.04216969013214111, + -0.019334381446242332, + -0.017696643248200417, + 0.0698164701461792, + 0.024747205898165703, + 0.003275844268500805, + -0.0020907192956656218, + -0.01362681295722723, + 0.0439893864095211, + 0.05122150853276253, + 0.007490742485970259, + 0.0074448916129767895, + -0.04008626937866211, + 0.044868409633636475, + -0.01217382587492466, + -0.013399613089859486, + 0.01701596938073635, + -0.015003042295575142, + 0.010806999169290066, + 0.026237526908516884, + -0.022643959149718285, + 0.02786172926425934, + 0.02081301435828209, + -0.03791229426860809, + -0.007528719492256641, + 0.026549620553851128, + -0.026289528235793114, + -0.018789080902934074, + 0.015938416123390198, + -0.04921916127204895, + 0.017914095893502235, + 0.018625888973474503, + 0.022424979135394096, + -0.017665071412920952, + -0.008382548578083515, + -0.001872541499324143, + -0.003690548939630389, + 0.01667787693440914, + 0.013528444804251194, + -0.0015095762209966779, + -0.0032284834887832403, + -0.018571343272924423, + -0.05327777564525604, + 0.0502919927239418, + 0.002280016429722309, + 0.06275919824838638, + 0.0024950227234512568, + -0.036025144159793854, + -0.016659587621688843, + 0.06369640678167343, + -0.022206375375390053, + -0.003780811093747616, + 0.009872961789369583, + -0.01236218586564064, + 0.014178897254168987, + 0.01758619025349617, + 0.023094534873962402, + 0.025233322754502296, + -0.06022653356194496, + 0.01908453367650509, + -0.045958057045936584, + -0.03707671910524368, + 0.001943127135746181, + 0.04462583735585213, + -0.016074135899543762, + 0.024371983483433723, + -0.01723133772611618, + 0.05654412508010864, + -0.012635861523449421, + -0.012259980663657188, + -0.0054709045216441154, + -0.003523827064782381, + 0.010604810900986195, + 0.016365239396691322, + 0.012289919890463352, + -0.015457231551408768, + -0.030629105865955353, + -0.023755835369229317, + -0.02352122589945793, + -0.0291347224265337, + 0.024407917633652687, + -0.016781512647867203, + 0.00793983694165945, + -0.0013087969273328781, + -0.024130957201123238, + -0.011030798777937889, + -0.00123233359772712, + 0.010509336367249489, + 0.018023574724793434, + -0.010686463676393032, + 0.031767792999744415, + -0.016208529472351074, + 0.01481250673532486, + -0.01471473928540945, + -0.021721256896853447, + -0.043001674115657806, + -0.0003465334593784064, + 0.023202916607260704, + -0.008169988170266151, + 0.006293370388448238, + 0.010765225626528263, + 0.07176899164915085, + -0.015957554802298546, + 0.00847879983484745, + 0.02669784612953663, + -0.01358523778617382, + -0.04675832763314247, + 0.05540378764271736, + -0.015082210302352905, + -0.015250962227582932, + 0.007891831919550896, + 0.02290206216275692, + -0.005716717801988125, + 0.02091613970696926, + -0.02910994552075863, + -0.032343991100788116, + -0.03310735151171684, + 0.016974249854683876, + 0.01953747682273388, + -0.001778874546289444, + -0.020724544301629066, + 0.01090944092720747, + -0.02409164234995842, + 0.007089678198099136, + -0.015355493873357773, + -0.014672438614070415, + -0.01866605505347252, + -0.0017442834796383977, + -0.014934715814888477, + -0.05307737737894058, + -0.031909115612506866, + 0.008870608173310757, + 0.01900111325085163, + -0.017126616090536118, + 0.024891596287488937, + 0.050955742597579956, + 0.01798054203391075, + 0.059374235570430756, + 0.02205382101237774, + 0.019835054874420166, + -0.03438877314329147, + 0.013971352949738503, + 0.02878541499376297, + -0.031132036820054054, + 0.03304306045174599, + 0.01789204776287079, + -0.04007059335708618, + -0.011178955435752869, + 0.03735138103365898, + -0.040347304195165634, + 0.03107403591275215, + -0.030529092997312546, + 0.011979903094470501, + 0.005672966130077839, + -0.009160343557596207, + -0.0132788410410285, + -0.013278630562126637, + 0.00758726941421628, + 0.03938797861337662, + -0.008222678676247597, + -0.032878123223781586, + -0.010110433213412762, + -0.016376277431845665, + 0.038081832230091095, + -0.013784520328044891, + -0.02645554579794407, + 0.007106475066393614, + -0.028396328911185265, + -0.025815719738602638, + 0.04168062284588814, + -0.003385170130059123, + 0.03059348277747631, + 0.026884514838457108, + 0.01790483295917511, + 0.0033852627966552973, + -0.011346874758601189, + 0.016691412776708603, + -0.031228628009557724, + 0.001967385644093156, + -0.0053977761417627335, + -0.010275283828377724, + 0.011033609509468079, + 0.02960018627345562, + -0.042347267270088196, + -0.044342271983623505, + -0.02709072455763817, + 0.05254340171813965, + 0.013103012926876545, + -0.017820537090301514, + 0.001137208892032504, + 0.019392216578125954, + 0.017407070845365524, + 0.0003654913743957877, + 0.010278814472258091, + 0.023554103448987007, + 0.020874448120594025, + 0.020138651132583618, + 0.024630170315504074, + -0.042731963098049164, + 0.03178577497601509, + 0.004716120194643736, + -0.004057110287249088, + 0.016661960631608963, + -0.03094179555773735, + -0.04131760448217392, + -0.04117947816848755, + -0.008150572888553143, + 0.04004288464784622, + -0.005379810463637114, + 0.04073706641793251, + 0.0030949136707931757, + 0.0023569799959659576, + -0.017956838011741638, + -0.029178237542510033, + -0.04787115752696991, + 0.0007568969740532339, + 0.0017901937244459987, + 0.02843339368700981, + -0.037450648844242096, + -0.010156386531889439, + -0.013770122081041336, + -0.0126956757158041, + 0.007262400817126036, + 0.03709600120782852, + -0.004645360633730888, + 0.017252109944820404, + 0.020651061087846756, + -0.007870757952332497, + 0.028556734323501587, + -0.04611396789550781, + 0.015233220532536507, + -0.016195181757211685, + -0.037313684821128845, + 0.03920150175690651, + -0.02378067746758461, + 0.001257553929463029, + -0.002079632831737399, + 0.02822701819241047, + 0.03653694689273834, + 0.0035868326667696238, + 0.009527401067316532, + 0.02256476692855358, + 0.032763317227363586, + 0.02968497760593891, + 0.006557172629982233, + 0.010236050933599472, + -0.011381376534700394, + 0.05910886824131012, + 0.006884837988764048, + 0.04004422947764397, + -0.017960527911782265, + -0.0010742915328592062, + 0.03599327430129051, + -0.040278319269418716, + -0.002902794163674116, + 0.02422819659113884, + -0.016010316088795662, + -2.8085141821065918e-05, + 0.05579178035259247, + -0.050825364887714386, + -0.005759183783084154, + -0.0014505346771329641, + 0.053110089153051376, + -0.0415496826171875, + -0.00492119649425149, + 0.02152467519044876, + -0.007444813847541809, + -0.06686417758464813, + -0.03689248487353325, + -0.012267009355127811, + 0.05257561430335045, + 0.003529890440404415, + 0.013671602122485638, + -0.0137478644028306, + 0.033672746270895004, + -0.07206541299819946, + 0.0267605222761631, + -0.012437449768185616, + -0.06368156522512436, + 0.040610261261463165, + 0.017728617414832115, + -0.03452271595597267, + 0.04217548295855522, + -0.011674689128994942, + 0.06644667685031891, + -0.01236792467534542, + -0.04353455454111099, + 0.0519392192363739, + 0.015879901126027107, + -0.07267715036869049, + 0.043937668204307556, + -0.018789000809192657, + 0.03796658664941788, + 0.025115767493844032, + -0.03213011473417282, + 0.010367516428232193, + -0.019915645942091942, + 0.032868556678295135, + 0.015746036544442177, + 0.022060368210077286, + 0.015352212823927402, + 0.06523609906435013, + -0.021025143563747406, + -0.005808569025248289, + 0.005440345965325832, + -0.03360331431031227, + -0.04776764661073685, + -0.0280783548951149, + -0.028913157060742378, + -0.024737928062677383, + 0.028756514191627502, + -0.028550485149025917, + -0.022947464138269424, + -0.011947226710617542, + 0.019171327352523804, + -0.03393743187189102, + -0.01840163581073284, + -0.021968938410282135, + -0.020708344876766205, + 0.038020454347133636, + 0.0887412503361702, + 0.009277974255383015, + -0.04325557500123978, + 0.022210313007235527, + -0.024742115288972855, + 0.013067453168332577, + 0.05278119072318077, + 0.03263344615697861, + 0.024241050705313683, + -0.034376826137304306, + -0.029716599732637405, + 0.05300692841410637, + 0.07062096148729324, + -0.002332762349396944, + -0.03816633298993111, + -0.033568523824214935, + -0.0370953269302845, + 0.016080796718597412, + -0.018086174502968788, + -0.06468807905912399, + 0.009470609948039055, + 0.021131666377186775, + 0.004444082733243704, + 0.010047516785562038, + -0.009436937980353832, + -0.026309406384825706, + -0.003016074188053608, + 0.014285518787801266, + -0.11434756219387054, + -0.002159704687073827, + 0.0274000633507967, + 0.05395858362317085, + -0.0013791050296276808, + -0.048846594989299774, + -0.06522666662931442, + -0.014835130423307419, + 0.006255995482206345, + 0.012360177002847195, + -0.027820445597171783, + 0.0037366978358477354, + 0.03179143741726875, + -0.031750064343214035, + 0.05445162579417229, + 0.002905749948695302, + -0.01023879274725914, + -0.014828409068286419, + -0.004817548207938671, + 0.021566729992628098, + 0.02355576492846012, + -0.02025417797267437, + 0.032701704651117325, + -0.02271951362490654, + -0.014046651311218739, + 0.022178130224347115, + -0.047930940985679626, + 0.013936697505414486, + 0.0010378668084740639, + -0.006276499014347792, + -0.03835222125053406, + -0.0671202763915062, + 0.033596791326999664, + 0.0431792251765728, + 0.006814449559897184, + -0.0807528868317604, + 0.01444392092525959, + -0.009268691763281822, + -0.0012519338633865118, + 0.017240863293409348, + 0.00908199418336153, + 0.04329672455787659, + 0.030173631384968758, + 0.00799673330038786, + 0.0038766036741435528, + -0.012168466113507748, + -0.034399084746837616, + -0.02778283692896366, + -0.034232571721076965, + -0.021644726395606995, + 0.00016233681526500732, + -0.012040226720273495, + 0.016481440514326096, + -0.05086776241660118, + -0.05943760648369789, + 0.04402907192707062, + -0.023517167195677757, + 0.055021461099386215, + -0.02442309819161892, + 0.006808116566389799, + 0.012519681826233864, + -0.011562109924852848, + 0.05855540931224823, + -0.01464587077498436, + -0.03543845936655998, + 0.033155009150505066, + 0.012345786206424236, + -0.0003520428144838661, + 0.07453975826501846, + 0.058622077107429504, + -0.029752125963568687, + 0.0022378924768418074, + 0.024668145924806595, + -0.0031724092550575733, + 0.026437880471348763, + 0.04848256707191467, + -0.04160560294985771, + -0.03377692773938179, + 0.03421869874000549, + -0.01980852149426937, + -0.037432003766298294, + -0.018691319972276688, + -0.0029537531081587076, + -0.01926157996058464, + -0.033483486622571945, + 0.001980548957362771, + -0.05528193712234497, + -0.03630809485912323, + 0.023784419521689415, + -0.013522866182029247, + -0.036113448441028595, + 0.035827286541461945, + -0.03359702229499817, + 0.01418722327798605, + 0.02079707942903042, + 0.05548049136996269, + -0.020663654431700706, + -0.01817764714360237, + -0.07028844952583313, + 0.023031625896692276, + -0.02722329832613468, + -0.014047166332602501, + -0.06681496649980545, + 0.029121726751327515, + -0.006943080108612776, + 0.006489653140306473, + -0.007949805818498135, + 0.01703948900103569, + 0.01501556858420372, + -0.02302507869899273, + 0.0028860645834356546, + 0.016949893906712532, + 0.04545251280069351, + 0.011793200857937336, + 0.016215454787015915, + 0.008441626094281673, + 0.05580894649028778, + -0.01676156371831894, + -0.015246696770191193, + 0.012783065438270569, + 0.014111801981925964, + 0.015309075824916363, + 0.003155556507408619, + 0.024292904883623123, + 0.014199383556842804, + -0.022407617419958115, + 0.009125777520239353, + -0.035980258136987686, + -0.04340091720223427, + 0.015859410166740417, + 0.008767309598624706, + -0.010438777506351471, + 0.01841042749583721, + 0.03370441496372223, + -0.007906780578196049, + 0.03670286014676094, + 0.029791319742798805, + 0.027390647679567337, + -0.011461611837148666, + -0.03893691673874855, + -0.013047496788203716, + -0.009219068102538586, + -0.017770012840628624, + 0.013515420258045197, + 0.0024703003000468016, + -0.030093399807810783, + 0.0031205324921756983, + 0.0069578867405653, + -0.014204089529812336, + 0.011431369930505753, + -0.033625051379203796, + 0.060008712112903595, + 0.0066355508752167225, + 0.04847727343440056, + 0.033405009657144547, + -0.007956585846841335, + 0.07085509598255157, + 0.01517326757311821, + -0.07110034674406052, + -0.0012393426150083542, + 0.04537015035748482, + 0.04304463788866997, + 0.017620228230953217, + -0.058120571076869965, + -0.014633236452937126, + 0.06697205454111099, + 0.008901819586753845, + 0.02632792480289936, + 0.03310135006904602, + 0.01676711067557335, + -0.010610577650368214, + 0.0037011837121099234, + -0.03310050070285797, + 0.013293316587805748, + 0.028977973386645317, + -0.04753066226840019, + 0.014767060056328773, + 0.04801071062684059, + 0.005042234901338816, + -0.06938518583774567, + 0.0328512005507946, + 0.04074650630354881, + 0.030776038765907288, + -0.0067153023555874825, + 0.02105374075472355, + 0.006129425950348377, + 0.030060138553380966, + 0.008074052631855011, + 0.02207249030470848, + -0.0006176971364766359, + 0.005687750410288572, + 0.05698039382696152, + -0.017063599079847336, + -0.038246266543865204, + -0.03697402402758598, + -0.08291987329721451, + 0.057421110570430756, + 0.047262053936719894, + 0.018074646592140198, + 0.003933641128242016, + -0.07835780084133148, + 0.016868431121110916, + 0.01599295437335968, + -0.008291611447930336, + 0.06226139888167381, + 0.011089323088526726, + 0.004086753819137812, + 0.028409840539097786, + -0.054223477840423584, + 0.026527676731348038, + -0.07648926973342896, + 0.06626513600349426, + -0.05446156859397888, + 0.03390902280807495, + 0.014711733907461166, + -0.007523692212998867, + -0.03755320981144905, + -0.024137692525982857, + -0.009194265119731426, + -0.02307804860174656, + -0.00846348237246275, + -0.00468827411532402, + -0.04051942750811577, + -0.03326873853802681, + 0.0013797609135508537, + 0.020871959626674652, + 0.047421012073755264, + 0.046692341566085815, + -0.031115034595131874, + 0.015042009763419628, + -0.025124410167336464, + -0.039421435445547104, + -0.03743194788694382, + -0.052550993859767914, + -0.10569436103105545, + -0.008128647692501545, + -0.030987491831183434, + -0.014002100564539433, + -0.0007546152337454259, + -0.046755775809288025, + 0.014555868692696095, + -0.009698902256786823, + 0.032330892980098724, + -0.0073721506632864475, + 0.030006328597664833, + -0.014212213456630707, + 0.02355276234447956, + -0.003968757577240467, + -0.01636485382914543, + 0.0024085293989628553, + -0.0006005950272083282, + 0.00016190622409339994, + 0.014345090836286545, + -0.007211276330053806, + 0.013310248032212257, + -0.0198797807097435, + -0.016629014164209366, + -0.03326645493507385, + -0.013373380526900291, + -0.02478356845676899, + -0.029516473412513733, + 0.013852112926542759, + -0.023019004613161087, + 0.030838487669825554, + 0.0068143028765916824, + -0.1014304906129837, + 0.04249358922243118, + -0.04275254160165787, + -0.03377854824066162, + -0.036035750061273575, + 0.038492508232593536, + -0.0018466162728145719, + 0.004062842112034559, + -0.04470406845211983, + -0.031512267887592316, + -0.03999234735965729, + 0.038591038435697556, + 0.04831806942820549, + -0.007090785540640354, + -0.03026554547250271, + -0.04762659966945648, + -0.02828475460410118, + 0.0438801646232605, + 0.017674125730991364, + -0.06028658151626587, + -0.03872193768620491, + 0.009751716628670692, + -0.0064232563599944115, + -0.007727588526904583, + -0.03453432023525238, + -0.04703596979379654, + -0.0646730288863182, + 0.031456347554922104, + -0.0645664781332016, + -0.03209051862359047, + -0.020659422501921654, + -0.04097674414515495, + 0.026030495762825012, + 0.014515272341668606, + -0.02029399387538433, + 0.030762752518057823, + 0.038384851068258286, + -0.03592458739876747, + 0.030315203592181206, + 0.044066283851861954, + -0.014621337875723839, + 0.009814413264393806, + 0.06310658901929855, + 0.0060977390967309475, + -0.015812039375305176, + -0.03535079583525658, + 0.006219455506652594, + -0.030124587938189507, + -0.007622034754604101, + 0.03812921792268753, + -0.015024983324110508, + -0.01207133661955595, + -0.0004893870209343731, + 0.03996312618255615, + 0.007900338619947433, + -0.012731675058603287, + -0.025583909824490547, + -0.028730053454637527, + 0.03661756590008736, + 0.0005430046585388482, + -0.025611847639083862, + 0.031620681285858154, + 0.008201852440834045, + 0.007511653006076813, + -0.0016797027783468366, + 0.05704372003674507, + -0.05996861308813095, + 0.047275956720113754, + -0.006296862848103046, + 0.0211546141654253, + -0.03172583878040314, + -0.02082144096493721, + -0.017313726246356964, + -0.0012822728604078293, + 0.035557858645915985, + -0.005973002407699823, + -7.674683001823723e-05, + 0.00988120585680008, + -0.0027065807953476906, + 0.0387532077729702, + 0.00791490264236927, + -0.02187512256205082, + -0.023379983380436897, + 0.017545603215694427, + 0.004240542184561491, + -0.029966695234179497, + -0.0021049801725894213, + 0.01864868402481079, + 0.0023715468123555183, + 0.008318746462464333, + -0.04599747061729431, + 0.011585921980440617, + 0.040323447436094284, + -0.009029853157699108, + 0.030240895226597786, + -0.015692178159952164, + 0.024560632184147835, + -0.0091736800968647, + 0.041812680661678314, + -0.005758285988122225, + 0.02163521759212017, + 0.012961873784661293, + -0.004629495088011026, + 0.04055717587471008, + 0.02506771683692932, + 0.034464459866285324, + 0.0028151117730885744, + 0.021221714094281197, + 0.04742422327399254, + 0.006833821069449186, + 0.021397380158305168, + 0.025696322321891785, + 0.06152910739183426, + 0.006728282663971186, + -0.018166333436965942, + 0.005631929263472557, + -0.026621239259839058, + -0.01374870166182518, + -0.009786747395992279, + 0.044088251888751984, + -0.0051949345506727695, + -0.010849980637431145, + -0.04503091052174568, + -0.019065221771597862, + 0.07451244443655014, + 0.014555417001247406, + 0.009841157123446465, + 0.0093368049710989, + 0.04136562719941139, + 0.03137344866991043, + 0.04259417951107025, + 0.017530838027596474, + 0.020415863022208214, + 0.014988088048994541, + 0.03931190446019173, + -0.013798912055790424, + 0.047131478786468506, + -0.011603941209614277, + -0.02139076218008995, + 0.0029945324640721083, + 0.014980374835431576, + 0.006060815881937742, + 0.04042087495326996, + 0.03281407058238983, + 0.014707080088555813, + -0.0009592373389750719, + -0.013607451692223549, + -0.04070659354329109, + -0.040284428745508194, + -0.04446879029273987, + 0.052460264414548874, + -0.03807725012302399, + 0.02854066714644432, + -0.01034383662045002, + 0.05718228593468666, + -0.02487293630838394, + -0.014086199924349785, + -0.06509929150342941, + -0.014445495791733265, + -0.019667252898216248, + -0.00040861914749257267, + 0.039969462901353836, + 0.007413977291435003, + -0.014776818454265594, + -0.03441669046878815, + -0.017753908410668373, + -0.018800832331180573, + 0.028056195005774498, + 0.03527159243822098, + 0.000949568348005414, + -0.010349499061703682, + 0.01626541092991829, + -0.037437424063682556, + 0.04413662850856781, + -0.0029296816792339087, + 0.03014618717133999, + 0.073153056204319, + 0.0011773104779422283, + 0.03471564128994942, + 0.024200865998864174, + 0.04166204482316971, + 0.031232846900820732, + 0.03408341482281685, + -0.04314403235912323, + 0.038726720958948135, + -0.01332562230527401, + -0.0035004743840545416, + 0.05314156040549278, + -0.0015598313184455037, + 0.06429074704647064, + 0.0013132059248164296, + -0.010193693451583385, + 0.015559480525553226, + -0.032117921859025955, + 0.01899830251932144, + 0.007978756912052631, + -0.023101486265659332, + -0.04384159669280052, + 0.07243485748767853, + -0.010434232652187347, + -0.021650191396474838, + -0.012703882530331612, + -0.010603130795061588, + -0.041145097464323044, + 0.008951844647526741, + -0.008537044748663902, + -0.00487803528085351, + -0.014633308164775372, + -0.029362551867961884, + -0.031570032238960266, + -0.022706514224410057, + 0.01757141388952732, + -0.02448303997516632, + -0.06609021127223969, + 0.009860911406576633, + -0.03120405040681362, + 0.017283471301198006, + 0.044349681586027145, + 0.008486867882311344, + -0.04357916861772537, + 0.049291595816612244, + 0.03375332057476044, + -0.03027304634451866, + -0.024820728227496147, + -0.02920367382466793, + -0.002404141938313842, + 0.0011582850711420178, + 0.0268861074000597, + -0.050165675580501556, + 0.02785453386604786, + -0.045878440141677856, + -0.021771397441625595, + 0.023653144016861916, + -0.13177548348903656, + -0.00040538283064961433, + 0.03481331840157509, + 0.04813000559806824, + -0.025651661679148674, + 0.022897057235240936, + 0.026817016303539276, + -0.019882366061210632, + -0.016716426238417625, + -0.033886149525642395, + -0.026636097580194473, + 0.006656771991401911, + 0.03632979094982147, + 0.0167635977268219, + -0.02518763765692711, + 0.01851637475192547, + -0.07283840328454971, + 0.07195334881544113, + 0.002002862747758627, + -0.01968139037489891, + -0.008845041505992413, + 0.01671559177339077, + -0.03161434084177017, + -2.1184378056204878e-05, + 0.011607256717979908, + -0.03012934885919094, + -0.009421106427907944, + -0.008272198960185051, + -0.020190689712762833, + 0.011189248412847519, + -0.04034006595611572, + -0.005875001195818186, + 0.0054451823234558105, + -0.0034856214188039303, + 0.03692658245563507, + 0.01563386432826519, + 0.029317133128643036, + 0.032303329557180405, + 0.05486764386296272, + 0.03029419668018818, + 0.001985376002267003, + -0.04750686511397362, + 0.0250361580401659, + 0.011815407313406467, + -0.029884397983551025, + 0.03606485575437546, + -0.04340540990233421, + 0.008928635157644749, + 0.02255001850426197, + -0.004283460788428783, + 0.059477128088474274, + 0.022738510742783546, + 0.04072511941194534, + -0.019626444205641747, + 0.033147454261779785, + -0.006123838014900684, + -0.0004164255515206605, + -0.033100519329309464, + -0.06276756525039673, + -0.015755241736769676, + -0.011667365208268166, + -0.03995932266116142, + -0.00556778023019433, + -0.0022150445729494095, + -0.024792836979031563, + -0.023123474791646004, + 0.025004016235470772, + -0.03394195809960365, + -0.005633318796753883, + 0.0968417152762413, + 0.00311592360958457, + -0.019684217870235443, + -0.013081077486276627, + 0.025408906862139702, + 0.03951435163617134, + 0.011431313119828701, + -0.044704049825668335, + 0.0266684889793396, + 0.03422139585018158, + -0.03692400082945824, + 0.01710747554898262, + -0.03381594642996788, + -0.0020504274871200323, + -0.01202607061713934, + 0.0009358655079267919, + -0.07467474788427353, + 0.03411979228258133, + -0.019579792395234108, + 0.012045217677950859, + -0.007479429244995117, + 0.02311367355287075, + -0.016842998564243317, + 0.04444846138358116, + 0.03793058544397354, + -0.007983467541635036, + -0.03066856786608696, + -0.005824654828757048, + 0.0323125384747982, + 0.030493952333927155, + 0.0363568477332592, + 0.033979080617427826, + 0.0252316202968359, + 0.007634307723492384, + -0.017675073817372322, + -0.0031494309660047293, + -0.05672098323702812, + 0.02423197403550148, + 0.013924662955105305, + 0.03080117329955101, + 0.06525713205337524, + 0.008827675133943558, + 0.01693546585738659, + 0.008089873939752579, + 0.02340533956885338, + -0.06691130250692368, + 0.02806989662349224, + 0.013517659157514572, + 0.000392126792576164, + -0.02021336928009987, + -0.025099508464336395, + 0.013085874728858471, + 0.001968653406947851, + 0.007128776982426643, + -0.0003134885337203741, + -0.02802394889295101, + 0.008519752882421017, + 0.021889695897698402, + 0.038656290620565414, + 0.06392326951026917, + -0.06311780959367752 + ], + "start_index": 0, + "end_index": 56, + "token_count": 23, + "file": "referencia_por_valor.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "fcec6587-6db1-51f9-aee8-c0f8e3b7ac62", + "_source": { + "text": "registros = ['1','2','3']\ngetListLen(registros, total)\ncontador = 0\nstartLoop(idx, 0, 2)\n actual = registros[int(idx)]\nendLoop()\naddResult(actual)", + "embedding": [ + -0.016786418855190277, + -0.008998485282063484, + -0.012132164090871811, + -0.1160065233707428, + 0.045343637466430664, + 0.06045060232281685, + 0.0004943993408232927, + -0.0013626959407702088, + 0.0056984820403158665, + -0.002635464072227478, + 0.012461443431675434, + -0.053037043660879135, + 0.03407130390405655, + -0.009286652319133282, + -0.03917699679732323, + 0.024860814213752747, + -0.017357556149363518, + -0.012241092510521412, + 0.049368999898433685, + -0.000977138290181756, + -0.020365940406918526, + 0.006577843800187111, + -0.033827878534793854, + 0.029315495863556862, + -0.0072657885029911995, + 0.011914807371795177, + -0.006901063024997711, + 0.021595710888504982, + 0.018657434731721878, + -0.03860916197299957, + 0.07963991910219193, + -0.007703305222094059, + -0.06754302978515625, + -0.0015886175679042935, + -0.02253040112555027, + -0.01578952558338642, + -0.01134888082742691, + -0.012060080654919147, + -0.004910938907414675, + 0.014490288682281971, + -0.0262394230812788, + 0.01909489743411541, + -0.03365397825837135, + -0.012274126522243023, + 0.03873293846845627, + -0.0555989108979702, + 0.011741180904209614, + 0.0017720835749059916, + 0.010015340521931648, + -0.002693077316507697, + -0.07709237933158875, + 0.0014477530494332314, + -0.027366092428565025, + -0.012098812498152256, + 0.00520880613476038, + 0.0036456079687923193, + 0.06903930753469467, + -0.049942489713430405, + 0.014249255880713463, + 0.012806855142116547, + -0.05100224167108536, + -0.0419401191174984, + -0.03588557243347168, + -0.033166009932756424, + 0.044134482741355896, + -0.08911453932523727, + 0.02786935493350029, + 0.004970088135451078, + -0.043474238365888596, + 0.007764387875795364, + -0.004413359332829714, + -0.01140341442078352, + -0.07416066527366638, + 0.018837694078683853, + 0.002914158860221505, + 0.006478931289166212, + 0.017924519255757332, + -0.04590531811118126, + -0.023162448778748512, + 0.023774409666657448, + -0.026586206629872322, + -0.011672256514430046, + -0.013898907229304314, + 0.0013908845139667392, + 0.004013644531369209, + -0.023888323456048965, + -0.0172406155616045, + 0.009863228537142277, + -0.030746597796678543, + -0.0187553521245718, + -0.09680435061454773, + 0.04790578410029411, + -0.004796026740223169, + -0.0031966939568519592, + -0.00506467605009675, + 0.0038737389259040356, + -0.0003412962832953781, + 0.014447997324168682, + -0.005551979411393404, + 0.006294250022619963, + -0.009623152203857899, + -0.010501839220523834, + -0.02303277887403965, + 0.013619736768305302, + -0.0370018295943737, + 0.009918243624269962, + -0.08674889802932739, + 0.027203846722841263, + 0.006715645547956228, + -0.0416191965341568, + -0.050461020320653915, + 0.012067233212292194, + 0.013458063825964928, + -0.008011257275938988, + -0.04051300138235092, + -0.07535659521818161, + 0.022015057504177094, + -0.013867514207959175, + 0.06533518433570862, + 0.0055067879147827625, + 0.026584511622786522, + -0.03423624858260155, + 0.010952867567539215, + 0.0035863907542079687, + -0.04115990921854973, + -0.0008010524907149374, + -0.02673519216477871, + 0.01892109587788582, + 0.015016640536487103, + -0.014600463211536407, + -0.034415844827890396, + -0.022996235638856888, + -0.002549306722357869, + -0.09336292743682861, + 0.004180137533694506, + -0.002444944344460964, + 0.0009890190558508039, + -0.020182207226753235, + 0.05452784523367882, + 0.009058578871190548, + -0.04318678006529808, + -0.01914866827428341, + 0.004912746138870716, + 0.0017316733719781041, + 0.017686642706394196, + 0.0016715767560526729, + 0.0164673812687397, + -0.006716187112033367, + 0.015795176848769188, + 0.047312378883361816, + 0.017467208206653595, + -0.002741060918197036, + -0.0022044533398002386, + -0.014125663787126541, + -0.03307831287384033, + 0.03284222260117531, + 0.01774267852306366, + -0.011104739271104336, + -0.006955286953598261, + 0.028560331091284752, + -0.017338033765554428, + -0.033171024173498154, + -0.004532018676400185, + -0.027005581185221672, + -0.023463474586606026, + 0.012897064909338951, + -0.032883234322071075, + -0.012798638083040714, + 0.011878465302288532, + -0.04757869243621826, + 0.004090918693691492, + 0.011148191057145596, + 0.012608980759978294, + 0.030439553782343864, + 0.017278756946325302, + -0.0018277066992595792, + -0.02884945459663868, + -0.04929560050368309, + -0.002788121346384287, + -0.00022712748614139855, + -0.019684292376041412, + 0.020168503746390343, + 0.026285385712981224, + 0.036564700305461884, + 0.0273142047226429, + 0.10054057836532593, + 0.02624712884426117, + -0.017173903062939644, + -0.024377960711717606, + 0.007245945278555155, + -0.0058867610059678555, + -0.05803121626377106, + -0.07324130088090897, + -0.013463758863508701, + -0.007636544294655323, + -0.011408799327909946, + 0.0010318559361621737, + 0.0008986448519863188, + -0.0027097025886178017, + -0.010470888577401638, + 0.00680463295429945, + 0.04037883132696152, + 0.01566489040851593, + -0.0018813950009644032, + -0.017260195687413216, + 0.014158987440168858, + 0.028223806992173195, + 0.024807550013065338, + -0.012056325562298298, + -0.0021754209883511066, + -0.030553698539733887, + 0.01551865879446268, + -0.043361250311136246, + 0.028288207948207855, + -0.00028676402871496975, + 0.018017880618572235, + -0.0062165879644453526, + 0.03187045454978943, + -0.008050831966102123, + 0.017807956784963608, + 0.04605042189359665, + 0.027294674888253212, + -0.029773300513625145, + -0.002598941558972001, + 0.0030407763551920652, + -0.019637763500213623, + -0.001482752850279212, + -0.003323853714391589, + 0.004018615931272507, + 0.03240802139043808, + -0.005009802058339119, + -0.041571736335754395, + 0.09746261686086655, + 0.05653207376599312, + 0.03912997990846634, + 0.017221303656697273, + -0.02282358892261982, + -0.03465384989976883, + 0.05259722098708153, + -0.048847995698451996, + 0.03881458193063736, + -0.001655631815083325, + 0.019810348749160767, + 0.0017215949483215809, + 0.007646236103028059, + 0.03809361159801483, + -0.011760927736759186, + 0.0056067765690386295, + -0.01651936024427414, + 0.023561207577586174, + -0.017251940444111824, + 0.0013701528077945113, + -0.05359397456049919, + 0.09082110226154327, + -0.012430569157004356, + -0.0397072359919548, + -0.013229116797447205, + -0.004208121448755264, + 0.009254283271729946, + 0.008125721476972103, + 0.027687259018421173, + -0.015313462354242802, + 0.01702343113720417, + -0.02639278583228588, + 0.0243197213858366, + 0.014661572873592377, + -0.032726265490055084, + 0.00878711137920618, + -0.013425863347947598, + 0.005779040511697531, + 0.03014642372727394, + 0.017411360517144203, + 0.014419814571738243, + -0.005959988571703434, + -0.007890402339398861, + 0.013653310015797615, + 0.013012434355914593, + -0.03881290927529335, + 0.0273240115493536, + -0.02393479086458683, + -0.03751806914806366, + 0.0027062539011240005, + 0.014482913538813591, + -0.060984257608652115, + 0.0005175198893994093, + 0.027413111180067062, + 0.018872447311878204, + 0.017079489305615425, + 0.014774790033698082, + -0.0017897445941343904, + 0.022830180823802948, + -0.004390229936689138, + -0.04012376070022583, + -0.018792476505041122, + -0.04989451542496681, + 0.03140333667397499, + 0.02155577763915062, + 0.008380158804357052, + 0.013504186645150185, + -0.03694823384284973, + 0.059069301933050156, + -0.0009390267077833414, + -0.04349237680435181, + -0.014945232309401035, + -0.031729135662317276, + 0.002215282991528511, + 0.059103578329086304, + -0.026294339448213577, + 0.024014946073293686, + -0.06397827714681625, + -0.01017138920724392, + -0.05988173559308052, + 0.00323069398291409, + -0.03428579866886139, + -0.023745717480778694, + -0.036118049174547195, + -0.07098438590765, + -0.006903308909386396, + 0.058041177690029144, + -0.004653299227356911, + 0.01949481852352619, + -0.054934922605752945, + 0.012221598997712135, + -0.030170060694217682, + -0.03710544854402542, + 0.017140066251158714, + 0.0030997092835605145, + 0.010283183306455612, + 0.005089312791824341, + -0.0013318799901753664, + 0.012839160859584808, + 0.09652712941169739, + 0.014624129049479961, + 0.03856233134865761, + 0.0065587894059717655, + 0.030452637001872063, + 0.045988716185092926, + 0.027431147173047066, + 0.01090520340949297, + -0.019761402159929276, + 0.014395203441381454, + 0.030282815918326378, + -0.04496822878718376, + -0.03030860424041748, + -0.017227565869688988, + -0.020502574741840363, + -0.02553729899227619, + 0.002813886385411024, + 0.042261116206645966, + -0.017334232106804848, + -0.013257281854748726, + -0.01599234715104103, + -0.016018999740481377, + -0.013362993486225605, + -0.0415290929377079, + -0.038715045899152756, + 0.005117169115692377, + -0.01680336706340313, + 0.006847861222922802, + 0.0038504034746438265, + -0.022886333987116814, + -0.02851361595094204, + -0.00689734285697341, + 0.0034893632400780916, + -0.0058403536677360535, + -0.006142952013760805, + -0.022117305546998978, + -0.00316832447424531, + 0.045926038175821304, + -0.03523438051342964, + -0.06503244489431381, + -0.05552830547094345, + 0.004391700029373169, + 0.04217243939638138, + 0.07613745331764221, + 0.0581071674823761, + 0.02656284160912037, + -0.001619738875888288, + 0.0072718956507742405, + 0.03399796411395073, + 0.010884944349527359, + 0.03083915263414383, + -0.0019889199174940586, + 0.002479348098859191, + 0.015577476471662521, + 0.003468372393399477, + 0.006062557455152273, + -0.057742659002542496, + -0.004617941565811634, + 0.0014264571946114302, + 0.038870494812726974, + -0.029281102120876312, + -0.001680324668996036, + -0.014393944293260574, + -0.01029287837445736, + -0.029303908348083496, + -0.06269501894712448, + 0.044322311878204346, + 0.01948007568717003, + -0.004416297189891338, + 0.06901543587446213, + -0.012319572269916534, + -0.029867611825466156, + -0.015393761917948723, + 0.0007592415204271674, + 0.02059915103018284, + 0.003887368133291602, + 0.018163032829761505, + -0.019882194697856903, + 0.039609186351299286, + 0.05650501325726509, + 0.0017827310366556048, + -0.020245054736733437, + -0.053150489926338196, + 0.010320158675312996, + 0.01565118134021759, + 0.07131702452898026, + -0.03324958309531212, + -0.0374067984521389, + 0.013373114168643951, + -0.0008115938981063664, + -0.015625644475221634, + -0.05068577826023102, + -0.008359544910490513, + 0.013878591358661652, + 0.0018140901811420918, + -0.014263507910072803, + -0.022626960650086403, + -0.03389861434698105, + 0.0631633922457695, + 0.026376990601420403, + 0.0007561380043625832, + -0.010231404565274715, + -0.06750497221946716, + -0.028011731803417206, + 0.007591822184622288, + 0.027718521654605865, + 0.0064834407530725, + 0.026096878573298454, + -0.013717551715672016, + 0.008195610716938972, + 0.027805592864751816, + 0.003137831576168537, + 0.06704046577215195, + -0.02551133744418621, + 0.011669610626995564, + -0.0043946984224021435, + 0.025064688175916672, + -0.02332422137260437, + -0.028317388147115707, + 0.0339999794960022, + 0.005261573940515518, + -0.04590059816837311, + 0.0028099450282752514, + -0.034622855484485626, + -0.04304748401045799, + -0.0014746838714927435, + -0.015393393114209175, + -0.042463209480047226, + 0.04798157140612602, + 0.012904866598546505, + 0.03673705831170082, + -0.0303486417979002, + 0.0044572558254003525, + 0.010510283522307873, + 0.010026182048022747, + -0.048088543117046356, + 0.05807212367653847, + 0.045508429408073425, + 0.003397552529349923, + 0.053435929119586945, + -0.0033036970999091864, + -0.045556049793958664, + -0.04121457785367966, + 0.013378959149122238, + 0.009454784914851189, + -0.08598844707012177, + 0.004736487753689289, + -0.053160637617111206, + 0.0043587880209088326, + -0.02078464813530445, + -0.039549533277750015, + 0.01559250708669424, + -0.021048493683338165, + 0.05130985751748085, + -0.000459151720860973, + 0.005142173729836941, + -0.052289772778749466, + 0.018123403191566467, + 0.00522993877530098, + 0.01931053027510643, + 0.03696034476161003, + -0.02721419930458069, + -0.03294358402490616, + 0.018192343413829803, + -0.04165573790669441, + 3.351435952936299e-05, + -0.03756966441869736, + -0.06509952992200851, + 0.023296073079109192, + 0.01440985593944788, + -0.04155329614877701, + -0.008836657740175724, + 0.02424636296927929, + 0.007986590266227722, + -0.043585047125816345, + 0.02505778707563877, + -0.0312066450715065, + 0.02271515689790249, + -0.023395132273435593, + -0.0030942365992814302, + -0.023815536871552467, + -0.00044161820551380515, + 0.0056116315536201, + -0.05928586795926094, + -0.040160372853279114, + -0.008697506971657276, + 0.03745056688785553, + -0.05561593174934387, + 0.04836328327655792, + -0.018249323591589928, + 0.029571494087576866, + 0.030063344165682793, + -0.011556174606084824, + 0.003926901146769524, + 0.042707137763500214, + -0.003078557550907135, + 0.03134772926568985, + 0.0357230007648468, + 0.006785496603697538, + -0.005438816733658314, + 0.0012258915230631828, + 0.05132053792476654, + -0.0414532907307148, + -0.018209384754300117, + -0.012220568023622036, + 0.004465240053832531, + -0.011122397147119045, + 8.068932220339775e-05, + -0.0083467373624444, + -0.04403919354081154, + 0.02739814668893814, + -0.015505990013480186, + -0.01756029576063156, + 0.009621044620871544, + 0.039419498294591904, + 0.03161254897713661, + 0.05542050674557686, + -0.012829145416617393, + 0.020401550456881523, + 0.02172718569636345, + -0.014637916348874569, + 0.049996137619018555, + 0.018657414242625237, + 0.018082737922668457, + -0.004284827504307032, + -0.010038767009973526, + -0.000787890050560236, + 0.07480756938457489, + -0.02860342524945736, + -0.031413618475198746, + 0.01533417496830225, + 0.0008930347976274788, + -0.035898786038160324, + 0.001913020620122552, + -0.03378971293568611, + 0.0039788540452718735, + 0.012011594139039516, + 0.020673459395766258, + 0.03086422197520733, + 0.049365200102329254, + 0.04454783350229263, + -0.003390346188098192, + 0.01672760583460331, + 0.05741249769926071, + -0.03835291787981987, + -0.0028927025850862265, + 0.017929187044501305, + -0.017388788983225822, + 0.015914704650640488, + 0.043876733630895615, + -0.014902880415320396, + -0.020257702097296715, + 0.054047536104917526, + -0.056656889617443085, + 0.0008404843392781913, + 0.026547197252511978, + -0.0025933831930160522, + -0.013975460082292557, + -0.03772388771176338, + 0.011444984003901482, + -0.022076202556490898, + -0.0002508422767277807, + -0.020392222329974174, + 0.029658542945981026, + -0.02628314681351185, + -0.060932502150535583, + 0.06186855211853981, + 0.03161247447133064, + -0.013711955398321152, + 0.03273221105337143, + 0.031100356951355934, + -0.005385300610214472, + -0.001870155450887978, + -0.03869519755244255, + 0.031017418950796127, + -0.01010036189109087, + 0.02084401436150074, + -0.013599898666143417, + 0.006802552379667759, + -0.04866672307252884, + 0.025859404355287552, + -0.06672847270965576, + 0.036996692419052124, + 0.02353964000940323, + 0.02638944238424301, + -0.012040670961141586, + 0.008525690995156765, + -0.037277642637491226, + -0.04291636124253273, + -0.04464701563119888, + -0.015931401401758194, + -0.010219643823802471, + 0.004305996000766754, + -0.011697808280587196, + 0.0030321781523525715, + 1.6469504771521315e-05, + -0.03566690906882286, + -0.053418826311826706, + -0.02781415916979313, + -0.028903108090162277, + 0.012895232997834682, + -0.07472457736730576, + -0.012484523467719555, + 0.006366960238665342, + -0.013886882923543453, + -0.010823600925505161, + 0.005283651873469353, + 0.022636620327830315, + -0.041872937232255936, + -0.030474713072180748, + 0.021170975640416145, + -0.003509861882776022, + -0.009254501201212406, + -0.007852692157030106, + -0.016425613313913345, + -0.03562554717063904, + 0.028840716928243637, + 0.05489613115787506, + -0.025663862004876137, + 0.0495222844183445, + 0.07279631495475769, + 0.012924998067319393, + 0.04392307996749878, + 0.02857605181634426, + -0.019948553293943405, + -0.0020410744473338127, + 0.03881528601050377, + -0.009500735439360142, + 0.018837016075849533, + -0.06046123057603836, + -0.009908437728881836, + 0.02905404195189476, + -0.03203160688281059, + -0.025421228259801865, + -0.03223424404859543, + 0.0686211884021759, + 0.021307094022631645, + 0.029086647555232048, + -0.0175869669765234, + -0.02235407941043377, + -0.0600828193128109, + 0.010087660513818264, + 0.020247282460331917, + -0.045763660222291946, + 0.002873737597838044, + -0.0379042848944664, + -0.03548042103648186, + -0.010745723731815815, + -0.02057083137333393, + 0.02413293905556202, + -0.012212670408189297, + 0.01568170078098774, + -0.007666056510061026, + -0.06262075155973434, + -0.024053320288658142, + -0.031588584184646606, + 0.044149480760097504, + 0.020464511588215828, + -0.030305560678243637, + -0.027323637157678604, + 0.001658691093325615, + -0.0061722369864583015, + -0.06031231954693794, + 0.03231486678123474, + 0.021567663177847862, + -0.008142689242959023, + -0.0002479859977029264, + 0.015678802505135536, + -0.016907399520277977, + 0.0003193287702742964, + 0.012008467689156532, + 0.028108717873692513, + 0.014147435314953327, + -0.02128659375011921, + -0.005596355069428682, + -0.0706172063946724, + 0.005632115062326193, + -0.019637541845440865, + -0.0336543433368206, + 0.028783896937966347, + -0.04239374026656151, + -0.006139540579169989, + 0.043172381818294525, + 0.02351643703877926, + -0.05926956608891487, + -0.029048724099993706, + 0.007390360347926617, + 0.010154345072805882, + 0.022471833974123, + 0.02394046261906624, + -0.028526917099952698, + 0.007477661594748497, + 0.0281986016780138, + 0.03917667269706726, + -0.004211534280329943, + 0.018319612368941307, + -0.04760736972093582, + 0.046989429742097855, + -0.018985942006111145, + -0.015561012551188469, + 0.019045118242502213, + 0.0115099111571908, + -0.055565331131219864, + 0.019436683505773544, + 0.04454529285430908, + 0.03829454630613327, + -0.023897752165794373, + 0.004434589762240648, + -0.0022855245042592287, + 0.00840244721621275, + -0.002683170372620225, + -0.029269572347402573, + -0.029423346742987633, + -0.01669660024344921, + 0.003400141140446067, + -0.05175082013010979, + -0.001712315366603434, + 0.010744499042630196, + 0.0070289685390889645, + 0.007949582301080227, + 0.025609007105231285, + -0.005158883053809404, + 0.0824296623468399, + -0.002380672376602888, + -0.025251533836126328, + -0.009311256930232048, + 0.014014683663845062, + -0.005937977693974972, + 0.006929428316652775, + 0.0038245082832872868, + -0.033577289432287216, + -0.028271395713090897, + 0.011178622953593731, + 0.0048800185322761536, + 0.02544192038476467, + -0.02620074339210987, + -0.029866741970181465, + -0.040852148085832596, + -0.03121696412563324, + 0.0006044108304195106, + 0.01262524351477623, + 0.012486404739320278, + 0.03645086660981178, + 0.05813438072800636, + -0.008891357108950615, + 0.02544422820210457, + -0.01830023154616356, + -0.034241948276758194, + 0.03484363853931427, + -0.00029725974309258163, + -0.036812398582696915, + 0.03611215949058533, + 0.0049868179485201836, + -0.022966498509049416, + 0.053207721561193466, + 0.014711065217852592, + 0.04114194214344025, + 0.037046030163764954, + 0.01673213392496109, + -0.0005413410253822803, + 0.0549936480820179, + -0.010969609953463078, + 0.00622165109962225, + -0.048191629350185394, + 0.04297739267349243, + 0.012270606122910976, + 0.04694638028740883, + -0.02231591008603573, + -0.012410805560648441, + 0.006180458702147007, + -0.005371701437979937, + -0.028401976451277733, + 0.005080047994852066, + 0.05037939175963402, + -9.286230488214642e-05, + -0.0367487296462059, + -0.0009741836693137884, + -0.00953325442969799, + -0.0689423680305481, + -0.006774270441383123, + -0.004432153422385454, + 0.02445302903652191, + 0.019712373614311218, + -0.04990442469716072, + -0.004327729810029268, + 0.005900288000702858, + -0.08530961722135544, + -0.045457057654857635, + -0.0281798355281353, + -0.016323775053024292, + 0.013532103970646858, + -0.03551089018583298, + -0.00906697940081358, + -0.0011408133432269096, + 0.01726195216178894, + 0.029752494767308235, + 0.0007815462886355817, + -0.06613072752952576, + 0.01122196763753891, + -0.04554532840847969, + -0.02072375826537609, + 0.018052441999316216, + -0.018068045377731323, + 0.06409267336130142, + -0.026605049148201942, + -0.04341921582818031, + 0.019656650722026825, + 0.0012755244970321655, + -0.015487981028854847, + -0.025348886847496033, + 0.017026232555508614, + -0.0479150228202343, + 0.049021925777196884, + 0.014847395941615105, + 0.018607981503009796, + 0.005789392627775669, + 0.018338412046432495, + -0.004089775029569864, + -0.028187230229377747, + -0.02019437961280346, + 0.004434044007211924, + -0.05716414004564285, + -0.0069018397480249405, + -0.027409782633185387, + 0.026027917861938477, + 0.03772357851266861, + -0.025713000446558, + -0.014641988091170788, + -0.016170531511306763, + -0.030179308727383614, + -0.004397091455757618, + -0.04022645205259323, + 0.01591118611395359, + 0.012252026237547398, + 0.07744578272104263, + -0.0297298114746809, + 0.015787625685334206, + 0.030554454773664474, + 0.017054427415132523, + 0.03483914956450462, + -0.03787156939506531, + 0.010630475357174873, + 0.001098846085369587, + -0.05702165886759758, + -0.05306108295917511, + -0.035933468490839005, + 0.055652596056461334, + -0.002271287376061082, + 0.039227064698934555, + 0.018537595868110657, + 0.013391220942139626, + -0.000575474405195564, + 0.06252855062484741, + -0.027164574712514877, + -0.060854472219944, + -0.024906260892748833, + 0.014911132864654064, + 0.023419197648763657, + -0.04652341082692146, + 0.006910271942615509, + -0.017530081793665886, + -0.02145920693874359, + 0.07269182801246643, + -0.08753541111946106, + -0.031141726300120354, + 0.04673165827989578, + -0.021602001041173935, + -0.00463718781247735, + 0.024235768243670464, + -0.0017799676861613989, + -0.0523313544690609, + -0.0009312531910836697, + -0.00839382316917181, + -0.016520792618393898, + -0.024710355326533318, + 0.023054003715515137, + -0.024913839995861053, + -0.004621619358658791, + -0.01169130951166153, + 0.020624255761504173, + -0.028195517137646675, + 0.01560953538864851, + -0.0023072720505297184, + -0.01499634888023138, + -0.02019215188920498, + -0.04022284597158432, + -0.02875298261642456, + -0.03318644315004349, + 0.025841183960437775, + -0.01731288991868496, + -0.001310050254687667, + 0.07623720169067383, + -0.030124202370643616, + -0.052394624799489975, + -0.07332509011030197, + -0.003900957992300391, + 0.0007596458308398724, + -0.001543046091683209, + 0.036214910447597504, + -0.008474636822938919, + 0.021181654185056686, + 0.02409077063202858, + 0.06588875502347946, + 0.04826344549655914, + -0.010804097168147564, + 0.017845099791884422, + -0.022155333310365677, + 0.026560744270682335, + -0.006378622725605965, + 0.007370491046458483, + -0.020004384219646454, + 0.024453969672322273, + 0.034684281796216965, + 0.055728424340486526, + -0.027857491746544838, + 0.04370737448334694, + -0.018706591799855232, + 0.06639602035284042, + 0.04075724631547928, + -0.022687789052724838, + -0.01923855021595955, + -0.02990654669702053, + -0.015004382468760014, + 0.0053694709204137325, + -0.053322453051805496, + -0.03892986476421356, + 0.0016573909670114517, + 0.026880577206611633, + -0.008973580785095692, + 0.004021936561912298, + -0.003954190760850906, + 0.05077942833304405, + 0.05263166129589081, + 0.06255891919136047, + 0.020305169746279716, + -0.014027083292603493, + 0.025622671470046043, + 0.03973649814724922, + -0.012756619602441788, + 0.006398772355169058, + 0.01579497754573822, + 0.007288971450179815, + 0.03799738362431526, + 0.03675726801156998, + 0.04283265769481659, + 0.0007330017979256809, + 0.011307421140372753, + -0.029149476438760757, + -0.014035651460289955, + -0.02534646727144718, + -0.023422278463840485, + 0.011299840174615383, + 0.07147453725337982, + -0.006406867876648903, + 0.00573941832408309, + 0.026044661179184914, + 0.009954220615327358, + 0.03677745535969734, + -0.06691952794790268, + 0.005679153371602297, + 0.004118277691304684, + 0.03242414817214012, + -0.041988518089056015, + 0.03820193558931351, + 0.05711669102311134, + -0.05000018700957298, + 0.012705703265964985, + 0.0410890132188797, + 0.014246286824345589, + 0.004509604070335627, + 0.0019518963526934385, + 0.008409262634813786, + -0.04797163978219032, + 0.009979832917451859, + 0.002784867538139224, + -0.0007148617296479642, + 0.003535772440955043, + 0.006077998783439398, + 0.029829662293195724, + 0.025522399693727493, + 0.0015393956564366817, + 0.09368079900741577, + -0.009168656542897224, + -0.011566086672246456, + -0.00497584929689765, + 0.013945568352937698, + -0.004546741023659706, + -0.006095094606280327, + -0.0569765530526638, + -0.019361238926649094, + -0.003671889426186681, + 0.0455479696393013, + -0.014872205443680286 + ], + "start_index": 0, + "end_index": 149, + "token_count": 46, + "file": "bucle_longitud_de_datos.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "38c7236c-55c6-52ca-a7dd-5b76fbc3f2ef", + "_source": { + "text": "addParam(emails,emails)\ngetQueryParamList(lista_correos)\naddResult(lista_correos)", + "embedding": [ + 0.029782326892018318, + 0.00978575088083744, + -0.011137853376567364, + -0.08501263707876205, + -0.014979677274823189, + -0.01793886348605156, + 0.04711535945534706, + -0.03535216301679611, + 0.011679740622639656, + -0.02956959418952465, + -0.021835993975400925, + -0.04048696905374527, + 0.06009611859917641, + -0.009632936678826809, + -0.03367745876312256, + 0.026752464473247528, + -0.04724325239658356, + 0.019384056329727173, + 0.038720451295375824, + 0.052197687327861786, + -0.033169377595186234, + 0.039285559207201004, + -0.018287045881152153, + 0.08348210901021957, + 0.07667651772499084, + -0.0960492342710495, + -0.002234959276393056, + 0.018177831545472145, + 0.054625995457172394, + -0.03781035915017128, + 0.042297493666410446, + -0.03118915669620037, + 0.005042710807174444, + -0.04349282756447792, + 0.017528370022773743, + -0.012064175680279732, + -0.008480055257678032, + 0.0022853296250104904, + 0.025148872286081314, + 0.039668887853622437, + 0.013964910991489887, + 0.02941705659031868, + 0.04844539985060692, + 0.02985774353146553, + 0.0043970635160803795, + -0.04284488782286644, + 0.05925167724490166, + -0.0029305440839380026, + -0.03887467831373215, + 0.006601596251130104, + -0.05053836107254028, + -0.04436754435300827, + 0.003996031824499369, + 0.03867066279053688, + 0.018986599519848824, + -0.036507729440927505, + 0.044917427003383636, + 0.007177302148193121, + -0.01167044136673212, + 0.0034125777892768383, + -0.01879335753619671, + -0.059914764016866684, + -0.04702456668019295, + -0.005001714453101158, + 0.031018728390336037, + -0.054774507880210876, + 0.062002282589673996, + 0.02718745358288288, + -0.0723930150270462, + 0.0024566249921917915, + -0.028179068118333817, + -0.009088500402867794, + -0.03695555403828621, + 0.010093359276652336, + -0.011992032639682293, + -0.02586096152663231, + 0.033950503915548325, + 0.026336845010519028, + -0.022844109684228897, + -0.025838905945420265, + 0.015572176314890385, + -0.004435899667441845, + 0.018126875162124634, + 0.05835280194878578, + -0.00864066556096077, + 0.03791479766368866, + 0.014064137823879719, + 0.05473661795258522, + -0.02788478694856167, + 0.012032514438033104, + -0.02781577967107296, + 0.014516341499984264, + -0.008430952206254005, + -0.005370571278035641, + -0.006601468659937382, + -0.03629927337169647, + 0.041549209505319595, + 0.020478101447224617, + -0.012253062799572945, + 0.024123089388012886, + -0.01376382540911436, + -0.01593535952270031, + -0.0070471144281327724, + 0.000732581946067512, + -0.026169927790760994, + 0.02084689773619175, + -0.06947651505470276, + 0.035281747579574585, + -0.014736244454979897, + -0.045115161687135696, + -0.010795433074235916, + 0.032712411135435104, + 0.028331534937024117, + 0.057897236198186874, + 0.06930897384881973, + 0.019093574956059456, + 0.03994055464863777, + -0.0013554764445871115, + 0.009171530604362488, + 0.015724053606390953, + 0.01898222602903843, + 0.006810718681663275, + -0.007860242389142513, + 0.012715433724224567, + 0.0017822342924773693, + -0.007386425510048866, + 0.0072260089218616486, + 0.04464666172862053, + -0.01636735536158085, + -0.050936393439769745, + -0.016716383397579193, + -0.01701156236231327, + -0.06850039213895798, + -0.008990640752017498, + -0.0032716745045036077, + -0.016610536724328995, + -0.0030478539410978556, + 0.01897290162742138, + 0.05711037665605545, + 0.018316883593797684, + -0.06567405164241791, + 0.001975529594346881, + 0.025545280426740646, + -0.009297329001128674, + 0.012414919212460518, + 0.027710191905498505, + -0.03334582969546318, + -0.006525494623929262, + -0.0053846705704927444, + 0.04194127023220062, + -0.02944815903902054, + 0.00014547229511663318, + -0.008078477345407009, + -0.03468714654445648, + 0.0533728301525116, + 0.04793236404657364, + -0.0010613418417051435, + -0.02005930058658123, + 0.005655769724398851, + 0.02462385594844818, + -0.02330384962260723, + -0.004949021153151989, + 0.02094312757253647, + -0.06974032521247864, + -0.02037176676094532, + -0.00337191647849977, + -0.036528732627630234, + -0.02900143712759018, + 0.006057619582861662, + -0.0243503600358963, + -0.0041395677253603935, + 0.0002959525736514479, + -0.010993258096277714, + -0.05430702865123749, + -0.022927969694137573, + -0.047868646681308746, + -0.020598527044057846, + -0.013755419291555882, + -0.012239031493663788, + -0.024260589852929115, + -0.026067867875099182, + 0.008819234557449818, + 0.014895356260240078, + 0.016650784760713577, + 0.01684386283159256, + 0.0902785062789917, + -0.002843287540599704, + -0.003534566145390272, + -0.03142546862363815, + -0.007355653215199709, + -0.014223548583686352, + -0.028007760643959045, + -0.057299427688121796, + -0.03380650654435158, + -0.014044553972780704, + -0.029507998377084732, + 0.015436962246894836, + 0.012562942691147327, + 0.010878040455281734, + 0.019705789163708687, + -0.019640203565359116, + -0.00447014719247818, + 0.009176175110042095, + 0.03024977631866932, + -0.007217565085738897, + -0.010782604105770588, + 0.008416174910962582, + 0.027378663420677185, + -0.014614000916481018, + -0.006781748961657286, + 0.01663927175104618, + -0.010542449541389942, + 0.03351949527859688, + 0.02532302215695381, + -0.02713850885629654, + 0.006422532256692648, + -0.0005120181012898684, + -0.0031409410294145346, + 0.021642101928591728, + -0.004750682506710291, + 0.02446654811501503, + 0.03793950378894806, + -0.051338568329811096, + -0.00897318497300148, + -0.03956151753664017, + -0.02211134321987629, + 0.030700091272592545, + 0.0012273509055376053, + -0.010405135340988636, + 0.0025203709956258535, + -0.008597325533628464, + -0.0088674146682024, + 0.06093041971325874, + -0.014592651277780533, + 0.025667626410722733, + -0.015718931332230568, + -0.013608523644506931, + 0.005595663096755743, + 0.00553318252786994, + -0.005608650390058756, + -0.006809872575104237, + -0.003597595263272524, + 0.03016677126288414, + 0.007536060176789761, + -0.008842341601848602, + 0.03865889459848404, + -0.010268229991197586, + -0.009890995919704437, + -0.005572333000600338, + -0.054922860115766525, + -0.0003571156121324748, + 0.03851863369345665, + -0.052711810916662216, + 0.03307897970080376, + 0.03860486298799515, + 0.006013893522322178, + 0.005156299564987421, + -0.016042714938521385, + -0.010559497401118279, + 0.021897608414292336, + -0.037508223205804825, + -0.031165029853582382, + -0.014006285928189754, + -0.008927556686103344, + -0.006197942886501551, + 0.026134250685572624, + -0.04259398952126503, + 0.051731936633586884, + -0.003789193695411086, + 0.0012292262399569154, + -0.013850299641489983, + 0.012815022841095924, + 0.004573901649564505, + -0.05188767984509468, + 0.001059634261764586, + 0.0004700486024376005, + 0.004919563420116901, + -0.035946838557720184, + 0.030409764498472214, + -0.03306056931614876, + -0.0182801466435194, + 0.029704531654715538, + -0.029864363372325897, + 0.032904185354709625, + -0.01648462377488613, + 0.0218387171626091, + 0.018020588904619217, + -0.013038324192166328, + -0.010153738781809807, + 0.0012205097591504455, + 0.04305078461766243, + -0.024413757026195526, + -0.015584546141326427, + 0.039198294281959534, + -0.026322318241000175, + 0.00045222663902677596, + -0.02435612492263317, + 0.030739810317754745, + 0.014673405326902866, + -0.04143397510051727, + -0.023976121097803116, + 0.02859947271645069, + -0.00752333365380764, + -0.022553132846951485, + -0.03021092712879181, + -0.02143743820488453, + 0.07759854942560196, + -0.03801447153091431, + -0.003277634270489216, + -0.022493606433272362, + 0.05547944828867912, + -0.06811245530843735, + 0.034393128007650375, + 0.010865932330489159, + 0.005632228683680296, + -0.007705539930611849, + -0.05727173015475273, + 0.00627015670761466, + 0.06285305321216583, + -0.018241964280605316, + -0.002170662861317396, + 0.018333222717046738, + 0.012446220964193344, + 0.042707085609436035, + 0.017193734645843506, + 0.025323133915662766, + 0.0591844767332077, + -0.0471622459590435, + -0.004469101317226887, + 0.04499028995633125, + 0.012437588535249233, + -0.029484061524271965, + 0.03350890055298805, + 0.004003791604191065, + -0.0052648079581558704, + -0.04940776526927948, + 0.05147796869277954, + 0.004079957026988268, + -0.030142007395625114, + 0.00019381268066354096, + 0.03724309056997299, + -3.510847091092728e-05, + 0.035116832703351974, + 0.04209853336215019, + -0.03024994023144245, + -0.004496391862630844, + -0.052559029310941696, + 0.010505668818950653, + -0.019240135326981544, + -0.039724938571453094, + -0.003786038840189576, + -0.010820342227816582, + 0.012674277648329735, + -0.031106458976864815, + 0.005851323250681162, + 0.02558893710374832, + 0.06853262335062027, + -0.012640426866710186, + -0.04377678781747818, + 0.0034704050049185753, + -0.06604474037885666, + 0.010647580027580261, + 0.03188539668917656, + -0.04427140951156616, + -0.032128266990184784, + 0.0153365358710289, + 0.011746285483241081, + -0.03694567084312439, + 0.025881102308630943, + 0.004727660678327084, + -0.10498453676700592, + -0.012683110311627388, + -0.002746554324403405, + -0.002896333811804652, + -0.0020068769808858633, + -0.012436381541192532, + 0.011459690518677235, + -0.03443074971437454, + 0.00747671676799655, + 0.0021020234562456608, + 0.02647332102060318, + -0.006249671336263418, + -0.023672906681895256, + 0.02042008377611637, + -0.015158567577600479, + 0.0030926039908081293, + 0.014601020142436028, + -0.07071197032928467, + -0.0021671545691788197, + -0.03652525693178177, + 0.01182369515299797, + 0.022503333166241646, + -0.009037326090037823, + 0.0068222712725400925, + 0.00612496305257082, + 0.0327744334936142, + -0.05934353545308113, + 0.03420054540038109, + 0.021139591932296753, + 0.01602158509194851, + -0.024177156388759613, + -0.0016645572613924742, + -0.03271554037928581, + -0.044284362345933914, + 0.017251942306756973, + -0.030177580192685127, + -0.02439848519861698, + 0.02643410675227642, + -0.009302154183387756, + 0.0030602964106947184, + 0.0525180883705616, + -0.016729049384593964, + -0.043160710483789444, + 0.0023232693783938885, + 0.032816365361213684, + -0.007657964248210192, + 0.07006237655878067, + 0.01726200059056282, + -0.03776337206363678, + -0.019222937524318695, + -0.011285217478871346, + 0.030327217653393745, + -0.01227517332881689, + -0.02505713887512684, + 0.01709018088877201, + 0.009029178880155087, + -0.021807145327329636, + -0.025386592373251915, + 0.015610919333994389, + -0.008194121532142162, + -0.015217638574540615, + -0.021054157987236977, + 0.03369694948196411, + -0.012363606132566929, + -0.04492274671792984, + 0.021041490137577057, + 0.05281161144375801, + 0.021474387496709824, + 0.015723511576652527, + -0.03210440278053284, + 0.009350097738206387, + 0.04307908937335014, + -0.011907007545232773, + -0.0101106446236372, + -0.011275417171418667, + 0.008946050889790058, + -0.013119541108608246, + -0.007683060131967068, + 0.011460225097835064, + -0.022084087133407593, + 0.008217144757509232, + -0.014950008131563663, + -0.009471716359257698, + 0.020916614681482315, + -0.015090142376720905, + -0.03237120807170868, + 0.014074397273361683, + -0.04835180938243866, + -0.016518332064151764, + 0.019151348620653152, + 0.034045759588479996, + 0.04805927723646164, + 0.012954995036125183, + -0.02360771968960762, + 0.010392725467681885, + 0.030216200277209282, + -0.014945863746106625, + 0.00027112531824968755, + 0.06143815815448761, + -0.009644401259720325, + 0.01262994296848774, + 0.03680287301540375, + 0.0006318390951491892, + -0.02696729265153408, + 0.04345251992344856, + -0.031408824026584625, + -0.0014803269878029823, + -0.055680565536022186, + 0.01405326183885336, + 0.06266097724437714, + -0.04971231147646904, + 0.0075601572170853615, + 0.028775060549378395, + -0.015988875180482864, + 0.0665748119354248, + -0.0201644878834486, + -0.004263393580913544, + 0.014600856229662895, + -0.04106772691011429, + 0.02235318534076214, + -0.013429366983473301, + 0.03344698250293732, + 0.012839382514357567, + -0.08317898213863373, + 0.05750654265284538, + -0.013729202561080456, + -0.034945353865623474, + -0.039109643548727036, + -0.02471000887453556, + 0.02552816830575466, + -0.0007779086008667946, + -0.008942687883973122, + -0.051568396389484406, + 0.013816514983773232, + -0.01678963378071785, + -0.04007508233189583, + -0.017532486468553543, + 0.00153423345182091, + 0.039067625999450684, + 0.057523179799318314, + 0.011766611598432064, + 0.017676599323749542, + -0.007074011489748955, + -0.007203661371022463, + -0.04328286275267601, + 0.000709043990354985, + -0.009195677004754543, + 0.04985061287879944, + -0.061770837754011154, + 0.020383823662996292, + 0.018173787742853165, + -0.00361523381434381, + 0.014846252277493477, + -0.02194349281489849, + -0.033429890871047974, + 0.023564526811242104, + 0.04567010700702667, + -0.010906899347901344, + -0.03484383970499039, + 0.00971852708607912, + -0.003636263543739915, + -0.025480857118964195, + 0.013273249380290508, + -0.05963079258799553, + -0.026781536638736725, + 0.058315180242061615, + -0.0180771816521883, + -0.039618946611881256, + -0.03783707693219185, + 0.04965098574757576, + 0.0037771817296743393, + -0.008915210142731667, + -0.021220613270998, + 0.02082875557243824, + 0.0009292732574976981, + 0.035750314593315125, + 0.00972994789481163, + 0.03990346938371658, + 0.002165522426366806, + 0.037041544914245605, + 0.0018348428420722485, + 0.008703458122909069, + 0.04078727960586548, + -0.06476008147001266, + 0.03911924734711647, + -0.05388343706727028, + 0.022728150710463524, + 0.019527889788150787, + 0.05305953696370125, + -0.03515474498271942, + -0.03384900838136673, + 0.046077147126197815, + -0.019354289397597313, + 0.014214318245649338, + 0.04973557963967323, + -0.019166097044944763, + -0.009357714094221592, + 0.029664885252714157, + -0.033511944115161896, + -0.004932474344968796, + 0.020216139033436775, + -0.012095189653337002, + 0.00792514905333519, + 0.04989544674754143, + -0.016904914751648903, + -0.057892415672540665, + -0.006604112219065428, + 0.022952888160943985, + 0.017922833561897278, + -0.045006658881902695, + 0.04015791043639183, + 0.007444692309945822, + 0.03458921238780022, + 0.03813280165195465, + -0.044082336127758026, + 0.05618184804916382, + 0.0725221112370491, + 0.03439588472247124, + -0.02384738065302372, + -0.07165546715259552, + 0.03714674711227417, + -0.02904139645397663, + 0.013844721019268036, + -0.030907392501831055, + 0.038368817418813705, + -0.01128639280796051, + -0.06343498080968857, + 0.05304514616727829, + -0.006575050763785839, + -0.04419221356511116, + 0.05764378234744072, + 0.08541476726531982, + 0.004439076408743858, + 0.02465299516916275, + 0.0019818719010800123, + 0.01253592874854803, + 0.024849476292729378, + 0.08657538145780563, + -0.042872507125139236, + -0.014688652940094471, + -0.019162099808454514, + 0.026630986481904984, + -0.05594194307923317, + 0.0032966190483421087, + 0.021641379222273827, + 0.008330046199262142, + -0.010561137460172176, + 0.044537000358104706, + -0.03472347557544708, + -0.03423858806490898, + 0.00169956567697227, + 0.00975177064538002, + -0.0068535651080310345, + 0.03273363038897514, + -0.06746860593557358, + 0.029402757063508034, + 0.01166079193353653, + 0.04266741871833801, + -0.005662084091454744, + -0.00018450402421876788, + -0.026151088997721672, + -0.03674543276429176, + -0.026887893676757812, + -0.02946712262928486, + 0.0008296968298964202, + 0.016445301473140717, + -0.05677234008908272, + -0.023487932980060577, + 0.006967443507164717, + 0.006329085677862167, + 0.021137624979019165, + -0.07328818738460541, + -0.008143740706145763, + -0.00553826754912734, + -0.03205016627907753, + -0.0026127120945602655, + -0.011930590495467186, + 0.005117904860526323, + 0.010052957572042942, + -0.029198478907346725, + -0.005744397174566984, + 0.046687476336956024, + 0.015985893085598946, + 0.02356179989874363, + -0.034833721816539764, + 0.006660720333456993, + -0.05200311914086342, + 0.03498763218522072, + -0.009222310036420822, + 0.02787562645971775, + -0.02271983213722706, + 0.018532248213887215, + -0.016172870993614197, + -0.049682650715112686, + -0.04284224659204483, + 0.011949616484344006, + 0.06627914309501648, + 0.012761417776346207, + 0.003912284038960934, + 0.031109150499105453, + -0.04615775868296623, + -0.038678210228681564, + -0.012849804013967514, + -0.030326029285788536, + 0.0003869552456308156, + 0.007300196215510368, + -0.01783667504787445, + 0.0033026321325451136, + -0.025683488696813583, + -0.017685068771243095, + -0.005881649442017078, + -0.022384963929653168, + 0.006418087985366583, + -0.013786114752292633, + -0.01861800253391266, + -0.04337016120553017, + -0.04494345560669899, + 0.015153871849179268, + 0.001956818625330925, + -0.0460384227335453, + -0.01791035197675228, + -0.05368252843618393, + 0.0323055163025856, + -0.012218235991895199, + 0.056933946907520294, + 0.02503739297389984, + 0.012689575552940369, + 0.009451858699321747, + 0.02128538303077221, + 0.01295304112136364, + -0.024513548240065575, + -0.032895173877477646, + 0.007081969175487757, + -0.02592683583498001, + -0.04940522462129593, + -0.0011118602706119418, + 0.005325771868228912, + -0.031156297773122787, + -0.02749023586511612, + -0.0090340506285429, + -0.013474158942699432, + -0.0006935459095984697, + 0.005308081395924091, + -0.017249278724193573, + 0.0015371843473985791, + 0.018076138570904732, + -0.013898634351789951, + 0.008293675258755684, + -0.04145866259932518, + -0.008924153633415699, + -0.0022166811395436525, + -0.029255155473947525, + 0.03338702768087387, + 0.02628868632018566, + 0.011152046732604504, + -0.027825167402625084, + 0.03034055233001709, + 0.006803663447499275, + -0.0053518484346568584, + -0.014582034200429916, + 0.04422017186880112, + -0.04344255104660988, + -0.017813803628087044, + -0.03949885815382004, + 0.0004445253580342978, + -0.020538615062832832, + 0.040887702256441116, + -0.03996074199676514, + 0.0007461502682417631, + 0.03434697538614273, + 0.023070210590958595, + -0.0008636525017209351, + -0.016094787046313286, + 0.0020049638114869595, + 0.0325888991355896, + 0.014689872972667217, + -0.030835608020424843, + -0.06189189478754997, + -0.00367636326700449, + -0.010797363705933094, + -0.0057650404050946236, + -0.008951065130531788, + -0.015951521694660187, + 0.007291358895599842, + -0.05784403160214424, + -0.0030241108033806086, + 0.017249131575226784, + -0.015734519809484482, + 0.05744706839323044, + 0.010186961852014065, + -0.06252691149711609, + -0.027420878410339355, + 0.04583922028541565, + -0.004276285879313946, + -0.001029140199534595, + 0.008726317435503006, + 0.017886321991682053, + -0.006846174132078886, + -0.056673672050237656, + 0.023370986804366112, + 0.051063232123851776, + 0.0011397809721529484, + -0.014449303969740868, + 0.03844321891665459, + 0.031189506873488426, + -0.0036741069052368402, + 0.012126798741519451, + -0.05334709957242012, + 0.03687244653701782, + 0.0458679161965847, + 0.020528433844447136, + -0.03545130416750908, + -0.025278614833950996, + -0.006357538513839245, + 0.018816815689206123, + 0.02860019914805889, + 0.00020018304348923266, + -0.013560936786234379, + 0.03467894345521927, + -0.03910038247704506, + 0.023011231794953346, + 0.027080580592155457, + 0.04821689799427986, + -0.004807399585843086, + 0.012557455338537693, + -0.06251706928014755, + -0.038245704025030136, + 0.07366205751895905, + 0.04468909651041031, + 0.048940129578113556, + 0.01603773422539234, + 0.010879186913371086, + -0.035074103623628616, + 0.007001579739153385, + 0.08150899410247803, + -0.03572111949324608, + -0.01760261319577694, + -0.01036400068551302, + -0.02651727944612503, + -0.05126195773482323, + -0.0008317663450725377, + 0.05954093858599663, + -0.010855901055037975, + 0.04882362484931946, + 0.0060812742449343204, + 0.0526266023516655, + -0.013909812085330486, + -0.042607493698596954, + -0.003194035729393363, + 0.014063335955142975, + 0.00870981253683567, + 0.020594829693436623, + 0.008504004217684269, + 0.024412743747234344, + -0.023149389773607254, + 0.027468005195260048, + -0.002958349883556366, + 0.021940885111689568, + -0.05387614294886589, + 0.02724584750831127, + -0.017303815111517906, + 0.03310709074139595, + -0.01837006025016308, + -0.0216775331646204, + 0.019627710804343224, + -0.040400970727205276, + 0.011929350905120373, + 0.030763549730181694, + -0.04329603910446167, + 0.03121478669345379, + 0.006764842197299004, + 0.03313577175140381, + -0.017162445932626724, + -0.015696022659540176, + 0.033766184002161026, + 0.03349770978093147, + 0.023098409175872803, + -0.00917751807719469, + 0.0384257510304451, + -0.00023072703334037215, + -0.009518645703792572, + 0.04137563332915306, + 0.007975777611136436, + 0.014424952678382397, + -0.05627182498574257, + 0.014055835083127022, + 0.0005218434380367398, + 0.005289537366479635, + -0.07500613480806351, + -0.01729167439043522, + -0.025774233043193817, + -0.023723192512989044, + -0.001624761731363833, + -0.030275844037532806, + -0.03483187034726143, + 0.06572217494249344, + -0.006961431819945574, + 0.036705806851387024, + 0.01419250387698412, + -0.04647907614707947, + 0.02403462491929531, + 0.015381286852061749, + -0.041228603571653366, + 0.0009176013991236687, + -0.04093422368168831, + -0.0034548062831163406, + -0.020234784111380577, + 0.03089345060288906, + -0.0058722058311104774, + 0.09115014225244522, + -0.03623123839497566, + -0.028359616175293922, + 0.02548452652990818, + -0.005481452215462923, + -0.04830243065953255, + 0.012275069020688534, + -0.0007315895054489374, + 0.030565647408366203, + 0.041774045675992966, + -0.015643039718270302, + 0.019466686993837357, + -0.01065928116440773, + -0.003380622249096632, + 0.06269311904907227, + -0.09785204380750656, + -0.02840968780219555, + 0.08824191987514496, + 0.06292852759361267, + 0.017651688307523727, + 0.02793298475444317, + 0.05176200717687607, + -0.03079446777701378, + -0.0018693325109779835, + 0.004013339057564735, + 0.008473262190818787, + -0.01475238986313343, + 0.03106527589261532, + -0.007079412695020437, + 0.01579993963241577, + 0.05788375437259674, + -0.04884019121527672, + 0.03728029876947403, + 0.0024849153123795986, + -0.01801469922065735, + 0.03766058757901192, + -0.022323762997984886, + -0.0026185675524175167, + 0.02601611614227295, + -0.042094867676496506, + -0.0288577601313591, + 0.0035595218650996685, + -0.018690817058086395, + -0.005643473472446203, + -0.019819488748908043, + -0.028302516788244247, + -0.006104632746428251, + 0.015601600520312786, + 0.013341708108782768, + -0.030251210555434227, + 0.008639298379421234, + -0.01844213902950287, + 0.0034937364980578423, + 0.03725248947739601, + 0.021371526643633842, + 0.015171877108514309, + 0.011294194497168064, + 0.06655875593423843, + -0.01045528706163168, + -0.000746229023206979, + -0.03988347947597504, + -0.006580139044672251, + -0.012145880609750748, + 0.010525560937821865, + -0.0024445608723908663, + 0.02290552668273449, + -0.003059322712942958, + 0.02239133045077324, + 0.057915110141038895, + 0.012166010215878487, + 0.023477813228964806, + -0.031504593789577484, + 0.014268686063587666, + -0.008452700451016426, + 0.007728998549282551, + 0.02206606976687908, + -0.06048474460840225, + -0.047353778034448624, + 0.0050997803919017315, + -0.0521361269056797, + -0.029719745740294456, + 0.005892414133995771, + -0.02638629637658596, + 0.03283558785915375, + -0.021129854023456573, + 0.027330586686730385, + -0.0738898515701294, + 0.005738379433751106, + 0.01650880090892315, + -0.002315220655873418, + -0.013663902878761292, + 0.0073010302148759365, + -0.025003626942634583, + 0.03172099590301514, + -0.00889622326940298, + -0.00930820032954216, + 0.005092142149806023, + -0.04495631158351898, + 0.022255590185523033, + 0.041370365768671036, + -0.024417445063591003, + 0.03168249875307083, + -0.037109486758708954, + 0.05513207986950874, + -0.006151686888188124, + -0.0019721572753041983, + -0.017097214236855507, + 0.09210829436779022, + -0.006460597738623619, + 0.005484169349074364, + -0.0010474200826138258, + -0.008423751220107079, + 0.014867044985294342, + 0.002073956187814474, + -0.008036518469452858, + -0.023294344544410706, + 0.038345735520124435, + 0.0378241240978241, + 0.005839052610099316, + 0.03541163355112076, + -0.05189177766442299, + 0.0010460810735821724, + -0.029202425852417946, + 0.022913791239261627, + 0.03818526864051819, + -0.012001489289104939, + 0.04102615267038345, + -0.0015900192083790898, + -0.010598278604447842, + 0.01993074081838131, + 0.015117678791284561, + 0.04113025963306427, + 0.007735586725175381, + 0.09583663195371628, + -0.008509145118296146, + -0.00981453899294138, + -0.007400659378618002, + -0.029422737658023834, + 0.017510391771793365, + 0.01850135251879692, + -0.04046643525362015, + -0.045065589249134064, + -0.03728988766670227, + 0.05624748021364212, + -0.02827722206711769 + ], + "start_index": 0, + "end_index": 81, + "token_count": 22, + "file": "captura_de_listas_multiples.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "c86596a2-62a9-577f-a215-3bff8268bd34", + "_source": { + "text": "addParam(\"lang\", l)\nif(l, \"es\", \"=\")\n addVar(msg, \"Hola\")\nend()\naddResult(msg)", + "embedding": [ + 8.916910155676305e-05, + 0.03305454179644585, + -0.0046548498794436455, + -0.08647514879703522, + -0.03611014038324356, + -0.054730311036109924, + -0.02091159299015999, + -0.03617074340581894, + 0.008870412595570087, + -0.014764937572181225, + -0.004689537920057774, + -0.07289537787437439, + -0.008452716283500195, + -0.006521862465888262, + -0.029075585305690765, + 0.057893116027116776, + -0.01854996755719185, + 0.053524237126111984, + -0.004908474627882242, + -0.029221592471003532, + -0.0011840937659144402, + 0.02964203432202339, + -0.038785941898822784, + 0.056147489696741104, + 0.054436907172203064, + -0.0167904794216156, + -0.015569018200039864, + 0.04710067808628082, + 0.07706642895936966, + -0.0011767166433855891, + -0.024517305195331573, + 0.007255513686686754, + 0.0008806147961877286, + -0.004869129043072462, + 0.03179100528359413, + -0.00970068946480751, + -0.0018834761576727033, + -0.03313588723540306, + 0.01228415872901678, + 0.05102519318461418, + 0.02507837489247322, + -0.02418570965528488, + 0.043820254504680634, + 0.03293812647461891, + -0.017063207924365997, + -0.006015305873006582, + 0.003986195661127567, + 0.006506258621811867, + 0.008448476903140545, + -0.001233216724358499, + -0.05286062881350517, + 0.010392395779490471, + -0.034558847546577454, + -0.014033965766429901, + -0.0033341001253575087, + -0.05582471564412117, + -0.029887549579143524, + 0.08138392865657806, + 0.006283807568252087, + -0.03487197309732437, + -0.06368379294872284, + -0.0019359400030225515, + -0.02848426066339016, + -0.02102535404264927, + 0.011486784555017948, + -0.04351397603750229, + 0.02304639294743538, + -0.007200227119028568, + -0.0721135213971138, + 0.03565298765897751, + -0.034846171736717224, + -0.07741629332304001, + 0.0007192540215328336, + -0.010449811816215515, + -0.017248984426259995, + 0.02278350107371807, + -0.036346435546875, + -0.024332908913493156, + 0.01635620929300785, + -0.021370377391576767, + -0.029352569952607155, + -0.009297188371419907, + 0.019615689292550087, + 0.00957824382930994, + 0.028988296166062355, + -0.0047404277138412, + -0.04138689115643501, + -0.014666560105979443, + -0.03001187928020954, + 0.020776936784386635, + -0.016593001782894135, + 0.03586611524224281, + -0.03054138831794262, + -0.018225090578198433, + 0.02033381536602974, + -0.0253643449395895, + -0.024046514183282852, + 0.06632668524980545, + -0.0018187579698860645, + -0.009451517835259438, + -0.012614035047590733, + -0.023559093475341797, + 0.007846097461879253, + 0.014245651662349701, + 0.015496558509767056, + 0.008780097588896751, + -0.04804845154285431, + 0.03576242923736572, + -0.02829607017338276, + -0.02210300602018833, + -0.03987625613808632, + 0.021602917462587357, + 0.05944474786520004, + 0.022426936775445938, + 0.008439173921942711, + 0.034873805940151215, + 0.04260793700814247, + -0.0027458244003355503, + 0.00652766227722168, + 0.014379714615643024, + 0.01204783283174038, + 0.016973337158560753, + -0.006225141230970621, + -0.01834115944802761, + -0.021123763173818588, + -0.019261086359620094, + -0.017983701080083847, + 0.015014776960015297, + -0.00953390821814537, + -0.030408449470996857, + 0.007790705189108849, + -0.0195381548255682, + -0.014549322426319122, + -0.00025429873494431376, + 0.027852848172187805, + -0.009429958648979664, + -0.012785268947482109, + 0.021788038313388824, + 0.041083648800849915, + 0.006455269642174244, + -0.010062402114272118, + 0.015564498491585255, + -0.009447683580219746, + -0.022324923425912857, + 0.024176623672246933, + 0.03447740897536278, + -0.020362162962555885, + 0.010736441239714622, + 0.024906406179070473, + -0.014644141308963299, + -0.006111352704465389, + 0.011420417577028275, + 0.017262175679206848, + -0.01607394963502884, + -0.018089646473526955, + 0.046122223138809204, + -0.01703818328678608, + -0.00786585733294487, + 0.011252307333052158, + 0.006944580934941769, + -0.00420563155785203, + 0.008812530897557735, + -0.014296233654022217, + -0.04701098054647446, + -0.056431278586387634, + 0.02870876155793667, + -0.04227602109313011, + -0.012038685381412506, + -0.025510918349027634, + 0.04613146558403969, + 0.006571470759809017, + 0.009815734811127186, + -0.027604348957538605, + -0.04632095247507095, + -0.03296906128525734, + 0.01623968593776226, + -0.0057811858132481575, + -0.01692289113998413, + -0.03229230269789696, + -0.014896064065396786, + 0.026614803820848465, + -0.004238261841237545, + 0.005249661393463612, + 0.007846086286008358, + 0.03006066009402275, + 0.014662716537714005, + 0.0003163327637594193, + -0.007788856513798237, + -0.010390919633209705, + -0.02747543901205063, + -0.06638164818286896, + 0.011703561060130596, + -0.017485810443758965, + -0.013956265524029732, + -0.005540264304727316, + -0.007939337752759457, + 0.023378783836960793, + -0.017999796196818352, + -0.0111478790640831, + 0.016777070239186287, + -0.026059649884700775, + 0.03284943103790283, + -0.025112561881542206, + -0.02040274254977703, + -0.011751377955079079, + -0.007719254586845636, + 0.00026360672200098634, + 0.03635944426059723, + -0.022841477766633034, + 0.01825614646077156, + 0.05599844828248024, + 0.028019670397043228, + 0.02301766723394394, + -0.06390248984098434, + 0.005377837456762791, + -0.003603460267186165, + -0.0426466204226017, + 0.03518252447247505, + 6.045533518772572e-05, + 0.004786191042512655, + 0.004949603229761124, + 0.02599513530731201, + -0.0028282394632697105, + -0.019982418045401573, + 0.05248641595244408, + -0.006277441047132015, + 0.0403294675052166, + -0.00883268378674984, + 0.04445049166679382, + -0.0035134132485836744, + -0.04687982052564621, + 0.0018538858275860548, + 0.055113740265369415, + 0.0024194486904889345, + -0.008101911284029484, + -0.0008247292134910822, + -0.011503384448587894, + 0.02015821635723114, + -0.014491159468889236, + -0.00014939728134777397, + -0.029576323926448822, + -0.016814129427075386, + 0.04378100484609604, + 0.005938493646681309, + -0.01052272878587246, + -0.010936615988612175, + -0.014371296390891075, + 0.027921993285417557, + 0.014791952446103096, + -0.018558183684945107, + -0.010058462619781494, + -0.03637717664241791, + 0.016252342611551285, + -0.05519729480147362, + 0.024530617520213127, + -0.03879675641655922, + 0.016272997483611107, + -0.017979811877012253, + 0.004261400550603867, + -0.008837376721203327, + 0.0001658811088418588, + -0.020343711599707603, + 0.0027959479484707117, + -0.008806421421468258, + -0.018351854756474495, + 0.007828449830412865, + -0.019483203068375587, + 0.014411618001759052, + -0.02392498031258583, + -0.02699122205376625, + 0.036406081169843674, + 0.014353261329233646, + -0.010735378600656986, + -0.03360360115766525, + 0.017119556665420532, + 0.039543673396110535, + -0.010012340731918812, + -0.026510952040553093, + 0.04128439724445343, + 0.00599809130653739, + 0.009868507273495197, + -0.001084467046894133, + -0.03850333392620087, + -0.0011364961974322796, + 0.00096354098059237, + 0.0223097987473011, + 0.02732441946864128, + 0.01648990623652935, + 0.05920721963047981, + 0.02398666925728321, + 0.030189314857125282, + 0.03394869342446327, + -0.03292936086654663, + 0.010151311755180359, + -0.02197927050292492, + -0.011126572266221046, + -0.005917184986174107, + 0.04340291768312454, + 0.007153674494475126, + -0.03255556523799896, + -0.006304564885795116, + -0.01836400292813778, + -0.006633497308939695, + -0.018145034089684486, + -0.022249234840273857, + -0.012628949247300625, + 0.07371862232685089, + -0.006554389372467995, + -0.048800189048051834, + 0.031981825828552246, + 0.08858169615268707, + 0.010466106235980988, + -0.006755915470421314, + -0.01978495344519615, + -0.026587586849927902, + 0.0005997307016514242, + -0.08896499872207642, + 0.04846596345305443, + 0.07156699895858765, + 0.038094013929367065, + 0.049505431205034256, + 0.01912463828921318, + 0.03348945453763008, + -0.08641400188207626, + 0.0379420630633831, + 0.05235549435019493, + -0.034954383969306946, + -0.032041143625974655, + 0.021922511979937553, + -0.05275093764066696, + -0.00870990939438343, + 0.014629488810896873, + 0.004929402843117714, + 0.028776826336979866, + 0.026982275769114494, + -0.012401580810546875, + 0.010308410041034222, + 0.017866365611553192, + -0.024980589747428894, + -0.037080805748701096, + 0.0035692399833351374, + 0.014106004498898983, + -0.03867390751838684, + 0.06262817978858948, + -0.01797359064221382, + -0.033117301762104034, + -0.007381870411336422, + -0.03082214668393135, + -0.019160917028784752, + -0.03704959899187088, + 0.008227081969380379, + -0.0202488973736763, + 0.019276661798357964, + -0.03559766709804535, + -0.03199603781104088, + 0.00289197638630867, + 0.013526622205972672, + 0.015651270747184753, + -0.049527525901794434, + 0.0373711958527565, + -0.019540391862392426, + -0.032746460288763046, + 0.03891396149992943, + -0.019463354721665382, + 0.001516110496595502, + 0.0352766327559948, + -0.0033230939880013466, + -0.031788405030965805, + 0.04647910222411156, + 0.005183230619877577, + -0.05351543799042702, + 0.04321873560547829, + 0.015694603323936462, + -0.004315278027206659, + 0.025201747193932533, + 0.00507815508171916, + 0.0026898710057139397, + 0.002795862266793847, + -0.022663850337266922, + 0.004427229519933462, + 0.008168471977114677, + 0.014986139722168446, + -0.02260093204677105, + -0.003514267271384597, + -0.057946812361478806, + -0.052805908024311066, + 0.019492724910378456, + -0.029027972370386124, + 0.03897455707192421, + -0.00547032942995429, + -0.03157046437263489, + 0.010659831576049328, + 0.013527869246900082, + -0.006039938889443874, + 0.03612345829606056, + -0.0276831965893507, + -0.06441417336463928, + -0.004386859014630318, + 0.007973916828632355, + 0.022488964721560478, + 0.03246517479419708, + 0.013975083827972412, + -0.01815187931060791, + -0.018315384164452553, + 0.01997554861009121, + 0.004060772713273764, + -0.003556004958227277, + 0.013500199653208256, + 0.09622879326343536, + 0.02741066925227642, + 0.0455874502658844, + -0.02087409980595112, + 0.014305601827800274, + 0.012999310158193111, + 0.031137855723500252, + -0.054956573992967606, + 0.037541136145591736, + 0.028126657009124756, + -0.0035982164554297924, + -0.046003542840480804, + -0.0008267613593488932, + 0.014112583361566067, + -0.01849259063601494, + -0.011823813430964947, + 0.020831353962421417, + -0.015844203531742096, + -0.020612360909581184, + -0.027214331552386284, + -0.04363923519849777, + 0.08596618473529816, + 0.029253346845507622, + -0.021497204899787903, + 0.025328254327178, + 0.01733274757862091, + -0.04066402092576027, + -0.0066110664047300816, + 0.010432280600070953, + 0.05078420042991638, + 0.030553383752703667, + -0.006628934759646654, + -0.010755722410976887, + 0.04603410139679909, + 0.00507669011130929, + 0.019541626796126366, + -0.020092619583010674, + 0.02051006816327572, + -0.016566773876547813, + 0.008974522352218628, + 0.023247914388775826, + -0.0195041261613369, + 0.00850534625351429, + -0.016953762620687485, + 0.0003413616504985839, + 0.061799392104148865, + 0.08466465771198273, + -0.07071541249752045, + -0.026355275884270668, + -0.00165803381241858, + 0.009266984649002552, + 0.015987765043973923, + 0.03299917280673981, + 0.0038729007355868816, + 0.053259845823049545, + 0.008525494486093521, + -0.03894658759236336, + -0.002732147928327322, + 0.01387355849146843, + -0.020248424261808395, + 0.002273468766361475, + 0.005821359809488058, + 0.04382196441292763, + 0.02424684539437294, + -0.02699071355164051, + -0.005262285936623812, + 0.0016361026791855693, + -0.04463481903076172, + -0.019542520865797997, + -0.010784516111016273, + 0.026994800195097923, + -0.00879827979952097, + -0.04060717672109604, + -0.00785502977669239, + 0.013298457488417625, + -0.05753558501601219, + 0.05028511956334114, + -0.029196936637163162, + -0.01611437276005745, + 0.027385016903281212, + 0.008960234932601452, + -0.020333409309387207, + 0.030991243198513985, + 0.011276760138571262, + 0.011421793140470982, + -0.01354883424937725, + 0.03478617966175079, + -0.023373065516352654, + 0.01489919051527977, + -0.02751636877655983, + -0.05829267576336861, + 0.037033531814813614, + -0.018867993727326393, + -0.01748717948794365, + -0.020116951316595078, + 0.06131615489721298, + -0.047469280660152435, + -0.0033264963421970606, + 0.030984139069914818, + -0.05940283089876175, + 0.054457202553749084, + 0.028945837169885635, + 0.00374399870634079, + 0.006409020628780127, + 0.03864402696490288, + 0.0017788449767977, + -0.06758875399827957, + 0.023909449577331543, + 0.009345830418169498, + 0.008188920095562935, + 0.0004037853504996747, + 0.04622077941894531, + -0.04090676084160805, + 0.01489404495805502, + -0.010296327993273735, + -0.0024054257664829493, + -0.013286345638334751, + 0.019554682075977325, + 0.03249772638082504, + -0.044657230377197266, + 0.0694093406200409, + 0.04324330762028694, + -0.01964409090578556, + -0.017467280849814415, + -0.022569209337234497, + -0.041954852640628815, + -0.012307384051382542, + 0.017514145001769066, + -0.035822343081235886, + -0.01551796030253172, + -0.030502794310450554, + 0.04306303709745407, + 0.00766521692276001, + -0.030766082927584648, + -0.038282837718725204, + -0.03526237979531288, + 0.026849539950489998, + -0.005592697765678167, + 0.005465735215693712, + 0.04003932699561119, + 0.003153175814077258, + 0.07876452803611755, + -0.001351629733107984, + 0.011579688638448715, + 0.002906007459387183, + -0.011586198583245277, + 0.02567114867269993, + 0.012724604457616806, + 0.01310194842517376, + 0.032446980476379395, + 0.04347992688417435, + -0.01495293527841568, + -0.012426149100065231, + 0.011133521795272827, + -0.01670614816248417, + -0.0176035575568676, + -0.0026120159309357405, + -0.010868239216506481, + 0.028417913243174553, + 0.0008494948269799352, + 0.046588391065597534, + 0.011493002064526081, + 0.02486569993197918, + -0.0010235666995868087, + -0.003503914223983884, + -0.01762499287724495, + -0.02842356264591217, + -0.05460720509290695, + 0.015601483173668385, + 0.03253856673836708, + 0.005701127927750349, + -0.008745076134800911, + 0.03889163210988045, + -0.011907459236681461, + -0.008174465969204903, + 0.04092840850353241, + 0.003945466596633196, + 0.0001774392876541242, + 0.006973267532885075, + 0.018753325566649437, + -0.004065265879034996, + -0.030782314017415047, + 0.0034599488135427237, + -0.042649611830711365, + -0.0163368359208107, + -0.04507797583937645, + -0.004741398151963949, + -0.019047267735004425, + -0.06577402353286743, + 0.005680371075868607, + 0.02981090359389782, + 0.048813801258802414, + 0.050985366106033325, + -0.0011862186947837472, + 0.00018163876666221768, + 0.011782495304942131, + -0.027121810242533684, + 0.017321810126304626, + 0.05052198842167854, + -0.02226773090660572, + -0.035486869513988495, + -0.02188650146126747, + 0.009931922890245914, + 0.021821964532136917, + -0.06474646925926208, + 0.006578059401363134, + -0.007878282107412815, + 0.0366244912147522, + -0.0029672388918697834, + -0.026217637583613396, + -0.013168424367904663, + -0.08519349247217178, + 0.01528026070445776, + 0.02818097546696663, + -0.04173003509640694, + 0.08799885958433151, + 0.02282840572297573, + 0.05950561910867691, + -0.03179667517542839, + 0.003798970254138112, + -0.027131540700793266, + -0.029783237725496292, + -0.03809715807437897, + -0.03627010062336922, + -0.03039528615772724, + -0.004871601704508066, + 0.004166852682828903, + 0.03162093833088875, + 0.006061115767806768, + -0.012273355387151241, + -0.030199401080608368, + 0.039132293313741684, + 0.025556471198797226, + 0.005017044488340616, + 0.02093650959432125, + -0.015683239325881004, + -0.00907222181558609, + 0.010900460183620453, + -0.0036323866806924343, + -0.0038035630714148283, + -0.013971558772027493, + 0.011498965322971344, + -0.03369196131825447, + 0.0346931554377079, + 0.02842814102768898, + 0.028382062911987305, + -0.019301166757941246, + 0.001582757686264813, + -0.044885456562042236, + 0.052605196833610535, + -0.048069581389427185, + 0.01350234355777502, + -0.027850506827235222, + -0.025030314922332764, + 0.05667389929294586, + -0.08847896754741669, + -0.05704650655388832, + -0.04886351525783539, + 0.05198747292160988, + 0.038260526955127716, + -0.01159684732556343, + 0.006539836060255766, + -0.07371297478675842, + -0.049915120005607605, + -0.007102453615516424, + -0.007223074324429035, + -0.008241476491093636, + 0.0016765838954597712, + -0.04333698749542236, + -0.010465472936630249, + -0.038774050772190094, + -0.01986858621239662, + -0.016686370596289635, + -0.037925172597169876, + -0.007872617803514004, + 0.017540927976369858, + -0.031139656901359558, + -0.02123585343360901, + -0.050929922610521317, + -0.00034154095919802785, + 0.014446585439145565, + 0.04439372941851616, + 0.03297530859708786, + -0.050853900611400604, + -0.013475045561790466, + 0.017218515276908875, + -0.03969364985823631, + -0.012202362529933453, + 0.031068075448274612, + 0.01593899168074131, + -0.007986370474100113, + 0.08843977004289627, + 0.03449611738324165, + 0.025262242183089256, + 0.04720122739672661, + -0.0076033854857087135, + 0.03482503071427345, + 0.07741651684045792, + -0.023322001099586487, + -0.02827265113592148, + 0.01756264455616474, + 0.005356228910386562, + 0.02026909589767456, + -0.003736265702173114, + 0.017836423590779305, + -0.034427542239427567, + 0.021947264671325684, + -0.04220091924071312, + -0.005950625985860825, + 0.01605827920138836, + 0.0007400424219667912, + 0.030136840417981148, + 0.024516643956303596, + 0.02324213646352291, + 0.05303734540939331, + 0.004308465868234634, + -0.02817455492913723, + -0.057208769023418427, + 0.017610149458050728, + -0.047111887484788895, + 0.032277338206768036, + -0.034366462379693985, + 0.012082161381840706, + -0.031875159591436386, + -0.003427856834605336, + -0.0014917065855115652, + -0.0005780981737188995, + -0.012318837456405163, + 0.07382817566394806, + -0.05423062667250633, + 0.050561580806970596, + 0.01895812153816223, + 0.020294412970542908, + 0.017920173704624176, + -0.0024215946905314922, + -0.03055139258503914, + 0.014576999470591545, + 0.021201109513640404, + -0.03645477443933487, + -0.050371453166007996, + -0.04276731237769127, + -0.012567234225571156, + 0.0027185240760445595, + 0.009610434994101524, + -0.004809440113604069, + 0.05308350548148155, + -0.0009068396757356822, + 0.0010035678278654814, + 0.02993163652718067, + 0.0533674992620945, + -0.006326785311102867, + 0.007736243307590485, + 0.016429679468274117, + -0.014224359765648842, + -0.020056169480085373, + -0.017781006172299385, + 0.05151725187897682, + 0.01775502786040306, + 0.03841063380241394, + -0.018682973459362984, + -0.005093070678412914, + 0.05860014632344246, + 0.004894809331744909, + -0.030888043344020844, + 0.012398396618664265, + -0.017621934413909912, + -0.04925356060266495, + -0.06442011892795563, + -0.027873581275343895, + -0.0739361122250557, + -0.04921947047114372, + -0.012011506594717503, + -0.0014584212331101298, + 0.00026304562925361097, + 0.01962997391819954, + 0.024504635483026505, + 0.022912776097655296, + 0.007988926023244858, + 0.010388694703578949, + -0.0050870319828391075, + 0.015758879482746124, + 0.029497848823666573, + 0.019386617466807365, + 0.02540953829884529, + 0.04612579941749573, + 0.01695343293249607, + 0.0070528811775147915, + -0.045604974031448364, + -0.05940655246376991, + 0.05099625512957573, + 0.010194175876677036, + 0.0301496721804142, + -0.002256811363622546, + 0.04547237604856491, + -0.038482971489429474, + -0.05333703011274338, + 0.07643719762563705, + -0.039670247584581375, + -0.061714641749858856, + -0.01547775138169527, + -0.05390362814068794, + -0.014798823744058609, + 0.01986251398921013, + 0.038062989711761475, + 0.005462161730974913, + 0.033916935324668884, + 0.0053749363869428635, + 0.003394265426322818, + -0.020916888490319252, + -0.042545076459646225, + -0.04051108658313751, + -0.031058894470334053, + -0.012210912071168423, + 0.02817758545279503, + 0.030199497938156128, + -0.03853732347488403, + -0.047437820583581924, + 0.041960831731557846, + 0.01692730188369751, + -0.01569891721010208, + -0.02769738994538784, + 0.015111721120774746, + -0.034335482865571976, + 0.02698616497218609, + -0.030381061136722565, + -0.028355397284030914, + 0.003628017148002982, + 0.0010072336299344897, + -0.011385580524802208, + 0.0382031612098217, + 0.027716640383005142, + 0.006358769256621599, + 0.017320377752184868, + -0.019035665318369865, + -0.031057070940732956, + 0.07084408402442932, + -0.008214570581912994, + 0.014783493243157864, + -0.034521088004112244, + 0.036472536623477936, + 0.0005098583642393351, + 0.030217086896300316, + -0.030016396194696426, + -0.023659778758883476, + 0.014406589791178703, + -0.0065028369426727295, + -0.039189934730529785, + -0.003967929165810347, + 0.021000567823648453, + 0.02297302708029747, + -0.036959368735551834, + -0.01282685436308384, + -0.08719102293252945, + 0.02140524610877037, + 0.03723729029297829, + -0.039905037730932236, + 0.00837671384215355, + 0.03281189501285553, + -0.027297833934426308, + -0.001747011672705412, + 0.043195247650146484, + 0.022493494674563408, + 0.0007898505427874625, + -0.03978446125984192, + -0.008497403934597969, + 0.011473286896944046, + -0.04540596157312393, + -0.018889062106609344, + -0.04913634434342384, + -0.011310991831123829, + 0.03896109387278557, + -0.024684643372893333, + -0.013050992041826248, + -0.02794179692864418, + 0.047929082065820694, + 0.0681350976228714, + -0.024228211492300034, + 0.03759285435080528, + 0.0034869725350290537, + 0.03632769361138344, + 0.04667098820209503, + -0.03531543165445328, + -0.042923565953969955, + -0.04197865352034569, + -0.018552128225564957, + 0.02709466777741909, + -0.06534869968891144, + -0.03595972806215286, + 0.017602048814296722, + -0.01979401893913746, + 0.010206763632595539, + 0.008471705950796604, + 0.04286768287420273, + -0.03610780090093613, + 0.0192792396992445, + -0.0038590978365391493, + -0.006439888384193182, + -0.048039719462394714, + 0.022439923137426376, + -0.00787442922592163, + 0.007833471521735191, + 0.04790845513343811, + -0.06936062127351761, + 0.003990570083260536, + 0.0129461120814085, + -0.03953203186392784, + 0.005781499668955803, + -0.023007122799754143, + 0.05461427569389343, + 0.040527697652578354, + 0.025332491844892502, + -0.007739777211099863, + 0.020508037880063057, + -0.042179081588983536, + -0.025723805651068687, + -0.0546843595802784, + -0.014729727059602737, + -0.019866790622472763, + -0.04472541809082031, + 0.03523208200931549, + 0.0008057085215114057, + 0.0025738447438925505, + -0.008875061757862568, + 0.001143191591836512, + 0.026283953338861465, + 0.07193825393915176, + -0.03132426738739014, + -0.02655535563826561, + -0.013184461742639542, + -0.010285560041666031, + -0.01633433625102043, + 0.011031662113964558, + -0.03279990330338478, + -0.008638693019747734, + 0.0026358170434832573, + 0.06863527745008469, + -0.004685985390096903, + 0.023254482075572014, + 0.008601844310760498, + 0.028602009639143944, + -0.011088669300079346, + 0.03214722126722336, + -0.0027214395813643932, + 0.0007000981131568551, + -0.021715082228183746, + -0.00858438853174448, + 0.007894257083535194, + -0.010586807504296303, + -0.06872560828924179, + 0.034702543169260025, + -0.018457334488630295, + -0.028046846389770508, + -0.012422245927155018, + 0.023274607956409454, + 0.027536237612366676, + 0.016688168048858643, + 0.026395272463560104, + -0.02340092696249485, + -0.02656429447233677, + 0.04162893071770668, + 0.007330961991101503, + -0.03016379475593567, + 0.040918223559856415, + 0.04069168120622635, + -0.018092893064022064, + -0.03113102912902832, + 0.005954504944384098, + 0.04880857467651367, + 0.019929183647036552, + 0.007883694022893906, + 0.04759914055466652, + -0.03828014060854912, + -0.09781817346811295, + -0.012635010294616222, + 0.02701236493885517, + 0.022046880796551704, + -0.05204151198267937, + -0.017765028402209282, + 0.08325237780809402, + 0.01973791792988777, + 0.0214901864528656, + -0.02695404924452305, + 0.06611226499080658, + 0.03061610460281372, + -0.019909419119358063, + -0.012478099204599857, + 0.00843080785125494, + 0.059245575219392776, + 0.002541622379794717, + 0.08151549100875854, + 0.001814786228351295, + -0.0008931063348427415, + 0.01348726637661457, + -3.867027044179849e-05, + 0.04270930960774422, + 0.03260737657546997, + 0.023886028677225113, + 0.006012702826410532, + -0.001369787030853331, + -0.024602893739938736, + -0.023202842101454735, + 0.04419053718447685, + 0.026334553956985474, + 0.039911434054374695, + 0.018455348908901215, + -0.04703475907444954, + 0.028159521520137787, + -0.06002473831176758, + -0.03029734455049038, + 0.013248852454125881, + 0.01911718212068081, + -0.06625884771347046, + -0.06243808567523956, + 0.0002985935425385833, + 0.03039436973631382, + 0.015678459778428078 + ], + "start_index": 0, + "end_index": 81, + "token_count": 29, + "file": "comparacion_simple.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "7ecf0058-72ac-5ec6-81d9-f0f0c956f705", + "_source": { + "text": "stampToDatetime(1708726162, \"%d/%m/%Y\", 0, fecha_human)\naddResult(fecha_human)", + "embedding": [ + 0.01459744293242693, + 0.05840389057993889, + -0.008755101822316647, + -0.0483904592692852, + 0.05814683437347412, + -0.08494659513235092, + -0.024527475237846375, + -0.025458909571170807, + -0.016435567289590836, + -0.044751983135938644, + -0.009126114659011364, + -0.05236973240971565, + 0.03658505901694298, + -0.009087258018553257, + -0.04830700904130936, + 0.026610419154167175, + -0.0005629589431919158, + 0.05091249570250511, + 0.0438576266169548, + 0.013352291658520699, + 0.001973581500351429, + -0.03771417960524559, + 0.027312159538269043, + 0.06853082776069641, + 0.09784415364265442, + 0.01801140233874321, + 0.02438030019402504, + 0.0885198786854744, + 0.06385931372642517, + 0.005279697477817535, + 0.05491118133068085, + 0.06244998797774315, + -0.00644179992377758, + -0.015939628705382347, + -0.0005808331770822406, + -0.011447479948401451, + 0.009685498662292957, + 0.01284241396933794, + -0.0002000282984226942, + 0.04197262227535248, + 0.04481995850801468, + -0.02947971038520336, + 0.0017116237431764603, + 0.02343667671084404, + -0.022257085889577866, + -0.00892351008951664, + 0.0016434917924925685, + -0.03462345153093338, + 0.016540128737688065, + -0.0023769314866513014, + 0.006418641656637192, + -0.007822630926966667, + -0.022321384400129318, + 0.02012357860803604, + -0.02305745892226696, + -0.046890344470739365, + 0.0020435741171240807, + -0.019048267975449562, + 0.02636909671127796, + 0.0018762554973363876, + -0.03130270168185234, + 0.012088414281606674, + 0.013782222755253315, + -0.05077248811721802, + 0.0015249118441715837, + -0.04327748343348503, + 0.01683078519999981, + -0.020653070881962776, + -0.05865411460399628, + 0.02542666345834732, + 0.013807615265250206, + -0.005922648590058088, + -0.02297399565577507, + 0.05412685126066208, + -0.023067589849233627, + 0.07946330308914185, + 0.019123783335089684, + -0.030061151832342148, + 0.01050612423568964, + -0.02397296018898487, + 0.022072525694966316, + 0.07346228510141373, + -0.01402027253061533, + -0.0010530372383072972, + -0.03922766447067261, + -0.01880715601146221, + -0.02911960519850254, + -0.013500469736754894, + -0.019131720066070557, + -0.03407229483127594, + 0.014433092437684536, + 0.025910988450050354, + -0.034738361835479736, + -0.009923528879880905, + 0.04565173387527466, + 0.003746138885617256, + -0.02887321263551712, + -0.0012666431721299887, + -0.032424360513687134, + -0.010479557327926159, + -0.03407301753759384, + 0.00872900802642107, + -0.015526967123150826, + -0.004012776538729668, + -0.01639156974852085, + 0.020665865391492844, + -0.039204396307468414, + 0.0009394657099619508, + -0.06230113282799721, + -0.048655010759830475, + 0.007454045582562685, + 0.045632440596818924, + 0.048113685101270676, + 0.005732601508498192, + -0.013408109545707703, + 6.507244688691571e-05, + -0.035379182547330856, + 0.018759895116090775, + 0.01317169051617384, + -0.005434689112007618, + -0.026427123695611954, + 0.003818483790382743, + -0.003191528841853142, + -0.027124492451548576, + 0.02281312085688114, + 0.0024089182261377573, + -0.036469802260398865, + 0.004028842318803072, + -0.00675193639472127, + -0.02495161071419716, + 0.004122653044760227, + -0.0007123904651962221, + -0.012592802755534649, + -0.07814672589302063, + 0.0030467030592262745, + -0.0178925059735775, + -0.0714196264743805, + -0.00493078026920557, + 0.03709474951028824, + -0.004681355785578489, + 9.403967851540074e-05, + -0.0030225967057049274, + 0.01315329596400261, + -0.019154241308569908, + 0.005941823590546846, + 0.029628008604049683, + 0.003642541589215398, + -0.022542590275406837, + 0.02747262455523014, + 0.036101602017879486, + 0.02215680293738842, + -0.02588723972439766, + -0.04427788406610489, + 0.011241745203733444, + -0.027276957407593727, + 0.0272096898406744, + -0.003954704385250807, + -0.0033595957793295383, + 0.0446518249809742, + 0.013755489140748978, + -0.0006562559283338487, + -0.0007657437236048281, + -0.014085540547966957, + -0.014483216218650341, + -0.027399303391575813, + 0.0015062404563650489, + -0.00012766678992193192, + -0.013926328159868717, + -0.014439708553254604, + -0.014379301108419895, + -0.005637355148792267, + 0.0072187804616987705, + -0.0370282381772995, + 0.020431701093912125, + 0.01502893678843975, + -0.04389161616563797, + -0.019702123478055, + -0.01046867948025465, + 0.011871402151882648, + -0.030297767370939255, + 0.02029472030699253, + -0.03535795584321022, + 0.0050066630356013775, + 0.006282897666096687, + 0.004083848092705011, + 0.010115701705217361, + 0.0056996033526957035, + 0.0005765187088400126, + -0.0008152761147357523, + 0.003259549383074045, + 0.0034914654679596424, + -0.007067810278385878, + 0.003960676956921816, + 0.024185892194509506, + 0.01242038607597351, + -0.008127419278025627, + 0.0029354598373174667, + 0.02092333324253559, + -0.04092369228601456, + -0.006741848308593035, + -0.027300015091896057, + -0.024922536686062813, + -0.026541590690612793, + 0.01109287515282631, + 0.0005589337670244277, + 0.027243783697485924, + 0.017106182873249054, + 0.010347417555749416, + -0.02885325253009796, + -0.03022816590964794, + -0.0009696766501292586, + 0.03032185509800911, + 0.006660597864538431, + -0.027178337797522545, + -0.007860678248107433, + -0.009838438592851162, + -0.00920176226645708, + -0.010351588018238544, + 0.024017121642827988, + 0.013568188063800335, + 0.019606374204158783, + 0.02732028439640999, + 0.01317883562296629, + -0.00897734984755516, + 0.004827382043004036, + -0.017648829147219658, + 0.024587305262684822, + 0.016039429232478142, + 0.06920445710420609, + -0.011992103420197964, + -0.011309617199003696, + 0.0044636852107942104, + 0.002606172813102603, + 0.007797297555953264, + 0.04610881209373474, + 0.003593687666580081, + 0.012959924526512623, + 0.019196154549717903, + 0.025867048650979996, + -0.0051930551417171955, + -0.004243668634444475, + 0.004858009051531553, + -0.0004915209719911218, + 0.0018474474782124162, + -0.05157029628753662, + 0.023767918348312378, + -0.006727065425366163, + 0.04379399120807648, + -0.014416034333407879, + -0.014665021561086178, + -0.020538518205285072, + 0.044885098934173584, + -0.007153904065489769, + -6.630533607676625e-05, + 0.02531052567064762, + -0.0036847800947725773, + -0.027441369369626045, + 0.03680340200662613, + -0.015044842846691608, + 0.017697935923933983, + 0.0047912015579640865, + -0.025630775839090347, + -0.030792221426963806, + -0.0179253239184618, + 0.05346177518367767, + -0.003944150172173977, + -0.03257741034030914, + -0.032664842903614044, + -0.025042079389095306, + -0.009038682095706463, + 0.0042300536297261715, + 0.009800760075449944, + -0.011289161629974842, + -0.027593085542321205, + 0.03075009398162365, + 0.04602692648768425, + 0.00907096453011036, + -0.06803853809833527, + 0.017569197341799736, + -0.0017237244173884392, + 0.033975258469581604, + 0.024421853944659233, + -0.04469028860330582, + 0.017117707058787346, + 0.02956927753984928, + 0.03374088928103447, + 0.029944702982902527, + 0.0468667671084404, + -0.04575337469577789, + 0.022320343181490898, + -0.0339941643178463, + -0.009452953934669495, + -0.044102590531110764, + 0.04625933989882469, + -0.0020063251722604036, + -0.02216397412121296, + -0.01203281618654728, + 0.10383027791976929, + -0.0014419174985960126, + -0.00019155253539793193, + 0.002766850171610713, + 0.02313431166112423, + 0.033277641981840134, + 0.028920788317918777, + 0.0582735612988472, + -0.015060845762491226, + 0.034554529935121536, + -0.008721239864826202, + 0.027069520205259323, + -0.014861656352877617, + 0.034257423132658005, + -0.005194557830691338, + -0.0029526480939239264, + 0.00940858107060194, + -0.035651158541440964, + -0.007683787029236555, + -0.03247004747390747, + 0.0463445670902729, + 0.026059787720441818, + -0.044038765132427216, + -0.020221272483468056, + -0.021530553698539734, + 0.01814553700387478, + -0.001627691905014217, + 0.024986904114484787, + 0.025301195681095123, + 2.768738158920314e-05, + -0.03550995513796806, + 0.06754614412784576, + 0.04954038932919502, + 0.014500069431960583, + -0.03168404847383499, + 0.021227605640888214, + 0.028772367164492607, + 0.029112452641129494, + 0.02158953808248043, + 0.0676305815577507, + -0.04551611840724945, + 0.02905527502298355, + 0.014254710637032986, + 0.03285231068730354, + 0.03690698742866516, + -0.05265924707055092, + 0.05029342696070671, + -0.0021926763001829386, + -0.006560556124895811, + -0.01564818061888218, + 0.007586612831801176, + 0.0177858117967844, + -0.0060663167387247086, + -0.0639951229095459, + 0.04370497912168503, + 0.031183991581201553, + -0.0769050195813179, + -0.02592700719833374, + -0.0019494780572131276, + -0.005653331521898508, + 0.016423825174570084, + -0.04304993152618408, + -0.018544092774391174, + -0.020101595669984818, + -0.004398735240101814, + 0.025471003726124763, + 0.016069067642092705, + 0.02744714915752411, + 0.03467806428670883, + -0.03665444999933243, + -0.027115432545542717, + 0.010142390616238117, + -0.011239990592002869, + -0.10737328231334686, + -0.022275345399975777, + -0.029639527201652527, + 0.026327764615416527, + -0.032045330852270126, + 0.024590712040662766, + 0.058666352182626724, + -0.11102968454360962, + 0.01658550463616848, + -0.04277278482913971, + 0.023236768320202827, + -0.021588560193777084, + -0.02681157924234867, + -0.01246359758079052, + -0.011318311095237732, + -0.0805843248963356, + 0.008848265744745731, + -0.04016309604048729, + 0.005891003645956516, + 0.02223272994160652, + -0.014742601662874222, + 0.009040157310664654, + -0.023686861619353294, + 0.02281773090362549, + -0.00229828804731369, + 0.04596417024731636, + -0.03825130686163902, + 0.02383084036409855, + -0.041561685502529144, + -0.0257624052464962, + 0.04405388608574867, + 0.05286095291376114, + -0.02968226559460163, + 0.01565893180668354, + 0.02436101995408535, + -0.023825127631425858, + 0.000840364140458405, + -0.012491149827837944, + 0.011998403817415237, + -0.018289901316165924, + -0.009777548722922802, + 0.016497520729899406, + 0.027815215289592743, + 0.011970862746238708, + 0.020973268896341324, + -0.028630929067730904, + 0.010698030702769756, + -0.02471007965505123, + 0.027296876534819603, + 0.0208346676081419, + 0.020243993028998375, + 0.07224825024604797, + -0.04073309898376465, + 0.02034240961074829, + 0.03166966885328293, + -0.03572135791182518, + -0.024156294763088226, + -0.03691912814974785, + -0.03208820894360542, + 0.11354091763496399, + -0.01567152701318264, + -0.00027508990024216473, + 0.02935902774333954, + -0.010593242943286896, + -0.033478520810604095, + -0.01030364166945219, + 0.006099313497543335, + 0.04074329882860184, + -0.0013628670712932944, + -0.04598499834537506, + -0.03849783539772034, + 0.1101774126291275, + 0.003969843499362469, + -0.04142813757061958, + -0.02256479673087597, + 0.027465401217341423, + 0.07239523530006409, + -0.012592594139277935, + 0.02391122840344906, + -0.03561157360672951, + 0.038112759590148926, + -0.023206621408462524, + 0.041831448674201965, + -0.01693830080330372, + 0.06842522323131561, + -0.05825721472501755, + 0.0165017768740654, + -0.024255787953734398, + -0.006257185246795416, + -0.03163299709558487, + -0.04151804372668266, + 0.05877481773495674, + 0.0328037366271019, + 0.012493014335632324, + 0.02774418145418167, + 0.05460049584507942, + 0.019573645666241646, + -0.032926443964242935, + -0.0061070979572832584, + -0.027027355507016182, + 0.03676244616508484, + 0.0326225645840168, + -0.034829750657081604, + -0.056016940623521805, + -0.002649931004270911, + 0.0040315319783985615, + -0.022757988423109055, + 0.02675098367035389, + 0.035782501101493835, + -0.01563088409602642, + 0.009646447375416756, + 0.025554396212100983, + 0.0324908122420311, + -0.016185183078050613, + 0.07312867045402527, + -0.004265608265995979, + 0.04030213877558708, + 0.015171503648161888, + -0.0030061304569244385, + -0.05053125321865082, + -0.025871673598885536, + 0.05821525305509567, + 0.001726364716887474, + -0.03323261812329292, + 0.007921895943582058, + 0.01733730547130108, + 0.024603221565485, + -0.04502206668257713, + -0.028316104784607887, + -0.017243046313524246, + 0.021749140694737434, + 0.0009756356594152749, + -0.06614192575216293, + -0.024166768416762352, + 0.029994748532772064, + -0.03217317909002304, + -0.006811207160353661, + -0.039260659366846085, + -0.0067948270589113235, + 0.0594765841960907, + 0.05399457737803459, + -0.019837794825434685, + 0.01734563708305359, + 0.010122917592525482, + -0.027843700721859932, + 0.0052514467388391495, + 0.0024483921006321907, + -0.007071127183735371, + -0.07665284723043442, + 0.0017663215985521674, + 0.010178557597100735, + -0.011137498542666435, + 0.04600391909480095, + -0.0028846843633800745, + 0.007345176301896572, + 0.037405941635370255, + -0.030265837907791138, + -0.027851564809679985, + -0.021754490211606026, + 0.028998497873544693, + -0.0168360136449337, + -0.04645632579922676, + -0.025481225922703743, + 0.04834303632378578, + 0.0171572994440794, + 0.008585370145738125, + 0.002555233659222722, + -0.02079092152416706, + -0.04820776358246803, + 0.0341939814388752, + -0.0119825080037117, + -0.007329191081225872, + -0.03508095443248749, + -0.02510860748589039, + 0.07656687498092651, + -0.02560136839747429, + 0.0125870481133461, + -0.020221980288624763, + -0.019060278311371803, + 0.05502471327781677, + 0.00795159861445427, + -0.005169190466403961, + 0.03679614141583443, + 0.012409304268658161, + 0.01418906357139349, + 0.021887393668293953, + 0.052061814814805984, + 0.06786081939935684, + 0.014522554352879524, + 0.001902166404761374, + -0.018020495772361755, + -0.00010678263788577169, + -0.024724123999476433, + -0.03845008462667465, + 0.028665365651249886, + -0.014326388947665691, + -0.00363735668361187, + -0.03651914745569229, + 0.005632847081869841, + 0.04064185917377472, + 0.04511832818388939, + -0.05066602677106857, + -0.03510734438896179, + 0.019421212375164032, + 0.006868281867355108, + -0.05753422528505325, + 0.004157138988375664, + 0.07130847871303558, + 0.037116385996341705, + -0.030833447352051735, + -0.04815986752510071, + 0.03854083642363548, + -0.033563386648893356, + -0.006303313188254833, + -0.053853798657655716, + 0.0005546634783968329, + 0.054576121270656586, + 0.018582796677947044, + 0.02510405331850052, + -0.05256130173802376, + -0.016440413892269135, + -0.08023315668106079, + 0.0503951795399189, + 0.005090098828077316, + 0.056363023817539215, + -0.04381408914923668, + -0.05915292352437973, + -0.016185855492949486, + -0.011344587430357933, + -0.0026280058082193136, + -0.01320495642721653, + 0.020553262904286385, + 0.016527704894542694, + -0.03753169625997543, + -0.018812892958521843, + -0.022409820929169655, + -0.04840358719229698, + -0.01596507802605629, + -0.0035032040905207396, + 0.007998742163181305, + -0.06389270722866058, + 0.03546607494354248, + -0.05617687106132507, + -0.011562768369913101, + 0.03165453299880028, + 0.011680752970278263, + -0.04435676708817482, + -0.056559838354587555, + 0.006324779707938433, + -0.038679614663124084, + -0.014098438434302807, + 0.03909428417682648, + 0.004739298019558191, + 0.03559476137161255, + -0.019893329590559006, + -0.019274728372693062, + 0.015616466291248798, + 0.00014612094673793763, + -0.003906732425093651, + 0.0012311260215938091, + -0.018309660255908966, + 0.03009043075144291, + 0.029473500326275826, + -0.0036830720491707325, + -0.006374749820679426, + -0.025451233610510826, + -0.005022136960178614, + 0.009178398177027702, + -0.014507166109979153, + -0.029958071187138557, + 0.025813298299908638, + -0.003356409491971135, + 0.019283728674054146, + 0.020366795361042023, + 0.05279495194554329, + 0.032881591469049454, + 0.019355138763785362, + 0.00477651646360755, + 0.03928687423467636, + 0.017442060634493828, + 0.009966873563826084, + 0.027655748650431633, + -0.003042503958567977, + -0.04432695731520653, + -0.08003240078687668, + -0.06023002043366432, + -0.03737979382276535, + 0.025971954688429832, + -0.04126613959670067, + -0.0329948291182518, + -0.019219087436795235, + -0.060638342052698135, + 0.07599826157093048, + -0.02575731836259365, + -0.01486741378903389, + -0.005910386797040701, + 0.004663323983550072, + 0.004469056148082018, + 0.012325736694037914, + -0.022733693942427635, + -0.0019333605887368321, + 0.01961384154856205, + -0.008788987062871456, + 0.004978169221431017, + -0.000778587011154741, + -0.00951297301799059, + -0.08779565989971161, + -0.028906794264912605, + -0.0373745933175087, + 0.02450903132557869, + 0.0030985844787210226, + -0.014386876486241817, + 0.0010788094950839877, + -0.05878669396042824, + 0.005774377845227718, + 0.031046206131577492, + -0.02980915829539299, + -0.026217492297291756, + 0.0659518614411354, + -0.0052134194411337376, + 0.017936095595359802, + -0.015259955078363419, + 0.03764872997999191, + 0.014671114273369312, + -0.03707540035247803, + 0.016520602628588676, + -0.00581839494407177, + -0.04728836938738823, + -0.023826787248253822, + 0.0219662357121706, + 0.0010257537942379713, + -0.025451738387346268, + -0.03856377676129341, + 0.004861678462475538, + -0.01753816567361355, + -0.06349660456180573, + -0.09389673173427582, + -0.03513817489147186, + -0.012857372872531414, + -0.05459624156355858, + 0.02150672674179077, + -0.03461060672998428, + 0.0034546912647783756, + -0.034314777702093124, + -0.011977397836744785, + 0.005041675642132759, + -0.03350993990898132, + -0.026695221662521362, + -0.009963356889784336, + -0.06407618522644043, + 0.029130246490240097, + -0.032912638038396835, + 0.010663297958672047, + 0.024744613096117973, + -0.00944269448518753, + -0.041700102388858795, + -0.025340117514133453, + 0.02455800212919712, + -0.00361494068056345, + 0.035173945128917694, + 0.03119763173162937, + -0.04876192659139633, + 0.007322453428059816, + -0.025669708847999573, + -0.058533765375614166, + 0.012276551686227322, + 0.02164413034915924, + -0.01840270683169365, + 0.006341138854622841, + -0.0036307123955339193, + 0.024079328402876854, + -0.011477467603981495, + -0.020771099254488945, + 0.05394620820879936, + -0.01843002252280712, + -0.012980591505765915, + 0.005320247262716293, + -0.012932431884109974, + 0.033001530915498734, + -0.030195143073797226, + -0.027347184717655182, + -0.04658069834113121, + 0.0060939425602555275, + -0.01667296700179577, + 0.008579408749938011, + -0.004454418551176786, + 0.0022435940336436033, + 0.004198653623461723, + -0.004294495563954115, + 0.0660366639494896, + -0.006856512278318405, + -0.03628954291343689, + 0.03192715346813202, + 0.01723400130867958, + 0.05683565512299538, + -0.028681352734565735, + -0.007349650841206312, + -0.016148090362548828, + -0.005072008352726698, + 0.004955106880515814, + -0.002469839993864298, + -0.06639137119054794, + -0.01322211790829897, + 0.0413840152323246, + 0.017862468957901, + -0.007112880237400532, + 0.007886757142841816, + -0.0033173856791108847, + 0.031186988577246666, + -0.01294891070574522, + 0.004319348372519016, + 0.009434276260435581, + 0.005358206573873758, + 0.019165093079209328, + -0.039685674011707306, + 0.03172721713781357, + 0.025573186576366425, + 0.021403415128588676, + -0.010555805638432503, + 0.08548277616500854, + 0.028000392019748688, + -0.026547184213995934, + 0.05701189115643501, + -0.05650221183896065, + -0.024596983566880226, + 0.03306045010685921, + -0.0029612898360937834, + 0.038349639624357224, + -0.06694622337818146, + 0.026923026889562607, + -0.026632241904735565, + 0.043692249804735184, + 0.015150191262364388, + -0.00280186184681952, + 0.03699423745274544, + -0.034991007298231125, + -0.007589099463075399, + 0.049239128828048706, + -0.007008826360106468, + 0.0062614865601062775, + 0.029056573286652565, + -0.006846649572253227, + 0.01193942315876484, + 0.048196759074926376, + 0.002667685505002737, + -0.00733201252296567, + -0.015718238428235054, + 0.03404446691274643, + -0.017743274569511414, + -0.004499546252191067, + 0.0015220091445371509, + -0.011998936533927917, + 0.003638201393187046, + 0.009265058673918247, + -0.025349857285618782, + -0.002610370982438326, + -0.03513595089316368, + -0.0009416996035724878, + -0.00961922388523817, + 0.0032191192731261253, + -0.0032945137936621904, + 0.01021655648946762, + -0.0191054567694664, + 0.012044273316860199, + 0.042087700217962265, + 0.035033952444791794, + -0.027120552957057953, + 0.025098837912082672, + 0.04152747243642807, + 0.028928052634000778, + 0.04707286134362221, + 0.022638700902462006, + 0.012923216447234154, + 0.033448655158281326, + -0.032715581357479095, + 0.010259590111672878, + -0.03749333322048187, + 0.015708109363913536, + 0.0048842360265553, + 0.028421949595212936, + 0.012970615178346634, + 0.009822423569858074, + -0.02494579553604126, + -0.050568778067827225, + -0.05934316664934158, + -0.0068299067206680775, + 0.014224449172616005, + -0.0005890739848837256, + 0.0029942512046545744, + 0.0018196965102106333, + -0.060375191271305084, + 0.007586588617414236, + -0.029579024761915207, + -0.06083514168858528, + -0.021562321111559868, + 0.004795556887984276, + 0.02990894392132759, + -0.0191375482827425, + -0.0028790351934731007, + 0.029632413759827614, + -0.014691040851175785, + -0.026945827528834343, + 0.00937631819397211, + 0.011827214621007442, + -0.05146283656358719, + 0.009683375246822834, + -0.0014252583496272564, + 0.05884891375899315, + 0.06548256427049637, + 0.028572067618370056, + -0.047012221068143845, + -0.0007206745794974267, + 0.05861405283212662, + -0.021888792514801025, + -0.022249484434723854, + 0.01462212298065424, + -0.043952278792858124, + -0.01080330740660429, + -0.06655896455049515, + -0.023700201883912086, + -0.01048693060874939, + 0.00968257151544094, + 0.0005069588660262525, + 0.014227085746824741, + -0.09280523657798767, + -0.03731865808367729, + 0.014668956398963928, + -0.024543723091483116, + 0.006765503436326981, + -0.024553636088967323, + 0.010338721796870232, + 0.027982529252767563, + 0.019930463284254074, + 0.025050707161426544, + 0.0060185655020177364, + 0.023445310071110725, + 0.014608550816774368, + 0.023382218554615974, + 0.01936941035091877, + 0.018427005037665367, + -0.03389830142259598, + 0.02575380727648735, + 0.025701042264699936, + -0.0137957613915205, + -0.038015011698007584, + -0.0007202113629318774, + -0.020321033895015717, + -0.015545299276709557, + -0.03428834304213524, + -0.025698773562908173, + -0.0016740907449275255, + -0.0012721946695819497, + -0.00817143078893423, + 0.012289986945688725, + 0.011315197683870792, + -0.009945826604962349, + -0.011506587266921997, + 0.008948614820837975, + 0.010933537036180496, + 0.037430621683597565, + 0.0466703437268734, + 0.008809760212898254, + 0.0998067706823349, + -0.014504971913993359, + -0.02586928941309452, + 0.03340127691626549, + 0.0402129665017128, + -0.018933000043034554, + -0.00472016166895628, + -0.028629019856452942, + -0.05258897319436073, + -0.021827291697263718, + 0.05117228999733925, + 0.0326499305665493, + 0.03919457271695137, + -0.04566718265414238, + 0.01942841336131096, + 0.023440424352884293, + 0.016878971830010414, + 0.047468096017837524, + -0.0024598303716629744, + 0.02440689131617546, + 0.04152064397931099, + 0.0026892696041613817, + 0.01668836735188961, + -0.03097812458872795, + -0.048323437571525574, + -0.009614719077944756, + 8.705788786755875e-05, + 0.003780363593250513, + 0.006993502844125032, + -0.03256804496049881, + 0.007232431787997484, + 0.010746458545327187, + 0.040634606033563614, + -0.04831381142139435, + -0.013729914091527462, + 0.0064819734543561935, + 0.014814392663538456, + -0.0315389409661293, + 0.037477992475032806, + 0.004492374137043953, + -0.007873321883380413, + 0.03221042826771736, + 0.0070170750841498375, + 0.04398101195693016, + -0.03501918166875839, + -0.003271861467510462, + -0.003298031399026513, + -0.0173303484916687, + -0.03574880585074425, + 0.011763080023229122, + 0.031065966933965683, + 0.029649721458554268, + 0.005029249005019665, + -0.03291366994380951, + 0.045360300689935684, + -0.010130170732736588, + 0.0006197343464009464, + -0.018380649387836456, + 0.012819509953260422, + 0.032169587910175323, + 0.00011962181451963261, + -0.012273411266505718, + -0.03700229153037071, + 0.03600378334522247, + 0.04446400701999664, + -0.010089630261063576, + -0.030430074781179428, + -0.010168376378715038, + -0.043466851115226746, + -0.0461704283952713, + 0.02395826019346714, + 0.01593310572206974, + 0.0031133126467466354, + 0.010371210053563118, + -0.019259942695498466, + -0.022047406062483788, + 0.01611572876572609, + -0.02166476659476757, + 0.03806353732943535, + 0.015605130232870579, + -0.020841345191001892, + -0.01706857606768608, + 0.017835741862654686, + -0.03494708612561226, + -0.03736398369073868, + -0.017785048112273216, + 0.052571386098861694, + -0.04715612158179283, + -0.02696150727570057, + -0.006604203954339027, + 0.05541997030377388, + -0.0004208783502690494 + ], + "start_index": 0, + "end_index": 78, + "token_count": 34, + "file": "conversion_timestamp_legible.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "df61603f-b5f2-5886-8328-997461a0bd06", + "_source": { + "text": "addParam(sal_par,saldo)\nif(saldo, 0, \">\")\n permitir = True\nelse()\n permitir = False\nend()\naddResult(permitir)", + "embedding": [ + -0.05564981698989868, + -0.06510906666517258, + -0.010278658010065556, + -0.03613099455833435, + -0.037843137979507446, + -0.03304988145828247, + -0.009631984867155552, + 0.008915681391954422, + -0.02422761544585228, + 0.06344961374998093, + -0.04024038836359978, + -0.05737660452723503, + 0.0235498808324337, + -0.00888121873140335, + -0.06290097534656525, + 0.05450551211833954, + 0.03560173138976097, + -0.07144247740507126, + -0.024764958769083023, + 0.00688471645116806, + 0.011924125254154205, + 0.00937833171337843, + -0.038715217262506485, + 0.0966537594795227, + 0.09912645071744919, + 0.02057269774377346, + 0.028899190947413445, + 0.028270067647099495, + 0.09976787865161896, + 0.007220700848847628, + 0.005437132436782122, + -0.004838770255446434, + -0.05634673684835434, + 0.016627365723252296, + -0.01145649328827858, + -0.013450359925627708, + -0.05031507462263107, + -0.005509434267878532, + -0.010027115233242512, + 0.027287444099783897, + -0.020030509680509567, + -0.05245916545391083, + -0.037314411252737045, + -0.010958222672343254, + 0.0033293976448476315, + -0.017478052526712418, + 0.040064845234155655, + 0.02693427912890911, + 0.015410500578582287, + 0.00859963521361351, + -0.016023961827158928, + -0.021484846249222755, + 0.011294511146843433, + -0.025982949882745743, + -0.03483941778540611, + -0.054233618080616, + 0.025486556813120842, + -0.03594605624675751, + -0.015253303572535515, + 0.012024613097310066, + -0.0017405119724571705, + -0.006628273520618677, + -0.048632219433784485, + -0.07129240036010742, + 0.021580753847956657, + 0.017614014446735382, + 0.03204799070954323, + -0.014385259710252285, + -0.07488066703081131, + -0.011735864914953709, + 0.030003821477293968, + 0.006912889424711466, + -0.018391411751508713, + 0.021464742720127106, + -0.009886309504508972, + 0.044218674302101135, + 0.033029284328222275, + -0.04806845262646675, + -0.004350537434220314, + 0.003729255171492696, + 0.04922671616077423, + 0.023051945492625237, + 0.006526521872729063, + 0.04660605266690254, + 0.019074227660894394, + 0.042747944593429565, + -0.015596471726894379, + -0.03265833482146263, + 0.005248951725661755, + 0.04367266967892647, + 0.014956667087972164, + 0.013642714358866215, + -0.0423937551677227, + 0.01460118405520916, + 0.01690991222858429, + 0.022744065150618553, + -0.014870421960949898, + 0.0897061824798584, + -0.023413700982928276, + -0.027809007093310356, + -0.022842083126306534, + 0.053978241980075836, + 0.004301524721086025, + -0.0008968085749074817, + -0.046864449977874756, + 0.05323469638824463, + -0.07522881031036377, + -0.0020283013582229614, + -0.004108116030693054, + 0.02524068020284176, + 0.03319752961397171, + 0.02326633594930172, + 0.022067204117774963, + 0.03547733277082443, + -0.002394256414845586, + 0.005285847932100296, + 0.035372912883758545, + -0.01383155956864357, + 0.041490569710731506, + 0.005574567709118128, + -0.024636169895529747, + 0.0030891832429915667, + -0.016278138384222984, + -0.03836711496114731, + 0.01145622506737709, + 0.025390299037098885, + -0.03144291788339615, + 0.018877042457461357, + -0.0002783477248158306, + -0.041520003229379654, + -0.016627322882413864, + 0.023015737533569336, + -0.011514941230416298, + 0.042304135859012604, + 0.025425173342227936, + 0.03264286369085312, + 0.009719286113977432, + 0.019236061722040176, + 0.023628467693924904, + 0.00904784444719553, + -0.007032690104097128, + -0.019715365022420883, + -0.038640812039375305, + 0.0108361029997468, + 0.026885325089097023, + 0.04077983275055885, + -0.004773292690515518, + 0.014195690862834454, + 0.002631119452416897, + 0.04067683592438698, + 0.02053060568869114, + -0.0027171133551746607, + -0.05253612622618675, + -0.04134858772158623, + -0.013801264576613903, + 0.07722942531108856, + -0.005640650168061256, + -0.009319500997662544, + 0.01697448082268238, + 0.010547698475420475, + -0.006365048233419657, + 0.010804674588143826, + 0.02294374443590641, + -0.06512318551540375, + -0.02888278104364872, + 0.013736509718000889, + -0.0036957862321287394, + -0.03756747394800186, + -0.0528222881257534, + -0.021551230922341347, + 0.007063893601298332, + 0.013290035538375378, + -0.00981560256332159, + -0.02854541502892971, + 0.013806293718516827, + -0.012282361276447773, + -0.01225996296852827, + 0.000840745575260371, + 0.02067762427031994, + -0.042283687740564346, + 0.009053735062479973, + 0.02032083459198475, + 0.00708571495488286, + -0.005471991840749979, + 0.011553742922842503, + 0.04803583770990372, + 0.022461814805865288, + 0.0055181533098220825, + -0.0005937540554441512, + -0.017084158957004547, + 0.02842782810330391, + 0.005822815932333469, + -0.039327241480350494, + 0.0004744402249343693, + -0.028361851349473, + -0.0019867611117661, + 0.027782350778579712, + -0.015659207478165627, + -0.010072301141917706, + -0.025831153616309166, + -0.02565428800880909, + 0.00763691496104002, + 0.03131914138793945, + 0.029038283973932266, + -0.04433783143758774, + 0.03751404583454132, + 0.04575192555785179, + 0.00825762003660202, + -0.015431768260896206, + 0.022081127390265465, + 0.016710471361875534, + 0.03870639577507973, + 0.03472102805972099, + -0.026700738817453384, + -0.00017269856471102685, + 0.0028575914911925793, + 0.0165250301361084, + -0.00301840016618371, + -0.022092852741479874, + 0.02599477954208851, + 0.005049159750342369, + -0.013664484024047852, + -0.0469808466732502, + 0.01151580922305584, + -0.001036955858580768, + 0.010303298942744732, + 0.03846180811524391, + -0.001704153255559504, + -0.0026982477866113186, + -0.0009693123865872622, + -0.017002899199724197, + -0.015134591609239578, + -0.03515227884054184, + 0.014774846844375134, + 0.032895125448703766, + -0.029159659519791603, + 0.030257808044552803, + 0.017954634502530098, + 0.030170103535056114, + 0.03604387119412422, + 0.016395285725593567, + -0.012877396307885647, + 0.0008762236102484167, + 0.01709706149995327, + -0.06060997024178505, + 0.03289424628019333, + -0.002211423357948661, + 0.017545560374855995, + -0.03422318771481514, + -0.020344290882349014, + 0.034636642783880234, + -0.040292661637067795, + -0.0056473384611308575, + -0.016138089820742607, + -0.0037060456816107035, + -0.0070279804058372974, + 0.03598504513502121, + 0.004983498249202967, + -0.014304065145552158, + 0.022972270846366882, + 0.0035166835878044367, + -0.005044965073466301, + -0.06876979768276215, + 0.06526359170675278, + 0.007184309419244528, + -0.00916371401399374, + -0.002935323165729642, + 0.013901971280574799, + -0.03179631382226944, + -0.06047181040048599, + -0.0009148116805590689, + 0.0457574799656868, + -0.008197051472961903, + -0.01609218493103981, + 0.017680194228887558, + 0.02577083930373192, + 0.0006119948229752481, + -0.0666414126753807, + 0.022718386724591255, + -0.023209821432828903, + -0.010432575829327106, + -0.001171477371826768, + -0.016433551907539368, + 0.02180255390703678, + 0.00956523697823286, + 0.00826800987124443, + -0.0003063694457523525, + -0.04376038908958435, + 0.019521798938512802, + -0.01478348858654499, + 0.022914988920092583, + 0.047744475305080414, + 0.01633986085653305, + 0.05364912748336792, + -0.048287857323884964, + -0.0007741425652056932, + 0.0018903688760474324, + 0.049762606620788574, + -0.0081601208075881, + -0.00836460292339325, + -0.002149318577721715, + 0.006641654297709465, + 0.011635703034698963, + -0.022442106157541275, + -0.004787232726812363, + -0.03512485325336456, + -4.755115514853969e-05, + -0.007073043379932642, + -0.019167650490999222, + 0.05770738050341606, + 0.07616043835878372, + 0.023272771388292313, + -0.01082859467715025, + 0.02705433778464794, + -0.028673866763710976, + -0.0631217285990715, + -0.052676569670438766, + 0.027885910123586655, + -0.0016708156326785684, + 0.004192430526018143, + 0.05683441087603569, + -0.016570478677749634, + 0.018959559500217438, + -0.03762449696660042, + 0.049519024789333344, + 0.015680594369769096, + 0.06065237149596214, + 0.024408120661973953, + 0.015573954209685326, + -0.030849987640976906, + 0.036736324429512024, + -0.002595811150968075, + 0.03415537625551224, + 0.010621682740747929, + 0.03153795003890991, + 0.037159182131290436, + 0.007916560396552086, + -0.01785227656364441, + -0.018306756392121315, + -0.008744057267904282, + 0.0029783789068460464, + -0.03276568278670311, + -0.02107209526002407, + 0.022388789802789688, + 0.005105478689074516, + -0.03495240584015846, + -0.03477328643202782, + -0.02193199098110199, + 0.009119777008891106, + -0.05858137831091881, + -0.009106777608394623, + 0.023822937160730362, + 0.0010220715776085854, + -0.05059971287846565, + -0.011542282998561859, + -0.02064592018723488, + -0.04068835824728012, + -0.02966688945889473, + -0.047598253935575485, + 0.004648875445127487, + -0.03425266221165657, + -0.0320720411837101, + 0.05514911189675331, + -0.004743990022689104, + 0.010979099199175835, + -0.01949959807097912, + -0.05551130324602127, + 0.014675573445856571, + 0.023520804941654205, + -0.0269374530762434, + -0.06937125325202942, + -0.015057179145514965, + 0.02060079202055931, + 0.0477573536336422, + 0.07886261492967606, + -0.059207670390605927, + 0.01877216249704361, + 0.03129711374640465, + 0.025456087663769722, + 0.009011802263557911, + -0.0043985554948449135, + 0.013488540425896645, + -0.025784138590097427, + 0.014428435824811459, + -0.048965923488140106, + -0.06999203562736511, + 0.04901290312409401, + 0.010252468287944794, + -0.011689957231283188, + 0.024494176730513573, + 0.004041651263833046, + 0.06076815724372864, + 0.044048044830560684, + -0.04110868647694588, + 0.005598355084657669, + 0.009391620755195618, + -0.11919381469488144, + 0.029706113040447235, + 0.00464168656617403, + -0.006739464122802019, + 0.008029608987271786, + 0.0018236440373584628, + -0.08427023887634277, + 0.025621412321925163, + 0.04575427621603012, + -0.017746658995747566, + -0.01197901088744402, + -0.037451762706041336, + 0.013300188817083836, + -0.0036035440862178802, + 0.08941283822059631, + 0.03798126056790352, + 0.014044784009456635, + -0.022742154076695442, + -0.014011692255735397, + -0.0012960582971572876, + 0.08033012598752975, + -0.041892096400260925, + -0.03533156216144562, + -0.050280213356018066, + 0.006881402805447578, + 0.009795494377613068, + -0.013686981052160263, + -0.02787136472761631, + 0.0023247255012392998, + 0.019717011600732803, + 0.01375756599009037, + -0.0821654424071312, + 0.01437351293861866, + 0.11356242001056671, + 0.04618014022707939, + 0.004511896055191755, + 0.06387506425380707, + -0.016957508400082588, + -0.07267443835735321, + 0.018655486404895782, + 0.0519440732896328, + 0.017904076725244522, + -0.016685497015714645, + 0.012968028895556927, + 0.014068727381527424, + -0.01645848900079727, + -0.004866962321102619, + -0.024898985400795937, + -0.03183065354824066, + 0.03788851946592331, + -0.02059895545244217, + 0.004941532853990793, + -0.02842659130692482, + -0.05498989298939705, + -0.014412027783691883, + -0.04941347986459732, + 0.003096235916018486, + 0.029597977176308632, + -0.016888927668333054, + -0.03748396784067154, + -0.018382152542471886, + -0.0008856271160766482, + -0.022482311353087425, + -0.005910869222134352, + -0.016888801008462906, + 0.05546128377318382, + 0.07122229039669037, + -0.008829246275126934, + -0.017232172191143036, + 0.01763753779232502, + -0.01161672081798315, + 0.032690972089767456, + 0.01975647360086441, + -0.019634462893009186, + -0.0018574973801150918, + -0.023990284651517868, + 0.024246428161859512, + -0.008401828818023205, + 0.012762943282723427, + -0.000692855566740036, + -0.011143275536596775, + -0.024899443611502647, + 0.006409758236259222, + 0.016905847936868668, + -0.025676334276795387, + 0.00570365646854043, + -0.035210978239774704, + -0.05714629590511322, + 0.07477569580078125, + -0.038985952734947205, + -0.019720248878002167, + -0.009077434428036213, + -0.015036738477647305, + -0.017695680260658264, + 0.016813095659017563, + -0.005172111093997955, + 0.02167869731783867, + -0.02182074822485447, + 0.020379064604640007, + -0.027663251385092735, + 0.021949049085378647, + -0.0232346560806036, + -0.05990691855549812, + 0.054097265005111694, + -0.03178582713007927, + 0.014551490545272827, + -0.03747323900461197, + 0.03337065503001213, + -0.02702544629573822, + -0.018384108319878578, + -0.007716089021414518, + -0.023406798020005226, + 0.03152140602469444, + 0.042016495019197464, + -0.049454767256975174, + 0.0017443944234400988, + -0.04847703129053116, + 0.04428042471408844, + -0.03943193331360817, + 0.029334204271435738, + 0.05538555607199669, + 0.013655020855367184, + -0.011596422642469406, + -0.0010013595456257463, + 0.006869325879961252, + -0.002573567908257246, + 0.029590722173452377, + -0.012918575666844845, + -0.007627513259649277, + 0.036771781742572784, + 0.0613519586622715, + -0.01657881960272789, + 0.01748822256922722, + 0.004854755941778421, + -0.0005716450395993888, + 0.03068401664495468, + 0.005544042214751244, + -0.015943769365549088, + 0.009294596500694752, + 0.00707233464345336, + -0.049417644739151, + 0.009016375988721848, + -0.01101797353476286, + -0.008712531998753548, + 0.01964988000690937, + 0.00571436109021306, + -0.0284687839448452, + -0.06499724090099335, + -0.0014803837984800339, + -0.02756878174841404, + -0.04039687290787697, + 0.0035208037588745356, + 0.03130121901631355, + 0.009740195237100124, + 0.045980047434568405, + 0.004616536200046539, + 0.052859291434288025, + -0.0055234902538359165, + -0.013386930339038372, + -0.007176710292696953, + 0.0503447949886322, + 0.04013122618198395, + 0.013618186116218567, + -0.00940714031457901, + -0.01129448413848877, + 0.022837519645690918, + 0.009845997206866741, + -0.012897085398435593, + 0.014331054873764515, + -0.030636079609394073, + -0.002860673703253269, + 0.013151634484529495, + 0.010100526735186577, + -0.00020380516070872545, + 0.03790614753961563, + 0.03945418447256088, + -0.010172956623136997, + -0.011384338140487671, + 0.033942628651857376, + -0.06177501007914543, + -0.01414745394140482, + 0.021904079243540764, + 0.050892461091279984, + 0.028874225914478302, + 0.040928974747657776, + -0.012527599930763245, + -0.020473338663578033, + 0.04403384029865265, + -0.0038708404172211885, + -0.018272290006279945, + 0.08072175830602646, + 0.002456799615174532, + -0.03437252715229988, + -0.03480222076177597, + -0.013769914396107197, + -0.05006512999534607, + 0.010989145375788212, + -0.011250242590904236, + 0.03984472155570984, + 0.03854977339506149, + -0.03728976473212242, + -0.006025784183293581, + 0.023808784782886505, + -0.02660774067044258, + -0.005375734530389309, + 0.06396682560443878, + -0.04222974553704262, + 0.054115451872348785, + -0.03071713075041771, + -0.022197656333446503, + -0.05103359743952751, + -0.00971241295337677, + -0.01606082171201706, + 0.026464421302080154, + -0.05373271927237511, + 0.004492470063269138, + -0.037093181163072586, + 0.0277585219591856, + -0.03754851594567299, + -0.009643114171922207, + -0.04302298277616501, + 0.049722086638212204, + 0.004599414765834808, + -0.027532260864973068, + -0.013401059433817863, + -0.015592730604112148, + -0.030166026204824448, + 0.05952949449419975, + -0.006991070229560137, + 0.02140285074710846, + 0.017424577847123146, + -0.029087737202644348, + -0.024541206657886505, + -0.024177132174372673, + -0.034236013889312744, + -0.03762340918183327, + -0.05081292614340782, + 0.012882971204817295, + -0.015302090905606747, + -0.04089956730604172, + -0.0031337428372353315, + -0.049718134105205536, + -0.030959825962781906, + -0.0348878912627697, + -0.022824391722679138, + -0.04126760736107826, + 0.02044100873172283, + -0.013218902051448822, + -0.026185715571045876, + 0.02681318297982216, + 0.05936545878648758, + -0.028136810287833214, + 0.03397660329937935, + 0.008411705493927002, + 0.03984053432941437, + 0.0023785193916410208, + -0.01514747180044651, + -0.02305445447564125, + -0.03334779292345047, + 0.020443949848413467, + -0.014494985342025757, + 0.019829442724585533, + 0.018972177058458328, + -0.02359754964709282, + 0.022590629756450653, + -0.01593063399195671, + -0.009338891133666039, + -0.06551818549633026, + -0.046103060245513916, + -0.010276886634528637, + 0.06638692319393158, + 0.008154702372848988, + 0.06734966486692429, + -0.0026927979197353125, + 0.01817856729030609, + -0.04971912503242493, + 0.019598430022597313, + -0.01886100322008133, + -0.005571673158556223, + -0.024970419704914093, + 0.036110009998083115, + -0.011055807583034039, + -0.03734056279063225, + -0.03591207042336464, + -0.013060104101896286, + -0.03528039902448654, + -0.002755490131676197, + 0.011998099274933338, + 0.006144738290458918, + -0.006237119436264038, + -0.084154412150383, + -0.015822963789105415, + 0.00181679823435843, + 0.00939179677516222, + -0.025695310905575752, + -0.0575251467525959, + 0.05433833971619606, + 0.032330576330423355, + -0.010451839305460453, + 0.03991607949137688, + 0.015765979886054993, + -0.03237494081258774, + 0.019847344607114792, + 0.016561459749937057, + 0.02128520794212818, + 0.040287114679813385, + -0.027969632297754288, + 0.011936052702367306, + -0.013147449120879173, + -5.293795402394608e-05, + -0.03152785450220108, + -0.04479594528675079, + -0.05379738658666611, + -0.04100567102432251, + 0.035710662603378296, + -0.007648149970918894, + -0.004843865521252155, + -0.02923651412129402, + 0.02367047592997551, + 0.029491545632481575, + -0.03423219174146652, + -0.04084465280175209, + -0.036634527146816254, + -0.014215976931154728, + -0.012938050553202629, + -0.004526488482952118, + 0.05206669867038727, + -0.004340141545981169, + 0.011179283261299133, + -0.02729257568717003, + 0.047399863600730896, + -0.03610336408019066, + 0.02895203046500683, + -0.05554699897766113, + 0.009316369891166687, + -0.01915588416159153, + 0.0334324911236763, + -0.015388011932373047, + 0.03111872635781765, + -0.03324378654360771, + 0.04887200519442558, + -0.028141606599092484, + 0.011533455923199654, + 0.04832632467150688, + 0.013189416378736496, + 0.03941596671938896, + -0.02336929924786091, + -0.05417775362730026, + 0.010015045292675495, + 0.01232669036835432, + -0.04269380122423172, + -0.05715550109744072, + 0.025370286777615547, + 0.010244181379675865, + 0.02729068323969841, + 0.01925422064960003, + -0.022081496194005013, + 0.028940830379724503, + -0.02956506796181202, + -0.04075305908918381, + -0.02553742565214634, + 0.06988943368196487, + 0.04460012540221214, + 0.005365481600165367, + -0.013074344955384731, + -0.0026920216623693705, + 0.007936285808682442, + -0.004283008631318808, + 0.0158523041754961, + -0.02590988762676716, + 0.0343124158680439, + -0.043686091899871826, + 0.05323997884988785, + 0.004750857595354319, + 0.010656949132680893, + -0.013042429462075233, + 0.04159442335367203, + 0.026453908532857895, + 0.019496344029903412, + -0.028082428500056267, + 0.0017020091181620955, + -0.010437711142003536, + -0.037326324731111526, + -0.040129974484443665, + 0.021029526367783546, + -0.030059851706027985, + -0.0010755447437986732, + 0.013747235760092735, + 0.02541154995560646, + 0.02937181666493416, + -0.010676775127649307, + 0.01863185502588749, + 0.010932328179478645, + 0.019261742010712624, + -0.006077994592487812, + 0.05295336991548538, + -0.022598447278141975, + 0.028905941173434258, + -0.022955087944865227, + 0.02741910144686699, + 0.05311059579253197, + 0.03150975704193115, + -0.014943323098123074, + 0.06589672714471817, + 0.005447933450341225, + 0.01714893989264965, + -0.022363636642694473, + -0.049668602645397186, + 0.055383406579494476, + 0.0068796849809587, + -0.027789825573563576, + -0.0041350373066961765, + -0.0305939931422472, + -0.004631932824850082, + -0.016864066943526268, + 0.0327092744410038, + -0.0020060273818671703, + 0.007970500737428665, + 0.0002635770943015814, + 0.0525476299226284, + -0.01704409345984459, + 0.01297944225370884, + -0.04062651842832565, + -0.01572958379983902, + 0.016003694385290146, + 0.02188902534544468, + 0.025081977248191833, + 0.007365937810391188, + -0.024099202826619148, + 0.03761790692806244, + 0.036182988435029984, + 0.03152790293097496, + -0.042499955743551254, + -0.010397078469395638, + -0.039100293070077896, + -0.0018573558190837502, + 0.02173781767487526, + 0.015477105975151062, + 0.06751137226819992, + 0.04147082939743996, + 0.018804386258125305, + 0.015080512501299381, + 0.020209670066833496, + 0.009841464459896088, + 0.022515414282679558, + -0.01662486046552658, + -0.011931991204619408, + 0.011868475005030632, + 0.024257110431790352, + 0.017686910927295685, + -0.02735169604420662, + 0.02286618761718273, + 0.03542805463075638, + -0.008395911194384098, + -0.0007595292991027236, + -0.050296369940042496, + 0.0010780348675325513, + -0.04164471477270126, + -0.03915401175618172, + -0.004717934411019087, + -0.018085148185491562, + 0.03094489686191082, + -0.052321888506412506, + 0.025417689234018326, + -0.03632715716958046, + -0.02687365934252739, + -0.03170926868915558, + 0.0012572095729410648, + 0.01994328200817108, + 0.09222286939620972, + -0.045230116695165634, + 0.002132958732545376, + 0.0038821743801236153, + 0.008452692069113255, + 0.022372525185346603, + -0.02083803340792656, + 0.0047775981947779655, + 0.020834924653172493, + -0.03252972289919853, + -0.015480508096516132, + 0.005181537941098213, + 0.037604790180921555, + 0.032691601663827896, + 0.013553882017731667, + -0.005871692206710577, + 0.03459014743566513, + 0.016182977706193924, + -0.03334285691380501, + -0.009111150167882442, + 0.024593420326709747, + 0.016935544088482857, + -0.0008602827438153327, + 0.002553657628595829, + -0.011528056114912033, + -0.011965589597821236, + -0.007638269569724798, + 0.015014946460723877, + -0.01723436824977398, + -0.07186240702867508, + 0.013397596776485443, + 0.04220771789550781, + 0.025154706090688705, + 0.026410166174173355, + -0.012970888055860996, + -0.007948814891278744, + 0.03347788751125336, + 0.02571600303053856, + -0.01955777406692505, + -0.01624196395277977, + -0.05831906571984291, + 0.08156973868608475, + -0.005646815989166498, + 0.02136402577161789, + 0.037036169320344925, + -0.026516959071159363, + 0.025304513052105904, + -0.0035773017443716526, + 0.028514690697193146, + -0.008783504366874695, + -0.002010905183851719, + -0.012246165424585342, + -0.016883129253983498, + -0.036909475922584534, + -0.038922447711229324, + 0.05630212649703026, + -0.008164524100720882, + 0.019239021465182304, + -0.043714240193367004, + 0.02544647641479969, + -0.027056196704506874, + -0.0019984485115855932, + 0.011925316415727139, + 0.05860450118780136, + 0.012277035973966122, + 0.004509767983108759, + 0.07867302000522614, + 0.04588978365063667, + -0.02627544105052948, + -0.016147682443261147, + 0.006600068416446447, + 0.05807529389858246, + -0.016958381980657578, + 0.002697344170883298, + 0.030109453946352005, + 0.004849342629313469, + 0.03530805930495262, + 0.024787185713648796, + 0.010918865911662579, + -0.0024415093939751387, + -0.017548806965351105, + -0.008724210783839226, + -0.01775505393743515, + 0.04333997145295143, + 0.03637043014168739, + 0.0629459023475647, + -0.0014464273117482662, + -0.027464305981993675, + 0.0011517290258780122, + 0.0395074263215065, + -0.00021726320846937597, + -0.028596799820661545, + 0.016376642510294914, + -0.019137702882289886, + -0.027217376977205276, + 0.025219032540917397, + 0.03718004375696182, + -0.000529543380253017, + 0.022361867129802704, + 0.03598863258957863, + -0.019231639802455902, + -0.008184763602912426, + 0.008247172459959984, + -0.0095028942450881, + -0.018085120245814323, + 0.031311340630054474, + -0.0010323605965822935, + 0.026858313009142876, + 0.03340546414256096, + 0.005365189630538225, + 0.02589607983827591, + 0.002718490781262517, + 0.02990221418440342, + 0.01880422793328762, + 0.013403628021478653, + -0.00022162222012411803, + -0.012626704759895802, + 0.03680219501256943, + 0.016436602920293808, + -0.01014312356710434, + -0.03256533294916153, + 0.022843781858682632, + 0.009332393296062946, + 0.016010481864213943, + -0.05120464414358139, + 0.06438548862934113, + 0.02415904402732849, + -0.007722683250904083, + -0.024931298568844795, + -0.03958025947213173, + 0.052032794803380966, + 0.020468441769480705, + -0.0015488858334720135, + -0.024320080876350403, + 0.008056946098804474, + 0.01083931140601635, + 0.002729805652052164, + 0.05502575635910034, + 0.008570031262934208, + 0.02198711223900318, + -0.05293389782309532, + 0.021837206557393074, + 0.01977236568927765, + -0.006781508214771748, + -0.037000298500061035, + 0.0010628632735460997, + -0.0051644970662891865, + 0.024163974449038506, + -0.04546407237648964, + 0.020732374861836433, + -0.013216555118560791, + 0.0026670852676033974, + 0.007031275890767574, + -0.004557834938168526, + -0.03601379692554474, + -0.027706114575266838, + 0.0005175562109798193, + -0.035982895642519, + -0.0037615634500980377 + ], + "start_index": 0, + "end_index": 115, + "token_count": 39, + "file": "else_estandar.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "a4ae8d14-04e5-5b86-b809-9c66383b24a3", + "_source": { + "text": "### Prefacio Arquitectónico\n\n**AVAP es un DSL (Domain-Specific Language) Turing Completo, diseñado arquitectónicamente para la orquestación segura, concurrente y determinista de microservicios e I/O.** No es un lenguaje de propósito general; su motor híbrido y su gramática estricta están optimizados para el procesamiento rápido de transacciones HTTP, la manipulación de datos en memoria y la persistencia, minimizando los efectos secundarios no deseados.\n\n---\n\n# Especificación Técnica Consolidada del Lenguaje AVAP (LRM)\n\nEste documento unifica la arquitectura de memoria, estructuras de control, modularidad, concurrencia asíncrona y la gramática formal (BNF) del lenguaje AVAP. Actúa como la única fuente de verdad (Single Source of Truth) para la implementación del parser, el motor de ejecución y la indexación del sistema RAG.\n\n---\n\n## SECCIÓN I: Arquitectura, Memoria y Fundamentos Estructurales\n\nEsta sección sienta las bases de cómo AVAP gestiona la lógica de los servicios y la manipulación de datos en memoria. A diferencia de los lenguajes interpretados convencionales, AVAP utiliza un motor de evaluación híbrida que permite combinar comandos declarativos con expresiones dinámicas.\n\n### 1.1 Estructura de Archivo y Terminación de Sentencias\nAVAP es un lenguaje **estrictamente orientado a líneas**. Esta decisión de diseño garantiza que el analizador sintáctico (parser) sea extremadamente rápido y determinista, evitando la ambigüedad que sufren lenguajes que permiten declaraciones en múltiples líneas.\n* Cada instrucción lógica (`statement`) debe completarse en una única línea física de texto.\n* El motor reconoce el salto de línea o retorno de carro (``) como el terminador absoluto de la instrucción.\n* No se admite la partición de una instrucción, obligando al programador a escribir un código secuencial, limpio y fácil de depurar.\n\n### 1.2 Registro de Endpoints (registerEndpoint)\nEl comando `registerEndpoint` es la unidad atómica de configuración en AVAP. Actúa como el puente crítico entre la red externa (HTTP) y el código interno.\n* **Mecánica:** Define la ruta URL, el método HTTP permitido (ej. `GET`, `POST`), y la función de entrada principal (Handler).\n* **Seguridad:** El servidor AVAP rechazará automáticamente (con un Error 405) cualquier petición que no coincida con el método especificado.\n* **Middlewares:** Permite inyectar una lista de funciones previas para validar tokens antes de ejecutar el bloque principal.\n\n### 1.3 Asignación Dinámica y Referencias (addVar)\nAVAP permite una sintaxis de asignación directa mediante el símbolo `=`, otorgando flexibilidad bajo un estricto control de contexto.\n* **Evaluación en tiempo real:** Cuando el intérprete lee `variable = expresión`, resuelve cualquier operación matemática o lógica utilizando el motor de evaluación subyacente.\n* **El operador de desreferenciación (`$`):** Cuando se utiliza el comando nativo `addVar(copia, $original)`, el prefijo `$` indica al motor que debe buscar en la tabla de símbolos la variable llamada \"original\" y extraer su valor.\n* **Semántica de addVar:** El comando acepta `addVar(valor, variable)` o `addVar(variable, valor)`. Si ambos argumentos son identificadores, el valor del segundo se asigna al primero. No está permitido usar dos literales como argumentos.\n\n### Especificación BNF (Sección I)\n\n\n\n ::= ( | )*\n ::= [ ] [ | ] \n | ( | ) \n ::= /* Retorno de carro / Salto de línea (\\n o \\r\\n) */\n\n ::= \n | \n | \n | \n | \n | \n | \n | \n | \n | \n | \n | \n | \n | \n\n ::= \"=\" \n\n/* Llamada a función global (sin receptor de objeto) */\n ::= \"(\" [] \")\"\n\n/* Llamada a método sobre un objeto conector (con receptor) */\n ::= \"=\" \".\" \"(\" [] \")\"\n\n ::= | \n ::= \"registerEndpoint(\" \",\" \",\" \",\" \",\" \",\" \")\"\n/* addVar asigna un valor a una variable. Acepta (valor, variable) o (variable, valor).\n Si ambos argumentos son identificadores, el valor del segundo se asigna al primero.\n No está permitido pasar dos literales como argumentos. */\n ::= \"addVar(\" \",\" \")\"\n ::= | | \"$\" \n/* Restricción semántica: al menos uno de los dos debe ser */\n\n ::= [a-zA-Z_] [a-zA-Z0-9_]*\n\n/* Variables de sistema reservadas — accesibles y asignables desde cualquier scope:\n _status — código HTTP de respuesta (ej. addVar(_status, 401) o _status = 404) */\n ::= \"_status\"", + "embedding": [ + 0.020433461293578148, + 0.00011811550939455628, + -0.011526749469339848, + -0.08096256107091904, + 0.023198632523417473, + 0.0018690951401367784, + -0.021837441250681877, + 0.07540956884622574, + -0.00210578553378582, + -0.07008780539035797, + -0.04432273283600807, + -0.009199090301990509, + -0.019646119326353073, + -0.009712345898151398, + -0.02990618906915188, + 0.0488264337182045, + -0.013084085658192635, + 0.03100590407848358, + -0.017748737707734108, + 0.021460026502609253, + 0.010794136673212051, + 0.05341335013508797, + -0.048141077160835266, + 0.08780485391616821, + -0.06260600686073303, + -0.01889912784099579, + -0.004649818409234285, + 0.017354413866996765, + -0.04165341332554817, + -0.052048034965991974, + -0.026668671518564224, + -0.010096884332597256, + -0.08894087374210358, + 0.0013693271903321147, + -0.05111144855618477, + -0.011747133918106556, + 0.0188178401440382, + -0.0597209595143795, + 0.07162455469369888, + -0.023306943476200104, + 0.007444134447723627, + 0.005577006842941046, + 0.06885960698127747, + 0.011561643332242966, + -0.01624329388141632, + -0.10922415554523468, + -0.005015937145799398, + -0.007481729611754417, + 0.003904954995959997, + -0.026381514966487885, + -0.053496215492486954, + 0.01532743126153946, + 0.0480654314160347, + -0.0489724762737751, + -0.053822316229343414, + 0.033696990460157394, + -0.0003835023089777678, + -0.020099306479096413, + -0.002606529975309968, + 0.00838906317949295, + -0.012726305983960629, + 0.029567869380116463, + -0.012067076750099659, + -0.0608968585729599, + 0.01898016221821308, + 0.05462314188480377, + 0.017945708706974983, + -0.05111014097929001, + 0.017530610784888268, + 0.016292262822389603, + -0.015004054643213749, + -0.0639292299747467, + -0.019430609419941902, + 0.03819385543465614, + 0.020634228363633156, + 0.04284992441534996, + 0.02265021950006485, + -0.007562408689409494, + -0.016914982348680496, + 0.013649143278598785, + -0.006632998585700989, + 0.06695239990949631, + 0.035110145807266235, + 0.004977084696292877, + -0.00304558128118515, + 0.049713052809238434, + -0.039293911308050156, + -0.041124310344457626, + -0.006459005177021027, + -0.01119726151227951, + 0.05580832436680794, + -0.04854649305343628, + -0.012941235676407814, + -0.018857339397072792, + 0.048445165157318115, + 0.01925576850771904, + -0.03674342855811119, + 0.0377010777592659, + -0.002635450568050146, + -0.014600888825953007, + 0.006669499911367893, + -0.003301047021523118, + -0.042244091629981995, + 0.018286172300577164, + 0.03555484488606453, + 0.052311234176158905, + -0.03899220749735832, + -0.011934147216379642, + 0.006077525671571493, + -0.040748730301856995, + -0.0492129810154438, + 0.007898679934442043, + -0.0025311396457254887, + 0.07485464215278625, + 0.008253577165305614, + 0.025774488225579262, + 0.0286064725369215, + -0.027244364842772484, + -0.0021705692633986473, + -0.026225591078400612, + 0.009995359927415848, + 0.003969475161284208, + 0.017611710354685783, + 0.016808167099952698, + -0.01821521297097206, + -0.004330513067543507, + -0.05190413445234299, + 0.006202286574989557, + -0.01282726414501667, + 0.017500154674053192, + 0.028078462928533554, + 0.0032932963222265244, + 0.02016044408082962, + -0.025157049298286438, + -0.011775285936892033, + -0.011625107377767563, + 0.03725126013159752, + -0.030059225857257843, + 0.030394431203603745, + -0.012861919589340687, + -0.015917247161269188, + -0.03911466896533966, + -0.024014843627810478, + -0.059503890573978424, + 0.029114192351698875, + 0.060988619923591614, + -0.011226888746023178, + 0.01734309084713459, + 0.0077350446954369545, + -0.0060589672066271305, + 0.04158928990364075, + -0.026399599388241768, + -0.03126513957977295, + 0.004673112649470568, + -0.009857219643890858, + -0.032158877700567245, + 0.004261709749698639, + 0.009672146290540695, + 0.013861548155546188, + 0.033923156559467316, + 0.00902396347373724, + 0.012721052393317223, + -0.017462776973843575, + -0.03237677738070488, + -0.010853596031665802, + 0.019292335957288742, + 0.01864022947847843, + -0.023699916899204254, + -0.03127744421362877, + 0.028966009616851807, + 0.00820863340049982, + 0.017844773828983307, + 0.015156351961195469, + -0.03675444796681404, + -0.01655094139277935, + -0.021211933344602585, + -0.03478638082742691, + -0.005639346316456795, + -0.0028995289467275143, + 0.01567653752863407, + 0.01050600502640009, + -0.03762657195329666, + 0.025511417537927628, + 0.011611293070018291, + 0.04247107729315758, + 0.08279252797365189, + -0.007693983614444733, + 0.014681203290820122, + -0.045058950781822205, + 0.02370113879442215, + 0.019038300961256027, + -0.026623891666531563, + -0.004810773767530918, + -0.013463842682540417, + 0.005800624378025532, + -0.014270930550992489, + 0.019412590190768242, + -0.0074032084085047245, + 0.0003963411436416209, + 0.010525059886276722, + 0.015956254675984383, + -0.01769278198480606, + -0.010053759440779686, + -0.018273748457431793, + -0.002304902533069253, + -0.009195633232593536, + 0.006768164690583944, + -0.022503674030303955, + -0.04684658348560333, + -0.013730650767683983, + -0.006492895539849997, + 0.036663755774497986, + -0.010756130330264568, + -0.0475391149520874, + 0.019981762394309044, + -0.030819054692983627, + 0.018857205286622047, + 0.04145555943250656, + 0.007116548251360655, + 0.043960295617580414, + 0.013715331442654133, + 0.013763188384473324, + -0.01882154867053032, + 0.012880316935479641, + 0.027204900979995728, + 0.0016502321232110262, + -0.0050811562687158585, + 0.022868771106004715, + -0.00790000706911087, + 0.0010030316188931465, + -0.028221311047673225, + 0.029094822704792023, + 0.04583200812339783, + -0.034458402544260025, + 0.031579308211803436, + 0.02895253337919712, + 0.008737779222428799, + 0.010252634063363075, + -0.004726896993815899, + 9.758098894963041e-05, + 0.01085237879306078, + 0.007734229788184166, + 0.025061175227165222, + -0.0020260789897292852, + 0.010333421640098095, + -0.005070982035249472, + -0.002248379634693265, + -0.03906294330954552, + -0.046488191932439804, + 0.03136298060417175, + 0.0294874869287014, + 0.03837291896343231, + 0.026784835383296013, + 0.006702862214297056, + 0.015262119472026825, + -0.02914179489016533, + -0.013611181639134884, + 0.02589072473347187, + 0.03644970431923866, + 0.0077356742694973946, + 0.03889619559049606, + -0.005969250574707985, + 0.03889577463269234, + 0.00967778917402029, + -0.02362816408276558, + 0.025930512696504593, + 0.01647699438035488, + -0.005353925749659538, + -0.02780957706272602, + -0.015129398554563522, + 0.05323774367570877, + -0.005386064760386944, + 0.0374227873980999, + -0.005257504526525736, + 0.035463061183691025, + 0.011785703711211681, + -0.009326315484941006, + -0.07322418689727783, + 0.034174736589193344, + -0.01670151762664318, + 0.0020186053588986397, + -0.04077751189470291, + -0.052404724061489105, + 0.019007153809070587, + -0.013974609784781933, + 0.04675138741731644, + 0.026215219870209694, + 0.016924088820815086, + 0.04609476774930954, + -0.022002093493938446, + -0.03292769938707352, + 0.03633064776659012, + 0.02694048546254635, + 0.03274884819984436, + -0.012581110931932926, + -0.027252167463302612, + 0.02108866721391678, + -0.0015523199690505862, + -0.013273883610963821, + 0.020900577306747437, + 0.02925853803753853, + -0.007356727495789528, + -0.016959570348262787, + 0.006297867279499769, + 0.008019023574888706, + -0.0026941117830574512, + 0.04327540099620819, + -0.020863696932792664, + 0.015565181151032448, + 0.04535188898444176, + 0.06571558862924576, + -0.025212496519088745, + -0.020996704697608948, + -0.031034378334879875, + -0.012037113308906555, + -0.010582716204226017, + -0.004787718411535025, + 0.00036211765836924314, + 0.018540892750024796, + -0.0451219268143177, + -0.011700619012117386, + -0.03090732917189598, + 0.005998643115162849, + -0.023773206397891045, + 0.02403542399406433, + 0.005209585186094046, + 0.03161859139800072, + 0.02757074311375618, + 0.012494503520429134, + -0.009328032843768597, + 0.052194103598594666, + 0.04420480504631996, + 0.05235765129327774, + -0.006997211370617151, + -0.00028703422867693007, + -0.02607191726565361, + 0.015957094728946686, + 0.017759600654244423, + 0.013245644047856331, + -0.041797179728746414, + -0.010145229287445545, + 0.002888862742111087, + -0.03480134159326553, + 0.025510311126708984, + -0.01380616519600153, + 0.005522366613149643, + 0.03486035019159317, + 0.008554640226066113, + 0.005782140884548426, + 0.00045903827412985265, + -0.024223875254392624, + -0.006037558428943157, + 0.004793928470462561, + 0.013053453527390957, + -0.0060529401525855064, + -0.03562236204743385, + 0.03574352711439133, + 0.06926858425140381, + -0.013643907383084297, + -0.026702430099248886, + -0.016963640227913857, + 0.041678156703710556, + 0.003494035452604294, + 0.03528096526861191, + 0.007048076018691063, + -0.02496344782412052, + -0.04448927566409111, + -0.04727407544851303, + 0.05402020737528801, + -0.02909184619784355, + -0.08138031512498856, + -0.045437440276145935, + 0.01095527969300747, + 0.045036591589450836, + 0.057149000465869904, + 0.023814089596271515, + 0.01270804088562727, + -0.02763889543712139, + 0.01617291197180748, + 0.019204428419470787, + 0.0426083467900753, + -0.029735581949353218, + 0.016301678493618965, + 0.022388648241758347, + -0.017992427572607994, + -0.09251050651073456, + 0.016737444326281548, + -0.010069533251225948, + -0.021169783547520638, + 0.04160003364086151, + 0.025074148550629616, + -0.0061267949640750885, + 0.023522386327385902, + 0.01573232002556324, + -0.004225962329655886, + 0.03939727321267128, + -0.06644783914089203, + 0.020291393622756004, + -0.024330297484993935, + -0.013839819468557835, + 0.052788592875003815, + -0.03493986278772354, + -0.006869853474199772, + 0.04777980595827103, + 0.0374506376683712, + 0.03658287972211838, + 0.014897018671035767, + 0.02420973591506481, + -0.005889506544917822, + 0.03851615637540817, + 0.02398158609867096, + 0.03684600442647934, + 0.005229491740465164, + 0.011365790851414204, + -0.004310615826398134, + -0.011325369589030743, + 0.03080470860004425, + -0.022004947066307068, + -0.01893799938261509, + 0.04780589044094086, + -0.005948321428149939, + 0.08458250761032104, + -0.049267757683992386, + -0.020220231264829636, + 0.005120291840285063, + 0.028132081031799316, + -0.023985419422388077, + -0.021249763667583466, + 0.006317451596260071, + -0.002326675457879901, + 0.0011770152486860752, + 0.01225990615785122, + -0.01945575326681137, + 0.014989170245826244, + -0.03235587850213051, + 0.0480663999915123, + 0.030681950971484184, + 0.03463286906480789, + 0.026879161596298218, + 0.04311749339103699, + 0.04637639597058296, + 0.013672971166670322, + -0.007546636741608381, + 0.003554531605914235, + -0.04505918547511101, + 0.045972730964422226, + -0.011023865081369877, + 0.0450042225420475, + -0.027337273582816124, + -0.02358846180140972, + -0.017005709931254387, + 0.018944568932056427, + 0.00020070589380338788, + 0.06227988749742508, + 0.03971957787871361, + -0.031641408801078796, + 0.009433966130018234, + -0.10523426532745361, + -0.033638160675764084, + 0.048904795199632645, + 0.012831024825572968, + 0.007285017520189285, + -0.04747752472758293, + -0.01467805728316307, + -0.05139496177434921, + 0.021974146366119385, + 0.033163439482450485, + 0.0035367931704968214, + 0.07021439075469971, + -0.007531222887337208, + 0.05221620947122574, + -0.0030069451313465834, + -0.05124981328845024, + -0.020832698792219162, + -0.023465391248464584, + -0.057939521968364716, + -0.058402255177497864, + 0.005718901753425598, + -0.03652501478791237, + -0.003978457301855087, + 0.02033146098256111, + -0.036267537623643875, + 0.025627853348851204, + -0.02042204886674881, + 0.06046842411160469, + 0.029447389766573906, + 0.024446170777082443, + -0.03769483044743538, + -0.046174779534339905, + 0.014820541255176067, + 0.013087904080748558, + -0.005223103798925877, + 0.03404132276773453, + 0.004318671301007271, + 0.026161693036556244, + -0.04685257375240326, + -0.005890814587473869, + -0.03490572050213814, + -0.09377570450305939, + 0.03620642051100731, + 0.03023473359644413, + 0.008103164844214916, + -0.015438280999660492, + 0.00020120624685660005, + 0.0033174827694892883, + -0.04173882678151131, + 0.030693180859088898, + -0.03944815322756767, + 0.06649072468280792, + 0.023708317428827286, + 0.016761740669608116, + -0.05956326797604561, + 0.014932196587324142, + 0.008615964092314243, + -0.0273758415132761, + -0.017098654061555862, + 0.026518013328313828, + -0.003968971781432629, + -0.045533567667007446, + 0.03127911314368248, + 0.017259573563933372, + 0.028529169037938118, + 0.02057993970811367, + -0.007901922799646854, + -0.03848543390631676, + 0.013253518380224705, + 0.012254452332854271, + 0.03545702248811722, + 0.06713206321001053, + 0.008932785131037235, + -0.007042983081191778, + -0.03292258828878403, + -0.018160969018936157, + -0.025834226980805397, + -0.06409110128879547, + -0.07503492385149002, + -0.04497212544083595, + -0.0010903718648478389, + 0.03312430903315544, + 0.012719416059553623, + 0.009562117047607899, + 0.032591965049505234, + -0.018905431032180786, + 0.023759249597787857, + -0.021182699128985405, + -0.0029849244747310877, + -0.0747489333152771, + 0.051105573773384094, + -0.01051437295973301, + 0.05300336703658104, + 0.01171254925429821, + 0.029965542256832123, + 0.0365002304315567, + 0.0005569109926000237, + 0.005685207899659872, + -0.025955168530344963, + -0.009211525321006775, + -0.02458951622247696, + 0.008128175511956215, + -0.010825742036104202, + 0.018855517730116844, + 0.007593206595629454, + 0.0395544208586216, + 0.012226831167936325, + 0.021010003983974457, + 0.014322585426270962, + -0.014642961323261261, + 0.05621109902858734, + 0.020169474184513092, + 0.035320136696100235, + 0.03746418654918671, + -0.006080567371100187, + -0.011918491683900356, + -0.00887190643697977, + -0.012531782500445843, + -0.04971637204289436, + 0.007332904729992151, + 0.018730828538537025, + -0.012034191749989986, + 0.021072670817375183, + 0.009460781700909138, + 0.015841273590922356, + 0.0004349540395196527, + 0.06463015824556351, + 0.029590649530291557, + -0.017402993515133858, + 0.02401881292462349, + -0.046996451914310455, + 0.016045590862631798, + -0.010823147371411324, + -0.054925788193941116, + -0.0158865824341774, + 0.01641632430255413, + -0.013697680085897446, + 0.034037359058856964, + 0.019888831302523613, + -0.026826778426766396, + -0.03888339549303055, + -0.021168725565075874, + 0.01319666113704443, + 0.0036734279710799456, + -0.0013900165213271976, + -0.05975327640771866, + 0.02354232221841812, + -0.053069520741701126, + -0.0205738116055727, + -0.01636701263487339, + 0.006994366645812988, + -0.042271409183740616, + 0.006798636168241501, + 0.03693540766835213, + -8.974968659458682e-05, + 0.019274886697530746, + 0.020429620519280434, + 0.01819346845149994, + -0.015661265701055527, + -0.04467907175421715, + 0.002938787220045924, + 0.017458776012063026, + -0.03309338539838791, + -0.029746269807219505, + 0.01446191594004631, + -0.003642727853730321, + 0.03330524265766144, + -0.011090693064033985, + -0.004922322928905487, + -0.023967204615473747, + -0.024645034223794937, + -0.030329175293445587, + -0.024955378845334053, + -0.04817553609609604, + 0.0003164210938848555, + -0.016384262591600418, + 0.026144959032535553, + -0.030237875878810883, + -0.03779103234410286, + -0.02537611499428749, + -0.009156477637588978, + 0.008879480883479118, + -0.05797017738223076, + 0.02905660681426525, + 0.0032011873554438353, + 0.00807346310466528, + 0.02509198896586895, + 0.02609119564294815, + -0.0011625617044046521, + -0.00832275953143835, + -0.01057494431734085, + 0.010400847531855106, + -0.01006794348359108, + 0.030335672199726105, + 0.05137868970632553, + 0.037955742329359055, + 0.018468443304300308, + -0.05344761162996292, + 0.012890275567770004, + -1.8274860849487595e-05, + 0.01571541838347912, + 0.046194154769182205, + -0.02502891980111599, + -0.0029574299696832895, + -0.10264080762863159, + 0.03769513592123985, + -0.034406278282403946, + -0.02243793196976185, + 0.023204384371638298, + 0.047941435128450394, + 0.008873323909938335, + 0.04912205785512924, + 0.03255965933203697, + -0.0033745516557246447, + -0.0650511085987091, + -0.027889184653759003, + 0.043028902262449265, + 0.03821463882923126, + -0.051411956548690796, + -0.007198740728199482, + -0.017487874254584312, + 0.019978053867816925, + -0.013102746568620205, + -0.05456262454390526, + -0.032828379422426224, + 0.032896820455789566, + -0.023759886622428894, + 0.041336894035339355, + -0.0660354346036911, + -0.04486946761608124, + 0.029148532077670097, + 0.033101413398981094, + -0.004094539675861597, + -0.04554552212357521, + -0.012330879457294941, + -0.008458921685814857, + -0.013510636985301971, + -0.017544670030474663, + -0.02380778267979622, + -0.0016133206663653255, + 0.04609537124633789, + 0.039085399359464645, + 0.0061860294081270695, + 0.043969593942165375, + 0.026753254234790802, + 0.0026712212711572647, + -0.01317688450217247, + 0.013239211402833462, + -0.004469328094273806, + -0.03456125035881996, + 0.002459141658619046, + -0.024417027831077576, + 0.01093334797769785, + 0.039661698043346405, + -0.009534305892884731, + -0.051271289587020874, + -0.028629090636968613, + 0.025993242859840393, + 0.023836571723222733, + -0.010173004120588303, + 0.002375994808971882, + -0.021140800788998604, + -0.022132141515612602, + 0.022284001111984253, + -0.03408427909016609, + 0.026220805943012238, + -0.028547300025820732, + -0.026303619146347046, + 0.015241171233355999, + 0.05468586087226868, + 0.07888385653495789, + 0.0077612618915736675, + -0.025106171146035194, + 0.016156060621142387, + 0.02725602500140667, + 0.01700359210371971, + -0.043565861880779266, + 0.008087996393442154, + 0.0029562849085778, + 0.024875206872820854, + 0.024878855794668198, + -0.0032897170167416334, + 0.04744803532958031, + -0.009383464232087135, + -0.019516218453645706, + 0.004562638700008392, + -0.03340167552232742, + 0.0004160161188337952, + -0.023569339886307716, + 0.045192018151283264, + -0.006301721092313528, + -0.021810147911310196, + 0.024464797228574753, + 0.0031818803399801254, + 0.004432755522429943, + -0.03789982944726944, + -0.009645098820328712, + -0.011546683497726917, + 0.017653629183769226, + 0.02496664971113205, + 0.00245506688952446, + -0.03903183713555336, + -0.026339730247855186, + 0.027260517701506615, + -0.022600598633289337, + -0.02728259563446045, + -0.009029112756252289, + 0.023371463641524315, + 0.01338676642626524, + 0.029961418360471725, + -0.022833701223134995, + -0.004785012453794479, + 0.005640360526740551, + 0.022873690351843834, + 0.002325286390259862, + 0.07657680660486221, + -0.06039531156420708, + 0.0014619195135310292, + 0.008247987367212772, + 0.0263719093054533, + -0.026894928887486458, + -0.05600805580615997, + 0.062141235917806625, + -0.006288874428719282, + -0.002622191794216633, + 0.028329741209745407, + -0.04366203770041466, + -0.019934887066483498, + -0.007708907593041658, + 0.006130868103355169, + 0.018129849806427956, + 0.022435611113905907, + 0.025633206591010094, + -0.05130443349480629, + -0.03353668004274368, + 0.0608949176967144, + 0.00999840535223484, + -0.02417590655386448, + -0.019733525812625885, + -0.03696213290095329, + 0.01966203935444355, + -0.05286587402224541, + -0.025535687804222107, + -0.0019534816965460777, + -0.0054831113666296005, + -0.025218792259693146, + 0.021951155737042427, + 0.010365964844822884, + -0.019411735236644745, + 0.024563487619161606, + 0.00677790492773056, + -0.010141689330339432, + 0.010508260689675808, + -0.023375559598207474, + 0.028279773890972137, + 0.02032582461833954, + -0.026493854820728302, + 0.023802705109119415, + -0.0050787595100700855, + -0.06340918689966202, + 0.02405175194144249, + -0.03818758204579353, + -0.024467531591653824, + -0.008165763691067696, + -0.015781685709953308, + 0.005644169170409441, + 0.010167805477976799, + -0.008753873407840729, + 0.04640889912843704, + 0.014995839446783066, + -0.01908518187701702, + 0.0035034646280109882, + 0.017113687470555305, + 0.008735519833862782, + -0.03545122593641281, + 0.00513842748478055, + 0.0011887631844729185, + 0.057292088866233826, + 0.0026594488881528378, + -0.06823272258043289, + 0.015625756233930588, + -0.038705289363861084, + -0.04144042357802391, + 0.0001429900439688936, + 0.017759408801794052, + -0.05443717539310455, + 0.09275783598423004, + -0.008095728233456612, + 0.023610606789588928, + 0.037611037492752075, + -0.0018261609366163611, + -0.016784323379397392, + 0.0059377397410571575, + 0.016302859410643578, + 0.01262011006474495, + -0.04508506879210472, + 0.002492155646905303, + -0.08630404621362686, + 0.04991267994046211, + 0.017450548708438873, + 0.0178219061344862, + -0.03434594348073006, + 0.018555691465735435, + -0.04206867143511772, + 0.008753879927098751, + -0.03340154513716698, + -0.006426973268389702, + -0.018691018223762512, + 0.0349678210914135, + -0.0297623910009861, + -0.006741557270288467, + 0.019436506554484367, + 0.00599448150023818, + 0.021360082551836967, + 0.023089716210961342, + 0.026851432397961617, + -0.0028922702185809612, + 0.02552485466003418, + 0.03477819263935089, + -0.062152862548828125, + -0.0416279211640358, + 0.02497735619544983, + 0.02014211006462574, + -0.025461217388510704, + -0.011314917355775833, + 0.05726335197687149, + -0.026313381269574165, + -0.006796819623559713, + -0.013145800679922104, + 0.0172750074416399, + 0.008820566348731518, + -0.024826105684041977, + -0.06607111543416977, + -0.04613747447729111, + 0.03510897979140282, + -0.01377092394977808, + 0.0245621670037508, + -0.1356562376022339, + 0.06532731652259827, + 0.020748663693666458, + 0.040364816784858704, + 0.024587241932749748, + -0.026720745489001274, + -0.0007778236176818609, + -0.033576227724552155, + 0.030329948291182518, + -0.02325047366321087, + -0.03156284987926483, + -0.024418529123067856, + 0.05598261579871178, + 0.01554360892623663, + -0.010279420763254166, + -0.012147456407546997, + -0.037050511687994, + 0.002614994067698717, + 0.003019781084731221, + 0.0230941753834486, + -0.014809214510023594, + 0.006112165283411741, + -0.011809744872152805, + 0.05956457555294037, + 0.041775353252887726, + -0.020825747400522232, + -0.04058089107275009, + 0.021720536053180695, + -0.006350887939333916, + -0.01636875793337822, + 0.002403482561931014, + -0.006107147317379713, + -0.03053644485771656, + 0.00441384082660079, + -0.000617155572399497, + -0.04981924965977669, + 0.006517240311950445, + 0.03278689831495285, + 0.0133414501324296, + 0.037197358906269073, + 0.055756598711013794, + -0.005781885236501694, + 0.026350170373916626, + 0.00021441420540213585, + -0.04814755544066429, + 0.0018361880211159587, + 0.003844191785901785, + -0.020829228684306145, + -0.01052896212786436, + 0.006918343249708414, + 0.04592932015657425, + 0.01714506186544895, + 0.025781191885471344, + 0.042105793952941895, + 0.031776703894138336, + 0.0674547329545021, + -0.009526324458420277, + 0.03686289116740227, + -0.05977687984704971, + -0.05999729037284851, + -0.023152368143200874, + 0.0124689731746912, + 0.013309805653989315, + 0.009118229150772095, + 0.029781028628349304, + -0.02325921505689621, + -0.009428423829376698, + -0.00660900492221117, + 0.0007580437231808901, + -0.02070075273513794, + 0.023887334391474724, + -0.0130739351734519, + 0.03395496681332588, + -0.0021589677780866623, + -0.007697450928390026, + 0.0263521708548069, + -0.011411676183342934, + 0.05310136079788208, + -0.025092925876379013, + -0.023695429787039757, + 0.021531783044338226, + 0.04040832445025444, + -0.029427126049995422, + -0.01946108043193817, + -0.028008516877889633, + -0.006229794584214687, + -0.06931938230991364, + -0.010082464665174484, + 0.021146025508642197, + 0.02685036137700081, + -0.026124166324734688, + 0.038651030510663986, + 0.02043108269572258, + 0.019054485484957695, + 0.06395895779132843, + -0.0572880357503891, + 0.027739103883504868, + -0.006247933954000473, + 0.027918925508856773, + -0.07634081691503525, + 0.05443526431918144, + 0.03608476743102074, + -0.018035078421235085, + 0.0356685146689415, + 0.002739353571087122, + 0.013814212754368782, + 0.024157574400305748, + 0.010376457124948502, + 0.025919290259480476, + -0.020579924806952477, + 0.015723541378974915, + 0.02328462526202202, + 0.01861814223229885, + 0.049840766936540604, + 0.01043484453111887, + 0.0317879244685173, + 0.009716502390801907, + 0.004627872258424759, + -0.013840116560459137, + 0.02550201490521431, + -0.02001604251563549, + -0.012329449877142906, + 0.03572129085659981, + 0.010025883093476295, + 0.0024171581026166677, + -0.004749685991555452, + -0.008380381390452385, + -0.03222497180104256, + 0.02812061458826065, + -0.029976800084114075 + ], + "start_index": 0, + "end_index": 5410, + "token_count": 868, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "1740c19f-1f70-5ab8-be73-f006c70fca3a", + "_source": { + "text": "\n\n---\n\n## SECCIÓN II: Gestión de Entrada y Salida (I/O)\n\nEsta sección describe los mecanismos que AVAP utiliza para la ingesta de datos externos, la validación de la integridad de los parámetros y la construcción del paquete de respuesta HTTP. AVAP no posee comandos de impresión interna (como `print`); toda salida de datos se realiza a través de la interfaz HTTP.\n\n### 2.1 Captura Inteligente de Parámetros (addParam)\nEl comando `addParam(parametro, destino)` inspecciona la petición HTTP en un orden jerárquico estricto: primero en la URL (Query arguments), luego en el JSON Body, y finalmente en el Form Data. Si el parámetro solicitado no existe, la variable de destino se inicializa como `None`.\n\n### 2.2 Validación y Colecciones (getListLen / getQueryParamList)\n* **`getListLen(fuente, destino)`**: Actúa como un inspector de volumen. Cuenta cuántos elementos hay en una lista o cadena.\n* **`getQueryParamList(parametro, lista_destino)`**: Empaqueta automáticamente múltiples ocurrencias de un parámetro de URL (ej. `?filtro=A&filtro=B`) en una única estructura de lista.\n\n### 2.3 Construcción de Respuesta (addResult y _status)\nEl comando `addResult(variable)` es el encargado de registrar qué variables formarán parte del cuerpo JSON de la respuesta final. La variable de sistema `_status` permite definir explícitamente el código HTTP de salida tanto mediante asignación directa (`_status = 404`) como mediante `addVar(_status, 401)`.\n\n### Especificación BNF (Sección II)\n\n\n\n ::= | | | \n ::= \"addParam(\" \",\" \")\"\n ::= \"getListLen(\" \",\" \")\"\n ::= \"getQueryParamList(\" \",\" \")\"\n ::= \"addResult(\" \")\"", + "embedding": [ + 0.004801496863365173, + -0.0032653617672622204, + -0.009539708495140076, + -0.12351618707180023, + 0.008963553234934807, + -0.004612813238054514, + 0.0031959342304617167, + 0.024147728458046913, + -0.04500521719455719, + -0.06062675639986992, + -0.02347956970334053, + -0.012312520295381546, + -0.0555158331990242, + -0.00881813745945692, + -0.03341950103640556, + 0.059465501457452774, + -0.03282632678747177, + -0.02569803223013878, + -0.016211263835430145, + 0.014631448313593864, + -0.04128047823905945, + 0.019685741513967514, + -0.007373770233243704, + 0.04050184786319733, + -0.007592746056616306, + -0.05130186304450035, + 0.043520487844944, + 0.032373834401369095, + -0.04691243916749954, + 0.005531138274818659, + 0.06443421542644501, + 0.010363549925386906, + -0.0760049819946289, + -0.014892269857227802, + -0.06510709971189499, + -0.011526986956596375, + 0.01317504234611988, + -0.043329671025276184, + 0.014800489880144596, + -0.00412090914323926, + 0.015062294900417328, + 0.007282809820026159, + 0.09663048386573792, + 0.051824864000082016, + 0.006330646108835936, + -0.062299542129039764, + 0.030848456546664238, + -0.015538469888269901, + -0.037527672946453094, + 0.007465049624443054, + -0.014138875529170036, + -0.018433794379234314, + -0.002715138252824545, + -0.061770472675561905, + -0.04683365672826767, + 0.047542933374643326, + 0.02322418801486492, + -0.011890186928212643, + -0.02157948538661003, + 0.019546043127775192, + -0.03887730836868286, + -0.046656668186187744, + -0.019576899707317352, + -0.08395364135503769, + 0.013258683495223522, + -0.00811255257576704, + 0.007500900886952877, + 0.027313044294714928, + -0.06298401206731796, + -0.016418511047959328, + -0.002111314097419381, + -0.0748739093542099, + -0.013363638892769814, + 0.05475310608744621, + 0.025874733924865723, + 0.0191335529088974, + 0.008613650687038898, + 0.06785980612039566, + 0.02561183087527752, + 0.04785771295428276, + -0.022272424772381783, + 0.06671211123466492, + 0.016472170129418373, + 0.03961050137877464, + 0.021869534626603127, + 0.06602189689874649, + -0.07852417975664139, + -0.06106209754943848, + -0.03617752343416214, + -0.02260938286781311, + 0.034429147839546204, + -0.014854093082249165, + -0.04824297875165939, + 0.03494911640882492, + 0.03129362687468529, + 0.004307996015995741, + -0.02329675294458866, + 0.014556140638887882, + -0.010319552384316921, + -0.01558716781437397, + 0.001032668282277882, + 0.021285444498062134, + 0.001803968334570527, + 0.009330656379461288, + 0.006223070900887251, + 0.013542830012738705, + -0.06048636510968208, + 0.010544094257056713, + 0.006250337231904268, + -0.034100860357284546, + 0.002212272025644779, + -0.01449047215282917, + 0.0452568382024765, + 0.05781682953238487, + 0.008683492429554462, + -0.017931818962097168, + 0.00672852573916316, + 0.0009038911666721106, + 0.009487173520028591, + -0.018589919432997704, + 0.009741592220962048, + -0.01863616146147251, + 0.02889821119606495, + -0.011260961182415485, + 0.010985495522618294, + -0.011578764766454697, + -0.020691877231001854, + 0.019594697281718254, + 0.010647148825228214, + -0.013536643236875534, + 0.022886153310537338, + -0.02002907730638981, + -0.01363837718963623, + -0.007694485131651163, + 0.01840001530945301, + -0.0053076473996043205, + 0.04976881667971611, + -0.02031709812581539, + 0.00834558717906475, + -0.00674486393108964, + 0.008899493142962456, + -0.0327581949532032, + -0.01317112147808075, + -0.026900533586740494, + 0.02477814257144928, + 0.04076587036252022, + -0.023936506360769272, + 0.03184182941913605, + -0.007879643701016903, + -0.0305444598197937, + 0.05064409226179123, + -0.0005332067958079278, + -0.08452027291059494, + -0.026143329218029976, + -0.004728920292109251, + -0.010733130387961864, + -0.010539752431213856, + -0.020649567246437073, + -0.015542160719633102, + 0.029784033074975014, + 0.015948176383972168, + -0.007760297507047653, + -0.004146918188780546, + -0.05172380059957504, + -0.020642098039388657, + 0.00433347886428237, + 0.004509442951530218, + -0.019721830263733864, + -0.03376000374555588, + 0.023304615169763565, + 0.02465054951608181, + 0.02170189470052719, + -0.020688582211732864, + -0.01864432729780674, + -0.0095234215259552, + -0.04227489233016968, + -0.022504722699522972, + -0.009781296364963055, + 0.02105773612856865, + -0.025128943845629692, + 0.016433900222182274, + -0.011324158869683743, + 0.03251773491501808, + 0.030230512842535973, + 0.020831424742937088, + 0.08305373787879944, + -0.012830046936869621, + 0.02265593409538269, + -0.04141012206673622, + -0.020335620269179344, + -0.0009470971417613328, + -0.02403796836733818, + -0.035921260714530945, + -0.016574328765273094, + -0.0114799365401268, + -0.019462112337350845, + -0.012072153389453888, + 0.013761158101260662, + 0.023673715069890022, + 0.0060540237464010715, + 0.02482512593269348, + 0.002680832287296653, + 0.012741316109895706, + 0.018002238124608994, + -0.017924824729561806, + -0.032944824546575546, + -0.007630272302776575, + -0.009615215472877026, + -0.023513587191700935, + 0.022963130846619606, + -0.026883089914917946, + -0.02136852964758873, + 0.02933451719582081, + -0.03858580440282822, + 0.007916156202554703, + -0.011249804869294167, + 0.01720188744366169, + 0.016497749835252762, + 0.01319257915019989, + 0.03720016032457352, + 0.005611146800220013, + 0.008893578313291073, + -0.04684147611260414, + -0.007378231268376112, + 0.013771629892289639, + -0.010432912968099117, + 0.013838078826665878, + 0.025571735575795174, + -0.028467915952205658, + -0.012508386746048927, + -0.0473494827747345, + 0.0002559396671131253, + 0.06790566444396973, + -0.001535259303636849, + 0.001442840090021491, + 0.017259884625673294, + 0.00016966700786724687, + 0.002503981115296483, + 0.022506220266222954, + 0.013178527355194092, + 0.012728758156299591, + -0.020090095698833466, + 0.004586320836097002, + -0.01662290096282959, + 0.0050430381670594215, + 0.0059431204572319984, + -0.006580833345651627, + -0.025538397952914238, + -0.032579440623521805, + -0.04229404032230377, + 0.004761931952089071, + 0.012462739832699299, + -0.0032617682591080666, + 0.006125365849584341, + 0.010965961962938309, + -0.024142412468791008, + -0.0034844258334487677, + -0.026903394609689713, + 0.027687378227710724, + 0.0349418930709362, + 0.04410760849714279, + -0.03050214797258377, + 0.06792780756950378, + 0.02307559736073017, + 0.0024725506082177162, + 0.025994395837187767, + 0.009528344497084618, + -0.03327393904328346, + -0.017049318179488182, + -0.0014979720581322908, + 0.06516238301992416, + 0.022445591166615486, + 0.034100621938705444, + -0.026539333164691925, + 0.0191882885992527, + -0.0006670487928204238, + -0.0296647772192955, + -0.06904533505439758, + 0.02858038619160652, + -0.05554741993546486, + -0.01718064770102501, + -0.013978873379528522, + -0.0419950857758522, + -5.039647476223763e-06, + -0.024046001955866814, + 0.0489821620285511, + 0.02070748805999756, + -0.01333099789917469, + 0.02915865369141102, + -0.016957521438598633, + 0.04024060443043709, + -0.04544420912861824, + 0.01707099936902523, + 0.07537437975406647, + -0.026443008333444595, + -0.04048885777592659, + 0.024878710508346558, + -0.02546626701951027, + 0.026620332151651382, + -0.03177688643336296, + 0.028348898515105247, + 0.024256238713860512, + -0.022129233926534653, + 0.01466967910528183, + -0.004440849646925926, + -0.017252489924430847, + 0.015696236863732338, + -0.03049280121922493, + 0.0014632206875830889, + -0.006617050617933273, + 0.03221781551837921, + -0.039482973515987396, + -0.012425126507878304, + 0.03282288834452629, + -0.013116918504238129, + 0.013799375854432583, + 0.017451122403144836, + -0.005267605185508728, + 0.0542101226747036, + -0.03690844029188156, + -0.037183795124292374, + -0.046789538115262985, + -0.024770094081759453, + -0.04164281114935875, + -0.013929693028330803, + -0.02071436122059822, + 0.018318699672818184, + 0.008017001673579216, + -0.018405567854642868, + -0.003864381229504943, + 0.06766532361507416, + 0.08163474500179291, + -0.0018255108734592795, + -0.005037997849285603, + 0.04605366662144661, + -0.01195258554071188, + 0.06733284890651703, + 0.007851536385715008, + -0.001444586319848895, + -0.06347454339265823, + -0.02628338150680065, + 0.01855916902422905, + -0.0065993620082736015, + 0.03905762732028961, + -0.023137910291552544, + 0.007339783012866974, + -0.003734410973265767, + 0.00827227346599102, + 0.012985050678253174, + -0.034145623445510864, + 0.013768537901341915, + 0.0251876562833786, + 0.025504067540168762, + 0.03363480791449547, + 0.004356609657406807, + 0.020418474450707436, + 0.014929652214050293, + 0.05615686997771263, + -0.02484533004462719, + 0.00044072646414861083, + 0.0007250962080433965, + 0.04593067616224289, + 0.019570866599678993, + 0.021031221374869347, + -0.051684681326150894, + 0.027907023206353188, + -0.042533598840236664, + -0.04118373990058899, + 0.05290713906288147, + -0.04180863872170448, + -0.05453686788678169, + -0.01932758092880249, + 0.04575753211975098, + 0.04515976831316948, + 0.038508862257003784, + 0.007846263237297535, + 0.0186849944293499, + -0.03142304718494415, + -0.03180050477385521, + 0.051823247224092484, + 0.023846976459026337, + -0.0078711723908782, + -0.002157328650355339, + -0.027004843577742577, + -0.029193392023444176, + -0.029762279242277145, + 0.004970335401594639, + -0.06305859982967377, + 0.014831660315394402, + 0.07168622314929962, + 0.025059228762984276, + 0.024791806936264038, + 0.005399208515882492, + 0.022445859387516975, + -0.011506972834467888, + 0.017355604097247124, + -0.06817584484815598, + 0.03203258663415909, + -0.035074297338724136, + 0.0028587181586772203, + 0.03591489419341087, + -0.030840003862977028, + -0.09087228775024414, + 0.06937462836503983, + 0.0664457455277443, + 0.04765663668513298, + 0.037679556757211685, + 0.00831387285143137, + -0.00289191585034132, + 0.004796147812157869, + 0.05673633888363838, + 0.042037483304739, + 0.00464810524135828, + -0.006879960186779499, + -0.0005565168685279787, + -0.02879103645682335, + 0.04619768634438515, + -0.039074189960956573, + -0.03377167880535126, + 0.01995960995554924, + -0.03152388334274292, + 0.03203428164124489, + -0.016832703724503517, + -0.05065460130572319, + 0.008186054416000843, + 0.04260332137346268, + -0.024257201701402664, + -0.041799161583185196, + 0.009332994930446148, + -0.003883653786033392, + -0.02478475496172905, + 0.036772288382053375, + -0.004524897783994675, + -0.00385129707865417, + -0.0798252671957016, + 0.026427803561091423, + 0.022339869290590286, + 0.013301461935043335, + 0.035697098821401596, + 0.002599621657282114, + 0.015269971452653408, + -0.010003083385527134, + 0.015007589012384415, + -0.013773144222795963, + -0.062276870012283325, + -0.002423518104478717, + 0.019726432859897614, + 0.04633139446377754, + -0.06391894817352295, + -0.01624411903321743, + -0.0371890589594841, + -0.023435216397047043, + 0.007839350961148739, + 0.08927572518587112, + 0.036536190658807755, + -0.04248667135834694, + -0.0032119485549628735, + -0.06338026374578476, + -0.023475531488656998, + 0.02740458957850933, + 0.07576030492782593, + 0.0467885322868824, + -0.05402253195643425, + 0.007951892912387848, + -0.0699358880519867, + -0.007121131755411625, + 0.012528804130852222, + -0.0005760328494943678, + 0.058414164930582047, + -0.020104197785258293, + 0.061993591487407684, + -0.0064525180496275425, + -0.018605981022119522, + -0.0002770901483017951, + -0.005405401811003685, + -0.05275840312242508, + -0.06362181901931763, + 0.02322976663708687, + -0.05209775269031525, + 0.03953607380390167, + 0.006952023599296808, + -0.030046097934246063, + -0.0032295463606715202, + -0.005596802569925785, + 0.1104540005326271, + 0.02264685370028019, + -0.010038167238235474, + -0.04330113157629967, + -0.025569021701812744, + 0.04683968797326088, + -0.009565561078488827, + 0.014327446930110455, + 0.040141165256500244, + -0.03823905810713768, + 0.0448298305273056, + -0.03393804281949997, + 0.02701651118695736, + -0.03519797697663307, + -0.045513004064559937, + 0.08579637110233307, + 0.010186019353568554, + -0.004076371900737286, + 0.020169369876384735, + 0.03568208962678909, + -0.00581769086420536, + -0.05772802606225014, + 0.025470105931162834, + -0.036774978041648865, + 0.030819671228528023, + 0.030436618253588676, + -0.0007197352242656052, + -0.04142517223954201, + -0.02313288114964962, + -0.00023125653387978673, + -0.048691365867853165, + -0.004869048483669758, + 0.021129943430423737, + -0.0023041791282594204, + -0.035412292927503586, + -0.022437378764152527, + -0.01125338301062584, + 0.013353192247450352, + 0.012019462883472443, + -0.04480952024459839, + -0.04238533973693848, + -0.01401639822870493, + 0.028408866375684738, + 0.03282928839325905, + 0.027559729292988777, + 0.045361101627349854, + 0.03359154611825943, + 0.014151930809020996, + -0.027814676985144615, + -0.06070340424776077, + -0.021238358691334724, + -0.014581491239368916, + -0.01806187629699707, + 0.01359073631465435, + -0.020647529512643814, + 0.00823511928319931, + 0.0347859151661396, + 0.012359491549432278, + -0.052834607660770416, + 0.009715848602354527, + 0.006795803084969521, + -0.03947560489177704, + -0.00442203925922513, + 0.03400725498795509, + -0.007774269208312035, + 0.026406332850456238, + 0.08564729243516922, + -0.011717814952135086, + 0.0705568715929985, + -0.017169412225484848, + 0.027224691584706306, + -0.033216219395399094, + 0.010590859688818455, + 0.005814768373966217, + -0.004239839967340231, + 0.0020395026076585054, + -0.02106389030814171, + 0.031176606193184853, + 0.011529597453773022, + 0.024492330849170685, + 0.022210268303751945, + -0.009925207123160362, + -0.0328650176525116, + 0.051617082208395004, + -0.008206783793866634, + 0.029118167236447334, + 0.048643358051776886, + -0.030158773064613342, + -0.008133872412145138, + 0.0030185901559889317, + 0.0045896354131400585, + -0.02817375399172306, + 0.034479234367609024, + -0.010932999663054943, + -0.006108803208917379, + -0.03376796469092369, + 0.009645561687648296, + 0.02780298702418804, + -0.04401663318276405, + 0.04330216720700264, + 0.007110412232577801, + 0.010782596655189991, + 0.004511251579970121, + -0.02288142964243889, + -0.011001551523804665, + -0.03867466747760773, + -0.02631029672920704, + -0.03738294541835785, + 0.006859258282929659, + -0.03256068378686905, + 0.010168803855776787, + -0.008842833340168, + -0.032248593866825104, + 0.0013064397498965263, + -0.004993716720491648, + -0.005530721042305231, + 0.05570000410079956, + 0.017114553600549698, + -0.03523769602179527, + -0.015922797843813896, + -0.04996713995933533, + 8.739052645978518e-06, + -0.020996538922190666, + 0.02568708173930645, + -0.043381549417972565, + -0.022231342270970345, + -0.05960627272725105, + 0.01139927189797163, + -0.017183618620038033, + 0.021671639755368233, + 0.02328278310596943, + -0.00689427787438035, + -0.03361808508634567, + 0.011389335617423058, + 0.04874519631266594, + -0.01688406616449356, + -0.02550482004880905, + 0.0014638191787526011, + -0.005873881746083498, + 0.05577977001667023, + -0.014248101972043514, + 0.019513584673404694, + -0.023304497823119164, + -0.006439185235649347, + -0.01639588363468647, + -0.03158291429281235, + -0.05514109879732132, + -0.002626028610393405, + -0.02849428728222847, + -0.013263474218547344, + -0.023209314793348312, + -0.02220756933093071, + -0.005100383888930082, + -0.0042305621318519115, + 0.015491335652768612, + -0.028009064495563507, + 0.04811358451843262, + -0.01399312075227499, + 0.017550738528370857, + 0.006430266425013542, + 0.012385752983391285, + 0.009106133133172989, + -0.03406478464603424, + -0.005892288871109486, + 0.036092862486839294, + -0.007638686802238226, + 0.06775378435850143, + 0.027179814875125885, + 0.024479249492287636, + -0.018865544348955154, + -0.044242292642593384, + 0.022250492125749588, + -0.0076585803180933, + 0.038819439709186554, + 0.02967888116836548, + 0.007448930758982897, + 0.00724612595513463, + -0.003874292364344001, + 0.004977462813258171, + -0.049531009048223495, + -0.03742868825793266, + 0.01935225911438465, + 0.04517229646444321, + -0.0038400418125092983, + 0.02198096737265587, + 0.00956730917096138, + 0.0075758276507258415, + -0.07377810031175613, + -0.0015806459123268723, + -0.018517134711146355, + 0.045082878321409225, + -0.010361950844526291, + 0.01415092870593071, + -0.042598266154527664, + -0.04702819138765335, + -0.005415993742644787, + -0.03159990906715393, + -0.03877275437116623, + 0.039905108511447906, + -0.018551474437117577, + -0.0032986446749418974, + -0.07639634609222412, + -0.011537360027432442, + 0.007556098513305187, + 0.05526798218488693, + 0.012048627249896526, + -0.016636095941066742, + 0.0068684653379023075, + 0.03212767839431763, + -0.0019021916668862104, + -0.00357382302172482, + 8.708619134267792e-05, + -0.011939234100282192, + 0.023346230387687683, + 0.060326118022203445, + 0.028435930609703064, + 0.033733513206243515, + 0.03183968365192413, + -0.016559118404984474, + -0.005852682515978813, + -0.017774196341633797, + -0.01413589809089899, + -0.02207408845424652, + 0.030988020822405815, + -0.06401603668928146, + -0.020770708099007607, + 0.02657661773264408, + -0.05368169769644737, + -0.0852377638220787, + -0.047290004789829254, + 0.01240690890699625, + 0.009384012781083584, + -0.053407080471515656, + -0.019717305898666382, + -0.013301311992108822, + -0.03338241204619408, + 0.007837911136448383, + -0.06599096208810806, + 0.03539399057626724, + -0.006147086154669523, + -0.01767752319574356, + -0.01435053814202547, + 0.0188029482960701, + 0.049872756004333496, + 0.01542825810611248, + 0.0065437494777143, + 0.028402196243405342, + 0.013367900624871254, + 0.027543246746063232, + -0.047651782631874084, + 0.02452988550066948, + -0.011531313881278038, + 0.06509704142808914, + -0.026729390025138855, + -0.009732377715408802, + 0.02034582756459713, + 0.02527466043829918, + 0.013279417529702187, + 0.001618437236174941, + -0.02019764669239521, + -0.04028024896979332, + -0.03906356915831566, + 0.027720941230654716, + -0.014464565552771091, + 0.0271298885345459, + -0.008777900598943233, + -0.03747306391596794, + 0.03456473350524902, + -0.030533531680703163, + 0.0009889022912830114, + 0.0014437194913625717, + 0.027265531942248344, + 0.028882518410682678, + 0.02743246778845787, + -0.0067527941428124905, + -0.009971806779503822, + -0.007667636964470148, + -0.034090280532836914, + -0.02396058663725853, + -0.034799475222826004, + 0.010488555766642094, + 0.00695014325901866, + 0.010878604836761951, + -0.027303704991936684, + -0.049789220094680786, + -0.0008468186715617776, + 0.026876697316765785, + -0.03525301069021225, + 0.0058440654538571835, + -0.019254546612501144, + 0.02255580946803093, + -0.020841272547841072, + 0.0008972850046120584, + -0.015265539288520813, + -0.02310565859079361, + 0.034379784017801285, + -0.027652453631162643, + -0.05951244384050369, + 0.03074011020362377, + 0.019771771505475044, + -0.006291956175118685, + 0.015003318898379803, + 0.019581954926252365, + 0.006868821103125811, + 0.0027711919974535704, + 0.04252365231513977, + -0.015930840745568275, + -0.03309474140405655, + 0.056127533316612244, + -0.0210422296077013, + -0.017061443999409676, + 0.02301042713224888, + -0.015302710235118866, + 0.024517666548490524, + -0.0032195330131798983, + -0.054159581661224365, + -0.021992173045873642, + 0.01467056293040514, + -0.021683279424905777, + -0.014780588448047638, + 0.04123266413807869, + -0.03393762931227684, + 0.01952938921749592, + 0.013539922423660755, + -0.008582510985434055, + 0.02547728829085827, + -0.03352658823132515, + -0.02855968102812767, + -0.029975149780511856, + -0.005893484223634005, + 0.019863316789269447, + 0.01872946135699749, + -0.036577921360731125, + 0.008960903622210026, + -0.01489198487251997, + -0.024023624137043953, + -0.039332065731287, + -0.016383826732635498, + -0.012989483773708344, + 0.009588874876499176, + -0.03633955493569374, + 0.008261838927865028, + 0.05537155643105507, + -0.007697794586420059, + 0.005216571968048811, + -0.009560326114296913, + -0.03199775516986847, + -0.00980567280203104, + 0.013273336924612522, + 0.019469227641820908, + 0.006234542932361364, + -0.024310410022735596, + -0.0406542643904686, + -0.0005901709664613008, + -0.047900766134262085, + -0.013188570737838745, + 0.010198237374424934, + 0.00015079820877872407, + -0.03897205740213394, + 0.02387385442852974, + 0.01492200419306755, + 0.054961808025836945, + 0.056341759860515594, + -0.005077929701656103, + 0.017742570489645004, + -0.03448155149817467, + 0.03731923922896385, + 0.017770657315850258, + -0.04261671379208565, + 0.018724268302321434, + -0.015812210738658905, + 0.028402229771018028, + 0.009102550335228443, + 0.00992443598806858, + -0.06866829097270966, + 0.026577258482575417, + -0.02680913172662258, + -0.0052750734612345695, + -0.036986835300922394, + -0.03642494976520538, + -0.03411557525396347, + 0.06658722460269928, + -0.04475387558341026, + 0.00711476244032383, + 0.014788558706641197, + -0.0022084310185164213, + 0.010816814377903938, + 0.04514840245246887, + 0.012569139711558819, + 0.031471703201532364, + -0.013880250044167042, + 0.02873540110886097, + -0.07116472721099854, + -0.007787840906530619, + 0.0033601990435272455, + -0.003905096324160695, + -0.007072002626955509, + -0.0032857193145900965, + 0.020414285361766815, + 0.008709232322871685, + -0.03830324485898018, + 0.025345103815197945, + 0.0026728117372840643, + 0.01138252206146717, + -0.0160661768168211, + -0.04446311667561531, + -0.012719436548650265, + 0.0026089074090123177, + -0.009470347315073013, + 0.04969797283411026, + -0.04984205216169357, + 0.05636851117014885, + 0.029853442683815956, + 0.030606111511588097, + -0.006004455033689737, + 0.014931564219295979, + 0.013065467588603497, + -0.04415860399603844, + 0.004344303626567125, + -0.027235422283411026, + -0.01742103323340416, + -0.03450462967157364, + 0.049702346324920654, + 0.004560018889605999, + 0.000435555208241567, + 0.011643962934613228, + -0.0510694794356823, + 0.005629175342619419, + 0.014338813722133636, + 0.025996744632720947, + 0.003705059178173542, + -0.04124085232615471, + -0.0016578809591010213, + 0.05250931903719902, + -0.018054310232400894, + -0.01581445150077343, + -0.03953729569911957, + -0.038547124713659286, + 0.0062913135625422, + 0.012072592042386532, + 0.0031603602692484856, + -0.003619595430791378, + 0.02108716033399105, + 0.04211174324154854, + 0.010377204976975918, + -0.001471984083764255, + -0.037289440631866455, + 0.034137193113565445, + 0.038368068635463715, + 0.020686374977231026, + 0.0261601060628891, + -0.04997320473194122, + 0.05504749342799187, + 0.025178896263241768, + -0.06745222210884094, + -0.021082166582345963, + -0.006076543126255274, + -0.00016302075528074056, + -0.03012154996395111, + 0.03279644995927811, + 0.01759786158800125, + -0.02553713694214821, + 0.026179825887084007, + 0.03781580924987793, + 0.017660915851593018, + 0.05446581915020943, + -0.003196162171661854, + 0.008343646302819252, + -0.04500644654035568, + -0.013518386520445347, + -0.015594981610774994, + -0.03800419718027115, + 0.002127639949321747, + 0.010059960186481476, + 0.040874183177948, + -0.020154565572738647, + 0.012518920935690403, + -0.01659413054585457, + -0.027066929265856743, + -0.005436150822788477, + 0.029990412294864655, + 0.005817033816128969, + 0.02575843594968319, + 0.027750249952077866, + 0.007276712451130152, + -0.0022112755104899406, + 0.0031624436378479004, + -0.0037621594965457916, + 0.01730840839445591, + 0.018591951578855515, + 0.0024581989273428917, + 0.006628897972404957, + -0.03168696165084839, + 0.015914108604192734, + -0.05135083571076393, + 0.0050222803838551044, + -0.07878657430410385, + -0.030374404042959213, + 0.015934141352772713, + 0.017549458891153336, + -0.027183467522263527, + 0.010131917893886566, + 0.03173064440488815, + 0.028753791004419327, + -0.025465162470936775, + -0.043933313339948654, + -0.004434102214872837, + 0.0274385754019022, + 0.004601029213517904, + -0.04502003267407417, + 0.04396509751677513, + 0.10126277804374695, + -0.02142978273332119, + 0.013507071882486343, + -0.01756295934319496, + 0.008795741014182568, + 0.0001952609745785594, + 0.003607142483815551, + 0.017568349838256836, + -0.015414088033139706, + 0.03622126951813698, + 0.019322825595736504, + 0.0076585509814321995, + 0.041368260979652405, + 0.004108464810997248, + 0.015431822277605534, + 0.0004869542608503252, + 0.0057873716577887535, + 0.0407755970954895, + -0.03274670988321304, + -0.017820358276367188, + -0.016568424180150032, + 0.028486832976341248, + 0.005879956763237715, + 0.011411097832024097, + -0.013122779317200184, + -0.03882993385195732, + -0.021339651197195053, + 0.014304094016551971, + -0.0416581854224205 + ], + "start_index": 5410, + "end_index": 7276, + "token_count": 394, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "ff73d119-51ee-5e7c-a3f1-73e96b698a8a", + "_source": { + "text": "\n\n---\n\n## SECCIÓN III: Lógica de Control y Estructuras de Decisión\n\nAVAP utiliza una gramática estructural mixta. Combina la fluidez de las palabras clave para abrir bloques funcionales con la seguridad matemática de cierres estrictos.\n\n### 3.1 El Bloque Condicional (if() / else() / end())\nLa estructura `if()` evalúa una expresión lógica o de comparación. Todo bloque condicional requiere un cierre explícito utilizando el comando `end()`.\n\nEl comando `if()` soporta dos modos de invocación:\n* **Modo 1 (comparación estructurada):** `if(variable, valor, comparador)` — evalúa la comparación entre variable y valor usando el operador indicado como string (ej. `\"==\"`, `\">\"`, `\"!=\"`). Los dos primeros argumentos deben ser identificadores simples o literales, nunca expresiones de acceso como `dict['clave']`. Si se necesita comparar un valor extraído de una estructura, debe asignarse primero a una variable.* **Modo 2 (expresión libre):** `if(None, None, \"expresion_compleja\")` — evalúa directamente una expresión booleana compleja proporcionada como string.\n\n### 3.2 Iteraciones Estrictas y Deterministas (startLoop / endLoop)\nPara garantizar el determinismo y evitar el colapso de memoria:\n* Los bucles se definen mediante `startLoop(contador, inicio, fin)`. Solo iteran basándose en índices numéricos finitos.\n* El bloque debe cerrarse obligatoriamente con `endLoop()`.\n* La forma de salir anticipadamente es invocando el comando global `return()`.\n\n### 3.3 Gestión de Errores en Tiempo de Ejecución (try() / exception() / end())\nDiseñada para proteger la estabilidad del servidor ante fallos de I/O.\n* Si ocurre un fallo del sistema dentro del bloque `try`, el flujo salta al bloque `exception(variable_error)`, poblando la variable con la traza para facilitar la recuperación del script.\n\n### Especificación BNF (Sección III)\n\n\n\n ::= | | \n\n ::= \"if(\" \")\" \n \n [ \"else()\" ]\n \"end()\" \n\n/* if() soporta dos modos:\n Modo 1 — comparación estructurada: los dos primeros argumentos deben ser\n identificadores simples o literales, nunca expresiones de acceso.\n Si se necesita comparar un valor extraído de una estructura (ej. dict['clave']),\n debe asignarse previamente a una variable.\n Modo 2 — expresión libre: None, None, expresión compleja como string */\n ::= \",\" \",\" \n | \"None\" \",\" \"None\" \",\" \n ::= | \n\n ::= \"startLoop(\" \",\" \",\" \")\" \n \n \"endLoop()\" \n\n ::= \"try()\" \n \n \"exception(\" \")\" \n \n \"end()\" \n\n ::= *", + "embedding": [ + 0.03768865019083023, + 0.009229199029505253, + -0.012591132894158363, + -0.10710641741752625, + 0.04478713870048523, + 0.0160862784832716, + -0.02224624715745449, + 0.021588707342743874, + -0.0019414463313296437, + -0.04507419466972351, + -0.0321904793381691, + -0.10349199175834656, + -0.003745978232473135, + -0.0109585952013731, + -0.03496703505516052, + 0.0754794180393219, + 0.00021061202278360724, + -0.023256154730916023, + -0.014783374965190887, + -0.00988565944135189, + -0.02788422629237175, + 0.024306921288371086, + -0.00013618965749628842, + 0.04755568876862526, + 0.001987533178180456, + -0.07729806751012802, + 0.0033733912277966738, + 0.043769873678684235, + -0.03472131863236427, + -0.02877461351454258, + -0.02515771985054016, + -0.015974504873156548, + -0.07255510985851288, + -0.014376032166182995, + -0.0650063157081604, + -0.015211408957839012, + 0.0033225123770534992, + -0.03207281976938248, + 0.06342192739248276, + -0.01813988946378231, + -0.06212513521313667, + 0.016426844522356987, + 0.04487594962120056, + 0.01978590153157711, + -0.018197443336248398, + -0.05913092941045761, + 0.03134601190686226, + -0.021266652271151543, + 0.037100519984960556, + 0.0023078538943082094, + -0.05017761141061783, + 0.05066102743148804, + 0.026415228843688965, + -0.01249800156801939, + -0.04556400701403618, + 0.06338482350111008, + -0.010860162787139416, + -0.06565472483634949, + -0.0014444109983742237, + 0.005160014145076275, + -0.0060656750574707985, + -0.03147157281637192, + -0.026136141270399094, + -0.08873162418603897, + 0.004788176156580448, + 0.026334630325436592, + 0.0031149147544056177, + -0.03567648306488991, + -0.03207223489880562, + -0.003115002065896988, + 0.012298181653022766, + 0.01387950498610735, + -0.006531440187245607, + 0.02462196536362171, + 0.017936477437615395, + -0.0052508944645524025, + 0.014106148853898048, + -0.02538204751908779, + -0.01011995691806078, + 0.035969097167253494, + -0.015518326312303543, + 0.05324443802237511, + -0.006084756925702095, + 0.01368468813598156, + -5.70480442547705e-05, + 0.016205299645662308, + -0.04024454578757286, + -0.026858240365982056, + -0.027787521481513977, + 0.03960752487182617, + 0.010401283390820026, + -0.0490996390581131, + -0.021726684644818306, + -0.03178229182958603, + 0.08758218586444855, + -0.00039677208405919373, + -0.02287251316010952, + 0.03058607131242752, + 0.019400890916585922, + -0.02690865285694599, + -0.024620717391371727, + -0.0189878698438406, + -0.004739286378026009, + -0.024980969727039337, + 0.05983692407608032, + 0.03491390123963356, + -0.030228959396481514, + 0.009227603673934937, + -0.026058025658130646, + -0.027764631435275078, + 0.02043701894581318, + 0.006305839400738478, + -0.0018840244738385081, + 0.038947757333517075, + -0.0003232150920666754, + 0.0006627644179388881, + -0.01935429684817791, + -0.019302688539028168, + 0.012810353189706802, + -0.023890746757388115, + 0.03633378818631172, + 0.015689924359321594, + 0.007859178818762302, + 0.01859532855451107, + 0.036972615867853165, + -0.01291140727698803, + -0.045746538788080215, + -0.0037226194981485605, + -0.0026980626862496138, + 0.011138699017465115, + -0.002286190167069435, + 0.0010205721482634544, + -0.010172420181334019, + 0.029392540454864502, + 0.006569961551576853, + 0.009933864697813988, + 0.014111663214862347, + -0.04105497896671295, + 0.017227772623300552, + -0.0004767222562804818, + -0.003965754061937332, + -0.03913073241710663, + -0.022438595071434975, + -0.009964854456484318, + -0.0007645878940820694, + 0.06163998320698738, + 0.008767169900238514, + -0.003622407792136073, + -0.013287895359098911, + 0.007202150300145149, + 0.010395577177405357, + -0.028664370998740196, + -0.065218985080719, + -0.013574358075857162, + -0.03967570886015892, + -0.015689792111516, + -0.003562990576028824, + -0.004522454459220171, + 0.009990825317800045, + 0.03380307927727699, + -0.0025352269876748323, + 0.010508392006158829, + -0.01909765973687172, + -0.04693552106618881, + 0.0035392260178923607, + 0.02950458787381649, + -0.0003849468193948269, + -0.03406577184796333, + -0.03813529759645462, + -0.002120983088389039, + 0.015807675197720528, + 0.024624403566122055, + 0.011422540061175823, + -0.02476077899336815, + 0.012059763073921204, + -0.023253533989191055, + -0.029510093852877617, + 0.026316625997424126, + 0.007094890810549259, + -0.013956088572740555, + 0.003280725097283721, + -0.02175278402864933, + 0.028119191527366638, + 0.01717289537191391, + 0.04429997503757477, + 0.05467178300023079, + -0.030199332162737846, + 0.01128570456057787, + -0.027509750798344612, + -0.03956078365445137, + 0.03809104859828949, + 9.105183562496677e-05, + 0.015089914202690125, + -0.02185848541557789, + -0.005581740755587816, + -0.028517289087176323, + 0.014595435932278633, + 0.007034662179648876, + 0.029612062498927116, + -0.009159792214632034, + 0.0359136126935482, + -0.03777974471449852, + -0.011052367277443409, + 0.025801610201597214, + -0.03149840980768204, + -0.055730924010276794, + 0.009368191473186016, + -0.009863960556685925, + -0.04164772853255272, + -0.015519504435360432, + -0.010706956498324871, + 0.006753366440534592, + 0.029878294095396996, + -0.01178398635238409, + -0.0027986399363726377, + -0.059376563876867294, + 0.03258053585886955, + 0.03290847688913345, + -0.007927020080387592, + 0.04891747236251831, + 0.018236029893159866, + 0.016864577308297157, + -0.008330482058227062, + 0.00038520884118042886, + 0.04056410491466522, + -0.005342118442058563, + 0.018434397876262665, + -0.017176197841763496, + -0.05369125306606293, + 0.013491804711520672, + -0.015688857063651085, + 0.02732892520725727, + 0.031650710850954056, + -0.0235599372535944, + 0.012997379526495934, + 0.017514389008283615, + 0.026763828471302986, + 0.0512029305100441, + 0.017157021909952164, + 0.008529332466423512, + -0.01746816188097, + -0.013463522307574749, + 0.0043422263115644455, + -0.01051418762654066, + -0.0021242040675133467, + 0.005785277578979731, + 0.010645612142980099, + -0.02267981879413128, + -0.04882696643471718, + 0.06383668631315231, + 0.05431745573878288, + 0.04065829515457153, + 0.023212559521198273, + 0.016847142949700356, + 0.013943889178335667, + -0.01090548187494278, + -0.018114233389496803, + -0.04023062065243721, + 0.027007747441530228, + 0.013258363120257854, + 0.027814770117402077, + -0.003459556959569454, + 0.04058670252561569, + 0.04059707373380661, + 0.008853311650454998, + 0.037159498780965805, + 0.02186575159430504, + -0.009494123980402946, + -0.02815684862434864, + -0.027179516851902008, + 0.08592778444290161, + 0.0082668736577034, + 0.0011574517702683806, + 0.0017743298085406423, + 0.007360601797699928, + -0.0008045693975873291, + 0.003252786584198475, + -0.07425353676080704, + 0.03132914751768112, + 0.014783828519284725, + -0.008748162537813187, + -0.041263531893491745, + -0.0078158900141716, + -0.015725793316960335, + 0.0012775810901075602, + 0.04815853387117386, + 0.028538698330521584, + -0.004154032561928034, + 0.0026997504755854607, + -0.0073398700915277, + -0.015992296859622, + 0.037105951458215714, + -0.024131881073117256, + 0.02681482397019863, + -0.030634205788373947, + -0.018041228875517845, + -0.021905390545725822, + 0.021511917933821678, + 0.013054626993834972, + 0.037300534546375275, + 0.02505233697593212, + 0.0018815475050359964, + -0.013710293918848038, + -0.03238639980554581, + -0.05553002282977104, + 0.006753051187843084, + 0.040134306997060776, + 0.010290674865245819, + 0.014719659462571144, + 0.062450166791677475, + 0.0185577142983675, + 0.018319273367524147, + -0.010375922545790672, + -0.017636796459555626, + 0.0460001640021801, + -0.029779020696878433, + 0.04501288756728172, + 0.00770205445587635, + 0.0097409812733531, + -0.026025092229247093, + 0.04170452058315277, + -0.012631758116185665, + 0.025381142273545265, + 0.008620291948318481, + 0.02310853824019432, + -0.005700016859918833, + 0.013065953738987446, + 0.04155616834759712, + 0.05442434549331665, + -0.01204247772693634, + 0.06584382057189941, + 0.026843879371881485, + 0.04785000905394554, + -0.004436963703483343, + 0.03211582824587822, + 0.015156000852584839, + -0.035238105803728104, + 0.05514787137508392, + 0.012617388740181923, + -0.013572034426033497, + -0.008911972865462303, + -0.03862980380654335, + -0.027415527030825615, + 0.029532792046666145, + -0.048232898116111755, + -0.010983297601342201, + 0.002003879752010107, + 0.0443713404238224, + 0.02406797930598259, + 0.004927433095872402, + 0.03081517107784748, + 0.013377388939261436, + 0.009053779765963554, + 0.02072184532880783, + 0.02947446145117283, + -0.05230867117643356, + -0.004922604188323021, + 0.05980577692389488, + -0.03514629602432251, + -0.02119293063879013, + -0.03224503621459007, + 0.048326943069696426, + 0.006708059925585985, + 0.02268451452255249, + 0.002624406712129712, + -0.028928617015480995, + -0.06159738078713417, + -0.04773925989866257, + 0.07311654835939407, + -0.05212607979774475, + -0.1147644966840744, + -0.017076725140213966, + -0.03725653886795044, + 0.029716506600379944, + -0.00529140792787075, + -0.030166663229465485, + 0.05130702629685402, + 0.01854446530342102, + 0.008839234709739685, + 0.016338029876351357, + 0.008484580554068089, + 0.023091986775398254, + -0.018232813104987144, + 0.006525109522044659, + -0.04026476666331291, + -0.03981678932905197, + 0.016331998631358147, + 0.00659234169870615, + -0.0008331369608640671, + 0.04011984169483185, + -0.001220708480104804, + -0.026293378323316574, + 0.011758681386709213, + 0.05934165045619011, + -0.014767685905098915, + 0.0401945523917675, + -0.0492725633084774, + 0.025257563218474388, + -0.03703730180859566, + -0.012873233295977116, + 0.04699268192052841, + 0.0062065040692687035, + -0.04047041013836861, + 0.02136341482400894, + 0.031568776816129684, + 0.028987430036067963, + -0.029825113713741302, + -0.005865268874913454, + -0.039915915578603745, + -0.0032991375774145126, + 0.04180634021759033, + 0.01564241573214531, + -0.02333376742899418, + -0.0015300029190257192, + 0.011582623235881329, + -0.0029926281422376633, + 0.026639267802238464, + -0.028975723311305046, + -0.05570482835173607, + 0.03176041692495346, + -0.026093490421772003, + 0.06829305738210678, + -0.03065173327922821, + -0.023388845846056938, + 0.050190266221761703, + -0.0006432401714846492, + -0.0050690509378910065, + -0.044441524893045425, + 0.014927945099771023, + 0.002043192507699132, + -0.05000462383031845, + 0.044953178614377975, + 1.974708902707789e-05, + 0.03987577557563782, + -0.057737287133932114, + 0.023092210292816162, + 0.05299266800284386, + 0.017759734764695168, + 0.025527531281113625, + -0.003686702810227871, + 0.019918305799365044, + -0.03474774956703186, + -0.014903445728123188, + 0.011520948261022568, + -0.009817042388021946, + 0.023123545572161674, + -0.00839141197502613, + 0.012686478905379772, + -0.04114808887243271, + -0.055285125970840454, + -0.027811139822006226, + -0.004013506695628166, + 0.007867490872740746, + 0.03091401979327202, + 0.014592351391911507, + -0.034847408533096313, + 0.013405109755694866, + -0.08753713220357895, + 0.017120664939284325, + 0.021118128672242165, + 0.018586574122309685, + 0.008011635392904282, + 0.011614914052188396, + -0.06797223538160324, + -0.0035096853971481323, + 0.016362041234970093, + -0.008830166421830654, + 0.023664934560656548, + 0.03253617510199547, + -0.023198319599032402, + 0.06636668741703033, + -0.029852567240595818, + -0.05793357267975807, + 0.02990867756307125, + -0.008595895953476429, + -0.02401457168161869, + -0.013184629380702972, + 0.011149732396006584, + -0.0455109179019928, + -0.0004159506061114371, + 0.003234774572774768, + -0.007822129875421524, + -0.003893596585839987, + -0.07435107976198196, + 0.03212735056877136, + 0.019466858357191086, + 0.061205241829156876, + 0.004532523453235626, + -0.02994448132812977, + 0.015241569839417934, + 0.03928930684924126, + 0.005832811817526817, + 0.03884902223944664, + -0.015996379777789116, + 0.037960149347782135, + 0.014081988483667374, + 0.02820603735744953, + 0.0033220467157661915, + -0.08893585950136185, + 0.050817087292671204, + 0.07864941656589508, + 0.020388584583997726, + -0.001356186461634934, + 0.012389629147946835, + 0.00483992462977767, + -0.03922805190086365, + -0.004287694115191698, + -0.014268462546169758, + 0.049544766545295715, + 0.013847107999026775, + 0.009014097042381763, + -0.017651865258812904, + -0.005935906898230314, + 0.009595445357263088, + -0.018935473635792732, + -0.01796940714120865, + 0.029532741755247116, + 0.019977033138275146, + 0.0020986238960176706, + 0.025274382904171944, + -0.04465240240097046, + 0.042540114372968674, + 0.040815502405166626, + 0.006195261608809233, + -0.035693712532520294, + 0.025112729519605637, + 0.0444134958088398, + 0.04763622209429741, + 0.013990349136292934, + -0.012529061175882816, + -0.000180469112819992, + -0.0324864499270916, + 0.03275638446211815, + -0.02697068452835083, + -0.061762258410453796, + 0.002644066233187914, + 0.006363804917782545, + 0.020171022042632103, + 0.011228393763303757, + 0.025130564346909523, + 0.006627810653299093, + -0.0071380347944796085, + -0.006559515371918678, + 0.043865106999874115, + 0.007791710086166859, + 0.0009468051721341908, + -0.012631370685994625, + 0.04212295264005661, + 0.014597286470234394, + 0.01310859713703394, + 0.04593272879719734, + -0.024597037583589554, + 0.018465090543031693, + -0.015148093923926353, + -0.01641952618956566, + 0.012320359237492085, + 0.0025747816544026136, + -0.007289595901966095, + 0.0030239673797041178, + -0.019340425729751587, + 0.02102016471326351, + -0.002775050699710846, + 0.03471963480114937, + 0.00014969496987760067, + 0.03927743434906006, + 0.01889292150735855, + -0.008237012661993504, + 0.04199308902025223, + 0.017239023000001907, + 0.01651785336434841, + 0.023135041818022728, + 0.024030499160289764, + -0.01322841364890337, + 0.030319571495056152, + 0.014696606434881687, + -0.046281635761260986, + -0.012427723966538906, + 0.044632360339164734, + -0.005220271181315184, + 0.016727358102798462, + 0.02103326842188835, + 0.015287940390408039, + 0.02267454005777836, + 0.06066298112273216, + 0.0013596577337011695, + -0.014109225943684578, + 0.020515959709882736, + -0.05625172704458237, + 0.02579440549015999, + -0.020963948220014572, + -0.0289052352309227, + -0.039004478603601456, + 0.02147902362048626, + 0.008057293482124805, + 0.052461110055446625, + 0.025151384994387627, + -0.010291991755366325, + -0.005150066688656807, + -0.04258524626493454, + -0.003756730817258358, + -0.008755977265536785, + 0.02382155880331993, + -0.016119470819830894, + 0.03520999476313591, + -0.04357374459505081, + -0.012541672214865685, + -0.040938880294561386, + 0.010980481281876564, + -0.01603725366294384, + -0.005264943465590477, + -0.03242674469947815, + 0.02324271947145462, + 0.04347660392522812, + 0.01859871856868267, + 0.008888037875294685, + -0.035571902990341187, + -0.038954488933086395, + -0.026693375781178474, + 0.05232125520706177, + -0.024340936914086342, + -0.01732698641717434, + 0.015868641436100006, + -0.024946672841906548, + 0.0601588636636734, + -0.007099612150341272, + -0.012159458361566067, + 0.05144983530044556, + -0.026575719937682152, + -0.018668904900550842, + -0.009561181999742985, + -0.06106070429086685, + 0.014481897465884686, + -0.01666390895843506, + 0.012754709459841251, + -0.022068805992603302, + -0.05772199109196663, + -0.01588401570916176, + -0.029962582513689995, + -0.018376192077994347, + -0.031273506581783295, + 0.014119151048362255, + 0.009432674385607243, + 0.0007162497495301068, + 0.025761405006051064, + 0.03201327472925186, + -0.00791801605373621, + -0.07543039321899414, + -0.0012924873735755682, + 0.011806082911789417, + -0.016254279762506485, + 0.04418997839093208, + 0.01781153306365013, + -0.012571295723319054, + 0.005154802463948727, + -0.09079508483409882, + 0.014888356439769268, + 0.057044558227062225, + 0.004639594815671444, + 0.03165633603930473, + -0.04262658953666687, + -0.0032541619148105383, + -0.05759043246507645, + -0.020111707970499992, + 0.028876209631562233, + -0.0051813749596476555, + 0.02423548884689808, + 0.03738738223910332, + 0.053497470915317535, + 0.027225734665989876, + 0.010613969527184963, + 0.022620851173996925, + -0.08231322467327118, + -0.01968199945986271, + 0.0802915170788765, + 0.011778824962675571, + -0.036290597170591354, + 0.020647643133997917, + -0.012007230892777443, + 0.009605459868907928, + -0.03203365206718445, + -0.03584861010313034, + -0.007378147449344397, + 0.07764308154582977, + -0.04883558303117752, + 0.043098755180835724, + -0.040325019508600235, + -0.052128057926893234, + -0.014965816400945187, + 0.017613034695386887, + -0.0010993886971846223, + -0.028988700360059738, + -0.00028361150179989636, + 0.017653947696089745, + -0.04913852736353874, + -0.026035763323307037, + -0.023828251287341118, + -0.005577458068728447, + 0.007176999468356371, + -0.000509105680976063, + -0.006571886595338583, + 0.038254041224718094, + 0.0011319431941956282, + -0.02748686447739601, + -0.0015241565415635705, + 0.016780715435743332, + -0.027842797338962555, + -0.03286746144294739, + -0.01906137727200985, + -0.06989999115467072, + -0.05945868045091629, + 0.03040945529937744, + 0.07681381702423096, + -0.018250515684485435, + -0.02046453021466732, + 0.013401035219430923, + 0.017649441957473755, + 0.006321534980088472, + -0.02115723304450512, + -0.05405280366539955, + -0.0009907045168802142, + 0.017318496480584145, + -0.07016834616661072, + 0.04243524372577667, + -0.002985629253089428, + -0.03196106478571892, + -0.006196117494255304, + 0.00045452159247361124, + 0.06672679632902145, + 0.05098145082592964, + 0.013731559738516808, + 0.027841195464134216, + -9.693171159597114e-05, + 0.01788410171866417, + -0.029495535418391228, + 0.01091430988162756, + 0.014679992571473122, + 0.03381592035293579, + 0.02595306932926178, + 0.003913817461580038, + 0.03773923218250275, + -0.03819013759493828, + -0.031655289232730865, + 0.006200087256729603, + -0.03692183271050453, + 0.02101021073758602, + -0.018359266221523285, + 0.02734270691871643, + 0.023894160985946655, + 0.006729361601173878, + 0.03600000962615013, + -0.010085660964250565, + 0.008494238369166851, + -0.01988384500145912, + -0.0291132852435112, + -0.015307736583054066, + 0.02163952961564064, + 0.03223174437880516, + 0.017333585768938065, + -0.026287605985999107, + -0.04042207449674606, + 0.033188171684741974, + 0.0021295929327607155, + -0.03768057003617287, + 0.014190043322741985, + -0.03475528955459595, + -0.034320369362831116, + 0.06200454756617546, + -0.007972924038767815, + -0.026194317266345024, + 0.00023094381322152913, + 0.01190834492444992, + 0.02594696916639805, + 0.07248151302337646, + -0.007526093162596226, + -0.0015283329412341118, + -0.03213101997971535, + 0.019586175680160522, + -0.0030890668276697397, + -0.022316014394164085, + 0.04109644144773483, + -0.014899631030857563, + -0.05289388820528984, + 0.04129992052912712, + -0.02078818716108799, + -0.057855479419231415, + 0.0281752347946167, + 0.008701582439243793, + -0.0039955005049705505, + 0.020122118294239044, + 0.018872095271945, + -0.05847915634512901, + -0.039988964796066284, + 0.040924180299043655, + -0.01797742396593094, + -0.023484621196985245, + 0.04397590085864067, + 0.014594316482543945, + 0.0017408978892490268, + -0.038726285099983215, + -0.010877533815801144, + -0.019269315525889397, + 0.004449427593499422, + -0.036503247916698456, + -0.00023646048794034868, + 0.028515378013253212, + -0.04125037416815758, + 0.025399766862392426, + -5.3270607168087736e-05, + -0.03657417744398117, + -0.015970837324857712, + -0.0693296417593956, + -0.04269957169890404, + 0.056488946080207825, + 0.00936159212142229, + 0.009812943637371063, + 0.005215775687247515, + 0.005071610677987337, + -0.0005789748975075781, + 0.006760487798601389, + -0.003331904299557209, + -0.01793576590716839, + -0.047299787402153015, + -0.02613331750035286, + 0.03219418227672577, + -0.019039295613765717, + -0.005272801499813795, + -0.011318760924041271, + -0.041453562676906586, + -0.00789504311978817, + -0.005059028510004282, + 0.021118802949786186, + -1.0830295650521293e-05, + 0.03526691347360611, + 0.01209317333996296, + 0.027258021757006645, + 0.021574296057224274, + -0.06497156620025635, + 0.018387455493211746, + -0.03866680711507797, + -0.009009803645312786, + 0.0447862409055233, + 0.009928128682076931, + -0.07141310721635818, + 0.051778487861156464, + -0.0028344858437776566, + -0.017539646476507187, + -0.0077187842689454556, + 0.040653884410858154, + -0.020334279164671898, + -0.020695168524980545, + 0.046528980135917664, + 0.028841311112046242, + -0.049273423850536346, + -0.028439372777938843, + -0.04006543383002281, + 0.036678656935691833, + 0.010527221485972404, + 0.03533231094479561, + -0.05431758984923363, + 0.030514216050505638, + -0.034812696278095245, + 0.02653435990214348, + -0.050519850105047226, + 0.012925988994538784, + -0.02227320894598961, + 0.020845329388976097, + -0.044111218303442, + -0.013089391402900219, + -0.008680817671120167, + 0.031226078048348427, + 0.004569536540657282, + 0.05589406564831734, + 0.014105631969869137, + 0.013304433785378933, + 0.020237063989043236, + 0.01343580149114132, + -0.02222144789993763, + -0.001318632042966783, + 0.006761942058801651, + 0.006832425948232412, + 0.03355645388364792, + -0.0011647545034065843, + 0.0348520502448082, + 0.013552465476095676, + 0.003405884141102433, + -0.0028094258159399033, + 0.03087506629526615, + -0.003493201918900013, + -0.02454385906457901, + -0.021602917462587357, + -0.025976885110139847, + 0.019409304484725, + -0.017841307446360588, + 0.025244474411010742, + -0.10015319287776947, + 0.048344582319259644, + 0.023116860538721085, + 0.0016396930441260338, + 0.04726641997694969, + -0.030101843178272247, + 0.03955075144767761, + -0.04148619621992111, + 0.02963409759104252, + -0.016134196892380714, + -0.03027782216668129, + -0.0430121049284935, + 0.018519461154937744, + 0.016115328297019005, + -0.02914583683013916, + -0.029391739517450333, + 0.01042573619633913, + 0.005786625202745199, + 0.019724907353520393, + 0.0426686555147171, + -0.01515146903693676, + 0.005049813073128462, + -0.027541039511561394, + 0.05008755251765251, + 0.0120209576562047, + -0.0060867974534630775, + -0.05658422037959099, + 0.04094037041068077, + 0.004024512134492397, + -0.02734747715294361, + 0.016788585111498833, + -0.010687951929867268, + 0.007965841330587864, + 0.007095566019415855, + 0.01248579565435648, + -0.048009131103754044, + -0.04559599980711937, + 0.06572718173265457, + 0.043181195855140686, + 0.06653130054473877, + 0.05073191225528717, + -0.05501585453748703, + 0.013363732025027275, + 9.230019350070506e-05, + -0.026259087026119232, + 0.01818508468568325, + 0.05225234478712082, + 0.005571578163653612, + -0.012198202311992645, + 0.0033109080977737904, + 0.08140068501234055, + 0.01360028050839901, + 0.01511435303837061, + 0.04668548330664635, + 0.03885545954108238, + 0.059838615357875824, + -0.0412517786026001, + 0.04052869230508804, + -0.03360113874077797, + -0.048247408121824265, + -0.022054100409150124, + 0.005299110431224108, + -0.006093329284340143, + 0.010129363276064396, + 0.03682837262749672, + 0.018238265067338943, + -0.03358926996588707, + -0.04755183681845665, + -0.024664554744958878, + 0.02980048768222332, + 0.019185615703463554, + 0.00748427165672183, + 0.036084022372961044, + 0.04017912596464157, + -0.01740882731974125, + 0.008541499264538288, + 0.006549428682774305, + -0.009156689047813416, + 0.04205084592103958, + 0.013684477657079697, + 0.00644191587343812, + -0.022911839187145233, + -0.013405568897724152, + 0.012409445829689503, + -0.001755561912432313, + 0.0041203987784683704, + -0.0602358840405941, + -0.02470429800450802, + 0.00650245463475585, + 0.04056965187191963, + -0.0076537043787539005, + 0.026547251269221306, + -0.003027929225936532, + 0.002441361080855131, + 0.03866888955235481, + -0.03663163259625435, + 0.026386858895421028, + 0.04386810213327408, + 0.018975628539919853, + -0.05534902215003967, + 0.0273259487003088, + 0.025038255378603935, + -0.026129988953471184, + 0.017361335456371307, + 0.029560374096035957, + -0.011863546445965767, + -0.00757190864533186, + -0.0435732826590538, + 0.028440644964575768, + 0.00462253438308835, + 0.038605496287345886, + 0.0017933229682967067, + 0.012106836773455143, + 0.03584565594792366, + 0.0017226382624357939, + -0.003562054131180048, + 0.020161829888820648, + -0.04043807089328766, + 0.0036456116940826178, + -0.00639588525518775, + 0.017779598012566566, + -0.03950776904821396, + 0.06014407053589821, + -0.012172509916126728, + 0.00678815133869648, + -0.017186244949698448, + -0.008806237950921059, + 0.0015075113624334335, + 0.022102942690253258, + -0.052494145929813385 + ], + "start_index": 7276, + "end_index": 10322, + "token_count": 488, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "8e85c6b7-27ea-5b5f-91e2-c580cd1aee0b", + "_source": { + "text": "\n\n---\n\n## SECCIÓN IV: Concurrencia y Asincronía\n\nImplementa un sistema avanzado basado en hilos ligeros (gorutinas), permitiendo que el servidor procese operaciones de E/S largas sin bloquear el hilo principal.\n\n### 4.1 Comando Lanzador (go)\n* **Sintaxis:** `identificador = go nombre_funcion(parametros)`.\n* **Mecánica:** Crea un nuevo contexto de ejecución aislado. Devuelve un identificador único que debe guardarse para interactuar con el hilo posteriormente.\n\n### 4.2 Comando Sincronizador (gather)\n* **Sintaxis:** `resultado = gather(identificador, timeout)`.\n* **Mecánica:** Pausa el hilo principal esperando el resultado. Si se supera el `timeout` especificado, cancela la espera y devuelve `None`.\n\n### Especificación BNF (Sección IV)\n\n\n\n ::= | \n ::= \"=\" \"go\" \"(\" [] \")\"\n ::= \"=\" \"gather(\" [\",\" ] \")\"", + "embedding": [ + 0.03375782072544098, + -0.04655198007822037, + -0.008749175816774368, + -0.03021465614438057, + 0.06408421695232391, + -0.0011750138364732265, + -0.021963482722640038, + -0.03749734163284302, + -0.042000845074653625, + -0.010244903154671192, + -0.03138061612844467, + -0.024618320167064667, + 0.02456039749085903, + -0.007240634877234697, + -0.030616162344813347, + 0.05528474599123001, + 0.02687259018421173, + -0.03986746817827225, + -0.046275969594717026, + 0.029443442821502686, + -0.06874921917915344, + 0.05542447790503502, + -0.037314023822546005, + 0.024075299501419067, + 0.004255007021129131, + -0.0066294921562075615, + -0.027113042771816254, + 0.08756409585475922, + 0.006834668572992086, + 0.01897512748837471, + -0.07101607322692871, + 0.09758701920509338, + -0.02635679394006729, + 0.007958863861858845, + -0.021087519824504852, + -0.012574739754199982, + 0.05341096967458725, + -0.034575507044792175, + 0.06832921504974365, + 0.03264917433261871, + -0.009548255242407322, + -0.004918996244668961, + 0.05749135464429855, + -0.06313852220773697, + 0.030010607093572617, + -0.06398405134677887, + 0.026342717930674553, + 0.03137516975402832, + 0.005279554054141045, + -0.0011367255356162786, + -0.031670667231082916, + -0.006431731395423412, + 0.0032192247454077005, + 0.023114515468478203, + -0.042628224939107895, + 0.0012448113411664963, + -0.038305990397930145, + -0.028338128700852394, + -0.01601228304207325, + 0.006781123112887144, + 0.009140592999756336, + -0.04772031307220459, + -0.0524333156645298, + -0.04290648177266121, + -0.0075243026949465275, + 0.014477832242846489, + -0.008860317058861256, + -0.0004015148733742535, + 0.02588973566889763, + 0.0006952564581297338, + 0.013798823580145836, + -0.03272271156311035, + 0.027731196954846382, + 0.0835617259144783, + 0.022620948031544685, + 0.05994286388158798, + -0.020233456045389175, + 0.016151728108525276, + -0.01547874417155981, + 0.06962309032678604, + 0.0021706423722207546, + 0.027322817593812943, + 0.009569700807332993, + -0.009576767683029175, + 0.031876105815172195, + 0.05159552022814751, + -0.1039004921913147, + 0.008829309605062008, + -0.021722199395298958, + -0.0018391689518466592, + -0.018069159239530563, + 0.01784495823085308, + 0.015190929174423218, + -0.04818528890609741, + 0.03864026442170143, + 0.015340633690357208, + -0.02827862650156021, + 0.059291690587997437, + -0.01784106343984604, + -0.03636952117085457, + 0.0033847051672637463, + -0.013200594112277031, + -0.06605914980173111, + -0.055537149310112, + 0.049110397696495056, + 0.04072395712137222, + -0.019362855702638626, + -0.022386102005839348, + 0.03889546915888786, + 0.016326896846294403, + -0.010084530338644981, + -0.008965549990534782, + -0.0018308272119611502, + -0.009968284517526627, + 0.024502309039235115, + -0.00781519990414381, + 0.025812752544879913, + -0.013022704981267452, + 0.019823648035526276, + -0.03082389011979103, + -0.011520043946802616, + -0.0469011627137661, + 0.005533754825592041, + -0.013109595514833927, + -0.059864480048418045, + -0.03191526606678963, + -0.02735469862818718, + 0.0016676094383001328, + 0.030656972900032997, + 0.007374452892690897, + -0.0011992821237072349, + 0.000517532171215862, + 0.013758089393377304, + -0.0034120208583772182, + 0.018904032185673714, + 0.006690333131700754, + 0.03829379752278328, + -0.033964842557907104, + 0.024647561833262444, + -0.011430376209318638, + -0.08766130357980728, + -0.02017897553741932, + -0.02667059376835823, + -0.02146802842617035, + 0.03328630328178406, + 0.020504049956798553, + 0.027226386591792107, + 0.00664148572832346, + 0.0007447759853675961, + 0.002523341216146946, + 0.012970062904059887, + -0.032237373292446136, + -0.037639521062374115, + 0.0022951518185436726, + 0.035669080913066864, + 0.03609504923224449, + 0.0016857353039085865, + 0.0016658540116623044, + -0.018162190914154053, + 0.02872176468372345, + 0.022318534553050995, + -0.008379613980650902, + -0.011525366455316544, + -0.013549402356147766, + -0.04369743540883064, + 0.025261200964450836, + -0.014126541092991829, + 0.013089527375996113, + -0.004711450543254614, + -0.001825461396947503, + 0.01896486058831215, + 0.008601874113082886, + 0.04338608682155609, + -0.018799498677253723, + 0.006449946667999029, + -0.04390665143728256, + -0.009501609019935131, + 0.01657484844326973, + 0.002253207378089428, + -0.02732008509337902, + -0.012426053173840046, + -0.015381626784801483, + 0.0239702295511961, + 0.015533327125012875, + -0.0011663895566016436, + 0.06351178139448166, + -0.0013329118955880404, + 0.023001328110694885, + 0.007946005091071129, + -0.00338999112136662, + -0.008284542709589005, + 0.02015833556652069, + -0.019783129915595055, + -0.014067403972148895, + 0.024119166657328606, + -0.010771014727652073, + 0.016269613057374954, + -0.04174916446208954, + -0.0256915595382452, + 0.008827222511172295, + -0.008353877812623978, + -0.048584066331386566, + -0.025888551026582718, + 0.007649640087038279, + 0.0100221773609519, + 0.0052377087995409966, + 0.02855623885989189, + -0.006130325607955456, + -0.013228015974164009, + -0.026828596368432045, + -0.03271235525608063, + -0.033847957849502563, + -0.028422795236110687, + -0.02517450600862503, + 0.0, + -0.016978221014142036, + 0.03908339515328407, + -0.0022234893403947353, + -0.019801435992121696, + 0.017443159595131874, + -0.003393117804080248, + 0.03517505154013634, + -0.040729932487010956, + -0.017289990559220314, + -0.006955044809728861, + -0.03263409435749054, + -0.006044563837349415, + 0.008962850086390972, + 0.010062357410788536, + -0.012148951180279255, + 0.0225398987531662, + -0.009809780865907669, + 0.048346005380153656, + -0.03177494928240776, + 0.02851327881217003, + 0.0359412282705307, + 0.010095500387251377, + -0.002509529935196042, + 0.011171959340572357, + -0.023248255252838135, + 0.012813284993171692, + -0.018641555681824684, + -0.045841459184885025, + -0.0015102032339200377, + -0.007615580689162016, + 0.013158206827938557, + -0.01798977516591549, + -0.028148103505373, + -0.02230018749833107, + 0.0063548218458890915, + 0.027756551280617714, + 0.049041084945201874, + -0.01427574921399355, + 0.003269496839493513, + -0.012737620621919632, + -0.009295790456235409, + -0.024440864101052284, + 0.05047719180583954, + -0.005584280006587505, + -0.0035047612618654966, + 0.045573942363262177, + -0.031626634299755096, + -0.021380716934800148, + 0.014971143566071987, + -0.016954025253653526, + 0.032714154571294785, + 0.014827757142484188, + -0.010182163678109646, + -0.023309197276830673, + -0.03876854106783867, + 0.052159883081912994, + -0.02838476002216339, + -0.0350511409342289, + 0.04031943902373314, + -0.003567344043403864, + -0.0040447404608130455, + 0.007902555167675018, + -0.08745373785495758, + 0.05213326960802078, + -0.03055705688893795, + 0.006595787592232227, + -0.024874605238437653, + -0.003849656553938985, + 0.00797802023589611, + 0.011180391535162926, + 0.006658466532826424, + 0.004801613744348288, + 0.04536924511194229, + -0.022166728973388672, + 0.03721613809466362, + 0.0068173459731042385, + 0.0003111827536486089, + 0.004060667008161545, + 0.05074947327375412, + -0.02364366315305233, + 0.04977986961603165, + -0.0023237953428179026, + -0.03179555758833885, + -0.017006780952215195, + -0.037806522101163864, + 0.006785909179598093, + -0.013628062792122364, + -0.010262448340654373, + -0.007920261472463608, + 0.008365582674741745, + 0.011477755382657051, + -0.018975287675857544, + -0.03798745945096016, + -0.00026030567823909223, + 0.0032539870589971542, + 0.024787448346614838, + -0.008244888857007027, + -0.004446850158274174, + -0.020620064809918404, + 0.007391197141259909, + 0.015614479780197144, + -0.04244064912199974, + -0.000453965796623379, + 0.04390677809715271, + -0.012667108327150345, + 0.017716487869620323, + -0.00954181794077158, + 0.06775033473968506, + -0.025862449780106544, + 0.015670204535126686, + 0.035262640565633774, + -0.002262894995510578, + 0.007914883084595203, + 0.010344618931412697, + 0.009020170196890831, + 0.01885455660521984, + -0.006024277303367853, + 0.0846734493970871, + 0.04784312844276428, + -0.006604544352740049, + -0.027737300843000412, + 0.046951811760663986, + 0.008981072343885899, + -0.014010784216225147, + 0.02531811222434044, + -0.01800910383462906, + -0.02944773994386196, + -0.052794620394706726, + -0.02676708810031414, + 0.0010365870548412204, + 0.005207318812608719, + -0.021619655191898346, + 0.04158329591155052, + 0.04792289063334465, + -0.04463145136833191, + 0.013617606833577156, + 0.009691979736089706, + -0.032578516751527786, + -0.0020222521852701902, + -0.03131262585520744, + -0.027804212644696236, + 0.04534120485186577, + 0.039103057235479355, + -0.056954991072416306, + 0.02033928968012333, + -0.02641347423195839, + 0.020510796457529068, + -0.02586156688630581, + 0.044359494000673294, + 0.004277719184756279, + -0.11503278464078903, + -0.006955180317163467, + -0.060535728931427, + 0.08523652702569962, + -0.020209571346640587, + -0.08259670436382294, + -0.00026329277898184955, + -0.007298460230231285, + 0.04210452362895012, + 0.03242313861846924, + 0.017349855974316597, + 0.06157873198390007, + 0.019066642969846725, + -0.0375942625105381, + 0.016032254323363304, + 0.022234970703721046, + -0.013549961149692535, + 0.02411029301583767, + -0.008436350151896477, + 0.032989341765642166, + -0.0371144600212574, + -0.005266405176371336, + 0.037598248571157455, + 0.02233775705099106, + -0.0079115005210042, + 0.0039804731495678425, + -0.0333845354616642, + 0.05138789489865303, + 0.013956102542579174, + 0.030109522864222527, + 0.024525001645088196, + -0.05149366706609726, + 0.017568450421094894, + -0.07864594459533691, + -0.02258864790201187, + -0.027582809329032898, + 0.026971008628606796, + -0.04843791201710701, + -0.008769852109253407, + 0.026439374312758446, + 0.015631118789315224, + -0.03041740693151951, + 0.0665460079908371, + 0.03697435185313225, + 0.042140766978263855, + 0.027792511507868767, + -0.018267858773469925, + -0.04016115888953209, + 0.005121569614857435, + 0.004446438513696194, + 0.00029778151656500995, + 0.02643759362399578, + 0.020990272983908653, + -0.01985940895974636, + 0.015334993600845337, + -0.014511206187307835, + -0.006418311502784491, + -0.012970580719411373, + -0.039611466228961945, + -0.03331228718161583, + 0.010632683522999287, + -0.03154013305902481, + -0.04819317162036896, + -0.030679821968078613, + 0.03725037723779678, + -0.06382358074188232, + 0.07008763402700424, + 0.05055619031190872, + 0.010283615440130234, + -0.06721065938472748, + 0.012525266967713833, + 0.015896115452051163, + 0.02084573730826378, + 0.03295289725065231, + 0.033916324377059937, + 0.02190026454627514, + 0.0034196737688034773, + -0.014704044908285141, + 0.005749725736677647, + -0.05815369263291359, + -0.023616299033164978, + 0.009186572395265102, + 0.0806785598397255, + -0.02877904288470745, + 0.028421197086572647, + 0.0066881729289889336, + -0.018750887364149094, + 0.045535504817962646, + -0.033279355615377426, + -0.04031859710812569, + -0.02273363433778286, + -0.0037741847336292267, + -0.07864581793546677, + -0.02816714532673359, + 0.04083047807216644, + -0.004436627961695194, + 0.056109439581632614, + 0.015642696991562843, + 0.008767932653427124, + 0.014112181961536407, + 0.04487564042210579, + 0.0551471970975399, + 0.03990241885185242, + 0.0011879743542522192, + 0.023883145302534103, + 0.03874901682138443, + 0.00012234684254508466, + 0.0017980476841330528, + -0.012699604034423828, + 0.02642769366502762, + -0.036620594561100006, + -0.012639605440199375, + -0.06414148211479187, + -0.03369593247771263, + 0.026688069105148315, + 0.01189431268721819, + 0.0031601786613464355, + 0.027212925255298615, + -0.06368135660886765, + 0.04306372255086899, + -0.008943823166191578, + -0.006943513639271259, + -0.01900200918316841, + -0.03191685304045677, + -0.0255129411816597, + 0.014460677281022072, + 0.044832319021224976, + -0.010596881620585918, + -0.012187794782221317, + 0.044429928064346313, + -0.0033552926033735275, + -0.004832105245441198, + -0.031807996332645416, + -0.0923972874879837, + 0.055163849145174026, + -0.0307482797652483, + 0.005902966484427452, + -0.0232396200299263, + -0.012420622631907463, + -0.03862699866294861, + -0.02144184336066246, + 0.009689426980912685, + -0.0005655432469211519, + 0.03868374228477478, + 0.014853374101221561, + 0.04843100160360336, + -0.017021294683218002, + 0.004376851953566074, + 0.018747851252555847, + -0.006705333013087511, + 0.00769159197807312, + 0.05203452333807945, + 0.019760413095355034, + -0.0009796000085771084, + 0.004172805696725845, + -0.01760859601199627, + 0.04222520813345909, + -0.0019068473484367132, + -0.029589131474494934, + 0.020093711093068123, + 0.017373887822031975, + 0.04352852702140808, + 0.039304107427597046, + 0.021255269646644592, + -0.03338388353586197, + 0.0182977132499218, + -0.05513047054409981, + -0.017658939585089684, + 0.02689163014292717, + -0.05685088410973549, + -0.06212839484214783, + -0.04414830356836319, + 0.02358916588127613, + 0.007196475751698017, + -0.01944844238460064, + 0.0362367257475853, + -0.007063268218189478, + -0.03576935827732086, + 6.809657497797161e-05, + 0.0047697145491838455, + -0.04156627506017685, + -0.009524690918624401, + 0.03171631321310997, + -0.013241378590464592, + 0.019886985421180725, + 0.01056221965700388, + -0.004413836635649204, + 0.0062426491640508175, + 0.02563558518886566, + 0.029402026906609535, + 0.004351354204118252, + 0.012408525682985783, + 0.012429803609848022, + 0.007098162546753883, + -0.041311509907245636, + 0.019190102815628052, + 0.010307514108717442, + 0.02779814600944519, + 0.00996793806552887, + -0.01891014352440834, + 0.01591927744448185, + 0.004965567961335182, + 0.05916886404156685, + 0.05445554852485657, + 0.01604028046131134, + 0.029871545732021332, + 0.0015249440912157297, + -0.058588456362485886, + 0.06607536226511002, + -0.006572681479156017, + -0.05929577350616455, + -0.047274231910705566, + -0.03250083327293396, + 0.01083835493773222, + 0.0074705686420202255, + 0.057833123952150345, + 0.017272990196943283, + -0.019729970023036003, + 0.04325006157159805, + 0.026337645947933197, + 0.026786228641867638, + 0.025998851284384727, + -0.06046835333108902, + -0.00920422375202179, + -0.043022122234106064, + -0.012139893136918545, + 0.001512258779257536, + -0.025461958721280098, + -0.019438469782471657, + -0.015471762046217918, + 0.03697773069143295, + -0.04452984035015106, + 0.0007523827371187508, + -0.033433519303798676, + 0.001240140525624156, + -0.002698300639167428, + -0.003742434084415436, + 0.028904933482408524, + 0.040277525782585144, + -0.047370437532663345, + -0.00581068079918623, + -0.008563521318137646, + 0.05569850653409958, + 0.011291518807411194, + 0.002229465404525399, + -0.026369940489530563, + 0.0011028930312022567, + 0.02300621196627617, + 0.05697813630104065, + -0.0005471014301292598, + -0.03903645649552345, + -0.06082042679190636, + -0.0160015020519495, + -0.007902036421000957, + -0.04315316677093506, + -0.010507688857614994, + 0.07300183176994324, + -0.014697805047035217, + 0.08338748663663864, + -0.010916901752352715, + -0.051996078342199326, + 0.02296321839094162, + -0.018440529704093933, + -0.027620121836662292, + -0.01739274151623249, + -0.027579160407185555, + -0.023836683481931686, + -0.022580796852707863, + -0.04471052065491676, + 0.05669358745217323, + -0.04966116324067116, + 0.03396770358085632, + -0.040629785507917404, + -0.017402179539203644, + -0.012611158192157745, + 0.0010759440483525395, + 0.016777977347373962, + 0.013427980244159698, + 0.020798545330762863, + -0.014806684106588364, + 0.0009160140180028975, + 0.004397055134177208, + -0.01167308073490858, + 0.0026104061398655176, + -0.001277456758543849, + 0.029923714697360992, + 0.07125453650951385, + -0.020916981622576714, + 0.03902534395456314, + -0.017287081107497215, + -0.0027501622680574656, + -0.010017992928624153, + 0.06827723234891891, + -0.036342594772577286, + 0.0187478456646204, + 0.07598242908716202, + -0.04040582478046417, + -0.011629246175289154, + 0.0019383352482691407, + 0.03480803221464157, + -0.011615018360316753, + 0.01276822667568922, + 0.013127061538398266, + -0.031026970595121384, + -0.0672389417886734, + 0.013574954122304916, + -0.043696917593479156, + -0.06891379505395889, + -0.0037266449071466923, + 0.013664538972079754, + -0.07360633462667465, + -0.008157854899764061, + -0.004032353404909372, + -0.016654906794428825, + -0.014893162995576859, + -0.027976475656032562, + 0.01802847720682621, + 0.0788547620177269, + 0.03728882595896721, + 0.041033316403627396, + -0.01588202826678753, + -0.00938554760068655, + 0.03468988463282585, + -0.0541016049683094, + -0.006603193003684282, + -0.01304958388209343, + 0.019774526357650757, + -0.04617084190249443, + -0.06333696097135544, + -0.02238267846405506, + 0.035537540912628174, + -0.033190008252859116, + 0.013924811035394669, + 0.012487133964896202, + -0.05909302830696106, + 0.012320245616137981, + 0.002093608258292079, + 0.030486738309264183, + -0.010012692771852016, + 0.01072708796709776, + 0.016863301396369934, + -0.012592115439474583, + 0.024854056537151337, + -0.018209809437394142, + -0.021845268085598946, + 0.06525884568691254, + 0.05512284114956856, + -0.0845038965344429, + -0.031115476042032242, + -0.020776312798261642, + 0.01612127013504505, + 0.023075152188539505, + -0.038133908063173294, + -0.02867802046239376, + -1.7787757315090857e-05, + 0.014541556127369404, + -0.06343226879835129, + 0.017148645594716072, + -0.024328554049134254, + -0.01180205587297678, + -0.02463923580944538, + 0.0009161032503470778, + 0.07447873055934906, + 0.04303589090704918, + 0.00706574646756053, + 0.06379103660583496, + 0.004435465205460787, + -0.017111895605921745, + -0.027848878875374794, + -0.008655679412186146, + -0.04259966313838959, + -0.0009856780525296926, + 0.053193047642707825, + 0.030852852389216423, + 0.015182116068899632, + 0.011904438026249409, + -0.037308257073163986, + 0.032543499022722244, + -0.019446466118097305, + -0.004827326629310846, + 0.039516203105449677, + 0.012944565154612064, + 0.0007807469228282571, + 0.04586037993431091, + 0.03805457800626755, + -0.003193505806848407, + -0.013637986034154892, + 0.03750064596533775, + -0.016876116394996643, + -0.0546366311609745, + -0.008575639687478542, + 0.0075437771156430244, + 0.001881138887256384, + -0.03626210242509842, + 0.06735909730195999, + 0.05000180006027222, + -0.023730972781777382, + 0.042594995349645615, + -0.022292934358119965, + 0.036672141402959824, + -0.030629396438598633, + 0.042364634573459625, + -0.010856092907488346, + 0.002357225865125656, + 0.05293741822242737, + 0.035734374076128006, + 0.00567457964643836, + 0.00991799309849739, + 0.031188728287816048, + 0.0002809862489812076, + -0.043251872062683105, + 0.02077026292681694, + -0.01793629676103592, + 0.016542157158255577, + 0.05412154272198677, + -0.03739887848496437, + 0.02153591811656952, + 0.007956440560519695, + -0.010786370374262333, + -0.018627043813467026, + 0.058910876512527466, + 0.050176192075014114, + -0.022936521098017693, + 0.014968061819672585, + -0.010264238342642784, + -0.03719242289662361, + -0.00727012800052762, + 0.03774229809641838, + 0.003910724073648453, + -0.051414210349321365, + -0.038685668259859085, + -0.052028924226760864, + -0.007491572760045528, + 0.009175400249660015, + 0.03333023935556412, + 0.04265110194683075, + 0.02071371302008629, + -0.024958930909633636, + 0.003312403103336692, + 0.0454159677028656, + -0.011778639629483223, + 0.010264948941767216, + -0.03336396440863609, + -0.03140764683485031, + 0.0185640100389719, + 0.008175835013389587, + -0.012699918821454048, + -0.027512719854712486, + -0.021177152171730995, + -0.06830446422100067, + 0.015187862329185009, + -0.008891396224498749, + 0.03202073648571968, + 0.0006626560352742672, + 0.015449625439941883, + -0.001763032516464591, + 0.008768024854362011, + -0.019051622599363327, + -0.01144594419747591, + 0.010986493900418282, + 0.044492896646261215, + -0.024945519864559174, + 0.0003299739328213036, + -0.04271990805864334, + 0.010847103781998158, + -0.012565710581839085, + -0.011351783759891987, + -0.019616855308413506, + -0.013295629061758518, + 0.028945442289114, + -0.00026969824102707207, + 0.03812549263238907, + 0.003297756426036358, + -0.012621233239769936, + -0.009890865534543991, + 0.034457311034202576, + 0.015561453998088837, + 0.002527037635445595, + 0.0745977833867073, + -0.04733912646770477, + 0.03919632360339165, + -0.008360296487808228, + -0.008806968107819557, + 0.006115007679909468, + 0.03321084752678871, + -0.014211351983249187, + 0.0385541170835495, + -0.0026253617834299803, + 0.006316494662314653, + -0.0758814588189125, + 0.0441398061811924, + -0.004972656257450581, + 0.020020846277475357, + -0.014453795738518238, + 0.0078037758357822895, + 0.002461644820868969, + -0.02497078850865364, + -0.06826768815517426, + -0.0212699081748724, + -0.04727821424603462, + 0.019240325316786766, + -0.010196681134402752, + -0.014003725722432137, + 0.025611644610762596, + -0.024422960355877876, + -0.013007048517465591, + 0.018116751685738564, + -0.011077327653765678, + 0.0032292483374476433, + -0.009421385824680328, + -0.03651810809969902, + 0.01677970215678215, + -0.013526162132620811, + 0.00819412898272276, + 0.004979335702955723, + 0.016138356178998947, + -0.027345333248376846, + -0.007718488574028015, + 0.001975571271032095, + -0.008557215332984924, + 0.0765429437160492, + -0.019640332087874413, + -0.01009715162217617, + -0.010645989328622818, + -0.02399430423974991, + -0.023428985849022865, + 0.03159721940755844, + 0.03146496042609215, + 0.0030724273528903723, + -0.06363768130540848, + -0.019424622878432274, + 0.0034031991381198168, + -0.042583078145980835, + 0.010201825760304928, + -0.018874790519475937, + 0.047819431871175766, + -0.0016702343709766865, + 0.007630006410181522, + 0.007858023047447205, + -0.007781124673783779, + -0.014515344053506851, + -0.013770603574812412, + 0.01248911116272211, + -0.03228655084967613, + 0.026984738186001778, + 0.008080298081040382, + 0.05474853515625, + 0.01756480522453785, + 0.013446075841784477, + -0.03813847526907921, + 0.008636663667857647, + -0.008825349621474743, + 0.016040649265050888, + -0.018403632566332817, + -0.05625980719923973, + 0.006557461805641651, + -0.003333708504214883, + 0.03915955498814583, + -0.054498091340065, + -0.004113391507416964, + -0.009683582000434399, + -0.008097340352833271, + 0.005993852857500315, + 0.010899431072175503, + -0.01915486715734005, + -0.044303424656391144, + 0.01552712731063366, + 0.017999228090047836, + 0.015287286601960659, + 0.023330166935920715, + -0.04029526188969612, + 0.002314000390470028, + 0.013810164295136929, + 0.03911955654621124, + -0.011300666257739067, + 0.0236381646245718, + 0.003626848105341196, + 0.024259645491838455, + 0.009403906762599945, + 0.014089818112552166, + 0.005889402236789465, + 0.02078365907073021, + 0.003077142871916294, + -0.006056235637515783, + 0.016400545835494995, + 0.041511110961437225, + 0.021643439307808876, + -0.0433201864361763, + -0.02225489914417267, + 0.003862003330141306, + -0.010790915228426456, + -0.020059138536453247, + 0.006721966899931431, + 0.023961080238223076, + -0.034331806004047394, + 0.014141730032861233, + 0.00363896694034338, + -0.009976984933018684, + -0.01954144611954689, + -6.265233969315886e-05, + -0.039605867117643356, + -0.0030401425901800394, + -0.015646228566765785, + -0.04755445942282677, + 0.024603448808193207, + 0.030690452083945274, + -0.023093504831194878, + 0.04272792115807533, + -0.015962060540914536, + -0.0490492507815361, + 0.04377148300409317, + -0.03034854866564274, + 0.016181044280529022, + -0.014779221266508102, + -0.016854699701070786, + -0.09546061605215073, + 0.04372488707304001, + 0.019252238795161247, + 0.026833470910787582, + -0.026125114411115646, + 0.016064060851931572, + -0.0060126036405563354, + -0.05537284165620804, + -0.0070835258811712265, + -0.05719970911741257, + -0.015700489282608032, + 0.026395846158266068, + -0.018211612477898598, + -0.03353768214583397, + 0.04893547669053078, + 0.00991394929587841, + -0.01848153956234455, + 0.05075320228934288, + 0.04490261897444725, + 0.02105315402150154, + -0.012651384808123112, + -0.007023409008979797, + 0.028279984369874, + 0.02233373001217842, + 0.0010959532810375094, + -0.014247644692659378, + 0.031131532043218613, + -0.005090368911623955, + 0.008132237009704113, + 0.015348291955888271, + 0.025167416781187057, + -0.012446420267224312, + 0.014528881758451462, + -0.02981727570295334, + 0.023937584832310677, + -0.027093876153230667, + 0.009413300082087517, + 0.0010181005345657468, + 0.015058006159961224, + -0.011868788860738277, + 0.009756486862897873, + -0.024019690230488777, + 0.03990841284394264, + -0.006538852117955685 + ], + "start_index": 10322, + "end_index": 11293, + "token_count": 207, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "e1d6580d-1fca-5b75-9434-91d52c772d0c", + "_source": { + "text": "\n\n---\n\n## SECCIÓN V: Conectores de Terceros, Peticiones HTTP y ORM Nativo\n\nAgrupa todas las capacidades de interconexión hacia el exterior, permitiendo consumir integraciones de terceros, APIs externas y administrar bases de datos relacionales sin drivers adicionales.\n\n### 5.1 Conectores de Terceros (avapConnector)\n\n`avapConnector` es el mecanismo de integración con servicios de terceros configurados en la plataforma AVAP. Un conector se registra previamente mediante un UUID único. Al instanciarlo, la variable se convierte en un **objeto proxy** que encapsula credenciales y contexto, exponiendo métodos dinámicos mediante notación de punto.\n\n**Patrón de uso:**\n\n\n// 1. Instanciar el conector usando su UUID\nbelvo_connector = avapConnector(\"20908e93260147acb2636967021fbf5d\")\n\n// 2. Invocar métodos dinámicos (resueltos en runtime)\ninstitutions = belvo_connector.list_institutions()\nbalances = belvo_connector.get_balances(link, account_id)\n\n// 3. Resultado tratable como variable estándar\naddResult(balances)", + "embedding": [ + -0.0012515861308202147, + -0.01990397647023201, + -0.010149781592190266, + -0.05721437931060791, + 0.061413973569869995, + -0.012730005197227001, + -0.0008058914681896567, + 0.045588135719299316, + 0.01288180984556675, + 0.002652633236721158, + -0.0025132440496236086, + 0.02562745288014412, + -0.06826715171337128, + -0.008621877059340477, + -0.025570251047611237, + 0.038959015160799026, + -0.02617286890745163, + 0.024165473878383636, + -0.018172964453697205, + 0.037140849977731705, + 0.0015581347979605198, + 0.021432189270853996, + 0.018648222088813782, + 0.06514202803373337, + -0.017833666875958443, + -0.039672091603279114, + -0.010623225942254066, + 0.06643619388341904, + -0.05545072257518768, + -0.03497695550322533, + -0.01125793531537056, + -0.0023643041495233774, + -0.05912512540817261, + -0.019301345571875572, + -0.047929611057043076, + -0.011350723914802074, + 0.025184476748108864, + -0.09964069724082947, + 0.01509292796254158, + -0.009955700486898422, + 0.010086691938340664, + 0.03654562681913376, + 0.09022550284862518, + 0.014114055782556534, + -0.02651740424335003, + -0.06499262154102325, + 0.033312179148197174, + -0.008520008996129036, + 0.022507432848215103, + 0.004180655349045992, + -0.002289134543389082, + -0.0190154779702425, + 0.028563721105456352, + -0.025304654613137245, + -0.03802405670285225, + 0.030372178182005882, + 0.008056474849581718, + 0.032567959278821945, + -0.009988595731556416, + 0.002560744760558009, + -0.03411956876516342, + -0.03475863113999367, + 0.00691999914124608, + 0.011485966853797436, + -0.03724545240402222, + 0.040552522987127304, + 0.03586786240339279, + 0.029772797599434853, + -0.02612368017435074, + -0.016358813270926476, + 0.009967614896595478, + -0.07358581572771072, + -0.018492788076400757, + 0.030814973637461662, + 0.014584450982511044, + 0.01691305823624134, + 0.007639002986252308, + 0.00617214385420084, + 0.006734312511980534, + 0.0022938621696084738, + -0.00884178001433611, + 0.029214370995759964, + 0.02767924964427948, + 0.021915322169661522, + -0.014802198857069016, + 0.0626419335603714, + -0.03312182053923607, + -0.03660569339990616, + 0.017727188766002655, + -0.009095937944948673, + 0.067703016102314, + -0.04517879709601402, + -0.050549834966659546, + -0.025823187083005905, + 0.07734900712966919, + 0.024322694167494774, + -0.037973009049892426, + -0.02263474650681019, + -0.002045472152531147, + -0.013890000060200691, + 0.02483280561864376, + -0.0003016164409928024, + -0.005938847083598375, + 0.026522314175963402, + 0.000494958134368062, + 0.029444610700011253, + -0.06853767484426498, + 0.026979705318808556, + 0.0011865454725921154, + -0.05847620218992233, + -0.05350221320986748, + -0.010812072083353996, + -0.02039138600230217, + 0.10479763150215149, + -0.06197638437151909, + 0.036978647112846375, + 0.03976493701338768, + -0.0038305968046188354, + 0.03402778506278992, + 0.0005407661665230989, + -0.04654443636536598, + -0.0038553497288376093, + 0.009004132822155952, + 0.016113655641674995, + 0.02964961901307106, + 0.02566569857299328, + -0.060410186648368835, + -0.013959548436105251, + 0.002846179995685816, + -0.007792533375322819, + 0.02163933776319027, + -0.001041554962284863, + 0.0032015200704336166, + 0.026866739615797997, + -0.009772244840860367, + -0.01782412640750408, + 0.05150802433490753, + -0.039174869656562805, + 0.04556380957365036, + -0.018047062680125237, + -0.04288613423705101, + -0.04535970464348793, + -0.02355259656906128, + -0.025932149961590767, + 0.0441809743642807, + 0.021160393953323364, + 0.01647690311074257, + -0.003947300836443901, + -0.016376249492168427, + -0.049721598625183105, + 0.04719995707273483, + 0.013779119588434696, + -0.050168417394161224, + -0.023996440693736076, + -0.009658395312726498, + -0.0270601324737072, + 0.01509226206690073, + 0.001257359515875578, + 0.006629281677305698, + 0.036157138645648956, + 0.030492769554257393, + -0.0018987252842634916, + 0.00749812601134181, + -0.02400253713130951, + 0.0006972444243729115, + 0.015466961078345776, + 0.0052493964321911335, + -0.042536843568086624, + -0.01532853301614523, + -0.01397715788334608, + 0.016467280685901642, + 0.024476341903209686, + 0.020150812342762947, + 0.007859420031309128, + 0.006754342932254076, + -0.03649578616023064, + -0.04093099758028984, + -0.04966605454683304, + -0.008091136813163757, + 0.0018358943052589893, + 0.008675661869347095, + -0.020322516560554504, + 0.017003437504172325, + 0.018285270780324936, + 0.004238237626850605, + 0.04072108864784241, + 0.00999294314533472, + 0.04170116037130356, + -0.015560615807771683, + 0.0077570718713104725, + -0.01669463887810707, + -0.026706330478191376, + 0.033468473702669144, + 0.01202478352934122, + -0.026046372950077057, + -0.031816061586141586, + -0.005287910345941782, + -0.006691550370305777, + 0.003629120998084545, + -0.0038717291317880154, + -0.0076909540221095085, + 0.0013535149628296494, + 0.004282383248209953, + -0.01327646803110838, + -0.001990964636206627, + -0.0002032577176578343, + -0.01973777636885643, + -0.05007801577448845, + -0.0055707888677716255, + -0.008039409294724464, + -0.014760607853531837, + 0.0126064233481884, + -0.007381770294159651, + -0.06799187511205673, + 0.009662375785410404, + -0.018515903502702713, + 0.030235642567276955, + 0.021548960357904434, + -0.017317205667495728, + 0.00624886667355895, + 0.017960229888558388, + 0.014479091390967369, + -0.04496949166059494, + 0.011347769759595394, + 0.008223597891628742, + -0.024930713698267937, + -0.019159289076924324, + 0.009572283364832401, + 0.015157421119511127, + 0.006145436316728592, + -0.02095510996878147, + 0.01046186313033104, + 0.009306308813393116, + 0.039146386086940765, + 0.001613836851902306, + 0.035275038331747055, + 0.01290480513125658, + -0.06285542249679565, + -0.0026472739409655333, + 0.04207192733883858, + -0.009785528294742107, + -0.019208945333957672, + 0.006574837025254965, + 0.0017027701251208782, + 0.000744372489862144, + 0.020046621561050415, + -0.0015781013062223792, + -0.01425091177225113, + -0.04772577062249184, + 0.015067058615386486, + 0.04848182573914528, + 0.01656917668879032, + 0.013717545196413994, + 0.05044133961200714, + 0.018700113520026207, + -0.037409707903862, + -0.009125557728111744, + -0.011869118548929691, + 0.023135364055633545, + 0.01741839200258255, + 0.05988997966051102, + -0.02464306727051735, + -0.00030365469865500927, + -0.012706034816801548, + -0.06059052795171738, + 0.013368817046284676, + 0.029706450179219246, + -0.006330045405775309, + -0.019030559808015823, + 0.013570298440754414, + 0.016957653686404228, + -0.0016142436070367694, + 0.016973918303847313, + 0.007492990233004093, + 0.027729570865631104, + 0.02856922708451748, + -0.022384263575077057, + -0.05855857953429222, + 0.04033219441771507, + -0.05368033051490784, + -0.037718065083026886, + -0.02043956331908703, + -0.019759654998779297, + 0.014391752891242504, + -0.010898800566792488, + 0.03833164647221565, + 0.03571058809757233, + -0.011706700548529625, + 0.03958484157919884, + -0.030074702575802803, + 0.01199526060372591, + 0.012713289819657803, + -0.012841099873185158, + -0.015213880687952042, + -0.00974446814507246, + 0.009473176673054695, + 0.010822473093867302, + -0.01905408501625061, + -0.03629161790013313, + -0.03138480335474014, + -0.024805758148431778, + -0.00936731044203043, + 0.02235989458858967, + 0.005116586573421955, + -0.004501396790146828, + -0.011920140124857426, + 0.059482965618371964, + -0.058812692761421204, + 0.0386105440557003, + -0.01079893670976162, + 0.0752466470003128, + 0.014113877899944782, + -0.02050241455435753, + 0.01618223451077938, + -0.0002563639427535236, + 0.02739843726158142, + 0.0012446828186511993, + 0.016576142981648445, + 0.0022797586861997843, + -0.018785296007990837, + -0.03226673603057861, + -0.03421873226761818, + -0.01509255450218916, + 0.005552075803279877, + 0.009650064632296562, + -0.036481551826000214, + 0.029909919947385788, + 0.02411000430583954, + 0.0267390888184309, + 0.040388502180576324, + 0.01723778434097767, + 0.014852982014417648, + 0.012147502042353153, + -0.01608177460730076, + 0.0035213585942983627, + -0.01744505763053894, + 0.027948200702667236, + 0.006280494388192892, + 0.05778852105140686, + -0.044200796633958817, + -0.020707277581095695, + -0.029503021389245987, + -0.02489493228495121, + -0.03594028949737549, + -0.026829659938812256, + 0.03498770296573639, + 0.03001711517572403, + 0.04420734941959381, + 0.017995178699493408, + -0.007665188517421484, + 0.026186762377619743, + 0.016033990308642387, + 0.005382687784731388, + 0.016952509060502052, + 0.0038094150368124247, + 0.039633430540561676, + 0.047217659652233124, + 0.021591871976852417, + 0.0038648899644613266, + -0.020962772890925407, + -0.011422115378081799, + 0.043214358389377594, + 0.008685765787959099, + -0.009602867998182774, + -0.005857402924448252, + 0.0016723480075597763, + -0.052377913147211075, + -0.058454934507608414, + 0.02309781312942505, + -0.018560104072093964, + -0.05862271785736084, + -0.009616993367671967, + -0.017887825146317482, + 0.025640055537223816, + 0.01664179563522339, + 0.02578994445502758, + 0.008678590878844261, + -0.02108464390039444, + -0.026515239849686623, + 0.019852392375469208, + 0.043225403875112534, + -0.03076854906976223, + 0.013363179750740528, + -0.022848933935165405, + -0.00704284617677331, + -0.05846290662884712, + 0.06726470589637756, + -0.02289346419274807, + -0.023697171360254288, + 0.033104028552770615, + -0.0024585577193647623, + 0.00212815310806036, + 0.024469558149576187, + 0.0003566996892914176, + -0.04234018549323082, + 0.05013643950223923, + -0.08524563163518906, + 0.02255168743431568, + -0.052831586450338364, + -0.001538382493890822, + 0.03516727685928345, + 0.0029020619112998247, + -0.06391529738903046, + 0.05217057839035988, + 0.03983644023537636, + 0.03074999712407589, + 0.022965025156736374, + -0.04565857723355293, + 0.004402014426887035, + 0.017454814165830612, + 0.05420972406864166, + 0.01390235498547554, + -0.00013095937902107835, + 0.005042153876274824, + -0.0003018500283360481, + -0.016975384205579758, + -0.0178030114620924, + -0.039267148822546005, + 0.013783630914986134, + 0.04484894126653671, + -0.029091037809848785, + 0.06617608666419983, + -0.0011690586106851697, + -0.005234376527369022, + -0.002928902395069599, + 0.0413176566362381, + -0.02989790216088295, + -0.008747740648686886, + -0.028651176020503044, + -0.03291294723749161, + -0.027933891862630844, + 0.03866660222411156, + 0.002494572661817074, + 0.012892399914562702, + -0.05851581692695618, + 0.07285039126873016, + 0.03538423776626587, + -0.0038679109420627356, + 0.037707194685935974, + 0.01689218170940876, + 0.06059977039694786, + -0.0037933969870209694, + 0.01873662881553173, + -0.05969608947634697, + -0.0160047709941864, + -0.014190006069839, + 0.05559187009930611, + 0.01506776548922062, + -0.029957905411720276, + -0.006235911510884762, + -0.017870714887976646, + -0.027044877409934998, + -0.023858120664954185, + 0.03896336629986763, + 0.049847327172756195, + -0.01717078872025013, + 0.01998302899301052, + -0.061344970017671585, + 0.023072242736816406, + 0.03857745975255966, + -0.016300877556204796, + 0.04560532420873642, + -0.009649896062910557, + -0.07866918295621872, + 0.004201551433652639, + 0.03558988496661186, + 0.027307502925395966, + -0.012175905518233776, + 0.05347057431936264, + -0.038988374173641205, + 0.022972920909523964, + -0.016282880678772926, + -0.042894355952739716, + -0.005437525454908609, + -0.005952122155576944, + -0.012595518492162228, + -0.008231514133512974, + 0.020578257739543915, + -0.04710463434457779, + 0.0014784790109843016, + 0.0686507374048233, + -0.019567782059311867, + 0.0056274025700986385, + 0.011947604827582836, + 0.09183133393526077, + -0.00647160317748785, + -0.021845288574695587, + -0.016024328768253326, + -0.024044737219810486, + 0.0018568257801234722, + -0.0008500004769302905, + 0.049529097974300385, + 0.01351312454789877, + -0.04091547802090645, + 0.06642221659421921, + -0.06773766130208969, + 0.03071015514433384, + -0.052818793803453445, + -0.09100845456123352, + 0.020663602277636528, + 0.023196620866656303, + 0.049044158309698105, + -0.03585221245884895, + -0.021499820053577423, + -0.02952732890844345, + -0.05659914389252663, + 0.005062261130660772, + -0.019658776000142097, + 0.014266354963183403, + 0.029637984931468964, + -0.016196999698877335, + -0.034892745316028595, + 0.028401600196957588, + 0.023318378254771233, + 0.018010299652814865, + 0.010710939764976501, + 0.029283685609698296, + 0.044184304773807526, + -0.035862959921360016, + 0.019101494923233986, + 0.004633183591067791, + -0.0313703827559948, + 0.04719574376940727, + -0.0090169757604599, + -0.0033366973511874676, + -0.03530741110444069, + 0.006077972706407309, + 0.047354549169540405, + 0.04359729215502739, + 0.004565841984003782, + 0.013580902479588985, + -0.012789929285645485, + -0.021585382521152496, + 0.015636999160051346, + -0.0006047799834050238, + -0.013020369224250317, + -0.03547738119959831, + 0.02430606074631214, + 0.008252815343439579, + -0.0009914246620610356, + -0.004486197140067816, + 0.0663081556558609, + -0.009663569740951061, + 0.006170328706502914, + 0.031000448390841484, + 0.036859333515167236, + 0.03349064290523529, + 0.04903708025813103, + -0.024261945858597755, + 0.028087500482797623, + 0.05191391333937645, + -0.0034743892028927803, + 0.043656133115291595, + -0.022435039281845093, + 0.03723306953907013, + -0.00914817675948143, + 0.03161946311593056, + -0.0033458785619586706, + 0.03630843386054039, + -0.021668866276741028, + 0.00830224622040987, + 0.01109074242413044, + 0.05238519236445427, + 0.006575754843652248, + -0.011564022861421108, + -0.012485641054809093, + -0.03207995742559433, + 0.05123637616634369, + 0.07319790124893188, + 0.04140768572688103, + 0.04369957372546196, + -0.020775672048330307, + -0.008594905957579613, + 0.053294725716114044, + -0.02670346014201641, + -0.03664064779877663, + -0.0380929671227932, + 0.01938764937222004, + -0.009732617065310478, + -0.006083271931856871, + 0.015469657257199287, + -0.008109447546303272, + 0.003183896653354168, + 0.04750632867217064, + 0.04255544766783714, + 0.04624705761671066, + -0.024534014984965324, + -0.029704956337809563, + -0.0013226330047473311, + -0.00923484843224287, + -0.04240996018052101, + -0.02728833630681038, + 0.014407308772206306, + 0.01740092597901821, + 0.05232854187488556, + 0.002536801155656576, + -0.04413590580224991, + -0.0004371499235276133, + -0.01816447079181671, + 0.010830082930624485, + 0.010573156177997589, + -0.005130264908075333, + -0.04602733254432678, + -0.008410668931901455, + -0.08897516131401062, + -0.03737752139568329, + -0.04809428006410599, + 0.02350381575524807, + -0.05093957483768463, + -0.01898309402167797, + -0.06016305088996887, + -0.02713485062122345, + -0.00654043722897768, + 0.02580137364566326, + 0.036381375044584274, + -0.035979170352220535, + -0.044646140187978745, + 0.012033969163894653, + 0.005391970742493868, + -0.012125644832849503, + -0.03613600507378578, + 0.013088515028357506, + -0.002068782225251198, + 0.006628355477005243, + -0.0266098752617836, + -0.0030490278732031584, + -0.004264791030436754, + -0.051245853304862976, + -0.04097290709614754, + -0.04644007235765457, + -0.009149933233857155, + -0.003273153444752097, + -0.003062914591282606, + 0.009158165194094181, + -0.041806451976299286, + -0.015104086138308048, + -0.025336040183901787, + -0.018267428502440453, + 0.04584585130214691, + -0.060805726796388626, + 0.021927889436483383, + -0.04591727256774902, + 0.02995583787560463, + 0.03174251317977905, + -0.028949998319149017, + 0.0030198751483112574, + -0.022099599242210388, + 0.01715835928916931, + 0.03537924960255623, + 0.01260240375995636, + 0.043065667152404785, + 0.024158494547009468, + 0.0672038197517395, + -0.0003838732955045998, + -0.015044602565467358, + 0.013084765523672104, + -0.017070347443223, + 0.03880072757601738, + 0.014779237098991871, + 0.009556387551128864, + 0.003962874878197908, + -0.05954108387231827, + 0.01146453246474266, + -0.04374281316995621, + 0.0037346952594816685, + -0.007783247623592615, + 0.025231193751096725, + 0.03721551224589348, + 0.028091473504900932, + -0.013352125883102417, + -0.0008546566823497415, + -0.0996946468949318, + -0.03733289614319801, + 0.05226639658212662, + 0.010959358885884285, + -0.0254160538315773, + -0.017680630087852478, + -0.036547791212797165, + -0.010466855950653553, + 0.012850016355514526, + -0.015692923218011856, + -0.002840240951627493, + 0.021832255646586418, + -0.011745489202439785, + 0.03377920761704445, + -0.012251442298293114, + -0.020407967269420624, + 0.04534658417105675, + 0.02108270861208439, + -0.03748351335525513, + -0.00764903798699379, + -0.004352041985839605, + -0.011787708848714828, + -0.037683356553316116, + 0.005004274658858776, + -0.05570654943585396, + -0.00027756215422414243, + -0.009773166850209236, + 0.0445808544754982, + 0.025937523692846298, + 0.030231349170207977, + -0.025597214698791504, + 0.033450715243816376, + -0.01519131287932396, + -0.0002722972712945193, + -0.03213801980018616, + -0.03527528792619705, + 0.035887692123651505, + -0.008018163032829762, + 0.024456892162561417, + 0.004499656148254871, + 0.02985396422445774, + -0.043654099106788635, + -0.04878278821706772, + 0.05322220176458359, + 0.03684832528233528, + -0.0040893410332500935, + 7.875246228650212e-05, + 0.00864914245903492, + -0.026715237647294998, + 0.022825634106993675, + -0.04158089682459831, + 0.0038415102753788233, + -0.01548771746456623, + -0.04794483259320259, + -0.022266997024416924, + 0.02369946613907814, + 0.04448749125003815, + 0.007742750458419323, + 0.009191731922328472, + 0.008147066459059715, + 0.057913653552532196, + -0.001466218731366098, + -0.07170920073986053, + 0.03405051305890083, + -0.01778951659798622, + 0.01888604648411274, + -0.03065723180770874, + 0.012952959164977074, + -0.026885997503995895, + 0.04872278869152069, + 0.015017658472061157, + -0.009812242351472378, + -0.03520434722304344, + 0.029166720807552338, + -0.03274790942668915, + 0.042291928082704544, + -0.007626047357916832, + -0.03380225598812103, + -0.013923916965723038, + 0.010096676647663116, + 0.0010166279971599579, + -0.04313819482922554, + 0.014142785221338272, + -0.026280168443918228, + 0.030179554596543312, + 0.013798643834888935, + 0.05831354856491089, + -0.011004083789885044, + 0.022266240790486336, + 0.021728502586483955, + -0.0004313920217100531, + -0.04736730083823204, + -0.022987322881817818, + 0.03923333063721657, + -0.018195878714323044, + 0.03407157212495804, + -0.004588320851325989, + -0.0010537697235122323, + -0.046111129224300385, + 0.01879757270216942, + -0.031094666570425034, + 0.008275243453681469, + 0.0028486454393714666, + -0.006192739587277174, + -0.00981973484158516, + 0.019513551145792007, + 0.01290219184011221, + -0.029618537053465843, + 0.03126314654946327, + -0.024344824254512787, + -0.04375690594315529, + 0.05804271623492241, + -0.003282972378656268, + -0.015761762857437134, + 0.04699293151497841, + -0.020069396123290062, + -0.022067975252866745, + 0.028439894318580627, + 0.04447300732135773, + -0.0257499348372221, + 0.014563561417162418, + 0.07206946611404419, + -0.03896607458591461, + -0.004862320609390736, + 0.04461676627397537, + 0.020095406100153923, + 0.02488948591053486, + -0.0009335626382380724, + -0.04952040687203407, + 0.013039854355156422, + -0.007421872112900019, + -0.02054249309003353, + -0.0008635060512460768, + 0.04435734078288078, + -0.04075170308351517, + 0.016822218894958496, + -0.01790933683514595, + -0.010848639532923698, + 0.023950140923261642, + -0.000263402471318841, + -0.03356045112013817, + -0.004012443125247955, + 0.02143521048128605, + 0.019189439713954926, + 0.017524216324090958, + -0.07571075856685638, + 0.06545384228229523, + -0.052576955407857895, + -0.0165097713470459, + -0.016174176707863808, + -0.04449176788330078, + -0.014812592417001724, + 0.010979996994137764, + 0.014835190959274769, + -0.004716750234365463, + 0.0191611610352993, + 0.010854175314307213, + 0.013732170686125755, + -0.005011436063796282, + 0.021250201389193535, + 0.015152540057897568, + 0.008927182294428349, + 0.046199217438697815, + 0.030865205451846123, + 0.027222702279686928, + -0.09452900290489197, + 0.022501187399029732, + -0.03269195556640625, + 0.027085520327091217, + 0.0156294833868742, + 0.07456795871257782, + -0.030119605362415314, + 0.07604414969682693, + -0.011455588974058628, + 0.02953753061592579, + 0.01574244350194931, + 0.028556805104017258, + 0.02080739662051201, + 0.02528923936188221, + 0.01131682563573122, + 0.035310689359903336, + -0.06135563179850578, + 0.038874976336956024, + -0.05621560290455818, + 0.05095585063099861, + 0.03776952251791954, + 0.007921446114778519, + -0.045440416783094406, + 0.0047388277016580105, + 0.035496786236763, + 0.04816026613116264, + -0.061444852501153946, + -0.025699304416775703, + -0.02680647000670433, + 0.06280165165662766, + -0.010863942094147205, + -0.01450643315911293, + 0.04069652035832405, + 0.002840836066752672, + 0.004423720762133598, + 0.026488330215215683, + 0.015391821973025799, + 0.01384359784424305, + 0.04901549592614174, + -0.00481057446449995, + -0.0646466463804245, + -0.015503180213272572, + -0.016645140945911407, + 0.025673406198620796, + -0.0012172687565907836, + 0.009337116032838821, + 0.014144678600132465, + -0.051371507346630096, + -0.024059904739260674, + 0.002740845549851656, + 0.010154726915061474, + 0.01569449156522751, + -0.01899494044482708, + -0.004816761706024408, + -0.0028925915248692036, + 0.006129807326942682, + -0.025470519438385963, + -0.01526882778853178, + -0.10884666442871094, + 0.05436870828270912, + 0.017843978479504585, + 0.020406078547239304, + -0.009703454561531544, + 0.0023826227989047766, + -0.015123425982892513, + -0.023551473394036293, + 0.040434256196022034, + -0.0242727380245924, + -0.023262348026037216, + -0.024248825386166573, + 0.0376557894051075, + 0.025205986574292183, + 0.007082282565534115, + -0.008995937183499336, + -0.031434476375579834, + 0.014375539496541023, + 0.05277954787015915, + 0.05972567945718765, + -0.041737113147974014, + 0.0015108134830370545, + -0.019146956503391266, + 0.020904798060655594, + -0.016385070979595184, + -0.0037445330526679754, + -0.047658771276474, + 0.030472317710518837, + -0.003571530571207404, + 0.036745335906744, + -0.003943673335015774, + -0.039646416902542114, + -0.010089139454066753, + 0.04793944209814072, + -0.044747382402420044, + -0.0008907863521017134, + -0.018454095348715782, + 0.03772056847810745, + 0.03926830366253853, + 0.0019010072574019432, + 0.03269662335515022, + -0.04579601064324379, + 0.03600696101784706, + 0.004316125065088272, + -0.0014812540030106902, + 0.011460158042609692, + 0.02983451634645462, + -0.02126331627368927, + 0.02156645804643631, + 0.03507082909345627, + 0.05038943886756897, + -0.012147342786192894, + 0.029621869325637817, + 0.004526112228631973, + 0.008097396232187748, + 0.019052349030971527, + -0.02606166899204254, + 0.0009032944799400866, + -0.01815309375524521, + -0.039628151804208755, + -0.021987251937389374, + 0.03184505179524422, + 0.026326067745685577, + 0.03608572483062744, + 0.04097434878349304, + 0.0030385807622224092, + 0.004184522200375795, + -0.037033677101135254, + -0.02766100876033306, + -0.014049996621906757, + 0.07507655024528503, + 0.01423016469925642, + 0.06259522587060928, + -0.006615878082811832, + -0.007741545792669058, + 0.008425016887485981, + -0.02046336606144905, + 0.013714267872273922, + 0.003785938723012805, + -0.0002833153121173382, + 0.04130011424422264, + 0.0010464891092851758, + -0.03048553876578808, + -0.008155658841133118, + -0.009835503064095974, + -0.029892312362790108, + -0.04368564113974571, + -0.01083366572856903, + 0.031520165503025055, + 0.018892554566264153, + -0.02070733718574047, + 0.022790448740124702, + 0.00038995148497633636, + 0.008428052999079227, + 0.03602954000234604, + -0.035193830728530884, + 0.02474966272711754, + -0.006360012572258711, + 0.029997359961271286, + -0.025587351992726326, + 0.04792368784546852, + 0.04594758525490761, + -0.015494287014007568, + 0.02274453267455101, + -0.019180651754140854, + 0.026897592470049858, + -0.014370513148605824, + 0.024879056960344315, + 0.012040121480822563, + 0.026221444830298424, + 0.011265994980931282, + 0.000498666544444859, + -0.014749880880117416, + 0.030141614377498627, + -0.01620054803788662, + 0.051670629531145096, + -0.00151538266800344, + -0.04693570360541344, + 0.0490429662168026, + 0.0055783954448997974, + 0.009846585802733898, + -0.021794753149151802, + 0.01406463235616684, + 0.03686558082699776, + 0.015347151085734367, + 0.049036625772714615, + 0.007574695162475109, + -0.018525302410125732, + 0.04717082530260086, + -0.029649820178747177 + ], + "start_index": 11293, + "end_index": 12318, + "token_count": 173, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "a5b6ad1a-63a7-57ca-8bf8-2fa1df2db59d", + "_source": { + "text": "\n\n### 5.2 Cliente HTTP Externo (RequestPost / RequestGet)\n\nPara evitar hilos bloqueados por latencia de red, AVAP exige un parámetro de **timeout** (en milisegundos). Si se supera, la variable destino recibe `None`.\n\n* **`RequestPost(url, querystring, headers, body, destino, timeout)`**: Ejecuta un POST almacenando la respuesta en `destino`.\n* **`RequestGet(url, querystring, headers, destino, timeout)`**: Ejecuta un GET omitiendo el cuerpo.\n\n### 5.3 Conector de Bases de Datos y ORM\n\nAVAP utiliza `avapConnector(\"TOKEN\")` para la hidratación segura de credenciales. Las operaciones se ejecutan sobre una tabla específica definida por el parámetro `tableName`.\n\n* **`ormCheckTable(tableName, varTarget)`**: Verifica la existencia de una tabla en la base de datos conectada.\n* **`ormCreateTable(fields, fieldsType, tableName, varTarget)`**: Comando DDL para creación de tablas.\n* **`ormAccessSelect(fields, tableName, selector, varTarget)`**: Recupera registros. `fields` acepta `*` o lista de campos. El `selector` es la cláusula WHERE (puede estar vacío). Devuelve una lista de diccionarios.\n* **`ormAccessInsert(fieldsValues, tableName, varTarget)`**: Inserción parametrizada de registros en la tabla `tableName`.\n* **`ormAccessUpdate(fields, fieldsValues, tableName, selector, varTarget)`**: Modifica registros existentes. El `selector` es obligatorio para delimitar el alcance del cambio en la tabla `tableName`.\n* **`ormDirect(sentencia, destino)`**: Ejecución de SQL crudo para consultas analíticas complejas.\n\n\n\n---\n\n### Especificación BNF (Sección V)\n\n\n\n/* Instanciación de conector de terceros y llamada a sus métodos dinámicos */\n ::= | \n ::= \"=\" \"avapConnector(\" \")\"\n ::= [ \"=\" ] \".\" \"(\" [] \")\"\n\n/* Cliente HTTP con Timeout Obligatorio */\n ::= | \n ::= \"RequestPost(\" \",\" \",\" \",\" \",\" \",\" \")\"\n ::= \"RequestGet(\" \",\" \",\" \",\" \",\" \")\"\n\n/* ORM y Persistencia (Estandarizado con tableName) */\n ::= | | | | | \n ::= \"ormDirect(\" \",\" \")\"\n ::= \"ormCheckTable(\" \",\" \")\"\n ::= \"ormCreateTable(\" \",\" \",\" \",\" \")\"\n\n/* ormAccessSelect(fields, tableName, selector, varTarget) */\n ::= \"ormAccessSelect(\" \",\" \",\" [] \",\" \")\"\n ::= \"*\" | \n\n/* ormAccessInsert(fieldsValues, tableName, varTarget) */\n ::= \"ormAccessInsert(\" \",\" \",\" \")\"\n\n/* ormAccessUpdate(fields, fieldsValues, tableName, selector, varTarget) */\n ::= \"ormAccessUpdate(\" \",\" \",\" \",\" \",\" \")\"", + "embedding": [ + -0.03806424140930176, + 0.016385002061724663, + -0.010330062359571457, + -0.07929668575525284, + 0.05733799561858177, + -0.0069165583699941635, + 0.030878370627760887, + 0.008859413675963879, + -0.008123375475406647, + -0.015154439024627209, + -0.04000028222799301, + 0.0013574922922998667, + -0.01845366880297661, + -0.008869851939380169, + -0.03329610079526901, + 0.05539863556623459, + -0.017308952286839485, + -0.0376289039850235, + 0.011513764970004559, + 0.028019681572914124, + 0.038466282188892365, + 0.03289252147078514, + 0.02090797945857048, + 0.03250003606081009, + -0.00022162558161653578, + -0.05523635819554329, + -0.01951930858194828, + 0.06373461335897446, + -0.05655983090400696, + -0.04863012954592705, + 0.009962059557437897, + 0.006827665958553553, + -0.07525283098220825, + -0.005158221814781427, + -0.01512090489268303, + -0.011464235372841358, + 0.03167932108044624, + -0.07548016309738159, + 0.043412111699581146, + -0.0148533396422863, + 0.01246462482959032, + 0.021934302523732185, + 0.10834487527608871, + 0.024061905220150948, + -0.0010385181521996856, + -0.0715278908610344, + 0.040739428251981735, + -0.023381005972623825, + 0.022679615765810013, + -0.0018459014827385545, + -0.02877313829958439, + -0.009576444514095783, + 0.02562212571501732, + -0.03320855647325516, + -0.014411227777600288, + 0.013680096715688705, + 0.007005559746176004, + -0.027737237513065338, + -0.01911587454378605, + 0.02459786646068096, + -0.05982958525419235, + -0.015979446470737457, + -0.003084729192778468, + -0.045798901468515396, + -0.014306663535535336, + 0.006006235722452402, + 0.04418554529547691, + 0.01067293155938387, + -0.07946489751338959, + -0.020669547840952873, + 0.01499902829527855, + -0.09403088688850403, + -0.004361209459602833, + 0.06017551198601723, + 0.009861605241894722, + 0.04830439016222954, + -0.0007421015179716051, + 0.01456456445157528, + 0.022516563534736633, + 0.029411768540740013, + -0.0257781483232975, + 0.0376315712928772, + 0.01155838556587696, + 0.0002206896460847929, + 0.004069570451974869, + 0.05814509093761444, + -0.04927080497145653, + -0.026644352823495865, + 0.023272639140486717, + -0.04083752632141113, + 0.05471314862370491, + -0.034285154193639755, + -0.0728740319609642, + -0.007553562987595797, + 0.04834650829434395, + 0.012122689746320248, + -0.041846200823783875, + -0.028685707598924637, + -0.025197917595505714, + 0.015312936156988144, + 0.004775663372129202, + -0.00993521511554718, + -0.015646761283278465, + 0.026802202686667442, + 0.0006527467048726976, + 0.026156052947044373, + -0.07526586949825287, + 0.007263042498379946, + 0.016096558421850204, + -0.05101962015032768, + -0.03627914562821388, + -0.013951500877737999, + -0.015619874931871891, + 0.03005054220557213, + -0.03287319093942642, + 0.03965695947408676, + -0.004842275753617287, + 0.014370760880410671, + 0.003934906329959631, + -0.01709171012043953, + -0.010192548856139183, + 0.0064199757762253284, + 0.01680251583456993, + -0.006390580907464027, + -0.0029177467804402113, + 0.031827688217163086, + -0.04708604887127876, + -0.003435121150687337, + -0.0165787935256958, + -0.0073209283873438835, + 0.03211505338549614, + 0.010766143910586834, + -0.017680464312434196, + 0.04100317880511284, + -0.006096542812883854, + -0.012826403602957726, + 0.04701542854309082, + -0.03269736096262932, + 0.03100542351603508, + -0.0001870120468083769, + -0.04619362950325012, + -0.034156620502471924, + 0.00606490857899189, + -0.027496179565787315, + 0.022946584969758987, + 0.03295968100428581, + 0.006940214894711971, + 0.0070824455469846725, + 0.0036237910389900208, + -0.0324077233672142, + 0.049346763640642166, + 0.00783228874206543, + -0.029934747144579887, + -0.013862622901797295, + -0.006734341848641634, + -0.024331392720341682, + 0.012618073262274265, + -0.014075277373194695, + 0.0018022207077592611, + 0.038293734192848206, + 0.011539158411324024, + -0.016760872676968575, + -0.022523514926433563, + -0.0296713225543499, + 0.0006404015584848821, + 0.015682242810726166, + 0.0011363605735823512, + -0.021627724170684814, + -0.03165695443749428, + -0.018548861145973206, + 0.02894175611436367, + 0.012042651884257793, + 0.005915297660976648, + -0.006252095568925142, + -0.007148084230720997, + -0.043935924768447876, + -0.0460563600063324, + -0.04206814616918564, + 0.030345428735017776, + 0.00680955033749342, + 0.014866002835333347, + -0.030141307041049004, + 0.0282597579061985, + 0.019050460308790207, + 0.0114524494856596, + 0.04314683377742767, + 5.3522351663559675e-05, + 0.009436664171516895, + -0.04626978188753128, + -0.008627036586403847, + 0.012885491363704205, + -0.02398425154387951, + -0.0019731707870960236, + -0.0007685665623284876, + -0.013869109563529491, + -0.023530498147010803, + 0.004612793680280447, + -0.00018951608217321336, + 0.003186658024787903, + -0.0031606745906174183, + -0.00030278830672614276, + -0.04570220783352852, + 0.0037658000364899635, + 0.00886229332536459, + -0.008588455617427826, + -0.004486389923840761, + 0.003794199088588357, + -0.0417521633207798, + -0.01478881761431694, + -0.0208401121199131, + -0.028455665335059166, + 0.008671574294567108, + 0.014695319347083569, + -0.05016306787729263, + 0.020687097683548927, + -0.03284548968076706, + 0.02703755721449852, + 0.01973119005560875, + 0.018877699971199036, + 0.015337415970861912, + 0.004917717073112726, + 0.008114377968013287, + -0.0600188672542572, + 0.005936561618000269, + -0.0032726586796343327, + -0.020420102402567863, + -0.016383187845349312, + 0.018836243078112602, + 0.007532407529652119, + 0.0001582214463269338, + -0.02782844565808773, + -0.0027924494352191687, + 0.0004952260642312467, + 0.017180543392896652, + 0.015804966911673546, + 0.0033604889176785946, + 0.004054287448525429, + -0.03851712867617607, + 0.019392546266317368, + 0.045891232788562775, + 0.003969050012528896, + -0.007899957709014416, + 0.0010667262831702828, + -0.011440637521445751, + -0.014811706729233265, + 0.027980495244264603, + -0.00935206189751625, + -0.026829082518815994, + -0.03695375844836235, + 0.0379205122590065, + 0.0479997880756855, + 0.02831888757646084, + 0.03648189455270767, + 0.03494393453001976, + 0.016279175877571106, + -0.024609476327896118, + -0.013436302542686462, + -0.002518370747566223, + 0.0281459242105484, + 0.028162572532892227, + 0.05057833343744278, + -0.021694611757993698, + 0.012754080817103386, + 0.03331105411052704, + -0.03316212445497513, + 0.022262370213866234, + 0.022618984803557396, + 0.0010931057622656226, + -0.022220458835363388, + -0.005556948482990265, + 0.026530317962169647, + 0.008693056181073189, + -0.004220080561935902, + 0.0025874224957078695, + 0.00755627965554595, + 0.012868239544332027, + -0.026077255606651306, + -0.12028974294662476, + 0.023528629913926125, + 0.004783300217241049, + 0.01337179634720087, + -0.022072352468967438, + -0.03346551954746246, + -0.0368523895740509, + 0.02392796240746975, + 0.030700664967298508, + 0.02529037743806839, + -0.016358185559511185, + 0.02657339721918106, + 0.01474172156304121, + 0.044580984860658646, + -0.00022741410066373646, + 0.010998377576470375, + 0.021509401500225067, + -0.013069700449705124, + -0.024092085659503937, + -0.0026274225674569607, + -0.02346535213291645, + 0.015178607776761055, + -0.036365196108818054, + -0.004800759255886078, + -0.023758085444569588, + 0.008378398604691029, + 0.019066715613007545, + 0.012456409633159637, + -0.014057758264243603, + 0.027535784989595413, + -0.06859424710273743, + 0.01699557900428772, + 0.008642645552754402, + 0.021566834300756454, + 0.0048783812671899796, + -0.007559649180620909, + 0.024498149752616882, + -0.02805297262966633, + 0.017350804060697556, + -0.024654578417539597, + 0.016315609216690063, + 0.036300111562013626, + -0.043433766812086105, + -0.013502957299351692, + -0.01719382219016552, + -0.037426456809043884, + 0.04729846119880676, + 0.04299656301736832, + -0.03419306501746178, + 0.012453657574951649, + 0.03012419119477272, + -0.011239774525165558, + 0.057757750153541565, + 0.0680537074804306, + 0.05548843741416931, + 0.03754878789186478, + -0.020919743925333023, + 0.020913653075695038, + -0.006825319491326809, + 0.026790548115968704, + -0.0005031907930970192, + 0.009469294920563698, + -0.034267354756593704, + -0.03852606192231178, + 0.0004770078812725842, + -0.004004219081252813, + -0.026460064575076103, + -0.01949511654675007, + 0.03804290294647217, + -0.02165801450610161, + 0.007416160311549902, + 0.016474151983857155, + -0.0065714577212929726, + 0.04634588211774826, + 0.01545324083417654, + 0.00731611205264926, + 0.026508519425988197, + 0.002344312146306038, + 0.04532553628087044, + 0.036469027400016785, + 0.03655601292848587, + -0.01206908468157053, + -0.015876784920692444, + -0.02988101914525032, + 0.030045704916119576, + 0.025498196482658386, + -0.018415486440062523, + 0.005656109191477299, + -0.024013156071305275, + -0.06470342725515366, + -0.04600679874420166, + 0.05936947092413902, + -0.011430193670094013, + -0.10460823029279709, + -0.05514908581972122, + -0.003205266548320651, + 0.057295672595500946, + 0.010454010218381882, + 0.013286562636494637, + 0.05505770444869995, + -0.053682222962379456, + -0.054198116064071655, + 0.0601520873606205, + 0.06557251513004303, + -0.0341629758477211, + -0.004640731494873762, + -0.0024555674754083157, + -0.02790156379342079, + -0.08006754517555237, + 0.010136054828763008, + -0.039118196815252304, + -0.01386949885636568, + 0.021168341860175133, + -0.014920824207365513, + 0.04537201672792435, + 0.03043692745268345, + 0.0370246097445488, + 0.008927757851779461, + 0.06949717551469803, + -0.06153217703104019, + 0.06650993973016739, + -0.04547523707151413, + -0.007893897593021393, + 0.029197150841355324, + -0.003229384310543537, + -0.05327891930937767, + 0.053483106195926666, + 0.018324531614780426, + 0.00861550122499466, + 0.01683124527335167, + -0.02373962104320526, + 0.0199896227568388, + 0.02161846123635769, + 0.03430157154798508, + 0.050246406346559525, + -0.014494543895125389, + 0.041888002306222916, + -0.024099858477711678, + -0.013706134632229805, + -0.0025593277532607317, + -0.0337027832865715, + -0.0292686615139246, + 0.051139138638973236, + -0.03656437247991562, + 0.043926678597927094, + -0.0083551574498415, + -0.06931357830762863, + 0.007887621410191059, + 0.05017000064253807, + -0.020427972078323364, + -0.01791890151798725, + -0.01991349831223488, + 0.008080518804490566, + -0.035189226269721985, + 0.0024910825304687023, + 0.0114119378849864, + 0.04926799610257149, + -0.061762575060129166, + 0.08231759071350098, + 0.05531224235892296, + 0.02137708105146885, + 0.023828938603401184, + 0.006107064429670572, + -0.007571228314191103, + 0.0037606589030474424, + 0.01952374167740345, + -0.021584870293736458, + -0.04352826625108719, + -0.012032921425998211, + 0.04708930850028992, + 0.013722814619541168, + -0.005614740774035454, + 0.0021366893779486418, + -0.010613517835736275, + -0.026568705216050148, + 0.0028375855181366205, + 0.01041407324373722, + 0.03904766961932182, + -0.02907952293753624, + 0.009066256694495678, + -0.05749373137950897, + 0.005189758259803057, + 0.042980607599020004, + 0.004350340459495783, + 0.062367163598537445, + -0.012755394913256168, + -0.019591130316257477, + -0.01745394431054592, + 0.02190207503736019, + 0.0027829580940306187, + -0.026444006711244583, + 0.05621742457151413, + 0.007302680518478155, + 0.02862418442964554, + -0.01833866722881794, + -0.044252268970012665, + -0.03055204637348652, + 0.005866977386176586, + -0.010480756871402264, + -0.05152490735054016, + 0.015356934629380703, + -0.03879290074110031, + 0.025703852996230125, + 0.0474354512989521, + -0.002510987687855959, + 0.009861747734248638, + 0.015581256709992886, + 0.07071926444768906, + -0.015614849515259266, + -0.01804104447364807, + -0.03686553239822388, + -0.01293911598622799, + 0.027924176305532455, + 0.00262262299656868, + 0.05356668680906296, + 0.039849743247032166, + -0.054238758981227875, + 0.037962064146995544, + -0.03248726204037666, + 0.01829475350677967, + -0.06909075379371643, + -0.0641731396317482, + 0.05096299573779106, + 0.04233745113015175, + 0.042120542377233505, + -0.00827909354120493, + 0.005587296094745398, + -0.023020928725600243, + -0.03189520165324211, + -0.021284136921167374, + -0.04981207847595215, + 0.016940945759415627, + 0.04419415071606636, + 0.02587095834314823, + -0.02508743479847908, + 0.011752099730074406, + 0.018244195729494095, + -0.005811539012938738, + -0.003079896792769432, + 0.03965192660689354, + 0.04397502914071083, + -0.060047708451747894, + -0.00024196834419853985, + -0.0054899766109883785, + -0.03644025698304176, + 0.02017909660935402, + -0.041425954550504684, + -0.010262707248330116, + -0.007057712413370609, + -0.029273228719830513, + 0.015738457441329956, + 0.018056374043226242, + 0.001751888426952064, + 0.010780123993754387, + -0.03723442927002907, + 0.009873203933238983, + -0.0019949497655034065, + -0.015108190476894379, + -0.014934464357793331, + -0.04734979569911957, + 0.01151658408343792, + -0.00644762022420764, + -0.01929362304508686, + 0.02731664478778839, + 0.05161721631884575, + 0.005084081087261438, + 0.005577501840889454, + 0.009631450287997723, + 0.027256889268755913, + -0.011448316276073456, + 0.07143534719944, + -0.014483981765806675, + 0.01934068091213703, + 0.06028906628489494, + 0.005072408821433783, + 0.041533391922712326, + -0.005166543647646904, + 0.0485154390335083, + -0.017271503806114197, + 0.02539377473294735, + 0.003332099411636591, + 0.05096942558884621, + 0.004261954687535763, + 0.02118096873164177, + 0.010975398123264313, + 0.04380642995238304, + -0.012576112523674965, + 0.028418119996786118, + -0.007364112418144941, + -0.02131483145058155, + 0.07374979555606842, + 0.018128884956240654, + 0.033151235431432724, + 0.03989863768219948, + -0.04548976570367813, + 0.011588405817747116, + 0.03576715290546417, + -0.0030809002928435802, + -0.01767752319574356, + -0.021482674404978752, + -0.008659719489514828, + -0.008024116978049278, + -0.0229323860257864, + 0.012295057065784931, + 0.037022486329078674, + 0.008131422102451324, + 0.036027565598487854, + 0.05293802171945572, + 0.04128691554069519, + 0.016315706074237823, + -0.010869610123336315, + 0.011896872892975807, + -0.02345622144639492, + -0.050672221928834915, + -0.06435796618461609, + 0.022731920704245567, + -0.013593938201665878, + 0.0577407069504261, + 0.010179949924349785, + -0.06944939494132996, + -0.017139123752713203, + -0.028935587033629417, + -0.0012438828125596046, + -0.012711526826024055, + 0.010292518883943558, + -0.05389272794127464, + -0.022242356091737747, + -0.07192879170179367, + -0.021966950967907906, + -0.01566309668123722, + 0.03813713788986206, + -0.008812431246042252, + -0.04519785940647125, + -0.017557159066200256, + -0.01645544171333313, + 0.017128359526395798, + 0.01652584783732891, + 0.021400758996605873, + -0.04298175871372223, + -0.03564174100756645, + 0.038713715970516205, + 0.010503266006708145, + -0.03159138560295105, + -0.016356350854039192, + 0.014299096539616585, + 0.011328023858368397, + 0.01898433268070221, + -0.0039293766021728516, + 0.009330231696367264, + 0.0011980299605056643, + -0.05044547840952873, + -0.05055763199925423, + -0.05808199569582939, + -0.03431132435798645, + -0.015553840436041355, + -0.017234547063708305, + -0.02275354228913784, + -0.02741267718374729, + 0.013827736489474773, + -0.004845541436225176, + -0.022328590974211693, + 0.056650348007678986, + -0.051415763795375824, + 0.019510889425873756, + -0.04499774053692818, + 0.008996515534818172, + 0.005464330781251192, + 0.024596644565463066, + 0.0005160155124031007, + -0.029277781024575233, + 0.00957733765244484, + 0.005728591233491898, + -0.0019994243048131466, + 0.061519306153059006, + 0.058000367134809494, + 0.034450359642505646, + 0.0023806942626833916, + -0.0036994474940001965, + 0.007244533859193325, + -0.02968655340373516, + 0.04654012992978096, + 0.004845065996050835, + -0.014405850321054459, + 0.025561120361089706, + -0.07447823137044907, + -0.02335774153470993, + -0.05455772206187248, + -0.017872117459774017, + 0.006861923728138208, + 0.03545071929693222, + 0.015550415962934494, + 0.02926514856517315, + -0.01768464781343937, + -0.004410165827721357, + -0.023531565442681313, + -0.044407520443201065, + 0.03165680170059204, + 0.00920482911169529, + -0.013368417508900166, + -0.004296884406358004, + -0.04955971613526344, + -0.01664075069129467, + 0.01537143811583519, + -0.00958158541470766, + -0.03674757108092308, + 0.04460878670215607, + -0.032437942922115326, + 0.028392022475600243, + -0.043983861804008484, + -0.02535531483590603, + 0.041229136288166046, + 0.025597380474209785, + -0.05494195595383644, + -0.014511151239275932, + -0.011378814466297626, + 0.010071566328406334, + -0.03828871250152588, + 0.006283001974225044, + -0.03168113902211189, + -0.012677366845309734, + 0.019076189026236534, + 0.039367321878671646, + 0.009356200695037842, + 0.0469561330974102, + -0.047375187277793884, + 0.009081149473786354, + 0.0016051091952249408, + -0.020284689962863922, + -0.04524986073374748, + -0.030935464426875114, + 0.01661277748644352, + 0.0025572574231773615, + -0.004243896808475256, + 0.00999365746974945, + 0.010528093203902245, + -0.016700366511940956, + -0.052661191672086716, + 0.010097188875079155, + 0.00468881381675601, + -0.005001265089958906, + 0.005101179704070091, + -0.015214458107948303, + -0.019722875207662582, + 0.0518469363451004, + -0.07330368459224701, + 0.012624261900782585, + 0.016977986320853233, + -0.02573414519429207, + -0.00706113176420331, + 0.017656926065683365, + 0.06278231739997864, + -0.021117018535733223, + -0.007752984296530485, + 0.012975694611668587, + 0.03503633290529251, + -0.0019679139368236065, + -0.057423416525125504, + 0.03204876556992531, + -0.02496478706598282, + 0.049863845109939575, + 0.004597760271281004, + 0.010002476163208485, + -0.007877331227064133, + 0.03253435716032982, + -0.04269092157483101, + 0.017594601958990097, + -0.008287656120955944, + 0.00995654333382845, + -0.03256724029779434, + 0.07193570584058762, + -0.025107664987444878, + 0.03928852453827858, + -0.0174347385764122, + -0.02321700192987919, + -0.04429919645190239, + -0.030392667278647423, + 0.008563261479139328, + -0.033354103565216064, + 0.005908319726586342, + -0.015099582262337208, + 0.04251978173851967, + -0.029965801164507866, + -0.036284033209085464, + 0.01290902215987444, + -0.022316575050354004, + -0.04508151113986969, + -0.003955744672566652, + 0.03560904413461685, + 0.006230919621884823, + 0.04620703309774399, + -0.005071743857115507, + 0.03782082349061966, + -0.0010198241798207164, + 0.030287103727459908, + 0.004683243110775948, + 0.03349439799785614, + 0.005017838440835476, + 0.020815163850784302, + -0.00985534768551588, + 0.0376385897397995, + 0.019184553995728493, + -0.00597680639475584, + 0.045121435075998306, + -0.04114075005054474, + -0.02841075509786606, + 0.05296984687447548, + -0.02060646004974842, + -0.04862244054675102, + 0.03122982196509838, + 0.003674883861094713, + -0.008513472974300385, + 0.008074169047176838, + 0.036778487265110016, + -0.005916626192629337, + -0.023264987394213676, + 0.05945006012916565, + -0.026316003873944283, + 0.0063855694606900215, + 0.03259264677762985, + -0.0034991931170225143, + 0.034499093890190125, + 0.0025805176701396704, + -0.029673850163817406, + -0.0048704748041927814, + 0.012294567190110683, + -0.00938879232853651, + 0.008732291869819164, + 0.0209807101637125, + -0.02580256573855877, + 0.0347348153591156, + -0.0019058932084590197, + -0.029070360586047173, + 0.012837843969464302, + -0.00012094461999367923, + -0.016562554985284805, + -0.01627221703529358, + 0.016309788450598717, + 0.007148094940930605, + 0.0321807861328125, + -0.056749291718006134, + 0.044866256415843964, + -0.036761555820703506, + -0.047592826187610626, + -0.015040578320622444, + -0.03118915669620037, + -0.013215490616858006, + 0.00850077997893095, + -0.011244487017393112, + -0.0071444036439061165, + 0.028667932376265526, + 0.01906449720263481, + 0.001372464932501316, + -0.010630159638822079, + 0.006053576245903969, + -0.025814060121774673, + 0.03386241942644119, + 0.021653691306710243, + -0.009840249083936214, + -0.019695403054356575, + -0.053939614444971085, + -0.0050308178178966045, + -0.05270012095570564, + 0.034424908459186554, + -0.008941461332142353, + 0.06233068183064461, + -0.021996526047587395, + 0.09052251279354095, + -0.009039567783474922, + 0.0034943274222314358, + 0.04095001146197319, + 0.023171989247202873, + 0.03697935864329338, + 0.012321608141064644, + 0.027844330295920372, + 0.021023299545049667, + -0.030426306650042534, + -0.01788000389933586, + -0.08172444999217987, + 0.007357972674071789, + 0.026545178145170212, + 0.0114318011328578, + -0.05596718192100525, + 0.01827557012438774, + -0.004065921530127525, + 0.0053174057975411415, + -0.060445401817560196, + -0.03247416764497757, + -0.032514628022909164, + 0.061644185334444046, + -0.0012003148440271616, + 0.0014716826844960451, + 0.017127854749560356, + -0.007950742729008198, + 0.01441572979092598, + 0.03108832612633705, + 0.020315947011113167, + 0.022602830082178116, + -0.006995860952883959, + -0.007211014628410339, + -0.05272386968135834, + 0.006288372445851564, + -0.004976406693458557, + 0.02867104485630989, + -0.018729474395513535, + 0.020004186779260635, + 0.016446880996227264, + -0.04676566645503044, + -0.030636565759778023, + -0.0012680134968832135, + 0.01918817311525345, + 0.01216009259223938, + -0.030156413093209267, + -0.01884354278445244, + -0.007855082862079144, + -0.002947079949080944, + 0.002212787512689829, + -0.003175188321620226, + -0.11892791837453842, + 0.07294394075870514, + 0.045873817056417465, + 0.011734695173799992, + -0.00594435166567564, + -6.86147905071266e-05, + 0.006111158523708582, + -0.010101141408085823, + 0.0506957545876503, + -0.02014348655939102, + -0.0046370141208171844, + -0.03809942677617073, + 0.0429859384894371, + 0.03740867227315903, + -0.031709179282188416, + -0.020806122571229935, + -0.032259922474622726, + 0.030824722722172737, + 0.04497271031141281, + 0.04186854511499405, + -0.03182614594697952, + -0.005807826761156321, + -0.019313480705022812, + 0.036104705184698105, + -0.0017185101751238108, + -0.01314204279333353, + -0.045167695730924606, + 0.025255344808101654, + 0.0009918587747961283, + 0.01518979761749506, + -0.036569081246852875, + -0.025072649121284485, + 0.014254246838390827, + 0.030559800565242767, + -0.0141597306355834, + -0.009895806200802326, + -0.005685022566467524, + 0.002284426474943757, + 0.03647055849432945, + 0.026658274233341217, + 0.026346800848841667, + -0.05260806158185005, + 0.023207535967230797, + 0.0081406245008111, + -0.05556441470980644, + 0.037076447159051895, + 0.03541477769613266, + -0.026276003569364548, + 0.007953302934765816, + 0.015765126794576645, + 0.04084921255707741, + -0.042323898524045944, + 0.04100750759243965, + 0.032806601375341415, + 0.02380804717540741, + 0.03378446772694588, + -0.03538178652524948, + 0.000536587496753782, + -0.039317529648542404, + -0.055756568908691406, + -0.022005653008818626, + -0.020422043278813362, + -0.00293867033906281, + 0.033072445541620255, + 0.05953356623649597, + -0.04114232957363129, + 0.01707708276808262, + -0.03675726801156998, + -0.034007761627435684, + 9.986611985368654e-05, + 0.05821548402309418, + 0.022787567228078842, + 0.027084410190582275, + 0.028203343972563744, + -0.030362825840711594, + -0.003612569533288479, + 0.013391578570008278, + -0.0027428988832980394, + -0.004255017265677452, + 0.0002984024176839739, + 0.02712467685341835, + 0.01813729666173458, + -0.043981775641441345, + 0.007620403543114662, + -0.030487805604934692, + -0.041955798864364624, + -0.026210669428110123, + 0.011497939936816692, + 0.012791677378118038, + 0.03530365228652954, + -0.0006640013889409602, + 0.004543877672404051, + 0.026443254202604294, + 0.0007206174195744097, + 0.056905701756477356, + -0.01893175207078457, + 0.02051977440714836, + 0.024146761745214462, + 0.02479824237525463, + -0.005945174489170313, + -0.018728896975517273, + 0.06995765119791031, + -0.008279610425233841, + 0.024934368208050728, + 0.00618381705135107, + 0.014557354152202606, + 0.0034761226270347834, + -0.0035431399010121822, + 0.012794097885489464, + 0.04556792974472046, + 0.027905359864234924, + 0.010292697697877884, + 0.0026990051846951246, + 0.0513424426317215, + 0.0034251606557518244, + 0.04200654476881027, + 0.0384209007024765, + -0.049512945115566254, + 0.036804284900426865, + -0.03381220996379852, + 0.04287828132510185, + -0.04507015645503998, + 0.03172602131962776, + 0.005932777188718319, + 0.008159360848367214, + -0.01158165279775858, + -0.029461978003382683, + -0.006662693340331316, + 0.052270498126745224, + -0.040732111781835556 + ], + "start_index": 12318, + "end_index": 15580, + "token_count": 413, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "2eacce6c-a91f-58fc-bcaa-b4345859588e", + "_source": { + "text": "\n\n> **Nota de implementación:** `` se distingue de `` (ORM) únicamente por contexto semántico: el UUID pasado como argumento determina si el adaptador resuelto es un ORM de base de datos o un proxy de terceros. La gramática los trata de forma idéntica; el motor de ejecución selecciona el adaptador apropiado en runtime.\n\n---\n\n## SECCIÓN VI: Utilidades, Criptografía y Manipulación de Datos\n\nAVAP incluye un set de comandos integrados de alto nivel para manipular tipos complejos (JSON y Listas), tiempos, textos y generar hashes.\n\n### 6.1 Manipulación Nativa de Listas y Objetos JSON\nPara extraer y mutar estructuras complejas, AVAP provee comandos nativos específicos:\n* **`variableToList(elemento, destino)`**: Fuerza a que una variable escalar se convierta en una estructura iterable de lista.\n* **`itemFromList(lista_origen, indice, destino)`**: Extrae de forma segura el elemento contenido en la posición `indice` de una lista.\n* **`variableFromJSON(json_origen, clave, destino)`**: Parsea un objeto JSON en memoria y extrae el valor correspondiente a la `clave`.\n* **`AddVariableToJSON(clave, valor, json_destino)`**: Inyecta dinámicamente una nueva propiedad dentro de un objeto JSON existente.\n\n### 6.2 Criptografía y Expresiones Regulares\n* **`encodeSHA256` y `encodeMD5(origen, destino)`**: Funciones criptográficas que encriptan de forma irreversible un texto. Vitales para el almacenamiento seguro de contraseñas.\n* **`getRegex(origen, patron, destino)`**: Aplica una Expresión Regular (`patron`) sobre la variable de origen, extrayendo las coincidencias exactas.\n\n### 6.3 Transformación de Tiempo y Cadenas\n* **Fechas:** `getTimeStamp` (convierte un string a Epoch), `getDateTime` (Epoch a string legible), y `stampToDatetime` (Epoch a objeto datetime estructurado). Soportan formatos de calendario y cálculos con TimeDeltas.\n* **Cadenas:** `replace` (saneamiento y sustitución de texto) y `randomString` (generación determinista de claves/tokens aleatorios).\n\n### Especificación BNF (Sección VI)\n\n\n\n/* [CORRECCIÓN] Todas las subreglas de están ahora completamente expandidas. */\n ::= | | | | | | \n\n/* Manipulación de listas y JSON */\n ::= \"variableToList(\" \",\" \")\"\n | \"itemFromList(\" \",\" \",\" \")\"\n | \"variableFromJSON(\" \",\" \",\" \")\"\n | \"AddVariableToJSON(\" \",\" \",\" \")\"\n\n/* Criptografía */\n ::= \"encodeSHA256(\" \",\" \")\"\n | \"encodeMD5(\" \",\" \")\"\n\n/* Expresiones regulares */\n ::= \"getRegex(\" \",\" \",\" \")\"\n\n ::= \"getDateTime(\" \",\" \",\" \",\" \")\"\n/* Argumentos: formato_salida, epoch_origen, zona_horaria, destino */\n\n ::= \"stampToDatetime(\" \",\" \",\" \",\" \")\"\n/* Argumentos: epoch_origen, formato, timedelta, destino */\n | \"getTimeStamp(\" \",\" \",\" \",\" \")\"\n/* Argumentos: fecha_string, formato_entrada, timedelta, destino */\n\n ::= \"randomString(\" \",\" \")\"\n/* Argumentos: longitud, destino */\n\n ::= \"replace(\" \",\" \",\" \",\" \")\"\n/* Argumentos: origen, patron_busqueda, reemplazo, destino */", + "embedding": [ + -0.0016488487599417567, + 0.013725160621106625, + -0.015719600021839142, + -0.10092736780643463, + 0.05348442494869232, + -0.012150867842137814, + -0.0002894426870625466, + 0.02035011537373066, + 0.004425389226526022, + -0.03557846322655678, + -0.04629364609718323, + -0.008859390392899513, + -0.017838168889284134, + -0.012866629287600517, + -0.047560274600982666, + 0.06368528306484222, + 0.00958297774195671, + 0.028602780774235725, + -0.055210743099451065, + 0.004397136624902487, + 0.030957983806729317, + 0.021016595885157585, + 0.017046116292476654, + 0.05868569388985634, + 0.014237250201404095, + -0.03463286906480789, + -0.027224266901612282, + 0.03845154121518135, + -0.04531806707382202, + -0.021003196015954018, + 0.00024219682381954044, + -0.05458657443523407, + -0.07241712510585785, + -0.03665141761302948, + -0.0150899114087224, + -0.017890775576233864, + 0.026411281898617744, + -0.039293691515922546, + 0.012744499370455742, + -0.019380945712327957, + -0.01217129547148943, + 0.012438710778951645, + 0.08197474479675293, + 0.041351642459630966, + -0.0020967302843928337, + -0.061734773218631744, + 0.023311620578169823, + -0.05317539721727371, + 0.031963687390089035, + 0.0049211434088647366, + -0.04223480448126793, + -0.006514947861433029, + 0.0288047157227993, + -0.0226002000272274, + -0.009980243630707264, + -0.01841198094189167, + 0.02356928028166294, + -0.022493308410048485, + -0.012216802686452866, + -0.008254892192780972, + -0.03693190589547157, + -0.025393499061465263, + -0.010444140061736107, + 0.001912779756821692, + -0.010816918686032295, + -0.004478355869650841, + -0.0008885296410880983, + 0.002800244139507413, + -0.03090340457856655, + -0.023180842399597168, + 0.017622925341129303, + -0.040584444999694824, + 0.003611909691244364, + 0.0069031198509037495, + 0.004239394795149565, + 0.03150756657123566, + -0.0034059591125696898, + -0.007489606272429228, + 0.004827390890568495, + 0.028813034296035767, + -0.005293453577905893, + 0.0742984190583229, + 0.02347906120121479, + 0.01562623865902424, + -0.001988700358197093, + 0.05582062900066376, + -0.024593129754066467, + -0.016573382541537285, + 0.010071959346532822, + 0.004755950998514891, + 0.01754312962293625, + -0.005284435115754604, + -0.0817098543047905, + 0.036664705723524094, + 0.06817559897899628, + -0.009622997604310513, + 0.02441200613975525, + -0.016507985070347786, + 0.009510662406682968, + -0.00905662402510643, + 0.010269860737025738, + 0.004679851233959198, + 0.03437931090593338, + 0.010646011680364609, + -0.010948123410344124, + 0.032415151596069336, + -0.05638418346643448, + 0.009255385026335716, + -0.013210988603532314, + -0.04862601310014725, + -0.05054379254579544, + 0.027053846046328545, + 0.013655003160238266, + 0.07275563478469849, + -0.03245275840163231, + 0.007962387055158615, + -0.00799996592104435, + -0.01729252189397812, + 0.02546725980937481, + -0.010914643295109272, + -0.019111908972263336, + 0.024584829807281494, + 0.0015182315837591887, + 0.022670049220323563, + 0.05561157688498497, + -0.013955704867839813, + -0.05442214384675026, + -0.012856573797762394, + -0.007437508087605238, + -0.029511623084545135, + 0.041161466389894485, + 0.0010074813617393374, + -0.02118678390979767, + 0.008854771964251995, + 0.0016772533999755979, + 0.019152168184518814, + 0.030562525615096092, + -0.026040606200695038, + 0.056006673723459244, + 0.012767364270985126, + -0.017813174054026604, + -0.02322986349463463, + -0.014601117931306362, + -0.01832713931798935, + 0.012925255112349987, + 0.04558202996850014, + 0.008469539694488049, + -0.00841112993657589, + 0.01069238968193531, + 0.030708525329828262, + 0.04033822938799858, + 0.005002154968678951, + -0.05009830370545387, + -0.015412231907248497, + 0.01452654879540205, + -0.015597254037857056, + 0.0013958156341686845, + -0.006066733971238136, + 0.015689000487327576, + 0.03122415952384472, + 0.028124354779720306, + -0.007133789360523224, + -0.00017713822307996452, + -0.05453259125351906, + -0.007969725877046585, + 0.03332051634788513, + -0.03484378755092621, + -0.037884991616010666, + -0.03603333979845047, + -0.010331723839044571, + 0.0009047741768881679, + 0.019124310463666916, + 0.007676351815462112, + -0.05152546614408493, + 0.00675235316157341, + -0.02255447767674923, + -0.061314381659030914, + -0.030697274953126907, + 0.002146220300346613, + 0.019942857325077057, + -0.0001942224334925413, + -0.008660350926220417, + 0.024321744218468666, + 0.010767069645226002, + 0.019069842994213104, + 0.08168457448482513, + 6.886926712468266e-05, + -0.007362354081124067, + -0.025231046602129936, + -0.04024812951683998, + 0.009457518346607685, + -0.0021757888607680798, + 0.0005198249127715826, + -0.012081355787813663, + -0.013461683876812458, + -0.04563366621732712, + -0.012677433900535107, + -0.001575632020831108, + 0.006653789896517992, + -0.010900521650910378, + -0.006111279595643282, + 0.009631466120481491, + -0.0121466601267457, + 0.014857778325676918, + -0.018594633787870407, + -0.02585863508284092, + -0.015554352663457394, + -0.02267814241349697, + -0.037177011370658875, + -0.01148353423923254, + 0.011724722571671009, + 0.03283672779798508, + -0.0008729963446967304, + -0.01205496396869421, + -0.0012213493464514613, + -0.029508275911211967, + 0.04884474724531174, + 0.021521128714084625, + -0.00347401131875813, + 0.010780662298202515, + 0.019420083612203598, + 0.01670495793223381, + -0.04575088620185852, + 0.010320356115698814, + 0.021120108664035797, + -0.014533438719809055, + -0.006521556526422501, + 0.021997086703777313, + 0.028145039454102516, + 0.004174991510808468, + 0.023015091195702553, + -0.041238509118556976, + -0.01753697171807289, + 4.7085592086659744e-05, + 0.016459442675113678, + 0.011115042492747307, + 0.004822638817131519, + -0.008115575648844242, + 0.0484926775097847, + 0.035655852407217026, + 0.00016287437756545842, + -0.013669260777533054, + 0.0019979195203632116, + 0.01816621795296669, + 0.0013173713814467192, + 0.01581554114818573, + -0.017844228073954582, + -0.007204770110547543, + -0.03058532439172268, + 0.018394136801362038, + 0.02283041551709175, + -0.010837520472705364, + -0.008000044152140617, + 0.06208965554833412, + 0.0035044883843511343, + -0.013013509102165699, + -0.01694236695766449, + -0.012007396668195724, + 0.018918471410870552, + 0.005921616684645414, + 0.03990602493286133, + -0.024163780733942986, + 0.0053560007363557816, + 0.01796071045100689, + -0.01972210593521595, + 0.030489696189761162, + 0.009564421139657497, + 0.0034666566643863916, + -0.033971015363931656, + -0.002451627980917692, + 0.030033443123102188, + 0.033993445336818695, + 0.023728588595986366, + 0.000779320893343538, + -0.0031858771108090878, + 0.007883557118475437, + 0.011116543784737587, + -0.07610306143760681, + 0.07005225867033005, + -0.047950275242328644, + -0.013184522278606892, + -0.004200485534965992, + -0.015976466238498688, + -0.028723636642098427, + 0.021411366760730743, + 0.041694507002830505, + 0.027565661817789078, + -0.008231415413320065, + -0.040642932057380676, + 0.0038509524893015623, + 0.01135160494595766, + 0.004378903191536665, + -0.01637417823076248, + 0.0121938930824399, + -0.04519663378596306, + -0.023211337625980377, + -0.04395503178238869, + 0.0065381876192986965, + 0.02387315221130848, + -0.0656331479549408, + 0.03206184506416321, + -0.017574869096279144, + -0.013262736611068249, + 0.006728445179760456, + -0.011988203041255474, + -0.031379032880067825, + 0.07907960563898087, + -0.07242818921804428, + 0.029797203838825226, + -0.009904046542942524, + 0.014853788539767265, + -0.006919436156749725, + -0.014119396917521954, + 0.007366665173321962, + 0.013829431496560574, + -0.012688547372817993, + -0.0002040451654465869, + 0.007539848797023296, + -0.010243375785648823, + -0.04214045777916908, + -0.01660037226974964, + -0.030171042308211327, + -0.01771172508597374, + -0.021210134029388428, + -0.02939351089298725, + -0.03267562389373779, + 0.029624920338392258, + 0.023311490193009377, + 0.05618548020720482, + 0.06727572530508041, + 0.07080405205488205, + 0.06066262349486351, + 0.029903797432780266, + -0.003826288040727377, + 0.029743747785687447, + -0.007196580525487661, + 0.024727916345000267, + 0.0333113931119442, + 0.02167481556534767, + -0.059464097023010254, + 0.00803303625434637, + -0.019056033343076706, + -0.016424326226115227, + 0.01170443743467331, + -0.032307662069797516, + 0.0030833063647150993, + 0.03333710879087448, + 0.022223496809601784, + 0.01833678036928177, + 0.02260158769786358, + -0.03217048570513725, + 0.0206222552806139, + 0.03727033734321594, + 0.011489675380289555, + -0.016538864001631737, + -0.024393098428845406, + 0.03161146119236946, + 0.048693545162677765, + -0.03677499294281006, + -0.047178082168102264, + -0.04137612506747246, + 0.02813328616321087, + 0.05613712966442108, + 0.017729371786117554, + 0.012989376671612263, + -0.006796112284064293, + -0.0622430182993412, + -0.029293455183506012, + 0.06406907737255096, + -0.021116971969604492, + -0.1276114284992218, + -0.058631282299757004, + 0.019222624599933624, + -0.018574891611933708, + 0.03387880697846413, + 0.032282765954732895, + 0.030820751562714577, + -0.04079858958721161, + -0.014863132499158382, + 0.022026801481842995, + 0.05790721997618675, + -0.022348854690790176, + -0.05411096289753914, + 0.011999932117760181, + 0.006979198660701513, + -0.022863462567329407, + 0.03339783474802971, + -0.07396722584962845, + -0.023190999403595924, + 0.013763430528342724, + -0.01234500389546156, + -0.003986693918704987, + 0.027637170627713203, + -0.00941653922200203, + 0.004816379398107529, + 0.05234776809811592, + -0.057649776339530945, + 0.04177113622426987, + -0.018564658239483833, + -0.00340225244872272, + 0.09427334368228912, + -0.007812067400664091, + -0.05533516779541969, + 0.01893395557999611, + 0.045152392238378525, + 0.029933955520391464, + 0.021886607632040977, + -0.027261704206466675, + 0.02358824945986271, + 0.030621856451034546, + 0.024934619665145874, + 0.007378605660051107, + 0.014140617102384567, + 0.006795378867536783, + 0.027394775301218033, + -0.025078654289245605, + 0.02507730945944786, + -0.03943219035863876, + 0.025113997980952263, + 0.018801918253302574, + -0.011003108695149422, + 0.06828979402780533, + -0.05509696528315544, + -0.027657974511384964, + 0.024332409724593163, + 0.009097172878682613, + -0.049878668040037155, + -0.03317328914999962, + -0.029257575049996376, + 0.005577252712100744, + -0.02486194670200348, + 0.019170671701431274, + -0.017848249524831772, + 0.02669421024620533, + -0.0342690572142601, + 0.04775456711649895, + 0.040171362459659576, + 0.05111028626561165, + -0.013391263782978058, + 0.00025548727717250586, + 0.027400033548474312, + 0.009428739547729492, + 0.0372493714094162, + -0.018015827983617783, + -0.060962989926338196, + -0.00478316517546773, + -0.0014677738072350621, + 0.0031502186320722103, + -0.006813479121774435, + -0.00828410405665636, + -0.022098278626799583, + -0.024024277925491333, + 6.367566675180569e-05, + 0.02571604773402214, + 0.014341912232339382, + -0.04032933712005615, + 0.01868477463722229, + -0.031223608180880547, + -0.0035431820433586836, + 0.029669063165783882, + 0.02476368471980095, + 0.010436229407787323, + -0.030552146956324577, + -0.04561952129006386, + 0.005779095459729433, + 0.021657869219779968, + 0.016953328624367714, + -0.024135375395417213, + 0.05303221195936203, + -0.024992531165480614, + 0.03513104468584061, + 0.03698957711458206, + -0.0314030647277832, + -0.01647152565419674, + -0.0018635706510394812, + 0.017361879348754883, + -0.055153168737888336, + 0.013804947026073933, + -0.0535467192530632, + -0.005963816773146391, + 0.017895596101880074, + -0.014063622802495956, + 0.021843252703547478, + -0.028352070599794388, + 0.10223479568958282, + -0.022137587890028954, + 0.024559929966926575, + 7.168186130002141e-05, + -0.036331504583358765, + -0.0321226567029953, + -0.010925312526524067, + 0.047044433653354645, + 0.005434077698737383, + -0.045003898441791534, + 0.012829525396227837, + -0.03218185901641846, + -0.018531598150730133, + -0.04806159809231758, + -0.09089822322130203, + 0.008686818182468414, + 0.0445743054151535, + 0.016980770975351334, + -0.010592712089419365, + -0.013434900902211666, + -0.03259748965501785, + -0.07530725747346878, + 1.303942917729728e-05, + -0.07357553392648697, + 0.01777488924562931, + 0.06594441831111908, + 0.02337319776415825, + -0.03589487448334694, + 0.025841133669018745, + 0.04336831718683243, + -0.017106404528021812, + -0.050829436630010605, + -0.007500932551920414, + 0.0033972361125051975, + -0.049297161400318146, + 0.007817685604095459, + 0.0032967221923172474, + -0.019152948632836342, + 0.03692496567964554, + -0.016383979469537735, + -0.03818067908287048, + 0.03822784498333931, + -0.014393062330782413, + 0.03283710032701492, + -0.0036544196773320436, + 0.03737296536564827, + -0.0008478079689666629, + -0.0708138644695282, + 0.00017273498815484345, + -0.005556631833314896, + -0.004582819063216448, + 0.026884272694587708, + -0.04463042691349983, + -0.006360884755849838, + -0.021081626415252686, + -0.010615840554237366, + -0.003804566105827689, + -0.010785390622913837, + -0.039409421384334564, + 0.018282180652022362, + 0.0672634020447731, + 0.04075239226222038, + 0.023006178438663483, + 0.060893718153238297, + -0.020948320627212524, + 0.04168367013335228, + 0.043331995606422424, + 0.03220048174262047, + 0.04919549450278282, + -0.0038613108918070793, + -0.002692956244572997, + -0.022011572495102882, + 0.0653381198644638, + -0.012449659407138824, + 0.037068530917167664, + 0.01484630350023508, + -0.012582014314830303, + 0.033334001898765564, + 0.06534314900636673, + -0.01948418654501438, + 0.03721558302640915, + 0.01823667623102665, + -0.005232467316091061, + 0.029345540329813957, + 0.016694163903594017, + 0.024450113996863365, + 0.06002527102828026, + -0.007142724469304085, + -0.040663544088602066, + 0.0758737102150917, + -0.01372129749506712, + -0.03827043995261192, + 0.012664596550166607, + -0.0061902450397610664, + 0.023967772722244263, + -0.039932042360305786, + 0.05393687263131142, + 0.009127205237746239, + 0.005535664968192577, + 0.037018969655036926, + 0.01474032737314701, + 0.004701979458332062, + 0.004188756924122572, + 0.02169027552008629, + -0.0009909147629514337, + -0.006747632287442684, + -0.03146718814969063, + -0.06417293101549149, + -0.0191846564412117, + -0.018337449058890343, + 0.06685449182987213, + 0.0014845984987914562, + -0.0614749900996685, + -0.01518550980836153, + -0.07137459516525269, + -0.009711633436381817, + 0.005040395073592663, + 0.03414982184767723, + -0.016745932400226593, + -0.009787645190954208, + -0.05314808338880539, + -0.019510770216584206, + -0.013561277650296688, + 0.017743194475769997, + -0.06600617617368698, + -0.0510433092713356, + -0.05718129128217697, + 0.0179028008133173, + -0.012614188715815544, + 0.028290877118706703, + 0.03232043236494064, + -0.004589393734931946, + 0.01537480391561985, + 0.04134872928261757, + 0.021447164937853813, + -0.058883246034383774, + -0.05600646883249283, + 0.017708031460642815, + 0.023455753922462463, + 0.06708183139562607, + -0.02405330166220665, + 0.010464584454894066, + 0.02255837433040142, + -0.026067133992910385, + -0.011657379567623138, + -0.05283491313457489, + -0.07486125826835632, + 0.020978903397917747, + -0.02089025266468525, + 0.010861849412322044, + -0.04415851831436157, + -0.017635641619563103, + -0.012311788275837898, + -0.025598742067813873, + 0.05492885783314705, + -0.05048074945807457, + 0.02100340835750103, + -0.023393811658024788, + 0.03913126513361931, + -0.004216428380459547, + -1.585059544595424e-05, + -0.004313676152378321, + -0.024803275242447853, + 0.01257725153118372, + 0.03322123363614082, + -0.005864580627530813, + 0.048150524497032166, + 0.014394032768905163, + 0.0820968821644783, + -0.03984351456165314, + -0.03953650966286659, + -0.01676611788570881, + -0.050668612122535706, + 0.04089738056063652, + 0.006360858213156462, + -0.02925983816385269, + 0.0324040986597538, + -0.01981288194656372, + 0.008569848723709583, + -0.04187893122434616, + -0.01683840900659561, + -0.008962082676589489, + 0.03721451386809349, + 0.034655679017305374, + 0.044023431837558746, + -0.02473357506096363, + -0.024281905964016914, + -0.06023197993636131, + -0.018499189987778664, + 0.02296697534620762, + -0.009408893063664436, + -0.04788794368505478, + -0.019318003207445145, + -0.06041115149855614, + -0.032616060227155685, + -0.01729869656264782, + -0.0036587724462151527, + 0.009199847467243671, + 0.029456036165356636, + -0.04276382550597191, + 0.031635623425245285, + -0.0681629329919815, + -0.035249341279268265, + 0.03128430247306824, + 0.04803174361586571, + -0.05215725302696228, + -0.017534367740154266, + 0.015304670669138432, + 0.0058923461474478245, + -0.023849740624427795, + -0.00100303057115525, + -0.02124301716685295, + 0.011570701375603676, + -0.01333831250667572, + 0.002021427033469081, + 0.03869127854704857, + -0.01795530878007412, + -0.034809425473213196, + 0.009843871928751469, + 0.020418478175997734, + 0.012003250420093536, + -0.08407506346702576, + -0.04833567887544632, + -0.014157108031213284, + 0.016293751075863838, + 0.0220317505300045, + 0.011503033339977264, + -0.019590260460972786, + 0.015035806223750114, + -0.024360649287700653, + 0.04326115921139717, + 0.004996139090508223, + 0.010520697571337223, + 0.018810655921697617, + -0.017024051398038864, + 0.0007023373618721962, + 0.004017328843474388, + -0.05487442389130592, + 0.015279042534530163, + 0.022152194753289223, + -0.03208162635564804, + 0.0060763233341276646, + 0.024494390934705734, + 0.0222622063010931, + 0.060422830283641815, + -0.034207090735435486, + 0.02125454507768154, + 0.00886183325201273, + 0.027461525052785873, + -0.060778018087148666, + 0.017931411042809486, + 0.011105990037322044, + 0.0032155781518667936, + 0.003569621592760086, + 0.004842011258006096, + 0.00547446683049202, + 0.013873524963855743, + -0.016894429922103882, + -0.0008945511071942747, + -0.012469315901398659, + 0.030496064573526382, + -0.04004752263426781, + 0.05395081639289856, + -0.012420058250427246, + 0.005063001066446304, + 0.017259983345866203, + -0.016543162986636162, + -0.008068704046308994, + -0.010173192247748375, + 0.04853569716215134, + -0.03330346941947937, + 0.048417624086141586, + 0.018663223832845688, + 0.03784337267279625, + -0.006619704887270927, + -0.018324531614780426, + 0.041287168860435486, + -0.02996673434972763, + -0.036079805344343185, + -0.0023264684714376926, + 0.04546085000038147, + -0.014840053394436836, + 0.005354723893105984, + -0.009888092055916786, + -0.018864450976252556, + 0.001672794227488339, + 0.031057588756084442, + -0.025255605578422546, + 0.027083978056907654, + 0.06449432671070099, + 0.020287465304136276, + 0.01033464353531599, + 0.042542655020952225, + -0.021052220836281776, + 0.009347710758447647, + 0.012395192869007587, + -0.007840479724109173, + -0.056826215237379074, + 0.014410696923732758, + 0.018017388880252838, + -0.009998918510973454, + 0.03919787332415581, + -0.011023453436791897, + 0.01474781148135662, + 0.01836283877491951, + 0.031527433544397354, + -0.009042652323842049, + 0.0006913762772455812, + 0.05769119784235954, + -0.029637394472956657, + 0.0027806705329567194, + 0.03830798342823982, + 0.03412803262472153, + 0.03293893486261368, + -0.028709014877676964, + -0.00443059578537941, + -0.003781164065003395, + -0.029524559155106544, + -0.04116909205913544, + -0.012791011482477188, + 0.05840609222650528, + -0.026839924976229668, + -0.0004852249112445861, + 0.023472851142287254, + -0.024274026975035667, + 0.013001467101275921, + 0.027296697720885277, + 0.021990183740854263, + 0.0164865143597126, + 0.035018377006053925, + 0.017255358397960663, + 0.007590264081954956, + -0.060253314673900604, + 0.02606876567006111, + -0.017222322523593903, + -0.04222424328327179, + -0.028919821605086327, + -0.012891525402665138, + -0.012823592871427536, + 0.03262488543987274, + -0.022163009271025658, + -0.01597215048968792, + 0.024204416200518608, + -0.02980119362473488, + 0.002580953063443303, + -0.03200611472129822, + 0.01529743243008852, + -0.0019300829153507948, + 0.02981898933649063, + 0.0074895755387842655, + 0.02895863726735115, + 0.03792379051446915, + -0.04639722406864166, + -0.002497417852282524, + -0.04768553748726845, + 0.01667770743370056, + 0.033700812608003616, + 0.05821119248867035, + -0.022814864292740822, + 0.04790855944156647, + -0.014220578595995903, + -0.006806009449064732, + 0.005191352218389511, + 0.004614371340721846, + 0.018607553094625473, + -0.005314953625202179, + 0.03916435316205025, + 0.054899509996175766, + -0.042132776230573654, + -0.002392217516899109, + -0.03951971232891083, + 0.03425223007798195, + 0.030690548941493034, + 0.00747436610981822, + -0.033909909427165985, + 0.025018326938152313, + -0.005915423855185509, + -0.0054465350694954395, + -0.04100531339645386, + -0.02835899591445923, + -0.04604338854551315, + 0.008635202422738075, + -0.013474807143211365, + 0.01189421396702528, + 0.02336491458117962, + -0.010661426931619644, + -0.014178098179399967, + 0.04082465544342995, + 0.027995694428682327, + 7.914848538348451e-05, + 0.00036814986378885806, + -0.008616724982857704, + -0.05958464369177818, + -0.012444481253623962, + -0.028878776356577873, + 0.05783871188759804, + -0.05300687253475189, + 0.0038022075314074755, + 0.03191051259636879, + -0.03064391016960144, + -0.04336192086338997, + 0.020127663388848305, + 0.023791102692484856, + -0.013309006579220295, + -0.012363354675471783, + -0.01344481110572815, + -0.002783152973279357, + 0.017845163121819496, + -0.018021689727902412, + 0.0584467276930809, + -0.07766719162464142, + 0.04420799762010574, + 0.0505494587123394, + 0.019718574360013008, + -0.033277492970228195, + -0.021994883194565773, + 0.014327963814139366, + -0.05204825475811958, + 0.02048736810684204, + 0.005325311794877052, + -0.040549155324697495, + -0.020352032035589218, + 0.015503128059208393, + 0.029274312779307365, + -0.010266739875078201, + -0.013364440761506557, + -0.04444989562034607, + 0.0501888282597065, + -0.005464020650833845, + 0.03114958480000496, + -0.028582429513335228, + -0.022505680099129677, + 0.028345221653580666, + 0.006772445049136877, + 0.014201069250702858, + 0.008971264585852623, + -0.018619554117321968, + 0.021360956132411957, + 0.023330634459853172, + 0.021245252341032028, + -0.032330822199583054, + -0.02148503251373768, + 0.002212940715253353, + 0.027139611542224884, + -0.026150304824113846, + -0.002992605324834585, + -0.032741520553827286, + 0.025526130571961403, + 0.04852713271975517, + 0.0064915856346488, + 0.027369536459445953, + -0.050327736884355545, + 0.023782651871442795, + -0.033014193177223206, + -0.038336243480443954, + 0.015037773177027702, + 0.04182043299078941, + -0.026303507387638092, + -0.00915053766220808, + -0.018253503367304802, + 0.06599757075309753, + -0.03506200760602951, + 0.016155332326889038, + 0.03228353336453438, + 0.03157058730721474, + 0.012911204248666763, + -0.07595322281122208, + -0.012717883102595806, + -0.08249659091234207, + -0.06460097432136536, + -0.0016242943238466978, + -0.02397167682647705, + -0.019344916567206383, + 0.022170627489686012, + 0.003394052153453231, + -0.013427020981907845, + -0.020290393382310867, + -0.03147022798657417, + -0.02763604372739792, + 0.03120780922472477, + 0.0011632314417511225, + 0.0029840394854545593, + 0.03256523981690407, + 0.013011435978114605, + 0.026486342772841454, + -0.006368217524141073, + 0.047643668949604034, + 0.025661978870630264, + -0.00017992028733715415, + 0.03317346051335335, + 0.0002923813881352544, + -0.03456370532512665, + -0.018592795357108116, + -0.02833695337176323, + -0.005193487741053104, + -0.03304126486182213, + -0.03662602975964546, + 0.0007174575002864003, + 0.0354122593998909, + 0.002321550389751792, + -0.01917150616645813, + -0.010413090698421001, + -0.0023185494355857372, + 0.007801196072250605, + 0.04867570474743843, + -0.024505887180566788, + 0.06369761377573013, + -0.021524790674448013, + 0.025261837989091873, + -0.029895033687353134, + 0.036348532885313034, + 0.028261622413992882, + 0.012886187992990017, + -0.0002541934372857213, + 0.004330685827881098, + 0.017993347719311714, + 0.009545017965137959, + -0.012169433757662773, + 0.021152347326278687, + 0.005292404443025589, + -0.00820310041308403, + 0.00784947071224451, + -0.0077463965862989426, + 0.02163279615342617, + -0.0028463632334023714, + 0.056738246232271194, + 0.006302608177065849, + -0.02624012529850006, + 0.06418223679065704, + -0.027978211641311646, + 0.021866435185074806, + 0.0006788474274799228, + 0.012307137250900269, + 0.03235623985528946, + 0.022556373849511147, + -0.020232578739523888, + 0.021927613765001297, + -0.031781911849975586, + 0.04279250651597977, + -0.028821676969528198 + ], + "start_index": 15580, + "end_index": 19385, + "token_count": 557, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "e7e48494-0239-562f-8441-e15ca062af62", + "_source": { + "text": "\n\n---\n\n## SECCIÓN VII: Arquitectura de Funciones y Ámbitos (Scopes)\n\nLas funciones son recintos herméticos de memoria. Al entrar en una función, AVAP crea un nuevo diccionario de variables locales aislado del contexto global.\nEl comando `return()` actúa como interruptor de flujo: inyecta el valor calculado al llamador, libera la memoria local, y si se usa dentro de un `startLoop`, rompe la iteración anticipadamente.\n\n### Especificación BNF (Sección VII)\n\n\n\n/* Nota: las funciones utilizan llaves {} como delimitadores de bloque por decisión\n arquitectónica explícita, diferenciándose de las estructuras de control (if, loop, try)\n que usan palabras clave de cierre (end(), endLoop()). Ambos patrones coexisten\n en la gramática y el parser los distingue por el token de apertura. */\n ::= \"function\" \"(\" [] \")\" \"{\" \n \n \"}\" \n ::= (\",\" )*\n ::= \"return(\" [] \")\"", + "embedding": [ + 0.03058045357465744, + -0.01762707531452179, + -0.010243573226034641, + -0.12338679283857346, + 0.02127586491405964, + 0.004694065079092979, + -0.02088865451514721, + -0.006528951693326235, + -0.028346100822091103, + -0.05635528266429901, + -0.019044164568185806, + -0.06253807246685028, + -0.0065124016255140305, + -0.00956580601632595, + -0.030343331396579742, + 0.051593128591775894, + 0.042389363050460815, + 0.016661260277032852, + -0.059107616543769836, + -0.026798876002430916, + -0.06392866373062134, + 0.029873548075556755, + 0.005221819970756769, + 0.045416489243507385, + -0.025316717103123665, + -0.021197792142629623, + 0.0008717156015336514, + 0.0254804790019989, + -0.04020588845014572, + -0.04016544297337532, + -0.04089295491576195, + 0.025917811319231987, + -0.09050067514181137, + 0.01590222492814064, + -0.05146511644124985, + -0.012666071765124798, + 0.026782017201185226, + -0.10628831386566162, + 0.04812130331993103, + -0.03230318799614906, + -0.033149879425764084, + 0.028073947876691818, + 0.028681645169854164, + -0.010614483617246151, + 0.0032816927414387465, + -0.02939036674797535, + -0.005458736792206764, + 0.017321623861789703, + 0.05884982645511627, + -0.01672331802546978, + -0.037939079105854034, + 0.043988633900880814, + 0.030610190704464912, + -0.023077817633748055, + -0.016177870333194733, + 0.03304550424218178, + -0.034400973469018936, + -0.04532705992460251, + -0.003801357699558139, + 0.01924479939043522, + 0.01713547483086586, + -0.06847283989191055, + -0.0348566472530365, + -0.021360240876674652, + 0.002932446077466011, + 0.015801649540662766, + 0.009539204649627209, + -0.017769422382116318, + -0.02788013033568859, + 0.02570846863090992, + 0.0079668452963233, + -0.036423325538635254, + -0.0036092500668019056, + 0.047390569001436234, + -0.014562050811946392, + -0.010351201519370079, + 0.024879341945052147, + -0.019168250262737274, + 0.025566937401890755, + 0.041000038385391235, + -0.014672142453491688, + 0.06033603101968765, + 0.01648704893887043, + 0.013075774535536766, + 0.007251798640936613, + 0.02926982380449772, + -0.03670608997344971, + -0.0019556612242013216, + -0.013039263896644115, + 0.015387446619570255, + 0.04028475657105446, + 0.016921089962124825, + -0.034787438809871674, + -0.020928701385855675, + 0.1046416163444519, + -0.013852701522409916, + -0.03369413688778877, + 0.033364277333021164, + 0.0013328848872333765, + -0.04337354376912117, + -0.026051150634884834, + 0.012821465730667114, + -0.06444324553012848, + -0.0032363818027079105, + 0.05503073334693909, + 0.029517803341150284, + -0.0250797551125288, + 0.0018580560572445393, + 0.0014816203620284796, + -0.06586188077926636, + -0.014393050223588943, + -0.00946238823235035, + 0.024791177362203598, + 0.07859852910041809, + -0.008537459187209606, + -0.012031505815684795, + 0.02035822905600071, + -0.012582278810441494, + 0.00795417558401823, + -0.004903157241642475, + 0.06576231122016907, + 0.014217034913599491, + 0.04024414345622063, + 0.005483967252075672, + -0.005560321733355522, + -0.009969237260520458, + -0.05937479808926582, + 0.010121634230017662, + 0.013620542362332344, + 0.0029355541337281466, + 0.018579887226223946, + 0.005081835202872753, + 0.025107964873313904, + -0.02866288274526596, + -0.0008839287329465151, + 0.014768144115805626, + 0.02080637402832508, + -0.017028983682394028, + 0.021467778831720352, + 0.00791019294410944, + -0.026265112683176994, + -0.024204419925808907, + -0.01939026080071926, + -0.03401818871498108, + -0.005007193889468908, + 0.021892575547099113, + 0.003264910774305463, + 0.04002201929688454, + 0.016310062259435654, + 0.013204501010477543, + -0.006255347281694412, + -0.018038611859083176, + -0.04085026681423187, + -0.005155791528522968, + -0.015660259872674942, + 0.003872290253639221, + -0.019664129242300987, + 0.010667432099580765, + -0.0026526357978582382, + 0.054783307015895844, + 0.00918150506913662, + 0.005266114603728056, + -0.00031746469903737307, + -0.01454377081245184, + 0.004040923435240984, + 0.044519323855638504, + 0.019267955794930458, + -0.02297738753259182, + -0.03905189409852028, + -0.0011842960957437754, + -0.003751152427867055, + 0.002767726080492139, + 0.025808071717619896, + -0.07011033594608307, + 0.0067625949159264565, + -0.04013499245047569, + 0.0007129886653274298, + 0.06706869602203369, + -0.02801438421010971, + 0.023088661953806877, + 0.012604210525751114, + 0.004361377563327551, + -0.008510364219546318, + 0.019939547404646873, + 0.03029775805771351, + 0.062025874853134155, + -0.03876086696982384, + -0.02283344231545925, + -0.012574147433042526, + -0.04882044345140457, + 0.05888117849826813, + -0.010444225743412971, + 0.0011174181709066033, + -0.010577579960227013, + -0.021787652745842934, + -0.02596285752952099, + -0.028310248628258705, + 0.005402730777859688, + -0.0006671809242106974, + -0.008383959531784058, + -0.01644393987953663, + -0.02167383022606373, + -0.014572284184396267, + 0.007859628647565842, + -0.030864261090755463, + -0.014594614505767822, + 0.009989142417907715, + -0.03258698061108589, + -0.05030578374862671, + 0.002196555258706212, + -0.06618362665176392, + 0.008879355154931545, + -0.012643805705010891, + -0.011624442413449287, + -0.01784444786608219, + 0.0022022644989192486, + -0.006011900957673788, + 0.039220016449689865, + 0.0023213340900838375, + 0.053525734692811966, + 0.024586664512753487, + 0.02503729797899723, + -0.001517031923867762, + 0.015237870626151562, + 0.04358820244669914, + -0.022663386538624763, + 0.0023663477040827274, + -0.02528689242899418, + -0.03129264712333679, + 0.03826822713017464, + 0.06349336355924606, + -0.020381279289722443, + 0.032280802726745605, + -0.015027971938252449, + 0.015367168933153152, + 0.016731152310967445, + -0.005179555155336857, + 0.023712990805506706, + -0.025163257494568825, + 0.011882086284458637, + -0.016103727743029594, + -0.011111687868833542, + 0.014875414781272411, + 0.011000768281519413, + -0.0034484046045690775, + 0.025887291878461838, + 0.011802944354712963, + -0.00428404426202178, + -0.006265430711209774, + 0.032750166952610016, + 0.07687839865684509, + -0.0011859339429065585, + 0.005618494004011154, + -0.0145702064037323, + -0.029105398803949356, + -0.002315263031050563, + -0.018834857270121574, + 0.0018351908074691892, + 0.024625001475214958, + 0.009714363142848015, + 0.00044539172085933387, + -0.019163915887475014, + 0.047007448971271515, + 0.04095739498734474, + 0.020234426483511925, + 0.02516237087547779, + 0.0019506079843267798, + -0.011194407008588314, + -0.0447639599442482, + -0.015826836228370667, + 0.014754333533346653, + 0.016633015125989914, + 0.006004940252751112, + 0.0055873519740998745, + 0.026777848601341248, + -0.012022383511066437, + -0.0036752347368746996, + -0.06978755444288254, + 0.05262937396764755, + -0.014669152908027172, + -0.00779839837923646, + -0.055563900619745255, + -0.02472173608839512, + -0.021877190098166466, + 0.009874328039586544, + 0.0109110027551651, + -0.025758545845746994, + -0.042065270245075226, + 0.005286828614771366, + -0.02832157351076603, + -0.0057054199278354645, + 0.0668560042977333, + -0.05662870034575462, + 0.02224046178162098, + 0.024593481793999672, + -0.006949945352971554, + 0.028780829161405563, + -0.01245923899114132, + 0.041683729737997055, + -0.001864918740466237, + 0.009693271480500698, + 0.0251470934599638, + 0.008767922408878803, + -0.00694371247664094, + -0.042202237993478775, + 0.015594701282680035, + 0.06042749807238579, + -0.012362517416477203, + 0.02513149194419384, + 0.03426032140851021, + 0.0420474112033844, + -0.015674041584134102, + -0.017258713021874428, + -0.0385640449821949, + -0.008290705271065235, + 0.03878936916589737, + 0.03343597799539566, + -0.007830606773495674, + 0.011945529840886593, + -0.01568971946835518, + 0.04663318768143654, + -0.006875519175082445, + 0.024819279089570045, + -0.04609624296426773, + 0.0452120341360569, + -0.011625855229794979, + 0.06217643991112709, + 0.051745276898145676, + 0.037071406841278076, + -0.013988139107823372, + 0.0059168701991438866, + 0.04208942875266075, + 0.009437832050025463, + -0.00627918541431427, + -0.003426715498790145, + -0.02937261573970318, + -0.0035808731336146593, + 0.011838402599096298, + -0.019366657361388206, + -0.008800430223345757, + -0.018382467329502106, + 0.0661928728222847, + -0.022914938628673553, + -0.00872434675693512, + -0.013508567586541176, + -0.03563882037997246, + -0.010577220469713211, + 0.029503649100661278, + 0.04752933979034424, + -0.024913106113672256, + -0.03665076568722725, + 0.0005067914025858045, + -0.04748932644724846, + 0.0027878794353455305, + 0.0044535743072628975, + -0.0051727863028645515, + 0.005943321622908115, + 0.03992718458175659, + -0.02554745227098465, + -0.04365051910281181, + 0.03783111274242401, + 0.03231244161725044, + -0.003537282347679138, + 0.055189501494169235, + -0.024654489010572433, + -0.012545941397547722, + -0.06647155433893204, + -0.062170833349227905, + 0.04798261448740959, + -0.04532037675380707, + -0.07887474447488785, + -0.024839160963892937, + 0.027440020814538002, + 0.07354545593261719, + 0.08242970705032349, + 0.024142099544405937, + 0.010850339196622372, + 0.02043248526751995, + 0.005138926208019257, + 0.050572801381349564, + 0.03239346295595169, + 0.024709438905119896, + -0.008375468663871288, + 0.035350050777196884, + -0.02033565379679203, + -0.008436249569058418, + 0.025326965376734734, + -0.048626597970724106, + 0.042951252311468124, + 0.04829877242445946, + 0.029150737449526787, + 0.02041412703692913, + 0.040759604424238205, + 0.033174674957990646, + -0.0070452322252094746, + 0.04564254730939865, + -0.06119599565863609, + 0.007789602503180504, + -0.016765888780355453, + 0.05100168660283089, + 0.007065230049192905, + 0.007884341292083263, + -0.020005635917186737, + 0.07758866995573044, + 0.06239955499768257, + 0.03185843676328659, + -0.017601309344172478, + 0.005269885063171387, + 0.014476816169917583, + -0.013259192928671837, + -0.005000571254640818, + 0.02366712875664234, + 0.0006057767895981669, + -0.013372883200645447, + 0.009143621660768986, + 0.005691364407539368, + 0.04827750846743584, + 0.03290995955467224, + 0.004611818119883537, + -0.013619632460176945, + -0.020729264244437218, + 0.08061929792165756, + -0.04236380383372307, + -0.035772159695625305, + 0.009696193970739841, + -0.01479403767734766, + -0.05127231404185295, + -0.0012198102194815874, + -0.0019077095203101635, + 0.016033412888646126, + -0.005855281371623278, + 0.06204773485660553, + 0.024835461750626564, + 0.04782285913825035, + 0.012162042781710625, + -0.009667661972343922, + 0.03154607489705086, + 0.05111275985836983, + -0.011098001152276993, + -0.01233789511024952, + 0.011269679293036461, + -0.039439115673303604, + -0.024027159437537193, + -0.02621435932815075, + -0.03119419515132904, + 0.041203055530786514, + -0.06132742017507553, + 0.032186493277549744, + -0.022069329395890236, + 0.001245903898961842, + 0.018296271562576294, + -0.006973855197429657, + -0.024132493883371353, + 0.05731569230556488, + 0.007085689343512058, + 0.0127011239528656, + 0.04395885393023491, + -0.09577623009681702, + 0.023320209234952927, + 0.009383231401443481, + 0.040510620921850204, + 0.06775727868080139, + -0.007305020000785589, + 0.004367039073258638, + -0.03950953856110573, + 0.06989546865224838, + 0.05943834036588669, + -0.01175115630030632, + 0.0036152007523924112, + -0.0165861826390028, + 0.03076835349202156, + 0.0019082605140283704, + -0.024421053007245064, + -0.010647316463291645, + -0.02145257592201233, + -0.00044071796583011746, + -0.02658902294933796, + 0.01552428025752306, + -0.027576683089137077, + -0.02043331414461136, + -0.004730290733277798, + -0.015500830486416817, + 0.0022815540432929993, + -0.03062944859266281, + 0.09801035374403, + -0.013849419541656971, + 0.011393026448786259, + -0.04697062447667122, + -0.012730075977742672, + -0.03313568979501724, + -0.03151927515864372, + 0.032684385776519775, + 0.0050926245748996735, + -0.01970752887427807, + 0.03200318664312363, + -0.017857644706964493, + -0.022918831557035446, + 0.00892377458512783, + -0.09297806024551392, + 0.004905546084046364, + 0.005400384776294231, + -0.013288337737321854, + -0.004528078716248274, + 0.03875351697206497, + 0.031180955469608307, + -0.028510460630059242, + 0.02350580133497715, + -0.023988712579011917, + 0.05729314312338829, + 0.02499501407146454, + -0.006984866689890623, + -0.029643332585692406, + 0.03133123740553856, + -0.00034884331398643553, + -0.002663640771061182, + -0.04505455866456032, + 0.018499979749321938, + 0.021015409380197525, + 0.020431721583008766, + 0.056524913758039474, + 0.010281942784786224, + 0.05531904101371765, + 0.022204555571079254, + 0.0006034731050021946, + -0.05236033350229263, + 0.018444035202264786, + 0.03661574795842171, + 0.03786442056298256, + 0.04041248559951782, + -0.018160467967391014, + 0.024263866245746613, + -0.06572286039590836, + -0.011569480411708355, + -0.02424580603837967, + -0.019749151542782784, + -0.02921854332089424, + -0.020985141396522522, + 0.04902058467268944, + 0.04471584036946297, + -0.0012644873932003975, + 0.02735760621726513, + -0.0006390519556589425, + -0.03339720517396927, + 0.002741459524258971, + 0.004497690591961145, + -0.04406144097447395, + -0.0595654658973217, + 0.028308412060141563, + -0.00028956125606782734, + 0.016336804255843163, + -0.0010378265287727118, + -0.028902985155582428, + 0.03414824604988098, + -0.051102444529533386, + -0.02364456094801426, + 0.000447857630206272, + 0.05263527110219002, + 0.013366437517106533, + 0.009078851900994778, + -0.015382911078631878, + 0.028744230046868324, + 0.016810258850455284, + -0.05820603668689728, + 0.00921771302819252, + 0.008362057618796825, + 0.008126911707222462, + 0.02105099894106388, + 0.028720714151859283, + 0.012859325855970383, + 0.0032262015156447887, + 0.030359406024217606, + 0.009398487396538258, + -0.07182712107896805, + -0.00043995940359309316, + -0.00676628015935421, + -0.023464802652597427, + -0.00036625502980314195, + 0.03209712356328964, + -0.016397057101130486, + 0.010361873544752598, + 0.004764076322317123, + 0.002794126281514764, + 0.015374506823718548, + 0.04388217628002167, + 0.006289178971201181, + 0.017238609492778778, + 0.01697169989347458, + -0.08170575648546219, + 0.006630773190408945, + -0.02230820246040821, + -0.016992634162306786, + 0.017204362899065018, + 0.016409672796726227, + 0.00993647612631321, + 0.06723283231258392, + 0.03575941175222397, + -0.020071836188435555, + -0.034539587795734406, + -0.055569570511579514, + 0.019949406385421753, + 0.0288104061037302, + 0.020580915734171867, + -0.030649032443761826, + 0.007066440302878618, + -0.04405021667480469, + -0.008169273845851421, + 0.015269157476723194, + 0.02646302804350853, + -0.02898154780268669, + -0.01829151250422001, + -0.0031078048050403595, + 0.016185564920306206, + 0.005289112217724323, + 0.05974716320633888, + -0.007731900084763765, + -0.03359929099678993, + 0.0039231921546161175, + 0.058750078082084656, + -0.008351108990609646, + -0.06067708134651184, + 0.017883088439702988, + -0.012340971268713474, + 0.04875441640615463, + 0.08883898705244064, + 0.011081727221608162, + 0.0016273983055725694, + 0.02325006201863289, + -0.020579783245921135, + 0.008560053072869778, + -0.011760320514440536, + -0.043603312224149704, + -0.038714222609996796, + -0.04309921711683273, + 0.007634516339749098, + 0.0043340399861335754, + -0.020743248984217644, + -0.008519638329744339, + 0.005443733185529709, + -0.004650724586099386, + -0.013479936867952347, + 0.015279036946594715, + 0.0543823279440403, + 0.002871305914595723, + -0.0032394425943493843, + 0.033173076808452606, + 0.008882548660039902, + -0.06772560626268387, + -0.020610403269529343, + 0.019677044823765755, + 0.030389780178666115, + 0.06429633498191833, + 0.03761150687932968, + 0.009106785990297794, + 0.03034820221364498, + -0.048990242183208466, + 0.04328067600727081, + 0.05760618671774864, + 0.01011957973241806, + 0.010393942706286907, + -0.04579950496554375, + 0.013321849517524242, + -0.054704491049051285, + 0.003921519964933395, + -0.0282552819699049, + -0.017217621207237244, + 0.019951974973082542, + 0.04790286719799042, + 0.032277606427669525, + 0.03283519670367241, + 0.0004024241352453828, + -0.023749567568302155, + -0.03798704221844673, + -0.014634862542152405, + 0.04079282283782959, + 0.0127273453399539, + -0.0524398535490036, + 0.03226744756102562, + -0.02147557958960533, + 0.021654993295669556, + -0.0390971377491951, + -0.05942191928625107, + -0.016973277553915977, + 0.05224607512354851, + -0.027114611119031906, + 0.04491328448057175, + -0.05168214812874794, + -0.04107573628425598, + -0.027948245406150818, + 0.010555831715464592, + -0.006299010012298822, + -0.02550552226603031, + -0.0007217626553028822, + 0.01536806020885706, + -0.034137338399887085, + 0.0009860130958259106, + -0.02019871398806572, + -0.00028214266058057547, + 0.010274648666381836, + -0.016257598996162415, + -0.030884796753525734, + 0.059365164488554, + 0.00700615718960762, + 0.0035611444618552923, + 0.012605467811226845, + 0.0004910023417323828, + 0.018115496262907982, + -0.047077469527721405, + 0.019156334921717644, + -0.024166913703083992, + -0.04937775805592537, + 0.015671152621507645, + 0.010958533734083176, + 0.009746095165610313, + -0.026911860331892967, + 0.02101045474410057, + 0.018595675006508827, + 0.0017407642444595695, + -0.045442432165145874, + -0.053669437766075134, + -0.03140265494585037, + 0.05064231902360916, + -0.09886512905359268, + 0.0625489130616188, + -0.01277169305831194, + -0.02988658845424652, + -0.013383685611188412, + 0.0021372686605900526, + 0.06582963466644287, + 0.06959808617830276, + 0.0019418408628553152, + 0.07718918472528458, + 0.014956414699554443, + 0.01027008704841137, + -0.01797422021627426, + -0.03187631815671921, + 0.00023479422088712454, + 0.005649136379361153, + 0.024753637611865997, + 0.02440834417939186, + 0.03794902190566063, + -0.02294347994029522, + -0.04334406554698944, + 0.026480812579393387, + -0.039387572556734085, + 0.016178978607058525, + -0.0011439146474003792, + 0.002456294372677803, + 0.042670391499996185, + -0.019694363698363304, + 0.02862617000937462, + 0.009612003341317177, + -0.01093289814889431, + -0.01095045730471611, + -0.07346907258033752, + 0.010505685582756996, + 0.017077172175049782, + 0.0638602152466774, + 0.021088745445013046, + 0.03206992894411087, + 0.024880580604076385, + 0.0029711646493524313, + 0.011627665720880032, + -0.05071857199072838, + -0.014742148108780384, + -0.035939350724220276, + -0.04040937498211861, + 0.03894103690981865, + -0.005237526260316372, + -0.04149053618311882, + -0.02231021039187908, + 0.041621480137109756, + -0.009371279738843441, + 0.0539713129401207, + 0.01525883562862873, + 0.010738431476056576, + -0.02104909159243107, + 0.02810775674879551, + -0.038903988897800446, + -0.017933763563632965, + 0.02134278602898121, + -0.0007549012079834938, + -0.06343179196119308, + -0.0174044631421566, + -0.030233915895223618, + 0.030439944937825203, + -0.0025310085620731115, + -0.030614756047725677, + -0.019167277961969376, + -0.009716316126286983, + -0.0031490237452089787, + -0.05089692398905754, + -0.02972736954689026, + 0.00812175776809454, + -0.011532992124557495, + 0.007247354835271835, + 0.024253617972135544, + 0.023386698216199875, + 0.002405853709205985, + -0.03106296993792057, + 0.0009090792154893279, + -0.018256710842251778, + -0.029156919568777084, + -0.019582848995923996, + 0.03182382881641388, + 0.029244564473628998, + -0.017176415771245956, + 0.019160892814397812, + -0.01925874501466751, + -0.04356268048286438, + -0.0008536085952073336, + -0.014744583517313004, + -0.007517843507230282, + 0.016865337267518044, + -0.010106355883181095, + -0.00934547372162342, + 0.004491439089179039, + 0.006221185438334942, + 0.026494232937693596, + 0.005684301257133484, + 0.009057983756065369, + 0.031683485954999924, + -0.005420827306807041, + -0.040247149765491486, + -0.00017654363182373345, + -0.02575947903096676, + 0.030192356556653976, + 0.05307263135910034, + -0.04033690690994263, + -0.06591589003801346, + -0.007158211898058653, + 0.004845749586820602, + -0.004558675456792116, + 0.057172197848558426, + 0.021824566647410393, + 0.03121013008058071, + -0.03900837153196335, + -0.02205231413245201, + 0.006973184645175934, + -0.0016666341107338667, + 0.01517463568598032, + 0.018056290224194527, + -0.00905536487698555, + -0.03312787413597107, + 0.0439155250787735, + -0.00014666523202322423, + 0.001690203440375626, + -0.02170902118086815, + 0.00808391347527504, + 0.0016048654215410352, + -0.02804509364068508, + 0.022149140015244484, + 0.03573765233159065, + -0.02529880590736866, + -0.02115657553076744, + -0.04445013403892517, + 0.06420642882585526, + -0.010014464147388935, + 0.03462006896734238, + -0.04060051217675209, + 0.040708303451538086, + -0.05952327698469162, + -0.012126690708100796, + -0.05042305588722229, + 0.011114072985947132, + 0.008449280634522438, + 0.006662887055426836, + -0.02453158237040043, + -0.005594351328909397, + -0.03547382727265358, + 0.03678608685731888, + -0.014421065337955952, + -0.0022189405281096697, + 0.01912831701338291, + -0.007890365086495876, + 0.06124941259622574, + 0.007655278313905001, + -0.010677341371774673, + -0.019143834710121155, + 0.003141263732686639, + -0.00238523306325078, + -0.039234429597854614, + -0.0038770949468016624, + 0.015449202619493008, + 0.005369772668927908, + 0.006915416102856398, + -0.017565540969371796, + -0.00018612825078889728, + -0.04553315043449402, + -0.03799848631024361, + -0.01158696785569191, + -0.017249617725610733, + -6.138535536592826e-05, + 0.01322316937148571, + 0.0036055874079465866, + -0.06256742775440216, + 0.037411902099847794, + 0.04375787824392319, + -0.009686904959380627, + 0.039518874138593674, + -0.005645994562655687, + 0.010057266801595688, + 0.0037287436425685883, + -0.020722471177577972, + -0.056370172649621964, + -0.01450711116194725, + 0.0007773792603984475, + 0.010565826669335365, + 0.062025174498558044, + -0.01980757899582386, + 0.023743201047182083, + 0.03959374502301216, + -0.026570729911327362, + -0.011616772972047329, + -0.005191123113036156, + 0.021806951612234116, + -0.01380176842212677, + 0.005554672330617905, + 0.003686123061925173, + 0.04177701473236084, + -0.030582431703805923, + -0.01806887425482273, + -0.023801574483513832, + 0.00997855607420206, + 0.0001752059906721115, + 0.018076712265610695, + -0.024241341277956963, + -0.010500063188374043, + -0.010626956820487976, + 0.036262396723032, + -0.04791887104511261, + -0.032350193709135056, + 0.05675525218248367, + 0.06471878290176392, + 0.01702967658638954, + 0.08247625082731247, + -0.012216354720294476, + 0.031981874257326126, + 0.02177954465150833, + -0.03347576782107353, + -0.0024187061935663223, + 0.015690457075834274, + -0.02234514243900776, + 0.000843286863528192, + -0.0048550209030508995, + 0.02976846508681774, + -0.026443207636475563, + -0.008955948054790497, + 0.023003432899713516, + -0.005772313568741083, + 0.06178329885005951, + -0.01865869015455246, + 0.0006903309258632362, + -0.006537146866321564, + 0.004557906650006771, + 0.05269229784607887, + 0.007711303886026144, + -0.007884431630373001, + 0.023957721889019012, + 0.019783928990364075, + 0.021634818986058235, + -0.0030404217541217804, + -0.038193587213754654, + 0.023245831951498985, + -0.016736095771193504, + 0.0090955700725317, + -0.04272230342030525, + 0.019125638529658318, + 0.015161948278546333, + 0.0050286646001040936, + 0.009499109350144863, + 0.02722928673028946, + 0.01792392134666443, + -0.019808834418654442, + 0.01093282550573349, + -0.0013232111232355237, + -0.0070877973921597, + 0.009754674509167671, + 0.010554607026278973, + 0.014800005592405796, + -0.019771303981542587, + -0.030423272401094437, + 0.014461539685726166, + -0.01736227609217167, + 0.026523243635892868, + -0.00899536907672882, + 0.017863892018795013, + -0.0020881369709968567, + 0.0036724433302879333, + 0.03375572711229324, + -0.044064562767744064, + 0.016046255826950073, + -0.0030335301999002695, + 0.04971742630004883, + -0.01743737794458866, + 0.03059477172791958, + 0.05722297355532646, + -0.0063511086627841, + 0.021758979186415672, + 0.0411311537027359, + 0.0127132972702384, + 0.05370727926492691, + 0.027673108503222466, + 0.02595888450741768, + -0.004867184907197952, + 0.035014159977436066, + 0.011324193328619003, + -0.0285896435379982, + 0.027317887172102928, + -0.013495031744241714, + 0.02259049005806446, + 0.050471365451812744, + 0.012921225279569626, + 0.045415304601192474, + 0.014670666307210922, + -0.021915018558502197, + -0.010134372860193253, + 0.04005623236298561, + -0.014106888324022293, + 0.03846677765250206, + 0.006151997018605471, + -0.04761888086795807, + -0.04032086580991745, + -0.017150314524769783, + 0.012556500732898712 + ], + "start_index": 19385, + "end_index": 20434, + "token_count": 121, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "8eae9385-7a15-59f3-8bba-4ef01277b908", + "_source": { + "text": "\n\n---\n\n## SECCIÓN VIII: Modularidad e Inclusiones\n\n* **Inclusión Estática (`include`)**: Directiva de preprocesador que pega el contenido de un fichero físico en la línea actual.\n* **Librerías (`import`)**: Carga colecciones de funciones. Corchetes angulares (`import `) para nativas, comillas (`import \"mis_utils\"`) para locales.\n\n### Especificación BNF (Sección VIII)\n\n\n\n ::= | \n ::= \"include\" \" \" \n ::= \"import\" \" \" ( \"<\" \">\" | )", + "embedding": [ + 0.0002691610425245017, + -0.04732415825128555, + -0.011054097674787045, + -0.07879901677370071, + 0.01243771892040968, + -0.018453558906912804, + 0.02146095782518387, + -0.011572306975722313, + -0.011428437195718288, + 0.002594257704913616, + -0.004432282876223326, + -0.04825817421078682, + -0.013857344165444374, + -0.007943587377667427, + -0.02362937480211258, + 0.053912725299596786, + -0.015804074704647064, + 0.0844542384147644, + -0.09240948408842087, + -0.054033298045396805, + -0.04240680858492851, + -0.015194793231785297, + -0.02618100866675377, + 0.04368099197745323, + -0.018601449206471443, + 0.021219532936811447, + 0.013058473356068134, + 0.005892137531191111, + -0.010349889285862446, + -0.011638402007520199, + 0.014034716412425041, + -0.04096958413720131, + -0.08973735570907593, + -0.017452102154493332, + 0.03111429139971733, + -0.01286042295396328, + -0.007566505577415228, + -0.03755985200405121, + 0.048832714557647705, + -0.033389780670404434, + -0.009426616132259369, + -0.01445823535323143, + 0.06956052035093307, + 0.01932203397154808, + 0.02811322920024395, + -0.023761991411447525, + -0.009909991174936295, + 0.024926573038101196, + -0.024846376851201057, + 0.02732197567820549, + -0.02469230256974697, + -0.03835625201463699, + 0.02187490090727806, + -0.039326783269643784, + -0.004665828309953213, + -0.016949648037552834, + 0.011673081666231155, + -0.0013030265690758824, + -0.009364170022308826, + 0.01775413192808628, + 0.010982486419379711, + -0.04942974075675011, + -0.005902422592043877, + 0.020488444715738297, + 0.001247925916686654, + -0.03688286244869232, + -0.010975385084748268, + -0.007253069896250963, + 0.01898546703159809, + 0.005004245322197676, + 0.008747127838432789, + -0.01280838530510664, + 0.01634622924029827, + 0.030428141355514526, + 0.02111857756972313, + 0.020223256200551987, + 0.010592605918645859, + 0.006873182952404022, + -0.018331782892346382, + -0.007449856959283352, + -0.012490944005548954, + -0.01780530996620655, + 0.037683818489313126, + 0.002936669858172536, + -0.006453989073634148, + 0.0786702036857605, + -0.03383339196443558, + -0.028347846120595932, + -0.01681661233305931, + 0.02885335497558117, + -0.07841818779706955, + 0.02587858960032463, + -0.002270769327878952, + 0.03341839089989662, + 0.059290267527103424, + -0.011790093965828419, + -0.064523845911026, + 0.008220038376748562, + 0.012991523370146751, + -0.06041992828249931, + 0.0034059733152389526, + -0.0066603124141693115, + 0.050398703664541245, + 0.04796738922595978, + 0.07474466413259506, + 0.028596067801117897, + -0.014508794993162155, + 0.016343461349606514, + -0.009905136190354824, + -0.04454901069402695, + -0.008180319331586361, + 0.0027879264671355486, + 0.03132043778896332, + 0.06832379102706909, + 0.009772012941539288, + -0.01516970619559288, + 0.02764744497835636, + -0.02777511440217495, + 0.03080262802541256, + -0.03180546313524246, + -0.0013904094230383635, + -0.04753996431827545, + -0.0029584018047899008, + -0.0053502595983445644, + 0.0473930798470974, + -0.04093145206570625, + -0.045216239988803864, + 0.000874518824275583, + -0.024532105773687363, + -0.010073148645460606, + -1.702237750578206e-05, + 0.006942970212548971, + 0.006122510880231857, + -0.005640215240418911, + 0.035792574286460876, + -0.0338648222386837, + 0.001198703539557755, + -0.0460587777197361, + -0.003263675607740879, + -0.014022004790604115, + -0.0351288877427578, + -0.023866457864642143, + -0.028924671933054924, + -0.004117913078516722, + 0.009461702778935432, + -0.004667593631893396, + 0.001670542173087597, + 0.01996402069926262, + 0.007957009598612785, + 0.057280875742435455, + -0.011022508144378662, + -0.029898274689912796, + -0.027400780469179153, + 0.002538195578381419, + -0.017240796238183975, + -0.019245218485593796, + -0.008629463613033295, + -0.006264456082135439, + -0.007387240882962942, + 0.015002557076513767, + -0.007684460375458002, + 0.0008496820228174329, + -0.006247301120311022, + -0.012904713861644268, + -0.014724167995154858, + 0.034677594900131226, + -0.019480478018522263, + -0.052557069808244705, + -0.026255805045366287, + 0.0111423684284091, + -0.024267984554171562, + 0.023940129205584526, + 0.011015032418072224, + 0.015744050964713097, + -0.0034557213075459003, + -0.005314777139574289, + -0.02874312922358513, + 0.015915807336568832, + 0.01490146666765213, + -0.01209106296300888, + 0.02295498363673687, + -0.004936311859637499, + 6.207931437529624e-05, + 0.03196804225444794, + 0.04379738122224808, + 0.06999921053647995, + 0.019606642425060272, + 0.02402142807841301, + -0.01587945967912674, + 0.03325880691409111, + 0.040406133979558945, + 0.03372076153755188, + -0.008869016543030739, + 0.006466442719101906, + -0.018454788252711296, + -0.031312014907598495, + -0.022777685895562172, + -0.026078077033162117, + -0.0003708558506332338, + -0.01661340892314911, + 0.006886462215334177, + -0.008505227975547314, + -0.013218609616160393, + 0.011661244556307793, + -0.007259751204401255, + 0.008101518265902996, + 0.026956522837281227, + -0.03029564768075943, + -0.04675067588686943, + -0.0038107603322714567, + 0.026582343503832817, + 0.020588688552379608, + -0.031229207292199135, + -0.048065152019262314, + 0.021567463874816895, + -0.07500339299440384, + 0.04026765003800392, + 0.01586754620075226, + -0.01628285087645054, + 0.035641610622406006, + 0.004996578674763441, + 0.024129001423716545, + -0.04528691619634628, + -0.007788487244397402, + 0.03707310929894447, + -0.01448733825236559, + 0.025742996484041214, + 0.0037529829423874617, + -0.04370846599340439, + 0.044742848724126816, + 0.06482388079166412, + -0.005749595817178488, + 0.027881402522325516, + -0.0024855209048837423, + 0.022488052025437355, + 0.003082660958170891, + -0.031592462211847305, + -0.009998884052038193, + -0.008373968303203583, + -0.046930357813835144, + 0.03724420815706253, + -0.009977311827242374, + -0.03089064545929432, + 5.667354344041087e-05, + 0.02052190899848938, + -0.010896101593971252, + 0.010711126960814, + -0.01307106576859951, + -0.03319915011525154, + -0.013316934928297997, + -0.006544916424900293, + -0.03705030307173729, + 0.005737904459238052, + -0.0811874195933342, + 0.004758606664836407, + -0.027211003005504608, + 0.0035604210570454597, + -0.010810839012265205, + 0.0022119840141385794, + 0.005244480911642313, + 0.04969782754778862, + -0.024556567892432213, + 0.020248759537935257, + 0.01753857545554638, + 0.015605015680193901, + 0.020524384453892708, + -0.01165760587900877, + -0.044653695076704025, + -0.03427691385149956, + -0.02723289094865322, + 0.014219756238162518, + 0.018333103507757187, + -0.007840615697205067, + -0.011490557342767715, + -0.0015086742350831628, + 0.052410174161195755, + 0.009205193258821964, + -0.042669396847486496, + 0.0534956231713295, + -0.11535612493753433, + 0.013422423042356968, + 0.00341457175090909, + -0.01473406795412302, + 0.025299418717622757, + -0.026384137570858, + 0.033640988171100616, + -0.006749956868588924, + 0.0038588722236454487, + 0.019623110070824623, + 0.00971840601414442, + 0.0012524834601208568, + 0.01272749062627554, + -0.024603549391031265, + 0.03560440614819527, + -0.05249941349029541, + -0.00873576384037733, + -0.017262347042560577, + -0.027486436069011688, + 0.0368834063410759, + 0.007461100351065397, + -0.006235581822693348, + -0.02966722473502159, + -0.02035730704665184, + -0.028642989695072174, + -0.07644258439540863, + 0.014852214604616165, + 0.02867214009165764, + -0.04033452644944191, + -0.004287639167159796, + 0.028202030807733536, + 0.07872898131608963, + 0.004216949455440044, + -0.028889605775475502, + 0.02129759080708027, + -0.01801709085702896, + -0.004450076725333929, + 0.014193437062203884, + 0.007786741945892572, + -0.018013229593634605, + -0.019144345074892044, + 0.021906303241848946, + 0.004533764906227589, + 0.03654259070754051, + -0.02725280448794365, + -0.008834433741867542, + -0.037214647978544235, + 0.03490119054913521, + 0.04416296258568764, + 0.05302653834223747, + -0.04335124418139458, + 0.008948275819420815, + 0.03358743339776993, + -0.0005929998005740345, + 0.01574834994971752, + 0.03524991497397423, + 0.027081497013568878, + 0.019540049135684967, + 0.022131001576781273, + -0.0099150650203228, + 0.005733950063586235, + -0.0056074270978569984, + 0.054876234382390976, + -0.026541082188487053, + 0.011700687929987907, + -0.01614636369049549, + -0.024714970961213112, + 0.031091220676898956, + 0.021181924268603325, + 0.03563981130719185, + 0.003602805081754923, + -0.05173516273498535, + -0.017805181443691254, + -0.02003856748342514, + 0.02077065221965313, + -0.002257702872157097, + -0.0040418412536382675, + 0.043061789125204086, + 0.04160843417048454, + -0.04125922545790672, + -0.00423496775329113, + -0.0023173177614808083, + 0.022966062650084496, + -0.007473438512533903, + 0.05806773528456688, + -0.034505460411310196, + -0.04340590536594391, + -0.0007015797891654074, + -0.04421023651957512, + 0.03182719647884369, + -0.07284160703420639, + -0.11523960530757904, + -0.0013976104091852903, + -0.020327143371105194, + 0.01731770485639572, + 0.09218205511569977, + -0.003050768980756402, + 0.039097778499126434, + 0.03750643506646156, + 0.027808064594864845, + 0.04636663198471069, + -0.013962260447442532, + -0.012265434488654137, + -0.038776952773332596, + -0.008947031572461128, + -0.04964068904519081, + -0.007324382197111845, + 0.005844119470566511, + -0.015933508053421974, + 0.023603474721312523, + 0.030908530578017235, + -0.0018087568460032344, + 0.037404049187898636, + 0.029969070106744766, + 0.02563020959496498, + 0.05790127068758011, + 0.05902240797877312, + -0.06171930953860283, + 0.05521227791905403, + -0.06804965436458588, + -0.01239834539592266, + -0.010866927914321423, + -0.00948045589029789, + -0.043385736644268036, + 0.05020180717110634, + 0.06767807900905609, + 0.023971697315573692, + 0.0006341310800053179, + -0.005827581509947777, + -0.054491907358169556, + -0.013501862064003944, + -0.026993071660399437, + 0.013812768273055553, + 0.007537154946476221, + -0.03332296013832092, + 0.0346188098192215, + -0.004528810735791922, + 0.042797330766916275, + -0.029138976708054543, + 0.067950040102005, + -0.03549056127667427, + -0.035289399325847626, + -0.007393022067844868, + -0.05054484307765961, + -0.006247975863516331, + -0.0053912377916276455, + -0.0046143620274960995, + -0.03540008142590523, + -0.008355850353837013, + 0.04970670863986015, + -0.011546359397470951, + -0.05707447975873947, + -0.03556976094841957, + 0.022244930267333984, + 0.02776680327951908, + -0.019334156066179276, + -0.0032360153272747993, + 0.09567894786596298, + 0.02133410982787609, + -0.026314739137887955, + -0.001319713657721877, + 0.03264707326889038, + 0.013814291916787624, + 0.010507388040423393, + -0.006013099104166031, + 0.011915250681340694, + 0.005530437454581261, + 0.032788846641778946, + -0.013949573040008545, + -0.03508913889527321, + -0.02871217578649521, + -0.012322545051574707, + 0.02772548794746399, + 0.012001439929008484, + 0.06470297276973724, + 0.01755441725254059, + -0.05679932236671448, + 0.02855644002556801, + -0.061728738248348236, + 0.023488283157348633, + 0.07584497332572937, + 0.0008949880138970912, + 0.018014946952462196, + 0.01726425625383854, + -0.05952794849872589, + -0.04813889414072037, + -0.0032170892227441072, + -0.02942502126097679, + 0.027221977710723877, + -0.013025783002376556, + -0.010393025353550911, + 0.06907109171152115, + 0.01267776545137167, + -0.015562794171273708, + 0.012592067010700703, + 0.015001467429101467, + -0.0029344812501221895, + 0.00448300875723362, + 0.049406636506319046, + -0.02010071650147438, + 0.05299677699804306, + -0.02953893505036831, + -0.03295877203345299, + 0.0273720882833004, + -0.07331135869026184, + 0.014994633384048939, + -0.02031216025352478, + 0.0033920297864824533, + -0.02785450965166092, + -0.02304159291088581, + -0.05967919901013374, + 0.009936461225152016, + 0.01640287972986698, + 0.020311862230300903, + -0.004772089887410402, + 0.05629919469356537, + -0.0004390660033095628, + 0.03707193583250046, + -0.018657173961400986, + -0.09218671917915344, + -0.0021293326281011105, + 0.0022856954019516706, + 0.017224004492163658, + -0.029013054445385933, + 0.012880122289061546, + -0.01628861203789711, + -0.02114371955394745, + 0.006253787316381931, + 0.02265181951224804, + 0.025264328345656395, + 0.08713223040103912, + -0.01622975803911686, + 0.010001967661082745, + -0.023561187088489532, + 0.035692185163497925, + -0.019518475979566574, + -0.022239094600081444, + 0.029036978259682655, + -0.009454730898141861, + 0.01705988310277462, + -0.0017728524981066585, + -0.03299975022673607, + -0.01062713097780943, + -0.01637502945959568, + -0.018262028694152832, + -0.006079745478928089, + 0.0011277837911620736, + 0.048956725746393204, + -0.022437365725636482, + 0.05769243463873863, + 0.05083360895514488, + 0.02230818383395672, + 0.0492333360016346, + -0.005492224358022213, + -0.025749055668711662, + 0.0336371548473835, + 0.0312642976641655, + 0.02449197694659233, + 0.008354702033102512, + -0.026837117969989777, + -0.02839970774948597, + 0.001561407116241753, + -0.004068620037287474, + -0.015171476639807224, + 0.009884088300168514, + 0.0025548620615154505, + -0.05017990991473198, + 0.028149506077170372, + 0.04904235526919365, + 0.007208992727100849, + 0.03904842212796211, + 0.019946083426475525, + -0.01365596242249012, + 0.019683919847011566, + 0.01810336671769619, + -0.052678145468235016, + 0.01744810864329338, + 0.007649678271263838, + -0.006342447362840176, + 0.009182563982903957, + -0.024850919842720032, + 0.055239975452423096, + 0.017469793558120728, + -0.036230072379112244, + -0.002622090745717287, + 0.037350498139858246, + 0.026460235938429832, + 0.0024694993626326323, + 0.05481351539492607, + 0.01046693790704012, + 0.02380472421646118, + 0.06680751591920853, + 0.015419306233525276, + -0.024416588246822357, + 0.052088070660829544, + 0.04046255722641945, + -0.06925954669713974, + 0.06587207317352295, + 0.013229981996119022, + -0.016787540167570114, + 0.01548156887292862, + 0.04640315845608711, + -0.024254783987998962, + -0.02524374984204769, + 0.0024829888716340065, + 0.017463108524680138, + -0.04288666695356369, + -0.04960276186466217, + -0.06348355859518051, + 0.017613384872674942, + -0.028512153774499893, + -0.0223524309694767, + -0.039456531405448914, + 0.045252129435539246, + -0.0021470149513334036, + 0.038100387901067734, + 0.004038284532725811, + -0.08574270457029343, + -0.03278517350554466, + -0.009653419256210327, + -0.0034337881952524185, + 0.040848445147275925, + 0.035713646560907364, + -0.00794163066893816, + 0.019290931522846222, + -0.07202989608049393, + -0.004722388926893473, + 0.0077264499850571156, + -0.0015559368766844273, + -0.006960077211260796, + -0.024908654391765594, + -0.04715888202190399, + 0.017899829894304276, + -0.01267726719379425, + 0.01247123721987009, + -0.006535541266202927, + 0.043254170566797256, + 0.04558071866631508, + -0.0032159648835659027, + 0.027087939903140068, + -0.043329112231731415, + -0.02187303826212883, + -0.03270261362195015, + -0.030878668650984764, + 0.10387594252824783, + -0.01810315065085888, + 0.008175574243068695, + 0.012708890251815319, + -0.006314207334071398, + 0.016164211556315422, + -0.027007920667529106, + -0.042538877576589584, + -0.035184621810913086, + -0.020558930933475494, + -0.03364879637956619, + 0.027455773204565048, + -0.03688129037618637, + -0.020159127190709114, + 0.029875963926315308, + 0.027160368859767914, + -0.006828111596405506, + 0.03379788249731064, + -0.011937160976231098, + -0.0120921041816473, + 0.009961647912859917, + -0.03993693366646767, + 8.606839401181787e-05, + -0.04041466489434242, + -0.018554143607616425, + 0.00813652016222477, + 0.009895991533994675, + 0.06350104510784149, + -0.011109761893749237, + 0.003832149552181363, + -0.050367873162031174, + -0.022127363830804825, + -0.05714716762304306, + -0.039697691798210144, + 0.053800228983163834, + 0.011599119752645493, + 0.008701655082404613, + 0.03125081583857536, + -0.02495739795267582, + 0.03143446147441864, + -0.005442324094474316, + 0.007310784421861172, + 0.010081760585308075, + 0.026323212310671806, + 0.0691719651222229, + -0.009465538896620274, + -0.0031099996995180845, + 0.020934296771883965, + -0.07819457352161407, + -0.014089982025325298, + 0.05009990185499191, + 0.014509467408061028, + -0.032002486288547516, + 0.03016507625579834, + -0.02662583440542221, + -0.004336819518357515, + 0.02991609089076519, + -0.05100635439157486, + -0.03090493194758892, + 0.019550379365682602, + 0.0090426504611969, + 0.0002963293227367103, + -0.016379380598664284, + -0.05649986490607262, + -0.03502032160758972, + 0.034738656133413315, + -0.02191680669784546, + 0.021925469860434532, + -0.010705946013331413, + -0.0028198184445500374, + -0.0036408493760973215, + -0.01081447396427393, + 0.020973416045308113, + -0.018380390480160713, + -0.010464885272085667, + -0.07712993025779724, + -0.04547605663537979, + 0.028172604739665985, + -0.013849831186234951, + 0.0043669710867106915, + 0.016380859538912773, + 0.027199503034353256, + -0.02110109105706215, + -0.00893548782914877, + 0.04216667637228966, + -0.0044383215717971325, + 0.015010579489171505, + 0.0027755522169172764, + -0.013263944536447525, + -0.011532393284142017, + -0.003417175728827715, + -0.026833325624465942, + -0.012065672315657139, + 0.008373790420591831, + -0.03454819321632385, + -0.0032173062209039927, + -0.008308935910463333, + 0.0380505695939064, + -0.0868181362748146, + 0.01206042617559433, + -0.0001756267447490245, + -0.03284569829702377, + -0.0075057572685182095, + 0.03748017176985741, + -0.010668301023542881, + -0.02528686262667179, + 0.015000562183558941, + 0.0012533585540950298, + 0.008143817074596882, + 0.03927469626069069, + -0.0036075101234018803, + -0.008878393098711967, + 0.008004341274499893, + 0.03580736368894577, + -0.003877537092193961, + 0.02141864039003849, + -0.028224725276231766, + -0.021177049726247787, + 0.015698237344622612, + -0.011145194061100483, + 0.008236844092607498, + -0.033787962049245834, + 0.015407077036798, + -0.025120973587036133, + 0.022287966683506966, + -0.027136661112308502, + 0.042971864342689514, + 0.05694957077503204, + 0.029715657234191895, + -0.00482513103634119, + -0.031366948038339615, + -0.06542572379112244, + 0.02501540631055832, + 0.03993605077266693, + -0.0032605743035674095, + 0.030514003708958626, + 0.028931504115462303, + 0.020028535276651382, + -0.0026915473863482475, + -0.002472653752192855, + 0.0005816941265948117, + 0.04072463512420654, + -0.047378409653902054, + 0.012484831735491753, + -0.02346171624958515, + 0.04120980575680733, + 0.002191640669479966, + 0.0018234862945973873, + -0.006348873488605022, + 0.07329500466585159, + 0.002247266937047243, + -0.002550980541855097, + -0.028975149616599083, + -0.005149498116225004, + 0.019507262855768204, + -0.021891366690397263, + 0.04041390120983124, + -0.04106421023607254, + -0.04189392551779747, + 0.058469031006097794, + 0.010221735574305058, + -0.04645449295639992, + 0.025331620126962662, + 0.03987055644392967, + -0.004943108186125755, + 0.040631454437971115, + 0.055527668446302414, + -0.030872013419866562, + 0.018170367926359177, + 0.02897120639681816, + -0.01407861988991499, + -0.02553437277674675, + -0.009056473150849342, + -0.028513871133327484, + 0.002208522753790021, + -0.038873083889484406, + -0.019852139055728912, + 0.026150982826948166, + -0.0008193300454877317, + -0.010113509371876717, + 0.011822828091681004, + 0.013051124289631844, + -0.029998663812875748, + -0.009595022536814213, + -0.00874036829918623, + -0.002275087172165513, + -0.04202090948820114, + -0.0463198721408844, + -0.008451731875538826, + -0.03346706181764603, + -0.025828691199421883, + 0.020638857036828995, + -0.002541390247642994, + -0.03298509865999222, + 0.04088395833969116, + 0.01871386729180813, + -0.0005635704728774726, + -0.01782234199345112, + -0.008786204271018505, + -0.023131366819143295, + 0.029622072353959084, + 0.002653445117175579, + 0.00021300808293744922, + 0.03297599405050278, + -0.02201954834163189, + -0.03628796711564064, + 0.028383329510688782, + -0.0038668583147227764, + 0.02557559311389923, + 0.05122016370296478, + 0.01980922929942608, + 0.012927540577948093, + -0.0034021104220300913, + 0.0008755183662287891, + -0.026897870004177094, + 0.014698679558932781, + 0.0398193821310997, + 0.004934288095682859, + -0.03681962192058563, + -0.04009909927845001, + 6.932980613783002e-05, + 0.0009435569518245757, + 0.033535800874233246, + -0.05458451807498932, + 0.003411403391510248, + -0.018595436587929726, + -0.04942312464118004, + 0.02173580415546894, + -0.00537646422162652, + -0.012181105092167854, + 0.007069340441375971, + -0.03840085491538048, + 0.05955583602190018, + 0.05023125931620598, + -0.03752702847123146, + -0.06709586828947067, + 0.026876259595155716, + -0.03747183084487915, + -0.0291623305529356, + -0.032512117177248, + 0.023069920018315315, + -0.004337448626756668, + 0.04975180700421333, + -0.01682618446648121, + -0.01389361172914505, + -0.021426763385534286, + -0.03772486001253128, + -0.044091273099184036, + 0.0096410121768713, + -0.010116113349795341, + 0.012756158597767353, + 0.022951388731598854, + -0.03164929896593094, + -0.006081451661884785, + -0.04312998428940773, + 0.011374425143003464, + 0.022792711853981018, + -0.03308311849832535, + 0.0313444659113884, + 0.004205443896353245, + 0.0028208813164383173, + -0.0016267201863229275, + 0.02265854924917221, + 0.046394314616918564, + -0.02826143056154251, + -0.032265111804008484, + -0.007078920025378466, + -0.012520642951130867, + 0.009971306659281254, + -0.014787170104682446, + 0.008337483741343021, + -0.024372141808271408, + 0.01478502620011568, + 0.0004428325919434428, + 0.0469604916870594, + -0.0005978798144496977, + -0.03314978629350662, + 0.04267346113920212, + 0.0034349856432527304, + -0.03874210640788078, + 0.017961770296096802, + 0.0011085475562140346, + -0.028252817690372467, + -0.02891533076763153, + 0.023712240159511566, + -0.03645695373415947, + 0.012828018516302109, + -0.017749972641468048, + 0.0011346571845933795, + 0.019332999363541603, + 0.01875520683825016, + -0.021672800183296204, + -0.017323611304163933, + -0.0005072640487924218, + 0.02667825296521187, + 0.011092906817793846, + -0.009443667717278004, + -0.08495797961950302, + 0.035319168120622635, + 0.0034068298991769552, + 0.012760617770254612, + 0.028061388060450554, + 0.029047807678580284, + 0.05211670324206352, + -0.0013538519851863384, + -0.005001366138458252, + 0.06612337380647659, + -0.046462878584861755, + -0.012580221518874168, + -0.0073295533657073975, + -0.03012792579829693, + 0.04857321456074715, + -0.05151200294494629, + 0.04007728770375252, + 0.000768164056353271, + 0.010251942090690136, + -0.03598134592175484, + -0.016311997547745705, + -0.01220056414604187, + 0.006520841736346483, + 0.037762727588415146, + 0.008694181218743324, + -0.003371619386598468, + 0.04154923930764198, + 0.05174713954329491, + 0.0649208351969719, + 0.054800622165203094, + 0.02807554416358471, + 0.011221677996218204, + -0.04115372151136398, + -0.011276510544121265, + 0.013915693387389183, + -0.011968596838414669, + 0.02209015190601349, + 0.001919189584441483, + 0.017416618764400482, + 0.0019004832720384002, + -0.05268670618534088, + 0.046577226370573044, + -0.03897319734096527, + 0.012469586916267872, + 0.0468781515955925, + -0.028925735503435135, + 0.04673955217003822, + -0.023682640865445137, + 0.010201269760727882, + -0.038640186190605164, + 0.019127624109387398, + 0.02375682070851326, + 0.0056444318033754826, + 0.0285381767898798, + 0.005651578307151794, + 1.0758549251477234e-05, + -0.012470371089875698, + 0.057004451751708984, + 0.016517994925379753, + 0.012726860120892525, + -0.04609272629022598, + -0.041169099509716034, + -0.004068879410624504, + 0.05283253639936447, + -0.03699149563908577, + -0.005349528044462204, + 0.03316371515393257, + 0.03324182704091072, + -0.010481397621333599, + -0.020311497151851654, + 0.03374653682112694, + 0.041699133813381195, + 0.03304784744977951, + -0.013009793125092983, + 0.030174532905220985, + 0.05212957039475441, + 0.0006740674143657088, + 0.034965697675943375, + 0.02750132977962494, + 0.029244575649499893, + -0.008703475818037987, + 0.006030130200088024, + 0.006109687965363264, + 0.06664928048849106, + -0.017955059185624123, + -0.07569494098424911, + 0.009957648813724518, + -0.03811487555503845, + -0.006863454356789589, + 0.03268607333302498, + -0.04202348738908768, + 0.008243998512625694, + 0.029020551592111588, + 0.01631191559135914, + -0.033243853598833084, + -0.035938456654548645, + 0.0288236141204834, + 0.017608631402254105, + 0.042531680315732956, + -0.001167990849353373, + 0.012064963579177856, + -0.0026466159615665674, + 0.01818453148007393, + 0.001747438102029264 + ], + "start_index": 20434, + "end_index": 21004, + "token_count": 104, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "b2aaef83-a2a1-58ce-ad8b-9cdb53e620f8", + "_source": { + "text": "\n\n---\n\n## SECCIÓN IX: Expresiones y Gramática Léxica Estricta\n\nEsta sección es el corazón matemático evaluador de AVAP. Define la jerarquía exacta (Precedencia) y provee soporte nativo para características avanzadas similares a Python.\n\n### 9.1 Cast de Tipos Explícito\nAVAP permite conversiones de tipos (Type Casting) en cualquier evaluación utilizando funciones constructoras estándar. Puedes transformar variables dinámicamente usando `int(var)`, `float(var)` o `str(var)`.\n\n### 9.2 Slicing y Comprensiones (Comprehensions)\n* **Slicing (Cortes):** Puedes extraer fragmentos de listas o strings utilizando la notación de dos puntos. Ejemplo: `mi_lista[1:4]` (extrae desde el índice 1 hasta el 3).\n* **Comprehensions:** AVAP soporta la construcción rápida de listas mediante iteradores en una sola línea, permitiendo filtrar y mapear colecciones enteras (ej. `[x * 2 for x in valores if x > 0]`).\n\n### 9.3 Análisis Léxico (Lexer) y Documentación\nAVAP cuenta con tres niveles de descarte de texto para anotaciones humanas:\n1. **Comentarios de Línea (`//`):** Ignora el texto hasta el salto de línea.\n2. **Comentarios de Bloque (`/* ... */`):** Para aislar bloques enteros multilínea.\n3. **Comentarios de Documentación (`///`):** Utilizados por analizadores de código o IDEs para generar documentación técnica automática (Docstrings) a partir del código fuente.\n\n### Especificación BNF (Sección IX)\n\n\n\n/* Jerarquía de Expresiones (Precedencia de menor a mayor) */\n ::= \n ::= ( \"or\" )*\n ::= ( \"and\" )*\n ::= \"not\" | \n\n ::= ( )*\n ::= \"==\" | \"!=\" | \"<\" | \">\" | \"<=\" | \">=\" | \"in\" | \"is\"\n\n ::= ( ( \"+\" | \"-\" ) )*\n ::= ( ( \"*\" | \"/\" | \"%\" ) )*\n ::= ( \"+\" | \"-\" ) | \n ::= [ \"**\" ]\n\n/* Primarios y Átomos (Accesos, Castings, Slicing, Métodos y Funciones)\n La regla cubre también el acceso a métodos de objetos conector\n (conector.metodo(...)) y el acceso por clave a sus resultados (resultado[\"key\"]) */\n ::= \n | \".\" \n | \"[\" \"]\"\n | \"[\" [] \":\" [] [\":\" []] \"]\"\n | \"(\" [] \")\"\n\n ::= \n | \"$\" \n | \n | \"(\" \")\"\n | \n | \n\n/* Estructuras de Datos, Comprensiones y Argumentos */\n ::= \"[\" [] \"]\"\n | \"[\" \"for\" \"in\" [] \"]\"\n ::= \"if\" \n ::= \"{\" [] \"}\"\n ::= ( \",\" )*\n ::= \":\" \n ::= ( \",\" )*\n\n/* Tipo numérico unificado */\n ::= | \n\n/* Literales (Tipos de Datos Primitivos Soportados) */\n ::= | | | \"None\"\n ::= \"True\" | \"False\"\n ::= [0-9]+\n ::= [0-9]+ \".\" [0-9]* | \".\" [0-9]+\n\n/* Cadenas de Texto con soporte de secuencias de escape */\n ::= \"\\\"\" \"\\\"\" | \"'\" \"'\"\n ::= \"\\\\\" ( \"\\\"\" | \"'\" | \"\\\\\" | \"n\" | \"t\" | \"r\" | \"0\" )\n ::= ( [^\"\\\\] | )*\n ::= ( [^'\\\\] | )*\n ::= | \n\n/* Reglas de Comentarios para el Lexer\n El lexer aplica longest-match: /// debe evaluarse ANTES que // */\n ::= \"///\" \n ::= \"//\" \n ::= \"/*\" \"*/\"\n ::= [^\\r\\n]*\n ::= /* Cualquier secuencia de caracteres que no contenga la subcadena \"*/\" */", + "embedding": [ + 0.02805943414568901, + 0.04583291709423065, + -0.011363034136593342, + -0.08968006074428558, + 0.03064117021858692, + 0.07977171987295151, + -0.04206446558237076, + 0.022201720625162125, + 0.009999627247452736, + -0.05639577656984329, + 0.008774573914706707, + -0.06435834616422653, + 0.013650662265717983, + -0.00878859218209982, + -0.03979431837797165, + 0.03756910562515259, + -0.0008076588273979723, + 0.038650915026664734, + -0.0031840312294662, + -0.055150240659713745, + -0.027544304728507996, + 0.017707427963614464, + -0.020361272618174553, + 0.0722021535038948, + -0.02381850965321064, + -0.018318986520171165, + 0.018264660611748695, + -0.00996883399784565, + -0.031227540224790573, + -0.06353843212127686, + -0.03803024813532829, + -0.046677980571985245, + -0.094490647315979, + -0.011661316268146038, + -0.00033047626493498683, + -0.011561166495084763, + -0.023600144311785698, + -0.012796161696314812, + 0.0630047470331192, + -0.011698965914547443, + -0.03615071624517441, + 0.028865322470664978, + -0.007242829538881779, + 0.013696711510419846, + -0.0021078169811517, + -0.06137269735336304, + 0.012916750274598598, + -0.00792397279292345, + 0.04528045281767845, + 0.02209548093378544, + -0.049155671149492264, + 0.003244594903662801, + 0.02130625583231449, + -0.0018313177861273289, + -0.040163327008485794, + 0.02470182068645954, + 0.03734058886766434, + 0.0006323712295852602, + 0.001546933432109654, + -0.007379367481917143, + -0.012059000320732594, + -0.02157427743077278, + -0.03266562148928642, + -0.02578246034681797, + 0.01525375247001648, + -0.009956910274922848, + 0.004744348581880331, + 0.012237784452736378, + -0.0009808468166738749, + 0.008807544596493244, + -0.006471983622759581, + 0.015073750168085098, + 0.046405378729104996, + 0.02164348028600216, + 0.006787198595702648, + 0.05471412092447281, + 0.01217229850590229, + -0.04437209665775299, + 0.006570319179445505, + 0.03146872669458389, + -0.007845712825655937, + 0.04916824400424957, + 0.0078047229908406734, + -0.01002904400229454, + 0.021447833627462387, + 0.03292388468980789, + -0.04133005812764168, + -0.03766702860593796, + 0.011557871475815773, + 0.015782594680786133, + -0.00741394842043519, + -0.01961098052561283, + -0.03066970966756344, + 0.0016252853674814105, + 0.05216214805841446, + 0.0045086476020514965, + -0.03371073678135872, + -0.006464390549808741, + 0.020964032039046288, + -0.02147522009909153, + 0.0053710429929196835, + -0.015396518632769585, + 0.020922252908349037, + 0.017144333571195602, + 0.01719944179058075, + 0.051450006663799286, + -0.06005571037530899, + 0.008949071168899536, + 0.012071678414940834, + -0.03247816488146782, + -0.02150961197912693, + -0.015174945816397667, + 0.047974031418561935, + 0.060877591371536255, + -0.02091682329773903, + -0.03772372007369995, + -0.02433163858950138, + -0.011785472743213177, + 0.013794692233204842, + -0.007061781827360392, + 0.008314993232488632, + 0.016926992684602737, + 0.0016999435611069202, + 0.007826226763427258, + 0.046576131135225296, + -0.00991804338991642, + -0.043680693954229355, + -0.026460185647010803, + -0.0010636844672262669, + 0.015980524942278862, + -0.0170475821942091, + -0.0002104022423736751, + -0.004931464791297913, + 0.027560623362660408, + -0.009971735067665577, + -0.002244772156700492, + 0.027127254754304886, + -0.007265843451023102, + 0.04024074971675873, + 0.001684474409557879, + -0.037404175847768784, + -0.01831536740064621, + -0.01194978691637516, + -0.025723109021782875, + 0.012241589836776257, + 0.0572187565267086, + 0.004534988664090633, + 0.038013994693756104, + -0.030730046331882477, + 0.06616619974374771, + 0.013219102285802364, + -0.03741193562746048, + -0.0227565485984087, + -0.009724476374685764, + -0.0428626574575901, + -0.018446123227477074, + 0.009093948639929295, + 0.030761094763875008, + -0.016031252220273018, + -0.002458140254020691, + -0.0031330736819654703, + 0.02651355043053627, + -0.020513560622930527, + -0.03587888926267624, + 0.020863348618149757, + -0.004579558968544006, + -0.0019456539303064346, + -0.04310460016131401, + 0.0019489501137286425, + -0.018144065514206886, + -0.0061382087878882885, + 0.03132924437522888, + -0.008694881573319435, + -0.011057876981794834, + -0.0037125018425285816, + -0.015734294429421425, + -0.02880697138607502, + 0.05364973843097687, + -0.029655521735548973, + -0.0031485247891396284, + 0.031400252133607864, + 0.010817750357091427, + 0.0002930520859081298, + 0.01545749045908451, + 0.051259834319353104, + 0.08736743777990341, + -0.027000611647963524, + -0.013460597023367882, + -0.024215873330831528, + -0.0163592416793108, + 0.007928876206278801, + -0.018624747171998024, + -0.03537043556571007, + 0.0007577224751003087, + -0.013624614104628563, + -0.026613689959049225, + -0.00460681039839983, + -0.009281284175813198, + 0.035817936062812805, + -0.00027890168712474406, + 0.011309506371617317, + -0.022106721997261047, + -0.01877376064658165, + 0.029060909524559975, + -0.037073079496622086, + -0.04498232901096344, + -0.015406912192702293, + 0.010285214520990849, + -0.05173886939883232, + 0.01042984239757061, + 0.007324713747948408, + 0.005200076382607222, + 0.004781634081155062, + -0.03812476247549057, + -0.011669589206576347, + -0.0071330321952700615, + 0.0026403330266475677, + 0.04676496982574463, + -0.009046655148267746, + 0.060087401419878006, + 0.034594595432281494, + 0.02906843088567257, + -0.024251742288470268, + 0.011745980940759182, + 0.07376712560653687, + 0.005454671569168568, + 0.001122945686802268, + -0.01131484005600214, + -0.012716925702989101, + 0.012175947427749634, + 0.0007181812543421984, + 0.022999418899416924, + 0.018408074975013733, + -0.03473624587059021, + 0.013642169535160065, + 0.020731167867779732, + -0.003103773109614849, + 0.015417828224599361, + 0.05036615580320358, + -0.012624936178326607, + -0.006520845927298069, + -0.005196868441998959, + 0.022312505170702934, + 0.011329926550388336, + -0.004817083012312651, + 0.005489470902830362, + 0.005201444961130619, + -0.012832303531467915, + -0.03616918995976448, + 0.00949808768928051, + 0.04828327149152756, + 0.0446128249168396, + 0.0006465135957114398, + 0.022999268025159836, + 0.007912344299256802, + -0.041438888758420944, + -0.011896595358848572, + 0.0032978372182697058, + 0.008243837393820286, + 0.01145732682198286, + 0.023444315418601036, + 0.0033386682625859976, + 0.034077998250722885, + 0.027534084394574165, + 0.020179618149995804, + 0.01828588917851448, + -0.003977703861892223, + 0.0026525291614234447, + -0.041816577315330505, + -0.03148723021149635, + 0.029625985771417618, + 0.028693895787000656, + 0.039373308420181274, + -0.017550433054566383, + 0.019375275820493698, + 0.01685749553143978, + 0.0009928608778864145, + -0.057015303522348404, + 0.029668821021914482, + 0.006824983283877373, + 0.052422016859054565, + -0.05498810112476349, + -0.025166939944028854, + -0.027019187808036804, + 0.03677421063184738, + 0.04118703305721283, + 0.019627653062343597, + 0.0013645484577864408, + 0.01385323517024517, + -0.008216564543545246, + -0.01890714280307293, + 0.05939924344420433, + -0.022572971880435944, + 0.012614630162715912, + -0.04197344928979874, + -0.037251781672239304, + 0.01695725880563259, + 0.02290404587984085, + -0.003143206937238574, + 0.0022917701862752438, + 0.05490759015083313, + -0.007136212661862373, + -0.014801508747041225, + -0.020102960988879204, + -0.10024452954530716, + -0.009644192643463612, + 0.11214693635702133, + -0.015454979613423347, + 0.03413580730557442, + 0.0042785536497831345, + 0.03661983087658882, + 0.00851421058177948, + -0.012171665206551552, + 0.012570026330649853, + -0.00922243483364582, + -0.003515661461278796, + 0.0638074278831482, + 0.00870429165661335, + 0.035089701414108276, + -0.06949120759963989, + 0.027803311124444008, + 0.023996779695153236, + -0.017622096464037895, + -0.06741218268871307, + 0.016391323879361153, + -0.01240039523690939, + 0.03392782807350159, + 0.0017187342746183276, + 0.021340196952223778, + 0.009756918996572495, + 0.044841159135103226, + 0.056755248457193375, + 0.039123423397541046, + -0.012169567868113518, + 0.002625435357913375, + -0.011278015561401844, + 0.029003435745835304, + 0.027342699468135834, + -0.04271567985415459, + -0.030927089974284172, + 0.0009468190255574882, + -0.013341094367206097, + -0.02648826688528061, + 0.010227699764072895, + -0.040141478180885315, + -0.01646786369383335, + 0.01743146777153015, + 0.04551895707845688, + 0.010806900449097157, + -0.02305624447762966, + -0.0010336624691262841, + -0.0010141781531274319, + 0.030968381091952324, + 0.020711369812488556, + 0.008490258827805519, + -0.07216902822256088, + 0.024864932522177696, + 0.07943656295537949, + -0.04008658230304718, + -0.045277293771505356, + -0.008078421466052532, + 0.043581411242485046, + 0.023155799135565758, + 0.008407516404986382, + -0.021394552662968636, + -0.04305330663919449, + -0.06803588569164276, + -0.04818667098879814, + 0.044156551361083984, + -0.0022382200695574284, + -0.0937509685754776, + -0.001821016427129507, + 0.002958698198199272, + 0.07107922434806824, + 0.02369614690542221, + 0.019490601494908333, + 0.0425507128238678, + -0.010217355564236641, + 0.021789394319057465, + 0.08366413414478302, + 0.06309963017702103, + 0.023455319926142693, + -0.025123700499534607, + 0.020947890356183052, + -0.02035105600953102, + -0.054204728454351425, + 0.002667313441634178, + -0.021066781133413315, + -0.024583132937550545, + 0.027473269030451775, + 0.03952445834875107, + -0.025898147374391556, + 0.022508198395371437, + 0.04980333149433136, + -0.015312602743506432, + 0.012316562235355377, + -0.044476088136434555, + 0.019318724051117897, + -0.051539305597543716, + 0.02491767518222332, + 0.04277915880084038, + 0.018209261819720268, + -0.023322707042098045, + 0.024528667330741882, + 0.02945985086262226, + 0.01167034637182951, + 0.03578165918588638, + -0.02661275304853916, + -0.00011872604227392003, + 0.014763910323381424, + 0.006167922634631395, + 0.040809132158756256, + -0.0056745922192931175, + 0.011788059957325459, + 0.0030653811991214752, + -0.024105602875351906, + 0.07706329971551895, + -0.03425901010632515, + -0.03815137594938278, + 0.03338967636227608, + -0.04382169246673584, + 0.06984268873929977, + -0.047369584441185, + -0.007213711738586426, + 0.020204026252031326, + 0.01916244439780712, + -0.020987192168831825, + 0.004251247271895409, + -0.02680560015141964, + -0.02761060558259487, + -0.023992981761693954, + 0.0013517830520868301, + -0.03847622498869896, + 0.030910320580005646, + -0.043175894767045975, + 0.030030831694602966, + 0.053896352648735046, + 0.02380150742828846, + -0.005382610019296408, + -0.014003227464854717, + 0.02571125514805317, + 0.005301027558743954, + -0.04260389879345894, + 0.017788484692573547, + -0.03334735333919525, + 0.014151145704090595, + 0.009730328805744648, + 0.04817907139658928, + -0.050078507512807846, + -0.0391041599214077, + 0.0012518365401774645, + -0.020027153193950653, + -0.04576687142252922, + 0.06757001578807831, + 0.011148779653012753, + -0.04381787031888962, + -0.006288858596235514, + -0.10877706855535507, + -0.019464878365397453, + 0.024523412808775902, + 0.011501135304570198, + 0.005173747893422842, + -0.012180368416011333, + -0.07720878720283508, + -0.010636046528816223, + 0.006683384533971548, + -0.009242335334420204, + -0.036241255700588226, + 0.08680585771799088, + -0.03996618837118149, + 0.040813907980918884, + 0.022147661074995995, + -0.013679873198270798, + -0.020150184631347656, + -0.03000464290380478, + -0.04196402058005333, + -0.020311430096626282, + 0.04343670606613159, + -0.01652262732386589, + -0.025662554427981377, + -0.005733576603233814, + -0.029995694756507874, + 0.02798932045698166, + -0.04557984694838524, + 0.043007221072912216, + -0.01770736649632454, + 0.026122411713004112, + -0.035716015845537186, + -0.04217074438929558, + 0.017777787521481514, + -0.015614349395036697, + 0.008535576052963734, + 0.02149340882897377, + -0.038981594145298004, + -0.0011500860564410686, + -0.008570166304707527, + 0.00651523657143116, + -0.03386024758219719, + -0.09042275696992874, + 0.05278127267956734, + 0.019368544220924377, + 0.02208956889808178, + 0.003293535439297557, + -0.012288015335798264, + -0.0008004684350453317, + -0.07860791683197021, + 0.0036780480295419693, + -0.0591246597468853, + 0.06461113691329956, + 0.06382066011428833, + -0.02611263282597065, + -0.01987263932824135, + 0.01924775168299675, + 0.007884648628532887, + -0.013859543949365616, + -0.035068217664957047, + 0.009320084005594254, + 0.02119549550116062, + -0.03607586771249771, + 0.029322035610675812, + -0.002408545697107911, + 0.0508907325565815, + 0.028318507596850395, + 0.02229829877614975, + -0.04112020879983902, + 0.03909781575202942, + 0.005446953698992729, + -0.014193398877978325, + -0.013069183565676212, + -0.005016697105020285, + 0.002294765319675207, + -0.07089908421039581, + 0.003943904768675566, + -0.004244839772582054, + -0.02682219073176384, + 0.03225141018629074, + -0.02931126207113266, + -0.021028738468885422, + 0.025429222732782364, + 0.014574514701962471, + 0.005503273103386164, + 0.006203149911016226, + 0.008285204879939556, + 0.015132567845284939, + 0.01840410940349102, + -0.005414080340415239, + -0.0007664876757189631, + 0.041534990072250366, + 0.012237791903316975, + 0.0356944240629673, + -0.017115794122219086, + 0.044646307826042175, + 0.029068367555737495, + -0.012202395126223564, + -0.015879973769187927, + -0.021659454330801964, + 0.02510443702340126, + 0.013857531361281872, + 0.013192242942750454, + 0.00794230680912733, + -0.012220172211527824, + 0.03666553273797035, + 0.012255217880010605, + -0.01963711902499199, + 0.046627312898635864, + 0.008348186500370502, + -0.003335527377203107, + 0.03713815659284592, + -0.0077942111529409885, + -0.00976741686463356, + 0.023748598992824554, + 0.006109250709414482, + 0.01509074680507183, + 0.02727845497429371, + -0.02059188298881054, + -0.03223493695259094, + 0.0015533692203462124, + 0.04755379259586334, + 0.015568677335977554, + 0.020043877884745598, + 0.0018146204529330134, + -0.03932598978281021, + -0.01580059714615345, + 0.05275098979473114, + 0.02740967459976673, + 0.0019193155458196998, + -0.011262157000601292, + -0.02063923515379429, + 0.05100147798657417, + 0.024749593809247017, + -0.03595174103975296, + -0.012385528534650803, + 0.02541094459593296, + -0.011620034463703632, + 0.046041861176490784, + 0.023013586178421974, + -0.011671231128275394, + -0.004282793495804071, + -0.06471754610538483, + -0.005747850053012371, + -0.018271537497639656, + 0.041829682886600494, + -0.013808252289891243, + 0.007479397114366293, + -0.05002002418041229, + -0.02567041479051113, + -0.01333671249449253, + -0.012770355679094791, + -0.046436846256256104, + -0.04900499805808067, + -0.01420682854950428, + 0.04143603891134262, + -0.019417820498347282, + 0.026179131120443344, + 0.022515909746289253, + -0.04535225033760071, + -0.041013460606336594, + -0.016645366325974464, + 0.04440852627158165, + -0.02132211998105049, + -0.030164726078510284, + 0.02274676226079464, + -0.02779698185622692, + 0.05586441606283188, + 0.004488466773182154, + 0.013082888908684254, + -0.004615601152181625, + -0.05444071814417839, + -0.04648592695593834, + -0.012961248867213726, + -0.06014617905020714, + 0.0004694514209404588, + -0.004523308016359806, + 0.011908585205674171, + -0.019234834238886833, + -0.04418587684631348, + 0.010618471540510654, + 0.003777330508455634, + 0.013364328071475029, + -0.061359889805316925, + 0.019561482593417168, + 0.01847553811967373, + 0.015783939510583878, + 0.033708199858665466, + 0.025515835732221603, + 0.001034038607031107, + -0.06294124573469162, + 0.0030859815888106823, + 0.02023056149482727, + -0.001354163745418191, + 0.004676062613725662, + 0.033691827207803726, + 0.03355763852596283, + 0.03654002770781517, + -0.04949251934885979, + 0.0331813283264637, + 0.026661699637770653, + -0.017423585057258606, + -0.016144296154379845, + -0.014761683531105518, + -0.022787058725953102, + -0.05378992483019829, + 0.010332025587558746, + -0.014843585900962353, + -0.014695251360535622, + 0.03306669369339943, + 0.04155649617314339, + 0.03180632367730141, + 0.029356854036450386, + 0.010115760378539562, + 0.011064360849559307, + -0.01653066650032997, + -0.05959469452500343, + 0.04955383017659187, + 0.01957293599843979, + -0.07193117588758469, + 0.013456678949296474, + -0.04702473059296608, + -0.01868046447634697, + 0.0072774565778672695, + -0.051794737577438354, + -0.00900417659431696, + 0.05944814532995224, + -0.039090801030397415, + 0.009227163158357143, + -0.07200408726930618, + -0.04449788108468056, + 0.022706206887960434, + 0.05177822709083557, + -0.009421072900295258, + -0.017007648944854736, + -0.022598717361688614, + -0.010468600317835808, + -0.035283900797367096, + -0.03503304719924927, + 0.00788531731814146, + 0.014780227094888687, + 0.009008965454995632, + -0.01987612061202526, + 0.02534021995961666, + 0.018504507839679718, + 0.055930111557245255, + 0.005277864634990692, + 0.02016928791999817, + 0.017980892211198807, + -0.03500652313232422, + -0.05219805985689163, + 0.008125610649585724, + -0.06115327775478363, + 0.0193072147667408, + 0.03209305554628372, + 0.032510969787836075, + -0.005328576546162367, + -0.03924918919801712, + 0.04479491710662842, + 0.0067602843046188354, + -0.003403055015951395, + -0.04290157929062843, + -0.022386223077774048, + -0.026941489428281784, + -8.527324098395184e-05, + -0.08408674597740173, + 0.017739932984113693, + -0.001967487158253789, + -0.06260296702384949, + 0.006622033193707466, + -0.05769765004515648, + 0.0010649319738149643, + 0.04779184237122536, + -0.041049618273973465, + 0.0036198250018060207, + 0.04232383146882057, + 0.0017387900734320283, + -0.030567893758416176, + 0.011846097186207771, + 0.026871347799897194, + 0.013227978721261024, + 0.015873342752456665, + -0.01720884069800377, + 0.03398686647415161, + -0.03054959699511528, + -0.03673778474330902, + -0.01738620363175869, + -0.03293289616703987, + 0.006723513826727867, + -0.010684816166758537, + 0.02903849072754383, + -0.003333049826323986, + -0.022255966439843178, + 0.035841185599565506, + 0.0035865877289325, + -0.021645549684762955, + 0.013736831955611706, + 0.0011031893081963062, + -0.012357747182250023, + 0.025166157633066177, + 0.010909189470112324, + 0.03711418807506561, + -0.024905437603592873, + -0.026686636731028557, + 0.021998818963766098, + 0.016880901530385017, + -0.022303972393274307, + 0.0028136817272752523, + 0.006112788338214159, + 0.008803831413388252, + 0.0294665414839983, + -0.01394127681851387, + -0.017568115144968033, + -0.0012309766607359052, + 0.021791713312268257, + -0.02534504607319832, + 0.06805700808763504, + 0.03049851767718792, + 0.02330857329070568, + 0.017511606216430664, + 0.04603835567831993, + 0.012602020986378193, + -0.03226407244801521, + 0.06432473659515381, + -0.009517005644738674, + -0.026080995798110962, + 0.009531233459711075, + -0.0012271888554096222, + -0.04769463837146759, + 0.01811366155743599, + -0.00027619177126325667, + 0.016726823523640633, + 0.01864021271467209, + 0.026745688170194626, + -0.03532235324382782, + -0.03188116475939751, + 0.06669256091117859, + -0.017271703109145164, + 0.015124217607080936, + 0.0051974942907691, + -0.013535757549107075, + -0.013036718592047691, + -0.01788301207125187, + -0.012961462140083313, + -0.01624756120145321, + -0.017319507896900177, + -0.03512401133775711, + -0.00761540187522769, + 0.034886714071035385, + -0.04932403191924095, + 0.03294597938656807, + 0.010909060947597027, + 0.0029627305921167135, + -0.011317327618598938, + -0.0685858353972435, + -0.003982262220233679, + 0.020725499838590622, + 0.00273463549092412, + 0.032407745718955994, + -0.014449592679738998, + -0.03437291085720062, + -0.017050568014383316, + -0.026854898780584335, + -0.03421679511666298, + 0.005362902767956257, + 0.0010803736513480544, + -0.0154176140204072, + 0.0384063757956028, + 0.006840623449534178, + 0.043972693383693695, + 0.012667733244597912, + -0.017260214313864708, + 0.003038836410269141, + -0.01003707479685545, + 0.025705743581056595, + -0.03595820069313049, + 0.019462911412119865, + 0.013361262157559395, + 0.03224823996424675, + 0.016452867537736893, + -0.06754511594772339, + 0.021632440388202667, + -0.037247080355882645, + -0.014871888794004917, + -0.0028705322183668613, + 0.03478933125734329, + -0.048145841807127, + 0.057562150061130524, + 0.02554570883512497, + 0.008322988636791706, + 0.045144155621528625, + 0.04304491728544235, + 0.0008744436199776828, + -0.05604799464344978, + -0.004497104324400425, + 0.006478088442236185, + -0.05049772188067436, + -0.019806189462542534, + -0.03881894052028656, + 0.03343047946691513, + 0.011570955626666546, + 0.014188955537974834, + -0.014089596457779408, + 0.012227922677993774, + -0.02574576996266842, + -0.008874700404703617, + -0.06025956943631172, + 0.014785287901759148, + -0.0457579605281353, + 0.006679050624370575, + -0.048775915056467056, + 0.011361558921635151, + 0.06088333949446678, + 0.0016183539992198348, + 0.003924485761672258, + 0.06631672382354736, + -0.029010852798819542, + 0.010935060679912567, + 0.00876831728965044, + -0.0016871176194399595, + -0.057259730994701385, + -0.04932481795549393, + 0.031155837699770927, + 0.04401637241244316, + -0.0019355766708031297, + 0.0008415939519181848, + 0.01412659790366888, + 0.017554871737957, + 0.03359587863087654, + 0.0066526359878480434, + -0.007303720805794001, + -0.04577827826142311, + -0.038712892681360245, + -0.01283684279769659, + -0.018880313262343407, + 0.009852245450019836, + -0.03171621263027191, + 0.04070565104484558, + -0.13332082331180573, + 0.05711724981665611, + 0.00850061234086752, + 0.008923386223614216, + 0.005465728230774403, + -0.013134432025253773, + 0.05551794171333313, + 0.007494107820093632, + 0.008444640785455704, + -0.014052534475922585, + -0.03175516054034233, + -0.007297984790056944, + 0.012425743043422699, + 0.03960714861750603, + 0.006696728989481926, + -0.029891643673181534, + -0.015354881063103676, + 0.03887017071247101, + 0.010963602922856808, + 0.0547088086605072, + -0.014104539528489113, + 0.00944800116121769, + -0.02827826514840126, + 0.015290402807295322, + 0.01256505772471428, + -0.015007248148322105, + -0.04424430802464485, + 0.059995315968990326, + 0.015049244277179241, + 0.010353194549679756, + -0.03955817595124245, + 0.0013075920287519693, + -0.02285614050924778, + -0.002396227326244116, + -0.012193609029054642, + -0.034475743770599365, + -0.06470287591218948, + 0.039967820048332214, + 0.008430948480963707, + 0.011982512660324574, + 0.0245707668364048, + -0.03436549752950668, + 0.020200368016958237, + 0.005891746841371059, + -0.01140325516462326, + 0.024588575586676598, + 0.046034567058086395, + -0.024476943537592888, + -0.0105969849973917, + 0.03322845324873924, + 0.06958430260419846, + -0.004652050323784351, + 0.02756037749350071, + 0.017383446916937828, + 0.010485117323696613, + 0.03114340454339981, + -0.04483634606003761, + 0.004327862523496151, + -0.05614091455936432, + -0.02241743542253971, + -0.007946678437292576, + -0.0020148868206888437, + -0.025267528370022774, + 0.04936705529689789, + 0.038901831954717636, + 0.024568790569901466, + -0.007330622989684343, + -0.01844189688563347, + -0.04279613867402077, + 0.016063472256064415, + -0.0009894492104649544, + -0.03360918536782265, + 0.008174213580787182, + 0.017771435901522636, + 0.007123666349798441, + -0.007979592308402061, + 0.05579490214586258, + 0.05006213113665581, + 0.016106614843010902, + 0.025699645280838013, + 0.014575177803635597, + 0.010307878255844116, + -0.015288208611309528, + -0.034518271684646606, + 0.005150121636688709, + -0.02615974470973015, + -0.025727584958076477, + -0.018921934068202972, + 0.016940491273999214, + 0.027780458331108093, + -0.03620213270187378, + -0.0045220740139484406, + 0.017268214374780655, + 0.030378524214029312, + 0.047713372856378555, + -0.04231511801481247, + 0.007328314241021872, + -0.005316880065947771, + 0.02316410280764103, + -0.0334240160882473, + 0.02648291550576687, + 0.04036064073443413, + 0.0138353006914258, + -0.0201349388808012, + 0.022887419909238815, + -0.009682437404990196, + 0.03314562141895294, + -0.008145712316036224, + 0.029519248753786087, + 0.007645695004612207, + 0.005956168752163649, + -0.04172199219465256, + 0.022319650277495384, + -0.0056985183618962765, + 0.017697088420391083, + 0.03710975497961044, + 0.0016975551843643188, + -0.005069146864116192, + 0.04024096950888634, + -0.02531595341861248, + 0.020725354552268982, + -0.03205723688006401, + 0.04868653044104576, + 0.03486892208456993, + -0.003165405709296465, + -0.002972907153889537, + 0.003180438419803977, + -0.01860491745173931, + 0.0543825738132, + -0.03539332374930382 + ], + "start_index": 21004, + "end_index": 25343, + "token_count": 398, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "a59618f1-7a3a-51bb-bc1e-61002676e982", + "_source": { + "text": "\n\n# APÉNDICE X: Especificación Léxica de AVAP\n\nEste apéndice define las reglas del **analizador léxico (lexer)** del lenguaje AVAP. \nEl lexer transforma el código fuente en una secuencia de **tokens**, que posteriormente son consumidos por el parser descrito en la gramática BNF.\n\nEl análisis léxico sigue el principio de **máxima coincidencia (longest match)**: cuando múltiples reglas pueden coincidir con el mismo texto, se selecciona la coincidencia más larga.\n\n---\n\n# X.1 Espacios en blanco y separadores\n\nLos siguientes caracteres se ignoran excepto cuando forman parte de literales o comentarios.\n\n\n\nWHITESPACE ::= [ \\t]+\nEOL ::= \\r\\n | \\n | \\r", + "embedding": [ + 0.011577594093978405, + -0.032747600227594376, + -0.010876263491809368, + -0.08507954329252243, + -0.009853902272880077, + 0.04520305246114731, + -0.03505365550518036, + 0.048235438764095306, + -0.020172415301203728, + -0.075214684009552, + 0.02373240515589714, + -0.08807755261659622, + 0.02732756733894348, + -0.010278895497322083, + -0.037195801734924316, + 0.02461986429989338, + 0.019811300560832024, + -0.013878783211112022, + -0.009693815372884274, + -0.0026527470909059048, + -0.02146925963461399, + 0.038493867963552475, + -0.015143843367695808, + 0.13646146655082703, + -0.012620656751096249, + -0.009374797344207764, + -0.01853078603744507, + -0.023872530087828636, + -0.01687662862241268, + -0.03708048537373543, + -0.023546185344457626, + -0.06186062842607498, + -0.10561104118824005, + -0.038824841380119324, + -0.015653178095817566, + -0.014307094737887383, + -0.009103127755224705, + 0.007389359176158905, + 0.05031956359744072, + 0.010819166898727417, + -0.013990843668580055, + 0.007245676126331091, + -0.018467051908373833, + 0.036240752786397934, + -0.005847148597240448, + -0.07838647812604904, + -0.023396166041493416, + 0.0214029960334301, + -0.0027688562404364347, + 0.00753775192424655, + -0.049916330724954605, + -0.01051948219537735, + 0.05432502552866936, + -0.011042400263249874, + -0.06342080980539322, + 0.019643694162368774, + -0.006622502580285072, + -0.03181798756122589, + 0.04443729668855667, + 0.005736005026847124, + 0.008262881077826023, + -0.014025302603840828, + -0.014884262345731258, + -0.016175299882888794, + 0.040751952677965164, + 0.004834919236600399, + 0.017542731016874313, + -0.03723909333348274, + -0.035220880061388016, + -0.005474873818457127, + 0.0025372831150889397, + 0.0005725800874643028, + -0.004927158821374178, + 0.0213133804500103, + 0.02040501870214939, + 0.010087642818689346, + 0.010784205980598927, + -0.05778546258807182, + 0.011136522516608238, + 0.008904356509447098, + 0.0023371954448521137, + 0.055268969386816025, + 0.049297578632831573, + 0.0015909436624497175, + 0.018314756453037262, + 0.047561727464199066, + -0.06304993480443954, + -0.06584491580724716, + -0.01783696562051773, + 0.06448832154273987, + 0.0017775911837816238, + -0.004845120944082737, + 0.03312871977686882, + -0.01841086708009243, + 0.027491655200719833, + 0.0031549474224448204, + -0.038966093212366104, + -0.0004169302119407803, + 0.011331267654895782, + 0.010705784894526005, + -0.01560791116207838, + -0.0014817891642451286, + 0.02809049002826214, + 0.025705041363835335, + 0.029838556423783302, + 0.0692359134554863, + -0.04470384493470192, + 0.023673659190535545, + -0.019801368936896324, + -0.03668642416596413, + -0.013288488611578941, + 0.013160385191440582, + 0.04683252424001694, + 0.05727674067020416, + 0.006550927646458149, + -0.022316772490739822, + -0.01590115576982498, + 0.0007631659391336143, + -0.013708428479731083, + -0.0035870138090103865, + 0.0006494344561360776, + -0.005617702379822731, + -0.009113354608416557, + 0.016242345795035362, + 0.04937304928898811, + 0.029178684577345848, + -0.06789803504943848, + -0.021326692774891853, + -0.004824584815651178, + 0.02835027314722538, + 0.01214960403740406, + 0.009063143283128738, + -0.0063482411205768585, + -0.07299645245075226, + -0.005097819026559591, + -0.03318764269351959, + 0.015777520835399628, + -0.040020089596509933, + 0.030510839074850082, + -0.0068434146232903, + -0.004991166293621063, + -0.010505026206374168, + -0.02253212220966816, + -0.02546355128288269, + 0.03392240032553673, + 0.03353537991642952, + -0.013225696980953217, + 0.015494948253035545, + 0.013778991997241974, + 0.011434989050030708, + 0.006948040332645178, + -0.02428155392408371, + -0.031131204217672348, + -0.00282698730006814, + -0.04837217554450035, + 0.0043318308889865875, + 0.013726753182709217, + 0.0038907609414309263, + -0.007530928589403629, + 0.01441236399114132, + 0.0045732068829238415, + -0.00020497586228884757, + -0.015301509760320187, + -0.0592840351164341, + 0.012888799421489239, + 0.002026131609454751, + -0.025030119344592094, + -0.016356276348233223, + 0.018721383064985275, + 0.00242255674675107, + -0.010651429183781147, + 0.02542164735496044, + -0.009963052347302437, + 0.014694626443088055, + -3.8075901102274656e-05, + -0.0028404321055859327, + -0.039636630564928055, + 0.057197753340005875, + -0.033671777695417404, + -0.004750335589051247, + 0.004227552097290754, + -0.01193913072347641, + 0.017138097435235977, + 0.021104106679558754, + 0.05666958540678024, + 0.09933082014322281, + -0.008725248277187347, + -0.00520864874124527, + -0.006623106077313423, + 0.02792196348309517, + 0.010034234263002872, + -0.029457202181220055, + -0.06578155606985092, + 0.0015961516182869673, + 0.0024467487819492817, + -0.004375165794044733, + 0.005208413582295179, + -0.013332962989807129, + 0.0190916508436203, + -0.0028543525841087103, + 0.0209771990776062, + -0.002148217521607876, + -0.0067946892231702805, + 0.0023878279607743025, + -0.030527319759130478, + 0.02256670594215393, + 0.00127761613111943, + 0.009291390888392925, + -0.032751474529504776, + -0.013542595319449902, + -0.020596124231815338, + -0.0158106479793787, + -0.04346611723303795, + -0.00832886341959238, + -0.01693721115589142, + -0.004026543349027634, + -0.015150511637330055, + 0.04795093461871147, + 0.005470758769661188, + 0.04023055359721184, + 0.027109427377581596, + 0.024152198806405067, + -0.04036585986614227, + -0.004932509735226631, + 0.06807810813188553, + 0.012383109889924526, + -0.003081380622461438, + -0.02831096760928631, + -0.01444708276540041, + 0.02850794792175293, + -0.011264760047197342, + 0.0414157509803772, + 0.04707542806863785, + -0.0416736975312233, + 0.008054587990045547, + 0.029946330934762955, + 0.0038482933305203915, + -0.010283142328262329, + 0.02451261132955551, + -0.07224117964506149, + 0.013371484354138374, + -0.011195698752999306, + 0.007792671211063862, + -0.014189346693456173, + 0.01470380462706089, + 0.005001143552362919, + 0.02478684112429619, + -0.05827534943819046, + -0.022500187158584595, + 0.01586020179092884, + -0.01721903681755066, + 0.007818019017577171, + 0.008028808049857616, + 0.013145199976861477, + -0.015661727637052536, + -0.027641993016004562, + 0.024180900305509567, + 0.007275470066815615, + 0.012955054640769958, + -0.001427953247912228, + 0.016011159867048264, + -0.022095540538430214, + 0.019166192039847374, + 0.010372716933488846, + 0.022318126633763313, + 0.021533306688070297, + -0.0035045831464231014, + 0.01294979639351368, + -0.04059462994337082, + -0.01127163041383028, + 0.009522896260023117, + 0.012703374028205872, + 0.01810711808502674, + -0.009509994648396969, + 0.038379378616809845, + 0.00040632238960824907, + 0.01760083995759487, + -0.09400808066129684, + 0.024367941543459892, + 0.04620589315891266, + 0.04807352274656296, + -0.021329214796423912, + -0.03110506944358349, + 0.0122231375426054, + 0.008088759146630764, + 0.044177573174238205, + 0.036121148616075516, + 0.011266674846410751, + 0.021653514355421066, + -0.019793320447206497, + -0.02539834752678871, + 0.0056956056505441666, + -0.00931273028254509, + 0.0003755826619453728, + -0.06671040505170822, + -0.04870828241109848, + -0.0030110829975456, + 0.041940201073884964, + -0.00487113231793046, + 0.014458032324910164, + 0.021401422098279, + 0.005946725141257048, + 0.0005054441862739623, + -0.028084218502044678, + -0.07773958146572113, + 0.007734804879873991, + -0.018903950229287148, + -0.013358505442738533, + 0.026346765458583832, + 0.028459861874580383, + 0.0754549503326416, + -0.01652579754590988, + -0.025195442140102386, + -0.05450239032506943, + 0.00046333836507983506, + 0.012292026542127132, + 0.009621117264032364, + 0.006840041372925043, + 0.029585357755422592, + 0.012880370952188969, + -0.03456949070096016, + 0.001972191734239459, + -0.005986249074339867, + -0.011217170394957066, + 0.03397827222943306, + 0.01551575306802988, + 0.05631772428750992, + 0.03985593095421791, + 0.04239581525325775, + 0.008725159801542759, + -0.004376477561891079, + -0.031087132170796394, + 0.025306694209575653, + -0.025560807436704636, + -0.019542280584573746, + -0.015762722119688988, + 0.009646819904446602, + 0.06510894000530243, + -0.020743681117892265, + -0.009964854456484318, + 0.012790851294994354, + 0.03225686773657799, + -0.05566415935754776, + 0.003974641673266888, + -0.048943061381578445, + 0.01409963984042406, + 0.0262594074010849, + 0.01911315694451332, + 0.008473789319396019, + 0.014345825649797916, + -0.043039172887802124, + 0.04712514579296112, + 0.007419982925057411, + 0.03350747749209404, + -0.02333035133779049, + -0.04937925562262535, + -0.008514141663908958, + 0.050132330507040024, + -0.016377223655581474, + -0.0321156345307827, + -0.06980067491531372, + -0.021308934316039085, + -0.009713388048112392, + 0.02063601277768612, + 0.007559360470622778, + 0.015452667139470577, + -0.0682106465101242, + -0.037588272243738174, + 0.06686515361070633, + 0.003129037329927087, + -0.09255862236022949, + -0.003663643728941679, + -0.013098707422614098, + 0.021766364574432373, + 0.09075722098350525, + 0.0433841347694397, + -0.009416508488357067, + 0.01173850242048502, + 0.05729653313755989, + 0.004949312191456556, + 0.017526380717754364, + 0.02167915739119053, + 0.031495869159698486, + 0.038690563291311264, + -0.01043253019452095, + -0.0440501905977726, + 0.017212865874171257, + 0.014509949833154678, + -0.06654409319162369, + 0.05205993354320526, + 0.031384535133838654, + -0.014662818051874638, + -0.019740866497159004, + 0.03470949828624725, + 0.006317057181149721, + 0.04714354872703552, + -0.048934247344732285, + 0.010670923627912998, + -0.03542397916316986, + -0.03165403753519058, + 0.008166074752807617, + -0.030510831624269485, + 0.011494409292936325, + 0.015352037735283375, + 0.02640247531235218, + 0.02486504055559635, + 0.017125530168414116, + -0.008639807812869549, + -0.026657987385988235, + 0.009896920993924141, + 0.011715453118085861, + -0.016611481085419655, + -0.02791563607752323, + -0.01773635298013687, + 0.015182968229055405, + -0.0059545449912548065, + 0.04404174163937569, + -0.062410082668066025, + -0.014470682479441166, + 0.035102225840091705, + -0.010304437950253487, + 0.07687420397996902, + -0.022881919518113136, + 0.0025183625984936953, + 0.018007908016443253, + 0.023289725184440613, + -0.04571138694882393, + -0.026066087186336517, + -0.04300118237733841, + 0.002322663553059101, + -0.014629557728767395, + 0.01840926706790924, + -0.05570606514811516, + 0.01420277077704668, + -0.04284641891717911, + 0.026473170146346092, + 0.032329972833395004, + 0.0049995360895991325, + -0.010878599248826504, + -0.006542840041220188, + 0.04747014865279198, + -0.012945219874382019, + -0.02870473824441433, + 0.0025491302367299795, + 0.00594684574753046, + 0.012847610749304295, + -0.012080946937203407, + 0.06034671515226364, + -0.02685100957751274, + 0.001151158707216382, + -0.006079014390707016, + -0.03358396142721176, + 0.015370448119938374, + 0.05390997231006622, + 0.01806367188692093, + -0.046989791095256805, + -0.0034418958239257336, + -0.05708365887403488, + -0.009546848013997078, + 0.043663639575242996, + -0.00487546669319272, + 0.01948395185172558, + -0.00585785461589694, + -0.0629323348402977, + -0.05876050516963005, + 0.037253208458423615, + 0.017973314970731735, + -0.030594076961278915, + 0.04335213080048561, + 0.022446734830737114, + 0.04988724738359451, + -0.0038236011750996113, + -0.004043826833367348, + 0.006787539459764957, + -0.020175933837890625, + -0.06161736696958542, + -0.03683524951338768, + 0.012847824953496456, + -0.021025942638516426, + -0.001738564227707684, + -0.021449774503707886, + -0.042295780032873154, + 0.053107842803001404, + -0.0594620406627655, + 0.013756811618804932, + -0.0117656784132123, + 0.0012980611063539982, + -0.024434778839349747, + -0.039396196603775024, + 0.0398608036339283, + 0.0001395983708789572, + -0.028232702985405922, + -0.03285372257232666, + 0.010912340134382248, + 0.026356583461165428, + -0.009032569825649261, + -0.03311933949589729, + 0.004685016814619303, + -0.08658076077699661, + 0.009848447516560555, + 0.024198681116104126, + 0.0008269005338661373, + 0.005995084065943956, + 0.006410263478755951, + 0.005478064529597759, + -0.012946907430887222, + 0.032829757779836655, + -0.0375119112432003, + 0.033431049436330795, + 0.07534710317850113, + -0.0220483485609293, + -0.014588484540581703, + 0.026497334241867065, + 0.05802886188030243, + 0.017252551391720772, + -0.013068832457065582, + 0.019744765013456345, + 0.014994834549725056, + -0.0193225909024477, + 0.008934929966926575, + 0.07164624333381653, + 0.07029970735311508, + -0.002934340387582779, + 0.010054421611130238, + 0.043068524450063705, + -0.007240699604153633, + 0.0034454648848623037, + 0.009948554448783398, + -0.008009468205273151, + 0.0007861709455028176, + 0.052500300109386444, + -0.04098060354590416, + -0.03469781205058098, + -0.024456437677145004, + -0.0511983186006546, + 0.01783381588757038, + -0.013873586431145668, + -0.018441077321767807, + -0.008627573028206825, + 0.032237790524959564, + -0.029383676126599312, + -0.012263310141861439, + -0.001636021537706256, + -0.020363997668027878, + 0.010348306968808174, + -0.006813098210841417, + -0.04743451625108719, + 0.05948835238814354, + 0.05527547374367714, + 0.06432247161865234, + 0.02450726553797722, + 0.020782653242349625, + 0.05689064785838127, + -0.037877313792705536, + -0.03394579142332077, + -0.03434983640909195, + 0.02213459089398384, + 0.011500620283186436, + 0.007553188130259514, + -0.00478690629824996, + -0.014761334285140038, + -0.0171523280441761, + 0.05307231843471527, + 0.027985746040940285, + 0.01761309616267681, + -0.04476920887827873, + 0.005989041645079851, + 0.021601244807243347, + -0.018599677830934525, + 0.019475892186164856, + 0.022857438772916794, + 0.012051224708557129, + -0.007037885952740908, + 0.03128049150109291, + 0.00029001085204072297, + -0.049559541046619415, + -0.0634024515748024, + 0.08472119271755219, + -0.0024872904177755117, + -0.007441998925060034, + 0.0010006381198763847, + -0.023345081135630608, + -0.041102804243564606, + 0.018496010452508926, + 0.03728531301021576, + -0.005078385584056377, + -0.04554468393325806, + -0.0010863548377528787, + 0.0006792506319470704, + 0.0519002266228199, + -0.03368718922138214, + -0.011995986104011536, + 0.008041300810873508, + 0.01878354512155056, + 0.03528205305337906, + 0.01363210380077362, + -0.002508060773834586, + -0.0199887752532959, + -0.004804630763828754, + -0.0428750105202198, + -0.03708677366375923, + 0.016776924952864647, + -0.0006859119748696685, + -0.011218301951885223, + -0.07021094113588333, + -0.028819870203733444, + 0.03738213703036308, + 0.003791281022131443, + -0.04602184146642685, + -0.04903452843427658, + -0.023687832057476044, + 0.011692560277879238, + -0.03848559409379959, + -0.01968792825937271, + 0.009993192739784718, + -0.0030352212488651276, + -0.02897271327674389, + 0.00938296876847744, + 0.0008054286590777338, + -0.053888093680143356, + -0.05009636655449867, + 0.008328134194016457, + -0.008944717235863209, + 0.026587167754769325, + 0.004885822534561157, + -0.008312753401696682, + -0.009436892345547676, + -0.05926809087395668, + -0.042356785386800766, + 0.006863241549581289, + -0.06913495808839798, + -0.010936564765870571, + -0.00210248283110559, + 0.01797313056886196, + -0.007665031123906374, + -0.05606084316968918, + 0.007000002544373274, + -0.004069372545927763, + -0.03172808513045311, + -0.012363972142338753, + 0.0068073878064751625, + 0.05441617593169212, + 0.02827482670545578, + 0.031998421996831894, + -0.005212423857301474, + -0.014975147321820259, + -0.03419047221541405, + 0.021113019436597824, + 0.017108367756009102, + -0.01794184371829033, + 0.012051528319716454, + 0.048139095306396484, + 0.056607384234666824, + 0.0037979809567332268, + -0.061522044241428375, + 0.02501821145415306, + 0.056067537516355515, + -0.01116287149488926, + 0.030849793925881386, + -0.008648502640426159, + 0.0011916609946638346, + -0.07113606482744217, + -0.0005610916414298117, + 0.004797434899955988, + -0.03008638322353363, + -0.012812037952244282, + 0.02871819958090782, + 0.07230117917060852, + 0.055454086512327194, + -0.018853774294257164, + -0.022241363301873207, + -0.07199171185493469, + -0.04692361503839493, + -0.0008231482352130115, + 0.017144039273262024, + -0.05492539703845978, + -0.014943022280931473, + -0.02956252172589302, + 0.04514582082629204, + -0.010602978989481926, + -0.04024239256978035, + -0.0245314110070467, + 0.04721621796488762, + -0.0008871700847521424, + 0.0058822184801101685, + -0.013673495501279831, + -0.003397650085389614, + 0.04033450037240982, + 0.004313263110816479, + -0.012434778735041618, + -0.01348381768912077, + 0.0034202798269689083, + -0.029709551483392715, + -0.0448778010904789, + -0.04109462350606918, + -0.015124739147722721, + 0.03875719755887985, + -0.00677214190363884, + -0.014861748553812504, + 0.001867804559879005, + 0.046112287789583206, + 0.035173553973436356, + -0.026653889566659927, + 0.02708261087536812, + -0.0072863358072936535, + -0.024223890155553818, + -0.029124554246664047, + -0.034250617027282715, + -0.04523775354027748, + 0.0008950289338827133, + 0.050627004355192184, + 0.05013585463166237, + -0.003314052242785692, + -0.0338909812271595, + 0.01632770150899887, + -0.008449970744550228, + -0.06705638766288757, + -0.04582623764872551, + -0.018900588154792786, + 0.01912330649793148, + 0.010554853826761246, + -0.05701787769794464, + 0.002330537186935544, + 0.043283477425575256, + -0.027377091348171234, + 0.020311325788497925, + -0.024489160627126694, + -0.016188878566026688, + 0.02218034118413925, + -0.05636126920580864, + 0.00014424264372792095, + 0.040491823107004166, + -0.004550031386315823, + 0.018755309283733368, + 0.029944783076643944, + 0.006787552498281002, + 0.011600696481764317, + 0.02133871801197529, + -0.0159860048443079, + 0.04102955013513565, + 0.011205094866454601, + -0.020331429317593575, + 0.019052648916840553, + -0.057572197169065475, + 0.0004304514150135219, + 0.00024051073705777526, + 0.029056813567876816, + 0.01132436003535986, + -0.011597047559916973, + 0.024792281910777092, + 0.011130161583423615, + 0.007292189635336399, + 0.019153041765093803, + 0.004226360470056534, + -0.003549485933035612, + 0.011472882702946663, + -0.029661959037184715, + 0.017891032621264458, + -0.03224078193306923, + -0.02152218669652939, + -0.008254002779722214, + 0.026598675176501274, + -0.020487023517489433, + 0.049606095999479294, + 0.006182599812746048, + -0.037019483745098114, + 0.020589210093021393, + -0.024707481265068054, + -0.012630917131900787, + -0.0027882661670446396, + 0.015140749514102936, + -0.04075747728347778, + 0.08086160570383072, + 0.01779230311512947, + -0.0009106095531024039, + 0.0024037675466388464, + 0.025978609919548035, + -0.04340694472193718, + -0.0520845502614975, + -0.010814793407917023, + 0.002514585154131055, + -0.0825648382306099, + 0.037267692387104034, + -0.014340621419250965, + -0.05269298702478409, + 0.007158470340073109, + -0.030933411791920662, + -0.018235918134450912, + 0.026299072429537773, + -0.006104226224124432, + -0.00968675035983324, + -0.01971621811389923, + 0.027362463995814323, + 0.037557121366262436, + -0.03041381947696209, + -0.03236445039510727, + -0.00972068402916193, + 0.005195062607526779, + -0.034668952226638794, + -0.010206128470599651, + -0.021455559879541397, + -0.031534962356090546, + -0.04554496705532074, + -0.023040594533085823, + 0.07105342298746109, + -0.020231518894433975, + -0.00922693032771349, + -0.00012147561938036233, + -0.008640561252832413, + -0.01176389679312706, + -0.027395347133278847, + 0.030516963452100754, + 0.043258678168058395, + -0.02185208909213543, + 0.0014639280270785093, + -0.0014240024611353874, + 0.004587392322719097, + -0.018880290910601616, + 0.039449065923690796, + -0.019981998950242996, + 0.0010227138409391046, + 0.006151563487946987, + -0.011540750972926617, + 0.038712985813617706, + 0.0216655395925045, + 0.014798036776483059, + -0.031547315418720245, + 0.049020588397979736, + 0.019661549478769302, + 0.00036280465428717434, + -0.007456352934241295, + -0.042384613305330276, + 0.041716255247592926, + -0.01825208216905594, + 0.029169222339987755, + 0.01289719995111227, + -0.0938912108540535, + -0.02563617005944252, + -0.02800273522734642, + -0.008638953790068626, + 0.0006337699014693499, + 0.010669351555407047, + -0.06165459379553795, + 0.04480502009391785, + -0.0027927120681852102, + -0.005018526688218117, + 0.016544800251722336, + 0.019950950518250465, + -0.04174352437257767, + -0.022903677076101303, + 0.009984043426811695, + 0.002931805793195963, + -0.060029733926057816, + -0.03399797901511192, + -0.07310930639505386, + 0.06163422763347626, + 0.03185492753982544, + 0.03181326016783714, + -0.016704505309462547, + 0.012531943619251251, + -0.015068442560732365, + 0.02054213173687458, + -0.0073394253849983215, + 0.019464440643787384, + -0.04302152246236801, + 0.011996785178780556, + -0.03427678346633911, + -0.011042710393667221, + 0.06193605065345764, + -0.029877154156565666, + 0.020087748765945435, + 0.02126125618815422, + -0.01845443993806839, + -0.021989595144987106, + 0.0047086309641599655, + 0.010399679653346539, + -0.04770207777619362, + -0.007946434430778027, + 0.026084648445248604, + 0.06028180196881294, + 0.013240390457212925, + 0.02550838701426983, + -0.010290185920894146, + 0.02526059001684189, + 0.04518086835741997, + -0.023128699511289597, + 0.009673465974628925, + 0.016592800617218018, + -0.02377334237098694, + 0.01141465175896883, + 0.01119530014693737, + 0.020413868129253387, + 0.003800972830504179, + 0.05464859679341316, + -0.11074294149875641, + 0.018281707540154457, + -0.0071885972283780575, + 0.0251130573451519, + -0.003076360560953617, + -0.02950643189251423, + 0.04862608760595322, + 0.014698710292577744, + -0.0034073255956172943, + -0.01888330839574337, + -0.00601124158129096, + -0.003221585415303707, + 0.02058524452149868, + 0.03467889875173569, + -0.010189183056354523, + -0.02118457667529583, + -0.01366496179252863, + 0.024067766964435577, + 0.015723207965493202, + 0.007410666439682245, + -0.018197858706116676, + -0.010843449272215366, + -0.003096798900514841, + 0.03814515471458435, + -0.006601996254175901, + -0.006555535830557346, + -0.033931903541088104, + 0.047019634395837784, + 0.007648318540304899, + 0.040311139076948166, + -0.018994301557540894, + 0.0037915112916380167, + -0.023608915507793427, + 0.03000660613179207, + -0.06129347160458565, + -0.04837249219417572, + -0.015476414002478123, + -0.0011308223474770784, + 0.005059277173131704, + -0.029026351869106293, + 0.029649998992681503, + -0.022582001984119415, + 0.0028613272588700056, + 0.035967711359262466, + -0.009738973341882229, + 0.03465007618069649, + 0.048704344779253006, + -0.014994866214692593, + 0.00687789311632514, + 0.022671114653348923, + -0.008464471437036991, + 0.01301094051450491, + 0.04379786550998688, + -0.025955451652407646, + 0.06324853003025055, + 0.06692028045654297, + 0.005252169445157051, + -0.015503518283367157, + -0.06967739760875702, + -0.04772850126028061, + 0.006104517262428999, + 0.01828254573047161, + 0.005047759972512722, + -0.0005776050966233015, + 0.06418891251087189, + 0.011539149098098278, + -0.021126190200448036, + 0.0007578018121421337, + 0.03263741731643677, + -0.02297833189368248, + -0.02138679102063179, + -0.0005955867236480117, + 0.03035028651356697, + 0.0014728289097547531, + 0.00882650725543499, + 0.01053431537002325, + 0.021094268187880516, + 0.033762890845537186, + -0.01432825718075037, + -0.012128413654863834, + 0.011598911136388779, + 0.028540942817926407, + -0.015868736431002617, + 0.014980953186750412, + -0.011057937517762184, + -0.00785753782838583, + -0.03997529670596123, + -0.018747059628367424, + 0.04736601933836937, + 0.04950117692351341, + -0.04473496228456497, + 0.04368811100721359, + 0.010536433197557926, + -0.004934657830744982, + 0.008136315271258354, + -0.06759782135486603, + 0.005358315538614988, + 0.0017774131847545505, + -0.010187513194978237, + -0.013607582077383995, + 0.05447860807180405, + 0.01504406239837408, + -0.011601027101278305, + -0.02523459680378437, + -0.003357032546773553, + -0.007137200329452753, + 0.03965874761343002, + 0.013467071577906609, + 0.03218993917107582, + -0.011304470710456371, + 0.037440408021211624, + -0.024923382326960564, + -0.006290524732321501, + 0.007873384281992912, + 0.014522108249366283, + -0.01338329166173935, + -0.02002243883907795, + 0.008350777439773083, + 0.007963810116052628, + 0.010579647496342659, + 0.036410484462976456, + 0.014140915125608444, + 0.04621787741780281, + -0.008981926366686821, + -0.024445340037345886, + 0.04393318295478821, + 0.051838286221027374, + -0.022834191098809242, + 0.0028461655601859093, + -0.029000787064433098 + ], + "start_index": 25343, + "end_index": 26015, + "token_count": 157, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "739e3631-e471-506c-992b-fd2b6d0d395b", + "_source": { + "text": "\n\nReglas:\n\n- `WHITESPACE` se ignora\n- `EOL` genera el token **EOL**, que actúa como terminador de sentencia\n- AVAP es un lenguaje **orientado a líneas**, por lo que las sentencias no pueden dividirse en múltiples líneas.\n\n---\n\n# X.2 Comentarios\n\nAVAP soporta tres tipos de comentarios. El lexer aplica longest-match, por lo que `///` debe reconocerse **antes** que `//`.\n\n## Comentario de documentación (mayor prioridad)\n\n\n\nDOC_COMMENT ::= \"///\"[^\\r\\n]*", + "embedding": [ + 0.0035437284968793392, + 0.011808402836322784, + -0.010128028690814972, + -0.07066821306943893, + -0.010983928106725216, + 0.011473744176328182, + -0.03879116475582123, + 0.022120853886008263, + -0.07188336551189423, + -0.06968840956687927, + 0.03286336734890938, + -0.026907380670309067, + 0.03182470053434372, + -0.009401104412972927, + -0.03908243402838707, + 0.004914839752018452, + 0.03273571655154228, + 0.033150333911180496, + 0.015243591740727425, + -0.018606608733534813, + -0.03999287635087967, + -0.012711686082184315, + -0.03749537467956543, + 0.10829287767410278, + 0.0069646695628762245, + 0.012694338336586952, + -0.008932039141654968, + 0.022917766124010086, + -0.01770416833460331, + 0.0011345850070938468, + -0.0112775769084692, + -0.047774557024240494, + -0.08011519908905029, + -0.03575684502720833, + -0.028822001069784164, + -0.013249441981315613, + -0.014847646467387676, + 0.00014400070358533412, + 0.0439174547791481, + -0.008571873418986797, + -0.017893142998218536, + -0.005014562048017979, + 0.026597531512379646, + 0.04085979610681534, + -0.04696636646986008, + -0.061921872198581696, + -0.0008660469320602715, + 0.0174251701682806, + 0.019389739260077477, + 0.0005630480591207743, + -0.035182494670152664, + 0.006336313672363758, + 0.029801221564412117, + -0.000506704964209348, + -0.04945298284292221, + -0.00012163445353507996, + 0.007334917318075895, + -0.03699945658445358, + 0.011516636237502098, + 0.035468731075525284, + -0.0011616720585152507, + -0.010857258923351765, + 0.014909200370311737, + 0.012339907698333263, + 0.021040180698037148, + 0.023507803678512573, + 0.029843216761946678, + -0.03263675421476364, + -0.0433366484940052, + -0.005423561669886112, + -0.010334935039281845, + 0.014272474683821201, + -0.007088461425155401, + 0.009059756062924862, + 0.0127413934096694, + 0.029431423172354698, + 0.003376714652404189, + -0.02712281607091427, + -0.005475846119225025, + 0.017325565218925476, + -0.021019915118813515, + 0.06733956187963486, + 0.052604932337999344, + 0.006541105918586254, + -0.002450182568281889, + 0.05444473400712013, + -0.04636776074767113, + -0.04212198778986931, + 0.009370164945721626, + 0.007573684677481651, + 0.018069861456751823, + 0.008493824861943722, + 0.0040085879154503345, + -0.04391196370124817, + 0.07295955717563629, + -0.003433572594076395, + -0.009378614835441113, + 0.006827862001955509, + 0.0005597475101239979, + 0.006178517825901508, + -0.02403927780687809, + -0.015227651223540306, + 0.005041773431003094, + 0.03148553520441055, + 0.030720576643943787, + 0.045546408742666245, + -0.03532063215970993, + 0.016237324103713036, + -0.021467650309205055, + -0.03177228942513466, + -0.01354718767106533, + 0.005666402634233236, + 0.028852108865976334, + 0.05804668366909027, + 0.020895659923553467, + 0.011258174665272236, + -0.00468200771138072, + -0.015758031979203224, + -0.004343351814895868, + 0.003296617651358247, + 0.0012122433399781585, + 0.018781669437885284, + -0.0043701366521418095, + -0.012284934520721436, + 0.0402524471282959, + 0.014775005169212818, + -0.06868115067481995, + -0.024681618437170982, + 0.016269559040665627, + 0.0020723820198327303, + -0.016530973836779594, + 0.009448780678212643, + -0.009518495760858059, + -0.03178095445036888, + -0.009681982919573784, + -0.006841209251433611, + 0.006457317154854536, + -0.01820562593638897, + 0.03860510513186455, + -0.006224122364073992, + 0.000619775615632534, + -0.023163555189967155, + -0.0264140497893095, + -0.03820740059018135, + 0.03734992444515228, + 0.05455091595649719, + -0.018253102898597717, + 0.030419038608670235, + -0.0002747762482613325, + 0.034895312041044235, + 0.03644244745373726, + -0.03216201439499855, + -0.025395341217517853, + -0.0020148581825196743, + -0.01166810654103756, + -0.019249556586146355, + 0.0041672950610518456, + 0.004267977550625801, + 0.001260272809304297, + 0.009238994680345058, + -0.0009799584513530135, + -0.0006702387472614646, + -0.016602199524641037, + -0.045528627932071686, + -0.011917417868971825, + 0.009489091113209724, + -0.007362066302448511, + -0.027390679344534874, + -0.000577182334382087, + 0.005936185363680124, + -0.01717732660472393, + 0.0265976469963789, + -0.016199124976992607, + 0.015466036275029182, + 0.0019410770619288087, + -0.014064997434616089, + -0.03783051669597626, + 0.03334757685661316, + -0.03870568796992302, + -0.018092291429638863, + 0.01502978801727295, + -0.004286549054086208, + 0.0012686733389273286, + 0.006045937538146973, + 0.039370253682136536, + 0.06058671325445175, + -0.01570310816168785, + -0.00627949507907033, + -0.007895976305007935, + 0.01401766948401928, + 0.015172549523413181, + -0.02055770717561245, + -0.08707994967699051, + 0.024537596851587296, + -0.0015209632692858577, + -0.01990770734846592, + 0.019709568470716476, + -0.003264648374170065, + 0.009718375280499458, + 0.008994581177830696, + 0.04253697395324707, + -0.02187630720436573, + 0.004606969654560089, + 0.008978983387351036, + -0.02833244949579239, + 0.0004781769239343703, + 0.006014000624418259, + 0.002288681222125888, + -0.027601949870586395, + -0.022548332810401917, + -0.002091442234814167, + 0.001981586217880249, + -0.05661788955330849, + -0.016582254320383072, + -0.008248765952885151, + -0.026229487732052803, + -0.01273756567388773, + 0.043463390320539474, + 0.014764477498829365, + 0.0460691824555397, + 0.014917283318936825, + 0.005147267132997513, + -0.03159034624695778, + 0.0027373700868338346, + 0.08751989901065826, + -0.0031021269969642162, + -0.00586363160982728, + -0.038538940250873566, + -0.0009648733539506793, + 0.0002274493599543348, + -0.017476413398981094, + 0.053761694580316544, + 0.04310543090105057, + -0.0520123653113842, + 0.010968437418341637, + 0.006403213366866112, + 0.019502941519021988, + -0.053802233189344406, + 0.04842772334814072, + -0.08559378981590271, + 0.01126506645232439, + 9.286854037782177e-05, + -0.01946025900542736, + 0.02850305661559105, + -0.01661745458841324, + -0.004847640171647072, + 0.02089204452931881, + -0.005114477593451738, + -0.028669005259871483, + 0.009297755546867847, + -0.01277741976082325, + 0.028642630204558372, + 0.01630280911922455, + -0.023290283977985382, + 0.009644502773880959, + -0.04293146729469299, + 0.00980527326464653, + -0.010041081346571445, + 0.012060337699949741, + -0.0027263157535344362, + 0.005776834208518267, + -0.03144795820116997, + 0.025045108050107956, + 0.012486613355576992, + -0.0006111814873293042, + 0.024593535810709, + -0.015324749052524567, + -0.010124193504452705, + -0.059439100325107574, + -0.02581593580543995, + 0.01443253830075264, + 0.012689805589616299, + 0.030768049880862236, + 0.005219356156885624, + 0.038814496248960495, + 0.04734988883137703, + 0.012373533099889755, + -0.08862343430519104, + 0.01413081306964159, + 0.02883985824882984, + 0.09045398980379105, + -0.04201860353350639, + -0.011629543267190456, + -0.0026749440003186464, + 0.01602892018854618, + 0.04620326682925224, + 0.017126847058534622, + 0.0011967601021751761, + 0.0006384355947375298, + -0.012687552720308304, + 0.016689632087945938, + 0.01371686439961195, + -0.04285094514489174, + 0.056098416447639465, + -0.048649862408638, + -0.06693791598081589, + 0.013157052919268608, + 0.03939110040664673, + 0.007322633173316717, + 0.03563820198178291, + 0.026692304760217667, + -0.008037607185542583, + -0.038439955562353134, + 0.0008745071245357394, + -0.06799419969320297, + 0.02111644856631756, + 0.0012358792591840029, + -0.024696342647075653, + 0.02974911965429783, + 0.02471795491874218, + 0.0684615820646286, + 0.005064892582595348, + -0.02565099112689495, + -0.022140024229884148, + -0.0324825644493103, + 0.0039614103734493256, + 0.011801204644143581, + 0.002917245263233781, + 0.02791973203420639, + -0.02015913650393486, + 0.0014389692805707455, + -0.023658325895667076, + -0.0033298912458121777, + -0.007695560343563557, + 0.0003341730625834316, + -0.011239118874073029, + 0.04622193053364754, + 0.03927707299590111, + 0.011990731582045555, + 0.012627648189663887, + 0.019043434411287308, + -0.024875489994883537, + 0.03220928832888603, + -0.02687026746571064, + 0.017037557438015938, + -0.003971337340772152, + -0.0163040142506361, + 0.032789573073387146, + -0.006423936691135168, + -0.019511394202709198, + 0.02525598742067814, + 0.013034469448029995, + -0.04312685504555702, + -0.0037163649685680866, + -0.05665874481201172, + 0.02524731121957302, + 0.031443435698747635, + 0.03260365501046181, + 0.027194324880838394, + -0.009563352912664413, + -0.014094890095293522, + 0.005780835170298815, + 0.000597858801484108, + 0.015641769394278526, + -0.030647672712802887, + -0.028986571356654167, + 0.013849174603819847, + 0.06903035193681717, + -0.011325822211802006, + -0.06316546350717545, + -0.033167313784360886, + -0.0271888580173254, + 0.008936459198594093, + 0.016552573069930077, + 0.008435535244643688, + -0.03717764839529991, + -0.06673657149076462, + -0.042013734579086304, + 0.01928347535431385, + -0.012693994678556919, + -0.07933460175991058, + 0.03256295993924141, + -0.02903139777481556, + 0.05217911675572395, + 0.06626775860786438, + 0.09092168509960175, + 0.028503770008683205, + -0.034678101539611816, + 0.03475179895758629, + 0.05156944692134857, + 0.02366209402680397, + 0.02734004706144333, + -0.003079910296946764, + 0.009152513928711414, + -0.05661989003419876, + -0.06521580368280411, + 0.016795536503195763, + 0.012835546396672726, + -0.06293995678424835, + 0.0310335922986269, + 0.06415161490440369, + -0.044636525213718414, + 0.016764380037784576, + 0.017450271174311638, + 0.011893483810126781, + 0.03265568986535072, + -0.042492084205150604, + 0.029096752405166626, + -0.02653772570192814, + -0.03245323523879051, + 0.024382198229432106, + -0.01984712854027748, + 0.014013114385306835, + 0.008466997183859348, + 0.007225718814879656, + 0.02896047756075859, + 0.006974478252232075, + -0.04288783296942711, + -0.03011437878012657, + -0.01758120208978653, + 0.034574415534734726, + -0.01558681856840849, + -0.007714133244007826, + -0.003405441762879491, + -0.0010624548885971308, + -0.0373162142932415, + 0.055011454969644547, + -0.1018574982881546, + 0.029223505407571793, + 0.06356677412986755, + 0.014265531674027443, + 0.0572994127869606, + -0.01818983256816864, + -0.04816824570298195, + 0.027946725487709045, + 0.019015979021787643, + 0.02248811349272728, + -0.023438215255737305, + -0.028162255883216858, + 0.005747723858803511, + 0.016676688566803932, + 0.006949166301637888, + -0.026105307042598724, + 0.038447774946689606, + -0.06745651364326477, + 0.02713681571185589, + 0.03106541745364666, + 0.021976150572299957, + 0.0016748291673138738, + -0.00020992969803046435, + 0.004832410253584385, + 0.03278383985161781, + -0.015842227265238762, + -0.019418856129050255, + -0.0388975627720356, + 0.0279520433396101, + -0.023245694115757942, + 0.04991097003221512, + 0.001380408531986177, + -0.0450286865234375, + -0.025138039141893387, + -0.05304045230150223, + 0.04119998961687088, + 0.06100710481405258, + 0.0014777402393519878, + -0.04707707092165947, + -0.010524323210120201, + -0.10438298434019089, + -0.04054878652095795, + 0.031605836004018784, + 0.006390138994902372, + 0.02111370861530304, + -0.0044285305775702, + -0.05870047211647034, + -0.05945165827870369, + 0.011074801906943321, + 0.0019299512496218085, + -0.03839913383126259, + 0.0363297276198864, + 0.028676342219114304, + 0.02638310007750988, + -0.019266262650489807, + -0.0036187395453453064, + -0.019671624526381493, + -0.0006769345491193235, + -0.043267447501420975, + -0.06432029604911804, + 0.01366045419126749, + -0.01125250943005085, + -0.040037527680397034, + -0.0010770533699542284, + -0.03374473750591278, + 0.07198382169008255, + -0.07152833044528961, + -0.006484564859420061, + -0.01989809237420559, + 0.015927201136946678, + -0.004473681561648846, + -0.03542087972164154, + 0.02244945615530014, + -0.02958431839942932, + -0.018340030685067177, + -0.01001693680882454, + -0.006801385432481766, + 0.057007137686014175, + -0.05005131661891937, + 0.004622559528797865, + -0.0044691595248878, + -0.07992566376924515, + 0.03176591545343399, + 0.024413175880908966, + 0.014462254010140896, + 0.0011480225948616862, + 0.004449469968676567, + -0.020669108256697655, + -0.04440196603536606, + 0.01809471659362316, + -0.049078334122896194, + 0.038595281541347504, + 0.054811250418424606, + -0.04028010740876198, + -0.025942085310816765, + -0.0229352954775095, + 0.01886257342994213, + 0.03661500662565231, + -0.022527746856212616, + 0.02162671834230423, + 0.024054639041423798, + -0.009815925732254982, + 0.019919294863939285, + 0.013848308473825455, + 0.06138010695576668, + -0.01170132402330637, + 0.005823975428938866, + -0.001727117458358407, + -0.0013891573762521148, + 0.0004012089339084923, + 0.005143879912793636, + 0.020654117688536644, + 0.029107121750712395, + 0.04822060465812683, + -0.038637012243270874, + 0.013999015092849731, + -0.035103365778923035, + -0.05950107052922249, + 0.002079681260511279, + -0.009013435803353786, + -0.01225431077182293, + 0.006892934441566467, + 0.03693249449133873, + -0.038442499935626984, + -0.012475830502808094, + 0.01616765931248665, + 0.0012155997101217508, + 0.025200961157679558, + -0.015370132401585579, + -0.03727051615715027, + 0.06026061251759529, + 0.027332985773682594, + 0.03880561143159866, + 0.04288685694336891, + 0.03246798738837242, + 0.03878428414463997, + -0.04356992989778519, + 0.013607091270387173, + -0.034872446209192276, + 0.03550219535827637, + 0.010559652000665665, + 0.03273855149745941, + -0.006388611625880003, + 0.06785982102155685, + -0.0058181313797831535, + 0.04398779198527336, + 0.014408601447939873, + 0.009635498747229576, + -0.03184995427727699, + -0.017742106691002846, + 0.005889168009161949, + -0.012771262787282467, + -0.029021702706813812, + 0.01753208599984646, + 0.008606542833149433, + -0.0043054199777543545, + 0.0443585030734539, + 0.0024563483893871307, + -0.041339728981256485, + -0.06798778474330902, + 0.044758379459381104, + -0.0035706558264791965, + -0.005513083655387163, + -0.011129756458103657, + -0.021831737831234932, + -0.021989883854985237, + 0.021942349150776863, + 0.039893921464681625, + 0.006433445494621992, + -0.046491701155900955, + -0.008472146466374397, + 0.00037823733873665333, + 0.060369327664375305, + -0.07506567239761353, + 0.007547655142843723, + 0.005615176633000374, + -0.003071677638217807, + 0.04661880433559418, + -0.01125410571694374, + -0.024709034711122513, + -0.01506598386913538, + 0.006000169087201357, + 0.009697487577795982, + -0.02288205176591873, + 0.041597895324230194, + 0.014312383718788624, + -0.004592607729136944, + -0.07422944903373718, + -0.04131351038813591, + 0.042414430528879166, + 0.010737492702901363, + -0.0469849593937397, + -0.03901508077979088, + 0.011341499164700508, + 0.040727850049734116, + 0.005873624235391617, + 0.004850686062127352, + 0.03598349168896675, + 0.009858229197561741, + 0.007174150552600622, + -0.01821688748896122, + 0.0004938284400850534, + -0.04330611601471901, + -0.06145476549863815, + 0.0322628878057003, + -0.04753570631146431, + 0.04413648322224617, + -0.014359314925968647, + 0.012036663480103016, + -0.01968667469918728, + -0.043891604989767075, + -0.025879647582769394, + -0.015237939544022083, + -0.06513497978448868, + -0.03257990628480911, + -0.006533101201057434, + 0.040551457554101944, + -0.00964491255581379, + -0.09187261760234833, + 0.008690951392054558, + 0.0019820716697722673, + 0.017799951136112213, + -0.06506966054439545, + 0.005565907806158066, + 0.0141088105738163, + -0.012818573042750359, + 0.03452952951192856, + -0.03089730255305767, + -0.0016524014063179493, + -0.02465958520770073, + 0.023516325280070305, + 0.03342091664671898, + -0.011573686264455318, + 0.01626153476536274, + 0.04278721660375595, + 0.02018207125365734, + 0.025766102597117424, + -0.07500676065683365, + 0.03023448958992958, + 0.026392098516225815, + 0.02223219722509384, + 0.014779252000153065, + -0.05382741615176201, + 0.00641640042886138, + -0.10035119950771332, + 0.01296098344027996, + -0.014287224970757961, + -0.03734060004353523, + 0.03249554708600044, + 0.03926623612642288, + 0.030724717304110527, + 0.01763928309082985, + -0.00801540445536375, + -0.020783402025699615, + -0.01639234460890293, + -0.04469582810997963, + 0.023857571184635162, + 0.016826622188091278, + -0.036591626703739166, + 0.00247909314930439, + -0.06104521080851555, + 0.007698848843574524, + -0.020109063014388084, + -0.04741087928414345, + -0.03913641721010208, + 0.07819359004497528, + -0.011380798183381557, + -0.010791127569973469, + -0.025619864463806152, + -0.04635687544941902, + 0.0302972961217165, + 0.00334369414485991, + 0.018679678440093994, + -0.031224938109517097, + -0.005185697693377733, + -0.023502102121710777, + -0.032776132225990295, + -0.02771116979420185, + -0.017217960208654404, + -0.006276395637542009, + -0.016523564234375954, + 0.001089401077479124, + -0.027499377727508545, + 0.022316252812743187, + 0.019727198407053947, + -0.018885347992181778, + 0.01474077720195055, + -0.010683046653866768, + -0.04085354879498482, + -0.016981907188892365, + -0.005403259769082069, + -0.0539129301905632, + -0.0296150092035532, + 0.024766555055975914, + 0.0455111525952816, + -0.01611294411122799, + -0.0027002482675015926, + 0.05212004482746124, + -0.005651651881635189, + -0.05480256304144859, + -0.025957925245165825, + -0.020128414034843445, + 0.002460160292685032, + 0.007922463119029999, + -0.018562134355306625, + 0.033922404050827026, + 0.01927582547068596, + -0.06508273631334305, + 0.0098427040502429, + -0.03464287891983986, + 0.05165540426969528, + -0.00928282830864191, + -0.033923957496881485, + 0.021766770631074905, + 0.04266688600182533, + -0.00966129545122385, + 0.044894613325595856, + 0.020369991660118103, + 0.004270732868462801, + 0.055563196539878845, + 0.022054094821214676, + 0.008673503994941711, + 0.0337684266269207, + 0.004039148800075054, + -0.009839775040745735, + 0.016053728759288788, + -0.04298383742570877, + -0.0052910614758729935, + 0.01946954056620598, + -0.002869260963052511, + -0.003666793694719672, + -0.021447092294692993, + 0.003232722170650959, + 0.008949232287704945, + 0.002203927608206868, + -0.0015294465702027082, + 0.0008425370906479657, + -0.043424900621175766, + 0.011062758043408394, + -0.006049648392945528, + 0.04458020254969597, + -0.012758431024849415, + -0.02291402779519558, + 0.008906268514692783, + 0.03737571835517883, + -0.013546749949455261, + 0.056535206735134125, + -0.01374484971165657, + -0.04351957514882088, + -0.0024109547957777977, + -0.032173704355955124, + -0.004113989416509867, + 0.0003765574365388602, + 0.02302219532430172, + -0.040841907262802124, + 0.06467106938362122, + 0.022003889083862305, + -0.01657702773809433, + 0.04202447086572647, + 0.011881700716912746, + -0.017029233276844025, + -0.012586641125380993, + -0.0353240966796875, + -0.018322303891181946, + -0.05282188206911087, + 0.02050488069653511, + -0.005514414049685001, + -0.0501970499753952, + -0.005464058369398117, + -0.023520713672041893, + -0.008725485764443874, + 0.057488638907670975, + -0.003625379176810384, + -0.019413407891988754, + -0.011987538076937199, + 0.053983889520168304, + 0.027914004400372505, + -0.0253597479313612, + -0.013832122087478638, + -0.01171264797449112, + 0.008549637161195278, + -0.008324457332491875, + -0.016343168914318085, + -0.024304579943418503, + -0.0030961998272687197, + -0.018083641305565834, + -0.017434576526284218, + 0.06723727285861969, + -0.012376830913126469, + 0.026088127866387367, + -0.017596524208784103, + -0.016976194456219673, + 0.0020578063558787107, + -0.0200877096503973, + 0.02434428222477436, + 0.030252669006586075, + -0.002523382194340229, + 0.04582451656460762, + 0.0017679035663604736, + -0.06847137212753296, + -0.005737162195146084, + 0.034742169082164764, + -0.014851007610559464, + 0.0028650036547333, + 0.011510053649544716, + -0.011174281127750874, + 0.044293422251939774, + 0.007669048383831978, + 0.03816559910774231, + -0.02314210869371891, + 0.01896042563021183, + -0.004194834269583225, + 0.017186371609568596, + 0.00402133259922266, + -0.04294382035732269, + 0.022665413096547127, + 0.042009688913822174, + 0.036015454679727554, + 0.037253424525260925, + -0.10984597355127335, + 0.018085354939103127, + -0.01441796962171793, + -0.010217290371656418, + 0.0339689664542675, + -0.0020867011044174433, + -0.02994314767420292, + 0.019005989655852318, + 0.00829392671585083, + 0.022953882813453674, + 0.03571150079369545, + 0.00028132725856266916, + -0.015204069204628468, + -0.0234895758330822, + -0.013165493495762348, + 0.027048518881201744, + -0.0459226630628109, + -0.06149706616997719, + -0.01762315258383751, + 0.0716019868850708, + 0.004777798894792795, + 0.03633387014269829, + -0.016857687383890152, + 0.0339043103158474, + -0.008824831806123257, + -0.02626265026628971, + -0.0358702577650547, + -0.013540945015847683, + -0.021638214588165283, + 0.08087452501058578, + -0.00262567400932312, + -6.798101094318554e-05, + 0.02248833142220974, + -0.02731913886964321, + 0.016509409993886948, + 0.04551053047180176, + -0.049421779811382294, + 0.005004451610147953, + 0.037765983492136, + 0.010999147780239582, + -0.028281478211283684, + 0.000729982100892812, + 0.020177751779556274, + 0.08065943419933319, + -0.0038833010476082563, + 0.02862638421356678, + 0.01050762552767992, + -0.009978849440813065, + 0.017336051911115646, + -0.024558262899518013, + 0.012280451133847237, + 0.003874280024319887, + -0.03213413059711456, + -0.01998285949230194, + 0.0017167218029499054, + -0.003269975772127509, + -0.033059194684028625, + 0.021614596247673035, + -0.12010134756565094, + 0.051601145416498184, + 0.015866005793213844, + 0.02554946020245552, + 0.004151641856878996, + -0.03220855072140694, + 0.03950110450387001, + 0.010637969709932804, + -0.0040254355408251286, + -0.0402817465364933, + -0.05217870697379112, + 0.0065058814361691475, + 0.0009721934329718351, + 0.022830277681350708, + 0.02529081143438816, + -0.03086193837225437, + -0.02092990279197693, + 0.0005658355657942593, + 0.03882022574543953, + 0.029252974316477776, + -0.017440656200051308, + -0.019769463688135147, + -0.017864514142274857, + 0.027356987819075584, + 0.01640557497739792, + -0.011180671863257885, + -0.029294678941369057, + 0.04624132066965103, + 0.00529481889680028, + 0.01960941217839718, + -0.005206597503274679, + -0.017093831673264503, + 0.004367133602499962, + 0.038428518921136856, + -0.04296501725912094, + -0.021200312301516533, + -0.026027875021100044, + 0.057568926364183426, + 0.017387447878718376, + -0.0045977323316037655, + 0.04779732599854469, + -0.014695776626467705, + 0.027759714052081108, + 0.020244939252734184, + -0.02927376888692379, + 0.0019404611084610224, + 0.052988819777965546, + -0.005671712104231119, + -0.0103530902415514, + 0.03072548843920231, + -0.01367555744946003, + -0.010793574154376984, + 0.008219519630074501, + -0.007664862088859081, + 0.07068337500095367, + 0.022738691419363022, + 0.02652384527027607, + 0.04230599105358124, + -0.08096448332071304, + -0.007568352855741978, + 0.018803486600518227, + 0.02156548574566841, + -0.0024370502214878798, + 0.0026344226207584143, + 0.04328525811433792, + 0.0006485699559561908, + -0.0051828729920089245, + 0.009636308997869492, + 0.030406633391976357, + -0.00972400140017271, + 0.0004781820171047002, + -0.029510822147130966, + 0.041261937469244, + 0.018814479932188988, + 0.03062461130321026, + 0.016889935359358788, + 0.029581159353256226, + 0.019533684477210045, + -0.010838315822184086, + 0.005410892888903618, + 0.006963273044675589, + 0.006678425706923008, + -0.044361479580402374, + -0.01215070579200983, + 0.007899807766079903, + 0.012746189720928669, + -0.0458466000854969, + -0.02675740420818329, + 0.04313895106315613, + 0.007070670370012522, + -0.013089253567159176, + 0.014469275251030922, + 0.01451373752206564, + 0.0028697128873318434, + 0.03127665817737579, + -0.057839252054691315, + 0.042060427367687225, + 0.019059613347053528, + 0.009488474577665329, + -0.04296150803565979, + 0.053166817873716354, + 0.04247134551405907, + -0.020296597853302956, + -0.005148985888808966, + 0.032667580991983414, + -0.006410775240510702, + 0.03038923069834709, + 0.0007328317151404917, + 0.03218822553753853, + -0.010218275710940361, + -0.005489174742251635, + -0.04492684081196785, + 0.023186733946204185, + -0.013667764142155647, + -0.014652850106358528, + 0.0002617358404677361, + -0.009439957328140736, + 0.0072965845465660095, + 0.006115180440247059, + -0.017096592113375664, + 0.02460290864109993, + -0.03836529701948166, + 0.042932868003845215, + 0.031013863161206245, + -0.011056228540837765, + 0.013831587508320808, + 0.02986092120409012, + -0.02585640922188759, + 0.010225977748632431, + -0.03239784762263298 + ], + "start_index": 26015, + "end_index": 26479, + "token_count": 122, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "9575f598-aaeb-5b86-b0aa-7a319d8b6f53", + "_source": { + "text": "\n\nSe utiliza para generar documentación automática o anotaciones de herramientas.\n\nEjemplo:\n\n\n\n/// obtiene el balance del usuario", + "embedding": [ + 0.0028439946472644806, + -0.05096828192472458, + -0.01403260137885809, + -0.09210208803415298, + 0.013969645835459232, + -0.014500530436635017, + -0.05587219074368477, + -0.02635267563164234, + -0.05932442098855972, + -0.041915543377399445, + -0.005805691238492727, + -0.04069557413458824, + 0.03984823450446129, + -0.012524968013167381, + -0.04836464300751686, + 0.08407804369926453, + 0.000991659821011126, + 0.06620565801858902, + -0.022001411765813828, + 0.00911838747560978, + -0.04619063436985016, + -0.0015906533226370811, + -0.02891109324991703, + 0.028315741568803787, + -0.0008051901240833104, + -0.05134570971131325, + -0.032438725233078, + 0.07048254460096359, + -0.03668523579835892, + -0.008862375281751156, + 0.00012538950250018388, + -0.022555623203516006, + -0.07493387907743454, + -0.03637341037392616, + -0.012971354648470879, + -0.01975732296705246, + 0.0008536202367395163, + -0.012825164943933487, + 0.004951776470988989, + 0.017172684893012047, + 0.0033501714933663607, + 0.01929590292274952, + 0.06929861754179001, + 0.018264899030327797, + -0.0344671905040741, + -0.06521329283714294, + -0.03972545266151428, + -0.00896701030433178, + 0.06375855952501297, + 0.0014943919377401471, + -0.03505818173289299, + -0.044310081750154495, + 0.0049388776533305645, + -0.022948667407035828, + -0.02478221245110035, + -0.01274611335247755, + 0.02215239219367504, + -0.009550637565553188, + 0.014750136993825436, + 0.030670439824461937, + -0.04176624119281769, + 0.02081240527331829, + -0.06564414501190186, + 0.008804363198578358, + -0.013427261263132095, + 0.0015464368043467402, + 0.025499897077679634, + -0.00813820119947195, + -0.08498233556747437, + -0.008508779108524323, + 0.03742121532559395, + -0.07188668847084045, + -0.035672497004270554, + 0.036580558866262436, + -0.002530544763430953, + 0.02133544720709324, + 0.03875399008393288, + -0.033957045525312424, + 0.009628278203308582, + -0.03225478529930115, + 0.009194714948534966, + 0.03928396850824356, + 0.015948642045259476, + -0.016842355951666832, + -0.009451821446418762, + 0.06344177573919296, + -0.03023488260805607, + -0.024975363165140152, + -0.030469367280602455, + -0.007458732929080725, + -0.02994665876030922, + 0.022222867235541344, + -0.006178611423820257, + 0.04569917172193527, + 0.06539750844240189, + -0.013897581957280636, + -0.0023168548941612244, + 0.016471518203616142, + -0.0108275655657053, + -0.018474051728844643, + -0.008835955522954464, + -0.01880757324397564, + 0.033001143485307693, + -0.01605021208524704, + -0.057591214776039124, + 0.044546809047460556, + -0.10477980226278305, + 0.024025218561291695, + 0.011997687630355358, + -0.03315330296754837, + 0.006432873196899891, + 0.03431958705186844, + 0.0014006185811012983, + 0.09453446418046951, + -0.02887408807873726, + -0.012358162552118301, + -0.013594790361821651, + -0.025307264178991318, + 0.035068802535533905, + -0.0065248459577560425, + -0.012654140591621399, + -0.0010099360952153802, + 0.016476154327392578, + -0.0003459709696471691, + 0.04173903167247772, + -0.0013072430156171322, + -0.05642528086900711, + -0.012250757776200771, + 0.0017241155728697777, + -0.03767373412847519, + -0.027022387832403183, + 0.00601213751360774, + 0.0030019572004675865, + -0.01911068893969059, + 0.006118571385741234, + -0.01184985600411892, + -0.02987845614552498, + 0.0222150981426239, + 0.036057427525520325, + 0.004766569938510656, + 0.03860238566994667, + -0.02442285604774952, + 0.00902002863585949, + -0.012009723111987114, + 0.015238710679113865, + 0.02617287077009678, + -0.0008433329639956355, + 0.01225010585039854, + 0.01025394070893526, + 0.06086185574531555, + 0.0330628827214241, + 0.0037542262580245733, + -0.009874996729195118, + -0.020408524200320244, + -0.018949387595057487, + 0.005646220408380032, + -0.009841972030699253, + -0.01741691865026951, + 0.02800089120864868, + 0.028678040951490402, + -0.0014867314603179693, + -0.025553952902555466, + -0.014029211364686489, + -0.05690480396151543, + -0.03220180422067642, + 0.020780768245458603, + -0.0011184063041582704, + -0.023885244503617287, + -0.0038681321311742067, + -0.03184251859784126, + -0.0013545849360525608, + 0.016112899407744408, + -0.006282460875809193, + -0.012584179639816284, + 0.005401137284934521, + -0.03634798154234886, + -0.03462415561079979, + -0.08503386378288269, + -0.009642727673053741, + -0.015338616445660591, + 0.018768947571516037, + -0.026850085705518723, + -0.009876862168312073, + 0.016147172078490257, + 0.035415418446063995, + 0.04455139860510826, + 0.02404206059873104, + 0.014378390274941921, + 0.0003230940783396363, + -0.03044237568974495, + -0.02430301159620285, + 0.00471231946721673, + -0.007717370521277189, + -0.0023788867983967066, + -0.02077534981071949, + -0.04686536639928818, + 0.02654631808400154, + 0.002911774907261133, + -0.0009332335321232677, + 0.00042892422061413527, + -0.011080440133810043, + -0.028858458623290062, + 0.020011918619275093, + 0.021724561229348183, + -0.02096753567457199, + 0.0104807885363698, + 0.033368926495313644, + -0.00312869087792933, + -0.005399057641625404, + -0.012646287679672241, + -0.01681666076183319, + 0.0221910011023283, + -0.09526228159666061, + -0.06951846927404404, + 0.013042516075074673, + 0.046289049088954926, + 0.026316151022911072, + 0.06791646778583527, + 0.00020209673675708473, + 0.04168948903679848, + 0.02822144888341427, + 0.035015568137168884, + -0.03470895439386368, + 0.0072993128560483456, + -0.0023069295566529036, + -0.01752048172056675, + -0.002202166011556983, + -0.008396071381866932, + 0.0068174912594258785, + 0.015561152249574661, + 0.026678534224629402, + -0.03210955485701561, + 0.002328197006136179, + 0.029627902433276176, + 0.0488741509616375, + 0.018061693757772446, + 0.016656475141644478, + -0.03051573596894741, + 0.06354495137929916, + -0.01399132702499628, + 0.010380174033343792, + -0.005685633048415184, + 0.010317937470972538, + 0.03752540051937103, + -0.011514716781675816, + 0.041759490966796875, + 0.0007193082710728049, + 0.014999540522694588, + -0.027761168777942657, + -0.0014933021739125252, + 0.04300253838300705, + -0.0425768718123436, + -0.0450742207467556, + 0.023066624999046326, + 0.013847257941961288, + -0.02148445136845112, + 0.009548460133373737, + -0.007529919501394033, + 0.03183819726109505, + 0.015603434294462204, + 0.044883545488119125, + -0.050201304256916046, + -0.03801795467734337, + 0.0309615358710289, + -0.010946962051093578, + 0.015956444665789604, + -0.017381491139531136, + 0.004498322959989309, + -0.03103495016694069, + -0.014219408854842186, + 0.005637709051370621, + 0.023058554157614708, + -0.0411364771425724, + -0.012331974692642689, + 0.01068175956606865, + 0.031362902373075485, + 0.019179102033376694, + -0.10489428043365479, + 0.06168900430202484, + -0.029233433306217194, + 0.03130357339978218, + -0.020876655355095863, + 0.01113916002213955, + -0.02540784329175949, + 0.05101684480905533, + 0.06172652915120125, + 0.016040539368987083, + -0.0006248142453841865, + -0.019551042467355728, + -0.006880077533423901, + -0.004418607335537672, + 0.02449054829776287, + -0.031053975224494934, + 0.04289189353585243, + -0.0008500534459017217, + -0.011889621615409851, + 0.06326290965080261, + -0.0026115872897207737, + 0.004421699792146683, + 0.009146016091108322, + 0.02724383771419525, + -0.05361272022128105, + -0.042684271931648254, + -0.006815716158598661, + -0.032547514885663986, + 7.40148825570941e-05, + 0.013449156656861305, + -0.028519494459033012, + 0.036985915154218674, + -0.02908623404800892, + 0.0635511726140976, + 0.013490439392626286, + -0.02332952991127968, + 0.008166062645614147, + -0.01683667115867138, + -0.0038710099179297686, + -0.020465241745114326, + 0.04556996747851372, + 0.01192384772002697, + 0.028176072984933853, + -0.01690256968140602, + -0.04345322772860527, + 0.0276412945240736, + 0.007244738284498453, + -0.008184115402400494, + 0.024624954909086227, + -0.018396146595478058, + 0.03206080570816994, + 0.0032630276400595903, + 0.016006281599402428, + -0.007189228665083647, + 0.017571033909916878, + 0.07125000655651093, + -0.027873700484633446, + -0.014833361841738224, + 0.0009774960344657302, + -0.030596699565649033, + -0.0002165485784644261, + 0.033161867409944534, + -0.0006831415230408311, + 0.026913583278656006, + 0.017964038997888565, + -0.03862342983484268, + -0.03890177235007286, + -0.022522805258631706, + -0.045245517045259476, + -0.03613484278321266, + 0.03586655110120773, + 0.02667638659477234, + 0.031211616471409798, + -0.02709045447409153, + 0.03162349760532379, + -0.0067403363063931465, + -0.006097316276282072, + -0.006689614616334438, + -0.010527743957936764, + 0.00448636244982481, + 0.04757209122180939, + -0.06682910025119781, + -0.02344178967177868, + -0.040286093950271606, + -0.010664654895663261, + 0.044245436787605286, + -0.036821525543928146, + -0.009846684522926807, + 0.04504048824310303, + -0.029198596253991127, + -0.054118361324071884, + 0.0291624553501606, + -0.07877784967422485, + -0.09867870062589645, + -0.00030726243858225644, + -0.0782904326915741, + 0.0495305173099041, + 0.03379828482866287, + 0.0561080127954483, + 0.03396294265985489, + -0.06516662985086441, + -0.017619095742702484, + 0.06408198922872543, + 0.025100894272327423, + -0.014006501995027065, + -0.023986974731087685, + -0.010656852275133133, + -0.042964935302734375, + -0.03342017903923988, + 0.06878183037042618, + -0.0715973749756813, + -0.018120070919394493, + -0.028525786474347115, + 0.04048694670200348, + -0.014417826198041439, + 0.056790027767419815, + 0.0008433234761469066, + 0.020441977307200432, + 0.020684240385890007, + -0.052605368196964264, + 0.05583684891462326, + -0.025217801332473755, + -0.0014419152867048979, + -0.004183323588222265, + 0.03112841211259365, + -0.10605137050151825, + 0.004244689829647541, + 0.018069066107273102, + 0.035003941506147385, + -0.004944497253745794, + -0.01095507014542818, + 0.011105258017778397, + -0.03233013674616814, + 0.07336960732936859, + 0.02545313537120819, + -0.016318028792738914, + -0.04419823735952377, + -0.00227032951079309, + -0.014630826190114021, + 0.08796174079179764, + -0.021397484466433525, + 0.026227891445159912, + 0.01872961036860943, + 0.005196519196033478, + 0.06335281580686569, + -0.0476195402443409, + -0.03108850307762623, + -0.0010534566827118397, + -0.02299717627465725, + -0.04919405281543732, + -0.03187251091003418, + 0.02282879501581192, + 0.06456499546766281, + 0.016068583354353905, + -0.01140226423740387, + 0.0022961674258112907, + 0.027346117421984673, + -0.013673832640051842, + 0.006702597718685865, + 0.034927692264318466, + 0.02829359658062458, + 0.01123799942433834, + -0.0017372018191963434, + 0.02689216285943985, + 0.022608717903494835, + 0.01879156567156315, + -0.02297397144138813, + -0.025926193222403526, + 0.007992438971996307, + -0.032535117119550705, + 0.0008590830257162452, + 0.010184960439801216, + -0.016902461647987366, + -0.008611286990344524, + -0.025653865188360214, + 0.0029430065769702196, + 0.02840818464756012, + 0.0015762645052745938, + -0.032304003834724426, + -0.027651801705360413, + -0.01259780302643776, + -0.030943524092435837, + 0.02112073078751564, + 0.016978483647108078, + 0.07108155637979507, + 0.012137064710259438, + 0.021531786769628525, + -0.0318806990981102, + 0.014460182748734951, + 0.0705527663230896, + -0.01056110393255949, + 0.009613732807338238, + -0.002871573204174638, + 0.01102636568248272, + 0.06398649513721466, + -0.023099392652511597, + -0.0010935553582385182, + 0.0345107838511467, + -0.014062929898500443, + -0.07216156274080276, + -0.026662053540349007, + -0.005389097612351179, + -0.02422257326543331, + -0.04474255442619324, + -0.04423436149954796, + 0.035796038806438446, + -0.0966547429561615, + 0.09311319887638092, + -0.04526170715689659, + -0.023995179682970047, + -0.022302497178316116, + -0.03217403218150139, + 0.01366319227963686, + -0.01857643947005272, + -0.013477005995810032, + -0.00064268329879269, + -0.03684195876121521, + -0.011378524824976921, + -0.045035578310489655, + 0.0018405066803097725, + -0.009346231818199158, + -0.07955384999513626, + 0.006846223957836628, + -0.0076255290769040585, + 0.013601945713162422, + -0.01651662029325962, + -0.002817388391122222, + -0.004892259370535612, + -0.03700333461165428, + 0.015922358259558678, + -0.037167925387620926, + 0.019136078655719757, + 0.04415478557348251, + -0.003645191667601466, + -0.027175750583410263, + -0.021679947152733803, + 0.02256941609084606, + -0.02084426023066044, + 0.009155523963272572, + 0.02563195489346981, + -0.004300101660192013, + -0.019536837935447693, + 0.03155912831425667, + 0.013259484432637691, + 0.025747478008270264, + 0.03757478669285774, + -0.0039419750683009624, + 0.020634476095438004, + 0.031824853271245956, + 0.02389385737478733, + 0.0020836838521063328, + -0.004172708373516798, + 0.010898353531956673, + -0.015493324026465416, + 0.0016292397631332278, + 0.01882101781666279, + 0.016658863052725792, + -0.005117179825901985, + 0.0116295600309968, + 0.009172591380774975, + -0.010360133834183216, + -0.015317841432988644, + 0.03768222779035568, + -0.030122455209493637, + 0.009622633457183838, + -0.00017688734806142747, + -0.0874500423669815, + 0.019833078607916832, + -0.051746100187301636, + 0.002485093893483281, + 0.02218524180352688, + -0.026515699923038483, + 0.044004473835229874, + 0.06432635337114334, + -0.028636062517762184, + 0.059489451348781586, + -0.028534473851323128, + 0.008343683555722237, + 0.020945530384778976, + 0.04678625240921974, + 0.013734687119722366, + 0.01998365856707096, + -0.021578582003712654, + 0.026937738060951233, + 0.022961899638175964, + -0.01044140849262476, + -0.02908225916326046, + -0.005060751456767321, + -0.02520737424492836, + 0.02157285250723362, + -0.0009573549032211304, + 0.05176287144422531, + -0.030489914119243622, + 0.03329342603683472, + -0.02406250312924385, + 0.0112862978130579, + 0.02607901208102703, + 0.031566936522722244, + -0.06667917221784592, + -0.033690232783555984, + 0.059462834149599075, + -0.01308787427842617, + -0.043785613030195236, + 0.0050397710874676704, + 0.029957925900816917, + -0.043896399438381195, + 0.054276347160339355, + -0.026470554992556572, + -0.018119683489203453, + 0.046888209879398346, + -0.0048835789784789085, + 0.002958763623610139, + 0.004958619363605976, + -0.039178457111120224, + -0.053125716745853424, + 0.01950640045106411, + -0.01148580014705658, + 0.058269307017326355, + -0.014268315397202969, + -0.04274459928274155, + 0.009659143164753914, + -0.004848150536417961, + -0.031869519501924515, + -0.019469307735562325, + 0.05432567000389099, + 0.011706414632499218, + -0.005269341170787811, + -0.03917785361409187, + 0.01779574155807495, + 0.012314499355852604, + 0.045871563255786896, + 0.0020666613709181547, + -0.009291906841099262, + -0.06934820860624313, + 0.0148127106949687, + -0.010879958048462868, + -0.02637631446123123, + 0.027212858200073242, + -0.007914441637694836, + -0.03295707330107689, + 0.018902018666267395, + 0.005914991721510887, + -0.059389133006334305, + -0.011764219030737877, + 0.038662414997816086, + -0.025296753272414207, + 0.05509506165981293, + -0.0017600918654352427, + 0.025020916014909744, + -0.03266698122024536, + -0.0259891077876091, + -0.00040873049874790013, + -0.015985872596502304, + -0.02930586412549019, + -0.009717167355120182, + -0.03580452501773834, + 0.018365219235420227, + 0.011444982141256332, + -0.029639506712555885, + -0.026378173381090164, + 0.005174733232706785, + 0.03881178796291351, + -0.019317947328090668, + -0.02267634868621826, + 0.004874799866229296, + 0.009652010165154934, + 0.012354614213109016, + -0.002898257691413164, + 0.032286759465932846, + -0.012109369970858097, + 0.03424680978059769, + 0.06565383076667786, + -0.017646552994847298, + 0.0378446988761425, + 0.010596864856779575, + 0.0032570038456469774, + 0.002633231459185481, + -0.02415328100323677, + 0.010399964638054371, + -0.015652447938919067, + -0.004487865138798952, + -0.013712777756154537, + -0.04349421709775925, + -0.02096611261367798, + -0.0767102837562561, + 0.03413723036646843, + -0.03547137603163719, + -0.011111289262771606, + -0.004676114767789841, + 0.06700600683689117, + 0.0022001720499247313, + 0.023556159809231758, + -0.04816433787345886, + -0.0021284022368490696, + -0.07745411247015, + 0.007576504722237587, + 0.05986306443810463, + 0.01966051571071148, + -0.034269802272319794, + -0.0006993438000790775, + -0.02872447669506073, + -0.026222454383969307, + -0.022997144609689713, + -0.015317742712795734, + -0.016560401767492294, + 0.014053916558623314, + -0.056777507066726685, + 0.019627181813120842, + -0.03864486142992973, + -0.03841668367385864, + 0.05214792862534523, + 0.023808259516954422, + -0.003075479995459318, + -0.02637917920947075, + -0.012767934240400791, + 0.0017924660351127386, + -0.053900718688964844, + 0.017514225095510483, + 0.02320775017142296, + -0.0009266616543754935, + -0.05658936873078346, + -0.021429244428873062, + -0.010232147760689259, + 0.03452979028224945, + -0.018624119460582733, + -0.02726016193628311, + 0.027283964678645134, + 0.013570807874202728, + -0.006586588453501463, + 0.0035876138135790825, + 0.014746474102139473, + -0.04388132691383362, + -0.003983964212238789, + 0.020860834047198296, + 0.02158546634018421, + -0.006998647935688496, + -0.015388994477689266, + 0.03516427427530289, + -0.034043122082948685, + -0.00013516299077309668, + -0.0021587833762168884, + -0.022535759955644608, + -0.022203488275408745, + 0.04117367044091225, + -0.04527713730931282, + 0.018628286197781563, + 0.02784842997789383, + -0.029913129284977913, + -0.011647430248558521, + -0.009901056997478008, + 0.025525931268930435, + -0.027271412312984467, + 0.014914778992533684, + 0.03759368881583214, + 0.041377924382686615, + 0.031926631927490234, + -0.0005890082684345543, + 0.024685071781277657, + 0.018188491463661194, + 0.03300027549266815, + -0.006094422657042742, + 0.011727660894393921, + 0.034119054675102234, + 0.03311910480260849, + -0.00894156750291586, + -0.01811544969677925, + -0.02756052277982235, + 0.0031449554953724146, + 0.024756653234362602, + -0.019609583541750908, + -0.012304925359785557, + 0.019775433465838432, + -0.0009284344268962741, + 0.009030449204146862, + 0.022018777206540108, + -0.02887924760580063, + 0.08509618788957596, + -0.022167406976222992, + 0.012861131690442562, + -0.02109631337225437, + 0.06149004399776459, + -0.002066486980766058, + 0.025493627414107323, + -0.003111924510449171, + -0.02746325358748436, + -0.004164387471973896, + 0.025648457929491997, + 0.035035498440265656, + -0.030920689925551414, + -1.865312697191257e-05, + -0.04233453795313835, + -0.0034179461654275656, + -0.03683052584528923, + 0.012161812745034695, + -0.027784284204244614, + 0.045027103275060654, + 0.08886447548866272, + 0.0022996135521680117, + 0.02215346321463585, + -0.0049148076213896275, + -0.008229671977460384, + 0.0074180662631988525, + -0.01789146102964878, + 0.01578206941485405, + -0.018796494230628014, + 0.0320364385843277, + 0.01799233816564083, + -0.049003373831510544, + 0.07555727660655975, + -0.017657918855547905, + 0.005339507013559341, + 0.01728397235274315, + 0.0471767857670784, + 0.0399857833981514, + 0.025349188596010208, + -0.04448196664452553, + 0.03129470720887184, + -0.041731320321559906, + 0.035914018750190735, + 0.03310230374336243, + 0.014853671193122864, + -0.043595001101493835, + 0.015287637710571289, + 0.014186935499310493, + 0.020320307463407516, + -0.023615049198269844, + -0.001053607207722962, + 0.04081880673766136, + -0.02287367731332779, + -0.013961035758256912, + 0.015786396339535713, + -0.02483980543911457, + 0.004509188234806061, + 0.02646450884640217, + 0.03294229879975319, + 0.026392515748739243, + 0.02808980830013752, + 0.014490289613604546, + 0.07027486711740494, + -0.03799261897802353, + 0.03167343884706497, + 0.001998679945245385, + -0.012168578803539276, + -0.016770752146840096, + 0.0006441210862249136, + -0.00025262022973038256, + 0.05687987804412842, + -0.030393118038773537, + -0.002780105220153928, + 0.023029576987028122, + -0.0014773448929190636, + -0.01562557928264141, + 0.017909923568367958, + 0.009654736146330833, + -0.033437587320804596, + 0.06309612095355988, + 0.03047850728034973, + 0.06417430192232132, + 0.04367914795875549, + -0.021853800863027573, + 0.009377611801028252, + 0.00721757160499692, + 0.05297807231545448, + 0.05560066178441048, + -0.011491659097373486, + 0.01810183934867382, + 0.01868615485727787, + -0.017720486968755722, + -0.017584675922989845, + 0.013041388243436813, + 0.005481192376464605, + -0.0030805764254182577, + -0.0015160487964749336, + 0.024137208238244057, + -0.0025163202080875635, + 0.0050087301060557365, + -0.04499667137861252, + -0.0670388787984848, + 0.05808170512318611, + 0.010481578297913074, + 0.03417648375034332, + -0.047896213829517365, + 0.009799104183912277, + 0.008386136963963509, + -0.038490425795316696, + -0.03548961132764816, + -0.03656541183590889, + -0.04465705156326294, + 0.06230436637997627, + -0.018081022426486015, + 0.021153725683689117, + 0.02443254552781582, + 0.005766552407294512, + -0.0045132883824408054, + -0.006539327558130026, + 0.04028157889842987, + -0.0020778325852006674, + -0.008569389581680298, + 0.02775510400533676, + -0.015908755362033844, + -0.004181183874607086, + -0.003938707057386637, + 0.04925217851996422, + -0.016027245670557022, + 0.021752655506134033, + 0.01729319803416729, + -0.0036802368704229593, + -0.02797696553170681, + -0.017474638298153877, + -0.003325412515550852, + -0.03377043083310127, + -0.011998326517641544, + 0.0034049402456730604, + -0.0012082186294719577, + -0.017603907734155655, + 0.0028169068973511457, + 0.05238586664199829, + -0.0759846419095993, + -0.007643871009349823, + 0.05832119658589363, + 0.041337136179208755, + 0.01960456371307373, + -0.03034977801144123, + 0.04269872233271599, + 0.0009818054968491197, + 0.03273175284266472, + -0.020448844879865646, + -0.04307191073894501, + -0.014228252694010735, + -0.014655869454145432, + 0.03201976791024208, + -0.02111058123409748, + -0.01358206756412983, + -0.026904838159680367, + 0.027995245531201363, + 0.045010145753622055, + -0.004244654439389706, + -0.019095586612820625, + 0.004715892486274242, + -0.02054128423333168, + -0.010269793681800365, + 0.01832086779177189, + -0.03896932676434517, + -0.003355735680088401, + 0.014065624214708805, + 0.0046020918525755405, + -0.006342020351439714, + -0.020329497754573822, + -0.035216107964515686, + 0.009509806521236897, + 0.0004050531715620309, + 0.00544346496462822, + 0.05373353883624077, + -0.00902419164776802, + 0.039071135222911835, + 0.030618200078606606, + 0.009340738877654076, + 0.012658878229558468, + 0.0042145573534071445, + 0.02476547285914421, + -0.013172787614166737, + 0.008215080946683884, + 0.010198844596743584, + -0.005932956002652645, + -0.04259360954165459, + 0.013765424489974976, + 0.003692306810989976, + 0.020501991733908653, + -0.017961077392101288, + -0.0001165421781479381, + -0.020123641937971115, + 0.02449137717485428, + 0.027428336441516876, + 0.01451081782579422, + 0.008204542100429535, + -0.00139620341360569, + -0.016085539013147354, + 0.0031310722697526217, + 0.0032043640967458487, + -0.01707909256219864, + 0.008228614926338196, + -0.02265005372464657, + -0.028526294976472855, + -0.01306904572993517, + -0.0072698830626904964, + 0.021773044019937515, + 0.0069642988964915276, + 0.023747799918055534, + -0.028416583314538002, + -0.018101073801517487, + 0.0037537410389631987, + 0.00869686994701624, + 0.0044789002276957035, + 0.03772126883268356, + -0.014220496639609337, + -0.01725546084344387, + 0.05986788496375084, + 0.020710285753011703, + 0.043229762464761734, + -0.03622785955667496, + -0.025658363476395607, + -0.0013619200326502323, + -0.04132608696818352, + -0.07457056641578674, + -0.00527004711329937, + 0.07326717674732208, + 0.030529607087373734, + -0.002341574290767312, + -0.034579865634441376, + 0.02724462002515793, + -0.018237901851534843, + 0.03240220993757248, + -0.035161253064870834, + 0.015247588977217674, + 0.03135349601507187, + -0.024514125660061836, + -0.015078932046890259, + -0.0005877001094631851, + 0.021238291636109352, + 0.006417493801563978, + -0.023597028106451035, + 0.02697778306901455, + 0.005688686389476061, + -0.0011280998587608337, + 0.014086790382862091, + 0.030143646523356438, + -0.0016246301820501685, + 0.03302215784788132, + -0.009128608740866184, + 0.02244967222213745, + 0.024489017203450203, + -0.006352739408612251, + 0.016622597351670265, + 0.00700466800481081, + 0.014591652899980545, + 0.020659107714891434, + 0.004811509978026152, + 0.004830033518373966, + 0.014049608260393143, + 0.01459659542888403, + 0.009872701950371265, + 0.018071414902806282, + 0.042392585426568985, + -0.013644994236528873, + -0.02699582464993, + -0.0019159860676154494, + -0.02632085420191288 + ], + "start_index": 26479, + "end_index": 26618, + "token_count": 21, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "3f8e7610-7dab-5a08-8d94-dcede9fe0964", + "_source": { + "text": "\n\n---\n\n## Comentario de línea\n\n\n\nLINE_COMMENT ::= \"//\"[^\\r\\n]*", + "embedding": [ + 0.0014652529498562217, + -0.014695326797664165, + -0.00232586357742548, + -0.04640502482652664, + -0.0401453860104084, + -0.008520480245351791, + -0.07125702500343323, + -0.06152651831507683, + -0.04822487011551857, + -0.04617505148053169, + 0.04600895941257477, + 0.012114177457988262, + 0.024282651022076607, + -0.00265585002489388, + -0.03556123375892639, + 0.03408677503466606, + 0.03073570877313614, + 0.05989755690097809, + 0.024954779073596, + -0.026823990046977997, + -0.04033639281988144, + -0.028986524790525436, + -0.03900108113884926, + 0.07052695006132126, + 0.06334606558084488, + 0.044902168214321136, + -0.011676308698952198, + 0.051468703895807266, + -0.03483452647924423, + -0.025543831288814545, + -0.02604294940829277, + -0.019898049533367157, + -0.03500106558203697, + -0.04198209568858147, + 0.023441100493073463, + -0.006127525120973587, + 0.001184491440653801, + 0.017492350190877914, + 0.012085340917110443, + -0.02057632803916931, + -0.01306807342916727, + -0.017677798867225647, + 0.0026806085370481014, + -0.009680217131972313, + -0.018513428047299385, + -0.015496745705604553, + -0.012180223129689693, + 0.03457207232713699, + 0.02623102441430092, + 0.010262737981975079, + -0.03529287502169609, + -0.009276336058974266, + -0.0023992713540792465, + 0.008900130167603493, + -0.046466559171676636, + -0.01639436185359955, + 0.01036792527884245, + -0.007844078354537487, + 0.006260300520807505, + 0.028851276263594627, + 0.011735695414245129, + 0.02647031843662262, + 0.027994899079203606, + 0.005577928386628628, + 0.01605227030813694, + -0.003615870140492916, + 0.03350921347737312, + -0.05508757010102272, + -0.035852182656526566, + -0.0346713587641716, + -0.019609369337558746, + 0.03502367064356804, + 0.011564311571419239, + -0.0035785420332103968, + -0.03603048995137215, + -0.0006238038768060505, + -0.008075586520135403, + -0.021743880584836006, + -0.00026490687741898, + -0.04633018746972084, + -0.015448625199496746, + 0.055932559072971344, + 0.05491067096590996, + -0.020508432760834694, + -0.0187204722315073, + 0.040745384991168976, + 0.0081515247002244, + -0.0379190631210804, + 0.0026946933940052986, + 0.018633561208844185, + -0.03169769421219826, + 0.04514820873737335, + 0.03045273944735527, + -0.06098518893122673, + 0.06861270219087601, + -0.017980599775910378, + 0.016771433874964714, + 0.05187643691897392, + 0.00932064838707447, + -0.011911436915397644, + 0.01044534333050251, + -0.02757611870765686, + 0.04136202484369278, + 0.011234389618039131, + 0.003197277197614312, + 0.010592950507998466, + -0.022439006716012955, + 0.01736399345099926, + -0.012846557423472404, + -0.04251781478524208, + 0.01183477882295847, + 0.01641380973160267, + 0.0181808453053236, + 0.039042338728904724, + 0.039161551743745804, + 0.033470042049884796, + 0.005298297386616468, + -0.05231368541717529, + 0.0340537503361702, + 0.03569057956337929, + 0.033222924917936325, + 0.012560662813484669, + -0.013796849176287651, + -0.024257566779851913, + 0.06247593089938164, + -0.00637484434992075, + -0.02821144089102745, + -0.023762604221701622, + -0.025955552235245705, + -0.044713620096445084, + -0.004182556178420782, + 0.010971893556416035, + 0.007852558046579361, + -0.03354388847947121, + 0.04058937355875969, + 0.004838673863559961, + -0.007470200769603252, + 0.0073867556639015675, + 0.027285661548376083, + -0.03343871608376503, + 0.007383343763649464, + -0.018242325633764267, + -0.035158682614564896, + -0.014185450039803982, + 0.020734751597046852, + 0.0022973709274083376, + 0.021141884848475456, + -0.016260262578725815, + -0.01782902702689171, + 0.015002110041677952, + 0.024445833638310432, + -0.023772800341248512, + 0.018238719552755356, + -0.008127201348543167, + -0.004071431700140238, + -0.036616209894418716, + 0.0031817187555134296, + 0.004928154870867729, + -0.004556356929242611, + 0.003145316382870078, + 0.019976479932665825, + -0.009361771866679192, + -0.011821283958852291, + -0.03479848802089691, + -0.03702506422996521, + 0.025868214666843414, + -0.013675355352461338, + -0.000659358105622232, + 0.038444433361291885, + 0.01659548096358776, + -0.016607005149126053, + 0.035619352012872696, + -0.0056175547651946545, + 0.013913269154727459, + 0.018221667036414146, + -0.006595212500542402, + -0.030473550781607628, + 0.05675860494375229, + -0.037787001579999924, + -0.013376903720200062, + -0.007859528064727783, + -0.019077163189649582, + 0.014334222301840782, + 0.04458588734269142, + 0.00656773429363966, + 0.03301054984331131, + 0.006198027171194553, + -0.02041332982480526, + 0.014560951851308346, + -0.002067138208076358, + 0.02176402136683464, + -0.01790831796824932, + -0.08270889520645142, + -0.004146107006818056, + -0.002771104220300913, + -0.04075893759727478, + 0.014628912322223186, + -0.020111586898565292, + -0.032895706593990326, + 0.01260775700211525, + 0.054306939244270325, + -0.02389603666961193, + -0.0062944842502474785, + -0.006275501102209091, + -0.031421322375535965, + -0.011954197660088539, + 0.015527294017374516, + 0.0067868041805922985, + -0.03293938562273979, + -0.029243145138025284, + 0.024137461557984352, + 0.011910509318113327, + -0.043818846344947815, + 0.008948481641709805, + -0.0024657088797539473, + -0.023324044421315193, + -0.005296054296195507, + 0.04719585180282593, + -0.0010584670817479491, + 0.04704581946134567, + -0.013603655621409416, + 0.006107432302087545, + -0.02799685113132, + -0.010748516768217087, + 0.0687696635723114, + -0.010910752229392529, + 0.008286827243864536, + -0.04370269179344177, + -0.008285319432616234, + -0.014335501939058304, + -0.004214810207486153, + 0.07614145427942276, + 0.05864684656262398, + 0.0024976995773613453, + 0.028401268646121025, + -0.012551197782158852, + 0.010259900242090225, + -0.0805942639708519, + 0.02161654643714428, + -0.05713064596056938, + 0.0032744219060987234, + 0.0011502668494358659, + 0.03458857536315918, + 0.028023313730955124, + -0.015066808089613914, + 0.005541310179978609, + 0.017230020835995674, + 0.040244605392217636, + -0.01511993445456028, + -0.0023495759814977646, + -0.04438821226358414, + 0.02647283300757408, + 0.005211367271840572, + -0.05463549867272377, + -0.007803806569427252, + -0.01158694364130497, + 0.009392935782670975, + 0.04598863795399666, + -0.007979543879628181, + -0.018384713679552078, + 0.014826799742877483, + -0.0053396159783005714, + -0.004932531155645847, + -0.004271081183105707, + 0.006171646062284708, + 0.005162019282579422, + -0.02059711143374443, + -0.037330999970436096, + -0.052064962685108185, + -0.029730703681707382, + 0.027999794110655785, + 0.005920862779021263, + 0.013653413392603397, + 0.02206076867878437, + 0.010359391570091248, + 0.056720685213804245, + 0.015219449065625668, + -0.11031350493431091, + 0.0070701041258871555, + 0.02609274722635746, + 0.06808137148618698, + -0.0347260907292366, + -0.010427680797874928, + 0.004025016445666552, + -0.0063233221881091595, + 0.025756947696208954, + 0.01084410585463047, + -0.0027956245467066765, + 0.021477581933140755, + -0.016783632338047028, + -0.0016472268616780639, + 0.016867848113179207, + -0.07602518051862717, + 0.08028051257133484, + -0.02159694768488407, + -0.0374499149620533, + -0.0071988459676504135, + 0.020411936566233635, + 0.032936375588178635, + 1.893273292807862e-05, + 0.023358630016446114, + -0.027143144980072975, + -0.01964065432548523, + -0.029841585084795952, + -0.01567257195711136, + 0.02747153304517269, + 0.006653646472841501, + -0.019827157258987427, + -0.01968703605234623, + 0.017185308039188385, + 0.035627931356430054, + 0.006142101716250181, + -0.012148977257311344, + -0.00918982271105051, + -0.022543661296367645, + -0.02079218439757824, + -0.06288193166255951, + 0.012327848002314568, + 0.018724923953413963, + 0.0005669030942954123, + 0.012736408971250057, + -0.06759893149137497, + -0.022610297426581383, + 0.005138775333762169, + 0.012923899106681347, + 0.011451926082372665, + 0.056253720074892044, + -0.014895168133080006, + 0.03667419031262398, + 0.032246459275484085, + -0.007909995503723621, + -0.04502415657043457, + 0.008912365883588791, + 0.008968453854322433, + -0.012328878976404667, + -0.01683168299496174, + -0.027890613302588463, + 0.043896209448575974, + -0.03785821422934532, + 0.00011671089305309579, + 0.009995564818382263, + 0.037290140986442566, + -0.019069405272603035, + 0.004009064752608538, + -0.051069553941488266, + -0.005582484882324934, + 0.03339490294456482, + 0.03348802030086517, + 0.03092336840927601, + -0.020306942984461784, + -0.034300487488508224, + 0.008414030075073242, + -0.029146280139684677, + -0.007593183312565088, + 0.01903759129345417, + -0.027395008131861687, + -0.012032520025968552, + 0.003701021196320653, + -0.04624691978096962, + -0.026383770629763603, + -0.02211962640285492, + -0.034326765686273575, + -0.016595078632235527, + 0.00904686190187931, + -0.024888329207897186, + -0.054139140993356705, + -0.024166444316506386, + -0.014815682545304298, + -5.7320212363265455e-05, + -0.019801070913672447, + -0.08014248311519623, + 0.06532277911901474, + -0.055155277252197266, + 0.04610321670770645, + 0.05734676867723465, + 0.0840659886598587, + 0.024890324100852013, + -0.029958417639136314, + -0.01706080138683319, + 0.046052686870098114, + 0.0106193907558918, + 0.0418461374938488, + 0.008134446106851101, + 0.00013984949328005314, + -0.05511779338121414, + -0.0366038978099823, + 0.007855724543333054, + -0.011113242246210575, + -0.028111618012189865, + 0.013603963889181614, + 0.07159581035375595, + 0.006914033088833094, + -0.01183449849486351, + 0.021006103605031967, + 0.0524466410279274, + 0.012193768285214901, + -0.07584311068058014, + 0.014122985303401947, + -0.02603187970817089, + -0.006685177329927683, + -0.0332929790019989, + -0.02734435349702835, + -0.020539961755275726, + -0.011485259979963303, + 0.007728647440671921, + 0.005662507377564907, + 0.013678249903023243, + -0.05010446161031723, + -0.020154496654868126, + -0.0006299269152805209, + 0.023960407823324203, + -0.026506194844841957, + -0.02488982304930687, + -0.013640673831105232, + -0.01958765834569931, + 0.00903554167598486, + 0.041986629366874695, + -0.06705325841903687, + 0.06283267587423325, + 0.01894746720790863, + 0.02828351967036724, + 0.0025429842062294483, + -0.014646938070654869, + -0.034613657742738724, + -0.0015940368175506592, + -0.0041928947903215885, + 0.010678475722670555, + -0.0036938642151653767, + -0.0035452102310955524, + 0.05667700991034508, + 0.022411571815609932, + 0.011995118111371994, + 0.012543853372335434, + 0.01761999912559986, + -0.049741197377443314, + -0.04823477566242218, + 0.020731007680296898, + 0.047836124897003174, + -0.03711044043302536, + -0.05463740974664688, + -0.01080823503434658, + 0.06618514657020569, + -0.025896182283759117, + 0.014136779122054577, + -0.026828672736883163, + -0.018549947068095207, + -0.03923376649618149, + 0.018700620159506798, + 0.009584310464560986, + -0.061395786702632904, + -0.01689903624355793, + 0.012958819046616554, + 0.028847966343164444, + -0.005202034488320351, + 0.004324295558035374, + -0.01605241373181343, + -0.04518755525350571, + -0.053724173456430435, + -0.0328158438205719, + 0.03882888704538345, + 0.02089087851345539, + 0.05282837152481079, + 0.022698188200592995, + -0.01856926642358303, + -0.02142203226685524, + 0.028101395815610886, + 0.000624811218585819, + -0.007348442450165749, + 0.00735179940238595, + 0.038015156984329224, + 0.030877988785505295, + -0.0023380171041935682, + 0.04245055839419365, + 0.0010702520376071334, + 0.03318267688155174, + -0.018528692424297333, + -0.06957387924194336, + -0.03877565264701843, + 0.002752762520685792, + 0.018539514392614365, + -0.020360512658953667, + -0.045018699020147324, + 0.031162556260824203, + -0.10422175377607346, + -0.003771729301661253, + -0.0272806566208601, + -0.0073789265006780624, + 0.011567752808332443, + -0.04640576243400574, + 0.038286883383989334, + 0.032095666974782944, + 0.012932204641401768, + 0.01877717487514019, + -0.015082397498190403, + 0.049780335277318954, + -0.0474650114774704, + 0.04363676905632019, + -0.024601079523563385, + -0.0575064979493618, + 0.01537464652210474, + -0.024848051369190216, + 0.021033283323049545, + -0.00783481914550066, + -0.023721301928162575, + -0.03347180038690567, + -0.010199788957834244, + 0.0462205596268177, + -0.07320336997509003, + -0.0023376145400106907, + 0.05865771323442459, + -0.007869701832532883, + -0.05004893243312836, + -0.04736591503024101, + -0.0027453044895082712, + 0.003375956090167165, + -0.03928105905652046, + 0.008679166436195374, + -0.004714088048785925, + 0.04509441554546356, + 0.0044553522020578384, + 0.013759947381913662, + 0.058962538838386536, + -0.0337052196264267, + -0.03473440930247307, + -0.016450082883238792, + 0.01101006381213665, + 0.02755925990641117, + 0.0220318790525198, + 0.008802345022559166, + 0.006520329043269157, + -0.001805141451768577, + -0.007145213894546032, + -0.0103489700704813, + -0.022005025297403336, + -0.028587467968463898, + 0.0027397905942052603, + -0.0040742019191384315, + -0.018067050725221634, + 0.01102652121335268, + -0.0027275809552520514, + -0.04338237643241882, + -0.04606398940086365, + 0.013226759620010853, + 0.01855332963168621, + 0.043306540697813034, + -0.04567951336503029, + -0.004578665364533663, + 0.029023198410868645, + 0.03353947028517723, + 0.03569146245718002, + 0.08509519696235657, + 0.014245981350541115, + 0.01726800575852394, + -0.0284115020185709, + 0.012421960942447186, + 0.005511316005140543, + 0.024602795019745827, + 0.037056680768728256, + 0.011690800078213215, + -0.00748862512409687, + 0.05364033579826355, + 0.013113994151353836, + -0.00282171368598938, + 0.02024466171860695, + 0.017908036708831787, + -0.016127126291394234, + -0.0274406298995018, + -0.006681310478597879, + -0.006731223780661821, + -0.041775111109018326, + 0.009589923545718193, + 0.009392115287482738, + -0.032192688435316086, + -0.031101398169994354, + -0.0005064680590294302, + -0.0651991069316864, + -0.05854997783899307, + 0.02020067721605301, + -0.0181021336466074, + -0.01295563019812107, + -0.0025638805236667395, + -0.031045982614159584, + 0.003426305716857314, + 0.03636917471885681, + 0.023579776287078857, + -0.045223038643598557, + -0.03365806117653847, + 0.0638803094625473, + -0.017657442018389702, + 0.018486810848116875, + -0.07229660451412201, + -0.008592065423727036, + 0.017715614289045334, + 0.007463717833161354, + 0.03191149979829788, + -0.0204591266810894, + -0.02833206206560135, + -0.0022578462958335876, + 0.034371040761470795, + 0.004725879989564419, + -0.016005391255021095, + 0.03137519583106041, + 0.08995161205530167, + -0.01253434456884861, + -0.011046350002288818, + -0.039485227316617966, + -0.007027811370790005, + -0.0069830953143537045, + -0.043537236750125885, + 0.006653005722910166, + -0.0025197062641382217, + 0.06179976463317871, + 0.009705202654004097, + 0.006576005835086107, + 0.013773980550467968, + -0.0009751374600455165, + -0.0212801992893219, + -0.04356618970632553, + 0.013977013528347015, + -0.04915512353181839, + -0.061728909611701965, + 0.06409884989261627, + -0.02897721901535988, + 0.0929485633969307, + -0.029084837064146996, + 0.022859616205096245, + 0.006770359352231026, + -0.03163272514939308, + 0.015351555310189724, + 0.05406233295798302, + -0.060368604958057404, + -0.02418924868106842, + 0.0032250455114990473, + 0.056611865758895874, + 0.04150001332163811, + -0.08774896711111069, + -0.005830732174217701, + 0.06443777680397034, + 0.049755387008190155, + -0.04243655502796173, + -0.02930496446788311, + 0.015200712718069553, + -0.0006012910162098706, + 0.004870004951953888, + -0.02512211725115776, + -0.012098315171897411, + -0.0035906624980270863, + 0.012899000197649002, + 0.010766043327748775, + -0.015822432935237885, + 0.03916660323739052, + 0.020487187430262566, + -0.027537181973457336, + 0.02919181063771248, + -0.03677603602409363, + 0.03176744654774666, + 0.018457958474755287, + 0.024100206792354584, + -0.011662621051073074, + -0.06953021883964539, + -0.025611210614442825, + -0.06169237941503525, + 0.049756892025470734, + 0.008009346202015877, + -0.01176566444337368, + 0.06191159784793854, + 0.01845247857272625, + 0.014981379732489586, + 0.01830693520605564, + -0.0613320991396904, + -0.05320717394351959, + -0.010309601202607155, + -0.0253730621188879, + 0.05935966968536377, + -0.0036966458428651094, + 0.003594239940866828, + -0.007947420701384544, + -0.026125669479370117, + -0.015393542125821114, + -0.015437038615345955, + -0.020388226956129074, + -0.04762079194188118, + 0.027314169332385063, + -0.024026451632380486, + -0.015322883613407612, + -0.011258582584559917, + -0.08579942584037781, + 0.016159433871507645, + -0.001981414156034589, + -0.010199910029768944, + 0.016528591513633728, + 0.004971363116055727, + 0.004984874743968248, + 0.01565123349428177, + -0.02340245619416237, + -0.019608154892921448, + -0.014289339073002338, + -0.0033647529780864716, + 0.006160837132483721, + 0.009265122935175896, + -0.020432228222489357, + 0.023426534608006477, + 0.005383524112403393, + 0.024220651015639305, + 0.02941565029323101, + 0.0012334996135905385, + -0.0491754449903965, + 0.04316657781600952, + -0.04116974398493767, + -0.02423804998397827, + 0.03383198380470276, + 0.035414788872003555, + -0.06493473052978516, + -0.012454640120267868, + -0.0065406812354922295, + -0.033733468502759933, + -0.06527309119701385, + 0.0020456435158848763, + -0.002193364081904292, + 0.02135959081351757, + -0.023906029760837555, + 0.0021824073046445847, + 0.0194318238645792, + -0.0051312074065208435, + -0.03803415223956108, + 0.04502688720822334, + 0.03919856622815132, + 0.05893702805042267, + -0.020586533471941948, + 0.00966047216206789, + 0.02761182188987732, + -0.041829004883766174, + 0.01963783986866474, + 0.05107375606894493, + -0.006747355218976736, + -0.018067263066768646, + 0.04436308518052101, + 0.030265944078564644, + -0.011355678550899029, + 0.04607999697327614, + -0.031119562685489655, + -0.016108883544802666, + 0.010411057621240616, + -0.031589020043611526, + -0.03806017339229584, + 0.0562540702521801, + -0.0020133275538682938, + -0.039437275379896164, + -0.005620332434773445, + 0.001302796066738665, + 0.015470422804355621, + -0.0063085476867854595, + -0.016948413103818893, + -0.028010865673422813, + -0.03620264306664467, + 0.001568781677633524, + -0.02800094150006771, + 0.030730003491044044, + 0.04084273427724838, + 0.016347583383321762, + 0.004499696660786867, + 0.017691468819975853, + 0.023921702057123184, + 0.02581912651658058, + 0.013468204066157341, + -0.02003033459186554, + -0.046395834535360336, + -0.053250133991241455, + 0.031551212072372437, + -0.016029851511120796, + 0.004027989227324724, + -0.022260058671236038, + 0.049778372049331665, + 0.03069216199219227, + -0.03578467667102814, + 0.03608815744519234, + -0.020280063152313232, + 0.025257006287574768, + 0.007634934037923813, + -0.004599343985319138, + -0.037398699671030045, + 0.018229108303785324, + -0.006206312216818333, + -0.013936365023255348, + -0.03443005681037903, + 0.0129631906747818, + -0.03781687095761299, + 0.003010157961398363, + 0.04707507789134979, + 0.01843525469303131, + -0.013583794236183167, + 0.029340922832489014, + 0.011791097931563854, + 0.013624023646116257, + -0.033073022961616516, + 0.03327235206961632, + -4.093125608051196e-05, + 0.008238435722887516, + 0.007252739276736975, + 0.013826052658259869, + -0.019298313185572624, + -0.014635341241955757, + 0.011499766260385513, + -0.0016381291206926107, + 0.04308246076107025, + -0.017463695257902145, + 0.022437723353505135, + -0.0009447378688491881, + -0.02039235085248947, + 0.008550815284252167, + 0.004306064918637276, + 0.031489111483097076, + 0.005621916614472866, + 0.016247505322098732, + 0.0375237762928009, + -0.004047916736453772, + -0.08156992495059967, + 0.01374183688312769, + 0.03667495772242546, + -0.010785701684653759, + 0.03698289394378662, + 0.008954021148383617, + 0.0056111873127520084, + 0.052213262766599655, + -0.019214944913983345, + 0.03592124581336975, + 0.006484508980065584, + 0.0005536944954656065, + -0.06463175266981125, + 0.055616527795791626, + 0.01308524515479803, + -0.07931099832057953, + 0.021928511559963226, + -0.01130103599280119, + 0.022040950134396553, + 0.017095569521188736, + -0.049644578248262405, + 0.01467694528400898, + 0.005414585117250681, + 0.004846594762057066, + 0.09667197614908218, + -0.02394874580204487, + 0.03973184898495674, + -0.010253018699586391, + 0.023367686197161674, + 0.03524317964911461, + -0.024843290448188782, + -0.010059807449579239, + -0.00796942226588726, + 0.0020542629063129425, + -0.02960316278040409, + 0.019320163875818253, + 0.004949451889842749, + -0.05718858540058136, + 0.0014628402423113585, + -0.00954464916139841, + 0.016356926411390305, + -0.01620599254965782, + -0.0361599400639534, + 0.006575594190508127, + -0.02111099846661091, + -0.07717819511890411, + 0.006129744928330183, + -0.01340258214622736, + -0.010232347995042801, + 0.006779859308153391, + 0.026296256110072136, + 0.008754762820899487, + -0.030896179378032684, + -0.023155637085437775, + -0.023028720170259476, + 0.05264944210648537, + -0.013625162653625011, + 0.0006003766320645809, + 0.012498350813984871, + 0.031570401042699814, + 0.007968267425894737, + -0.02182100899517536, + 0.023936914280056953, + 0.0588853694498539, + -0.015735799446702003, + -0.008220117539167404, + 0.006855756044387817, + -0.012824079021811485, + 0.008497958071529865, + -0.037993621081113815, + -0.00637742830440402, + -0.07203560322523117, + 0.011411571875214577, + -0.02141125500202179, + 0.02889692597091198, + -0.010059943422675133, + -0.004896114580333233, + 0.05518217012286186, + -0.08793766051530838, + 0.02986847423017025, + 0.04068858176469803, + 0.03209631145000458, + -0.01554677914828062, + -0.02734490856528282, + 0.047004617750644684, + 0.004494254477322102, + 0.0299563929438591, + -0.05036099627614021, + -0.0628281831741333, + 0.029964936897158623, + -0.024666182696819305, + 0.01944494992494583, + 0.003990486729890108, + 0.014805545099079609, + 0.01080911885946989, + 0.01614226959645748, + 0.03660913184285164, + -0.026280054822564125, + 0.024066274985671043, + -0.006515554618090391, + 0.03982298821210861, + 0.005301520228385925, + -0.0017595115350559354, + 0.00564498919993639, + -0.014645419083535671, + 0.028197498992085457, + -0.01548317726701498, + -0.003214319469407201, + -0.021183108910918236, + -0.046176910400390625, + 0.02808389626443386, + 0.03199217841029167, + -0.03183088079094887, + 0.023496761918067932, + 0.0010242084972560406, + 0.0326632559299469, + 0.015503888949751854, + 0.010446940548717976, + 0.06265410780906677, + 0.010793841443955898, + 0.0011863267282024026, + 0.02357041835784912, + -0.02046990767121315, + 0.014007685706019402, + -0.002637260127812624, + 0.010041462257504463, + -0.020042654126882553, + 0.03669516369700432, + -0.05450338125228882, + 0.020045896992087364, + 0.030780792236328125, + -0.004185136873275042, + 0.05430071800947189, + 0.023970559239387512, + 0.04500490054488182, + 0.01337287575006485, + -0.08297459036111832, + 0.0347500778734684, + 0.00867750309407711, + 0.05729999765753746, + 0.010745481587946415, + -0.02375834994018078, + -0.007404244039207697, + 0.02118883840739727, + -0.03663545101881027, + 0.0685180127620697, + 0.021594619378447533, + 0.021059835329651833, + 0.02333180233836174, + -0.009762839414179325, + -0.011739907786250114, + 0.027089770883321762, + 0.04819276183843613, + 0.008915809914469719, + 0.043109118938446045, + 0.0404273122549057, + -0.0003215798642486334, + 0.04483119025826454, + 0.06704122573137283, + 0.01649630442261696, + -0.03931112959980965, + -0.028761202469468117, + 0.01791875809431076, + 0.01847563497722149, + -0.07313907891511917, + -0.04645714908838272, + 0.057341791689395905, + 0.01723829098045826, + -0.005383959040045738, + -0.028916973620653152, + 0.03941534459590912, + -0.0020479559898376465, + 0.020428748801350594, + -0.028897086158394814, + 0.04369916394352913, + 0.011265598237514496, + 0.013442267663776875, + -0.012637432664632797, + 0.05391222611069679, + 0.006170117761939764, + -0.01800086721777916, + 0.013795851729810238, + 0.012452700175344944, + -0.018078677356243134, + -0.008132888935506344, + -0.013274800963699818, + 0.0553056076169014, + 0.006998451426625252, + -0.010032180696725845, + -0.03256867453455925, + 0.02320241928100586, + -0.04717317968606949, + 0.010405057109892368, + 0.009764343500137329, + -0.010860719718039036, + 0.030753759667277336, + 0.03376014903187752, + -0.02844965271651745, + 0.02834388241171837, + 0.012383327819406986, + 0.017523344606161118, + 0.024541301652789116, + -0.002960711484774947, + -0.022936180233955383, + -0.004842390306293964, + 0.022356517612934113, + -0.02329443208873272, + 0.006035878788679838 + ], + "start_index": 26618, + "end_index": 26691, + "token_count": 8, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "516be6c1-981a-566f-890c-c118dc87a75c", + "_source": { + "text": "\n\nEjemplo:\n\n\n\n// comentario", + "embedding": [ + -0.010482066310942173, + 0.011765055358409882, + -0.013712831772863865, + -0.0673651322722435, + 0.0160343237221241, + 0.001813369570299983, + -0.08088933676481247, + -0.019504886120557785, + -0.037711143493652344, + -0.00414321618154645, + 0.016696780920028687, + -0.05209612846374512, + 0.023275207728147507, + -0.01150460448116064, + -0.04467473179101944, + 0.06601206958293915, + 0.009949835017323494, + 0.07486542314291, + 0.051522452384233475, + -0.06839457899332047, + -0.051620956510305405, + -0.004556599538773298, + -0.03960150480270386, + 0.043722253292798996, + 0.012966802343726158, + 0.005184615030884743, + -0.021474990993738174, + 0.06616059690713882, + -0.016276948153972626, + -0.020489949733018875, + -0.012053179554641247, + -0.02592996135354042, + -0.06284976005554199, + -0.03643982112407684, + 0.014424201101064682, + -0.014476628974080086, + -0.018282683566212654, + -0.03788985684514046, + -0.006319680716842413, + 0.016485657542943954, + 0.0032964502461254597, + 0.0014302174095064402, + 0.015573079697787762, + 0.03560302406549454, + -0.010398811660706997, + -0.04671929404139519, + 0.04192807525396347, + 0.01736503839492798, + 0.05891949310898781, + 0.0056725358590483665, + -0.02159048058092594, + -0.014711199328303337, + -0.018263250589370728, + -0.002139112912118435, + -0.06897775828838348, + -0.03127472102642059, + -0.0009057737188413739, + -0.01383737288415432, + 0.014087604358792305, + 0.029340006411075592, + -0.052612703293561935, + 0.005524944514036179, + 0.02175348810851574, + -0.0039587668143212795, + -0.0095931151881814, + 0.005429756361991167, + 0.019604183733463287, + -0.03055548667907715, + -0.07527004927396774, + -0.049194589257240295, + -0.020971287041902542, + -0.0217368733137846, + -0.0038183112628757954, + -0.008622308261692524, + -0.012692113406956196, + -0.002730828942731023, + 0.021213307976722717, + -0.03855865076184273, + 0.02672439254820347, + -0.026453545317053795, + -0.011005696840584278, + 0.03493885323405266, + 0.043398622423410416, + -0.01731267385184765, + -0.013280114158987999, + 0.06875677406787872, + 0.006518441718071699, + 0.0014066871954128146, + -0.00929484236985445, + -0.00023728716769255698, + -0.031894195824861526, + 0.06307624280452728, + -0.031560249626636505, + -0.04226807877421379, + 0.0361444428563118, + -0.007992859929800034, + 0.01238955557346344, + 0.049742624163627625, + 0.0026536360383033752, + -0.011094785295426846, + -0.020711306482553482, + -0.024554884061217308, + -0.009984856471419334, + -0.009739215485751629, + -0.04948398843407631, + 0.0013389138039201498, + -0.06398341059684753, + 0.030755197629332542, + 0.01160196028649807, + -0.02776472084224224, + 0.03596433997154236, + 0.0031154369935393333, + 0.021387290209531784, + 0.04443908855319023, + -0.01873059943318367, + 0.012882525101304054, + 0.02625441551208496, + -0.015638744458556175, + -0.01420393493026495, + 0.007296223659068346, + 0.021639658138155937, + 0.02206546626985073, + -0.02615392953157425, + -0.02037462592124939, + -0.01882684975862503, + 0.016116270795464516, + -0.039017580449581146, + -0.006150977686047554, + 0.012863615527749062, + -0.034186385571956635, + 0.01312074065208435, + 0.008840125054121017, + -0.021224824711680412, + -0.033565666526556015, + 0.033452603965997696, + 0.008308329619467258, + 0.0005111650680191815, + -0.010190796107053757, + 0.04929254576563835, + -0.032250721007585526, + 0.005814690142869949, + -0.028433913365006447, + -0.007287345826625824, + -0.017097527161240578, + 0.027353782206773758, + 0.017013583332300186, + 0.012013886123895645, + 0.012829169631004333, + -0.0074399309232831, + 0.03686659038066864, + 0.020494256168603897, + -0.02893809974193573, + 0.026763183996081352, + -0.006164672318845987, + -0.03028172440826893, + -0.004560367204248905, + -0.01104473415762186, + 0.007376477587968111, + 0.01390253659337759, + 0.006353337317705154, + 0.020498165860772133, + -0.0009525667410343885, + -0.010591782629489899, + -0.026329493150115013, + -0.031127963215112686, + 0.05053136497735977, + -0.009319578297436237, + -0.030538899824023247, + -0.001829202170483768, + 0.020510725677013397, + -0.012615679763257504, + 0.0239284448325634, + 0.004597988445311785, + -0.019743042066693306, + -0.00812208466231823, + -0.030115770176053047, + -0.02626863308250904, + 0.014725616201758385, + -0.020146235823631287, + -0.036804188042879105, + 0.03797963634133339, + 0.005563885904848576, + -0.009960262104868889, + 0.019914567470550537, + 0.013122632168233395, + 0.05237971618771553, + 0.007084265351295471, + -0.009896913543343544, + -0.00976678915321827, + 0.012789457105100155, + 0.006607222370803356, + -0.02472168393433094, + -0.053184401243925095, + 0.009511496871709824, + -0.0240627508610487, + -0.06288359314203262, + 0.05065923184156418, + -0.0007766055641695857, + -0.0024816589429974556, + -0.006301981396973133, + 0.00150861288420856, + 0.030417397618293762, + 0.011998034082353115, + 0.02936895377933979, + -0.03939037024974823, + -0.010768895968794823, + 0.024846047163009644, + 0.01033432874828577, + -0.023701149970293045, + -0.004870920442044735, + 0.026751134544610977, + -0.009789514355361462, + -0.04263778030872345, + -0.03147413209080696, + 3.777851816266775e-05, + -0.012971300631761551, + -0.0007885931408964097, + 0.04146629944443703, + -0.0004035471356473863, + 0.02655007503926754, + 0.04515145346522331, + 0.003847832791507244, + -0.03228574991226196, + 0.0013532949378713965, + 0.03653676062822342, + -0.029497671872377396, + 0.01376292947679758, + -0.03421417251229286, + -0.018879937008023262, + -0.006458789110183716, + 0.02028144709765911, + 0.005015450995415449, + 0.06629784405231476, + 0.019465316087007523, + 0.051332756876945496, + -0.03411038592457771, + 0.0122258635237813, + -0.027405578643083572, + 0.08985979855060577, + -0.045311346650123596, + 0.004918355029076338, + 0.014937532134354115, + 0.025290966033935547, + 0.019716214388608932, + -0.04994761571288109, + 0.009221869520843029, + -0.004785553552210331, + 0.04278820753097534, + -0.016423596069216728, + 0.03550716117024422, + 0.005388625431805849, + 0.0690993145108223, + -0.018759075552225113, + 0.008813297376036644, + 0.01872330531477928, + -0.042375415563583374, + -0.0023252058308571577, + 0.022967176511883736, + 0.021782267838716507, + -0.018487494438886642, + -0.013470820151269436, + -0.03454184904694557, + -0.004890470299869776, + 0.008215590380132198, + 0.02643921971321106, + 0.01579274609684944, + -0.014446871355175972, + 0.017639867961406708, + -0.044929005205631256, + -0.03589269891381264, + 0.018202297389507294, + 0.01860804483294487, + 0.006156581453979015, + -0.008258678950369358, + 0.007141721434891224, + 0.03270639479160309, + 0.01611757092177868, + -0.062454383820295334, + -0.007359826005995274, + -0.00211144401691854, + 0.05928277224302292, + -0.019951635971665382, + 0.015837766230106354, + 0.003373191226273775, + 0.03492603078484535, + 0.035106558352708817, + 0.03932425379753113, + 0.039111826568841934, + -0.016797658056020737, + -0.02509600855410099, + 0.003932539839297533, + 0.024840841069817543, + -0.05478721112012863, + 0.07795035094022751, + -0.011558592319488525, + -0.01582496613264084, + 0.008735823445022106, + 0.08308382332324982, + 0.03914245218038559, + 0.0017814493039622903, + -0.0007110947044566274, + -0.028116615489125252, + -0.014223054051399231, + -0.0014687030343338847, + -0.012402600608766079, + 0.024636894464492798, + 0.05994999036192894, + -0.027421455830335617, + -0.001009070547297597, + 0.0023536880034953356, + 0.07973138988018036, + 0.006234500091522932, + 0.002101300051435828, + -0.02110970951616764, + 0.010413095355033875, + 0.014420966617763042, + -0.03793858364224434, + 0.029073497280478477, + 0.01037154532968998, + 0.03025888092815876, + 0.021081270650029182, + 0.0030251035932451487, + -0.00706153130158782, + 0.010444056242704391, + -0.006877709645777941, + 0.012648269534111023, + -0.0163040179759264, + -0.030700810253620148, + 0.001255269511602819, + -0.038314372301101685, + 0.016107168048620224, + 0.016107458621263504, + 0.061396874487400055, + -0.007379706017673016, + 0.008042242377996445, + -0.011906912550330162, + 0.012306448072195053, + 0.034925322979688644, + -0.0024406916927546263, + 0.02788431942462921, + 0.0010780596639961004, + 0.03442373871803284, + -0.0285614263266325, + -0.04035711660981178, + -0.06050834432244301, + -0.028074847534298897, + 0.008519873023033142, + 0.07110080868005753, + -0.007278670556843281, + 0.022754160687327385, + -0.047613102942705154, + 0.03610454872250557, + -0.013097550719976425, + -0.010648364201188087, + -0.02669421024620533, + -0.03842741996049881, + 0.008055655285716057, + 0.025101525709033012, + -0.05067690461874008, + -0.04656246677041054, + -0.0026154860388487577, + -0.05445927381515503, + 0.04118111729621887, + 0.00846889428794384, + -0.0052244155667722225, + -0.0295561570674181, + -0.02716866508126259, + -0.05441257357597351, + 0.03098192624747753, + -0.023749003186821938, + -0.06633856892585754, + 0.033236466348171234, + -0.03387713059782982, + 0.037378836423158646, + 0.06431152671575546, + 0.08204466104507446, + 0.05886435508728027, + 0.009811364114284515, + -0.00668525043874979, + 0.02128831297159195, + 0.029443873092532158, + 0.034404803067445755, + -0.02746124006807804, + 0.0031980257481336594, + -0.06281448155641556, + -0.047022152692079544, + 0.048181116580963135, + -0.028294216841459274, + -0.002343170577660203, + 0.011775276623666286, + 0.04922906681895256, + -0.044645726680755615, + 0.03403770551085472, + 0.009501496329903603, + 0.057357169687747955, + 0.004457397852092981, + -0.10670498758554459, + 0.010642247274518013, + -0.04114285483956337, + -0.05576232075691223, + 0.028542108833789825, + 0.02955905720591545, + -0.05087648332118988, + 0.019429761916399002, + 0.003604982979595661, + -0.0083501311019063, + -0.022356104105710983, + -0.03596063703298569, + 0.04095974564552307, + -0.012561522424221039, + 0.03383079171180725, + 0.01705383136868477, + 0.00019141043594572693, + 0.014758321456611156, + -0.015101801604032516, + -0.006845534313470125, + 0.06916720420122147, + -0.08825136721134186, + 0.04680974781513214, + -0.0031486842781305313, + -0.008856728672981262, + 0.003631585044786334, + -0.03923998028039932, + -0.045787133276462555, + -0.025350894778966904, + -0.030285026878118515, + 0.008993457071483135, + -0.06391114741563797, + -0.0022400920279324055, + 0.11461944133043289, + -0.007136123720556498, + -0.006976163946092129, + 0.06128551438450813, + 0.010623075999319553, + -0.0424177460372448, + -0.022359682247042656, + 0.034063030034303665, + 0.054012127220630646, + -0.029829850420355797, + -0.004325882066041231, + -0.022388573735952377, + 0.06646944582462311, + 0.0028492200654000044, + -0.0012071735691279173, + -0.05319885537028313, + 0.0036321638617664576, + -0.0113907465711236, + 0.026278803125023842, + 0.024148741737008095, + -0.0441473051905632, + 0.008850102312862873, + -0.022191893309354782, + 0.03087332285940647, + 0.04871708154678345, + -0.033965252339839935, + -0.045406896620988846, + -0.008350713178515434, + -0.043963950127363205, + 0.007243308238685131, + -0.0025980558712035418, + 0.01013111136853695, + 0.03700127825140953, + 0.01587671786546707, + -0.026542000472545624, + -0.032814811915159225, + 0.03630421310663223, + -0.01060442067682743, + -0.022223545238375664, + 0.015099411830306053, + 0.014474835246801376, + 0.01931862346827984, + 0.010132755152881145, + 0.020842233672738075, + 0.007601079065352678, + 0.030072301626205444, + 0.002538283122703433, + -0.04981391504406929, + 0.01633564755320549, + 0.0010541891679167747, + 0.007784430868923664, + -0.024149106815457344, + -0.01941731944680214, + 0.015588036738336086, + -0.058191247284412384, + 0.029149796813726425, + -0.048518840223550797, + 0.032497651875019073, + 0.005990048870444298, + -0.0381992943584919, + -0.009004293940961361, + 0.004034153185784817, + 0.03337499871850014, + 0.004676460288465023, + -0.019434932619333267, + 0.022029975429177284, + -0.05080325901508331, + 0.04895490035414696, + -0.06283842772245407, + -0.06950221210718155, + 0.029900502413511276, + -0.0010260227136313915, + 0.03376121446490288, + 0.006373708602041006, + -0.0087163420394063, + -0.06622030586004257, + -0.0180191732943058, + 0.027402857318520546, + 0.0010056220926344395, + 0.00782112404704094, + 0.03813556581735611, + 0.015274366363883018, + -0.030001655220985413, + 0.016273077577352524, + 0.03088565170764923, + -0.03522692993283272, + 0.0058831991627812386, + -0.008782997727394104, + -0.003419815329834819, + -0.0005824147956445813, + 0.01257502194494009, + 0.024403588846325874, + 0.030910804867744446, + 0.0020747988019138575, + 0.01024584285914898, + -0.04332540184259415, + 0.00014124064182396978, + 0.007893631234765053, + -0.01348616648465395, + 0.021273285150527954, + 0.020627519115805626, + 0.005394460167735815, + -0.03902052715420723, + 0.00489966431632638, + -0.028694581240415573, + 0.010318620130419731, + 0.019271768629550934, + -0.028414713218808174, + -0.026351287961006165, + 0.0029812920838594437, + 0.04759174957871437, + -0.020872682332992554, + -0.029049286618828773, + 0.010430633090436459, + 0.041861820966005325, + 0.041271764785051346, + -0.03757142648100853, + 0.012270024046301842, + 0.06849060952663422, + -0.008395967073738575, + 0.016455624252557755, + 0.0016516633331775665, + 0.021435296162962914, + 0.04276563227176666, + 0.008563804440200329, + 0.01883130893111229, + 0.011860699392855167, + 0.02150254137814045, + 0.00511110620573163, + 0.02085639350116253, + -0.017963988706469536, + 0.048627737909555435, + 0.030387841165065765, + -0.03602210432291031, + 0.028266770765185356, + -0.015815110877156258, + -0.013754195533692837, + -0.007147354073822498, + -0.001152500044554472, + 0.021105732768774033, + -0.003910434432327747, + 0.04895538464188576, + -0.011987407691776752, + 0.002085103653371334, + 0.029776396229863167, + -0.041473809629678726, + -0.061614859849214554, + -0.04685009643435478, + 0.0010440475307404995, + 0.026773052290081978, + -0.03218976780772209, + 0.01695740595459938, + -0.01896551623940468, + -0.01569962687790394, + 0.014539794065058231, + -0.004064771346747875, + 0.017141073942184448, + -0.026640992611646652, + 0.005404930096119642, + 0.006960333324968815, + 0.018815521150827408, + -0.0418279655277729, + -0.02974851243197918, + -0.013055469840765, + -0.010237462818622589, + 0.07211341708898544, + 0.0023861525114625692, + -0.036030080169439316, + 0.002183179836720228, + 0.021295398473739624, + 0.01903528906404972, + -0.005304134916514158, + 0.06720919907093048, + 0.04065103456377983, + 0.023842433467507362, + -0.03960840031504631, + -0.009820758365094662, + 0.008154788054525852, + 0.0011925389990210533, + -0.054870035499334335, + 0.005588962696492672, + -0.010494356974959373, + 0.03367597237229347, + -0.0058734058402478695, + 0.025715654715895653, + 0.0445985272526741, + -0.03259986639022827, + -0.034223929047584534, + -0.01961604505777359, + 0.013289432041347027, + -0.06616678833961487, + 0.014661253429949284, + 0.018892347812652588, + -0.056651078164577484, + 0.11981866508722305, + -0.032887205481529236, + 0.03361932933330536, + 0.006486247759312391, + -0.010730833746492863, + -0.017235996201634407, + 0.006724300794303417, + -0.03547906130552292, + 0.006114030722528696, + -0.011170697398483753, + 0.0012740290258079767, + 0.030379643663764, + -0.04755127429962158, + 0.016061868518590927, + 0.003989409189671278, + 0.01583201251924038, + -0.02833680249750614, + -0.01385469175875187, + 0.012678329832851887, + -0.01668059453368187, + 0.05597910284996033, + -0.010228692553937435, + 0.011199559085071087, + -0.01255744881927967, + 0.04383326694369316, + 0.03962666168808937, + -0.031630005687475204, + 0.047558922320604324, + -0.003770747222006321, + -0.0025436326395720243, + 0.04210008680820465, + -0.06137128174304962, + 0.006060225889086723, + -0.008547867648303509, + 0.048362117260694504, + -0.0011598230339586735, + -0.06977041810750961, + -0.014316234737634659, + -0.03892799839377403, + 0.00014596687105949968, + -0.01984749175608158, + -0.03656085208058357, + 0.027601344510912895, + 0.03053724206984043, + 0.023553501814603806, + 0.039671383798122406, + -0.023695552721619606, + -0.04076773300766945, + 0.005878688767552376, + 0.009959463961422443, + 0.10102297365665436, + -0.0053417556919157505, + -0.05251812934875488, + -0.00014060539251659065, + -0.03543080389499664, + -0.02679537609219551, + -0.047306325286626816, + -0.01735084317624569, + -0.05347612872719765, + -0.003862688783556223, + -0.07476632297039032, + -0.0042474474757909775, + -0.011121101677417755, + -0.08011636883020401, + -0.009291778318583965, + 0.03246978670358658, + 0.020829804241657257, + 0.026070162653923035, + -0.03362283110618591, + 0.06344904005527496, + -0.029678061604499817, + 0.01894417032599449, + 0.0005177012062631547, + -0.06987369060516357, + -0.03923851624131203, + -0.0011870760936290026, + 7.889361586421728e-05, + -0.050629016011953354, + -0.00915442779660225, + -0.019139183685183525, + 0.00039765526889823377, + 0.03110402822494507, + 0.0055528972297906876, + -0.061962008476257324, + 0.02314281091094017, + -0.06271728873252869, + -0.0133904367685318, + 0.006118224002420902, + 0.03955234959721565, + -0.037921223789453506, + -0.03190681338310242, + -0.005163006018847227, + -0.005867839325219393, + 0.004227352328598499, + 0.00969680119305849, + -0.005643592216074467, + 0.002988132182508707, + 0.00259115407243371, + -0.04353341832756996, + 0.029523152858018875, + 0.02340598776936531, + -0.04350574314594269, + -0.03246340900659561, + 0.004264850169420242, + 0.04529730975627899, + 0.029185323044657707, + -0.03552226722240448, + 0.019695984199643135, + -0.01890219934284687, + 0.05756135284900665, + 0.04096559062600136, + -0.022817743942141533, + 0.017682412639260292, + 0.06993936747312546, + 0.019739797338843346, + 0.02395450323820114, + -0.0018557420698925853, + -0.027229629456996918, + -0.023832984268665314, + 0.02044212818145752, + -0.07688376307487488, + -0.033655714243650436, + 0.03472653403878212, + -0.015271863900125027, + -0.0001388190285069868, + -0.016599861904978752, + 0.005840656813234091, + -0.0002337311307201162, + -0.006387730129063129, + -0.0044717988930642605, + -0.013321498408913612, + -0.04610103741288185, + -0.04236230254173279, + -0.038608208298683167, + 0.03973571956157684, + -0.008837667293846607, + 0.050625093281269073, + 0.017343783751130104, + 0.025269759818911552, + 0.015451950021088123, + 0.015878669917583466, + 0.03346790373325348, + -0.021005138754844666, + -0.016012683510780334, + -0.04495396837592125, + 0.011441002599895, + -0.011405630968511105, + 0.04552924633026123, + 0.002454965841025114, + 0.013317999430000782, + 0.08738082647323608, + -0.020374363288283348, + 0.00926148984581232, + 0.014904369600117207, + 0.008713029325008392, + 0.02826152928173542, + -0.004647362977266312, + 0.015660159289836884, + -0.05614611506462097, + 0.030551353469491005, + -0.012674843892455101, + -0.036604538559913635, + 0.0479629747569561, + -0.03748317062854767, + -0.01613028720021248, + 0.07599543780088425, + 0.020796306431293488, + -0.0023589746560901403, + 0.040158919990062714, + 0.05696762353181839, + -0.00671611400321126, + -0.02222462184727192, + 0.023684436455368996, + -0.007994829677045345, + 0.014378522522747517, + -0.002222840441390872, + 0.009704966098070145, + -0.011832513846457005, + 0.016727009788155556, + -0.02569509670138359, + 0.006460087839514017, + 0.05540778860449791, + 0.013950392603874207, + 0.01753239892423153, + -0.013914352282881737, + -0.01757122576236725, + -0.008443430066108704, + 0.007219208404421806, + 0.02269689366221428, + 0.0012512867106124759, + -0.005615275353193283, + 0.027742208912968636, + 0.022973310202360153, + -0.038721825927495956, + 0.01833309419453144, + -0.0034740071278065443, + -0.025981992483139038, + -0.008876532316207886, + 0.012372691184282303, + 0.006372996140271425, + 0.06620421260595322, + 0.018976859748363495, + 0.027496574446558952, + 0.015235695987939835, + 0.001968052238225937, + -0.05558793991804123, + 0.0015985722420737147, + 0.014975255355238914, + -0.03670727089047432, + 0.0050620995461940765, + 0.038031939417123795, + 0.035880278795957565, + 0.032055698335170746, + -0.017747169360518456, + 0.02052396535873413, + 0.004672388080507517, + 0.003813548479229212, + 0.04384381324052811, + -0.036195773631334305, + 0.027458449825644493, + 0.0212511345744133, + 0.00482514500617981, + 0.016692886129021645, + 0.009421571157872677, + 0.01641741767525673, + -0.0011966547463089228, + 0.02520657889544964, + 0.013827594928443432, + 0.02177273854613304, + -0.012928683310747147, + -0.039463501423597336, + -0.007504614535719156, + 0.05065852403640747, + -0.0009581009508110583, + -0.008656584657728672, + -0.06607385724782944, + -0.01870924048125744, + -0.04912257194519043, + -0.047897499054670334, + -0.035963643342256546, + -0.05062297731637955, + -0.017131894826889038, + 0.017897240817546844, + -0.0415157787501812, + -0.015688257291913033, + 0.009857241064310074, + -0.04554082825779915, + 0.005664284341037273, + 0.01878245174884796, + 0.007128274533897638, + 0.008957283571362495, + 0.018479859456419945, + 0.01636490598320961, + -0.004447714425623417, + -0.005946663208305836, + 0.03770026937127113, + 0.06785447895526886, + -0.027779046446084976, + 0.035714466124773026, + 0.003212345065549016, + -0.00035231601214036345, + 0.005621506832540035, + -0.025107072666287422, + 0.002095329575240612, + -0.018884016200900078, + 0.020362092182040215, + -0.006412462797015905, + 0.003771841060370207, + -0.03684336319565773, + -0.018843479454517365, + 0.009881961159408092, + -0.1373114436864853, + 0.019378328695893288, + 0.004174874164164066, + 0.01669609360396862, + 0.004746155813336372, + -0.03187521547079086, + 0.04426855221390724, + 0.009379878640174866, + 0.027511944994330406, + -0.05828508734703064, + -0.02418741025030613, + -0.01400780864059925, + -0.005527484230697155, + 0.010099854320287704, + -0.021051853895187378, + -0.002161956625059247, + 0.0008544602314941585, + 0.023969287052750587, + 0.02986551821231842, + 0.009187492541968822, + -0.008750253356993198, + 0.009858340956270695, + -0.06331030279397964, + -0.04286428913474083, + 0.010311423800885677, + 0.004583163186907768, + -0.019662905484437943, + 0.016718709841370583, + -0.038140542805194855, + -0.03495979681611061, + -0.000559162930585444, + -0.04553431272506714, + 0.0014755598967894912, + 0.03894726186990738, + -0.01982077583670616, + 0.04901466518640518, + 0.039274707436561584, + 0.029555227607488632, + 0.015130920335650444, + 0.0686747282743454, + 0.03449647128582001, + 0.019397130236029625, + 0.00361187057569623, + 0.00882729422301054, + -0.003435832913964987, + 0.009149597026407719, + 0.006801515351980925, + -0.023532407358288765, + 0.027087658643722534, + 0.011474567465484142, + -0.006246072240173817, + -0.004486835096031427, + -0.005739542189985514, + 0.004839456174522638, + 0.004528249613940716, + -0.02590617723762989, + 0.01569013111293316, + 0.01265530101954937, + -0.039148639887571335, + 0.053788796067237854, + 0.03889000788331032, + -0.03381409868597984, + -0.002804843243211508, + 0.031650956720113754, + 0.022663485258817673, + 0.020936015993356705, + -0.013800078071653843, + -0.0016682439018040895, + 0.022361693903803825, + 0.05043701082468033, + -0.010966123081743717, + -0.016158808022737503, + -0.033774640411138535, + 0.007398529909551144, + 0.06326687335968018, + 0.005761133041232824, + 0.07578301429748535, + -0.012094207108020782, + 0.026465997099876404, + -0.008017618209123611, + 0.04225049540400505, + 0.02087177149951458, + -0.020855506882071495, + -0.020385023206472397, + 0.006946224253624678, + -0.03255649283528328, + -0.048607826232910156, + 0.014340945519506931, + 0.059405189007520676, + 0.013491743244230747, + -0.00041147638694383204, + -0.04013828560709953, + -0.008269600570201874, + 0.008603941649198532, + -0.003908378072082996, + -0.028656594455242157, + 0.06561904400587082, + 0.017101868987083435, + 0.0035078064538538456, + -0.013911711052060127, + 0.014416549354791641, + 0.0580524280667305, + -0.03519163280725479, + 0.02200893498957157, + 0.03827354311943054, + -0.03035338595509529, + 0.009437826462090015, + -0.02412896789610386, + 0.01982366293668747, + 0.05067329481244087, + 0.007839702069759369, + -0.01819705218076706, + 0.01865658536553383, + -0.02319052815437317, + -0.015535153448581696, + 0.026215890422463417, + 0.026258187368512154, + 0.03398558124899864, + 0.019552364945411682, + -0.04196793958544731, + -0.0254686139523983, + -0.03082110546529293, + 0.021619398146867752, + -0.006969909183681011, + 0.005982023198157549, + -0.045688796788454056, + 0.02447684295475483, + 0.022003207355737686, + 0.017847862094640732, + -0.005808968096971512 + ], + "start_index": 26691, + "end_index": 26728, + "token_count": 5, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "0b337a43-c276-50c9-8dd6-eec98909b278", + "_source": { + "text": "\n\nEl texto se ignora hasta el final de la línea.\n\n---\n\n## Comentario de bloque\n\n\n\nBLOCK_COMMENT ::= \"/*\" .*? \"*/\"", + "embedding": [ + -0.0029420414939522743, + -0.04393778741359711, + -0.005065278150141239, + -0.05848135054111481, + -0.021785233169794083, + 0.018891168758273125, + -0.07183186709880829, + -0.03766871988773346, + -0.051211871206760406, + 0.000316705962177366, + 0.05019572004675865, + -0.04306304082274437, + -0.0012883903691545129, + -0.0044895680621266365, + -0.02982570417225361, + 0.05427355319261551, + 0.014528424479067326, + 0.05077792704105377, + 0.06335417926311493, + -0.004543698392808437, + -0.06640330702066422, + 0.013348754495382309, + -0.03015693835914135, + 0.056364480406045914, + 0.05722978711128235, + 0.0023929751478135586, + -0.024054815992712975, + -0.003603988094255328, + -0.0031126905232667923, + -0.006240358110517263, + -0.01739460974931717, + -0.029568761587142944, + -0.08000979572534561, + -0.01817517727613449, + 0.023004502058029175, + -0.007667814381420612, + 0.032547883689403534, + -0.0017409970751032233, + 0.01906222477555275, + -0.01522192545235157, + -0.011110048741102219, + 0.02068091556429863, + 0.011853180825710297, + 0.020329486578702927, + 0.002690102905035019, + -0.0151494350284338, + -0.0015622536884620786, + 0.030776403844356537, + 0.07156440615653992, + -0.006682554725557566, + -0.0231007132679224, + 0.008215592242777348, + -0.013337341137230396, + 0.025635069236159325, + -0.00969304982572794, + -0.015514953061938286, + -0.02740234136581421, + -0.043442536145448685, + -0.026227785274386406, + 0.03418280556797981, + 0.012513162568211555, + 0.002520277164876461, + 0.058191049844026566, + 0.026880839839577675, + -0.010828075930476189, + 0.024754220619797707, + 0.012213130481541157, + -0.026881413534283638, + -0.017016613855957985, + -0.027654221281409264, + -0.006596239749342203, + 0.03247687965631485, + 0.008082807064056396, + 0.005930119659751654, + -0.014967636205255985, + -0.0026681984309107065, + -0.021329117938876152, + -0.011179720051586628, + -0.012126083485782146, + -0.015217230655252934, + -0.027293682098388672, + 0.03901651129126549, + 0.025900838896632195, + 0.008515927940607071, + -0.030201323330402374, + 0.06023295968770981, + -0.012180999852716923, + -0.02760402113199234, + -0.016749251633882523, + 0.043642912060022354, + -0.022573549300432205, + 0.027897095307707787, + 0.002990814158692956, + -0.017264794558286667, + 0.04186650738120079, + 0.005154801066964865, + 0.004639217164367437, + 0.052998948842287064, + -0.001363687333650887, + -0.0260709747672081, + -0.02009856142103672, + -0.01210063323378563, + 0.021780503913760185, + -0.05155874416232109, + 0.02430398389697075, + 0.014872717671096325, + -0.014568641781806946, + 0.008685578592121601, + -0.019089234992861748, + -0.043523598462343216, + 0.004597334191203117, + 0.0157889723777771, + 0.0032797297462821007, + 0.012450000271201134, + -0.024676276370882988, + 0.0121215945109725, + 0.007438626606017351, + -0.03950933739542961, + 0.02105627954006195, + 0.0291842520236969, + 0.034822192043066025, + 0.005822313949465752, + 0.00260503520257771, + -0.03397148847579956, + 0.051113978028297424, + 0.013932742178440094, + -0.03261369466781616, + -0.02075650542974472, + -0.0008742931531742215, + -0.020312581211328506, + 0.011351192370057106, + 0.0025360037107020617, + -0.014315047301352024, + -0.027606049552559853, + 0.03791303560137749, + -0.007661692798137665, + -0.022450052201747894, + 0.0168911200016737, + 0.02426273562014103, + -0.020074211061000824, + -0.02554386854171753, + 0.004249917343258858, + -0.015979615971446037, + 0.0016059853369370103, + 0.00993259809911251, + 0.015454321168363094, + 0.01732189767062664, + 0.013189198449254036, + 0.0054896529763937, + -0.002345605520531535, + 0.00100797472987324, + -0.029266733676195145, + 0.040417738258838654, + -0.004397041164338589, + 0.00848163291811943, + -0.01950730010867119, + 0.010944811627268791, + 0.0005556314717978239, + -0.0025169376749545336, + 0.02257712185382843, + 0.006587283220142126, + 0.00542376097291708, + -0.02486746944487095, + -0.016660744324326515, + -0.024748902767896652, + 0.01902460679411888, + 0.0253016147762537, + -0.014959155581891537, + 0.003805955871939659, + 0.01305775810033083, + -0.004960141144692898, + 0.031495362520217896, + 0.010024474933743477, + 0.017838256433606148, + 0.013893921859562397, + -0.013677233830094337, + -0.05080028623342514, + 0.036730583757162094, + -0.022573212161660194, + 0.00046664540423080325, + 0.02463715150952339, + -0.011098256334662437, + -0.02085260860621929, + 0.015925021842122078, + 0.03014053963124752, + 0.01784483902156353, + 0.012314810417592525, + -0.018998783081769943, + 0.0032577046658843756, + 0.004961949307471514, + 0.04739759489893913, + -0.0069029428996145725, + -0.0822443887591362, + -0.005688180681318045, + -0.023027615621685982, + -0.02279777266085148, + 0.025861427187919617, + -0.015408842824399471, + 0.003719736821949482, + -0.001844114507548511, + 0.05961976200342178, + -0.03865931183099747, + 0.02524227648973465, + 0.023746922612190247, + -0.007510981056839228, + -0.05757904052734375, + 0.028269406408071518, + -0.009742260910570621, + -0.027144886553287506, + -0.004323226865381002, + 0.0025802340824157, + 0.014170891605317593, + -0.055442944169044495, + -0.015201175585389137, + 0.017911193892359734, + -0.053000517189502716, + 0.003110390854999423, + 0.05756012722849846, + 0.024134015664458275, + 0.06274934113025665, + 0.0006191584980115294, + 0.023554734885692596, + -0.032013799995183945, + 0.0011771728750318289, + 0.06168792024254799, + -0.023494582623243332, + 0.01981222815811634, + -0.05437684431672096, + -0.01840910129249096, + 0.013872145675122738, + -0.0046582454815506935, + 0.06948845088481903, + 0.052997928112745285, + 0.023388268426060677, + 0.029763272032141685, + 0.0027079160790890455, + 0.00950508564710617, + -0.04911862313747406, + 0.035723306238651276, + -0.04655854031443596, + -0.006471528671681881, + -0.02643793821334839, + 0.011333518661558628, + 0.021233784034848213, + -0.02212807722389698, + -0.00847362820059061, + 0.018689701333642006, + -0.012487019412219524, + -0.021295344457030296, + 0.02700316347181797, + -0.08811038732528687, + 0.02779930643737316, + 0.023477202281355858, + -0.06251902133226395, + 0.007909532636404037, + -0.0025641678366810083, + -0.004839265253394842, + 0.0017952803755179048, + -0.019118763506412506, + -0.00883937906473875, + 0.013855964876711369, + -0.017102357000112534, + 0.0028587717097252607, + 0.008724012412130833, + 0.026089416816830635, + 0.013276745565235615, + 0.000857213162817061, + 0.015194069594144821, + -0.03751479461789131, + -0.04968836531043053, + 0.03019425831735134, + 0.023177403956651688, + 0.0010057218605652452, + 0.038279470056295395, + 0.029985610395669937, + 0.06926627457141876, + 0.005419091321527958, + -0.0986308827996254, + 0.013427256606519222, + 0.016787512227892876, + 0.06156117096543312, + -0.059247344732284546, + 0.022726761177182198, + -0.022579649463295937, + -0.005455982871353626, + 0.044637132436037064, + 0.030459381639957428, + 0.014140363782644272, + -0.027840472757816315, + -0.00613789539784193, + -0.005968732293695211, + 0.01732735149562359, + -0.10612375289201736, + 0.0629488080739975, + -0.03133607283234596, + -0.07009876519441605, + -0.007422860246151686, + -0.007888078689575195, + 0.046895336359739304, + 0.043337754905223846, + 0.014520011842250824, + -0.045664045959711075, + -0.015237894840538502, + -0.005970079451799393, + -0.04542519152164459, + 0.022949030622839928, + 0.01830224320292473, + 0.024874471127986908, + -0.012637128122150898, + 0.04597313329577446, + 0.05675303563475609, + -0.010503079742193222, + -0.025444643571972847, + -0.031449392437934875, + 0.031591128557920456, + -0.029086381196975708, + 0.012443391606211662, + 0.010018957778811455, + 0.008632639423012733, + 0.004594894126057625, + 0.007462412118911743, + -0.038649510592222214, + 0.01580071821808815, + 0.017964107915759087, + 0.004677800927311182, + 0.005670914426445961, + 0.037547674030065536, + 0.030700314790010452, + 0.04562048614025116, + -0.00868608895689249, + 0.020541928708553314, + -0.05608908459544182, + 0.06265362352132797, + -0.019968951120972633, + -0.0031980997882783413, + -0.00040022123721428216, + -0.05934291332960129, + 0.06619702279567719, + -0.02917993627488613, + 0.016829604282975197, + 0.030753243714571, + 0.03591242432594299, + -0.005440238397568464, + 0.0010469306726008654, + -0.024369671940803528, + -0.035429734736680984, + -0.006216962356120348, + 0.016141671687364578, + 0.040488582104444504, + 0.014253591187298298, + -0.016160201281309128, + -0.0027916200924664736, + -0.04879239946603775, + 0.0310487262904644, + 0.016780072823166847, + -0.024556251242756844, + -0.025706224143505096, + 0.023379387333989143, + -0.045913517475128174, + -0.06059033051133156, + -0.003370059886947274, + -0.032771170139312744, + -0.03170209750533104, + -0.002636317163705826, + -0.02403973415493965, + -0.03988894447684288, + -0.02826017327606678, + 0.03815758600831032, + 0.024974174797534943, + -0.09115082025527954, + -0.07676529884338379, + 0.07660684734582901, + -0.04017156735062599, + 0.03835037350654602, + 0.032841190695762634, + 0.064130499958992, + 0.056829825043678284, + 0.022414185106754303, + 0.020476913079619408, + 0.06936591118574142, + 0.020085928961634636, + 0.030309215188026428, + -0.04045834764838219, + 0.008274413645267487, + -0.06372849643230438, + -0.013670839369297028, + -0.003252838971093297, + 0.014776689000427723, + -0.016907507553696632, + 0.0367349311709404, + 0.039688482880592346, + -0.016663916409015656, + 0.029897283762693405, + 0.008941816166043282, + 0.021858248859643936, + 0.04379817843437195, + -0.04612986370921135, + 0.019282309338450432, + -0.0098416144028306, + 0.0011889117304235697, + -0.04520474746823311, + 0.015345378778874874, + -0.0027228447142988443, + -0.05110689252614975, + 0.00986331608146429, + -0.006597740110009909, + -0.016824446618556976, + -0.035266291350126266, + -0.009416969493031502, + -0.0191437229514122, + 0.020963946357369423, + -0.02501421980559826, + -0.022714978083968163, + -0.02518637292087078, + 0.015908125787973404, + -0.009119763970375061, + 0.06446091830730438, + -0.0734075978398323, + 0.0564764179289341, + 0.007910686545073986, + 0.04912351816892624, + 0.023426732048392296, + 0.02856849506497383, + -0.03796974569559097, + -0.004871741868555546, + -0.014563500881195068, + -0.005848499946296215, + 0.02479121834039688, + -0.01830972358584404, + 0.01334497518837452, + -0.017449531704187393, + -0.02192004770040512, + -0.007541851606220007, + 0.06670411676168442, + 0.006059632636606693, + -0.01113531831651926, + 0.05890689045190811, + 0.05354202166199684, + -0.026000576093792915, + -0.031201286241412163, + -0.010642481967806816, + 0.058744046837091446, + -0.01761414296925068, + -0.02682488225400448, + -0.012277484871447086, + 0.021950824186205864, + -0.003203417407348752, + 0.007175351493060589, + 0.00188496895134449, + -0.039362356066703796, + -0.007717922329902649, + -0.013365430757403374, + 0.018091658130288124, + -0.016791515052318573, + -0.0015814900398254395, + -0.027895309031009674, + -0.006167274434119463, + -0.008451986126601696, + 0.00017321006453130394, + 0.0400620773434639, + 0.04355041682720184, + 0.052990153431892395, + 0.021116938441991806, + -0.02715904265642166, + -0.026474585756659508, + 0.03552473336458206, + 0.0010926128597930074, + -0.02593141980469227, + -0.04591231048107147, + -0.013568485155701637, + 0.02018260955810547, + -0.001613857806660235, + 0.03376913070678711, + 0.06076233461499214, + 0.01553279161453247, + -0.007926590740680695, + -0.039595115929841995, + -0.015814216807484627, + -0.020669568330049515, + 0.017143435776233673, + 1.561963108542841e-05, + -0.018728259950876236, + 0.05317540466785431, + -0.1267392635345459, + 0.009726445190608501, + -0.06395325064659119, + 0.0032706973142921925, + 0.009889655746519566, + -0.033886995166540146, + 0.004822577815502882, + 0.024367764592170715, + 0.011201007291674614, + 0.01152458693832159, + 0.0181022547185421, + 0.04864231497049332, + -0.04425545036792755, + -0.0006472859531641006, + -0.005431461147964001, + -0.02547159045934677, + 0.0483141764998436, + 7.703984738327563e-05, + 0.0076810140162706375, + 0.003204070031642914, + -0.025665421038866043, + -0.03628356382250786, + 0.017625512555241585, + 0.03531352058053017, + -0.039561815559864044, + 0.060192909091711044, + 0.054295413196086884, + -0.03535476699471474, + 0.01252337172627449, + -0.0380261167883873, + 0.029942912980914116, + 0.017167547717690468, + -0.02212706208229065, + 0.0036031100898981094, + -0.025981305167078972, + 0.04251628741621971, + 0.015592548064887524, + 0.007199910935014486, + 0.05544336140155792, + -0.0383530855178833, + 0.01352216862142086, + 0.015225064940750599, + 0.02119169384241104, + 0.044695284217596054, + 0.006905118003487587, + 0.021108882501721382, + 0.03286485746502876, + 0.032247334718704224, + -0.04249832406640053, + 0.04262968897819519, + -0.024390727281570435, + -0.03736111521720886, + 0.04260411113500595, + -0.003802079474553466, + 0.007267529144883156, + 0.011272265575826168, + 0.005150605458766222, + -0.039641667157411575, + -0.050432074815034866, + -0.024453748017549515, + 0.00837774109095335, + 0.042409226298332214, + -0.013458461500704288, + -0.003184014232829213, + 0.03810330480337143, + 0.033116478472948074, + 0.044342637062072754, + 0.05176723748445511, + 0.0033312379382550716, + 0.0601322278380394, + -0.04367906227707863, + -0.026184720918536186, + 0.01754584163427353, + 0.05342822149395943, + -0.005771733820438385, + -0.001974640414118767, + -0.02335931733250618, + 0.042050573974847794, + 0.019741671159863472, + 0.011318488977849483, + 0.039405230432748795, + 0.0214441679418087, + 0.013116770423948765, + -0.019756335765123367, + 0.023314310237765312, + 0.0063200658187270164, + 0.009294458664953709, + 0.007829643785953522, + 0.006067676469683647, + -0.03461048752069473, + 0.031734056770801544, + 0.04136371240019798, + -0.07019735127687454, + -0.04959367960691452, + 0.03554962947964668, + -0.024704741314053535, + -0.017062775790691376, + -0.010901089757680893, + -0.01351404283195734, + 0.020654968917369843, + 0.015428348444402218, + 0.022154003381729126, + -0.059470102190971375, + -0.03797219693660736, + 0.04722696542739868, + -0.018613139167428017, + 0.002936047501862049, + -0.03316189721226692, + 0.012406758032739162, + 0.029281726107001305, + 0.020265527069568634, + 0.04673764854669571, + -0.018487725406885147, + -0.04536540061235428, + -0.0320669487118721, + -0.0006277107750065625, + 0.00313448254019022, + 0.00649366807192564, + 0.045647744089365005, + 0.05143143981695175, + 0.0033414599020034075, + -0.029315238818526268, + -0.027519317343831062, + 0.010354103520512581, + 0.08108505606651306, + -0.013999661430716515, + 0.00040072668343782425, + -0.020696507766842842, + 0.005496426019817591, + 0.02397848665714264, + -0.0017545329174026847, + 0.008254238404333591, + -0.040866851806640625, + -0.023858221247792244, + -0.009833716787397861, + 0.011383874341845512, + -0.05858471617102623, + -0.031116921454668045, + 0.02374778687953949, + -0.04787459969520569, + 0.08624034374952316, + -0.00019976834300905466, + 0.06097378954291344, + 0.0069585563614964485, + -0.027131710201501846, + 0.028603361919522285, + 0.05662618950009346, + -0.08140899240970612, + -0.03623498976230621, + 0.02908257767558098, + 0.01228287536650896, + 0.006196778733283281, + -0.04314541816711426, + 0.001336391898803413, + -0.002256630687043071, + 0.03720138594508171, + -0.029261739924550056, + -0.01985473372042179, + 0.0282388087362051, + 0.01759251207113266, + -0.010595121420919895, + -0.04149370640516281, + 0.00893985852599144, + -0.020817017182707787, + -0.027186499908566475, + 0.03279205784201622, + -0.004985610954463482, + 0.05669774115085602, + 0.015146303921937943, + -0.013313138857483864, + -0.017969729378819466, + -0.04434060677886009, + 0.015500877052545547, + 0.009764141403138638, + 0.04170086234807968, + 0.002994365291669965, + -0.05737898126244545, + -0.024780025705695152, + -0.04010213166475296, + 0.007943800650537014, + 0.029398249462246895, + -0.007416639477014542, + 0.035494185984134674, + 0.029415080323815346, + 0.009674577973783016, + 0.027300363406538963, + -0.045650847256183624, + -0.01705000177025795, + -0.06503753364086151, + -0.031783364713191986, + 0.05707680806517601, + -0.010143006220459938, + -0.029403328895568848, + -0.01563956029713154, + -0.04229075089097023, + -0.03666442632675171, + -0.028869664296507835, + -0.040925897657871246, + -0.016108736395835876, + 0.031086528673768044, + 0.017537975683808327, + -0.0225639920681715, + 0.01702815853059292, + -0.07510603219270706, + 0.0004500781651586294, + 0.005451334174722433, + 0.04237328842282295, + -0.005991584155708551, + -0.008684871718287468, + -0.017701098695397377, + -0.018436120823025703, + -0.04211115837097168, + -0.04423706978559494, + -0.04047173634171486, + -0.012903542257845402, + -0.03829332813620567, + -0.013018549419939518, + -0.0013111347798258066, + -0.002960348967462778, + -0.021804269403219223, + -0.006704031024128199, + 0.06305811554193497, + -0.011996184475719929, + -0.029306787997484207, + 0.047379110008478165, + -0.07267064601182938, + -0.043757643550634384, + 0.03720888867974281, + 0.04554302990436554, + -0.04099532216787338, + 0.01542066503316164, + -0.012487870641052723, + -0.07919669151306152, + -0.028990525752305984, + -0.03897058963775635, + -0.0025826734490692616, + 0.025080548599362373, + -0.004322804044932127, + 0.0034455740824341774, + 0.026372889056801796, + 0.032676104456186295, + -0.07701115310192108, + -0.006929090712219477, + -0.010454408824443817, + 0.045953139662742615, + -0.009547989815473557, + -0.005729860160499811, + 0.025032546371221542, + -0.010309743694961071, + -0.002772141247987747, + 0.060911521315574646, + -0.023883281275629997, + -0.018218450248241425, + 0.012027280405163765, + 0.031075024977326393, + 0.028949977830052376, + 0.03274739906191826, + -0.013222784735262394, + -0.06435666978359222, + -0.0007226894958876073, + -0.034578125923871994, + -0.02155640721321106, + 0.021082261577248573, + -0.0032965964637696743, + -0.016844332218170166, + 0.04419410973787308, + -0.010869418270885944, + 0.008625367656350136, + -0.011631089262664318, + -0.024112487211823463, + -0.018932459875941277, + -0.029615018516778946, + -0.007093888707458973, + 0.0032095874194055796, + 0.03489788994193077, + 0.00754361180588603, + 0.004653877578675747, + 0.0038713018875569105, + 0.021851295605301857, + 0.007898001000285149, + 0.030866531655192375, + 0.002336236648261547, + -0.04743903875350952, + -0.04208831116557121, + -0.036639779806137085, + -0.011567707173526287, + 0.007847742177546024, + 0.023820824921131134, + -0.020868560299277306, + 0.044358253479003906, + 0.05140765756368637, + -0.020569542422890663, + 0.007888481952250004, + -0.03836965933442116, + 0.004528787452727556, + 0.04235345870256424, + -0.03395363315939903, + -0.03790690004825592, + -0.005517813842743635, + -0.005626396741718054, + 0.018094245344400406, + -0.027065934613347054, + 0.022208496928215027, + -0.024704376235604286, + -0.028349626809358597, + 0.07917659729719162, + -0.03936349228024483, + -0.004181912634521723, + 0.034671515226364136, + 0.010263032279908657, + 0.008788584731519222, + -0.008172442205250263, + 0.023857275024056435, + 0.02454334683716297, + -0.004640067927539349, + 0.0187875684350729, + 0.006816417444497347, + -0.034902360290288925, + 0.001041238778270781, + -0.016228290274739265, + 0.006961659993976355, + 0.04053304344415665, + -0.00943625159561634, + -0.010885292664170265, + 0.007790823001414537, + -0.04069870337843895, + -0.027842439711093903, + -0.04425768181681633, + 0.02712063305079937, + -0.0018677989719435573, + -0.0018834329675883055, + 0.022240130230784416, + 0.007758537773042917, + -0.07776641100645065, + 0.05867452919483185, + 0.009234191849827766, + 0.012937611900269985, + 0.025721173733472824, + 0.022284546867012978, + -0.005660657305270433, + 0.0730736181139946, + -0.0022479258477687836, + 0.032123178243637085, + -0.026885898783802986, + -0.024734046310186386, + -0.052092716097831726, + 0.0016593356849625707, + 0.004672396928071976, + -0.062098853290081024, + 0.05715302377939224, + 0.004073804710060358, + 0.03141045570373535, + 0.015728140249848366, + -0.021259887143969536, + 0.021417122334241867, + 0.004248752258718014, + 0.02158273570239544, + 0.07768966257572174, + -0.03446902334690094, + 0.01229487918317318, + -0.002259372966364026, + 0.02300073765218258, + 0.02208861894905567, + 0.0038637167308479548, + 0.0013381590833887458, + 0.013122973963618279, + 0.016634974628686905, + -0.0016547658015042543, + 0.022298922762274742, + -0.025311874225735664, + -0.0583699494600296, + -0.004174245521426201, + 0.01594948209822178, + 0.03687864914536476, + -0.004746670369058847, + -0.01548759825527668, + 0.011644811369478703, + -0.032065682113170624, + -0.04752156510949135, + -0.009797831065952778, + -0.01640147529542446, + -0.011025617830455303, + 0.04270486533641815, + -0.023140473291277885, + -0.04167471453547478, + 0.01768285408616066, + -0.021638812497258186, + 0.0009485819609835744, + 0.05425762012600899, + -0.0076937321573495865, + 0.026860211044549942, + 0.014825955033302307, + -0.004673553165048361, + 0.019667673856019974, + 0.009672642685472965, + -0.015250928699970245, + 0.044239629060029984, + 0.005747091956436634, + -0.0029850478749722242, + -0.007316461764276028, + 0.007284124381840229, + -0.01326286792755127, + 0.010554218664765358, + 0.028517168015241623, + -0.03855767473578453, + 0.036334164440631866, + 0.006875562947243452, + 0.023987902328372, + -0.03250642120838165, + 0.02365417405962944, + 0.03351122513413429, + -0.09917755424976349, + 0.023082604631781578, + 0.030267691239714622, + 0.025613822042942047, + 0.027079511433839798, + -0.04018648713827133, + 0.045318327844142914, + -0.01234208419919014, + 0.028024589642882347, + -0.08095245808362961, + -0.06170906126499176, + -0.015440763905644417, + -0.03174775838851929, + 0.028360415250062943, + -0.03513815253973007, + -0.015137719921767712, + 0.010944908484816551, + -0.03662194684147835, + 0.012365089729428291, + -0.0006671719020232558, + 0.03230069950222969, + 0.021453723311424255, + 0.04248126223683357, + -0.012091638520359993, + 0.010520586743950844, + -0.00333190499804914, + 0.017711831256747246, + 0.009775368496775627, + -0.04325101152062416, + 0.001853627385571599, + 0.00044387890375219285, + -0.034911129623651505, + 0.04229288920760155, + 0.0239594504237175, + -0.0061135017313063145, + 0.038706157356500626, + -0.022594302892684937, + 0.06037954241037369, + -0.0034173682797700167, + 0.027030738070607185, + 0.05475786700844765, + -0.01139362808316946, + -0.011046753264963627, + 0.013814312405884266, + -0.021958788856863976, + 0.029278889298439026, + 0.007284467574208975, + -0.008104381151497364, + -0.009759165346622467, + -0.030825836583971977, + -0.02754269167780876, + 0.0016139528015628457, + 0.051297713071107864, + -0.03364910930395126, + 0.05307113006711006, + 0.017713112756609917, + 0.043322838842868805, + 0.028308823704719543, + -0.06775899231433868, + 0.002147254766896367, + 0.01469594705849886, + 0.02128288336098194, + 0.007294360548257828, + 0.011141348630189896, + 0.0043065231293439865, + -0.0024281376972794533, + -0.05316048115491867, + 0.010822083801031113, + 0.03578296676278114, + 0.025783101096749306, + 0.007486063987016678, + -0.0273226760327816, + 0.021705130115151405, + 0.026450397446751595, + 0.0033208371605724096, + 0.021239634603261948, + 0.021073440089821815, + 0.036727722734212875, + 0.006147712003439665, + 0.05424904450774193, + 0.05663685500621796, + -0.007579801604151726, + -0.026529964059591293, + -0.0014469318557530642, + 0.004609573166817427, + 0.02965465560555458, + -0.05911944806575775, + -0.006284726317971945, + 0.04380170628428459, + 0.007827813737094402, + 0.0018619663314893842, + -0.016148535534739494, + 0.004107098560780287, + -0.04080988094210625, + 0.014367341995239258, + -0.012762223370373249, + 0.05906499922275543, + 0.025013549253344536, + 0.005623001139611006, + 0.01626702956855297, + 0.02274208888411522, + 0.0020031200256198645, + -0.020957032218575478, + 0.013396655209362507, + 0.03984824940562248, + -0.004497915040701628, + -0.046590324491262436, + 0.018356068059802055, + 0.04428204521536827, + 0.013770787976682186, + 0.029524076730012894, + -0.02916776016354561, + 0.04128171503543854, + -0.03902287408709526, + 0.005362358409911394, + 0.004804329480975866, + 0.012450018897652626, + -0.015510998666286469, + -0.009058918803930283, + -0.03567953780293465, + -0.0344276987016201, + -0.020763857290148735, + 0.06551890820264816, + -0.014822716824710369, + 0.008364965207874775, + -0.009327336214482784, + -0.01751946657896042, + 0.008026075549423695, + 0.02522466890513897, + 0.0074717397801578045 + ], + "start_index": 26728, + "end_index": 26852, + "token_count": 20, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "65f45904-fb68-5e7d-afd7-ed24afbccf4a", + "_source": { + "text": "\n\nPuede abarcar múltiples líneas.\n\nEjemplo:\n\n\n\n/* comentario\n multilinea */", + "embedding": [ + -0.011855903081595898, + -0.00801118090748787, + -0.01278662122786045, + -0.09475608170032501, + -0.005954193416982889, + 0.031715765595436096, + -0.0248856283724308, + -0.08847469836473465, + -0.022223331034183502, + -0.009784421883523464, + 0.03808742016553879, + -0.019919902086257935, + 0.015584600158035755, + -0.010605104267597198, + -0.039123088121414185, + 0.0655837208032608, + 0.005231169983744621, + 0.08509833365678787, + 0.03880291059613228, + -0.040094561874866486, + -0.03665011376142502, + -0.02890666574239731, + -0.04222879558801651, + 0.08591201156377792, + 0.07125423103570938, + -0.010774102061986923, + 0.0027381645049899817, + 0.062475934624671936, + 0.004602228291332722, + -0.04453716427087784, + -0.04923992604017258, + -0.01658131554722786, + -0.03353998810052872, + -0.03204701840877533, + 0.054659780114889145, + -0.015823226422071457, + -0.007284150458872318, + -0.031062792986631393, + 0.00593434926122427, + -0.014279191382229328, + -0.010375633835792542, + 0.011723539792001247, + 0.006733170244842768, + 0.017623934894800186, + -0.017812728881835938, + -0.033492881804704666, + 0.028710102662444115, + 0.004520172718912363, + 0.055445317178964615, + 0.006928224116563797, + -0.03423815220594406, + 0.021202649921178818, + -0.012498516589403152, + -0.010563389398157597, + -0.043317776173353195, + -0.030642298981547356, + -0.017023036256432533, + -0.029167942702770233, + 0.03769030421972275, + 0.011712048202753067, + 0.00029644518508575857, + -0.01744796894490719, + -0.0019707807805389166, + 0.020927410572767258, + 0.01644158363342285, + -0.05179758742451668, + 0.006906287278980017, + -0.045825451612472534, + -0.08652999997138977, + -0.017420660704374313, + -0.017196569591760635, + -0.029160575941205025, + -0.027047574520111084, + 0.011594676412642002, + -0.02003082074224949, + 0.025146331638097763, + -0.007581723388284445, + -0.04900762438774109, + -0.00030658012838102877, + -0.005161913577467203, + -0.0066788047552108765, + 0.027903994545340538, + 0.01682598516345024, + -0.011979763396084309, + -0.015469635836780071, + 0.06004408746957779, + 0.015106447041034698, + -0.01498537976294756, + -0.002168300561606884, + 0.003993936814367771, + -0.0368485301733017, + 0.027437636628746986, + 0.0013859538594260812, + -0.07835990935564041, + 0.08157414942979813, + -0.006873730570077896, + 0.011603799648582935, + 0.03752879053354263, + 0.007288414519280195, + 0.0062944949604570866, + -0.000611883238889277, + -0.012664156965911388, + -0.001953728962689638, + 0.026060497388243675, + -0.0046567111276090145, + 0.01341466698795557, + -0.06445370614528656, + 0.007388661149889231, + -0.029180679470300674, + -0.0330573171377182, + 0.0296175554394722, + 0.02957581914961338, + 0.01731235720217228, + 0.025054017081856728, + -0.0049681770615279675, + 0.007401026785373688, + 0.0117647098377347, + -0.023472635075449944, + 0.017652999609708786, + 0.007292963098734617, + 0.02864503301680088, + -0.012930640950798988, + -0.022670740261673927, + -0.03531690314412117, + 0.034927479922771454, + 0.0031054529827088118, + -0.04578881710767746, + -0.014176890254020691, + 0.005249402951449156, + -0.057101864367723465, + 0.002112802118062973, + 0.025783922523260117, + -0.014117208309471607, + -0.006585242692381144, + 0.036633238196372986, + 0.006974374875426292, + -0.0073704165406525135, + 0.025125090032815933, + 0.0429588221013546, + -0.030514448881149292, + -0.04689287021756172, + -0.02558492310345173, + -0.0009382205898873508, + -0.010681753978133202, + 0.029345279559493065, + 0.01069912314414978, + 0.024272436276078224, + -0.022139057517051697, + 0.005026358179748058, + 0.007019666023552418, + 0.020904794335365295, + -0.018366273492574692, + -0.023495547473430634, + -0.007201361004263163, + -0.016350241377949715, + 0.02126576565206051, + 0.008571312762796879, + 0.003508209250867367, + 0.016635432839393616, + -0.0024017903488129377, + 0.027482811361551285, + -0.004879251588135958, + -0.016549834981560707, + -0.04016588628292084, + -0.017249353229999542, + 0.007516634650528431, + -0.014737876132130623, + -0.007482381071895361, + -0.013762160204350948, + 0.018626151606440544, + -0.011583390645682812, + 0.01609606295824051, + -0.008251494728028774, + -0.03721311688423157, + -0.016055434942245483, + -0.028491679579019547, + -0.022849339991807938, + 0.023354871198534966, + -0.03205181285738945, + -0.014885108917951584, + 0.016124224290251732, + -0.031390804797410965, + 0.0021709874272346497, + 0.021256452426314354, + 0.0006401817663572729, + 0.03806780278682709, + -0.0016721325227990746, + -0.03410247713327408, + 0.01350938156247139, + -0.01486970204859972, + 0.004444185644388199, + -0.020745858550071716, + -0.057431790977716446, + 0.0005593575187958777, + -0.0263502299785614, + -0.05558895692229271, + 0.06031155213713646, + 0.00722454022616148, + -0.01647064834833145, + -0.01214800775051117, + 0.005756489932537079, + -0.0343196801841259, + 0.006454901769757271, + 0.014064648188650608, + -0.020065270364284515, + -0.02103547751903534, + 0.01846533641219139, + 0.0063597518019378185, + -0.028113652020692825, + -0.02042030543088913, + 0.01206516195088625, + 0.014086746610701084, + -0.024154650047421455, + -0.051141392439603806, + -0.016452478244900703, + -0.021105650812387466, + 0.0002802993403747678, + 0.03227047249674797, + 0.021386882290244102, + 0.039699818938970566, + 0.03688601031899452, + 0.01242397353053093, + -0.03415275737643242, + -0.00744238356128335, + 0.03041142411530018, + -0.04371399059891701, + 0.012298992834985256, + -0.03724649176001549, + 0.0180752445012331, + -0.007189793977886438, + 0.014423196204006672, + 0.006162217352539301, + 0.08214922994375229, + 0.025559525936841965, + 0.025123609229922295, + -0.004663215950131416, + 0.00751461973413825, + -0.00929049588739872, + 0.05998072028160095, + -0.0440620519220829, + 0.01190293487161398, + -0.002530283760279417, + -0.0015855864621698856, + 0.02889987826347351, + -0.04666117951273918, + -0.021809915080666542, + 0.004140392877161503, + 0.026175357401371002, + -0.027430612593889236, + 0.05579281970858574, + -0.03415069729089737, + 0.03954816237092018, + -0.006793029606342316, + -0.03956475853919983, + 0.01585066132247448, + -0.008819538168609142, + 0.007692142855376005, + 0.008783338591456413, + 0.014780732803046703, + 0.005248780362308025, + 0.03418703004717827, + -0.04891340807080269, + -0.0047059087082743645, + -0.0029843542724847794, + 0.01858874410390854, + 0.015490827150642872, + -0.019790207967162132, + 0.02898932434618473, + -0.035933926701545715, + -0.02694617584347725, + 0.045216500759124756, + 0.028470803052186966, + -0.03834569826722145, + 0.010640700347721577, + 0.014863203279674053, + 0.05378082022070885, + 0.00604937132447958, + -0.0911639854311943, + -0.007900322787463665, + -0.0028829388320446014, + 0.04367974400520325, + 0.01024972926825285, + 0.018015975132584572, + -0.02906789816915989, + 0.014691855758428574, + 0.052295610308647156, + 0.03503173962235451, + -0.02501276694238186, + -0.012843532487750053, + -0.02660205215215683, + 0.008232160471379757, + 0.03801887854933739, + -0.09959938377141953, + 0.06841082870960236, + -0.004209318198263645, + -0.005634005181491375, + 0.00733228912577033, + 0.04756304249167442, + 0.02751750871539116, + -0.001261001918464899, + 0.028959641233086586, + -0.02772776037454605, + -0.02510945126414299, + -0.0027089582290500402, + -0.04396193102002144, + 0.009501988999545574, + 0.019137218594551086, + -0.026442265138030052, + -0.015465780161321163, + 0.023737039417028427, + 0.08291411399841309, + 0.007717660162597895, + -0.019188785925507545, + 0.012648502364754677, + 0.023511270061135292, + -0.025078779086470604, + -0.04557160288095474, + 0.018074458464980125, + 0.04526882991194725, + -0.011329416185617447, + 0.04105118662118912, + -0.020665835589170456, + 0.014784742146730423, + 0.009998491033911705, + 0.012097352184355259, + 0.01034554373472929, + 0.013057909905910492, + 0.011194051243364811, + 0.05011782795190811, + -0.03597685694694519, + -0.00743525056168437, + -0.06920712441205978, + 0.04665864259004593, + -0.023365259170532227, + 0.003583191428333521, + -0.006358369253575802, + -0.006038025487214327, + 0.02532884292304516, + 0.0032343727070838213, + 0.027889354154467583, + 0.03956100717186928, + 0.03339868411421776, + -0.01628122851252556, + -0.05214693397283554, + -0.05343581736087799, + 0.010359246283769608, + 0.03317556530237198, + 0.0471637025475502, + 0.01704544574022293, + 0.004683059174567461, + -0.04006241261959076, + 0.02072533592581749, + -0.004179133102297783, + -0.017493998631834984, + -0.002036839723587036, + -0.025077778846025467, + -0.004343098029494286, + 0.009761999361217022, + -0.044862814247608185, + -0.003612845204770565, + -0.01691746897995472, + -0.06054891273379326, + 0.007318531628698111, + 0.012413682416081429, + 0.006749867461621761, + -0.05061931163072586, + -0.045773543417453766, + -0.010566383600234985, + 0.051230814307928085, + -0.00024105154443532228, + -0.06259710341691971, + 0.04736604541540146, + -0.07602448016405106, + 0.05907513573765755, + 0.07078970968723297, + 0.05011718347668648, + 0.06252823770046234, + 0.00042321873479522765, + 0.0013990530278533697, + 0.019761627539992332, + 0.034155551344156265, + 0.019664274528622627, + -0.01757366955280304, + -0.014887413010001183, + -0.020841561257839203, + -0.028485441580414772, + -0.001228917739354074, + -0.026714907959103584, + 0.009818767197430134, + 0.016398822888731956, + 0.03681793808937073, + -0.044857677072286606, + 0.019325774163007736, + 0.015623960644006729, + 0.04808800294995308, + 0.029348798096179962, + -0.07176912575960159, + -0.004468152299523354, + -0.03729948401451111, + 0.001477814861573279, + 0.025769485160708427, + 0.01902587339282036, + -0.0753415897488594, + -0.010575411841273308, + -0.00040820776484906673, + -0.009012367576360703, + -0.00278049916960299, + -0.042526502162218094, + -0.0024797983933240175, + 0.02941925637423992, + 0.03772316128015518, + 0.012770061381161213, + -0.011401917785406113, + 0.008097373880445957, + 0.007865138351917267, + -0.018960561603307724, + 0.06866663694381714, + -0.057060062885284424, + -0.009907763451337814, + 0.012519828975200653, + 0.021710392087697983, + -0.0004894144949503243, + -0.05631967633962631, + -0.020044978708028793, + -0.02075272798538208, + -0.018726179376244545, + -0.01641724817454815, + -0.00882025621831417, + -0.007660081144422293, + 0.08914802968502045, + 0.015229464508593082, + -0.004948492161929607, + 0.029146164655685425, + -0.009392932988703251, + -0.03936920315027237, + 0.00013368905638344586, + 0.05401938408613205, + 0.07892528921365738, + -0.053883105516433716, + -0.03622031584382057, + -0.03451770544052124, + 0.05985775589942932, + -0.005702761933207512, + 0.006667595822364092, + -0.006096194498240948, + -0.012715096585452557, + 0.016090044751763344, + 0.06255712360143661, + -0.005864973179996014, + -0.08498416095972061, + 0.00014476051728706807, + 0.002310683950781822, + 0.020351005718111992, + 0.05413798987865448, + -0.017429690808057785, + -0.028006279841065407, + -0.03809697926044464, + -0.03559422865509987, + 0.0010821742471307516, + 0.03112025372684002, + 0.004183932673186064, + 0.07973327487707138, + 0.04743779078125954, + -0.012804890982806683, + -0.04109392687678337, + 0.04521632567048073, + -0.06324461102485657, + -0.02564057521522045, + 0.016788838431239128, + 0.020984964445233345, + -0.00989390630275011, + 0.015278901904821396, + -0.0016274438239634037, + -0.005148477852344513, + 0.03829745948314667, + -0.04137032479047775, + -0.07304198294878006, + -0.008442581631243229, + -0.004368855617940426, + 0.054017845541238785, + -0.04309158772230148, + -0.002252873033285141, + 0.06520765274763107, + -0.07408178597688675, + 0.035601045936346054, + -0.0397430919110775, + -0.0014568559126928449, + 0.016591910272836685, + -0.05481564253568649, + -0.0070489379577338696, + -0.0120439687743783, + 0.035693973302841187, + -0.007128389552235603, + -0.013444275595247746, + 0.03648386523127556, + -0.03539598360657692, + 0.0335933156311512, + -0.04191203787922859, + -0.08975716680288315, + 0.07161911576986313, + -0.025727780535817146, + 0.0032649363856762648, + 0.00861376617103815, + -0.002962756436318159, + -0.06039341539144516, + 0.01984490640461445, + 0.009828999638557434, + -0.08018366992473602, + 0.0452691912651062, + 0.024781379848718643, + 0.011257662437856197, + -0.008736158721148968, + -0.0022443546913564205, + -0.019679613411426544, + 0.025851543992757797, + -0.02412998490035534, + -0.0073739406652748585, + -0.0032001640647649765, + 0.019836898893117905, + -0.009229867719113827, + -0.002240640576928854, + 0.04705117642879486, + -0.021969730034470558, + -0.04436742514371872, + -0.02704751305282116, + 0.00946931540966034, + 0.0433574914932251, + 0.03640396520495415, + 0.03506463021039963, + 0.005437561310827732, + 0.024378830567002296, + -0.02066657319664955, + 0.03529992699623108, + -0.042721375823020935, + -0.023485949262976646, + 0.010318070650100708, + 0.0005782731459476054, + -0.033415332436561584, + 0.0023683595936745405, + 0.010066880844533443, + -0.04348190873861313, + -0.03412477299571037, + 0.03779640048742294, + -0.01270737498998642, + 0.05543511360883713, + -0.0036770866718143225, + 0.007605843711644411, + 0.06575971841812134, + -0.03969008848071098, + 0.05560993030667305, + 0.06644657999277115, + 0.012552490457892418, + 0.015344638377428055, + -0.0021222021896392107, + 0.0022145737893879414, + 0.02520076557993889, + 0.03840029984712601, + 0.0010905737290158868, + 0.02711094170808792, + -0.04725082218647003, + 0.05287466570734978, + 0.03310792148113251, + -0.01919296570122242, + 0.028913171961903572, + 0.003986273892223835, + -0.027036435902118683, + -0.015067783184349537, + 0.016272833570837975, + -0.006279065739363432, + -0.0049792383797466755, + 0.031300950795412064, + -0.005370975937694311, + 0.018208978697657585, + 0.05931086838245392, + -0.039002321660518646, + -0.06912411749362946, + -0.0495753139257431, + 0.04928671196103096, + 0.0077951387502253056, + -0.00020350540580693632, + 0.011014118790626526, + -0.0065614753402769566, + 0.004588521085679531, + 0.029498402029275894, + 0.02662712335586548, + -0.033967308700084686, + -0.04171574488282204, + 0.030401216819882393, + 0.022599218413233757, + 0.005127109587192535, + -0.05724996700882912, + -0.011281359009444714, + 0.04739655926823616, + 0.003518807701766491, + 0.05668603628873825, + -0.01901770755648613, + -0.06878773123025894, + -0.016447117552161217, + 0.01700589992105961, + 0.01655520498752594, + 0.009591805748641491, + 0.020742500200867653, + 0.04121784120798111, + -0.0026726301293820143, + -0.044997334480285645, + -0.011798545718193054, + 0.009030242450535297, + -0.015438422560691833, + -0.006134534254670143, + 0.003763343207538128, + -0.021770767867565155, + 0.014649181626737118, + 0.013268661685287952, + 0.027557656168937683, + 0.05043547600507736, + -0.02056136727333069, + -0.04463312774896622, + -0.013623244129121304, + 0.021773476153612137, + -0.03380806744098663, + -0.04737633094191551, + 0.015911970287561417, + -0.028322555124759674, + 0.0703289657831192, + -0.03400424122810364, + 0.010445346124470234, + 0.009211000986397266, + -0.019516166299581528, + 0.024457387626171112, + 0.003864124184474349, + -0.020671715959906578, + -0.016994411125779152, + -0.018785685300827026, + 0.014920465648174286, + 0.04986099898815155, + -0.05346190929412842, + 0.024297259747982025, + 0.015523635782301426, + 0.023409182205796242, + -0.05620681494474411, + -0.053624000400304794, + 0.015129045583307743, + -0.008985983207821846, + 0.04616596922278404, + -0.04751110076904297, + 0.0038288517389446497, + -0.018391182646155357, + 0.0534026212990284, + 0.047955483198165894, + -0.04892006888985634, + 0.02327733300626278, + 0.011523758992552757, + -0.00818905234336853, + 0.02820499800145626, + -0.01584627479314804, + 0.01950935833156109, + -0.01828656904399395, + 0.043052222579717636, + 0.0063477796502411366, + -0.059218890964984894, + -0.00619926443323493, + -0.07562245428562164, + -0.009142288006842136, + -0.026730118319392204, + -0.03305909037590027, + 0.025490114465355873, + 0.05658293515443802, + 0.041613657027482986, + 0.04351095110177994, + -0.06162259355187416, + -0.008077071979641914, + -0.04457657411694527, + -0.02953531965613365, + 0.049846064299345016, + -0.011107775382697582, + -0.02922815829515457, + -0.00941054429858923, + -0.03809675574302673, + 0.007737115956842899, + -0.01876019313931465, + -0.023135820403695107, + -0.042999666184186935, + 0.041815437376499176, + -0.01964575983583927, + -0.0335705392062664, + -0.017354268580675125, + -0.04680650681257248, + -0.017597129568457603, + -0.00914546474814415, + 0.022695377469062805, + 0.037038806825876236, + -0.015052858740091324, + 0.010911718010902405, + -0.007693951483815908, + -0.0011371092405170202, + -0.039466336369514465, + -0.04195380210876465, + 0.011231673881411552, + -0.02854929119348526, + 0.003994734957814217, + -0.002429245039820671, + 0.021976599469780922, + -0.010977700352668762, + 0.05523121356964111, + 0.02680499106645584, + 0.016847198829054832, + -0.05201875418424606, + -0.0007191891199909151, + -0.045798029750585556, + -0.0196471456438303, + 0.05086366832256317, + 0.02828548662364483, + -0.03803848475217819, + -0.015989957377314568, + -0.007596462965011597, + -0.032834820449352264, + -0.017194703221321106, + -0.002358934609219432, + -0.028876854106783867, + 0.007547630462795496, + 0.0023291653487831354, + -0.02417423203587532, + 0.024217428639531136, + 0.017532411962747574, + -0.034381087869405746, + 0.015101066790521145, + 0.04333855211734772, + 0.022087283432483673, + -0.012720313854515553, + -0.010978261940181255, + 0.011921911500394344, + -0.0018584065837785602, + 0.02002032659947872, + 0.03009956330060959, + 0.005479177925735712, + -0.02843933366239071, + 0.022287210449576378, + 0.023178165778517723, + 0.01709442399442196, + -0.0012633982114493847, + -0.017570525407791138, + -0.01699891872704029, + 0.02044876106083393, + -0.015623163431882858, + 0.00656798854470253, + 0.02050086297094822, + 0.009300286881625652, + -0.0014915133360773325, + 0.0015332174953073263, + 0.025738460943102837, + -0.003547372529283166, + -0.013200270012021065, + 0.0044386424124240875, + 0.005136547144502401, + -0.02998424507677555, + -0.03263073042035103, + -0.016531018540263176, + 0.04362098500132561, + 0.01730969361960888, + 0.02190909907221794, + 0.027359653264284134, + -0.003672785358503461, + 0.024918828159570694, + -0.006696922238916159, + 0.04771525785326958, + -0.016230501234531403, + -0.017239289358258247, + -0.041147101670503616, + 0.013564309105277061, + 0.00509840389713645, + -0.0029834723100066185, + -0.00419772369787097, + 0.0004075138713233173, + 0.056823793798685074, + -0.026993580162525177, + 0.022912828251719475, + -0.010939324274659157, + -0.020699134096503258, + 0.007776776794344187, + -0.011052529327571392, + -0.03324148803949356, + -0.014076126739382744, + 0.028309384360909462, + 0.024824097752571106, + -0.018272101879119873, + 0.04581146687269211, + -0.01754801906645298, + -0.033622950315475464, + 0.08737964928150177, + 0.047154951840639114, + -0.001667457865551114, + 0.002951981732621789, + 0.026144757866859436, + 0.020735202357172966, + -0.043176230043172836, + 0.029512638226151466, + 0.03264767676591873, + 0.025947948917746544, + -0.016208462417125702, + 0.01879231631755829, + -0.046439532190561295, + 0.05697460100054741, + -0.003969262819737196, + 0.007207672111690044, + 0.034351084381341934, + -0.012255512177944183, + 0.006872975267469883, + -0.0511457659304142, + -0.021958325058221817, + 0.009269856847822666, + -0.018857713788747787, + 0.019009802490472794, + 0.013113385997712612, + 0.026345906779170036, + 0.023464374244213104, + 0.0012399133993312716, + -0.06921768933534622, + -0.009926092810928822, + -0.019825762137770653, + -0.01190175674855709, + 0.003708397503942251, + -0.004605242051184177, + -0.002426241058856249, + 0.05913002789020538, + 0.018443871289491653, + 0.021339159458875656, + 0.01568332500755787, + -0.0026625720784068108, + -0.07103227823972702, + 0.01315244659781456, + -0.0008297162130475044, + -0.06264419853687286, + 0.03181317448616028, + 0.01582414098083973, + 0.05599411949515343, + -0.009199196472764015, + -0.026124928146600723, + 0.026080461218953133, + 0.04264499247074127, + -0.010467768646776676, + 0.057800766080617905, + -0.005004663486033678, + 0.03482047840952873, + 0.016303684562444687, + 0.009410676546394825, + 0.017803926020860672, + 0.014601589180529118, + -0.0012137980666011572, + -0.017108242958784103, + 0.015499497763812542, + -0.009671368636190891, + -0.0006862137233838439, + -0.00805825274437666, + -0.05288669839501381, + 0.00526626780629158, + 0.047140587121248245, + 0.026853276416659355, + -0.005528638605028391, + -0.043448545038700104, + 0.017686011269688606, + -0.014816610142588615, + -0.06275610625743866, + -0.02131257951259613, + -0.023421313613653183, + -0.03431243821978569, + 0.037148237228393555, + 0.014499248005449772, + 0.011387964710593224, + 0.0015187917742878199, + -0.020589115098118782, + -0.018186740577220917, + -0.0011928731109946966, + -0.007748034782707691, + 0.008962114341557026, + 0.02099446952342987, + -0.014727124944329262, + -0.00021213036961853504, + -0.028716247528791428, + 0.044874683022499084, + 0.057676613330841064, + -0.021096544340252876, + 0.019974235445261, + -0.008341552689671516, + 0.011348612606525421, + 0.009346133098006248, + -0.005162334535270929, + -0.0047468217089772224, + -0.024655412882566452, + 0.02217051573097706, + 0.0036485393065959215, + 0.032342586666345596, + -0.04704432189464569, + -0.01713578775525093, + 0.0436345711350441, + -0.11897851526737213, + 0.0037425649352371693, + 0.052832990884780884, + 0.03717885911464691, + -0.01733596995472908, + -0.028921741992235184, + 0.0790339931845665, + -0.007680180948227644, + 0.02996174432337284, + -0.04197842627763748, + -0.0231904499232769, + -0.004883822053670883, + 0.021009810268878937, + 0.014667335897684097, + 0.004616729915142059, + 0.001000041258521378, + 0.0180949904024601, + 0.0149012990295887, + 0.023455636575818062, + -0.020541278645396233, + 0.001986854476854205, + -0.003279892262071371, + -0.027743887156248093, + -0.024452051147818565, + 0.006244197022169828, + 0.02043466456234455, + -0.0370873399078846, + 0.014101628214120865, + -0.04374656453728676, + -0.044383857399225235, + -0.016700981184840202, + -0.04390277713537216, + 0.01934376172721386, + 0.04369763657450676, + -0.038781024515628815, + 0.0491829551756382, + -0.0117014329880476, + 0.028004281222820282, + 0.017961235716938972, + 0.0508442260324955, + 0.034990761429071426, + -0.008485662750899792, + -0.0009271095041185617, + 0.03247509524226189, + 0.013441541232168674, + 0.004862838424742222, + 0.018423138186335564, + 0.014460680074989796, + -0.005221008788794279, + 0.045539069920778275, + -0.03034314699470997, + -0.007491196505725384, + 0.0162590853869915, + 0.009193344973027706, + 0.03540787100791931, + -0.022988608106970787, + 0.02001565508544445, + 0.009100626222789288, + -0.05066358670592308, + -0.0021024057641625404, + 0.015323948115110397, + 0.029390724375844002, + -0.0010578867513686419, + 0.014432832598686218, + 0.005164965055882931, + -0.010959776118397713, + -0.04425564035773277, + -0.004191142972558737, + 0.03131503611803055, + 0.024230070412158966, + 0.008874609135091305, + -0.022184384986758232, + -0.025457095354795456, + 0.024341097101569176, + 0.025723405182361603, + 0.018668685108423233, + 0.08219831436872482, + 0.022217242047190666, + 0.026726815849542618, + 0.007164066657423973, + 0.00940515287220478, + 0.012528187595307827, + -0.038908764719963074, + -0.049614317715168, + 0.02828887104988098, + -0.010248594917356968, + -0.058108456432819366, + -0.001171742333099246, + 0.047994911670684814, + 0.003517002332955599, + 0.012275180779397488, + -0.0654979944229126, + 0.005687119904905558, + 0.03158656135201454, + 0.031678564846515656, + -0.05101325735449791, + 0.07044520974159241, + 0.01624000072479248, + -0.023302599787712097, + -0.020191911607980728, + 0.012646178714931011, + 0.030462469905614853, + -0.014165149070322514, + -0.0016223012935370207, + 0.04507611319422722, + -0.023260511457920074, + 0.014924837276339531, + 0.0006330709438771009, + 0.0377090759575367, + 0.02799578569829464, + 0.016429470852017403, + -0.0030489794444292784, + 0.0009865602478384972, + -0.037586137652397156, + -0.012641999870538712, + 0.024781344458460808, + -0.007944919168949127, + 0.016104375943541527, + 0.0137216467410326, + -0.0009188622352667153, + -0.024344725534319878, + 0.010795370675623417, + 0.017165694385766983, + -0.011236660182476044, + 0.005603920202702284, + -0.044773660600185394, + 0.020421519875526428, + -0.0030070128850638866, + 0.028971770778298378, + -0.04185682162642479 + ], + "start_index": 26852, + "end_index": 26939, + "token_count": 16, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "fd5ef550-1c87-5739-b911-4297e9322a70", + "_source": { + "text": "\n\n---\n\n# X.3 Identificadores\n\nLos identificadores representan nombres de variables, funciones o parámetros.\n\n\n\nIDENTIFIER ::= [a-zA-Z_][a-zA-Z0-9_]*", + "embedding": [ + 0.015415873378515244, + -0.03881200775504112, + -0.005061833653599024, + -0.12895937263965607, + -0.009084230288863182, + -0.006696789991110563, + -0.05117586627602577, + 0.04849640652537346, + 0.0039162784814834595, + -0.0763830915093422, + 0.06583568453788757, + -0.05811052396893501, + 0.010595487430691719, + -0.004867431707680225, + -0.03777897357940674, + 0.006216169334948063, + 0.04087451845407486, + 0.041412122547626495, + -0.07624536752700806, + -0.06615836173295975, + -0.0024106118362396955, + 0.0038740092422813177, + -0.0348491445183754, + 0.055815450847148895, + 0.006433555390685797, + 0.02301073633134365, + -0.020666806027293205, + 0.02809039130806923, + 0.026641178876161575, + -0.0207205843180418, + 0.024497700855135918, + -0.014638759195804596, + -0.05833562836050987, + 0.04031265899538994, + -0.06993010640144348, + -0.007929272949695587, + -0.020540837198495865, + -0.05368062108755112, + -0.010252193547785282, + 0.018008658662438393, + 0.029655998572707176, + 0.0049875760450959206, + 0.007034094072878361, + -0.013583374209702015, + 0.06689909100532532, + -0.025998083874583244, + -0.019523408263921738, + 0.03431716933846474, + 0.03131900727748871, + 0.014627705328166485, + -0.035859111696481705, + -0.025068100541830063, + 0.0259774811565876, + 0.0015318096848204732, + -0.021583179011940956, + -0.013539905659854412, + -0.012949802912771702, + -0.04423891380429268, + -0.015787653625011444, + -0.010347841307520866, + -0.02368287369608879, + -0.027032671496272087, + 0.010397004894912243, + 0.04633535444736481, + 0.020501691848039627, + 0.015721281990408897, + -0.015105661004781723, + 0.01416634488850832, + -0.08007579296827316, + 0.021085066720843315, + 0.011440475471317768, + -0.0049897427670657635, + -0.0014962608693167567, + 0.04290628805756569, + 0.01143449917435646, + -0.019872108474373817, + 0.030172262340784073, + -0.029365431517362595, + 0.016207966953516006, + 0.014995039440691471, + 0.016813796013593674, + 0.05075204372406006, + 0.04279443994164467, + -0.012704713270068169, + 0.016039514914155006, + 0.060620296746492386, + 0.0033380421809852123, + 0.021292854100465775, + 0.007116077002137899, + -0.014542914927005768, + -0.014236864633858204, + 0.05190906673669815, + -0.01277945190668106, + 0.010828916914761066, + 0.059314146637916565, + -0.029591228812932968, + 0.0024850275367498398, + 0.03599810600280762, + -0.01645713485777378, + -0.01567467488348484, + -0.042272478342056274, + -0.00797220878303051, + 0.0029056693892925978, + 0.11829302459955215, + -0.02171768806874752, + 0.01615050435066223, + -0.027920136228203773, + 0.03803583234548569, + -0.02395125851035118, + -0.009757607243955135, + -0.024246932938694954, + 0.011489376425743103, + 0.08809323608875275, + 0.06080346927046776, + 0.012431539595127106, + -0.010903595946729183, + -0.0017227657372131944, + -0.02797049470245838, + -0.01173652894794941, + 0.027890749275684357, + 0.004153224173933268, + -0.02711070328950882, + -0.014731139875948429, + -0.03052494488656521, + 0.04107658937573433, + -0.01890730671584606, + -0.04071233421564102, + 0.024836620315909386, + -0.012789158150553703, + -0.006930624600499868, + -0.001594110275618732, + 0.008355258964002132, + -0.026957515627145767, + -0.003512888215482235, + 0.015286688692867756, + 0.0021405413281172514, + -0.0030664256773889065, + -0.04206666350364685, + 0.060038208961486816, + -0.012878196313977242, + -0.0681021586060524, + -0.011866751126945019, + -0.00886948499828577, + -0.024766789749264717, + 0.03272571042180061, + 0.03373713791370392, + -0.008938644081354141, + 0.0048690070398151875, + 0.002752612577751279, + 0.004531194921582937, + -0.009913867339491844, + -0.00950782373547554, + -0.007459964603185654, + -0.03407873585820198, + -0.0024350150488317013, + 0.024472791701555252, + -0.013827730901539326, + 0.00693916343152523, + -0.011143021285533905, + 0.022715512663125992, + 0.016335710883140564, + 0.04127346724271774, + 0.008796187117695808, + -0.02331165410578251, + -0.01303816307336092, + 0.01747433841228485, + -0.04906165599822998, + -0.013067196123301983, + -0.009661572054028511, + 0.043290749192237854, + -0.009379012510180473, + 0.02575431764125824, + 0.00429137609899044, + 0.024543123319745064, + -0.0063225217163562775, + -0.03731382638216019, + -0.020329231396317482, + -0.023038653656840324, + -0.0008386480039916933, + 0.022357935085892677, + -0.014274626038968563, + 0.0194197129458189, + 0.030949091538786888, + 0.004421715624630451, + 0.015040874481201172, + 0.05637706443667412, + -0.02159181796014309, + 0.028785623610019684, + 0.007284136489033699, + -0.04330466315150261, + -0.0011246372014284134, + -0.015568231232464314, + -0.05094701796770096, + 0.013269450515508652, + -0.013116773217916489, + -0.03434733673930168, + 0.011756360530853271, + -0.04162096977233887, + 0.006028301548212767, + -0.0017263484187424183, + 0.00045096149551682174, + -0.014608499594032764, + 0.0008204251062124968, + -0.018335018306970596, + -0.03172643855214119, + -0.009726757183670998, + 0.00012029747449560091, + 0.00783686526119709, + -0.02742605283856392, + 0.031100209802389145, + 0.002202955074608326, + 0.05137498304247856, + -0.026180433109402657, + -0.05185523256659508, + -0.010932580567896366, + -0.0008607497438788414, + -0.04325408115983009, + 0.012996882200241089, + 0.01349374558776617, + 0.02912636287510395, + -0.0022308286279439926, + 0.014741533435881138, + -0.0032259197905659676, + 0.00017709837993606925, + 0.05758281424641609, + -0.00035801419289782643, + 0.012648223899304867, + -0.020566511899232864, + -0.03720727190375328, + 0.004295081831514835, + -0.008317830041050911, + 0.02122766524553299, + 0.05050906538963318, + 0.018903376534581184, + -0.005728773772716522, + -0.019980330020189285, + -0.007769950665533543, + -0.023468585684895515, + -0.0011940435506403446, + -0.013832952827215195, + 0.015925295650959015, + -0.009526252746582031, + 0.019957389682531357, + -0.0018459151033312082, + 0.01699994131922722, + 0.036510903388261795, + 0.010584660805761814, + 0.017980728298425674, + 0.010261578485369682, + -0.004197251982986927, + 0.054518844932317734, + 0.020822368562221527, + -0.03343910723924637, + -0.0022724124137312174, + -0.011457371525466442, + -0.04060831293463707, + 0.027977576479315758, + -0.03613406792283058, + 0.006936185527592897, + -0.036149006336927414, + 0.003520976984873414, + -0.04243398457765579, + 0.0003090052050538361, + 0.01632368005812168, + -0.021846914663910866, + -0.0083968760445714, + -0.025447802618145943, + -0.03949661925435066, + -0.019733550027012825, + -0.001314542256295681, + 0.015336588956415653, + 0.018293576315045357, + 0.04299262911081314, + -0.008053864352405071, + 0.012887947261333466, + -0.018339993432164192, + -0.001238980214111507, + -0.10416797548532486, + 0.03901677951216698, + 0.021662743762135506, + 0.034304797649383545, + -0.03313402459025383, + -0.019536402076482773, + -0.020058302208781242, + -0.02877662144601345, + 0.0423450767993927, + 0.014355434104800224, + 0.0034093924332410097, + 0.0044506932608783245, + -0.04033707454800606, + -0.03262154385447502, + 0.012339419685304165, + -0.03034788742661476, + 0.013629984110593796, + -0.0020204538013786077, + -0.006421310361474752, + -0.05086031183600426, + 0.04608513414859772, + -0.030176909640431404, + -0.022504715248942375, + 0.026986848562955856, + 0.006619403604418039, + 0.009020687080919743, + -0.019311217591166496, + -0.044607583433389664, + 0.011064539663493633, + 0.0955796092748642, + -0.03240825608372688, + 0.04233042150735855, + 0.005315179005265236, + 0.050057392567396164, + 0.02035025879740715, + -0.020897014066576958, + -0.0586596243083477, + 0.0042661516927182674, + 0.05256211757659912, + 0.02186110056936741, + 0.03608342632651329, + 0.05545181781053543, + -0.04432009905576706, + 0.031474873423576355, + -0.07656360417604446, + -0.005861263256520033, + -0.09693578630685806, + 0.03051791340112686, + -0.02228437550365925, + 0.08345859497785568, + 0.051480911672115326, + -0.008625906892120838, + 0.0209440216422081, + -0.00844662543386221, + 0.0144726587459445, + 0.0204765722155571, + 0.0005980503628961742, + -0.0754929780960083, + -0.03497818112373352, + 0.013915968127548695, + 0.00840048212558031, + 0.005673472303897142, + 0.00581401539966464, + -0.011265350505709648, + 0.06705543398857117, + -0.03794544190168381, + 0.009328596293926239, + -0.013383091427385807, + -0.07310234755277634, + 0.06889042258262634, + 0.02141766995191574, + 0.024536313489079475, + -0.017177442088723183, + 0.0017691102111712098, + 0.03456157073378563, + -0.0035741848405450583, + 0.029766269028186798, + -0.042081404477357864, + -0.01009440142661333, + 0.03535832092165947, + 0.051426000893116, + -0.015592199750244617, + 0.0030795515049248934, + -0.02183234877884388, + -0.008693061769008636, + -0.003317213151603937, + 0.04991631954908371, + 0.017610495910048485, + 0.014375376515090466, + -0.04517291486263275, + -0.046354614198207855, + 0.01944018341600895, + -0.07675164192914963, + -0.09563260525465012, + -0.017116950824856758, + 0.03581191226840019, + -0.008217724040150642, + 0.09700723737478256, + 0.081206314265728, + -0.010156740434467793, + 0.01022445410490036, + 0.0013688065810129046, + 0.002930921036750078, + 0.02432045340538025, + 0.008604902774095535, + -0.03494511917233467, + -0.04447090998291969, + -0.044557008892297745, + 0.02014555037021637, + -0.007086173165589571, + -0.07732055336236954, + -0.05101082846522331, + 0.012766500934958458, + 0.04892341420054436, + -0.011405364610254765, + 0.048629097640514374, + -0.004063887987285852, + -0.014122918248176575, + -0.002155270427465439, + -0.041962817311286926, + -0.047756388783454895, + -0.021311022341251373, + 0.013703198172152042, + 0.007773648947477341, + 0.026650642976164818, + 0.013606623746454716, + 0.08024561405181885, + 0.05847764387726784, + 0.005042138043791056, + 0.017370283603668213, + 0.02405521087348461, + -0.010356233455240726, + 0.015726769343018532, + 0.04960816726088524, + -0.015066022053360939, + -0.0442708283662796, + 0.015109649859368801, + 0.03913471847772598, + 0.010882933624088764, + 0.07237621396780014, + -0.021134601905941963, + 0.03433632478117943, + -0.03150482103228569, + 0.0013135045301169157, + 0.003632225561887026, + 0.0048568956553936005, + 0.032731328159570694, + 0.005794772412627935, + -0.011034619063138962, + -0.04122459143400192, + -0.04073391109704971, + -0.012218223884701729, + 0.03575654327869415, + -0.03566250577569008, + 0.03609997406601906, + -0.004178053233772516, + 0.045392896980047226, + -0.07553347200155258, + -0.006831146311014891, + 0.04010036960244179, + 0.05963422358036041, + 0.006671980023384094, + -0.0004586543655022979, + 0.006936611142009497, + 0.019909920170903206, + 0.03297996148467064, + 0.003313269931823015, + -0.024622591212391853, + -6.382617721101269e-05, + -0.043817196041345596, + 0.10179556161165237, + 0.0022609676234424114, + 0.010690093040466309, + 0.01320625375956297, + -0.033138908445835114, + -0.06893952935934067, + 0.0037271955516189337, + 0.030946658924221992, + -0.027695031836628914, + -0.024675991386175156, + -0.04918401688337326, + 0.023712672293186188, + 0.0017185362521559, + 0.029333140701055527, + 0.03633471205830574, + 0.002822008915245533, + 0.026528598740696907, + -0.04141583666205406, + -0.008494685404002666, + 0.014733360148966312, + -0.03363237529993057, + 0.022478120401501656, + 0.023277679458260536, + 0.010610957629978657, + -0.000618733640294522, + 0.03491523489356041, + 0.02046288549900055, + 0.04118058830499649, + 0.015083201229572296, + 0.004683965817093849, + -0.026638465002179146, + -0.044079359620809555, + -0.07812698185443878, + -0.04556336626410484, + -0.05000810697674751, + -0.045095182955265045, + -0.05282454192638397, + 0.06638922542333603, + -0.0037701705005019903, + -0.028574736788868904, + -0.017465675249695778, + -0.05618855729699135, + -0.022778574377298355, + -0.048873867839574814, + 0.029365021735429764, + -0.013604129664599895, + 0.01815061643719673, + 0.025133129209280014, + 0.027159996330738068, + -0.013049195520579815, + -0.019368547946214676, + -0.04520336911082268, + 0.007637770846486092, + -0.0008984032901935279, + -0.04003196209669113, + 0.02639806643128395, + 0.03514789417386055, + 0.019924191758036613, + 0.03250598907470703, + 0.013235174119472504, + -0.029366416856646538, + 0.035405829548835754, + 0.07685953378677368, + -0.023823898285627365, + 0.004933984950184822, + 0.049613967537879944, + -0.004852013662457466, + -0.03826101869344711, + -0.0315750353038311, + 0.010672212578356266, + 0.004298717714846134, + -0.03694578632712364, + 0.031063620001077652, + -0.047271620482206345, + 0.08029300719499588, + 0.05056433379650116, + 0.006187091581523418, + 0.0298911239951849, + 0.014724372886121273, + 0.032780252397060394, + 0.05105539411306381, + 0.03614335507154465, + -0.05019492283463478, + -0.03268096223473549, + -0.042054351419210434, + 0.0317981094121933, + -0.0205158069729805, + -0.02140762470662594, + -0.00870677549391985, + 0.004638168960809708, + -0.028022270649671555, + -0.025315551087260246, + -0.004527583252638578, + 0.005006407853215933, + -0.056225549429655075, + -0.05441800132393837, + 0.024536684155464172, + 0.022373659536242485, + -0.010398562997579575, + -0.03133819252252579, + 0.008449943736195564, + -0.013855126686394215, + 0.0301799438893795, + 0.027384547516703606, + -0.016766244545578957, + -0.02097138948738575, + -0.060964494943618774, + 0.02259344793856144, + -0.025544796139001846, + -0.005671272519975901, + 0.004758100491017103, + 0.0315224751830101, + -0.011601977981626987, + 0.015245146118104458, + -0.051654424518346786, + -0.010451966896653175, + 0.035471975803375244, + -0.039749711751937866, + -0.04389909654855728, + 0.031715527176856995, + -0.01651148498058319, + 0.02080671675503254, + -0.030815256759524345, + 0.03658772259950638, + 0.032006338238716125, + -0.03275032714009285, + 0.017377424985170364, + 0.013600148260593414, + -0.02827143855392933, + -0.018278563395142555, + 0.04173809289932251, + -0.014241865836083889, + -0.0420641265809536, + 0.03779781609773636, + -0.01624477468430996, + 0.03602486476302147, + 0.020737173035740852, + 0.03635256364941597, + 0.019499091431498528, + -0.027431609109044075, + 0.007367889862507582, + -0.04305223375558853, + -0.02881898358464241, + -0.0288478285074234, + -0.01666831411421299, + 0.021366922184824944, + 0.010755202732980251, + -0.00555356265977025, + 0.013714020140469074, + -0.029437856748700142, + 0.015114146284759045, + -0.0021546040661633015, + 0.02725308947265148, + -0.01599036529660225, + -0.029967177659273148, + -0.023534808307886124, + 0.030075736343860626, + -0.035027433186769485, + 0.006912423297762871, + -0.01680542528629303, + -0.04168687015771866, + 0.016895893961191177, + -0.03001636639237404, + -0.07063870131969452, + -0.007514907047152519, + -0.01009533554315567, + 0.029334409162402153, + 0.029001688584685326, + -0.034097664058208466, + -0.002476740861311555, + 0.02955532819032669, + 0.00976890791207552, + -0.03970130905508995, + 0.019969914108514786, + 0.007396108470857143, + 0.03225972503423691, + 0.03586263954639435, + -0.008903701789677143, + -0.004003190901130438, + -0.016410289332270622, + -0.03535427898168564, + -0.006565565709024668, + 0.027756378054618835, + -0.025007573887705803, + -0.01454600878059864, + -0.01155579462647438, + 0.029867926612496376, + 0.002928640926256776, + -0.02645939774811268, + 0.03577301651239395, + -0.03679007291793823, + -0.040537960827350616, + 0.027749260887503624, + -0.021268663927912712, + 0.033793944865465164, + 0.00953524000942707, + 0.028699355199933052, + 0.005361128598451614, + 0.027311505749821663, + 0.006444365717470646, + 0.01037693489342928, + 0.030871497467160225, + -0.019211802631616592, + -0.0027790693566203117, + -0.042175889015197754, + -0.01827205717563629, + 0.013998662121593952, + -0.03484707325696945, + 0.02649899385869503, + -0.02047869935631752, + -0.029153328388929367, + -0.030564263463020325, + 0.010181060992181301, + -0.0021137085277587175, + -0.02496909536421299, + 0.04676276445388794, + -0.02462155558168888, + -0.04829362407326698, + -0.02045578695833683, + 0.06721150875091553, + 0.017287470400333405, + -0.007940179668366909, + 0.017079610377550125, + 0.002923367079347372, + -0.05350683256983757, + -0.02845892310142517, + 0.04405495151877403, + -0.011001378297805786, + -0.022291142493486404, + -0.013897371478378773, + -0.027654709294438362, + 0.011271259747445583, + 0.00300134951248765, + 0.016075341030955315, + 0.012095579877495766, + 0.04783296585083008, + -0.021208198741078377, + -0.013241041451692581, + -0.022876208648085594, + -0.029354985803365707, + 0.021612033247947693, + -0.020451564341783524, + -0.04520896449685097, + 0.023753756657242775, + -0.00042596913408488035, + -0.006079955492168665, + -0.0009119733003899455, + 0.05446238070726395, + 0.0014898203080520034, + 0.029140738770365715, + 0.011285367421805859, + -0.01818258874118328, + 0.023762172088027, + -0.02993766777217388, + 0.015137915499508381, + -0.06111155077815056, + -0.010755793191492558, + 0.025825457647442818, + -0.034957900643348694, + -0.04525666683912277, + 0.02514025941491127, + -0.00027702926308847964, + -0.010606729425489902, + 0.07211059331893921, + -0.0013420779723674059, + -0.047157347202301025, + -0.017910555005073547, + 0.04115841165184975, + 0.01818527840077877, + -0.0017694468842819333, + 0.005521675106137991, + -0.009256095625460148, + 0.03629814833402634, + -0.03704306483268738, + -0.07677710801362991, + 0.003092606784775853, + -0.003978789318352938, + -0.0004767427744809538, + -0.029327714815735817, + 0.030065812170505524, + 0.04531549662351608, + 0.06263221055269241, + 0.013045299798250198, + 0.015307625755667686, + -0.007969141006469727, + -0.0013257822720333934, + -0.018134796991944313, + 0.007008656859397888, + -0.013827338814735413, + 0.021655874326825142, + 0.0012422361178323627, + -0.0030629881657660007, + -0.03159786015748978, + -0.020860521122813225, + 0.05643593147397041, + 0.01321020070463419, + -0.1116650402545929, + 0.0003777172532863915, + 0.0021881249267607927, + -0.010699877515435219, + 0.03983898460865021, + 0.022819502279162407, + -0.010814192704856396, + 0.03524620085954666, + 0.02307671122252941, + -0.03396143391728401, + -0.031748756766319275, + 0.019181065261363983, + 0.05316668748855591, + -0.02870328538119793, + 0.03480502590537071, + -0.03555221110582352, + 0.010688374750316143, + -0.009178278967738152, + -0.019551174715161324, + -0.021163372322916985, + -0.012300792150199413, + 0.022507134824991226, + -0.020995723083615303, + 0.0634317696094513, + -0.004140092991292477, + -0.026484157890081406, + -0.01861586794257164, + 0.03187695890665054, + -0.033643998205661774, + 0.033860836178064346, + 0.0445948988199234, + 0.010602683760225773, + 4.4488984713098034e-05, + 0.010211853310465813, + 0.002130945213139057, + -0.03025936149060726, + -0.05829036980867386, + 0.00749443843960762, + -0.05330047756433487, + 0.010901876725256443, + -0.007044256664812565, + -0.012756936252117157, + 0.017085455358028412, + -0.05213966593146324, + 0.019827621057629585, + 0.01050941739231348, + 0.007720664143562317, + 0.024445580318570137, + 0.04461236670613289, + 0.06254207342863083, + 0.007231586612761021, + 0.019087620079517365, + -0.0029265384655445814, + -0.02468588575720787, + -0.016270412132143974, + -0.005808215122669935, + 0.0076032294891774654, + -0.018688004463911057, + -0.012803958728909492, + -0.016536859795451164, + 0.019881263375282288, + 0.06843250244855881, + 0.004439990036189556, + -0.010851339437067509, + -0.00677101407200098, + -0.024378839880228043, + 0.030054261907935143, + 0.012589375488460064, + 0.04156653955578804, + 0.005235539749264717, + -0.013807854615151882, + -0.02942713163793087, + -0.012644180096685886, + -0.020049046725034714, + -0.025731515139341354, + -0.00428048288449645, + 0.020247682929039, + 0.01110740378499031, + 0.0570979118347168, + -0.03600515425205231, + 0.008183901198208332, + 0.020580677315592766, + 0.044539425522089005, + 0.017839999869465828, + 0.030056487768888474, + -0.019904909655451775, + -0.023857491090893745, + -0.00925979483872652, + -0.018658017739653587, + 0.05306658893823624, + 0.020146658644080162, + 0.053116630762815475, + -0.04881773144006729, + -0.016625070944428444, + -0.039009906351566315, + 0.01909860223531723, + 0.03131657466292381, + 0.017868440598249435, + -0.018662039190530777, + -0.0413658581674099, + 0.028427250683307648, + -0.03223132714629173, + 0.018597232177853584, + 0.01342365238815546, + -0.013473989441990852, + 0.025716718286275864, + -0.03862376883625984, + 0.02489936538040638, + 0.008563700132071972, + -0.08239475637674332, + -0.038802824914455414, + 0.017797105014324188, + 0.008452326990664005, + -0.009096958674490452, + 0.028640378266572952, + -0.03933108225464821, + 0.044537078589200974, + -0.03032573126256466, + -0.028927385807037354, + -0.05049732327461243, + 0.011843339540064335, + -0.0041059330105781555, + 0.036805614829063416, + -0.04344475269317627, + -0.012594073079526424, + 0.050661951303482056, + 0.008096311241388321, + 0.020249735563993454, + -0.031459227204322815, + -0.04078318178653717, + 0.022098133340477943, + -0.01817142777144909, + -0.0008571362122893333, + -0.01918344758450985, + -0.02327805943787098, + 0.006764441262930632, + 0.026451241225004196, + 0.02211947552859783, + 0.0028205341659486294, + 0.008005229756236076, + -0.03312090039253235, + 0.003050956642255187, + -0.031196078285574913, + -0.007725405972450972, + 0.030615605413913727, + -0.028400128707289696, + 0.027450665831565857, + 0.030889693647623062, + -0.040734853595495224, + -0.018247967585921288, + -0.0004774556146003306, + -0.0408673994243145, + 0.015141954645514488, + -0.009422008879482746, + 0.02132500521838665, + -0.005975495092570782, + -0.019458921626210213, + 0.018259473145008087, + 0.0063735744915902615, + -0.032228875905275345, + -0.021073754876852036, + -0.038938648998737335, + -0.01814955472946167, + 0.014247349463403225, + 0.02145972289144993, + 0.01574530266225338, + -0.015096649527549744, + -0.0059710172936320305, + -0.031633201986551285, + 0.04044248163700104, + -0.01860867254436016, + 0.014248439110815525, + 0.023953987285494804, + 0.015863655135035515, + -0.03588661178946495, + -0.03651111200451851, + -0.013508857227861881, + -0.019367482513189316, + 0.020326795056462288, + 0.001177887199446559, + 0.016105853021144867, + -0.005700392182916403, + -0.009835618548095226, + -0.00717933289706707, + -0.013971652835607529, + -0.037970125675201416, + -0.04217258468270302, + -0.017700470983982086, + 0.00899004377424717, + 0.0570356622338295, + 0.018347330391407013, + 0.0568879134953022, + -0.0061424714513123035, + 0.05472290515899658, + -0.009995118714869022, + -0.031794823706150055, + -0.04317823424935341, + 0.03270585462450981, + -0.038591932505369186, + 0.0008119101985357702, + 0.017249038442969322, + -0.033384617418050766, + 0.042242683470249176, + 0.005049870815128088, + -0.04697171598672867, + -0.010010236874222755, + 0.024220624938607216, + 0.03313223272562027, + -0.01287208590656519, + -0.024841340258717537, + -0.005591300316154957, + 0.03331147879362106, + 0.011185120791196823, + 0.017048988491296768, + 0.006408771499991417, + 0.013771077618002892, + 0.020050959661602974, + -0.007196486461907625, + -0.006317724473774433, + 0.006903113331645727, + -0.007836956530809402, + 0.007297752890735865, + -0.03947179764509201, + 0.002147797029465437, + -0.017036207020282745, + -0.013498804531991482, + -0.0176317747682333, + 0.018389681354165077, + 0.0306320171803236, + -0.019934995099902153, + -0.0013520632637664676, + 0.012572036124765873, + 0.011177708394825459, + -0.026347925886511803, + 0.006596108432859182, + 0.055209752172231674, + -0.008862851187586784, + -0.054636821150779724, + -0.02574968710541725, + -0.018771974369883537, + 0.008723202161490917, + 0.012453898787498474, + 0.0040469784289598465, + 0.00026749566313810647, + -0.006221275310963392, + -0.007734110578894615, + -0.006026729941368103, + 0.014638446271419525, + -0.014743386767804623, + 0.05820459499955177, + -0.052829012274742126, + 0.016436321660876274, + 0.017484955489635468, + -0.02628406509757042, + 0.04315884783864021, + 0.0362091027200222, + 0.010155858471989632, + 0.02563491091132164, + -0.017192719504237175, + 0.00391898350790143, + 0.031654778867959976, + -0.02872866578400135, + -0.05692335218191147, + -0.037087585777044296, + -0.036168649792671204, + -0.005560083314776421, + 0.024457311257719994, + -0.023085832595825195, + 0.03055119886994362, + 0.05479034408926964, + 0.0431467667222023, + 0.013005917891860008, + -0.04034216329455376, + -0.015830369666218758, + 0.006618529092520475, + 0.04808514192700386, + 0.039303380995988846, + 0.04656970128417015, + 0.0012529431842267513, + 0.005616033915430307, + -0.014642422087490559 + ], + "start_index": 26939, + "end_index": 27098, + "token_count": 26, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "f5a6a0c1-79ae-54c4-a0b3-ea66adb0ac59", + "_source": { + "text": "\n\nEjemplos válidos:\n\n\n\nx\nuser_id\nbalanceTotal\n_connector", + "embedding": [ + -0.03679750859737396, + 0.004966139327734709, + -0.01379675604403019, + -0.11027659475803375, + 0.0304043460637331, + -0.01180547196418047, + -0.003217054298147559, + 0.0031559413764625788, + 0.0028762230649590492, + 0.0064048925414681435, + -0.02777007780969143, + 0.007837138138711452, + 0.03222331404685974, + -0.012616345658898354, + -0.04774017632007599, + 0.06000501662492752, + 0.010740193538367748, + -0.021346887573599815, + -0.004680007230490446, + 0.05417380854487419, + 0.00516078807413578, + -0.0322594977915287, + 0.00876997783780098, + 0.0389203205704689, + 0.0036660851910710335, + -0.032583631575107574, + -0.07954606413841248, + 0.06972067058086395, + 0.010120552033185959, + 0.01155077200382948, + 0.05286248028278351, + -0.025174038484692574, + -0.05203663930296898, + -0.03839777037501335, + -0.01782827638089657, + -0.017501259222626686, + 0.02061249315738678, + -0.061216097325086594, + 0.015332553535699844, + 0.01914072409272194, + 0.009182911366224289, + 0.031121354550123215, + 0.03498803824186325, + 0.005582719575613737, + -0.01310486625880003, + -0.015236243605613708, + 0.0034790593199431896, + -0.010066062211990356, + 0.07007227838039398, + 0.01827995665371418, + -0.027257448062300682, + -0.00771999079734087, + -0.020211830735206604, + 0.014238390140235424, + -0.016571056097745895, + 0.012317397631704807, + 0.03490254282951355, + -0.0032249162904918194, + 0.013341187499463558, + 0.010921325534582138, + -0.07767242193222046, + 0.010776365175843239, + -0.03543119505047798, + -0.042744990438222885, + -0.012271606363356113, + 0.009289121255278587, + 0.026216216385364532, + 0.002257346175611019, + -0.07355936616659164, + -0.022780301049351692, + 0.023211222141981125, + -0.07024453580379486, + -0.045035142451524734, + 0.031765975058078766, + 0.01666918210685253, + -0.01750485971570015, + 0.012317693792283535, + -0.02262214757502079, + 0.0061326585710048676, + 0.006104988045990467, + -0.019462386146187782, + 0.0430043563246727, + -0.004700490273535252, + 0.0037936861626803875, + -0.009976992383599281, + 0.07309037446975708, + -0.005516857374459505, + -0.007472750265151262, + 0.007569437380880117, + 0.0027441871352493763, + 0.016511622816324234, + 0.018702497705817223, + -0.08777831494808197, + -0.020916424691677094, + 0.006886648945510387, + 0.018000897020101547, + -0.014757873490452766, + -0.019337620586156845, + -0.026533687487244606, + -0.02536587417125702, + -0.0028854352422058582, + -0.008705871179699898, + -0.012661791406571865, + -0.03152817115187645, + -0.11081846058368683, + 0.047864899039268494, + -0.10565868020057678, + 0.015908170491456985, + -0.03851975128054619, + -0.05112076923251152, + 0.018411051481962204, + 0.012159164063632488, + 0.014998196624219418, + 0.046061959117650986, + -0.009478325955569744, + -0.006542269140481949, + -0.02516367845237255, + -0.020094655454158783, + 0.023472629487514496, + -0.006540530361235142, + -0.02033054642379284, + -0.026812700554728508, + -0.01264676358550787, + -0.01172262616455555, + -0.004603608511388302, + -0.006062120199203491, + -0.05348094180226326, + -0.013712105341255665, + 0.022324010729789734, + -0.010996522381901741, + -0.030862631276249886, + -0.021953077986836433, + -0.0017874714685603976, + -0.011582383885979652, + -0.002261030487716198, + 0.005219693295657635, + -0.01234495174139738, + 0.015014395117759705, + 0.03638843074440956, + 0.0018147504888474941, + -0.036949723958969116, + -0.021256158128380775, + 0.0044378130696713924, + -0.0051825447008013725, + 0.035334616899490356, + 0.0164361372590065, + 0.022832412272691727, + -0.01697365567088127, + 0.014575209468603134, + 0.020101895555853844, + 0.04701633378863335, + 0.013597900047898293, + -0.03875747695565224, + -0.02353709749877453, + -0.010250880382955074, + 0.0322011262178421, + 0.0008517175447195768, + -0.028560446575284004, + 0.04002884775400162, + 0.03460213169455528, + 0.007920365780591965, + -0.0023547818418592215, + 0.013146799057722092, + -0.03273962438106537, + -0.017934486269950867, + 0.0002806011470966041, + -0.010063933208584785, + -0.03336071968078613, + -0.03033611550927162, + -0.02838103659451008, + 0.020553437992930412, + 0.008141008205711842, + 0.011010509915649891, + 0.00340569787658751, + 0.007308154832571745, + -0.004563243594020605, + -0.033408261835575104, + -0.0945386290550232, + -0.02027272991836071, + -0.0033805668354034424, + 0.010376759804785252, + -0.019764747470617294, + 0.029805252328515053, + 0.010455715470016003, + 0.012361939996480942, + 0.016982339322566986, + 0.029665973037481308, + 0.017613274976611137, + -0.003412944497540593, + -0.007393859326839447, + 0.0076207444071769714, + -0.013964543119072914, + -0.02840360254049301, + 0.011164753697812557, + -0.01818760670721531, + -0.022429082542657852, + 0.024766139686107635, + -0.0024154658894985914, + -0.011418541893362999, + -0.020273597911000252, + -0.03436913341283798, + -0.0033349457662552595, + 0.030331483110785484, + 0.005971607752144337, + -0.012337949126958847, + 0.021059786900877953, + 0.029692206531763077, + 0.008077569305896759, + 0.0023765384685248137, + -0.04746701568365097, + -0.02991308458149433, + 0.03573398292064667, + -0.006573257502168417, + -0.03730474039912224, + -0.003168727969750762, + 0.0037761791609227657, + 0.024845803156495094, + 0.027066178619861603, + 0.010322855785489082, + 0.025186587125062943, + 0.047912947833538055, + 0.015817273408174515, + -0.08147390931844711, + 0.007835646159946918, + 0.006361573468893766, + -0.02795964665710926, + -0.014438491314649582, + -0.00899568572640419, + 0.0024418614339083433, + 0.003826134605333209, + 0.02812759019434452, + -0.039068493992090225, + 0.02746628411114216, + 0.03362565115094185, + 0.03790106624364853, + -0.015010085888206959, + 0.011728408746421337, + -0.06307464092969894, + 0.056341502815485, + 0.019206862896680832, + -0.013359622098505497, + -0.020821956917643547, + -0.0016500072088092566, + 0.0289753545075655, + -0.013977794907987118, + 0.02876286767423153, + -0.026674704626202583, + 0.031216921284794807, + -0.013257638551294804, + -0.006974868476390839, + 0.047563400119543076, + -0.03281303867697716, + -0.03146405518054962, + 0.09126400202512741, + 0.042518943548202515, + -0.020341113209724426, + 0.021120084449648857, + -0.023559466004371643, + 0.0326806902885437, + 0.022093284875154495, + 0.017356261610984802, + -0.02048088237643242, + -0.027252431958913803, + -0.005467843730002642, + 0.0006428328342735767, + -0.001659922651015222, + -0.0012834520312026143, + 0.06855214387178421, + -0.02702779695391655, + -0.016811741515994072, + -0.00520159350708127, + 0.04403913766145706, + -0.015526633709669113, + -0.02952350676059723, + 0.012844511307775974, + -2.5592613383196294e-05, + 0.006521996110677719, + -0.07579609006643295, + 0.047721635550260544, + -0.007776588201522827, + -0.00805732887238264, + -0.002776114968582988, + -0.00035709384246729314, + -0.029905086383223534, + 0.021034758538007736, + 0.04708576947450638, + 0.03133057802915573, + -0.004747156053781509, + -0.03106013871729374, + 0.00560083519667387, + 0.016280241310596466, + -0.0030226053204387426, + -0.06966380029916763, + -0.025173939764499664, + -0.04311203584074974, + 0.034172095358371735, + 0.02002471126616001, + 0.05340750887989998, + -0.030361248180270195, + -0.03638484328985214, + 0.0200775358825922, + -0.002921676728874445, + -0.0303577221930027, + -0.0030502285808324814, + 0.03108902834355831, + -0.026134725660085678, + 0.04158933833241463, + -0.0014846589183434844, + 0.014833393506705761, + -0.06690272688865662, + 0.06476278603076935, + -0.01734505593776703, + 0.021847471594810486, + -0.015288790687918663, + -0.005294680595397949, + -0.024245157837867737, + -0.05637912452220917, + 0.016568541526794434, + 0.01599452644586563, + 0.015143563970923424, + -0.013831737451255322, + -0.02197391539812088, + -0.02436663769185543, + 0.035109393298625946, + -0.0032521712128072977, + 0.002885974943637848, + -0.0036581663880497217, + 0.005900197196751833, + 0.020815512165427208, + 0.05923560634255409, + 0.022433210164308548, + 0.026462268084287643, + 0.046797383576631546, + -0.012722542509436607, + -0.004001209046691656, + 0.02319933846592903, + -0.005132660735398531, + -0.01750502735376358, + 0.02671659179031849, + 0.0011043307604268193, + 0.011696316301822662, + -0.027172882109880447, + -0.04931649565696716, + -0.03928200155496597, + -0.03655482083559036, + -0.044533491134643555, + -0.033024825155735016, + 0.031484879553318024, + 0.0015747525030747056, + 0.013992158696055412, + -0.011082783341407776, + 0.058366384357213974, + 0.0007849981193430722, + -0.020289191976189613, + -0.036364294588565826, + -0.0003042309544980526, + 0.0032785420771688223, + -0.0009119949536398053, + -0.009067089296877384, + -0.011669191531836987, + -0.05613282695412636, + -0.04463493451476097, + 0.0488666370511055, + -0.025465240702033043, + -0.016081033274531364, + -0.01511476468294859, + -0.049398548901081085, + 0.00081606674939394, + 0.011516790837049484, + -0.03373502939939499, + -0.07188614457845688, + -0.02319214679300785, + -0.024712825194001198, + 0.07384820282459259, + 0.09156180173158646, + 0.00019825516210403293, + 0.031239651143550873, + -0.017994431778788567, + -0.030135508626699448, + 0.05342705175280571, + 0.006457397248595953, + 0.015737295150756836, + -0.005005473271012306, + -0.021667130291461945, + -0.042088087648153305, + -0.0020510926842689514, + 0.03420267626643181, + -0.002451546723023057, + 0.009702228009700775, + -0.04219183325767517, + 0.02158496156334877, + -0.004401900339871645, + 0.03144201636314392, + -0.032688695937395096, + 0.015750626102089882, + 0.03916223347187042, + -0.09295540302991867, + 0.04674222320318222, + 0.0347980372607708, + 0.015340282581746578, + 0.00913195125758648, + -0.010898529551923275, + -0.09463796764612198, + 0.05809823423624039, + 0.01758928783237934, + 0.012577728368341923, + 0.02826913446187973, + -0.04275061562657356, + 0.02271064929664135, + 0.0037265268620103598, + 0.09027870744466782, + -0.01628546603024006, + -0.019593363627791405, + -0.015075430274009705, + 0.006398284342139959, + 0.008757682517170906, + 0.07651323825120926, + -0.012127868831157684, + -0.013969404622912407, + 0.03751450404524803, + -0.010412517935037613, + 0.03476336598396301, + 0.003970033023506403, + -0.04756859317421913, + 0.013295439071953297, + 0.0031755887903273106, + -0.027869660407304764, + -0.02906903065741062, + -0.012024270370602608, + 0.06157510355114937, + -0.0022509952541440725, + -0.022368954494595528, + 0.005146115552634001, + 0.011111547239124775, + -0.08462048321962357, + 0.004281588830053806, + 0.030567463487386703, + 0.026383252814412117, + 0.012922965921461582, + 0.006033658050000668, + 0.0025007231160998344, + -0.0039006229490041733, + 0.016864584758877754, + -0.01436050608754158, + -0.01912541873753071, + -0.015661798417568207, + 0.024072853848338127, + -0.00734648946672678, + -0.0017896656645461917, + -0.002869663294404745, + 0.0031303034629672766, + 0.006061869207769632, + -0.01587904989719391, + 0.02160782180726528, + 0.007033948320895433, + -0.06361950188875198, + -0.013914207927882671, + -0.0016548361163586378, + 0.01050892286002636, + 0.05393676832318306, + 0.032103173434734344, + 0.01555546559393406, + 0.008165689185261726, + 0.006736317183822393, + -0.011617451906204224, + 0.017707858234643936, + 0.0038919460494071245, + 0.022088436409831047, + 0.013587447814643383, + -0.011022343300282955, + 0.01511739008128643, + 0.048176027834415436, + 0.0004928248235955834, + -0.0192458163946867, + 0.01601877622306347, + 0.005168204195797443, + -0.06958550214767456, + 0.0056309481151402, + -0.03758968412876129, + 0.007867005653679371, + -0.015450496226549149, + -0.014029977843165398, + 0.018818242475390434, + -0.0723375529050827, + 0.11770665645599365, + -0.03293896093964577, + -0.045259732753038406, + -0.033595506101846695, + -0.0539788156747818, + 0.024933023378252983, + -0.017200855538249016, + 0.003369638929143548, + 0.015565158799290657, + -0.07926629483699799, + 0.02291092835366726, + -0.052838291972875595, + 0.01499191951006651, + -0.01686524786055088, + -0.059460729360580444, + 0.007944255135953426, + 0.014291475526988506, + 0.006634040270000696, + -0.07450951635837555, + 0.0015583107015118003, + -0.027781324461102486, + -0.04817969352006912, + -0.009772222489118576, + -0.01695145107805729, + 0.035638101398944855, + -0.00386842992156744, + 0.03326606750488281, + -0.030395494773983955, + -0.0077011119574308395, + 0.051659416407346725, + -0.037418533116579056, + -0.030780643224716187, + 0.002353732706978917, + 0.0471351332962513, + -0.015135263092815876, + 0.04153378680348396, + 0.05413531884551048, + 0.016589023172855377, + 0.05924320966005325, + 0.00854929257184267, + 0.03962870314717293, + 0.05764385685324669, + -0.03708064928650856, + 0.007019392214715481, + -0.023482780903577805, + 0.008161637932062149, + -0.029815224930644035, + 0.05055369809269905, + 0.046735115349292755, + 0.04742772877216339, + -0.01621115952730179, + -0.00023762187629472464, + -0.03361137956380844, + 0.023902516812086105, + 0.0013290065107867122, + -0.023256385698914528, + 0.03239269554615021, + 0.009684184566140175, + -0.05757822096347809, + -0.07959460467100143, + 0.03296845406293869, + -0.02154211886227131, + -0.04409860074520111, + 0.04879961535334587, + -0.011961102485656738, + -0.018208716064691544, + 0.051445767283439636, + 0.007342845667153597, + 0.061945609748363495, + -0.051455967128276825, + 0.0224493145942688, + 0.011172682978212833, + 0.052966732531785965, + -0.004224642179906368, + -0.007187028881162405, + -0.02430652268230915, + 0.013647322542965412, + 0.013226138427853584, + 0.02223430760204792, + 0.01123492605984211, + 0.003133527934551239, + -0.0009454923565499485, + 0.03109685331583023, + 0.04151264578104019, + 0.046915311366319656, + 0.050717804580926895, + 0.044939637184143066, + -0.0015267000999301672, + 0.009648618288338184, + 0.006518997717648745, + -0.03733878582715988, + -0.019981633871793747, + -0.0506281778216362, + 0.04844386875629425, + 0.013911888003349304, + -0.056085892021656036, + 0.052932627499103546, + 0.007432314567267895, + -0.03727266937494278, + 0.0443301796913147, + -0.006409604102373123, + 0.0010305746691301465, + 0.04279393330216408, + 0.0053093452006578445, + -0.012540296651422977, + 0.017246566712856293, + 0.0009411368519067764, + -0.04439552128314972, + -0.017006466165184975, + -0.021980954334139824, + 0.053365558385849, + -0.0031243173871189356, + -0.0382656455039978, + 0.004189555533230305, + -0.028234723955392838, + -0.0179754551500082, + -0.0039937556721270084, + 0.06640059500932693, + -0.032407648861408234, + -0.0015355097129940987, + -0.037762269377708435, + -0.0009798472747206688, + -0.02863658219575882, + 0.007922367192804813, + -0.012030606158077717, + 0.008772159926593304, + -0.04102252423763275, + -0.0001859820622485131, + -0.008386383764445782, + 0.021248256787657738, + -0.008884167298674583, + -0.021860036998987198, + -0.062217820435762405, + -0.004987647291272879, + -0.014601154252886772, + -0.04406135901808739, + 0.0074034640565514565, + -0.01243628840893507, + 0.0013052454451099038, + 0.03180568292737007, + -0.026586825028061867, + 0.010734882205724716, + 0.047108136117458344, + -0.02507997490465641, + -0.07371514290571213, + -0.03174542263150215, + -0.05629219859838486, + -0.021231524646282196, + -0.029728561639785767, + 0.02242543362081051, + 0.007152573671191931, + -0.012070517055690289, + -0.010147562250494957, + -0.03050198405981064, + -0.02181130088865757, + -0.009431066922843456, + -0.034999895840883255, + -0.019003713503479958, + -0.014051046222448349, + 0.005691740196198225, + 0.02049165405333042, + 0.032893989235162735, + -0.026426998898386955, + 0.04956565052270889, + 0.06609220802783966, + -0.030288217589259148, + 0.044702429324388504, + 0.025367043912410736, + 0.009821689687669277, + -0.03160995617508888, + -0.013138909824192524, + 0.01273981761187315, + -0.014590805396437645, + 0.028954630717635155, + 0.006551134400069714, + -0.0024677629116922617, + 0.001889204140752554, + -0.06546887755393982, + 0.008729759603738785, + -0.03328686207532883, + -0.026216186583042145, + -0.03050527535378933, + 0.031252022832632065, + -0.010454069823026657, + 0.033180490136146545, + -0.05962357670068741, + -0.01536737009882927, + -0.07517758756875992, + -0.011402656324207783, + 0.026027288287878036, + -0.019119948148727417, + -0.002024727873504162, + -0.010137604549527168, + -0.04649246484041214, + -0.019431976601481438, + -0.006401868537068367, + 0.019142964854836464, + -0.01153569109737873, + -0.04250551387667656, + -0.053164172917604446, + 0.03730322793126106, + -0.011031041853129864, + -0.08370820432901382, + 0.04456523433327675, + 0.03610467165708542, + -0.036800943315029144, + -0.014399658888578415, + -0.019775602966547012, + 0.015699390321969986, + -0.033770471811294556, + 0.010947000235319138, + 0.02849561534821987, + 0.033307600766420364, + -0.026994958519935608, + 0.015424738638103008, + 0.01340261660516262, + 0.01779741793870926, + -0.039886582642793655, + -0.0293258186429739, + 0.04076559841632843, + -0.016592618077993393, + -0.030403394252061844, + -0.04919639974832535, + -0.015248597599565983, + -0.05542212352156639, + -0.04950852319598198, + 0.006115230266004801, + 0.04882735013961792, + 0.004914489574730396, + -0.023650038987398148, + 0.019235733896493912, + 0.03832923620939255, + 0.012217099778354168, + 0.02125450037419796, + -0.016898486763238907, + -0.02136055752635002, + 0.02562907710671425, + -0.014346112497150898, + 0.011999920941889286, + -0.000543249654583633, + -0.022844212129712105, + -0.042697928845882416, + 0.0335579551756382, + 0.017817964777350426, + 0.02981947734951973, + 0.007652566768229008, + -0.020683174952864647, + 0.008284874260425568, + 0.026171328499913216, + -0.011823141947388649, + 0.0064926729537546635, + 0.013229764066636562, + 0.06704851984977722, + -0.004064592998474836, + 0.009981776587665081, + -0.01177168358117342, + 0.05831098556518555, + 0.013416752219200134, + -0.014698057435452938, + -0.05089012533426285, + 0.03861195221543312, + -0.015229168348014355, + -0.024059660732746124, + -0.032656386494636536, + 0.024906564503908157, + 0.00875108502805233, + 0.0023663474712520838, + 0.006830908358097076, + -0.04851961508393288, + 0.05186767876148224, + -0.0116684315726161, + -0.02015090174973011, + -0.05006413906812668, + 0.023933198302984238, + -0.016092801466584206, + -0.010168096050620079, + 0.009816622361540794, + -0.0586019903421402, + 0.006462295539677143, + 0.006244148593395948, + 0.03939809277653694, + -0.0051846811547875404, + 0.0597221814095974, + -0.05129655450582504, + 0.030195532366633415, + -0.07772248983383179, + 0.015171564184129238, + -0.03215204179286957, + 0.008682486601173878, + 0.03490260988473892, + -0.018702907487750053, + -0.016351142898201942, + -0.0074890549294650555, + -0.013598251156508923, + -0.013659116812050343, + 0.003882667049765587, + 0.030392209067940712, + -0.04561528563499451, + 0.02132568694651127, + -0.011524083092808723, + -0.015360251069068909, + 0.0617159903049469, + -0.018615392968058586, + 0.02744351141154766, + 0.052740179002285004, + 0.03682137653231621, + 0.04545506089925766, + -0.005097148008644581, + -0.007824701257050037, + 0.039215900003910065, + 0.001328780665062368, + 0.042264435440301895, + -0.014486529864370823, + 0.041317254304885864, + -0.0021110759116709232, + 0.01299972552806139, + -0.012196374125778675, + 0.033194977790117264, + -0.014981563203036785, + -0.027018094435334206, + 0.03452625125646591, + -0.0011152480728924274, + -0.03104156255722046, + 0.008627106435596943, + 0.001123961410485208, + -0.030266083776950836, + 0.02679593674838543, + -0.006135534029453993, + 0.006486815400421619, + 0.03636101260781288, + -0.01873207464814186, + 0.0816187933087349, + -0.07416536659002304, + 0.007281920872628689, + -0.08064959198236465, + -0.020980361849069595, + -0.01582682505249977, + -0.03345341235399246, + 0.022603584453463554, + 0.036125678569078445, + 0.011952102184295654, + 0.028790300711989403, + 0.028243981301784515, + 0.013091330416500568, + -0.028303073719143867, + -0.0289016030728817, + -0.010890859179198742, + -0.03585723787546158, + 0.01534185092896223, + 0.028670763596892357, + 0.05582272261381149, + 0.043048400431871414, + -0.046577297151088715, + -0.00021706792176701128, + 0.006859867833554745, + 0.0047738696448504925, + 0.03867040574550629, + 0.02195028029382229, + 0.02221176028251648, + 0.027516698464751244, + -0.023982008919119835, + 0.01213848777115345, + 0.005436724983155727, + 0.038546085357666016, + -0.006604516878724098, + 0.02771805413067341, + 0.01731872372329235, + 0.009386352263391018, + -0.010228431783616543, + -0.005497313104569912, + -0.07110501080751419, + 0.044117726385593414, + 0.06603174656629562, + -0.0019038165919482708, + -0.05059020593762398, + 0.030217137187719345, + -0.020239153876900673, + -0.043571989983320236, + -0.05787179619073868, + -0.04429080709815025, + -0.02636566571891308, + 0.07922428846359253, + -0.007441862486302853, + 0.020219432190060616, + 0.018639126792550087, + 0.010340756736695766, + 0.0005852695321664214, + -0.03064826875925064, + 0.04919853061437607, + 0.019898567348718643, + -0.04017159342765808, + -0.0007128379656933248, + -0.0101027125492692, + -0.01749281957745552, + 0.030291235074400902, + 0.026118310168385506, + 0.023012975230813026, + 0.017310606315732002, + -0.02549409680068493, + -0.014770230278372765, + -0.028855372220277786, + -0.008542370051145554, + 0.010840963572263718, + -0.008202373050153255, + -0.020755963400006294, + -0.015288216061890125, + 0.013647894375026226, + -0.009343358688056469, + -0.018267661333084106, + -0.0053557404316961765, + -0.09839506447315216, + 0.00704303989186883, + 0.0439235083758831, + 0.0038909241557121277, + 0.01197046972811222, + 0.0010458693141117692, + 0.03325720503926277, + 0.005418125074356794, + 0.033134713768959045, + -0.015269693918526173, + -0.01725863292813301, + -0.02798277512192726, + 0.006409784313291311, + -0.00018351302423980087, + -0.03949413076043129, + -0.013912112452089787, + -0.014158179052174091, + 0.03326411545276642, + 0.03854389116168022, + -0.002021046355366707, + -0.04041105508804321, + -0.019675130024552345, + -0.03867163509130478, + -0.04893549531698227, + -0.031160395592451096, + -0.04219178110361099, + 0.015647180378437042, + 0.02663961797952652, + 0.007021185476332903, + 0.011167763732373714, + 0.009371000342071056, + -0.04881799593567848, + -0.01301595102995634, + 0.03309217840433121, + -0.043379321694374084, + 0.057127390056848526, + 0.0010177911026403308, + 0.028170429170131683, + 0.03558071330189705, + 0.0139695443212986, + 0.007915327325463295, + -0.00689051253721118, + 0.01955784112215042, + -0.03529874607920647, + 0.04222847893834114, + 0.024894775822758675, + 0.013501191511750221, + -0.04001816734671593, + 0.0434856042265892, + 0.001411456847563386, + 0.019229909405112267, + -0.011898133903741837, + 0.002387681044638157, + -0.014106634072959423, + 0.044346969574689865, + 0.02524697221815586, + -0.0033078454434871674, + 0.02779233269393444, + 0.007639683783054352, + 0.01358500774949789, + 0.0024841846898198128, + -0.009800932370126247, + -0.030271904543042183, + 0.007034643553197384, + 0.007123985327780247, + -0.0024143229238688946, + 0.030035337433218956, + -0.0174122117459774, + -0.03055362030863762, + 0.003842309582978487, + 0.025935115292668343, + 0.005029118619859219, + -0.020696764811873436, + 0.008126156404614449, + 0.016801144927740097, + -0.029594233259558678, + 0.023160818964242935, + -0.01475569698959589, + -0.0006421154248528183, + 0.028960993513464928, + -0.007313320878893137, + 0.028395498171448708, + -0.03243309631943703, + -0.02472333423793316, + 0.001919808448292315, + -0.03983883187174797, + -0.0349162220954895, + 0.01638980396091938, + 0.03751644119620323, + 0.01822461187839508, + 0.04827205836772919, + -0.0009093948756344616, + 0.0009393136133439839, + -0.013233396224677563, + 0.050654686987400055, + -0.03892054408788681, + 0.01757161132991314, + 3.5861568903783336e-05, + -0.002443113597109914, + -0.029127860441803932, + -0.013582112267613411, + 0.04113523289561272, + -0.014631981961429119, + -0.04341229423880577, + 0.029805529862642288, + -0.010008656419813633, + -0.011392554268240929, + 0.011272404342889786, + -0.012803113088011742, + -0.006595627870410681, + 0.03301098197698593, + 0.028992218896746635, + 0.004837051499634981, + 0.010107974521815777, + 0.012788933701813221, + 0.01380283385515213, + 0.0012223086087033153, + -0.008961220271885395, + 0.04291355982422829, + -0.004098454490303993, + 0.0049583339132368565, + -0.013610492460429668, + 0.00470493920147419, + 0.04474280774593353, + 0.022198030725121498, + 0.03486524149775505, + -0.018369562923908234, + -0.049724139273166656, + 0.026260342448949814, + 0.00469749653711915 + ], + "start_index": 27098, + "end_index": 27160, + "token_count": 8, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "32d92792-bef9-5859-ab9f-96a0fe6a409a", + "_source": { + "text": "\n\n---\n\n# X.4 Palabras reservadas\n\nLas siguientes palabras están reservadas y **no pueden utilizarse como identificadores**.\n\n## Control de flujo\n\n\n\nif\nelse\nend\nstartLoop\nendLoop\ntry\nexception\nreturn", + "embedding": [ + 0.03673077002167702, + -0.05942912772297859, + -0.009366217069327831, + -0.13721299171447754, + 0.013110148720443249, + -0.035306476056575775, + 0.0031155655160546303, + -0.009918693453073502, + -0.013316022232174873, + -0.013060150668025017, + 0.027142856270074844, + -0.06561891734600067, + -0.010907565243542194, + -0.008213294669985771, + -0.04034648463129997, + 0.05036573484539986, + 0.03010724112391472, + -0.010529700666666031, + -0.023203272372484207, + 0.0002841467794496566, + -0.01535201258957386, + -0.001445429865270853, + -0.008020779117941856, + 0.0672357827425003, + 0.06233855336904526, + -0.035262610763311386, + 0.009945601224899292, + 0.05917662754654884, + 0.02442103624343872, + -0.022139910608530045, + -0.04434095323085785, + 0.02344791777431965, + -0.029452327638864517, + -0.014862344600260258, + -0.020875848829746246, + -0.013190335594117641, + -0.016519298776984215, + -0.009877042844891548, + 0.004749984480440617, + 0.0133779002353549, + -0.0014007783029228449, + 0.015761729329824448, + 0.017458630725741386, + -0.02155594527721405, + 0.005926735233515501, + -0.032069385051727295, + 0.03194337710738182, + 0.01716970093548298, + 0.011837215162813663, + -0.007941908203065395, + -0.0572032630443573, + 0.01161180343478918, + -0.015943074598908424, + 0.004108548164367676, + -0.018330935388803482, + 0.030117496848106384, + 0.003822427010163665, + -0.07039167732000351, + -0.022943751886487007, + 0.011746793054044247, + 0.011994458734989166, + -0.024315332993865013, + -0.03736291080713272, + -0.0062356735579669476, + 0.0035532990004867315, + 0.0028432863764464855, + -0.02711874060332775, + -0.03335902467370033, + -0.07302626222372055, + 0.00802286621183157, + 0.013769595883786678, + 0.0647430270910263, + -0.01957728900015354, + 0.006046909838914871, + 0.023378664627671242, + -0.07961811870336533, + -0.013600902631878853, + -0.04099038988351822, + -0.0009131903643719852, + 0.05783282592892647, + 0.018527988344430923, + 0.016059966757893562, + 0.025757310912013054, + -0.0026301865000277758, + 0.025869095697999, + 0.03814871236681938, + 0.0003306784201413393, + 0.01872396096587181, + 0.04802146553993225, + 0.06703231483697891, + -0.023353775963187218, + 0.03198768198490143, + -0.015703102573752403, + -0.026965467259287834, + 0.028686746954917908, + -0.030131619423627853, + -0.0029260367155075073, + 0.045638278126716614, + 0.03288888931274414, + -0.013807249255478382, + -0.04058456048369408, + -0.033222995698451996, + -0.022876402363181114, + 0.061032652854919434, + 0.00756484642624855, + 0.034682806581258774, + -0.021856866776943207, + 0.04463360458612442, + -0.03721117228269577, + 0.0322582982480526, + 0.016622772440314293, + -0.004421422723680735, + 0.039884403347969055, + 0.058867208659648895, + 0.001835618750192225, + 0.05851970613002777, + -0.039302047342061996, + -0.05304412171244621, + -0.010570782236754894, + -0.005923134740442038, + 0.034900497645139694, + -0.015875397250056267, + -0.009808214381337166, + 0.0013574179029092193, + 0.07771363854408264, + 0.003943250514566898, + -0.041359834372997284, + -0.009529617615044117, + -0.005562205333262682, + -0.005123411305248737, + -0.011160001158714294, + 0.004665994085371494, + -0.002510775811970234, + 0.008566528558731079, + 0.034631598740816116, + -0.0056724692694842815, + -0.017884816974401474, + -0.02694900892674923, + 0.03407326713204384, + -0.007536428514868021, + -0.053316205739974976, + -0.03282524645328522, + -0.011865242384374142, + -0.028394773602485657, + 0.016541404649615288, + 0.02542463131248951, + 0.008428194560110569, + -0.012477540411055088, + -0.013752199709415436, + 0.018275652080774307, + 0.00422205263748765, + -0.007442654576152563, + -0.026954682543873787, + -0.02252550795674324, + -0.027356652542948723, + 0.001859920215792954, + 0.006585123483091593, + -0.0060229552909731865, + 0.006416193209588528, + 0.029527729377150536, + -0.003902577329427004, + 0.01057871151715517, + -0.02040666714310646, + -0.07499519735574722, + -0.020283540710806847, + -0.0031566196121275425, + -0.03368758782744408, + -0.02222190424799919, + 0.005605097394436598, + 0.0038821909110993147, + -0.0014133824734017253, + 0.013210449367761612, + 0.018826447427272797, + 0.0232040174305439, + 0.002991429530084133, + -0.0038264121394604445, + -0.02734581008553505, + 0.03400256857275963, + -0.01937495358288288, + -0.025655413046479225, + -0.0031145592220127583, + 0.0038220970891416073, + -0.00621529808267951, + 0.009623688645660877, + 0.03632083535194397, + 0.04365326464176178, + -0.007258627098053694, + -0.005895803216844797, + 0.02665271982550621, + -0.03963945806026459, + -0.010600621812045574, + 0.0012820475967600942, + -0.020968766883015633, + 0.0015625214437022805, + -0.005061314441263676, + -0.026616491377353668, + 0.01282256469130516, + -0.014969469979405403, + 0.014187864027917385, + -0.0032223237212747335, + 0.024337539449334145, + -0.03125062584877014, + 0.012947862036526203, + 0.010503724217414856, + -0.029965432360768318, + -0.027629757300019264, + -0.0022944880183786154, + 0.006059241946786642, + -0.02003270573914051, + 0.029344983398914337, + 0.0031807064078748226, + 0.03569124639034271, + -0.023345516994595528, + 0.019014012068510056, + 0.0039018653333187103, + -0.016443151980638504, + -0.010659783147275448, + 0.01976294443011284, + 0.012036255560815334, + 0.034406933933496475, + -0.018880551680922508, + 0.017133016139268875, + -0.06184808537364006, + 0.005789515562355518, + 0.01455362606793642, + 0.028953764587640762, + 0.029673226177692413, + -0.025009023025631905, + -0.028750162571668625, + 0.01637568697333336, + -0.009871941059827805, + 0.005140784662216902, + 0.043512240052223206, + -0.005083785392343998, + 0.01839587278664112, + -0.008241713978350163, + 0.004795386455953121, + 0.008240967988967896, + 0.031204165890812874, + 0.0036839356180280447, + -0.01720426231622696, + 0.00820054393261671, + -0.010482420213520527, + 0.0230556670576334, + -0.032798994332551956, + 0.024738211184740067, + 0.026625143364071846, + -0.011848525144159794, + -0.02084067463874817, + 0.018302079290151596, + 0.06490271538496017, + 0.04034734144806862, + 0.02446954883635044, + -0.003790199290961027, + 0.0329865887761116, + -0.003653201274573803, + 0.016559330746531487, + -0.04924977570772171, + 0.006977426819503307, + -0.026365799829363823, + -0.006996216252446175, + -0.03757261112332344, + -0.021062757819890976, + 0.04663490504026413, + -0.03592323884367943, + 0.013249939307570457, + 0.0024755988270044327, + -0.047068722546100616, + -0.0330263115465641, + -0.02673535794019699, + -0.000797917484305799, + 0.026526030153036118, + 0.024636635556817055, + -0.002274635247886181, + 0.004667976405471563, + -0.008479125797748566, + -0.0063755810260772705, + -0.1071600541472435, + 0.025305185467004776, + -0.007955087348818779, + 0.030054263770580292, + -0.05669938027858734, + -0.025714091956615448, + -0.0534137599170208, + -0.01886214129626751, + 0.03136875107884407, + 0.002692754380404949, + -0.003872095374390483, + -0.007099519483745098, + -0.008934331126511097, + -0.004474232904613018, + 0.009005486033856869, + -0.03516846150159836, + 0.03288722783327103, + -0.01154070533812046, + -0.01976899243891239, + -0.0585046149790287, + 0.019559402018785477, + 0.010166856460273266, + -0.0013370083179324865, + 0.027147723361849785, + -0.013460053130984306, + -0.020289815962314606, + -0.05098355934023857, + -0.0373498871922493, + 0.0115398820489645, + 0.07001634687185287, + 0.01713092252612114, + 0.021287700161337852, + 0.059040240943431854, + 0.037528183311223984, + 0.01135237980633974, + -0.01132083311676979, + -0.05716719850897789, + 0.0909540206193924, + 0.03287762030959129, + 0.027254408225417137, + 0.054731596261262894, + -0.01572245918214321, + -0.02829301916062832, + 0.02803722396492958, + -0.036974724382162094, + -0.000594951503444463, + -0.01150141004472971, + 0.0036458545364439487, + 0.02223115600645542, + 0.05412241816520691, + 0.049493756145238876, + 0.06334248930215836, + 0.021463727578520775, + 0.023928556591272354, + -0.00012957303260918707, + 0.005966935306787491, + 0.005577452946454287, + -0.03521088510751724, + -0.008536175824701786, + -0.015257518738508224, + 0.04294726997613907, + -0.03237052634358406, + 0.020512929186224937, + -0.015765229240059853, + 0.02517618052661419, + -0.011784467846155167, + 0.015293493866920471, + -0.02071404457092285, + -0.029001448303461075, + 0.002718938747420907, + 0.07346414774656296, + 0.00084016437176615, + -0.005876403301954269, + 0.029008030891418457, + 0.01726020872592926, + 0.008984383195638657, + 0.001525907195173204, + -0.019347716122865677, + -0.02183130942285061, + -0.012262476608157158, + 0.06988801062107086, + -0.031363263726234436, + -0.017230099067091942, + -0.05194380134344101, + -0.005310991778969765, + 0.034869205206632614, + 0.06376423686742783, + 0.031564950942993164, + -0.03779468685388565, + -0.03852386027574539, + -0.011001655831933022, + 0.030658090487122536, + -0.056671760976314545, + -0.08742446452379227, + 0.027787137776613235, + -0.0031730819027870893, + 0.008737092837691307, + 0.09643464535474777, + -0.0016891169361770153, + -0.011446620337665081, + 0.00513068400323391, + 0.038558200001716614, + 0.011819781735539436, + -0.009997560642659664, + 0.014039468951523304, + -0.05002765357494354, + -0.007586119696497917, + -0.06041833758354187, + 0.026448069140315056, + 0.019322583451867104, + -0.04081607982516289, + 0.0022824122570455074, + -0.023533256724476814, + -0.0081091383472085, + -0.02361312322318554, + 0.08255422115325928, + 0.06132018566131592, + 0.001685933442786336, + 0.01629536785185337, + -0.05762867629528046, + -0.013240372762084007, + -0.037039946764707565, + 0.00918323639780283, + 0.015750398859381676, + -0.05661379545927048, + -0.012319236062467098, + 0.03922814130783081, + -0.004241147078573704, + -0.014234457165002823, + -0.006857626605778933, + 0.008885810151696205, + -0.00927488598972559, + 0.007006967905908823, + 0.04522555693984032, + 0.017348699271678925, + -0.028416074812412262, + 0.022201383486390114, + -0.018911899998784065, + 0.01662876270711422, + 0.0666007399559021, + -0.01236328762024641, + -0.027674540877342224, + -0.026240240782499313, + -0.019575802609324455, + 0.027356134727597237, + 0.013935843482613564, + 0.013646584935486317, + 0.03834766149520874, + 0.005638258531689644, + -0.04172535240650177, + -0.03675779327750206, + 0.01184999942779541, + 0.009243475273251534, + -0.0397690124809742, + 0.01227717474102974, + 0.010643675923347473, + 0.047897715121507645, + -0.05984104424715042, + -0.012190127745270729, + 0.05656708776950836, + 0.043874889612197876, + 0.05644936487078667, + 0.003398663830012083, + 0.019425848498940468, + 0.03079206682741642, + -0.015986628830432892, + -0.007450237404555082, + -0.011764897033572197, + 0.002561266766861081, + -0.06664342433214188, + 0.04475206881761551, + 0.00662219850346446, + 0.0022738908883184195, + 0.016680140048265457, + -0.030004341155290604, + -0.016717782244086266, + -0.037248387932777405, + -0.03063269890844822, + 0.007422934751957655, + 0.010105826891958714, + -0.03834042698144913, + 0.06126850098371506, + -0.006659166421741247, + 0.010491151362657547, + 0.02828504890203476, + 0.019318684935569763, + -0.007274809293448925, + -0.03383992239832878, + 0.0026622284203767776, + 0.012642095796763897, + -0.008413152769207954, + 0.01100175455212593, + 0.009545722045004368, + 0.029316093772649765, + 0.0020586266182363033, + -0.00957808643579483, + 0.016613757237792015, + -0.017073672264814377, + 0.04092741012573242, + -0.02389298938214779, + -0.00795299094170332, + -0.04821735620498657, + -0.0478653647005558, + -0.042039524763822556, + 0.0075738802552223206, + -0.020835068076848984, + -0.10356935858726501, + 0.03499286249279976, + 0.01829800009727478, + 0.010095256380736828, + -0.026426829397678375, + -0.06037624552845955, + -0.019434867426753044, + 0.0007414081483148038, + -0.02339651808142662, + 0.03062034584581852, + -0.03491823747754097, + 0.01300241332501173, + -0.013631400652229786, + 0.014501919038593769, + 0.036430470645427704, + -0.08433686941862106, + -0.0298753809183836, + 0.038381677120923996, + -0.0032556771766394377, + 0.004058252088725567, + 0.026065867394208908, + 0.01516894530504942, + 0.015421750955283642, + -0.0062430547550320625, + -0.00028627904248423874, + 0.041860874742269516, + 0.0597921647131443, + 0.005782029125839472, + -0.018905675038695335, + -0.004833810497075319, + 0.0023892619647085667, + -0.030627122148871422, + -0.03650603070855141, + 0.0603829026222229, + 0.023202301934361458, + 0.03725386783480644, + 0.02902897447347641, + -0.012232826091349125, + 0.07904686033725739, + 0.0454169325530529, + -0.0002880121464841068, + 0.011412971653044224, + 0.05824185162782669, + 0.03411531820893288, + 0.014356151223182678, + -0.0030266945250332355, + -0.057516202330589294, + -0.021485580131411552, + -0.032565437257289886, + 0.0395769439637661, + 0.012588726356625557, + -0.057424820959568024, + 0.02212807536125183, + -0.002557017607614398, + -0.031322140246629715, + 0.042810894548892975, + -0.016773367300629616, + -0.035349972546100616, + -0.08346293866634369, + -0.013974140398204327, + 0.04842662811279297, + 0.012013093568384647, + -0.015273352153599262, + 0.002704471815377474, + 0.07802442461252213, + 0.041100602596998215, + 0.0044735805131495, + 0.08560974895954132, + -0.020947542041540146, + -0.004690551199018955, + -0.05692756921052933, + 0.0064439112320542336, + -0.004255788400769234, + -0.03270630165934563, + -0.02640679106116295, + -0.0009098646114580333, + -0.018024558201432228, + 0.0043445248156785965, + -0.014770131558179855, + -0.01615159958600998, + -0.01082806196063757, + 0.020323263481259346, + -0.031809668987989426, + 0.03601901978254318, + 0.033015087246894836, + 0.019972123205661774, + -0.019270310178399086, + 0.008958518505096436, + 0.06866047531366348, + -0.09432636946439743, + 0.030538285151124, + 0.02478797920048237, + -0.02566261775791645, + -0.028794772922992706, + 0.05822611227631569, + -0.03604805842041969, + -0.004702653270214796, + 0.05619535967707634, + -0.012629451230168343, + 0.020692376419901848, + 0.057320162653923035, + 0.010373988188803196, + -0.030406001955270767, + -0.0024584676139056683, + -0.023983798921108246, + -0.06285242736339569, + 0.0038989789318293333, + -0.05597056448459625, + -0.010348767973482609, + 0.041615892201662064, + -0.008247509598731995, + 0.07745781540870667, + 0.02782646007835865, + -0.018563680350780487, + -0.0014725395012646914, + -0.013712886720895767, + 0.014257329516112804, + 0.006165387108922005, + 0.0089217284694314, + -0.03842254355549812, + 0.033088427037000656, + -0.020157601684331894, + -0.0305009912699461, + -0.016273118555545807, + -0.010987059213221073, + 0.011737228371202946, + -0.009652519598603249, + -0.06431661546230316, + -0.006741012912243605, + 0.0026745146606117487, + 0.013956614769995213, + 0.013301040045917034, + -0.05572753772139549, + -0.03832884877920151, + -0.012017165310680866, + 0.03128586709499359, + -0.03801441565155983, + 0.009191500954329967, + -0.06112242862582207, + 0.0019630768802016973, + 0.026574620977044106, + 0.02464660443365574, + -0.016238808631896973, + 0.034678056836128235, + -0.028296757489442825, + 0.012201644480228424, + 0.02683212049305439, + -0.04111683368682861, + 0.020450152456760406, + -0.04492230713367462, + -0.006943149957805872, + -0.03966344892978668, + -0.05474746599793434, + -0.010215498507022858, + -0.040266796946525574, + -0.05571330338716507, + -0.03012768365442753, + -0.02807682752609253, + -0.002763766096904874, + -0.02796538732945919, + 0.053934477269649506, + 0.02377869002521038, + 0.025159889832139015, + -0.035261958837509155, + -0.023358838632702827, + -0.008688938803970814, + -0.008451900444924831, + 0.06194474920630455, + -0.006408612243831158, + -0.028244679793715477, + 0.017178431153297424, + -0.012706471607089043, + -0.023016642779111862, + 0.012375730089843273, + 0.011676440946757793, + -0.05417821928858757, + -0.04853833094239235, + -0.03142782300710678, + -0.043155521154403687, + -0.0029701218008995056, + 0.024332929402589798, + -0.02698804810643196, + -0.0019747267942875624, + 0.02981976419687271, + 0.04831179231405258, + -0.00813753716647625, + 0.047047439962625504, + 0.04597853869199753, + -0.07739114761352539, + -0.018779119476675987, + 0.07379288226366043, + 0.00933434721082449, + -0.040413230657577515, + -0.02820190228521824, + -0.037794917821884155, + -0.023682452738285065, + -0.049996376037597656, + -0.023316439241170883, + -0.02059885300695896, + 0.09279616177082062, + 0.0012453490635380149, + 0.031870037317276, + -0.03810787573456764, + -0.05880341678857803, + -0.006807379890233278, + 0.006354711018502712, + 0.017694197595119476, + 0.022767454385757446, + -0.02748224139213562, + 0.019790438935160637, + -0.007079577539116144, + 0.06453285366296768, + 0.05480553209781647, + 0.0046994648873806, + -0.026933733373880386, + -0.004316488280892372, + -0.006963161285966635, + 0.008947559632360935, + -0.016542769968509674, + -0.03763092681765556, + -0.005814192350953817, + 0.013074749149382114, + -0.06018487364053726, + -0.03957631066441536, + 0.023698603734374046, + -0.07855501025915146, + -0.06061820685863495, + 0.054195474833250046, + 0.05252407491207123, + -0.011959719471633434, + -0.044803790748119354, + 0.019874753430485725, + 0.026042789220809937, + 0.003806169843301177, + -0.01667580008506775, + -0.04614250734448433, + 0.015057406388223171, + -0.02187419682741165, + -0.07309646904468536, + -0.021107424050569534, + -0.03238809108734131, + 0.00023580137349199504, + -0.019910285249352455, + -0.02433880604803562, + 0.03693460673093796, + 0.03500964865088463, + 0.027816178277134895, + 0.02222307398915291, + -0.004900697153061628, + 0.0051368302665650845, + -0.01615740731358528, + 0.020049838349223137, + -0.01564698852598667, + 0.05928682163357735, + 0.024570584297180176, + -0.046195488423109055, + -0.0023424653336405754, + 0.01640823855996132, + 0.035690441727638245, + 0.027646519243717194, + -0.061575718224048615, + -0.012267915531992912, + 0.020128022879362106, + -0.0357561893761158, + 0.020473932847380638, + -0.01893676444888115, + 0.03742245212197304, + 0.024861136451363564, + -0.00744108809158206, + -0.018751386553049088, + -0.056035783141851425, + -0.03247098997235298, + 0.02268400974571705, + 0.025214074179530144, + 0.05265406519174576, + -0.02504860796034336, + 0.020702920854091644, + 0.0015567305963486433, + -0.019993137568235397, + -0.0061406628228724, + 0.0037268835585564375, + 0.0167602077126503, + -0.05937428027391434, + 0.07851099222898483, + -0.01022598147392273, + -0.035832855850458145, + -0.010424809530377388, + 0.03451695665717125, + 0.022539682686328888, + 0.055149685591459274, + 0.02399851754307747, + 0.031761858612298965, + 0.00700675044208765, + 0.004272100515663624, + -0.05533540993928909, + -0.041227374225854874, + -0.0024301500525325537, + -0.023278681561350822, + -0.047014083713293076, + 0.026345646008849144, + -0.02365214005112648, + -0.040275804698467255, + 0.034714795649051666, + 0.0027077982667833567, + 0.0034623986575752497, + 0.04261777922511101, + 0.00905464868992567, + 0.01463720016181469, + 0.030352698639035225, + 0.05281904712319374, + -0.0014459957601502538, + -0.01988574117422104, + -0.011685777455568314, + 0.014226146973669529, + 0.0030665271915495396, + -0.014164692722260952, + 0.0019842563197016716, + -0.012109912931919098, + 0.0037598577328026295, + -0.036237746477127075, + 0.014629815705120564, + 0.06129831448197365, + 0.008171504363417625, + 0.028819119557738304, + 0.03297675400972366, + -0.0663299486041069, + 0.01698165386915207, + 0.0038918855134397745, + -0.034739039838314056, + 0.042694125324487686, + -0.007521618157625198, + -0.0021303968969732523, + 0.021688934415578842, + 0.007733704522252083, + 0.00999020878225565, + -0.01644432730972767, + 0.01604328863322735, + 0.0119274090975523, + -0.008076000958681107, + -0.022804729640483856, + -0.018789149820804596, + -0.03495299816131592, + 0.03137253224849701, + -0.02259574644267559, + 0.02994246408343315, + -0.051471445709466934, + 0.027253270149230957, + 0.01920488476753235, + 0.014750378206372261, + 0.05660989135503769, + -0.030644085258245468, + 0.09233102947473526, + 0.00826092716306448, + -0.03001556545495987, + -0.0004998985095880926, + 0.0010129247093573213, + -0.014760714955627918, + 0.04630553722381592, + -0.029684506356716156, + 0.006941548082977533, + 0.017944570630788803, + -0.031846147030591965, + 0.007797164376825094, + -0.022043362259864807, + 0.03464336693286896, + 0.032067496329545975, + -0.004914559423923492, + 0.006377765443176031, + -0.01297714188694954, + -0.03455166518688202, + -0.007870216853916645, + -0.04088255763053894, + 0.032908812165260315, + -0.020733755081892014, + 0.03720724582672119, + -0.035969335585832596, + 0.04149573668837547, + -0.021071115508675575, + -0.016746148467063904, + -0.020634673535823822, + 0.006000989116728306, + -0.03603643178939819, + 0.01745615340769291, + -0.00851098820567131, + -0.018407480791211128, + 0.016875024884939194, + 0.01727581024169922, + -0.01851666159927845, + 0.012056305073201656, + -0.02110493928194046, + 0.0013802184257656336, + 0.001964194467291236, + 0.0037589101120829582, + -0.003251328133046627, + 0.005679227877408266, + 0.042714282870292664, + 0.040802549570798874, + -0.009684110060334206, + -0.002234864514321089, + -0.006439800374209881, + 0.0207270085811615, + -0.016425834968686104, + -0.01638028770685196, + 0.0071207573637366295, + -0.017828384414315224, + -0.03970362991094589, + 0.007139609660953283, + 0.038217898458242416, + -0.026787348091602325, + 0.038983315229415894, + 0.00525022903457284, + -0.028168553486466408, + -0.05000195652246475, + -0.012801413424313068, + 0.03243909031152725, + 0.05248279124498367, + -0.030705148354172707, + 0.02014261670410633, + 0.03831954672932625, + 0.005072812084108591, + -0.008136044256389141, + -0.03739333897829056, + -0.03472127020359039, + -0.007869555614888668, + -0.003978499211370945, + -0.009958364069461823, + -0.010008911602199078, + -0.017674941569566727, + 0.007514114957302809, + 0.018208537250757217, + -0.003964221104979515, + 0.01153662521392107, + -0.019726501777768135, + 0.020056338980793953, + 0.005147368647158146, + 0.020387796685099602, + 0.005611474625766277, + -0.0425194650888443, + -0.0022632486652582884, + 0.026053333654999733, + -0.026221372187137604, + 0.0057404860854148865, + -0.0027694895397871733, + -0.005742669105529785, + -0.0017360309138894081, + 0.010249662213027477, + -0.017932219430804253, + -0.01245120633393526, + 0.009556427597999573, + 0.023935075849294662, + 0.04376496374607086, + 0.013472327031195164, + -0.017954543232917786, + 0.0479244738817215, + 0.03103581815958023, + -0.01656246744096279, + -0.024025917053222656, + -0.014147799462080002, + -0.03886938840150833, + -0.0039042301941663027, + 0.03173007443547249, + 0.02162790670990944, + 0.004646632820367813, + 0.022750239819288254, + -0.03976958990097046, + 0.0731247067451477, + 0.041330378502607346, + -0.0028553931042551994, + -0.010721365921199322, + -0.012670256197452545, + -0.017255418002605438, + 0.06074611842632294, + 0.023100536316633224, + 0.03669321909546852, + -0.0012813747161999345, + -0.01994890719652176, + 0.008465824648737907, + -0.027100861072540283, + -0.010191213339567184, + 0.027507273480296135, + -0.005766570568084717, + 0.0376226082444191, + -0.05426502227783203, + -0.010511149652302265, + 0.024707891047000885, + -0.00644271494820714, + -0.014715246856212616, + 0.053037311881780624, + 0.010566179640591145, + 0.022001922130584717, + 0.03945910185575485, + -0.018157480284571648, + -0.005022820550948381, + -0.03326292708516121, + 0.014017627574503422, + 0.04018796607851982, + 0.02596370317041874, + -0.04044228419661522, + -0.015702327713370323, + 0.007166232913732529, + 0.02050819993019104, + -0.010381237603724003, + 0.011275230906903744, + 0.012012986466288567, + -0.03259781748056412, + 0.027358107268810272, + -0.023641087114810944, + 0.04275331273674965, + 0.0374457947909832, + 0.05039568990468979, + -0.03053857572376728, + 0.036292023956775665, + 0.017249111086130142, + -0.029197927564382553, + 0.038700904697179794, + 0.03931109979748726, + 0.020622512325644493, + 0.025595929473638535, + -0.05396105349063873, + 0.039036478847265244, + 0.013587855733931065, + 0.015780240297317505, + -0.02969709411263466, + -0.049657367169857025, + -0.021505527198314667, + 0.014847809448838234, + -0.0012379019754007459, + 0.006067231297492981, + -0.03821028396487236, + 0.037544697523117065, + -0.0003681982052512467, + 0.014864242635667324, + -0.010473975911736488, + 0.010888338088989258, + -0.022991644218564034, + 0.015646157786250114, + -0.011621955782175064, + 0.010927682742476463, + -0.0065058572217822075, + 0.025462452322244644, + -0.008382321335375309 + ], + "start_index": 27160, + "end_index": 27364, + "token_count": 35, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "0b0f5811-71dd-5bdb-be47-bbf6ea3df378", + "_source": { + "text": "\n\n## Declaración de funciones\n\n\n\nfunction", + "embedding": [ + 0.047042179852724075, + -0.04573997110128403, + -0.009221963584423065, + -0.09943104535341263, + 0.052510928362607956, + -0.0157025083899498, + -0.03920339420437813, + 0.002910116221755743, + -0.047549787908792496, + -0.01977599412202835, + 0.01726464368402958, + -0.05369972810149193, + 0.030781207606196404, + -0.006090544629842043, + -0.03282276540994644, + 0.05030073970556259, + -0.01215120404958725, + 0.05200235918164253, + 0.016663653776049614, + -0.11321534961462021, + -0.0580538809299469, + 0.02687111124396324, + -0.05117626488208771, + 0.014925602823495865, + -0.002390845911577344, + 0.005429492332041264, + -0.014089522883296013, + 0.10226649045944214, + -0.04417889192700386, + -0.020221073180437088, + 0.009861758910119534, + -0.04675634950399399, + -0.06639448553323746, + 0.03535599261522293, + 0.00623970665037632, + -0.011250234209001064, + -0.001188416383229196, + -0.06955266743898392, + -0.018458489328622818, + 0.005477832164615393, + -0.0013394816778600216, + 0.03992808237671852, + 0.03239373862743378, + -0.025423211976885796, + 0.007934417575597763, + 0.007829845882952213, + 9.082847100216895e-05, + 0.014958128333091736, + 0.02856568805873394, + -0.00804884359240532, + -0.012099551036953926, + -0.0009958650916814804, + 0.0262962207198143, + -0.043375413864851, + 0.01943156309425831, + -0.049204014241695404, + -0.00277145323343575, + 0.005916433408856392, + 0.019173700362443924, + 0.02044454775750637, + -0.030193781480193138, + 0.001597920898348093, + -0.02202509343624115, + -0.01794361136853695, + -0.016879867762327194, + 0.038790225982666016, + -0.011910364031791687, + -0.033887818455696106, + -0.09659917652606964, + -0.0018457402475178242, + 0.020543254911899567, + -0.0035211516078561544, + -0.006248109042644501, + 0.02717592380940914, + -0.008171983994543552, + 0.03209000825881958, + 0.010028175078332424, + -0.06201324239373207, + 0.03361428529024124, + -0.03754933178424835, + -0.010119715705513954, + 0.041703201830387115, + 0.02417590096592903, + 0.002586215501651168, + 0.013905992731451988, + 0.04202762246131897, + 0.01263163797557354, + -0.0076827192679047585, + -0.0064839208498597145, + -0.03766688331961632, + 0.006469860672950745, + 0.007098567206412554, + -0.040991175919771194, + 8.482346311211586e-05, + 0.08941823244094849, + -0.046113088726997375, + -0.0232276301831007, + -0.008275002241134644, + -0.023163821548223495, + -0.0369032584130764, + -0.030818087980151176, + -0.001910204067826271, + -0.03408321738243103, + 0.02681465819478035, + 0.03641146793961525, + -0.008359629660844803, + -0.03713737800717354, + -0.013089988380670547, + -0.008874379098415375, + -0.024986660107970238, + 0.035919513553380966, + 0.004290473647415638, + 0.022099940106272697, + 0.04298551753163338, + 0.003836281131953001, + -0.022873209789395332, + 0.017384633421897888, + -0.018076520413160324, + -0.009816950187087059, + 0.016110459342598915, + 0.00704875448718667, + 0.02584943175315857, + 0.03510608524084091, + 0.00871041789650917, + 0.05396527424454689, + 0.006937181577086449, + -0.05043021962046623, + 0.006832623854279518, + 0.01887679658830166, + -0.026007601991295815, + 0.004368423949927092, + -0.04111233726143837, + 0.019977662712335587, + 0.0015239666681736708, + 0.01990770921111107, + 0.025099337100982666, + 0.03442706540226936, + 0.01602497138082981, + 0.024892650544643402, + 0.016914691776037216, + 0.019351953640580177, + -0.01682203821837902, + -0.015309649519622326, + -0.012578972615301609, + 0.007489534094929695, + 0.0337081216275692, + 0.001217907527461648, + 0.023250572383403778, + 0.02262168563902378, + 0.044030699878931046, + -0.013460537418723106, + -0.005454338155686855, + -0.04312150552868843, + 0.012990553863346577, + -0.007612674497067928, + -0.002791051520034671, + -0.022600052878260612, + -0.020138340070843697, + -0.019444454461336136, + 0.013929289765655994, + -0.0036406503058969975, + 0.009257211349904537, + -0.043858274817466736, + -0.017005858942866325, + -0.024509569630026817, + 0.04068692401051521, + 0.0009804216679185629, + -0.037600673735141754, + -0.024438366293907166, + 0.015389412641525269, + -0.01588691957294941, + 0.019698914140462875, + 0.006855181884020567, + -0.03951568529009819, + -0.011727934703230858, + -0.04888445883989334, + -0.025984929874539375, + -0.04648459330201149, + -0.03855106607079506, + 0.004212416708469391, + 0.014867888763546944, + -0.025900879874825478, + -0.022688891738653183, + -0.008413516916334629, + 0.024736173450946808, + 0.015907496213912964, + -0.010418033227324486, + -0.004936703480780125, + 0.004403315484523773, + -0.013654306530952454, + 0.038737788796424866, + -0.0060474141500890255, + 0.02325216494500637, + -0.005599088501185179, + -0.021126937121152878, + -0.038000065833330154, + 0.013171213679015636, + -0.02662672847509384, + 0.007088197860866785, + -0.02745569311082363, + 0.02507139928638935, + -0.01055231038480997, + 0.019451044499874115, + -0.007572641130536795, + -0.021062161773443222, + 0.0013637382071465254, + 0.01582501269876957, + -0.05070145055651665, + -0.027456484735012054, + -0.014163091778755188, + -0.037548307329416275, + -0.014016578905284405, + -0.06578430533409119, + -0.007142363116145134, + -0.0013451810227707028, + -0.06202324852347374, + -0.020767709240317345, + 0.05986786633729935, + 0.02471003122627735, + 0.015499437227845192, + 0.0335957296192646, + 0.030716799199581146, + -0.012635452672839165, + 0.004772034473717213, + 0.034964464604854584, + -0.030834421515464783, + 0.009170019067823887, + -0.014015542343258858, + -0.02338423579931259, + 0.013049113564193249, + 0.019904788583517075, + -0.013253013603389263, + 0.06864211708307266, + 0.020522357895970345, + 0.05245622619986534, + -0.03115190379321575, + -0.03969815745949745, + 0.015462215058505535, + 0.004299601539969444, + -0.02184370905160904, + -0.0046002743765711784, + 0.012515490874648094, + 0.017993833869695663, + 0.02271857112646103, + -0.021564440801739693, + 0.04133826121687889, + -0.0102635333314538, + 0.046776581555604935, + 0.005292726680636406, + -0.004502711817622185, + 0.03902389109134674, + -0.003890031948685646, + -0.0665467157959938, + 0.02079813927412033, + -0.002054744865745306, + -0.025009101256728172, + -0.030119631439447403, + 0.00794954039156437, + 0.024142829701304436, + 0.01021638698875904, + 0.0272939745336771, + -0.02747105248272419, + -0.033295705914497375, + 0.027128057554364204, + 0.018272945657372475, + 0.012852758169174194, + -0.03184942156076431, + -0.07324972003698349, + -0.017247408628463745, + -0.005674733780324459, + 0.006122973747551441, + 0.02213875763118267, + -0.02302556298673153, + -0.03202496096491814, + 0.0018615404842421412, + 0.036685340106487274, + 0.00402973173186183, + -0.033711906522512436, + 0.04103326424956322, + -0.006766861770302057, + -0.011358191259205341, + -0.022432662546634674, + -0.03337003290653229, + -0.05868717283010483, + 0.031033504754304886, + 0.0237787626683712, + -0.027558423578739166, + -0.0030402226839214563, + -0.01886342465877533, + -0.0017062451224774122, + 0.02243342250585556, + 0.06304586678743362, + -0.038438040763139725, + 0.0516684465110302, + 0.0417984314262867, + 0.0032842708751559258, + 0.011408623307943344, + 0.03013923205435276, + 0.0893547385931015, + -0.017558369785547256, + -0.00861560832709074, + -0.0025261063128709793, + -0.014946641400456429, + -0.009132650680840015, + -0.09249541163444519, + 0.03434494510293007, + 0.048941805958747864, + 0.01935098133981228, + 0.004954459611326456, + -0.017533572390675545, + 0.031675416976213455, + 0.00908641703426838, + -0.0420537143945694, + -0.021303849294781685, + -0.02023770660161972, + 0.014336072839796543, + 0.04910702630877495, + 0.05136400833725929, + 0.0012463080929592252, + -0.046215593814849854, + -0.011475993320345879, + -0.051784731447696686, + 0.004168881569057703, + -0.010323128663003445, + 0.034377533942461014, + 0.015963885933160782, + 0.041994672268629074, + 0.003372775623574853, + -0.010462322272360325, + 0.0010545458644628525, + -0.04063381627202034, + 0.03908051177859306, + 0.044798072427511215, + 0.02626320905983448, + 0.016602855175733566, + 0.00028910618857480586, + 0.026008903980255127, + 0.0030335679184645414, + -0.023597458377480507, + 0.02060382068157196, + 0.0036350986920297146, + 0.052348703145980835, + -0.003008014988154173, + 0.0474538654088974, + -0.022448696196079254, + -0.05692817270755768, + -0.045558854937553406, + 0.0036558033898472786, + 0.009536192752420902, + -0.026503000408411026, + -0.05891193449497223, + 0.024809030815958977, + -0.02821291983127594, + 0.007943912409245968, + -0.022532321512699127, + -0.019892176613211632, + 0.023060007020831108, + 0.07959142327308655, + -0.04411869868636131, + -0.042446281760931015, + -0.0052124992944300175, + -0.018964393064379692, + -0.03102603368461132, + 0.026608863845467567, + -0.04316233471035957, + 0.013670298270881176, + -0.005076800938695669, + -0.0742960199713707, + 0.004474548622965813, + -0.07447950541973114, + -0.08063986897468567, + -0.03228197246789932, + -0.02025306038558483, + 0.023355530574917793, + 0.09792395681142807, + 0.04136841744184494, + 0.0689055398106575, + 0.037296466529369354, + 0.025856642052531242, + 0.01797993667423725, + 0.012852160260081291, + 0.016015660017728806, + -0.018061727285385132, + 0.015081245452165604, + -0.009576287120580673, + 0.0010782408062368631, + 0.041461311280727386, + -0.08707628399133682, + 0.0017470738384872675, + -0.012566279619932175, + 0.03723878040909767, + 0.03772711753845215, + 0.018171114847064018, + 0.02361943945288658, + 0.046268340200185776, + 0.03809714689850807, + -0.011071187444031239, + 0.008714237250387669, + -0.03895653784275055, + 0.057633351534605026, + 0.02701902762055397, + 0.013679237104952335, + -0.019255857914686203, + 0.038861971348524094, + 0.051917772740125656, + 0.034914642572402954, + -0.029897540807724, + 0.014965790323913097, + -0.029699699953198433, + -0.03521750867366791, + 0.018453167751431465, + 0.03936455771327019, + -0.031305551528930664, + 0.010776705108582973, + 0.01720360852777958, + -0.0052723572589457035, + 0.07335032522678375, + -0.037490010261535645, + 0.015168711543083191, + -0.02055254578590393, + -0.023608990013599396, + 0.021876739338040352, + -0.02743619680404663, + -0.04545136168599129, + -0.017617117613554, + -0.034524764865636826, + -0.04094293713569641, + -0.046353112906217575, + 0.01102910190820694, + 0.07313089817762375, + -0.023902256041765213, + 0.00045610652887262404, + 0.015236558392643929, + 0.015300390310585499, + -0.0066080521792173386, + -0.023393379524350166, + 0.02395087108016014, + 0.04119216278195381, + -0.01841399446129799, + -0.00013462766946759075, + -0.043103769421577454, + -0.025416215881705284, + -0.03335392475128174, + -0.014306903816759586, + -0.018727127462625504, + 0.017985094338655472, + -0.0677046999335289, + 0.05265413969755173, + 0.06161459535360336, + -0.044521305710077286, + 0.04348597675561905, + -0.007389475591480732, + -0.03078513778746128, + 0.04988192021846771, + -0.021315546706318855, + -0.0334048755466938, + 0.04015624523162842, + -0.06901796162128448, + -0.004732502158731222, + 3.0120001611066982e-05, + -0.031190479174256325, + 0.022008726373314857, + 0.022751083597540855, + -0.004388757981359959, + -0.0318635068833828, + 0.022344427183270454, + 0.051928795874118805, + -0.04560042917728424, + -0.009866814129054546, + 0.009092921391129494, + -0.006252902094274759, + -0.011100604198873043, + 0.0035803497303277254, + 0.004760316573083401, + 0.001236112555488944, + 0.03395713493227959, + -0.061311252415180206, + 0.01876007579267025, + -0.02835872583091259, + -0.00829297211021185, + 0.049749258905649185, + -0.00993923656642437, + 0.03146082162857056, + 0.005328974686563015, + 0.04254349321126938, + -0.04974024370312691, + -0.012228880077600479, + -0.0025105068925768137, + -0.01209206786006689, + -0.019152410328388214, + -0.03586278110742569, + 0.0389762744307518, + -0.03057512454688549, + -0.03860922530293465, + 0.0139072360470891, + -0.03307820111513138, + -0.018809204921126366, + -0.002479702001437545, + -0.05260927975177765, + -0.01805223524570465, + -0.019364161416888237, + -0.018866293132305145, + 0.035533830523490906, + 0.043537575751543045, + 0.031902048736810684, + 0.005836161319166422, + 0.01664230413734913, + -0.01926242746412754, + 0.011326691135764122, + 0.053353115916252136, + 0.017643621191382408, + -0.03434307128190994, + 0.03536166995763779, + 0.021376103162765503, + -0.022117620334029198, + -0.017630374059081078, + 0.05176382511854172, + 0.027945905923843384, + -0.024342499673366547, + 0.04757832735776901, + -0.0012320473324507475, + 0.05750203877687454, + 0.033356405794620514, + -0.016129648312926292, + -0.015008099377155304, + 0.024630527943372726, + 0.047455813735723495, + 0.0636342391371727, + 0.013550090603530407, + 0.013201417401432991, + 0.005370062775909901, + 0.002156283473595977, + -0.027349738404154778, + -0.03914012759923935, + 0.04290863499045372, + -0.035936929285526276, + -0.010395721532404423, + -0.0032586182933300734, + 0.03505793213844299, + -0.010573534294962883, + -0.023757094517350197, + 0.025308795273303986, + -0.008655599318444729, + 0.030783863738179207, + 0.021104251965880394, + -0.018371256068348885, + 0.034049805253744125, + -0.04107610508799553, + -0.03879639506340027, + 0.018787246197462082, + 0.02944161556661129, + -0.01025555282831192, + 0.010248972102999687, + -0.043262261897325516, + -0.03350566700100899, + -0.029306048527359962, + 0.0338723286986351, + 0.02929968200623989, + 0.036929063498973846, + -0.00874780211597681, + 0.06304042041301727, + 0.001569251180626452, + -0.06526097655296326, + -0.01665436290204525, + -0.0241303201764822, + 0.04271037131547928, + -0.0016861207550391555, + -0.011296424083411694, + 0.03420797362923622, + -0.019294019788503647, + 0.03510741889476776, + -0.006084498018026352, + -0.05493384227156639, + 0.05514077469706535, + 0.00610068766400218, + -0.007012651767581701, + -0.015756256878376007, + 0.04412219673395157, + -0.007986865937709808, + -0.0009290943271480501, + -0.006002348382025957, + -0.008760548196732998, + 0.013841803185641766, + -0.0016211074544116855, + -9.275247430196032e-05, + 0.02676188014447689, + -0.026762748137116432, + 0.01952175796031952, + 0.0034665055572986603, + -0.03397126495838165, + -0.02763093262910843, + 0.013477077707648277, + 0.016990583389997482, + 0.04262446612119675, + 0.05195005610585213, + -0.00566435931250453, + -0.006541780196130276, + -0.0335717648267746, + 0.025819823145866394, + 0.02088487334549427, + 0.03537610545754433, + -0.010823867283761501, + -0.003569563152268529, + -0.016611168161034584, + -0.04586837813258171, + -0.00500993337482214, + 0.004983129445463419, + 0.018968315795063972, + -0.023773029446601868, + -0.009957357309758663, + -0.011745220981538296, + -0.007595360744744539, + 0.0006930691888555884, + 0.053112756460905075, + 0.03906746953725815, + -0.048607710748910904, + 0.028256231918931007, + 0.014735597185790539, + 0.024044780060648918, + -0.07397060841321945, + 0.05407261103391647, + -0.0047547053545713425, + 0.01691511459648609, + 0.03678489848971367, + 0.04283466562628746, + -0.02239856868982315, + -0.004631667397916317, + -0.0678328350186348, + 0.014008483849465847, + 0.019979430362582207, + -0.026885580271482468, + -0.03646377846598625, + -0.006179288029670715, + -0.009702455252408981, + 0.019560277462005615, + -0.019355738535523415, + -0.01906907744705677, + 0.04796979948878288, + 0.040803875774145126, + -8.325623639393598e-05, + -0.026226859539747238, + 0.01654813066124916, + -0.019011007621884346, + -0.020176423713564873, + -0.0033516024705022573, + -0.03000112622976303, + -0.05145920068025589, + 0.010049717500805855, + 0.052266933023929596, + -0.010019456967711449, + 0.07227487862110138, + -0.030433950945734978, + -0.01778225041925907, + 0.028578776866197586, + -0.06256374716758728, + 0.019925683736801147, + 0.013261045329272747, + 0.007700772490352392, + -0.0031212205067276955, + -0.026140330359339714, + 0.0369730144739151, + -0.0517495796084404, + 0.07334652543067932, + -0.01666140742599964, + -0.05021677166223526, + 0.03347272425889969, + 0.06204568222165108, + 0.036843907088041306, + 0.02199205569922924, + 0.021726584061980247, + 0.0033760685473680496, + 0.00349446851760149, + -0.013998779468238354, + 0.014466507360339165, + -0.01979527436196804, + -0.03493933007121086, + 0.026104016229510307, + -0.04249434918165207, + -0.06043346971273422, + -0.021557986736297607, + 0.0012223438825458288, + -0.03416195884346962, + 0.04121391102671623, + -0.08461084216833115, + 0.03508155420422554, + -0.023342596367001534, + -0.0601828433573246, + 0.0048689101822674274, + -0.02152198739349842, + -0.002959179924800992, + -0.024450495839118958, + -0.0011635617120191455, + -0.017805835232138634, + 0.012034747749567032, + -0.016966309398412704, + -0.015008524991571903, + -0.027907876297831535, + -0.027092693373560905, + -0.01669950969517231, + -0.039645515382289886, + -0.014401142485439777, + -0.026358475908637047, + 0.04171169176697731, + -0.017063012346625328, + 0.019197814166545868, + 0.011037865653634071, + -0.046061884611845016, + 0.024607179686427116, + -0.03964366763830185, + -0.03393679857254028, + 0.01859358139336109, + -0.00601953687146306, + -0.011644084006547928, + -0.031762924045324326, + 0.019962558522820473, + 0.007176575716584921, + 0.01316923275589943, + -0.006812554318457842, + -0.03340417146682739, + 0.0007467165123671293, + -0.015105600468814373, + -0.06110302731394768, + 0.0459149107336998, + 0.026828208938241005, + -0.011220463551580906, + -0.019617848098278046, + -0.017193922773003578, + 0.08163101226091385, + 0.040181878954172134, + 0.014607371762394905, + 0.046896323561668396, + -0.04721576347947121, + 0.022170040756464005, + -0.010606413707137108, + -0.020394207909703255, + -0.0035227069165557623, + -0.02065572515130043, + 0.010296836495399475, + 0.015478051267564297, + -0.036064643412828445, + 0.01817069761455059, + -0.017718486487865448, + -0.0063108657486736774, + -0.03685852885246277, + -0.0213029645383358, + 0.032621219754219055, + 0.0244199987500906, + 0.03621635586023331, + -0.05538509786128998, + 0.035258952528238297, + 0.010923337191343307, + -0.013348345644772053, + -0.025802845135331154, + 0.017871243879199028, + -0.015587382949888706, + 0.01494596991688013, + -0.01590156741440296, + 0.06798263639211655, + 0.01236792467534542, + 0.04930534586310387, + 0.005664342548698187, + 0.0010605412535369396, + -0.0285855233669281, + 0.011396449990570545, + 0.0065603251568973064, + -0.035504940897226334, + 0.04643825814127922, + -0.034778445959091187, + 0.010289628989994526, + -0.014568576589226723, + 0.04054524749517441, + -0.017153533175587654, + 0.04835513234138489, + 0.06263091415166855, + 0.039014872163534164, + 0.038638778030872345, + 0.05744012072682381, + -0.03437728062272072, + -0.005785481538623571, + -0.006181035190820694, + 0.013882468454539776, + -0.06627004593610764, + 0.01285029761493206, + 0.012223571538925171, + -0.002035417826846242, + 0.02509405091404915, + -0.044826630502939224, + -0.03936767578125, + 0.03095179609954357, + 0.030308470129966736, + 0.024317802861332893, + 0.019655928015708923, + -0.018595997244119644, + 0.015125410631299019, + -0.04582821577787399, + 0.022257652133703232, + -0.019810490310192108, + 0.021061260253190994, + -0.015313946641981602, + 0.0066444664262235165, + -0.018587632104754448, + -0.0007990688900463283, + -0.013740381225943565, + 0.03044649213552475, + 0.05205859616398811, + -0.005033448338508606, + -0.011171497404575348, + -0.03464442491531372, + -0.009979553520679474, + 0.02304530143737793, + 0.03268378600478172, + -0.008187355473637581, + 0.008354277350008488, + 0.009554100222885609, + -0.017797406762838364, + -0.005267677828669548, + -0.017049098387360573, + -0.010479983873665333, + -0.00567448977380991, + 0.008947553113102913, + 0.026131995022296906, + -0.013235547579824924, + -0.0264116320759058, + 0.0012001718860119581, + -0.02590537630021572, + 0.013826379552483559, + 0.03542589023709297, + -0.002473903354257345, + -0.045687489211559296, + 0.02286139503121376, + 0.008532349951565266, + -0.04307488724589348, + 0.03280545026063919, + -0.0008701529586687684, + 0.022593576461076736, + 0.02420421876013279, + -0.05830692872405052, + 0.007830257527530193, + 0.05652841925621033, + 0.011491779237985611, + 0.00016859830066096038, + -0.0021759462542831898, + -0.03372497856616974, + 0.0764780342578888, + -0.018847867846488953, + 0.024741344153881073, + -0.03948572278022766, + 0.016011599451303482, + -0.003939435817301273, + 0.00377329858019948, + 0.026721345260739326, + 0.037957847118377686, + -0.024198465049266815, + -0.01470945868641138, + -0.019659152254462242, + 0.051191698759794235, + -0.017616355791687965, + -0.014765963889658451, + -0.0430946983397007, + 0.038881901651620865, + -0.06350256502628326, + -0.008853021077811718, + -0.011178244836628437, + -0.07137220352888107, + -0.021341435611248016, + 0.040476515889167786, + -0.018409384414553642, + 0.029431013390421867, + -0.04108274728059769, + -0.016291501000523567, + 0.001026205369271338, + -0.0426834300160408, + 0.025418482720851898, + 0.04140020161867142, + 0.0182994082570076, + -0.01858079805970192, + 0.0014769505942240357, + 0.024613045156002045, + -0.05089110881090164, + -0.0039017756935209036, + 0.0044617196545004845, + 0.02859414927661419, + 0.018876813352108, + 0.017612170428037643, + 0.042878493666648865, + -0.05056147649884224, + -0.006320201326161623, + -0.03338709473609924, + -0.047484930604696274, + 0.010300152003765106, + -0.01241993997246027, + -0.019544333219528198, + -0.021501244977116585, + 0.03928877040743828, + -0.07461683452129364, + -0.006902596913278103, + 0.04820181801915169, + 0.013676122762262821, + 0.03708238527178764, + 0.0017610011855140328, + 0.03952727094292641, + 0.01957719773054123, + -0.015155511908233166, + -0.019102120772004128, + -0.009058143012225628, + -0.005210052710026503, + 0.025224940851330757, + 0.019180970266461372, + 0.03241492435336113, + 0.023207036778330803, + 0.005065803416073322, + -0.06567047536373138, + 0.015548807568848133, + 0.008003264665603638, + -0.00966563355177641, + -0.004616132937371731, + -0.013528583571314812, + -0.02222483977675438, + 0.040177106857299805, + 0.004937920719385147, + -0.028992628678679466, + -0.012687078677117825, + -0.005340432748198509, + -0.0021739008370786905, + -0.006498750299215317, + -0.029452815651893616, + 0.012805557809770107, + -0.045984555035829544, + 0.04072422906756401, + -0.023685786873102188, + -0.0010620515095070004, + 0.03692689910531044, + 0.03771559149026871, + 0.047222331166267395, + 0.04644399508833885, + 0.00694843428209424, + 0.07053905725479126, + 0.017196549102663994, + -0.0014008060097694397, + -0.04156546667218208, + 0.011415858753025532, + -0.08233833312988281, + -0.005321970209479332, + 0.02682514674961567, + 0.01027123723179102, + -0.0386938601732254, + -0.011050327681005001, + -0.011967531405389309, + -0.0031361309811472893, + -0.005541258491575718, + 0.03294869884848595, + -0.011980114504694939, + 0.04413178190588951, + 0.03903946280479431, + 0.023327674716711044, + -0.003269689157605171, + -0.007759794592857361, + 0.04632354527711868, + -0.013733630999922752, + 0.027838077396154404, + 3.56126224687614e-06, + -0.01458590105175972, + -0.008422194048762321, + -0.0071898396126925945, + 0.013855591416358948, + -0.049249067902565, + -0.013599768280982971, + -0.021031726151704788, + 0.05474779009819031, + -0.010118044912815094, + 0.009209010750055313, + 0.03318271040916443, + -0.0225619338452816, + 0.011700714938342571, + 0.016966823488473892, + -0.0010661372216418386, + -0.0017201583832502365, + 0.024064652621746063, + 0.031712841242551804, + -0.05046451836824417, + -0.03421942889690399, + -0.057341087609529495, + 0.00040796189568936825, + -0.0174996517598629, + 0.025666899979114532, + -0.003933998290449381, + 0.01712002046406269, + -0.0024546519853174686, + -0.02948385290801525, + -0.014551403932273388, + 0.020020142197608948, + 0.03489966318011284, + 0.0327739492058754, + 0.004517494700849056, + 0.008292433805763721, + 0.00021341493993531913, + -0.016145778819918633, + 0.030230572447180748, + 0.04937899112701416, + -0.02562442421913147, + 0.04323907941579819, + 0.046023618429899216, + 0.0192862581461668, + 0.010220297612249851, + 0.016116270795464516, + -0.03176993504166603, + -0.03496277704834938, + 0.0281238816678524, + -0.019670946523547173, + 0.012864658609032631, + 0.02398672327399254, + 0.003182031447067857, + 0.03678176552057266, + -0.01840272545814514, + -0.03981141373515129, + -0.03790993615984917, + -0.00437681982293725, + 0.006588487885892391, + 0.04402216151356697, + 0.05892544612288475, + -0.041717566549777985, + 0.012756490148603916, + -0.013197099789977074, + 0.015457473695278168 + ], + "start_index": 27364, + "end_index": 27411, + "token_count": 8, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "a0c9c78d-26ae-5eea-95ed-8e2d2f5cb2e1", + "_source": { + "text": "\n\n## Concurrencia\n\n\n\ngo\ngather", + "embedding": [ + 0.0001746639609336853, + -0.08464976400136948, + -0.011705216951668262, + -0.0030890516936779022, + 0.08868542313575745, + -0.003176647238433361, + 0.03060872107744217, + 0.0017653407994657755, + -0.05675753578543663, + 0.015092574059963226, + -0.004636277910321951, + -0.05156288295984268, + 0.060750920325517654, + -0.011643950827419758, + -0.04909813776612282, + 0.08097671717405319, + -0.04592913016676903, + 0.008406019769608974, + -0.011675005778670311, + -0.011214171536266804, + -0.02845838852226734, + 0.025038745254278183, + -7.976598135428503e-05, + 0.05435308441519737, + -0.026944372802972794, + 0.0065826475620269775, + -0.04161805659532547, + 0.06164471060037613, + 0.01446481328457594, + 0.024118265137076378, + -0.036437027156353, + 0.017721306532621384, + -0.07217688113451004, + -0.021211689338088036, + -0.043012186884880066, + -0.018337704241275787, + 0.024853480979800224, + -0.07659623771905899, + 0.017394093796610832, + 0.04726877436041832, + -0.0065495651215314865, + 0.00855114497244358, + 0.029164789244532585, + -0.012170274741947651, + 0.03648711368441582, + -0.061052050441503525, + 0.04411173239350319, + 0.0331127904355526, + -0.04908839613199234, + 0.012733490206301212, + -0.018439512699842453, + -0.014628413133323193, + -0.01600443571805954, + 0.04889475554227829, + -0.05575011298060417, + -0.052200768142938614, + -0.00809327233582735, + 0.01974150724709034, + 0.04285140708088875, + 0.009490324184298515, + -0.028187429532408714, + 0.09113885462284088, + -0.0771486908197403, + -0.009752892889082432, + 0.004958269651979208, + 0.014802264049649239, + -0.00669829361140728, + -0.009604849852621555, + -0.047304023057222366, + -0.04969330132007599, + -0.004905765410512686, + 0.012358270585536957, + -0.0165428277105093, + 0.04421547055244446, + 0.010744459927082062, + 0.005331935361027718, + -0.021444402635097504, + -0.030694175511598587, + 0.014780810102820396, + 0.0400342121720314, + 0.007396242581307888, + 0.037595707923173904, + 0.04850752279162407, + 0.03343576565384865, + -0.01950487121939659, + 0.0489342026412487, + -0.06550236791372299, + -0.01477683987468481, + -0.019946429878473282, + -0.05133220925927162, + -0.04063185676932335, + 0.062118057161569595, + -0.05989398807287216, + -0.03256838396191597, + 0.001911416300572455, + -0.034150294959545135, + 0.018249718472361565, + 0.02533009834587574, + -0.03235357254743576, + -0.02621118351817131, + -0.0009037892450578511, + -0.0013338978169485927, + -0.006239959038794041, + -0.00858262274414301, + 0.048648901283741, + 0.060967154800891876, + -0.04180983453989029, + 0.006784581113606691, + 0.008320329710841179, + -0.005447721108794212, + -0.007806411944329739, + 0.018412191420793533, + -0.004513993393629789, + 0.04015226289629936, + -0.05174396187067032, + -0.020839320495724678, + -0.0021082020830363035, + 0.0003558366734068841, + -0.0016800642479211092, + -0.04319668933749199, + 0.024933164939284325, + -0.018294237554073334, + 0.01580384001135826, + -0.03288659453392029, + 0.009301275946199894, + -0.0027059174608439207, + -0.04072730243206024, + 0.0249165128916502, + 0.024126391857862473, + -0.036851536482572556, + 0.009616944007575512, + -0.035330742597579956, + 0.00024831012706272304, + -0.03989683464169502, + 0.024086395278573036, + 0.006654047407209873, + 0.04707443714141846, + 0.001580350217409432, + 0.04898097738623619, + 0.001647960627451539, + -0.043988194316625595, + -0.02227916195988655, + -0.025200065225362778, + -0.02512090653181076, + 0.01679927110671997, + 0.0005755407619290054, + 0.011996433138847351, + 0.019098954275250435, + 0.03638088330626488, + 0.0376424640417099, + 0.026161719113588333, + -0.003928397782146931, + -0.07505698502063751, + -0.012175111100077629, + -0.004435697104781866, + 0.01852453127503395, + 0.0029007908888161182, + 0.007154054939746857, + 0.005935224238783121, + 0.02349187806248665, + 0.018030911684036255, + 0.006732940208166838, + 0.012659328989684582, + -0.03182445466518402, + -0.03291013836860657, + 0.02833699807524681, + -0.027219543233513832, + 0.01748190075159073, + -0.039274174720048904, + -0.03127877414226532, + -0.02819954976439476, + 0.00312027963809669, + 0.02315548248589039, + 0.005255680065602064, + 0.006219153758138418, + -0.027814479544758797, + -0.027800649404525757, + -0.0398159921169281, + -0.00851468462496996, + -0.018067384138703346, + 0.006269141566008329, + -0.010397540405392647, + -0.026573797687888145, + 0.024501478299498558, + 0.0011769762495532632, + 0.06437588483095169, + 0.01920984499156475, + -0.01623932458460331, + -0.02265801467001438, + 0.01846887730062008, + -0.02781742624938488, + -0.002953719114884734, + -0.05574684217572212, + -0.0061271823942661285, + 0.015236171893775463, + -0.03644176945090294, + 0.04203667491674423, + -0.03388941287994385, + -0.0042675454169511795, + -0.02508947253227234, + -0.02499462477862835, + 0.04167553409934044, + 0.018563153222203255, + 0.013083136640489101, + -0.020191125571727753, + -0.003363922005519271, + 0.020612305030226707, + -0.022511599585413933, + -0.02691028267145157, + -0.02221827581524849, + -0.008129028603434563, + -0.03659862279891968, + -0.006241525057703257, + 0.05307440087199211, + 0.0033842045813798904, + 0.03579334914684296, + -0.005439827684313059, + 0.018721360713243484, + -0.03402987867593765, + 0.019002318382263184, + 0.03052195906639099, + 0.022879762575030327, + -0.0031226915307343006, + -0.013039855286478996, + -0.03458552807569504, + -0.029684510082006454, + 0.01861754059791565, + -0.013803982175886631, + 0.013749194331467152, + 0.013786728493869305, + 0.0071290526539087296, + 0.001102988957427442, + 0.07583571970462799, + 0.003138785483315587, + 0.05070478096604347, + 0.021360870450735092, + 0.005316488910466433, + -0.047067634761333466, + -0.020782114937901497, + -0.08187708258628845, + 0.005379730835556984, + -0.004437239840626717, + 0.0044710044749081135, + 0.011639237403869629, + -0.021918684244155884, + 0.01902182213962078, + -0.025704333558678627, + 0.02828889898955822, + -0.0373375378549099, + 0.0452936626970768, + 0.021405762061476707, + -0.037294428795576096, + 0.017222637310624123, + 0.06935757398605347, + 0.005354611668735743, + 0.07175374031066895, + -0.000989826861768961, + 0.014821098186075687, + 0.003948086407035589, + 0.010277392342686653, + 0.026214826852083206, + -0.0193448755890131, + -0.03846091032028198, + 0.014496100135147572, + 0.0061281961388885975, + 0.030504653230309486, + -0.0071932352147996426, + -0.022013897076249123, + -0.036264896392822266, + 0.007917921058833599, + -0.028025589883327484, + -0.01257939264178276, + -0.03187265992164612, + -0.008837157860398293, + 0.007241908926516771, + -0.03506295010447502, + 0.01915092021226883, + -0.04400429502129555, + 0.02584882453083992, + 0.022451698780059814, + -0.00336083909496665, + 0.0004311686207074672, + -0.03257347643375397, + 0.034409888088703156, + -0.0011542438296601176, + 0.019011644646525383, + 0.010978221893310547, + 0.01202393602579832, + 0.007285182364284992, + 0.0042418441735208035, + 0.062327515333890915, + 0.022615576162934303, + -0.02546835131943226, + 0.0478692427277565, + -0.0010200680699199438, + 0.0382569245994091, + -0.022463293746113777, + 0.03249852731823921, + -0.00447364104911685, + -0.03437967970967293, + -0.007796477992087603, + -0.0013132324675098062, + -0.013108986429870129, + -0.0004322422028053552, + -0.022370627149939537, + -0.007087016012519598, + 0.020372575148940086, + -0.08371591567993164, + 0.011021459475159645, + -0.022553781047463417, + 0.11193212121725082, + 0.0315266028046608, + -0.011049159802496433, + -0.00698087876662612, + 0.02090246044099331, + 0.021496739238500595, + -0.012236111797392368, + 0.05265260115265846, + -0.002696007490158081, + 0.001721567357890308, + -0.024743886664509773, + -0.004222228657454252, + 0.03046520985662937, + 0.0030057374387979507, + 0.02723103202879429, + 0.009668713435530663, + -0.011187490075826645, + 0.00646788626909256, + -0.010466949082911015, + -0.009890620596706867, + -0.021302850916981697, + -0.023677054792642593, + 0.08027085661888123, + 0.0381961353123188, + -0.02082568034529686, + 0.020546868443489075, + 0.07182878255844116, + -0.004076454788446426, + 0.03355824947357178, + 0.035191427916288376, + -0.0007469671545550227, + -0.04878758266568184, + -0.019630029797554016, + -0.05668952688574791, + -0.012326139956712723, + -0.026073507964611053, + -0.0002169565559597686, + -0.004554553423076868, + 0.027123134583234787, + -0.013247259892523289, + -0.06677170842885971, + 0.025650648400187492, + 0.0004840522015001625, + 0.006156489253044128, + -0.0561370886862278, + -0.03233112767338753, + 0.05806286633014679, + 0.03521868959069252, + -0.022111164405941963, + 0.0017526836600154638, + -0.025495633482933044, + -0.04543384909629822, + 0.007219032850116491, + -0.01817259192466736, + -0.06763281673192978, + -0.04160290211439133, + -0.014178135432302952, + -0.019280657172203064, + 0.08642754703760147, + -0.05317968130111694, + -0.014453981071710587, + 0.012771300971508026, + -0.05433357506990433, + 0.004046837333589792, + 0.09395725280046463, + 0.024273689836263657, + 0.046431686729192734, + 0.06102569028735161, + 0.004608822055160999, + -0.028364606201648712, + 0.026478514075279236, + -0.027610832825303078, + 0.03054443560540676, + 0.021302683278918266, + 0.03201291710138321, + -0.047965116798877716, + 0.005897729191929102, + -0.007533549331128597, + -0.013534536585211754, + -0.01762464828789234, + 0.029640886932611465, + -0.03280990198254585, + 0.03574354946613312, + -0.0386689230799675, + 0.044963374733924866, + 0.032003793865442276, + -0.07358341664075851, + -0.028544707223773003, + -0.07169488817453384, + -0.007091674488037825, + 0.021865008398890495, + 0.04719053953886032, + -0.022124355658888817, + -0.02480098232626915, + -0.01352669671177864, + 0.029020218178629875, + -0.032063644379377365, + 0.06910804659128189, + 0.054176103323698044, + -0.03170666843652725, + 0.044145166873931885, + 0.005993823055177927, + -0.044277437031269073, + -0.004888580180704594, + 0.054776884615421295, + 0.010879812762141228, + 0.07262073457241058, + -0.026231233030557632, + 0.008125289343297482, + -0.005363380536437035, + -0.06554624438285828, + 0.016921350732445717, + -0.02459673210978508, + -0.01975424401462078, + -0.011615176685154438, + -0.011248158290982246, + -0.0796128585934639, + -0.05922403186559677, + -0.027317490428686142, + 0.0869283452630043, + -0.029553601518273354, + 0.03558960556983948, + 0.021083422005176544, + 0.023025095462799072, + -0.03092340938746929, + -0.019418222829699516, + 0.03168536722660065, + -0.010793528519570827, + -0.014792576432228088, + -0.0034550183918327093, + 0.019931646063923836, + -0.0025828429497778416, + -0.037134960293769836, + -0.05569237098097801, + -0.038765765726566315, + -0.033331915736198425, + -0.02309856005012989, + 0.05086379870772362, + -0.01547339279204607, + -0.008155802264809608, + 0.0601794458925724, + -0.03463054820895195, + -0.01697130687534809, + 0.022307751700282097, + -0.0410078763961792, + -0.06256363540887833, + -0.0014231413369998336, + -0.02551102824509144, + 0.004861330613493919, + 0.05181857571005821, + -0.05348372459411621, + 0.025115106254816055, + -0.024588998407125473, + -0.023279672488570213, + 0.0006837341352365911, + 0.02785390056669712, + 0.0004248729383107275, + 0.015184091404080391, + -0.002372909104451537, + -0.00893035065382719, + 0.04492652416229248, + 0.029536118730902672, + 0.0031348483171314, + -0.004656950477510691, + 0.0011510734912008047, + 0.014619468711316586, + -0.0540616437792778, + -0.05537540465593338, + -0.03547470644116402, + 0.01668301783502102, + 0.01876753568649292, + -0.010767552070319653, + 0.04375943914055824, + -0.07993631064891815, + 0.03654176741838455, + -0.04017845541238785, + -0.03749944642186165, + 0.013139217160642147, + -0.06742291152477264, + -0.03617151081562042, + -0.01721310243010521, + 0.029336558654904366, + -0.007624601013958454, + -0.007876917719841003, + 0.02092095836997032, + -0.0016855576541274786, + -0.01490779872983694, + -0.020700791850686073, + -0.09294018149375916, + 0.011865152977406979, + 0.006242609582841396, + -0.019391940906643867, + -0.04009827598929405, + 0.025756224989891052, + 0.031826894730329514, + -0.05780233070254326, + -0.007095859386026859, + 0.03993218019604683, + 0.030489414930343628, + 0.04322390258312225, + 0.04211422801017761, + -0.04310845211148262, + 0.019949769601225853, + 0.026080088689923286, + -0.01133802905678749, + 0.008673148229718208, + -0.013876179233193398, + 0.034912317991256714, + 0.0006086283829063177, + -0.0009274655603803694, + 0.021321455016732216, + -0.007633970119059086, + 0.04392137750983238, + -0.0394415445625782, + -0.03227003291249275, + 0.07377921044826508, + 0.03469039127230644, + 0.04437726363539696, + 0.02059364505112171, + 0.017895180732011795, + 0.0055360873229801655, + 0.010532421059906483, + -0.018418218940496445, + 0.004949535243213177, + -0.010081986896693707, + -0.010764358565211296, + -0.030708232894539833, + 0.042928170412778854, + 0.013887166045606136, + 0.011687902733683586, + 0.006472500041127205, + -0.030918367207050323, + -0.03227006644010544, + -0.004180852323770523, + 0.012134329415857792, + -0.014633662067353725, + -0.0165699515491724, + -0.0021074991673231125, + -0.021348096430301666, + 0.03916918858885765, + -0.02957160584628582, + -0.031195564195513725, + 0.07441907376050949, + -0.0033653201535344124, + 0.0005986407049931586, + -0.0059701246209442616, + 0.031925711780786514, + 0.012322590686380863, + 0.01244990061968565, + -0.05058522894978523, + 0.0036031967028975487, + 0.03112516738474369, + 0.027951035648584366, + -0.019466523081064224, + 0.009269866161048412, + -0.041387129575014114, + -0.009048736654222012, + 0.03244791924953461, + 0.027466094121336937, + 0.009866972453892231, + 0.07202231884002686, + -0.02742774598300457, + -0.024562537670135498, + 0.03376907482743263, + 0.000557798775844276, + -0.05821699649095535, + -0.04626777395606041, + 0.021773258224129677, + 0.031526632606983185, + -0.018714506179094315, + 0.0158474612981081, + 0.00801993440836668, + -0.021451855078339577, + 0.010288151912391186, + -0.01580086722970009, + 0.01290883868932724, + 0.017340002581477165, + -0.0211985744535923, + 0.0015095005510374904, + 0.02036009356379509, + -0.023975711315870285, + -0.007666475139558315, + -0.017811061814427376, + 0.027084851637482643, + 0.059972599148750305, + 0.01084143202751875, + -0.029470959678292274, + -0.033862944692373276, + 0.018568331375718117, + -0.010528868064284325, + -0.006620222236961126, + 0.046444542706012726, + 0.0017715210560709238, + 0.029721008613705635, + -0.01137208566069603, + 0.015146659687161446, + -0.05200798809528351, + 0.04614352434873581, + 0.0024823183193802834, + 0.03996780514717102, + -0.0259002223610878, + -0.016740499064326286, + -0.0003040210285689682, + 0.013358653523027897, + 0.03208554908633232, + 0.0022929164115339518, + -0.060917116701602936, + 0.0016582765383645892, + -0.013127872720360756, + -0.02878650091588497, + 0.015357619151473045, + 0.026093151420354843, + -0.042150601744651794, + 0.06393264979124069, + 0.02189338020980358, + -0.022081492468714714, + 0.013735327869653702, + -0.060874637216329575, + -0.045876823365688324, + -0.0072775548323988914, + -0.016843600198626518, + 0.015250965021550655, + -0.020966842770576477, + 0.0004799391026608646, + 0.027328090742230415, + -0.02591211535036564, + -0.04570929333567619, + -0.006010690238326788, + 0.03771315887570381, + -0.027781350538134575, + 0.00015368370804935694, + -0.03826562687754631, + 0.0063051823526620865, + 0.055947672575712204, + -0.04720767214894295, + -0.030608275905251503, + -0.005957993678748608, + 0.04343096539378166, + 0.0250539630651474, + -0.00781485065817833, + 0.0034110574051737785, + 0.016137711703777313, + -0.031230483204126358, + 0.03680671006441116, + -0.007713451981544495, + 0.006835315842181444, + -0.0475650280714035, + 0.06238299980759621, + -0.051191508769989014, + -0.015642786398530006, + 0.04317842051386833, + -0.03976917266845703, + 0.039165448397397995, + -0.02569216676056385, + 0.0003760394174605608, + 0.004140141885727644, + 0.06753332167863846, + 0.04047609120607376, + -0.005369031336158514, + -0.06744485348463058, + -0.004483039025217295, + -0.037716127932071686, + -0.01980244182050228, + -0.032684724777936935, + -0.01576097495853901, + -0.007875233888626099, + -0.02360878325998783, + 0.01726977340877056, + -0.053981177508831024, + -0.029676053673028946, + -0.05698179826140404, + -0.022351151332259178, + 0.03317517414689064, + -0.004439558368176222, + -0.0112136946991086, + 0.000360442150849849, + -0.01414584182202816, + -0.012435676530003548, + -0.004006132949143648, + -0.050191327929496765, + -0.045701295137405396, + 0.0027258459012955427, + -0.010860527865588665, + -0.04126014932990074, + -0.04279962182044983, + 0.00718260370194912, + 0.0003135523002129048, + -0.00961486529558897, + 0.03307082876563072, + -0.016403131186962128, + 0.007054569199681282, + -0.02121831849217415, + -0.015689479187130928, + 0.01944427751004696, + -0.009530453942716122, + 0.006658210419118404, + -0.04401598498225212, + 0.03112415038049221, + -0.04394840449094772, + -0.015808116644620895, + 0.01811879500746727, + 0.0055149877443909645, + -0.053942807018756866, + -0.02724188193678856, + 0.031735002994537354, + 0.02222883328795433, + 0.019726445898413658, + -0.030545741319656372, + -0.016786707565188408, + -0.019829843193292618, + 0.05033862963318825, + -0.04499439895153046, + 0.02685553766787052, + 0.06400839984416962, + -0.007581009529531002, + -0.009333501569926739, + 0.03277570754289627, + 0.03677811846137047, + -0.010229019448161125, + -0.009188889525830746, + 0.04663720726966858, + -0.03398475795984268, + 0.060823652893304825, + -0.0035019817296415567, + 0.02083498239517212, + -0.011582323350012302, + 0.05315595120191574, + 0.003422995563596487, + 0.006455214228481054, + -0.0036987934727221727, + 0.048757877200841904, + -0.0038326685316860676, + 0.012984191998839378, + -0.03112160600721836, + -0.021618960425257683, + 0.024521786719560623, + 0.0005713542341254652, + -0.006589560303837061, + 0.004911270923912525, + 0.0009611743735149503, + 0.016764754429459572, + -0.0025406386703252792, + -0.012433045543730259, + 0.05435063689947128, + -0.06378190964460373, + -0.005527637433260679, + 0.023725882172584534, + 0.013391152955591679, + 0.027467239648103714, + 0.04991438612341881, + -0.01601494662463665, + 0.002842941554263234, + 0.057363636791706085, + -0.019882161170244217, + 0.02354300580918789, + -0.0032590115442872047, + 0.03122556395828724, + -0.03719537332653999, + -0.019219480454921722, + 0.0017350863199681044, + 0.027916939929127693, + -0.014592686668038368, + 1.054110089171445e-05, + 0.0711398795247078, + -0.0008753934525884688, + -0.012965756468474865, + 0.012208468280732632, + -0.029396547004580498, + -0.03223429247736931, + -0.0065172272734344006, + -0.011849352158606052, + -0.01801471598446369, + 0.01782437413930893, + -0.0007661539711989462, + -0.05746953561902046, + 0.04651658236980438, + -0.006711946334689856, + -0.037035081535577774, + 0.010785473510622978, + 0.01434563472867012, + 0.025582775473594666, + -0.010615513660013676, + -0.037742335349321365, + 0.014130104333162308, + -0.021949294954538345, + 0.010856219567358494, + 0.007091077044606209, + 0.04084382951259613, + 0.005545387044548988, + 0.04400278627872467, + 0.06362337619066238, + 0.006076444871723652, + -0.02205158770084381, + -0.029520509764552116, + 0.026718532666563988, + -0.0071944440715014935, + -0.0339030958712101, + -0.028598129749298096, + -0.017161227762699127, + -0.04742197319865227, + 0.021510981023311615, + 0.0035571367479860783, + -0.02163281850516796, + -0.01400910597294569, + -0.05249158293008804, + 0.020017435774207115, + 0.000601938518229872, + 0.02574762888252735, + -0.021112186834216118, + 0.018120309337973595, + -0.021763911470770836, + -0.0057938662357628345, + 0.03518563508987427, + -0.002678939141333103, + -0.04085510969161987, + 0.00836422573775053, + 0.022026419639587402, + 0.009048746898770332, + -0.02272588014602661, + 0.00236452161334455, + 0.019616546109318733, + -0.002163721015676856, + 0.031530704349279404, + 0.005783287808299065, + 0.03368958830833435, + 0.023716865107417107, + -0.019829045981168747, + 0.027137359604239464, + 0.020079849287867546, + -0.018550030887126923, + 0.04980360344052315, + -0.008816453628242016, + -0.04294838011264801, + 0.037739772349596024, + -0.00042523082811385393, + 0.06387197971343994, + -0.02232581563293934, + 0.026284025982022285, + 0.017634069547057152, + 0.040619511157274246, + -0.02863992191851139, + 0.059189584106206894, + -0.0018614749424159527, + 0.029324252158403397, + -0.02653682418167591, + 0.07197479158639908, + -0.0006492850370705128, + 0.010004566051065922, + -0.05072222650051117, + 0.030293939635157585, + -0.015830857679247856, + 0.0022539054043591022, + -0.046759314835071564, + -0.0032533640041947365, + -0.013879411853849888, + 0.05086074769496918, + -0.00803611520677805, + 0.028475608676671982, + -0.0174548402428627, + -0.024490034207701683, + -0.0014191294321790338, + -0.039364926517009735, + 0.001396826235577464, + 0.013895202428102493, + -0.06606320291757584, + -0.019068656489253044, + -0.012552812695503235, + -0.012215198948979378, + 0.01221313513815403, + 0.07243568450212479, + 0.003108820877969265, + 0.010770445689558983, + 0.032232724130153656, + -0.031038343906402588, + -0.029229773208498955, + 0.011751792393624783, + -0.0024849248584359884, + -0.013102821074426174, + 0.013187152333557606, + -0.026133965700864792, + -0.0195319801568985, + -0.014429106377065182, + 0.03383294865489006, + -0.02326168119907379, + -0.07360904663801193, + -0.018560107797384262, + 0.04631809517741203, + -0.007591743487864733, + -0.0002312564174644649, + 0.008340949192643166, + 0.051388200372457504, + -0.0019916926976293325, + 0.022960200905799866, + -0.03220266103744507, + -0.03511540964245796, + 0.008790582418441772, + -0.013723663054406643, + -0.010326855815947056, + 0.014524784870445728, + 0.057804130017757416, + -0.021480944007635117, + 0.046830907464027405, + 0.008504357188940048, + -0.023557251319289207, + -0.06133784353733063, + -0.004288552328944206, + -0.026572242379188538, + 0.015816934406757355, + -0.0033172043040394783, + -0.04202394187450409, + 0.018375756219029427, + 0.03742729499936104, + 0.03303304687142372, + -0.021320080384612083, + -0.04226437956094742, + -0.009914256632328033, + 0.024932051077485085, + 0.01498961541801691, + 0.011247890070080757, + 0.023284200578927994, + -2.4565219064243138e-05, + -0.001993321580812335, + 0.012479419820010662, + 0.023424701765179634, + 0.0056264582090079784, + -0.01844194158911705, + 0.0035656888503581285, + 0.01359036099165678, + 0.07184604555368423, + 0.003094492480158806, + 0.058029357343912125, + -0.023897405713796616, + 0.051159679889678955, + -0.006806275807321072, + 0.017660439014434814, + 0.012592428363859653, + -0.016236303374171257, + 0.01806257665157318, + 0.014126990921795368, + -0.012988150119781494, + 0.02353893406689167, + 0.00037016882561147213, + -0.025355402380228043, + -0.02857046201825142, + 0.003994859289377928, + -0.04100266098976135, + -0.03235131874680519, + -0.020893093198537827, + 0.011389070190489292, + 0.0189767275005579, + 0.005931146442890167, + 0.009602401405572891, + 0.0403825007379055, + 0.021573998034000397, + 0.01950162649154663, + 0.00788675993680954, + 0.015016348101198673, + 0.03812440484762192, + 0.004602213390171528, + 0.010087613947689533, + 0.016110843047499657, + -0.011422968469560146, + 0.013001061975955963, + 0.06366340070962906, + -0.01602555811405182, + 0.043750517070293427, + -0.04870536923408508, + 0.0008551428327336907, + -0.03110267035663128, + -0.016770143061876297, + -0.01562550850212574, + -0.0007928519044071436, + 0.006503296550363302, + 0.009963023476302624, + 0.0065377927385270596, + 0.036177754402160645, + -0.009375576861202717, + -0.017787909135222435, + -0.040207263082265854, + -0.04362734034657478, + 0.02141638845205307, + 0.050730686634778976, + 0.029071582481265068, + 0.016219161450862885, + -0.006089405622333288, + 0.009836040437221527, + 0.0027462043799459934, + -0.0034791806247085333, + 0.0015460153808817267, + 0.011485174298286438, + -0.006966895889490843, + 0.0368482880294323, + -0.03884204477071762, + 0.030676623806357384, + -0.008482751436531544, + -0.03738611191511154, + 0.025787951424717903, + 0.0041631050407886505, + -0.01294461078941822, + 0.05409663915634155, + 0.01303953118622303, + 0.009496566839516163, + -0.006013500038534403, + -0.0480952262878418, + -0.012296421453356743, + 0.005106142722070217, + 0.0076693021692335606, + 0.004608333110809326, + -0.009957964532077312, + 0.013002268970012665, + 0.006700483616441488, + -0.014267445541918278, + 0.007349525112658739, + -0.014455130323767662 + ], + "start_index": 27411, + "end_index": 27447, + "token_count": 6, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "332ac3d3-93d8-5094-921f-8b10fd1e79b4", + "_source": { + "text": "\n\n## Modularidad\n\n\n\ninclude\nimport", + "embedding": [ + -0.02135763317346573, + -0.04857880622148514, + -0.012108276598155499, + -0.08299397677183151, + 0.053785257041454315, + -0.0127803860232234, + 0.036296065896749496, + -0.02742196060717106, + 0.017521943897008896, + 0.025733549147844315, + -0.020240643993020058, + -0.006806092336773872, + -0.012953797355294228, + -0.009707612916827202, + -0.0333947017788887, + 0.07705748081207275, + -0.023818615823984146, + 0.10252329707145691, + -0.0415305458009243, + -0.06747420132160187, + -0.018128326162695885, + 0.009230336174368858, + -0.014133497141301632, + 0.0660400465130806, + -0.056418418884277344, + 0.038004565984010696, + 0.0018856392707675695, + 0.03475140780210495, + -0.004107453860342503, + 0.0037363292649388313, + -0.021120695397257805, + -0.02241741307079792, + -0.09224668890237808, + -0.034188784658908844, + -0.010019910521805286, + -0.017175285145640373, + 0.0070253536105155945, + -0.04422907531261444, + 0.015830183401703835, + 0.005641183815896511, + -0.03821840137243271, + -0.05433395504951477, + 0.11206090450286865, + 0.016387226060032845, + 0.023970171809196472, + 0.036136191338300705, + 0.024836286902427673, + 0.04473795369267464, + -0.016334613785147667, + 0.023817427456378937, + -0.03181920945644379, + -0.02644878625869751, + 0.027130521833896637, + -0.02550402283668518, + -0.009022570215165615, + -0.04159810394048691, + 0.01238035224378109, + 0.008873599581420422, + -0.01799367368221283, + 0.03307840973138809, + -0.009046238847076893, + 0.02370048314332962, + -0.0013688515173271298, + 0.03307639807462692, + 0.014671111479401588, + 0.009275415912270546, + -0.008975318633019924, + -0.011168469674885273, + -0.006687991786748171, + -0.01851755566895008, + 0.00757567398250103, + -0.006067492533475161, + 0.007230041548609734, + 0.01698414795100689, + 0.0036952546797692776, + 0.00685870973393321, + 0.037835508584976196, + -0.023342899978160858, + 0.008817366324365139, + -0.027761580422520638, + -0.009279794991016388, + -0.002280965680256486, + -0.020324841141700745, + 0.02379889041185379, + 0.018842915073037148, + 0.09206782281398773, + 0.02607467956840992, + -0.018175214529037476, + 0.010781892575323582, + -0.0032734537962824106, + -0.1163427010178566, + 0.03801782801747322, + 0.0080343596637249, + 0.010255546309053898, + 0.030133768916130066, + -0.011349095031619072, + -0.053042519837617874, + -0.0018575139110907912, + 0.00489718047901988, + -0.03949088603258133, + 0.03445305675268173, + -0.013443163596093655, + 0.024328216910362244, + 0.04309350997209549, + 0.05178705230355263, + 0.03331056237220764, + -0.042203500866889954, + 0.03537856414914131, + -0.02975006215274334, + -0.02112291194498539, + -0.020082367584109306, + 0.017990462481975555, + -0.017112137749791145, + 0.014012620784342289, + -0.047637131065130234, + 0.003773408243432641, + 0.0146663011983037, + -0.03360168635845184, + 0.022302834317088127, + -0.03640488535165787, + -0.006716952193528414, + -0.025427786633372307, + -0.0011873949551954865, + -0.008391606621444225, + 0.020507415756583214, + -0.02579452097415924, + -0.05303926020860672, + 0.004411899950355291, + 0.008636223152279854, + -0.008852764964103699, + -0.006368993781507015, + -0.0021267293486744165, + -0.005811917129904032, + 0.002693921560421586, + 0.03835569694638252, + 0.0009815722005441785, + 0.023221319541335106, + -0.023593300953507423, + 0.022844230756163597, + -0.0319739393889904, + -0.014748403802514076, + 0.007751715835183859, + -0.03151592239737511, + 0.003216248471289873, + 0.0057538170367479324, + -0.010570751503109932, + -0.018915968015789986, + 0.026317937299609184, + 0.004501013085246086, + 0.06596611440181732, + 0.005111585836857557, + -0.020254652947187424, + -0.027925120666623116, + 0.0058248224668204784, + -0.01867327094078064, + 0.008366572670638561, + -0.011359700933098793, + -0.023414211347699165, + -0.006184698548167944, + 0.014428909868001938, + -0.023682141676545143, + -0.012743628583848476, + 0.0003899183648172766, + -0.017444968223571777, + -0.0013588389847427607, + 0.04754162207245827, + -0.02925039269030094, + -0.030555306002497673, + -0.03189404681324959, + -0.009442288428544998, + -0.010917355306446552, + 0.033747028559446335, + 0.005933276377618313, + 0.01708410680294037, + -0.01245259027928114, + -0.017982417717576027, + -0.04140029102563858, + -0.03737165406346321, + 0.007519991137087345, + 0.00028045434737578034, + 0.018070876598358154, + -0.010199692100286484, + -0.0007550586597062647, + 0.013488984666764736, + 0.02968401275575161, + 0.0586366280913353, + 0.02358824945986271, + 0.027058875188231468, + -0.02911306358873844, + 0.01641995646059513, + 0.043099287897348404, + 0.007641478907316923, + 0.009211232885718346, + 0.005386289209127426, + -0.02994503453373909, + -0.04116123914718628, + -0.038762159645557404, + -0.024464644491672516, + 0.003734045894816518, + -0.031242735683918, + -0.02452831342816353, + -0.01290226448327303, + 0.0025665038265287876, + 0.020051009953022003, + -0.008565042167901993, + 0.01761442981660366, + 0.05134711414575577, + -0.04420777037739754, + -0.02882346138358116, + -0.010034632869064808, + 0.008679857477545738, + 0.022225765511393547, + 0.004705643747001886, + -0.06452244520187378, + 0.012060195207595825, + -0.0716642215847969, + 0.030567485839128494, + 0.02050122246146202, + -0.007717896718531847, + 0.017951413989067078, + 0.021543534472584724, + 0.02177649550139904, + -0.03663709759712219, + -0.011684419587254524, + 0.019058041274547577, + -0.05040375888347626, + 0.03878209367394447, + -0.0015073250979185104, + -0.04859572649002075, + 0.05840769410133362, + 0.036820173263549805, + -0.02882581390440464, + 0.01820015162229538, + 0.0032750379759818316, + 0.031477440148591995, + -0.025936806574463844, + -0.018028179183602333, + 0.03575504571199417, + 0.012794097885489464, + -0.03441591188311577, + 0.024822557345032692, + 0.006674082018435001, + -0.00011405895202187821, + -0.0013611025642603636, + -0.0047647226601839066, + -0.002253752201795578, + 0.0004556169151328504, + 0.03464622423052788, + -0.03550827503204346, + -0.02605041302740574, + 0.012862099334597588, + -0.04972657561302185, + 0.0020421112421900034, + -0.029668958857655525, + 0.010051386430859566, + -0.04798450320959091, + -0.009143080562353134, + 0.010035932995378971, + 0.010632905177772045, + 0.01097520999610424, + 0.05846424028277397, + -0.03063451498746872, + -0.04778183624148369, + 0.004008762538433075, + 0.03650068864226341, + 0.006760983727872372, + -0.013149210251867771, + -0.04737275466322899, + -0.024590222164988518, + -0.024331558495759964, + -0.010862145572900772, + 0.020482463762164116, + -0.034592971205711365, + -0.0029270618688315153, + -0.01966572180390358, + 0.04834737256169319, + 0.01718077063560486, + -0.05037734657526016, + 0.043256960809230804, + -0.06779992580413818, + -0.029461028054356575, + 0.011843222193419933, + -0.02731137163937092, + 0.006901586428284645, + -0.05946924909949303, + 0.03391648828983307, + 0.012771401554346085, + -0.000463001721072942, + -0.028690114617347717, + 0.022178631275892258, + 0.03467293083667755, + -0.007121434900909662, + -0.03140433132648468, + 0.02793140895664692, + -0.05004384368658066, + -0.013499665074050426, + -0.008895236998796463, + 0.017899835482239723, + 0.03270060569047928, + -0.005906762555241585, + -0.010197966359555721, + -0.03248155862092972, + -0.02254146710038185, + -0.033630043268203735, + -0.005739984568208456, + 0.01018963661044836, + 0.040601134300231934, + -0.05769066512584686, + 0.012653178535401821, + -0.004346949979662895, + 0.08473752439022064, + 0.028870392590761185, + -0.025567062199115753, + 0.019588759168982506, + -0.02328796125948429, + -0.008697474375367165, + -0.018012626096606255, + 0.021950557827949524, + -0.00920484121888876, + 0.022365283221006393, + 0.057324349880218506, + -0.002002243185415864, + 0.039760176092386246, + -0.05852830410003662, + -0.006474758964031935, + -0.022202907130122185, + 0.014208939857780933, + 0.054166555404663086, + 0.026414839550852776, + -0.03226402774453163, + -0.015853822231292725, + 0.04768981412053108, + 0.04398435726761818, + 0.01928950846195221, + 0.038415249437093735, + 0.038845162838697433, + 0.012397347018122673, + 0.011576440185308456, + -0.003227921901270747, + 0.01876038871705532, + -0.011160091497004032, + 0.008255709894001484, + -0.020149145275354385, + 0.030703112483024597, + -0.021846937015652657, + -0.029225153848528862, + 0.03734423220157623, + 0.0201011560857296, + 0.03338911384344101, + 0.02865009941160679, + -0.07515975087881088, + -0.008042195811867714, + -0.010312347672879696, + 0.013176976703107357, + -0.003876172937452793, + -0.008556270971894264, + 0.045901358127593994, + 0.03031383454799652, + -0.03764869272708893, + 0.03115089051425457, + -0.00044181113480590284, + -0.03589016571640968, + -0.006646620575338602, + 0.0044700452126562595, + -0.04618430510163307, + -0.007710886187851429, + -0.0015214490704238415, + -0.03536742553114891, + 0.053557559847831726, + -0.06307707726955414, + -0.10148587077856064, + -0.020882224664092064, + -0.011942222714424133, + -0.02167832851409912, + 0.06443425267934799, + -0.0008358446648344398, + 0.04948605224490166, + 0.020669251680374146, + 0.037398386746644974, + 0.051153719425201416, + -0.035864561796188354, + -0.03195997327566147, + 0.002178743714466691, + -0.010535025037825108, + -0.021021369844675064, + -0.007762999273836613, + 0.024658668786287308, + -0.018765175715088844, + 0.0020159012638032436, + 0.016775529831647873, + 0.004785568453371525, + 0.022821897640824318, + 0.037010557949543, + 0.005178513005375862, + 0.07131750881671906, + 0.06129346787929535, + -0.04172046110033989, + 0.04010901227593422, + -0.04562247917056084, + -0.008343149907886982, + -0.014337890781462193, + 0.0006928772199898958, + -0.04775606095790863, + 0.005460172425955534, + 0.050556447356939316, + 0.0279371477663517, + 0.007070485502481461, + -0.03219228610396385, + -0.03432989493012428, + -0.025720832869410515, + 0.011617595329880714, + 0.04603014513850212, + -0.0029073425102978945, + -0.015978669747710228, + 0.03259538486599922, + -0.013324834406375885, + 0.025188203901052475, + -0.012735148891806602, + 0.0548483245074749, + -0.03350650891661644, + -0.04784921556711197, + -0.008364355191588402, + -0.0552031509578228, + -0.034109488129615784, + -0.01589263789355755, + 0.015449997037649155, + -0.03196553513407707, + -0.022746874019503593, + 0.03309643641114235, + 0.058940377086400986, + -0.0343916155397892, + -0.028056180104613304, + 0.04697992280125618, + 0.01995144970715046, + -0.011849644593894482, + 0.013329025357961655, + 0.08047344535589218, + 0.01530817523598671, + -0.025208136066794395, + 0.020462289452552795, + 0.00850249920040369, + 0.004702499136328697, + -0.01955142803490162, + -0.015634702518582344, + 0.023374784737825394, + 0.004846738651394844, + -0.0011861467501148582, + -0.02600674144923687, + -0.008176715113222599, + -0.015363072045147419, + 0.0005235188873484731, + 0.001339482725597918, + 0.010905025526881218, + 0.05100680887699127, + 0.03031346946954727, + -0.07104901224374771, + 0.002089268760755658, + -0.013411365449428558, + 0.055555909872055054, + 0.06585242599248886, + -0.030847087502479553, + 0.007487608585506678, + 0.013585738837718964, + -0.07183314114809036, + -0.03000197559595108, + 0.007461748085916042, + -0.00422589061781764, + 0.021102556958794594, + 0.003996125888079405, + -0.019861456006765366, + 0.040812358260154724, + -0.012598328292369843, + -0.021128229796886444, + -0.01756669394671917, + 0.03274713456630707, + 0.02365206554532051, + -0.010758819058537483, + 0.05463513359427452, + -0.04608280956745148, + 0.03526856377720833, + -0.022267384454607964, + -0.018848707899451256, + 0.04817970469594002, + -0.07517335563898087, + 0.0025094400625675917, + -0.012575138360261917, + 0.03946474567055702, + -0.01975082792341709, + -0.024556057527661324, + -0.06780694425106049, + -0.01687178760766983, + 0.010624874383211136, + 0.00621323985978961, + -0.0127634322270751, + 0.03145970404148102, + 0.01233338937163353, + 0.04018786922097206, + -0.03895598649978638, + -0.07645189017057419, + 0.002392915775999427, + 0.00016877097368706018, + 0.013600305654108524, + 0.008655848912894726, + 0.02884715609252453, + -0.04943416640162468, + -0.04198692366480827, + 0.03775162249803543, + 0.057485513389110565, + 0.036981746554374695, + 0.07578190416097641, + -0.009848508983850479, + -0.0004165394348092377, + -0.030881263315677643, + 0.05067684128880501, + -0.04342576861381531, + -0.025731850415468216, + 0.03134175390005112, + 0.005327861290425062, + 0.006213871296495199, + 0.018338462337851524, + 0.016927143558859825, + -0.014306951314210892, + -0.005551331676542759, + -0.02968939207494259, + -0.0035634778905659914, + 0.023185046389698982, + 0.06221098452806473, + -0.0043308972381055355, + 0.07444027066230774, + 0.03565751761198044, + 0.0068145315162837505, + 0.07251037657260895, + 0.010435354895889759, + -0.026406574994325638, + 0.01101688202470541, + 0.026422565802931786, + 0.023041609674692154, + 0.011169246397912502, + -0.017634661868214607, + -0.017201315611600876, + -0.023334307596087456, + -0.010526241734623909, + 0.008544930256903172, + 0.005433466751128435, + 0.0015243417583405972, + -0.03028874844312668, + -0.010011333972215652, + 0.028184503316879272, + -0.008797152899205685, + 0.03861676901578903, + 0.011817590333521366, + 0.008440805599093437, + 0.052792537957429886, + 0.012586317025125027, + -0.05600225180387497, + -0.010004648007452488, + 0.05580278858542442, + -0.00941726379096508, + 0.014775491319596767, + -0.011754817329347134, + 0.04217155650258064, + 0.02720080129802227, + -0.017679188400506973, + -0.0009000773425213993, + 0.02616262622177601, + 0.0034822130110114813, + 0.0015436960384249687, + 0.05183465778827667, + 0.005923742428421974, + 0.02085341140627861, + 0.05635702237486839, + -0.045468769967556, + 0.008946189656853676, + 0.02475026249885559, + 0.029222410172224045, + -0.031833186745643616, + 0.005602924153208733, + 0.046888239681720734, + -0.019721681252121925, + -0.01446608453989029, + 0.04347499459981918, + -0.003526005195453763, + 0.009764756076037884, + -0.004782428499311209, + 0.048283468931913376, + -0.033689938485622406, + -0.022885745391249657, + -0.02218109741806984, + 0.02365381456911564, + 0.030702902004122734, + -0.0024163841735571623, + -0.058628570288419724, + 0.03000098466873169, + -0.0023222300224006176, + 0.0471954420208931, + -0.04682778939604759, + -0.05424901843070984, + -0.05837209150195122, + 0.006203959695994854, + 0.00512004503980279, + 0.037129443138837814, + 0.014334090054035187, + -0.024057308211922646, + 0.009221432730555534, + -0.0777042806148529, + -0.006520742084830999, + 0.019720174372196198, + -0.023510757833719254, + -0.029066946357488632, + 0.008458773605525494, + -0.03273720294237137, + -0.0062060365453362465, + -0.017077775672078133, + -0.008770912885665894, + -0.006691359914839268, + 0.003674841485917568, + 0.05030003562569618, + 0.010794587433338165, + 0.017921950668096542, + -0.05927607789635658, + -0.013463902287185192, + -0.057088639587163925, + -0.02272546850144863, + 0.08101699501276016, + -0.01067122258245945, + 0.046547967940568924, + 0.03599012270569801, + -0.030476022511720657, + -0.004903155844658613, + -0.05616145208477974, + -0.006465158425271511, + -0.03753649815917015, + -0.015706855803728104, + -0.03213249891996384, + 0.011389304883778095, + -0.026960808783769608, + -0.03354965150356293, + 0.016030851751565933, + 0.02645711787045002, + -0.017805753275752068, + 0.028351236134767532, + -0.047552961856126785, + 0.00338868610560894, + -0.004014429170638323, + -0.06546986103057861, + -0.008695680648088455, + -0.05676095187664032, + 0.027591710910201073, + 0.03220970556139946, + -0.005866795312613249, + 0.07214189320802689, + -0.00620943633839488, + 0.001288438681513071, + -0.024373764172196388, + -0.017309891059994698, + -0.04175196960568428, + -0.07458141446113586, + 0.055479079484939575, + 0.054589781910181046, + -0.01434225495904684, + 0.049339890480041504, + -0.05258398503065109, + -0.0004598537343554199, + -0.010205734521150589, + -0.0015782422851771116, + -0.019142191857099533, + 0.05359399691224098, + 0.07085485011339188, + -0.025317730382084846, + 0.002229203935712576, + 0.010878317058086395, + -0.05700681731104851, + -0.00172419345472008, + 0.0764615386724472, + -0.0166902095079422, + -0.026035362854599953, + -0.033545978367328644, + -0.0043218256905674934, + -0.02735239453613758, + 0.03457188606262207, + -0.051504213362932205, + -0.014021280221641064, + -0.009844758547842503, + -0.005897666793316603, + -0.03248772770166397, + -0.02053735964000225, + -0.06329883635044098, + -0.03854528069496155, + 0.01374733354896307, + -0.005542628932744265, + 0.014291527681052685, + 0.005465363152325153, + -0.023494483903050423, + -0.019813867285847664, + 0.01117880828678608, + 0.007049025967717171, + 0.017510997131466866, + 0.0002825500851031393, + -0.061428144574165344, + -0.04187962785363197, + -0.02775687165558338, + -0.018681906163692474, + -0.024057278409600258, + 0.02638871595263481, + 0.027589499950408936, + 0.003931126557290554, + -0.038831789046525955, + 0.019491814076900482, + -0.016706159338355064, + -0.011957935057580471, + 0.03710799291729927, + 0.0079406863078475, + -0.03368096053600311, + -0.0014833415625616908, + 0.006184362806379795, + -0.007121785078197718, + -0.03239772096276283, + -0.017092229798436165, + -0.026819657534360886, + 0.008822843432426453, + 0.036958612501621246, + -0.05295697972178459, + 0.06730084121227264, + -0.0014994615921750665, + -0.016254309564828873, + -0.021942580118775368, + 0.07601572573184967, + 0.014635592699050903, + -0.024521714076399803, + -0.01797681301832199, + 0.00029834339511580765, + -0.01406724564731121, + 0.041978225111961365, + -0.001554490183480084, + 0.027602093294262886, + -2.1788569938507862e-05, + 0.06110220402479172, + -0.010732298716902733, + 0.05942653864622116, + -0.030989399179816246, + -0.002282107714563608, + 0.025829002261161804, + -0.02520846016705036, + 0.004807883407920599, + -0.013576360419392586, + 0.011014316231012344, + -0.020132379606366158, + -0.03052408993244171, + -0.010421560145914555, + 0.02976975403726101, + 0.048134420067071915, + 0.014964495785534382, + -0.003516052383929491, + -0.007637273985892534, + -0.05827926844358444, + 0.0017812891164794564, + 0.04030291363596916, + 0.026844490319490433, + 0.030447594821453094, + 0.025857580825686455, + 0.028737684711813927, + 0.011752787046134472, + 0.0005104569718241692, + -0.0035996700171381235, + 0.036821309477090836, + -0.003109812270849943, + 0.0429244190454483, + -0.01339021511375904, + 0.035357385873794556, + -0.005580177064985037, + 0.002803643001243472, + 0.005738913547247648, + 0.05123887583613396, + 0.022980188950896263, + 0.0012285234406590462, + -0.02386915124952793, + -0.022723525762557983, + 0.0028661347460001707, + -0.009968812577426434, + 0.05571472644805908, + -0.015341781079769135, + -0.033768218010663986, + 0.04653748497366905, + 0.03421518951654434, + -0.02603898011147976, + 0.03911816328763962, + 0.00963913556188345, + -0.014836183749139309, + 0.011737179942429066, + 0.07507532835006714, + -0.01843588799238205, + -0.001366039621643722, + 0.02671574242413044, + -0.003793638665229082, + -0.008867299184203148, + 0.03363115340471268, + 0.002894354285672307, + -0.01650441437959671, + -0.02719566784799099, + -0.012835642322897911, + 0.02047591283917427, + -0.008495034649968147, + -3.0314316973090172e-05, + 0.011862401850521564, + 0.007144250441342592, + -0.01960458606481552, + -0.045009102672338486, + 0.0017618453130126, + 0.0010520349023863673, + -0.034423839300870895, + -0.0011903310660272837, + -0.0033350237645208836, + -0.012356686405837536, + 0.012029804289340973, + 0.019520767033100128, + 0.020097149536013603, + -0.025977546349167824, + 0.029891418293118477, + -0.006980168633162975, + 0.029109299182891846, + -0.03455193713307381, + 0.009317485615611076, + -0.00213904632255435, + 0.030104495584964752, + -0.011173085309565067, + -0.01305614598095417, + 0.025340277701616287, + -0.008824934251606464, + -0.0030107100028544664, + 0.029606780037283897, + -0.01762663945555687, + 0.011008228175342083, + 0.02836945466697216, + 0.02514765039086342, + 0.025048095732927322, + 0.04952499642968178, + -0.012644089758396149, + -0.0222996324300766, + 0.0014181035803630948, + 0.050964925438165665, + -0.013501022011041641, + -0.015836725011467934, + -0.034937772899866104, + -0.0005318230832926929, + 0.015571602620184422, + 0.021822409704327583, + -0.04732716456055641, + 0.02538507990539074, + 0.008570803329348564, + -0.046529825776815414, + 0.035505227744579315, + -0.008823368698358536, + 0.026201076805591583, + 0.04028083756566048, + -0.01604272797703743, + 0.0775887742638588, + 0.006487575359642506, + -0.003050686791539192, + -0.06207503005862236, + 0.03629978746175766, + -0.01844608783721924, + -0.029380498453974724, + -0.0656341016292572, + 0.0016075517050921917, + -0.00965977180749178, + 0.04790254682302475, + -0.02906006947159767, + -4.809096026292536e-06, + -0.020069485530257225, + -0.01767296902835369, + -0.03707030043005943, + -0.007713779807090759, + -0.014538130722939968, + 0.03206528723239899, + 0.009944675490260124, + -0.04532219097018242, + 0.002402686048299074, + -0.021252630278468132, + 0.01264979038387537, + 0.03566712141036987, + -0.02277079038321972, + 0.0444779172539711, + 0.006525800097733736, + 0.0032272543758153915, + -0.019082138314843178, + 0.016937188804149628, + 0.049595367163419724, + -0.01269608922302723, + -0.047943342477083206, + -0.01565873995423317, + -0.0011628156062215567, + -0.012160005047917366, + -0.02086479961872101, + 0.013777129352092743, + -0.01487800758332014, + 0.0061033908277750015, + 0.038865379989147186, + 0.007579426746815443, + -0.013744753785431385, + -0.061537131667137146, + 0.04693053290247917, + -4.6165267121978104e-05, + -0.02986762300133705, + 0.00822948757559061, + -0.04153115674853325, + -0.026282522827386856, + -0.011740820482373238, + -0.01997467689216137, + -0.04435550794005394, + 0.02125365287065506, + -0.03938628360629082, + 0.012710749171674252, + 0.055075373500585556, + -0.014003768563270569, + -0.013480803929269314, + -0.018180102109909058, + -0.028058119118213654, + 0.03858053311705589, + 0.0365973562002182, + -0.003987397067248821, + -0.06294801086187363, + 0.013474653474986553, + -9.850372589426115e-05, + -0.0014359964989125729, + -0.007154530845582485, + 0.019913576543331146, + 0.054173629730939865, + 0.0007101734518073499, + -0.009879090823233128, + 0.08893750607967377, + -0.00632226699963212, + -0.032785072922706604, + 0.0018079356523230672, + 0.0033260744530707598, + 0.03544902428984642, + -0.050411030650138855, + 0.021303091198205948, + -0.02671239525079727, + 0.008850658312439919, + -0.012505781836807728, + 0.020129211246967316, + -0.041726358234882355, + 0.001892854692414403, + 0.0364689826965332, + 0.020631961524486542, + 0.03796212747693062, + 0.010623185895383358, + 0.036392271518707275, + 0.0847482904791832, + 0.0427875779569149, + 0.02611985057592392, + 0.0033992815297096968, + -0.02514343336224556, + -0.0006620261119678617, + -0.0017406604019924998, + -0.04274963214993477, + 0.02294030971825123, + 0.023456988856196404, + 0.03342791646718979, + 0.002868391340598464, + -0.03787710517644882, + 0.03706108778715134, + -0.004654414486140013, + 0.020403515547513962, + 0.05225415527820587, + -0.007645108737051487, + 0.010950356721878052, + 0.010559802874922752, + 0.050255291163921356, + -0.01881992816925049, + 0.02103719301521778, + -0.018734432756900787, + -0.0032875228207558393, + 0.019696660339832306, + 0.008920976892113686, + 0.006650412455201149, + 0.0018788755405694246, + 0.026203710585832596, + 0.01587359793484211, + -0.008713965304195881, + -0.04308701679110527, + -0.035076938569545746, + 0.0060644447803497314, + 0.04368564859032631, + -0.013349520973861217, + -0.008028542622923851, + 0.05842837691307068, + 0.04937242344021797, + -0.03074026294052601, + -0.0020644415635615587, + 0.08057113736867905, + 0.02466130256652832, + 0.022034158930182457, + -0.0022845552302896976, + 0.014679808169603348, + 0.034617599099874496, + -0.01970614306628704, + 0.034503720700740814, + 0.022857943549752235, + 0.0188620425760746, + -0.010771075263619423, + 0.0031236838549375534, + -0.005778635386377573, + 0.06296107918024063, + -0.0448644645512104, + -0.06906487792730331, + 0.017650211229920387, + -0.03564285859465599, + 0.0037691930774599314, + 0.032751888036727905, + -0.046392202377319336, + -0.0024260208010673523, + 0.017049765214323997, + 0.02002483606338501, + -0.010279116220772266, + -0.046626705676317215, + 0.02736499346792698, + 0.017971036955714226, + 0.014950377866625786, + -0.046968139708042145, + 0.009418100118637085, + 0.007744693197309971, + 0.028229016810655594, + 0.008487622253596783 + ], + "start_index": 27447, + "end_index": 27487, + "token_count": 5, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "610900f5-b916-52ea-867a-e97ae0830395", + "_source": { + "text": "\n\n## Operadores lógicos\n\n\n\nand\nor\nnot\nin\nis", + "embedding": [ + 0.00942615233361721, + -0.049631524831056595, + -0.006671338342130184, + -0.11270438134670258, + 0.018612107262015343, + 0.02427259460091591, + 0.007755340542644262, + 0.02025466598570347, + 0.0285047460347414, + -0.0111891720443964, + 0.011861330829560757, + -0.031154321506619453, + 0.09046448767185211, + -0.00498992670327425, + -0.04333339259028435, + 0.05670895054936409, + -0.03515766188502312, + -0.026544412598013878, + 0.007599275559186935, + -0.104648657143116, + -0.021205876022577286, + -0.008676646277308464, + 0.012191849760711193, + 0.08523271232843399, + 0.005444370675832033, + -0.01885470189154148, + -0.04963059350848198, + 0.08480898290872574, + -0.02525916136801243, + -0.024061672389507294, + -0.001385949901305139, + -0.026088908314704895, + -0.026683632284402847, + 0.010898099280893803, + 0.004866338800638914, + -0.008912589401006699, + 0.00037727432209067047, + 0.026039643213152885, + -0.018674271181225777, + 0.003751387819647789, + 0.024169880896806717, + 0.012959415093064308, + 0.03435533493757248, + 0.016741113737225533, + -0.06633307784795761, + 0.012878844514489174, + 0.08985593914985657, + -0.009212933480739594, + -0.030581513419747353, + 0.006980468053370714, + -0.02829657681286335, + -0.026011137291789055, + 0.0052519869059324265, + 0.004610951989889145, + -0.04642094299197197, + -0.04384474828839302, + 0.03134877607226372, + -0.029100745916366577, + 0.029213327914476395, + -0.026171017438173294, + -0.037908557802438736, + -0.015666218474507332, + -0.08652018755674362, + -0.028408721089363098, + 0.037150267511606216, + 0.04892243817448616, + -0.007957052439451218, + -0.029888322576880455, + -0.06879639625549316, + 0.0018639385234564543, + -0.004800642840564251, + 0.05902499333024025, + 0.05008925497531891, + 0.02035943605005741, + 0.012195910327136517, + 0.026932325214147568, + 0.005574134644120932, + -0.0269455723464489, + -0.005497698672115803, + -0.009224416688084602, + -0.001605679397471249, + 0.03356989473104477, + -0.03305324539542198, + 0.01464741863310337, + 0.006012480705976486, + 0.022633405402302742, + -0.038505181670188904, + -0.008266631513834, + 0.03699259087443352, + 0.010669084265828133, + -0.005700018722563982, + -0.008937053382396698, + -0.03350657969713211, + -0.03153277188539505, + -0.017414527013897896, + -0.015822164714336395, + -0.02218511514365673, + -0.015183279290795326, + 0.013464152812957764, + -0.0044693248346447945, + 0.006287120748311281, + -0.009545340202748775, + 0.0031911064870655537, + 0.09609070420265198, + -0.006465444806963205, + 0.07707633823156357, + -0.025491002947092056, + -0.014712157659232616, + 0.020398251712322235, + 0.040594883263111115, + -0.03283454477787018, + 0.020180728286504745, + -0.03447853401303291, + 0.03758507966995239, + -0.006625005975365639, + -0.02492787130177021, + 0.007178368978202343, + -0.021058769896626472, + 0.0247039794921875, + 0.01548710186034441, + -0.007789536379277706, + -0.07526338845491409, + -0.00019436213187873363, + 0.0023744285572320223, + 0.010918836109340191, + -0.019961265847086906, + -0.0316571369767189, + -0.02154984511435032, + 0.0173217561095953, + -0.015807077288627625, + -0.02745393104851246, + -0.04685022309422493, + -0.028859226033091545, + 0.04466070234775543, + 0.012303889729082584, + -0.016454622149467468, + 0.020890187472105026, + -0.008511913940310478, + 0.037422068417072296, + -0.019716694951057434, + -0.07017257809638977, + 0.01549922302365303, + -0.012738404795527458, + -0.017305387184023857, + 0.0303416159003973, + 0.02681911550462246, + 0.012196873314678669, + 0.005972167011350393, + -0.013628163374960423, + -0.00298508582636714, + -0.006311492994427681, + -0.028536170721054077, + -0.04117874428629875, + -0.035829417407512665, + -0.021314414218068123, + -0.0033621361944824457, + 0.00179637735709548, + 0.018008776009082794, + 0.0271464753895998, + -0.005974435713142157, + -0.01838289387524128, + 0.003683747723698616, + -0.018152877688407898, + -0.02004820480942726, + -0.005502068903297186, + 0.019592201337218285, + -0.06364837288856506, + -0.04603039100766182, + 0.05395382270216942, + -0.00512798223644495, + -0.019038774073123932, + 0.013395084999501705, + 0.020507914945483208, + -0.012716169469058514, + -0.00014311545237433165, + -0.0027857155073434114, + -0.04151167348027229, + 0.018188267946243286, + -0.005675465799868107, + -0.0019850817043334246, + 0.012339103035628796, + -0.015696201473474503, + 0.010485242120921612, + 0.02726130187511444, + 0.016172373667359352, + 0.06093163788318634, + -0.011700422503054142, + -0.006553126499056816, + -0.01543351449072361, + 0.009202441200613976, + 0.041185565292835236, + 0.011021686717867851, + -0.032300036400556564, + 6.463643512688577e-05, + -0.035110440105199814, + -0.0045819878578186035, + -0.02537667751312256, + -0.014818311668932438, + 0.013998576439917088, + 0.005921070463955402, + 0.01986505091190338, + 0.00818846095353365, + -0.02471638284623623, + 0.020953355357050896, + -0.04032023996114731, + 0.013352922163903713, + 0.035863324999809265, + 0.0020319721661508083, + 0.003295882372185588, + -0.00532078230753541, + 0.033199477940797806, + -0.0012395144440233707, + 0.01039342861622572, + -0.022513296455144882, + 0.012620753608644009, + -0.006760565098375082, + -0.007387419231235981, + 0.011230643838644028, + -0.011333579197525978, + -0.02792329341173172, + 0.030650565400719643, + 0.0026346135418862104, + -0.014233202673494816, + -0.002258677501231432, + 0.07473856955766678, + -0.01920407824218273, + 0.0035648744087666273, + -0.004629756789654493, + -0.053847867995500565, + 0.006879223510622978, + 0.0345124788582325, + 0.022739598527550697, + -0.0319809727370739, + -0.009416031651198864, + 0.01521842461079359, + -0.005261626094579697, + -0.005313730798661709, + 0.002369575435295701, + 0.007159111090004444, + -0.01709163933992386, + 0.0010690456256270409, + 0.006935005076229572, + 0.021963372826576233, + 0.030319998040795326, + 0.0008483580895699561, + 0.02100663259625435, + 0.014078684151172638, + 0.025344783440232277, + -0.013138668611645699, + 0.01731225848197937, + 0.07155396044254303, + 0.016829555854201317, + 0.010683215223252773, + 0.05348699912428856, + 0.015010193921625614, + 0.012861802242696285, + -0.01205381564795971, + -0.033142220228910446, + 0.009447404183447361, + -0.0006364865112118423, + 0.011302568949759007, + -0.03517990931868553, + -0.002990452339872718, + 0.01282547041773796, + -0.0030179289169609547, + 0.005956914275884628, + -0.028974486514925957, + -0.10013008117675781, + -0.024033943191170692, + -0.008227119222283363, + 0.001303840079344809, + -0.021918460726737976, + 0.020263539627194405, + -0.015550062991678715, + 0.004372364841401577, + 0.0101472744718194, + -0.003525561885908246, + -0.07704218477010727, + 0.013668464496731758, + -0.013652519322931767, + 0.024970073252916336, + -0.051492538303136826, + 0.005610608030110598, + -0.032078031450510025, + -0.016214946284890175, + 0.03462827578186989, + 0.0018010406056419015, + -0.0002793363528326154, + 0.02199905551970005, + 0.009818919003009796, + -0.02388640306890011, + 0.04750790074467659, + -0.052006904035806656, + 0.04500999301671982, + -0.044321056455373764, + -0.02640131488442421, + -0.029765471816062927, + 0.09800007194280624, + -0.039925068616867065, + -0.005103711038827896, + -0.009184323251247406, + 0.021007565781474113, + -0.01257224753499031, + -0.025309499353170395, + -0.013377800583839417, + 0.00013228047464508563, + 0.07549174875020981, + -0.05332992970943451, + -0.027612091973423958, + -0.040088992565870285, + 0.03217645734548569, + 0.014212400652468204, + -0.005806686822324991, + -0.007263573352247477, + 0.009662809781730175, + 0.025081386789679527, + 0.004754053894430399, + 0.06604189425706863, + -0.012702714651823044, + 0.03088369406759739, + -0.011682860553264618, + -0.034146007150411606, + -0.030354980379343033, + -0.024487147107720375, + 0.010797721333801746, + -0.012017033994197845, + 0.078181192278862, + -0.020686618983745575, + 0.038232170045375824, + 0.02513575181365013, + -0.007215957622975111, + -0.00038650413625873625, + 0.003491966752335429, + -0.010037776082754135, + 0.013054552488029003, + 0.005798865109682083, + 0.0020616035908460617, + -0.02991790510714054, + -0.009457124397158623, + 0.01804591529071331, + 0.019504232332110405, + -0.00736615527421236, + 0.028233230113983154, + 0.011694896034896374, + -0.03521348163485527, + -0.013898146338760853, + -0.05619848147034645, + 0.02577284909784794, + 0.037167325615882874, + -0.02659481391310692, + -0.030464980751276016, + 0.007868470624089241, + 0.03746036812663078, + 0.06304000318050385, + -0.024418821558356285, + 0.00874368567019701, + -0.03773476928472519, + 0.06181951239705086, + -0.0526871494948864, + -0.011753526516258717, + -0.05940243974328041, + -0.01959618367254734, + 0.052965015172958374, + 0.02069556899368763, + 0.0027339840307831764, + -0.04702634736895561, + -0.03963105008006096, + -0.00576545437797904, + 0.06288202106952667, + -0.04304758831858635, + -0.11478465050458908, + -0.055371612310409546, + -0.002196777844801545, + 0.024763349443674088, + 0.04756774753332138, + 0.002981356577947736, + 0.08273576945066452, + 0.03356074169278145, + -0.010812538675963879, + 0.04458295553922653, + -0.036266058683395386, + 0.04592062532901764, + 0.0028782992158085108, + 0.027638981118798256, + -0.04303527995944023, + 0.0288411732763052, + -0.011578676290810108, + -0.03458444029092789, + 0.03725920245051384, + -0.035087209194898605, + 0.011794147081673145, + -0.0006350550102069974, + -0.014859538525342941, + 0.022099019959568977, + 0.03026614338159561, + 0.02219558134675026, + -0.047029759734869, + 0.0028996176552027464, + -0.09286712110042572, + 0.0066962894052267075, + 0.023577911779284477, + 0.02016441337764263, + -0.031119942665100098, + 0.03863557428121567, + -0.016409743577241898, + -0.015163692645728588, + -0.026761561632156372, + -0.00981519278138876, + -0.01383818220347166, + -0.018789028748869896, + 0.0048081157729029655, + -0.02641034498810768, + -0.016572672873735428, + 0.053817231208086014, + 0.043278660625219345, + 0.007796179503202438, + 0.032039906829595566, + -0.0501040518283844, + -0.035874143242836, + -0.0407261997461319, + -0.0635388046503067, + 0.06687276065349579, + -0.023276127874851227, + -0.07254814356565475, + 0.03509603068232536, + -0.006707031279802322, + 0.05640653893351555, + -0.06198585778474808, + -0.024964898824691772, + 0.04059657081961632, + -0.06138738989830017, + 0.03027155064046383, + 0.010055330581963062, + 0.00805097259581089, + -0.037732403725385666, + -0.0005685227224603295, + 0.047813910990953445, + 0.03169892728328705, + -0.016887228935956955, + -0.015377889387309551, + -0.045634444802999496, + -0.041066113859415054, + -0.0034492062404751778, + -0.007517000660300255, + -0.018120544031262398, + -0.027273496612906456, + -0.03507059067487717, + 0.048975829035043716, + 0.001532684313133359, + 0.013126307167112827, + 0.033011842519044876, + -0.09609163552522659, + -0.0016858645249158144, + 0.056621115654706955, + -0.026585815474390984, + -0.010579343885183334, + -0.028488732874393463, + -0.030361931771039963, + 0.02217719331383705, + 0.0030037229880690575, + -0.028348267078399658, + -0.03437650576233864, + 0.038820479065179825, + -0.04389207437634468, + -0.04059493914246559, + -0.015249735675752163, + -0.025605054572224617, + 0.02561476267874241, + 0.03564763069152832, + 0.011580457910895348, + 0.007599981967359781, + -0.008046199567615986, + -0.0075800446793437, + -0.025523273274302483, + 0.015117891132831573, + 0.03179151192307472, + -0.016231974586844444, + -0.029597966000437737, + -0.06560584157705307, + 0.03872347250580788, + 0.011137137189507484, + -0.012246974743902683, + 0.04284194856882095, + -0.012723256833851337, + 0.022367214784026146, + -0.017621858045458794, + 0.012351690791547298, + -0.020220549777150154, + -0.03327581286430359, + 0.033502865582704544, + 0.0361485630273819, + -0.03321700915694237, + -0.006621217355132103, + -0.01686299405992031, + 0.0025478829629719257, + 0.06270914524793625, + 0.02036258578300476, + -0.0014021488605067134, + -0.12802556157112122, + -0.02647046186029911, + 0.01825421303510666, + 0.0028391655068844557, + 0.013372091576457024, + 0.020862717181444168, + 0.05807790905237198, + -0.033289697021245956, + 0.01489393599331379, + -0.017288070172071457, + 0.03297923132777214, + 0.06242423132061958, + -0.0423869788646698, + -0.055584583431482315, + -0.03763628378510475, + -0.031981851905584335, + -0.029754459857940674, + 0.011323980055749416, + -0.0017607479821890593, + 0.022641915827989578, + -0.002972342073917389, + 0.05055735260248184, + -0.009345097467303276, + 0.0370824933052063, + 0.04282199591398239, + 0.02110915258526802, + -0.0027063891757279634, + 0.05031769722700119, + 0.059697363525629044, + -0.027833392843604088, + 0.012841812334954739, + 0.0020931398030370474, + -0.03584611788392067, + 0.02314750850200653, + -0.04096759110689163, + -0.03675675019621849, + 0.04138600826263428, + 0.03430391475558281, + 0.025483790785074234, + -0.0056010945700109005, + 0.007512308191508055, + 0.002303315093740821, + 0.012722397223114967, + -0.015930702909827232, + 0.006123315542936325, + 0.04242543503642082, + -0.042256344109773636, + 0.011719901114702225, + -0.020313655957579613, + 0.007525540888309479, + 0.007730082608759403, + 0.03343706578016281, + 0.02387026883661747, + -0.017222950235009193, + 0.06802003085613251, + 0.019905097782611847, + 0.029784714803099632, + -0.00458195386454463, + -0.014660668559372425, + 0.048717331141233444, + 0.039365626871585846, + 0.009631889872252941, + 0.04100506752729416, + -0.024301093071699142, + -0.031177828088402748, + -0.04501829668879509, + 0.0021258373744785786, + -0.004087609238922596, + 0.029917672276496887, + 0.005272201262414455, + 0.03674829751253128, + 0.02231457084417343, + 0.034906055778265, + 0.007801343686878681, + -0.002380846766754985, + 0.051926206797361374, + -0.02170710079371929, + -0.018082018941640854, + -0.035727206617593765, + 0.05978807061910629, + 0.034911248832941055, + -0.0076620914041996, + 0.0573185496032238, + -0.016075218096375465, + -0.018526338040828705, + 0.06462929397821426, + 0.02254529669880867, + -0.007280661258846521, + -0.03797706961631775, + 0.020320139825344086, + -0.0016939534107223153, + -0.04166179895401001, + 0.0008618513820692897, + -0.05086622014641762, + -0.009500120766460896, + -0.012011183425784111, + 0.029673626646399498, + -0.01770920492708683, + 0.009053673595190048, + -0.005741677712649107, + 0.026454471051692963, + 0.00827076006680727, + 0.05977866053581238, + 0.023576028645038605, + 0.002478549722582102, + 0.013598134741187096, + -0.039339352399110794, + -0.0076083289459347725, + -0.022631186991930008, + -0.035412102937698364, + 0.05706460773944855, + -0.017975114285945892, + -0.009105652570724487, + 0.019611932337284088, + -0.01626085676252842, + 0.05843682959675789, + 0.015905512496829033, + 0.00025126434047706425, + -0.02315627411007881, + -0.04339388757944107, + 0.0454230010509491, + -0.015598751604557037, + 0.01163553912192583, + 0.015463546849787235, + -0.026887115091085434, + 0.013932210393249989, + 0.03369881957769394, + 0.042704641819000244, + 0.05781792849302292, + -0.002559829503297806, + -0.027084296569228172, + -0.004390873480588198, + 0.004696964751929045, + 0.027150453999638557, + -0.08038294315338135, + 0.05113980174064636, + -0.0005839117802679539, + -0.02808278240263462, + -0.0339878685772419, + -0.01127360388636589, + 0.007134921383112669, + 0.030938556417822838, + 0.05195096507668495, + 0.016307955607771873, + 0.011393587104976177, + 0.006975072901695967, + 0.01082616951316595, + 0.018575219437479973, + -0.04203902184963226, + -0.0004412310663610697, + 0.041960541158914566, + -0.004343054257333279, + 0.01722249761223793, + -0.01740024983882904, + 0.0136469891294837, + -0.0058952257968485355, + 0.0032160687260329723, + -0.0011436000932008028, + 0.027053045108914375, + -0.014504825696349144, + 0.004764067009091377, + -0.011977472342550755, + -0.014918833039700985, + -0.009722618386149406, + 0.012177001684904099, + -0.02324177511036396, + -0.06605874747037888, + -0.02481699548661709, + 0.03726331144571304, + 0.03532020375132561, + 0.023171404376626015, + 0.024722453206777573, + 0.0011221845634281635, + -0.03668453171849251, + 0.02662901021540165, + 0.04768439009785652, + 0.020376484841108322, + -0.045413531363010406, + 0.0038827196694910526, + 0.02468891255557537, + -0.058160897344350815, + 0.008396092802286148, + 0.01425358559936285, + -0.03454079106450081, + 0.00846700370311737, + -0.03730270639061928, + 0.031870219856500626, + -0.027155617251992226, + -0.06504132598638535, + 0.011301707476377487, + 0.046088866889476776, + 0.014930793084204197, + 0.012034902349114418, + -0.035406578332185745, + -0.01028794888406992, + -0.016296325251460075, + -0.021309902891516685, + 0.04267151281237602, + -0.009137233719229698, + 0.012401561252772808, + -0.043658800423145294, + -0.0063088503666222095, + -0.0032753185369074345, + -0.0056458450853824615, + -0.02564357966184616, + 0.010397547855973244, + 0.05895408242940903, + -0.04508262872695923, + -0.035027358680963516, + 0.002581218024715781, + -0.044965747743844986, + 0.009487324394285679, + -0.004197042901068926, + 0.03491299971938133, + 0.023610584437847137, + -0.06728721410036087, + 0.021972287446260452, + -0.016687089577317238, + 0.003370880149304867, + -0.04446583613753319, + -0.01694781705737114, + 0.031291015446186066, + -0.03654293343424797, + -0.0025814587716013193, + -0.004316047765314579, + 0.013506326824426651, + -0.02880212664604187, + -0.03146924823522568, + 0.025661513209342957, + 0.02093239314854145, + 0.030703410506248474, + -0.012121343053877354, + -0.017677439376711845, + 0.009156783111393452, + -0.01752498187124729, + 0.026588140055537224, + -0.005250465590506792, + -0.02036350592970848, + 0.0060616061091423035, + -0.004135473631322384, + -0.0037462557666003704, + -0.04270709678530693, + 0.03249526023864746, + 0.014603125862777233, + -0.050678592175245285, + -0.010559901595115662, + 0.021935299038887024, + 0.055934175848960876, + -0.03519564867019653, + -0.029212629422545433, + -0.0031010075472295284, + 0.011974917724728584, + 0.023884808644652367, + 0.01815382018685341, + -0.015428860671818256, + 0.01821693778038025, + -0.0036416214425116777, + 0.06614071130752563, + 0.005738144274801016, + 0.021706612780690193, + 0.024907367303967476, + 0.02560124732553959, + 0.009989330545067787, + 0.010062593035399914, + 0.0034210479352623224, + 0.027416720986366272, + 0.017033740878105164, + -0.034629564732313156, + 0.02718420699238777, + -0.015126540325582027, + -0.01476405467838049, + -0.02563682571053505, + -0.023537658154964447, + 0.022908462211489677, + 0.05232834443449974, + 0.02267787791788578, + 0.0144965136423707, + 0.009758620522916317, + 0.025223491713404655, + 0.009632864966988564, + -0.03213128447532654, + 0.04426511749625206, + -0.011689570732414722, + -0.020006323233246803, + 0.0038702283054590225, + -0.0049651688896119595, + -0.051589708775281906, + 0.039199184626340866, + 0.02839571051299572, + -0.005888806190341711, + 0.03068007156252861, + 0.0718243345618248, + -0.024503882974386215, + 0.03236553817987442, + 0.03443152457475662, + -0.014331899583339691, + -0.0009974142303690314, + 0.006416634656488895, + 0.021280957385897636, + 0.0033596199937164783, + 0.018821917474269867, + -0.020181996747851372, + 0.0121711241081357, + 0.05891536921262741, + 0.016511986032128334, + -0.0382046140730381, + 0.009373956359922886, + -0.029330305755138397, + 0.021480843424797058, + -0.00011244121560594067, + -0.008994069881737232, + -0.04301093891263008, + 0.04196033999323845, + -0.0017536020604893565, + 0.055909689515829086, + -0.0403919517993927, + 0.017831433564424515, + 0.013466935604810715, + -0.012669233605265617, + 0.009833762422204018, + 0.0051778582856059074, + 0.032293010503053665, + 0.005274377763271332, + 0.0015252650482580066, + -0.008057008497416973, + -0.02463085576891899, + -0.041581641882658005, + 0.015282480046153069, + 0.008041704073548317, + -0.045448485761880875, + -0.033216096460819244, + -0.024878859519958496, + 0.026631899178028107, + 0.03594695031642914, + 0.00047798349987715483, + 0.008112306706607342, + 0.016110369935631752, + 0.04148286208510399, + -0.003780441591516137, + -0.008434665389358997, + -0.001316447975113988, + 0.026149414479732513, + -0.006559304893016815, + -0.0313839353621006, + -0.017626440152525902, + 0.009696515277028084, + -0.015716897323727608, + 0.019278142601251602, + -0.0038576035294681787, + 0.021486738696694374, + 0.04495956748723984, + -0.05012865364551544, + -0.00030809236341156065, + -0.011272257193922997, + -0.046185482293367386, + -0.020596811547875404, + -0.011487162671983242, + -0.002627740614116192, + -0.008856033906340599, + 0.010077131912112236, + -0.02487839385867119, + 0.009463909082114697, + -0.016674065962433815, + 0.02145637385547161, + -0.009385083802044392, + -0.012629326432943344, + -0.029477544128894806, + 0.03367191180586815, + -0.032270483672618866, + -0.014731375500559807, + 0.06338468194007874, + -0.031667012721300125, + 0.07950285077095032, + 0.05120666325092316, + 0.01333654299378395, + -0.027235329151153564, + 0.0018749418668448925, + -0.03672054409980774, + -0.014085083268582821, + -0.015652796253561974, + -0.033206380903720856, + 0.023218806833028793, + 0.02278519608080387, + 0.02732435241341591, + 0.02679269202053547, + -0.02366972528398037, + -0.030173955485224724, + -0.034104205667972565, + -0.00594688393175602, + -0.05119771882891655, + 0.002515117870643735, + 0.0020613386295735836, + -0.0017017991049215198, + -0.02998802810907364, + -0.020508941262960434, + 0.02125069499015808, + -0.013735865242779255, + 0.0157578494399786, + 0.042077988386154175, + 0.009039944969117641, + 0.05287568271160126, + -0.007231983356177807, + 0.05195724591612816, + -0.0038898796774446964, + -0.02022983692586422, + 0.01570204272866249, + 0.024860654026269913, + -0.012296166270971298, + 0.0313180610537529, + 0.01857399195432663, + -0.023001868277788162, + 0.0051582325249910355, + -0.013685078360140324, + 0.028251957148313522, + 0.05374615266919136, + 0.02459343709051609, + 0.03938690572977066, + -0.052566129714250565, + 0.01641891896724701, + 0.0333285927772522, + 0.030335884541273117, + -0.015053451992571354, + -0.005030781961977482, + 0.05087617412209511, + 0.01006903313100338, + 0.025018278509378433, + -0.0021571891847997904, + 0.043910834938287735, + 0.020922202616930008, + 0.02765871398150921, + -0.01758825033903122, + -0.018596133217215538, + -0.028779616579413414, + 0.005942950490862131, + 0.023221885785460472, + 0.01917579211294651, + -0.018466778099536896, + -0.05726452171802521, + 0.07114488631486893, + 0.030720887705683708, + 0.017797688022255898, + -0.03322696313261986, + -0.004173357039690018, + -0.01790057308971882, + -0.008472354151308537, + 0.014642775058746338, + 0.007044915109872818, + -0.0019803550094366074, + -0.01656145416200161, + 0.03403740003705025, + -0.0005675403517670929, + -0.02774539217352867, + -0.0016080345958471298, + 0.0087075624614954, + 0.003985552117228508, + 0.022766778245568275, + -0.021264376118779182, + -0.023169413208961487, + 0.018042173236608505, + 0.044362593442201614, + 0.022381603717803955, + 0.02436361461877823, + -0.014146726578474045, + -0.015569753013551235, + -0.023536043241620064, + -0.012184880673885345, + 0.0687207356095314, + -0.004216381814330816, + -0.04985238239169121, + -0.00041224315646104515, + 0.003222431056201458, + -0.019583337008953094, + -0.022435776889324188, + 0.021255437284708023, + -0.002911148127168417, + 0.042009387165308, + -0.002118824515491724, + -0.0023805389646440744, + -0.05532359704375267, + 0.003584102028980851, + 0.01703006401658058, + -0.035680387169122696, + -0.031245138496160507, + -0.07010461390018463, + 0.004113265313208103, + -0.02082616649568081, + -0.022835176438093185, + 0.020550312474370003, + -0.03260311856865883, + -0.04642661288380623, + 0.012231305241584778, + -0.012518273666501045, + 0.022379906848073006, + 0.05098920315504074, + 0.05334322154521942, + 0.022217189893126488, + -0.010085581801831722, + 0.013994826003909111, + -0.07480224221944809, + -0.03000005893409252, + 0.042453423142433167, + -0.02427494339644909, + 0.0012952213874086738, + 0.003369769547134638, + 0.05007509887218475, + 0.05277113988995552, + -0.04643230512738228, + 0.02805972471833229, + -0.0383579321205616, + 0.006517314352095127, + 0.018333062529563904, + 0.03252655267715454, + -0.03673698380589485, + -0.021911894902586937, + 0.0009360363474115729, + -0.050189148634672165, + -0.019170576706528664, + -0.0511503741145134, + 0.016726648434996605, + 0.08176862448453903, + -0.05406215041875839, + 0.013144483789801598, + 0.02122638374567032, + 0.04610380530357361, + 0.008271095342934132, + -0.00912142638117075 + ], + "start_index": 27487, + "end_index": 27536, + "token_count": 8, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "67ed1177-143f-588f-89cd-36197d97de6d", + "_source": { + "text": "\n\n## Literales\n\n\n\nTrue\nFalse\nNone", + "embedding": [ + 0.011242692358791828, + -0.011986351571977139, + -0.008534835651516914, + -0.07455191761255264, + -0.02178051322698593, + 0.037706851959228516, + -0.029130375012755394, + -0.00629987521097064, + -0.02290121465921402, + -0.02921675518155098, + 0.04278644174337387, + -0.06701306253671646, + 0.047485459595918655, + -0.009845458902418613, + -0.055409420281648636, + 0.0856928750872612, + 0.00505240960046649, + 0.030516503378748894, + 0.09187572449445724, + -0.10476480424404144, + -0.014365488663315773, + 0.006917896214872599, + 0.0019018559250980616, + 0.09112975001335144, + -0.017126478254795074, + 0.046545740216970444, + -0.0768570750951767, + 0.04107711836695671, + 0.047247301787137985, + -0.04798327758908272, + 0.0034769985359162092, + -0.028454169631004333, + -0.04258238151669502, + -0.011831997893750668, + 0.011939587071537971, + -0.013587674126029015, + 0.02473023347556591, + 0.04711334779858589, + -0.022107260301709175, + 0.01002616249024868, + -0.02015959471464157, + 0.027164964005351067, + 0.025916237384080887, + 0.000650785572361201, + -0.012669718824326992, + 0.018923409283161163, + 0.03123100847005844, + 0.005168702453374863, + 0.07415234297513962, + 0.03977874293923378, + -0.032130513340234756, + -0.009227276779711246, + 0.004408550914376974, + 0.008247515186667442, + -0.031080132350325584, + -0.037992361932992935, + 0.0419069342315197, + 0.014367763884365559, + 0.031977079808712006, + -0.010212934575974941, + -0.016073521226644516, + 0.045074138790369034, + -0.033032987266778946, + -0.036781396716833115, + 0.010078255087137222, + 0.0556413009762764, + 0.024890733882784843, + -0.005598873365670443, + -0.06871394068002701, + -0.010512241162359715, + 0.006336618680506945, + 0.033034615218639374, + -0.03320106118917465, + 0.047090083360672, + 0.015331528149545193, + 0.03333287686109543, + -0.02677631936967373, + -0.07904677093029022, + -0.012232291512191296, + 0.026823407039046288, + -0.042756762355566025, + 0.0712905153632164, + -0.028803708031773567, + 0.008981874212622643, + 0.000315108394715935, + 0.00019231032638344914, + -0.01227444689720869, + -0.0035769694950431585, + 0.02041369490325451, + 0.01755758374929428, + -0.014977166429162025, + 0.016600394621491432, + -0.024654798209667206, + 0.020334748551249504, + 0.0207199789583683, + -0.02641320414841175, + -0.00574915437027812, + 0.0016890238039195538, + -0.0073638432659208775, + -0.02229294367134571, + 0.0022168259602040052, + -0.01336274016648531, + 0.009730047546327114, + 0.03526318073272705, + -0.04950927570462227, + 0.03973856940865517, + -0.03727883845567703, + 0.011529657058417797, + -0.01711842603981495, + -0.047447871416807175, + -0.03387851640582085, + -0.0009840130805969238, + 0.08686015754938126, + 0.01085182186216116, + -0.010410108603537083, + -0.004199634306132793, + -0.0002503449795767665, + -0.06658395379781723, + -0.0016324766911566257, + -0.00400202302262187, + 0.04123271256685257, + -0.052191756665706635, + -0.005319517105817795, + -0.01007889211177826, + 0.034989964216947556, + 0.010742473416030407, + -0.024529116228222847, + -0.016324082389473915, + 0.018027350306510925, + -0.03707882761955261, + -0.024195538833737373, + -0.03439324349164963, + -0.02747597172856331, + -0.02401592768728733, + 0.037668775767087936, + 0.01412468496710062, + 0.02802928537130356, + -0.008034923113882542, + 0.03651808202266693, + 0.013444952666759491, + -0.0748634785413742, + 0.016608059406280518, + 0.011387691833078861, + -0.014481042511761189, + 0.01244872435927391, + 0.0069701760075986385, + 0.007288699503988028, + 0.008837838657200336, + 0.0017508328892290592, + -0.03603927418589592, + -0.011930668726563454, + -0.004099563229829073, + -0.004690470639616251, + -0.030914727598428726, + -0.022302692756056786, + 0.06167220696806908, + -0.019837142899632454, + -0.028310902416706085, + 0.0011879649246111512, + -0.005040123127400875, + -0.0027585679199546576, + 0.015508386306464672, + -0.04114249721169472, + -0.03702171891927719, + 0.006909920834004879, + 0.023717673495411873, + -0.048296209424734116, + -0.04258172959089279, + 0.003771547693759203, + -0.03386847674846649, + -0.01770082302391529, + 0.009766542352735996, + -0.017141204327344894, + 0.031065525487065315, + -0.01580631546676159, + -0.0037298232782632113, + -0.05316459760069847, + -0.007983780466020107, + -0.03165030479431152, + -0.007906061597168446, + 0.016193997114896774, + -0.010406923480331898, + -0.010588307864964008, + -0.007040142547339201, + 0.005188203416764736, + 0.025225235149264336, + -0.0036163886543363333, + -0.027566980570554733, + -0.0016146411653608084, + -0.01453831885010004, + 0.00725944060832262, + -0.024745693430304527, + -0.06694425642490387, + -0.015278534032404423, + 0.002443921286612749, + -0.025488754734396935, + -0.023487232625484467, + -0.025021351873874664, + -0.005656310357153416, + -0.022852329537272453, + -0.003089698264375329, + -0.02390757016837597, + -0.0034093004651367664, + 0.01495162770152092, + -0.018850846216082573, + -0.00043389288475736976, + 0.013880585320293903, + -0.017652785405516624, + -0.0064950077794492245, + -0.032066140323877335, + 0.015428632497787476, + -0.00566127011552453, + 0.006997191812843084, + -0.014527260325849056, + -0.011094520799815655, + -0.009252668358385563, + -0.039716821163892746, + 0.031120261177420616, + 0.0047508832067251205, + 0.02916620299220085, + 0.04717916250228882, + 0.0003611056599766016, + 0.004335134290158749, + -0.01390316803008318, + 0.07621081918478012, + -0.029492387548089027, + 0.01133784744888544, + -0.009241377003490925, + -0.06539913266897202, + 0.01843034103512764, + 0.0009096958092413843, + -0.0025093716103583574, + 0.001330376137048006, + -0.014059855602681637, + 0.03609280288219452, + -0.004267696291208267, + -0.006513827946037054, + -0.011325044557452202, + 0.0183723047375679, + -0.04752788692712784, + -0.002452441258355975, + 0.026132967323064804, + 0.004816920030862093, + 0.010899477638304234, + -0.022846415638923645, + 0.020319368690252304, + 0.0027468150947242975, + 0.00914253294467926, + 0.012782493606209755, + 0.00898030586540699, + 0.035575222223997116, + -0.060785096138715744, + -0.0209953635931015, + 0.06297995150089264, + -0.004129864275455475, + -0.03148471936583519, + 0.006809369660913944, + -0.07009737938642502, + -0.002190897474065423, + 0.011784648522734642, + 0.058045607060194016, + -0.02622147463262081, + 0.002909358823671937, + 0.011347993277013302, + 0.024464722722768784, + 0.007024909369647503, + -0.02192523516714573, + -0.022038398310542107, + -0.04120583087205887, + -0.014746307395398617, + 0.01483405102044344, + 0.008348914794623852, + -0.04799553006887436, + -0.01530471071600914, + -0.006149625405669212, + 0.012785340659320354, + -0.015457882545888424, + -0.09397079050540924, + 0.07463618367910385, + 0.023559540510177612, + 0.025083884596824646, + -0.0184082742780447, + 0.003943369723856449, + -0.056862834841012955, + 0.004899152088910341, + 0.04882780462503433, + 0.0337960422039032, + 0.00499490974470973, + -0.0011454236228019, + 0.024786585941910744, + -0.018018227070569992, + 0.012220603413879871, + -0.07634130120277405, + 0.024302341043949127, + -0.05347663164138794, + -0.04818950220942497, + 0.023465221747756004, + 0.04275807365775108, + -0.0008271842962130904, + 0.04254885017871857, + 0.03530696779489517, + -0.00516089703887701, + 0.04078882932662964, + -0.003974956925958395, + -0.06804666668176651, + -0.008573084138333797, + 0.051149316132068634, + -0.04357978701591492, + -0.005521574057638645, + -0.018210096284747124, + 0.04731345176696777, + 0.02225995995104313, + 0.005622857715934515, + -0.01756015606224537, + -0.04449201375246048, + -0.03739865869283676, + -0.08438541740179062, + 0.0398910827934742, + -0.015027902089059353, + 0.007884982042014599, + -0.01557087991386652, + -0.006862601265311241, + -0.019902106374502182, + -0.036205194890499115, + 0.04213633015751839, + 0.0010470132110640407, + 0.05320414528250694, + -0.0238190907984972, + 0.06929044425487518, + 0.009940437972545624, + 0.029226772487163544, + 0.0012463631574064493, + 0.018532678484916687, + 0.013006745837628841, + 0.014726723544299603, + 0.03774820268154144, + -0.023528065532445908, + 0.06109722703695297, + -0.022645581513643265, + 0.004632491152733564, + 0.008612318895757198, + -0.007460461463779211, + -0.007558011915534735, + 0.0360465832054615, + -0.059786584228277206, + -0.017507953569293022, + -0.030995726585388184, + 0.09317087382078171, + 0.01537351030856371, + -0.009641756303608418, + 0.02162865549325943, + 0.02139514684677124, + 0.018768558278679848, + 0.010021690279245377, + -0.01533997431397438, + -0.004102514125406742, + -0.03328605741262436, + 0.019520316272974014, + -0.032686032354831696, + 0.0029794725123792887, + -0.037286385893821716, + -0.02109287865459919, + 0.030448516830801964, + 0.01901758275926113, + -0.02305467054247856, + -0.013253586366772652, + -0.007062903139740229, + 0.005732082296162844, + 0.05354499816894531, + -0.00872588250786066, + -0.09639503806829453, + -0.01565414108335972, + -0.04190097004175186, + -0.003734974190592766, + 0.037415243685245514, + 0.06358270347118378, + 0.06095331907272339, + 0.03267737478017807, + 0.018208926543593407, + 0.04589017480611801, + -0.02879534289240837, + 0.04490162432193756, + -0.019819939509034157, + 0.0163737703114748, + -0.07585060596466064, + -0.01563521847128868, + -0.034943778067827225, + -0.045340847223997116, + 0.012852754443883896, + -0.014442396350204945, + 0.005021628923714161, + -0.02833230048418045, + -0.027651362121105194, + -0.020090734586119652, + 0.011328497901558876, + 0.0014817756600677967, + -0.05009811371564865, + -0.010298929177224636, + 0.01480125542730093, + 0.023602278903126717, + 0.014121785759925842, + 0.04882734268903732, + -0.05017383024096489, + -0.008393095806241035, + -0.011763961985707283, + 0.020369792357087135, + -0.013870262540876865, + -0.003832640592008829, + -0.0382692851126194, + -0.021164903417229652, + 0.044929876923561096, + -0.02389146387577057, + -0.004740802571177483, + -0.015400899574160576, + 0.0038349281530827284, + -0.016981394961476326, + 0.11839744448661804, + -0.023203633725643158, + -0.005094173364341259, + -0.017816349864006042, + -0.03945246338844299, + -0.003911199979484081, + -0.07307419180870056, + -0.034519508481025696, + 0.006417914759367704, + -0.0166037455201149, + -0.07472644001245499, + -0.06858286261558533, + -0.006765798199921846, + 0.06403042376041412, + -0.012337428517639637, + -0.054679617285728455, + -0.05332848057150841, + -0.0032189993653446436, + -0.016541054472327232, + -0.014789648354053497, + 0.0918239951133728, + -0.0051003266125917435, + -0.0042371852323412895, + -0.0264882892370224, + -0.00044805309153161943, + -0.011037814430892467, + -0.022697165608406067, + 0.007573201321065426, + -0.03820864483714104, + -0.05164121463894844, + -0.065285325050354, + 0.019333776086568832, + 0.011885984800755978, + -0.012758630327880383, + 0.028746213763952255, + -0.01057224441319704, + -0.02732577919960022, + 0.047034092247486115, + -0.021960098296403885, + -0.054127003997564316, + -0.0018974482081830502, + 0.024236731231212616, + 0.03163740038871765, + -0.0101748863235116, + -0.037226319313049316, + 0.0009443116723559797, + -0.005158183164894581, + -0.02885938435792923, + -0.04151318222284317, + 0.004705196246504784, + -0.006303903181105852, + -0.016513900831341743, + 0.006352880038321018, + 0.01252437848597765, + -0.03653890639543533, + 0.002331747207790613, + -0.017410671338438988, + 0.0012946214992552996, + 0.010211504064500332, + 0.002556938212364912, + -0.030694957822561264, + -0.028219521045684814, + -0.047040410339832306, + 0.020191462710499763, + -0.0028195276390761137, + -0.018255367875099182, + 0.019032787531614304, + -0.064515620470047, + 0.019653195515275, + -0.055026087909936905, + -0.016282647848129272, + 0.0018354615895077586, + -0.03184990584850311, + 0.00905580073595047, + 0.006091386079788208, + 0.0020694409031420946, + -0.004782479256391525, + -0.06302210688591003, + -0.039187561720609665, + 0.007584697101265192, + 0.02077237330377102, + -0.03231329098343849, + -0.093433678150177, + 0.016509467735886574, + 0.00813357438892126, + 0.02891683764755726, + 0.01432697381824255, + 0.005357017740607262, + 0.004565979819744825, + -0.01936638355255127, + -0.017056632786989212, + 0.0068092625588178635, + 0.06415434181690216, + 0.012354387901723385, + 0.016113795340061188, + -0.01846221648156643, + -0.02782008796930313, + -0.021010490134358406, + -0.04621941223740578, + -0.010124552063643932, + 0.042161356657743454, + 0.0427972786128521, + -0.06085575744509697, + 0.11162732541561127, + -0.026273826137185097, + 0.06168915331363678, + 0.020536180585622787, + 0.03889905661344528, + 0.01649675890803337, + 0.0543164387345314, + 0.02429206669330597, + 0.01532644685357809, + 0.0026127558667212725, + 0.022514356300234795, + -0.01680530235171318, + 0.011068400926887989, + 0.009072590619325638, + -0.0023339400067925453, + 0.02486541122198105, + 0.005385726690292358, + 0.030550021678209305, + 0.0070223030634224415, + -0.02979491651058197, + 0.009408078156411648, + -0.026630673557519913, + -0.0028615023475140333, + -0.01653250679373741, + -0.028631439432501793, + -0.039663199335336685, + -0.004880003165453672, + -0.003747751237824559, + 0.007528132293373346, + 0.013514230959117413, + 0.05592823028564453, + 0.011556250043213367, + 0.02116386964917183, + 0.037232641130685806, + -0.02199684828519821, + 0.05147407576441765, + 4.8639973101671785e-05, + -0.008392217569053173, + 0.013195378705859184, + 0.03947458788752556, + -0.009151994250714779, + -0.028489507734775543, + -0.0023754946887493134, + -0.010701251216232777, + -0.015883076936006546, + -0.0007956885965541005, + -0.00529770040884614, + 0.03184228017926216, + 0.05295109003782272, + 0.038404375314712524, + -0.05461226403713226, + 0.041651174426078796, + 0.02013397589325905, + 0.00982885155826807, + 0.04711305350065231, + 0.013041747733950615, + -0.04492303729057312, + -0.03264192119240761, + 0.04382375255227089, + 0.015802064910531044, + -0.020324528217315674, + 0.03060331754386425, + -0.02959999069571495, + -0.0395563580095768, + 0.0015789999160915613, + -0.011541182175278664, + 0.014394891448318958, + -0.02707223780453205, + 0.02767842635512352, + 0.018176300451159477, + -0.0512537844479084, + -0.02755669504404068, + -0.04734589904546738, + -0.004269961267709732, + -0.00528052868321538, + 0.008227236568927765, + 0.024503085762262344, + -0.08866986632347107, + -0.006623927969485521, + 0.04547076299786568, + 0.00563671113923192, + 0.026072988286614418, + 0.04342372715473175, + -0.014287683181464672, + -0.017038652673363686, + -0.07117722928524017, + 0.028470611199736595, + -0.01960267312824726, + -0.0467485673725605, + 0.0292494036257267, + -0.00806700810790062, + -0.028835566714406013, + 0.022452417761087418, + -0.08048749715089798, + 0.014407581649720669, + 0.029777640476822853, + -0.04002465307712555, + -0.04792030528187752, + -0.04139154031872749, + 0.02408038079738617, + -0.05217636376619339, + -0.01684115268290043, + -0.022121122106909752, + 0.010711519047617912, + 0.04513103514909744, + 0.007710384204983711, + 0.006308932323008776, + 0.04713881388306618, + -0.038722265511751175, + -0.05159900709986687, + 5.731836427003145e-05, + 0.0012401709100231528, + -0.010292246006429195, + -0.057462844997644424, + 0.010633341036736965, + 0.010200314223766327, + -0.02974982000887394, + -0.01540752500295639, + 0.013735465705394745, + 0.005861325655132532, + -0.010418257676064968, + -0.029065141454339027, + 0.0041783154010772705, + -0.005795224104076624, + -0.006735445000231266, + 0.022423086687922478, + 0.00239271717146039, + -0.015557926148176193, + 0.008572456426918507, + 0.04386116564273834, + -0.0232045017182827, + 0.0035574142821133137, + 0.0034485214855521917, + -0.04562956094741821, + 0.013538875617086887, + -0.0033589969389140606, + -0.011095454916357994, + 0.01913922093808651, + 0.013525652699172497, + 0.032889265567064285, + -0.005184605251997709, + -0.04441765695810318, + -0.07037198543548584, + 0.0091733168810606, + -0.007975032553076744, + -0.01761266589164734, + -0.0026260141748934984, + 0.0453905314207077, + 0.05642286688089371, + 0.09082675725221634, + 0.0030114236287772655, + 0.011262013576924801, + -0.021784869953989983, + -0.018786676228046417, + 0.02182893641293049, + -0.04808013141155243, + -0.007568810135126114, + -0.027724744752049446, + -0.04583605006337166, + -0.058298759162425995, + -0.026138707995414734, + 0.01641574501991272, + 0.000131680048070848, + 0.039332419633865356, + -0.04725150391459465, + -0.007298559881746769, + -0.017771154642105103, + -0.04709867388010025, + 0.030193397775292397, + 0.02615397423505783, + -0.012638792395591736, + -0.03233272209763527, + -0.051338426768779755, + -0.020555490627884865, + 0.025337601080536842, + 0.013084919191896915, + 0.033248644322156906, + 0.016504880040884018, + 0.006216998677700758, + -0.05848633870482445, + 0.014272895641624928, + -0.017498502507805824, + 0.007265392690896988, + -0.045003827661275864, + -0.00575972069054842, + 0.0429266095161438, + -0.04117140918970108, + -0.05496206879615784, + 0.006215341854840517, + -0.029489438980817795, + -0.0006077132420614362, + 0.024086540564894676, + 0.0016712760552763939, + 0.02817661128938198, + -0.019515663385391235, + 0.02384297177195549, + -0.054505184292793274, + -0.0513966903090477, + -0.004916429053992033, + -0.007702290546149015, + 0.03164296597242355, + 0.016675908118486404, + -0.01533154584467411, + 0.07977927476167679, + 0.02359236218035221, + -0.025221113115549088, + 0.016980186104774475, + 0.03166860342025757, + -0.0055589694529771805, + 0.030468955636024475, + -0.043731000274419785, + -0.028775358572602272, + -0.016041714698076248, + -0.003743895096704364, + -0.003964314702898264, + 8.404741674894467e-05, + 0.04227622225880623, + 0.0446820966899395, + 0.029328282922506332, + -0.018678423017263412, + -0.01916535012423992, + -0.00953923910856247, + 0.01756989397108555, + 0.008892745710909367, + 0.012373912148177624, + -0.017011892050504684, + 0.09316175431013107, + -0.01131257601082325, + -0.018319254741072655, + -0.00488016614690423, + 0.03882989659905434, + 0.051442209631204605, + -0.02341018244624138, + -0.013320403173565865, + 0.04039127379655838, + -0.04140641167759895, + -0.03944951668381691, + -0.014527073130011559, + 0.035320840775966644, + 0.00971619226038456, + 0.035538896918296814, + 0.02851649560034275, + 0.011478282511234283, + 0.008928207680583, + 0.04011666774749756, + 0.019649019464850426, + 0.017217978835105896, + 0.013867526315152645, + -0.042974669486284256, + -0.07563772052526474, + -0.0005258758319541812, + 0.0037713097408413887, + -0.018512966111302376, + 0.03339776024222374, + 0.016581682488322258, + 0.0453055277466774, + -0.008531050756573677, + 0.0717775970697403, + -0.015894992277026176, + -0.0234383475035429, + 0.026846833527088165, + 0.015244458802044392, + -0.004682160913944244, + -0.019145933911204338, + 0.030703222379088402, + -0.06787403672933578, + 0.054179828613996506, + 0.006582458503544331, + 0.0025123050436377525, + -0.0030306559056043625, + 0.02852553129196167, + -0.001542001380585134, + 0.04571713134646416, + -0.009420291520655155, + -0.013910634443163872, + -7.89033219916746e-05, + 0.035524021834135056, + -0.009507943876087666, + 0.061830420047044754, + -0.04067257046699524, + 0.052216365933418274, + -0.03079087659716606, + 0.04591746628284454, + 0.007441187277436256, + -0.04767405986785889, + 0.05299491062760353, + -0.03234601020812988, + -0.04198861122131348, + -0.00023637653794139624, + 0.004377213306725025, + -0.026239043101668358, + 0.03938679024577141, + 0.05121518671512604, + 0.06890954822301865, + 0.0019481205381453037, + -0.03154292330145836, + 0.0012466447660699487, + -0.008174545131623745, + -0.014942433685064316, + 0.01645992137491703, + 0.05165822058916092, + -0.04351819306612015, + 0.014273243024945259, + 0.00338588934391737, + 0.0006240769871510565, + -0.014047685079276562, + 0.0018298400100320578, + 0.037480611354112625, + -0.006883876398205757, + -0.04346388205885887, + -0.008186127059161663, + -0.016887502744793892, + -0.024831747636198997, + 0.029310205951333046, + -0.005088684614747763, + 0.023517455905675888, + 0.030256228521466255, + -0.021559039130806923, + -0.00016026229423005134, + 0.0024633363354951143, + 0.05461866036057472, + 0.014059723354876041, + -0.03771590441465378, + -0.020687676966190338, + 0.02677922509610653, + -0.027504250407218933, + 0.040502648800611496, + 0.008944819681346416, + -0.014569109305739403, + 0.011374997906386852, + -0.01983165740966797, + -0.010940590873360634, + 0.016509363427758217, + -0.04069267585873604, + 0.016200536862015724, + -0.01629856415092945, + -0.003974423743784428, + 0.024823587387800217, + -0.006284245755523443, + -0.02899268828332424, + -0.00020623966702260077, + -0.025510622188448906, + 0.00724806310608983, + -0.030242545530200005, + 0.010909926146268845, + -0.010427822358906269, + 0.09706675261259079, + -0.036032527685165405, + -0.01720493659377098, + 0.0013887747190892696, + 0.03729500249028206, + 0.025577044114470482, + -0.01962284743785858, + 0.020540554076433182, + 0.0032820734195411205, + -0.02381875179708004, + -0.015961194410920143, + 0.010988323949277401, + 0.03101053088903427, + -0.02756504714488983, + -0.007704228162765503, + 0.03343355283141136, + -0.025831785053014755, + -0.019312743097543716, + -0.030519740656018257, + -0.04271428659558296, + -0.012524929828941822, + -0.01727895438671112, + -0.020159030333161354, + -0.008157683536410332, + 0.04474836587905884, + -0.011956858448684216, + -0.04314621910452843, + -0.03952231630682945, + 0.028899678960442543, + -0.05161738768219948, + -0.01542870793491602, + 0.023137912154197693, + -0.009478505700826645, + 0.019252588972449303, + -0.0005990114295855165, + 0.03520548716187477, + 0.01765100285410881, + 0.006100358907133341, + -0.013871081173419952, + -0.03436174616217613, + 0.007691826205700636, + 0.04930216446518898, + -0.031361039727926254, + -0.03484365716576576, + -0.009235731326043606, + -0.009881561622023582, + 0.042181096971035004, + 0.007300726603716612, + 0.037194933742284775, + 0.028142232447862625, + -0.027921251952648163, + -0.029671134427189827, + 0.01777666248381138, + -0.033509187400341034, + -0.017201485112309456, + -0.02176382578909397, + 0.011009037494659424, + 0.02145097590982914, + -0.03966108337044716, + -0.029558081179857254, + -0.006680713035166264, + 0.0066834851168096066, + 0.012382598593831062, + 0.004775917157530785, + 0.014330781064927578, + -0.031064793467521667, + 0.006350073032081127, + 0.020091285929083824, + 0.01972140558063984, + 0.014017806388437748, + -0.022831827402114868, + 0.028020260855555534, + -0.03960052877664566, + -0.014575488865375519, + 0.006507955025881529, + 0.0032391794957220554, + -0.039771918207407, + 0.03657948598265648, + 0.02435450442135334, + 0.012835551984608173, + -0.019448384642601013, + 0.01950235106050968, + -0.009497261606156826, + 0.04127280041575432, + -0.026994310319423676, + -0.011525883339345455, + -0.02409667707979679, + -0.0014281191397458315, + 0.007067986764013767, + 0.03040267713367939, + -0.05383767932653427, + 0.014998987317085266, + 0.006333932280540466, + 0.0046469904482364655, + 0.018018005415797234, + -0.031073028221726418, + -0.012456991709768772, + -0.002176961861550808, + -0.00814779195934534, + 0.054669708013534546, + 0.004299299791455269, + -0.003923238720744848, + 0.016473490744829178, + 0.017214825376868248, + 0.003106675110757351, + 0.024453241378068924, + 0.013661247678101063, + -0.018481753766536713, + 0.05291860178112984, + 0.012317358516156673, + 0.005918476730585098, + -0.0005123537266626954, + -0.021685834974050522, + 0.023697610944509506, + -0.008839421905577183, + 0.001155307749286294, + -0.0056319460272789, + 0.03135497868061066, + 0.01538193877786398, + -0.009830850176513195, + 0.024914076551795006, + -0.00652197515591979, + 0.024497542530298233, + 0.029476700350642204, + -0.057029616087675095, + 0.0092995073646307, + 0.049594707787036896, + 0.020696697756648064, + -0.027144867926836014, + 0.019952422007918358, + 0.019794056192040443, + 0.029145890846848488, + -0.0021259936038404703, + 0.011631794273853302, + 0.0184936486184597, + -0.018571073189377785, + -0.007611207198351622, + 0.017878161743283272, + -0.016223521903157234, + -0.007692246697843075, + -0.010785729624330997, + -0.015169027261435986, + 0.0006926938076503575, + 0.00364447059109807, + 0.007533368654549122, + 0.016167690977454185, + -0.02214382216334343, + 0.01691802404820919, + -0.030379505828022957, + -0.0020635344553738832, + -0.026673922315239906, + 0.009107689373195171, + 0.00040882735629566014, + -0.020587356761097908, + -0.046403806656599045, + -0.028028471395373344, + 0.0230338703840971, + 0.017041774466633797, + -0.030138254165649414 + ], + "start_index": 27536, + "end_index": 27575, + "token_count": 5, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "053887be-fd4a-5c34-a1cf-fbefef3b8329", + "_source": { + "text": "\n\n---\n\n# X.5 Operadores\n\n## Asignación\n\n\n\n=", + "embedding": [ + 0.02534540742635727, + -0.04356130212545395, + -0.008706077001988888, + -0.11239252984523773, + 0.001601734897121787, + 0.05486065149307251, + 0.012707868590950966, + 0.04255823418498039, + 0.01764908991754055, + 0.00860609021037817, + -0.022314803674817085, + -0.03503764793276787, + 0.08367343246936798, + -0.004973966162651777, + -0.036801181733608246, + 0.013662145473062992, + 0.014827861450612545, + -0.03399196267127991, + -0.03438934311270714, + -0.04726465046405792, + -0.00032343302154913545, + -0.004781858064234257, + -0.0608815960586071, + 0.051142748445272446, + 0.02094290219247341, + -0.01752488873898983, + -0.0609210729598999, + 0.10768228769302368, + 0.0027807019650936127, + -0.05593162029981613, + -0.0031368762720376253, + -0.00721677765250206, + -0.048699114471673965, + 0.013158269226551056, + -0.027882255613803864, + -0.009037477895617485, + -0.01930953562259674, + -0.003514776239171624, + -0.01739843562245369, + 0.027489185333251953, + 0.029508449137210846, + 0.033159952610731125, + -0.028558935970067978, + 0.02132035233080387, + 0.021891340613365173, + 0.011444032192230225, + 0.02300838753581047, + 0.00788011122494936, + 0.02392728626728058, + 0.00793477427214384, + -0.0031111256685107946, + -0.01770807057619095, + 0.008165035396814346, + 0.011100728996098042, + -0.011970157735049725, + -0.010150894522666931, + -0.0037905580829828978, + -0.03099798411130905, + 0.015533418394625187, + -0.004962553270161152, + -0.00650269677862525, + -0.037601932883262634, + -0.059925660490989685, + -0.004244463052600622, + -0.007451069075614214, + 0.016338570043444633, + -0.033236946910619736, + 0.033308688551187515, + -0.11425678431987762, + 0.006789038423448801, + -0.036848437041044235, + -0.014004800468683243, + 0.005357363261282444, + 0.0044251699000597, + 0.027561672031879425, + 0.00535728270187974, + -0.02570975013077259, + -0.06295440346002579, + 0.027448751032352448, + 0.014684061519801617, + 0.014024722389876842, + 0.035221271216869354, + 0.07006864249706268, + -0.0278889499604702, + 0.016616320237517357, + 0.07804558426141739, + -0.01765447109937668, + 0.004407190717756748, + -0.012221032753586769, + 0.03041597083210945, + -0.004013463389128447, + 0.045450348407030106, + -0.024342006072402, + -0.018330246210098267, + -0.019946549087762833, + -0.01001062337309122, + -0.023077256977558136, + 0.04900243505835533, + 0.014939497224986553, + 0.024134907871484756, + -0.008203472942113876, + -0.0014556426322087646, + -0.004491659812629223, + 0.03423235937952995, + 0.03657832741737366, + 0.03316044807434082, + -0.039592571556568146, + -0.04057174175977707, + 0.025287002325057983, + -0.01940234750509262, + -0.009536299854516983, + 0.009202655404806137, + 0.0008950181654654443, + 0.05225696787238121, + 0.014158684760332108, + 0.0014366249088197947, + -0.013148178346455097, + -0.013087058439850807, + 0.01298369187861681, + 0.014827439561486244, + -0.03362457826733589, + -0.02984043024480343, + -0.012305814772844315, + 0.0170308705419302, + -0.02250276319682598, + -0.017475653439760208, + -0.039515890181064606, + -0.013672491535544395, + 0.019989246502518654, + 0.007939818315207958, + -0.03121376968920231, + -0.020963937044143677, + -0.05395852401852608, + 0.048566561192274094, + 0.006306307855993509, + 0.011560479179024696, + -0.008070502430200577, + 0.01162697747349739, + 0.05335710197687149, + -0.02151796780526638, + 0.006910414434969425, + -0.010525376535952091, + 0.00814661756157875, + -0.04423150792717934, + 0.02215656451880932, + 0.05214005708694458, + 0.013601903803646564, + 0.020308680832386017, + -0.002361355582252145, + 0.056146908551454544, + -0.009135381318628788, + -0.02125369757413864, + -0.03296946361660957, + -0.014332978054881096, + -0.014840077608823776, + 0.007632794789969921, + 0.014587359502911568, + 0.024295451119542122, + 0.04142914339900017, + -0.003865035017952323, + -0.00792198721319437, + 0.02221631444990635, + -0.009009809233248234, + -0.041763897985219955, + -0.03250344470143318, + -0.025311673060059547, + -0.03759409114718437, + -0.019585439935326576, + 0.013179779052734375, + 0.01766277104616165, + 0.010105470195412636, + 0.012656011618673801, + 0.030652491375803947, + -0.02246229723095894, + 0.004058053717017174, + -0.007336847949773073, + -0.024922171607613564, + -0.05232226476073265, + -0.0020009949803352356, + -0.0030651865527033806, + 0.0071756793186068535, + -0.015897255390882492, + 0.00034969818079844117, + -0.00021512452804017812, + 0.009661203250288963, + 0.055995259433984756, + 0.0006498886505141854, + 0.011066077277064323, + 0.008214307948946953, + 0.003567028557881713, + 0.0027487969491630793, + 0.022225286811590195, + 0.019397074356675148, + -0.023560136556625366, + -0.02477942407131195, + -0.021673154085874557, + 0.01686369813978672, + -0.01759764365851879, + 0.010320289060473442, + 0.00020242160826455802, + 0.04493797942996025, + -0.014202714897692204, + -0.004900552332401276, + 0.03837766498327255, + -0.0009698171052150428, + 0.0136267663910985, + 0.017223890870809555, + 0.017636794596910477, + 0.008853798732161522, + -0.0008603270398452878, + 0.0011023208498954773, + -0.0185964684933424, + -0.01763206347823143, + 0.01390351913869381, + -0.0036078982520848513, + -0.025362741202116013, + -0.018180111423134804, + 0.021477099508047104, + -0.0028154223691672087, + 0.012772894464433193, + 0.04427003487944603, + 0.0028642110992223024, + -0.03120458498597145, + 0.009521445259451866, + 0.060545664280653, + -0.03494371101260185, + -0.00822526216506958, + 0.003853601636365056, + 0.01866554468870163, + 0.012650406919419765, + 0.03528290241956711, + -0.016469411551952362, + -0.045177411288022995, + -0.03178224712610245, + 0.028599809855222702, + 0.002272900426760316, + -0.007417695131152868, + 0.005290605593472719, + 0.050195999443531036, + -0.003247602144256234, + 0.013707451522350311, + -0.0068032038398087025, + -0.011440022848546505, + 0.02260863035917282, + -0.024993523955345154, + -0.004544409457594156, + 0.001231014495715499, + 0.013571572490036488, + 0.008331960067152977, + 0.028206536546349525, + 0.05312696099281311, + 0.022552698850631714, + -0.020553091540932655, + -0.001487964065745473, + 0.012403939850628376, + -0.019088322296738625, + 0.02496480382978916, + 0.008564379066228867, + 0.020783469080924988, + 0.0001811796537367627, + 0.020752131938934326, + -0.04918329045176506, + -0.01087369117885828, + 0.013778516091406345, + 0.02443617209792137, + -0.0009245389956049621, + -0.012179444544017315, + -0.010722186416387558, + -0.020390784367918968, + -0.01645032688975334, + -0.05337004363536835, + 0.01613938994705677, + 0.022294113412499428, + -0.03432873636484146, + -0.02282099425792694, + 0.020930297672748566, + 0.001224186853505671, + -0.0674973651766777, + 0.01017407514154911, + -0.04368935525417328, + 0.016544587910175323, + -0.02766570635139942, + 0.03460150957107544, + 0.010190011002123356, + -0.005745540373027325, + 0.015457388944923878, + 0.020202068611979485, + -0.019122080877423286, + 0.006157443393021822, + 0.0206844974309206, + 0.023963358253240585, + -0.005167295224964619, + -0.01220279186964035, + 0.016143327578902245, + -0.010039076209068298, + -0.028603918850421906, + 0.03098362125456333, + 0.07983875274658203, + -0.01313317846506834, + -0.024431925266981125, + -0.01777411438524723, + -0.04337083920836449, + -0.0055421506986021996, + 0.037059612572193146, + -0.01076651643961668, + -0.013070652261376381, + 0.06464152783155441, + 0.02701427787542343, + -0.024812376126646996, + 0.030829371884465218, + 0.05029376223683357, + -0.008064024150371552, + -0.03350405395030975, + -0.008961944840848446, + 0.025008425116539, + 0.046486157923936844, + -0.028755009174346924, + 0.0629069060087204, + 0.022693561390042305, + -0.0017287882510572672, + 0.03491470217704773, + -0.040309421718120575, + -0.04567161574959755, + -0.026822112500667572, + 0.038594506680965424, + -0.030025774613022804, + 0.029757052659988403, + -0.017389608547091484, + -0.022202838212251663, + -0.0038526407442986965, + -0.03126392140984535, + -0.018262598663568497, + 0.05654814839363098, + -0.02211860381066799, + -0.021441617980599403, + 0.011732158251106739, + 0.012503066100180149, + -0.0045918007381260395, + -0.009310957975685596, + 0.025688838213682175, + 0.022685207426548004, + 0.043841127306222916, + -0.03243578225374222, + -0.008165884763002396, + -0.02763606235384941, + -0.07599233090877533, + -0.005596593488007784, + 0.012170731090009212, + 0.006234623491764069, + -0.028577441349625587, + -0.0409240797162056, + -0.027873976156115532, + 0.04221947491168976, + 0.028652355074882507, + -0.03369249403476715, + -0.02266579680144787, + 0.0019299883861094713, + 0.021521715447306633, + -0.04826201871037483, + 0.005682640243321657, + -0.04182618856430054, + -0.01679130643606186, + 0.029379211366176605, + 0.06468930840492249, + -0.05150735750794411, + -0.04779927432537079, + 0.00852606724947691, + 0.009400208480656147, + 0.018605003133416176, + -0.033591993153095245, + -0.08202763646841049, + 0.02493651583790779, + -0.02201247774064541, + 0.02633511647582054, + 0.07668959349393845, + -0.03388229012489319, + 0.061052095144987106, + 0.0071092694997787476, + -0.02776196599006653, + 0.04634582996368408, + 0.06980332732200623, + 0.02264879271388054, + -0.04297174885869026, + 0.0014718326274305582, + -0.04581344500184059, + 0.038933347910642624, + 0.04569506645202637, + -0.07001403719186783, + 0.007779412437230349, + -0.04575766623020172, + 0.05322583019733429, + -0.02322072722017765, + -0.02981535904109478, + 0.008986621163785458, + 0.01863946206867695, + 0.028543373569846153, + -0.06747296452522278, + 0.039185184985399246, + 0.0021002728026360273, + -0.030991360545158386, + 0.011222084052860737, + 0.05777157098054886, + -0.03499815613031387, + 0.06163781136274338, + -0.0004652665520552546, + 0.005162494722753763, + 0.019101550802588463, + -0.019767405465245247, + 0.05078640952706337, + 0.00859261117875576, + -0.01672392338514328, + -0.042151790112257004, + -0.009483166970312595, + 0.02631322108209133, + 0.0370897501707077, + -0.013635169714689255, + 0.06807051599025726, + -0.05219190940260887, + -0.011487744748592377, + -0.03210849687457085, + -0.0268911924213171, + 0.09386071562767029, + -0.031355660408735275, + 0.009351890534162521, + -0.001087210956029594, + -0.025305556133389473, + 0.02417902648448944, + -0.04818849265575409, + 0.01487461943179369, + 0.0171793382614851, + 0.013814105652272701, + -0.022514186799526215, + 0.01799721270799637, + 0.02846444770693779, + -0.05781220644712448, + 0.0007029723492451012, + 0.013509553857147694, + 0.059534475207328796, + -0.06172187998890877, + -0.006078059785068035, + -0.0037689171731472015, + 0.006466328632086515, + -0.001899725990369916, + 0.027878614142537117, + -0.051765017211437225, + 0.01771991327404976, + -0.028767071664333344, + 0.06442856788635254, + 0.03777988255023956, + -0.008372049778699875, + -0.025432119145989418, + -0.016117911785840988, + 0.01356866117566824, + 0.04122546315193176, + -0.027668433263897896, + -0.0019873168785125017, + -0.029995903372764587, + -0.027815433219075203, + 0.002945350483059883, + 0.013851974159479141, + 0.0112868407741189, + 0.044295452535152435, + 0.05122848227620125, + -0.026529595255851746, + -0.028825510293245316, + 0.013859372586011887, + 0.03933330997824669, + -0.021692663431167603, + 0.013474727980792522, + 0.011697737500071526, + -0.01612638123333454, + 0.020004697144031525, + 0.00011120372801087797, + 0.023112701252102852, + 0.030422843992710114, + -0.024429790675640106, + -0.04575306549668312, + 0.005908097606152296, + -0.05693979933857918, + -0.006803818047046661, + -0.023806611075997353, + -0.011419572867453098, + -0.003934405278414488, + -0.014938547275960445, + 0.06624212116003036, + -0.01899074576795101, + -0.03441675752401352, + 6.427022162824869e-05, + -0.014952896162867546, + 0.01692020706832409, + 0.017628178000450134, + 0.019734980538487434, + -0.022950429469347, + -0.06387622654438019, + 0.027046125382184982, + 0.023454787209630013, + -0.009863529354333878, + 0.026671219617128372, + -0.08550651371479034, + -0.008496959693729877, + 0.030390731990337372, + -0.05909962207078934, + -0.022638648748397827, + -0.022063257172703743, + 0.0179920457303524, + 0.004891484510153532, + -0.026137497276067734, + -0.021672789007425308, + -0.021518539637327194, + 0.08024359494447708, + -0.020392145961523056, + -0.019532514736056328, + 0.027698315680027008, + -0.020156918093562126, + -0.024490082636475563, + -0.022394997999072075, + -0.040255770087242126, + 0.00023406864784192294, + 0.030995439738035202, + 0.03844262659549713, + 0.004534090869128704, + 0.05344175174832344, + 0.07575207948684692, + 0.022324183955788612, + 0.031047509983181953, + 0.018855465576052666, + 0.025910938158631325, + -0.003367199096828699, + 0.013009199872612953, + 0.0019395900890231133, + -0.020789068192243576, + 0.03701765835285187, + -0.01426282525062561, + 0.005804355256259441, + 0.04766872897744179, + 0.04277806356549263, + -0.04380645975470543, + -0.03462141379714012, + 0.022953294217586517, + -0.019069649279117584, + -0.044590141624212265, + -0.0230342298746109, + -0.0037585345562547445, + 0.014554217457771301, + -0.03703668341040611, + 0.020263254642486572, + -0.029644889757037163, + 0.05834558606147766, + 0.0361793152987957, + -0.014712672680616379, + -0.01374095119535923, + -0.03436966612935066, + 0.053693871945142746, + 0.019018813967704773, + 0.01698021963238716, + 0.004336552694439888, + -0.0018587654922157526, + 0.06709600985050201, + 0.009227625094354153, + 0.0047166915610432625, + 0.016488943248987198, + -0.06316882371902466, + -0.0036804925184696913, + -0.009024715051054955, + -0.0029462866950780153, + 0.067042276263237, + 0.020094579085707664, + 0.01561166811734438, + 0.023745186626911163, + -0.002970591187477112, + 0.030564581975340843, + -0.020897721871733665, + -0.01656518317759037, + 0.025300322100520134, + -0.05131310969591141, + -0.045134302228689194, + -0.04359075054526329, + -0.007831533439457417, + -0.005189929623156786, + 0.00415117759257555, + 0.02560572698712349, + -0.010037771426141262, + -0.024674642831087112, + 0.04669957607984543, + -0.014826982282102108, + 0.009420626796782017, + 7.472343713743612e-05, + 0.02262234501540661, + 0.004416450392454863, + 0.015504966489970684, + -0.05879729613661766, + -0.06361822038888931, + -0.015041095204651356, + -0.029503444209694862, + 0.059645526111125946, + 1.938901550602168e-05, + 0.01322667021304369, + -0.03579333797097206, + 0.03914017230272293, + 0.0046287099830806255, + -0.017454475164413452, + 0.058233000338077545, + 0.016474857926368713, + 0.012919996865093708, + -0.024202922359108925, + -0.03704005852341652, + -0.027261823415756226, + -0.04238870367407799, + 0.04607255756855011, + 0.005151587538421154, + 0.030354635789990425, + 0.028123479336500168, + -0.04547496140003204, + 0.06472142785787582, + 0.03960784524679184, + 0.00963623821735382, + -0.029653353616595268, + -0.05507722496986389, + 0.01569272391498089, + -0.0053208619356155396, + 0.07816504687070847, + -0.018925735726952553, + 0.039040494710206985, + 0.03162505477666855, + 0.0372101254761219, + 0.07297607511281967, + 0.006628928240388632, + -0.032045628875494, + -0.015520229004323483, + 0.011203481815755367, + -0.00865136831998825, + -0.005698440596461296, + -0.041246358305215836, + -0.0018392769852653146, + -0.045878347009420395, + -0.016893284395337105, + 0.006315575446933508, + -0.0085360798984766, + -0.009298154152929783, + 0.01992080733180046, + -0.032690420746803284, + 0.02139875292778015, + 0.003042464843019843, + 0.06204572692513466, + -0.008444610051810741, + -0.005548969376832247, + -0.007591265253722668, + 0.010598230175673962, + 0.03913873806595802, + 0.030574005097150803, + -0.020480895414948463, + -0.03830268606543541, + -0.0016800458543002605, + 0.014683493413031101, + -0.058297596871852875, + -0.001680991961620748, + 0.025802988559007645, + -0.014680503867566586, + -0.031147444620728493, + 0.017013754695653915, + -0.01400003582239151, + -0.019780654460191727, + 0.004969882778823376, + 0.01062687672674656, + -0.05755133554339409, + -0.03701140731573105, + 0.06583022326231003, + 0.024910883978009224, + 0.02210616134107113, + -0.005165113601833582, + -0.03208225592970848, + -0.0205782912671566, + 0.0018433657241985202, + 0.011277123354375362, + 0.02551104687154293, + -0.0667629987001419, + -0.03811436519026756, + -0.04224103316664696, + -0.017215080559253693, + 0.006717974785715342, + -0.027138961479067802, + -0.014337711036205292, + 0.012771175242960453, + -0.005725658033043146, + 0.02159501425921917, + 0.009874529205262661, + -0.07991444319486618, + 0.016755439341068268, + 0.022168511524796486, + -0.04927054047584534, + -0.01848980225622654, + -0.04368751123547554, + 0.01278770063072443, + -0.027024146169424057, + -0.015190670266747475, + 0.03097243420779705, + 0.013329549692571163, + 0.0014655583072453737, + -0.0566202849149704, + 0.011947725899517536, + -0.04499366879463196, + 0.0516500324010849, + -0.029442250728607178, + -0.026148473843932152, + 0.02653702162206173, + -0.022672094404697418, + -0.04501332715153694, + 0.02287130244076252, + -0.07544355094432831, + 0.00364179746247828, + 0.037167567759752274, + 0.041676200926303864, + -0.014199893921613693, + -0.0678747296333313, + -0.0034800248686224222, + -0.042641982436180115, + 0.03571552038192749, + -0.02850939705967903, + -0.004812015686184168, + 0.005928819067776203, + 0.04082578420639038, + -0.013886496424674988, + 0.0410185381770134, + 0.03096395917236805, + -0.028258681297302246, + -0.043902814388275146, + 0.015361974015831947, + 0.05453716963529587, + 0.04078454524278641, + -0.05919592082500458, + -0.024239107966423035, + -0.02680116891860962, + -0.020473141223192215, + 0.018732160329818726, + -0.014838913455605507, + -0.0243636853992939, + 0.0002832012251019478, + -0.01833747886121273, + -0.08311185985803604, + -0.032053396105766296, + -0.030426139011979103, + 0.0449039526283741, + -0.05387928709387779, + -0.0473160482943058, + 0.035095710307359695, + 0.04443253204226494, + 0.006777971982955933, + -0.029213109984993935, + 0.052451688796281815, + 0.08519098162651062, + 0.011140714399516582, + -0.032334569841623306, + -0.013524999842047691, + 0.01107751950621605, + -0.05683518573641777, + 0.07155676186084747, + -0.014874441549181938, + 0.017943155020475388, + 0.00016019957547541708, + 0.04791197180747986, + 0.028711793944239616, + -0.017641887068748474, + 0.02705357037484646, + -0.008236570283770561, + 0.05507296696305275, + -0.016566338017582893, + 0.031116291880607605, + 0.017873400822281837, + 0.0007113027386367321, + -0.002555324463173747, + -0.011651374399662018, + -0.019887594506144524, + -0.008445710875093937, + 0.011235654354095459, + 0.009352416731417179, + 0.04700548201799393, + 0.023212645202875137, + -0.02244218997657299, + -0.05022191256284714, + 0.00022223185806069523, + -0.014316370710730553, + 0.015893980860710144, + -0.01664682663977146, + -0.01683935336768627, + -0.06493429839611053, + 0.03448021411895752, + 0.008145816624164581, + 0.00516437366604805, + 0.045830126851797104, + 0.08351065218448639, + 0.013010676018893719, + -0.00012640941713470966, + 0.05881163477897644, + 0.037701308727264404, + -0.03464493155479431, + -0.0547887347638607, + -0.045434389263391495, + 0.03779788315296173, + 0.02276885136961937, + -0.010837397538125515, + -0.034725043922662735, + -0.008567940443754196, + 0.02187713235616684, + -0.028604624792933464, + 0.01123444177210331, + -0.025194430723786354, + 0.034510303288698196, + -0.037374772131443024, + -0.0177334975451231, + -0.0037647101562470198, + 0.025229251012206078, + 0.008678903803229332, + -0.01285133883357048, + -0.007757035084068775, + -0.058525990694761276, + -0.03466673940420151, + -0.02449055016040802, + -0.03594623878598213, + 0.006136583164334297, + -0.005476541351526976, + 0.02727684937417507, + -0.0011460072128102183, + -0.010720049031078815, + -0.019067896530032158, + -0.013638224452733994, + 0.02980680577456951, + 0.0069002253003418446, + 0.011927422136068344, + -0.04232446849346161, + 0.01113135740160942, + 0.0496317483484745, + 0.028033673763275146, + -0.011852934025228024, + 0.0006079775630496442, + 0.044243406504392624, + -0.004274850711226463, + 0.047246191650629044, + 0.016842059791088104, + 0.002125305589288473, + 0.046038854867219925, + 0.0024491685908287764, + -0.029252229258418083, + -0.032161254435777664, + -0.012630399316549301, + -0.019933605566620827, + 0.03086102567613125, + 0.012857470661401749, + 0.031025057658553123, + 0.0453849621117115, + -0.01795005425810814, + -0.006715862080454826, + -0.02129221148788929, + -0.04724804684519768, + 0.006937852129340172, + -0.007588001899421215, + 0.05742335692048073, + -0.030015992000699043, + 0.005361430812627077, + -0.0002598432474769652, + 0.023885156959295273, + -0.009767892770469189, + 0.014938613399863243, + 0.0008845240226946771, + 0.02658895216882229, + -0.03564421460032463, + 0.020561203360557556, + -0.03495458886027336, + -0.006866958923637867, + 0.023149993270635605, + -0.01733401231467724, + 0.06194708123803139, + 0.0028726805467158556, + -0.010269679129123688, + 0.012928133830428123, + -0.017110440880060196, + -0.018980393186211586, + -0.00031787948682904243, + -0.028052600100636482, + 0.015146826393902302, + 0.002620761515572667, + 0.004097713157534599, + 0.00048578588757663965, + -0.03787663206458092, + -0.025586869567632675, + 0.013925839215517044, + -0.00031521072378382087, + 0.024773716926574707, + -0.021227998659014702, + 0.023531382903456688, + 0.03761456906795502, + 0.021525828167796135, + 0.04525657370686531, + -0.015774330124258995, + -0.004338235128670931, + -0.05101057514548302, + 0.029540959745645523, + -0.009904325008392334, + -0.0029796587768942118, + 0.024832487106323242, + -0.008332670666277409, + -0.011544542387127876, + -0.013000053353607655, + -0.050901491194963455, + 0.01291248481720686, + -0.0049863276071846485, + 0.008782453835010529, + 0.036751702427864075, + 0.006367341615259647, + -0.028036469593644142, + 0.001979995518922806, + -0.054698504507541656, + 0.028215322643518448, + 0.008303404785692692, + 0.0009522382169961929, + 0.046924691647291183, + -0.01942065730690956, + -0.010537557303905487, + -0.04893716797232628, + -0.043677039444446564, + -0.08137118071317673, + -0.010869409888982773, + 0.052217207849025726, + -0.009632980450987816, + 0.05209797993302345, + 0.007053916342556477, + 0.020000170916318893, + 0.011059573851525784, + 0.004922824911773205, + -0.04825762286782265, + -0.05059439688920975, + -0.036792393773794174, + 0.00037214052281342447, + -0.002652461174875498, + 0.012628396973013878, + 0.037622783333063126, + -0.04174142703413963, + 0.051627837121486664, + 0.02927194908261299, + -0.024288997054100037, + -0.03316124156117439, + -0.001709868898615241, + -0.07671763747930527, + -0.018694547936320305, + 0.012104935012757778, + 0.022602180019021034, + -0.01461667101830244, + -0.019312500953674316, + -0.003339962800964713, + -0.01592833176255226, + -0.003745870664715767, + 0.018510159105062485, + 0.024937016889452934, + -0.0019313981756567955, + 0.00791581254452467, + -0.043220631778240204, + 0.01594456098973751, + 0.006088805850595236, + 0.0348224900662899, + -0.026203233748674393, + -0.019889097660779953, + 0.03520357236266136, + -0.02996124140918255, + -0.01618071459233761, + 0.0005171017837710679, + 0.005476761143654585, + -0.012668872252106667, + -0.025162626057863235, + -0.006406272295862436, + -0.033889710903167725, + -0.005418127402663231, + 0.016568029299378395, + 0.023055214434862137, + 0.04776493459939957, + 0.06528197973966599, + -0.003026635153219104, + 0.0262977946549654, + -0.05454282462596893, + 0.0014955759979784489, + 0.06538032740354538, + -0.035510092973709106, + -0.01757550798356533, + -0.033044833689928055, + 0.051496487110853195, + -0.04303664714097977, + 0.009658724069595337, + 0.035350359976291656, + -0.02790839970111847, + -0.006269985809922218, + -0.007520733401179314, + 0.005176492501050234, + 0.01568756438791752, + 0.009205156937241554, + 0.03878842666745186, + -0.02982085756957531, + -0.0283358097076416, + 0.01461538951843977, + -0.03719334304332733, + 0.030486665666103363, + 0.005268446169793606, + -0.021936068311333656, + 0.010506436228752136, + -0.03763004392385483, + 0.007528802379965782, + 0.024502411484718323, + 0.008825210854411125, + 0.0455908477306366, + -0.005526450928300619, + -0.0019588905852288008, + -0.012233246117830276, + 0.04909869283437729, + -0.024626243859529495, + -0.06824850291013718, + 0.03265053778886795, + -0.04530443996191025, + -0.011025872081518173, + -0.016857178881764412, + -0.04824360832571983, + 0.07234050333499908, + -0.01090308278799057, + 0.0008092884090729058, + 0.03035331331193447, + 0.013268226757645607, + 0.02302936092019081, + -0.017433617264032364 + ], + "start_index": 27575, + "end_index": 27624, + "token_count": 14, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "0a5d7765-8328-506f-b0a1-dedc9dc5a479", + "_source": { + "text": "\n\nToken:\n\n\n\nASSIGN", + "embedding": [ + 0.011644444428384304, + -0.04296286404132843, + -0.014504633843898773, + -0.10755539685487747, + -0.034199077636003494, + -0.0042197927832603455, + -0.03798053786158562, + 0.0507928691804409, + -0.027624264359474182, + 0.0014611143851652741, + -0.010815620422363281, + -0.045069050043821335, + 0.03260435163974762, + -0.012983664870262146, + -0.057810019701719284, + 0.08056160807609558, + -0.016385290771722794, + -0.004541726782917976, + 0.005919975228607655, + -0.000380749988835305, + 0.02256316877901554, + 0.022997263818979263, + -0.03138017654418945, + 0.09712677448987961, + -0.0003941698232665658, + 0.06930039077997208, + -0.06102250516414642, + 0.09283237159252167, + 0.042583901435136795, + -0.04175536707043648, + -0.010182327590882778, + -0.050198402255773544, + -0.04371237754821777, + -0.021009955555200577, + -0.014851325191557407, + -0.017444675788283348, + -0.029368877410888672, + -0.07678595930337906, + 0.0023248265497386456, + 0.058347437530756, + 0.032239168882369995, + 0.005770083516836166, + -0.013647103682160378, + 0.01699630171060562, + -0.008607974275946617, + -0.013246879912912846, + -0.007006144151091576, + -0.00921677052974701, + 0.030678270384669304, + 0.0044940453954041, + -0.014928220771253109, + 0.00650807423517108, + 0.017514821141958237, + 0.0014233815018087626, + -0.004594753496348858, + -0.043823882937431335, + 0.040445879101753235, + 0.0058420924469828606, + 0.007882151752710342, + 0.022555574774742126, + -0.016469603404402733, + 0.09187667071819305, + -0.05771295353770256, + -0.004391977097839117, + 0.006117876153439283, + 0.06670399010181427, + 0.010599516332149506, + 0.04961065202951431, + -0.0629613921046257, + -0.021066000685095787, + -0.009836043231189251, + -0.03526487946510315, + -0.017676474526524544, + 0.03489343822002411, + 0.03760471194982529, + 0.022386381402611732, + 0.0062887477688491344, + -0.047112755477428436, + 0.030634451657533646, + 0.06795842200517654, + -0.00989595241844654, + 0.06251803785562515, + 0.043082062155008316, + -0.005341745913028717, + -3.0418566893786192e-05, + 0.08178883045911789, + -0.052904386073350906, + -0.036105185747146606, + 0.024537889286875725, + 0.020456060767173767, + -0.0004132569010835141, + 0.041080135852098465, + -0.01994134485721588, + -0.0014205583138391376, + 0.02446330152451992, + -0.01048155315220356, + -0.022018298506736755, + 0.04433603584766388, + -0.026221731677651405, + -0.020532917231321335, + -0.025542210787534714, + -0.024275178089737892, + -0.04555234685540199, + -0.03009149804711342, + 0.04759769141674042, + 0.059021029621362686, + -0.028776990249753, + 0.021797427907586098, + 0.01666068099439144, + -0.037484560161828995, + -0.03274906799197197, + -0.003027156228199601, + 0.03906732052564621, + 0.004655430093407631, + 0.01536064688116312, + -0.01002463884651661, + -0.01812668889760971, + -0.04581416770815849, + -0.0075652324594557285, + 0.004174001049250364, + 0.024221152067184448, + 0.010382081381976604, + -0.0002232830156572163, + -0.016257114708423615, + 0.007313273381441832, + 0.010082400403916836, + -0.02720733731985092, + -0.03792450949549675, + 0.03658369556069374, + -0.02166413888335228, + 0.003970377147197723, + -0.052486564964056015, + -0.03160515055060387, + -0.023760251700878143, + 0.0021684239618480206, + -0.004964873660355806, + 0.010517023503780365, + -0.010200828313827515, + 0.051526620984077454, + -0.010839313268661499, + -0.01614484190940857, + 0.013525084592401981, + -0.004693156108260155, + -0.018559085205197334, + 0.024387206882238388, + 0.03315562754869461, + -0.013025348074734211, + 0.0008582909358665347, + 0.043720096349716187, + 0.022593684494495392, + 0.020734932273626328, + -0.00217725639231503, + -0.02671731635928154, + -0.009812740609049797, + -0.03125125542283058, + -0.0037327520549297333, + 0.012198980897665024, + -0.021867528557777405, + 0.033438656479120255, + 0.014020571485161781, + 0.004178138915449381, + -0.0004679567937273532, + -0.021501092240214348, + -0.046864334493875504, + -0.04896749556064606, + 0.05597303807735443, + -0.04916800558567047, + -0.0376335047185421, + -0.049360428005456924, + 0.05106266960501671, + -0.022886313498020172, + 0.020511744543910027, + 0.00038559568929485977, + -0.0005659500020556152, + -0.004004309885203838, + 0.0093539385125041, + -0.025681979954242706, + -0.08389723300933838, + -0.003560223150998354, + 0.010550389066338539, + -0.007357342634350061, + -0.020654022693634033, + -0.0317181758582592, + 0.00822335947304964, + 0.004711163695901632, + 0.003465066198259592, + -0.0014314019354060292, + 0.0052363090217113495, + -0.012052178382873535, + -0.0002569953794591129, + -0.017051681876182556, + 0.003549038665369153, + -0.0649833008646965, + -0.018955262377858162, + -0.00815627072006464, + -0.017139116302132607, + 0.049092553555965424, + -0.04601050168275833, + 0.008574886247515678, + -0.021079806610941887, + 0.020438915118575096, + -0.006030743010342121, + 0.026425477117300034, + 0.02046126499772072, + -0.01951802708208561, + -0.014351597987115383, + 0.017832938581705093, + -0.01635713130235672, + -0.029919497668743134, + -0.056993674486875534, + -0.002108197193592787, + 0.019549677148461342, + -0.013408219441771507, + 0.01975162699818611, + -0.006547574419528246, + -0.055439624935388565, + -0.010527756065130234, + -0.00436538876965642, + 0.005922683514654636, + 0.0034221296664327383, + 0.032434217631816864, + 0.013397777453064919, + -0.01865328662097454, + 0.009267862886190414, + 0.016442250460386276, + -0.051127705723047256, + 0.00662087369710207, + 0.004164289217442274, + 0.028206804767251015, + 0.02060396783053875, + 0.013297632336616516, + 0.011565722525119781, + -0.017654595896601677, + -0.015474420972168446, + 0.045786287635564804, + -0.007327115163207054, + 0.00522087374702096, + 0.013879277743399143, + 0.026431908831000328, + -0.027702510356903076, + -0.00943388044834137, + 0.0022363774478435516, + -0.009105514734983444, + 0.02190455235540867, + -0.02166137471795082, + 0.03554418310523033, + -0.007617536466568708, + -0.005629893392324448, + -0.011927720159292221, + 0.026198767125606537, + 0.06952740997076035, + -0.10999772697687149, + 0.010077004320919514, + 0.06407550722360611, + -0.017093410715460777, + -0.036466021090745926, + 0.010608403012156487, + 0.01531671267002821, + 0.014535783790051937, + -0.012364585883915424, + 0.0046477774158120155, + -0.03056800737977028, + -0.028380736708641052, + 0.03292836993932724, + -0.006580731365829706, + -0.02098437026143074, + -0.0219039898365736, + 0.007697733119130135, + -0.053222253918647766, + -0.013490797020494938, + -0.025493543595075607, + 0.01195130031555891, + -9.867329936241731e-05, + 0.011126435361802578, + 0.025682548061013222, + 0.004656512755900621, + 0.0002551337529439479, + -0.07196904718875885, + 0.028770102187991142, + 0.027032554149627686, + -0.004695423878729343, + 0.008133705705404282, + -0.004409163258969784, + -0.014354510232806206, + 0.016538716852664948, + 0.03942711651325226, + 0.02489505521953106, + 0.019317053258419037, + -0.0009318756056018174, + 0.01900980994105339, + -0.015632469207048416, + 0.003317499067634344, + -0.02682999148964882, + 0.023632531985640526, + 0.006465652026236057, + 0.011257325299084187, + 0.05668169632554054, + 0.06036939099431038, + 0.021917931735515594, + -0.0519535131752491, + 0.014073353260755539, + -0.018308209255337715, + 0.011736155487596989, + 0.00905699748545885, + -0.012492367066442966, + -0.010345571674406528, + 0.04354009032249451, + 0.004132178146392107, + 0.01995072327554226, + 0.02649874798953533, + 0.073415607213974, + -0.006265064235776663, + -0.00012922880705446005, + -0.026754047721624374, + -0.020683694630861282, + 0.020804567262530327, + -0.08783596009016037, + 0.03934929147362709, + -0.020930279046297073, + 0.0517418347299099, + 0.009691151790320873, + 0.0015700433868914843, + -0.013009347021579742, + -0.036462776362895966, + 0.048214808106422424, + 0.010457037948071957, + 0.04623907804489136, + 0.022639529779553413, + -0.018049903213977814, + -0.01225239410996437, + 0.00590564776211977, + -0.02356664650142193, + 0.06857717782258987, + 0.011372686363756657, + 0.010866678319871426, + -0.0032434065360575914, + 0.014932907186448574, + 0.0029743462800979614, + -0.00030288787093013525, + 0.008171060122549534, + 0.013709495775401592, + 0.01161588728427887, + -0.04150791093707085, + 0.01730981469154358, + -0.0665314793586731, + -0.04843388870358467, + 0.016126209869980812, + 0.029497209936380386, + -0.009393955580890179, + -0.016727272421121597, + -0.060375191271305084, + -0.025701748207211494, + -0.0039923787117004395, + 0.007550213020294905, + -0.016465600579977036, + -0.05864617973566055, + -0.015539530664682388, + 0.0002713716821745038, + -0.018747420981526375, + -0.022406917065382004, + -0.010230491869151592, + -0.05957023426890373, + -0.0063141826540231705, + 0.05910080298781395, + -0.060441240668296814, + -0.03926384449005127, + -0.024051446467638016, + 0.02378169074654579, + 0.04600892588496208, + 0.012056814506649971, + -0.05784331634640694, + 0.02626991830766201, + 0.00678483210504055, + -0.01674439013004303, + 0.06907998770475388, + 0.032438818365335464, + 0.05704769864678383, + 0.022728770971298218, + -0.0013682171702384949, + -0.013370292261242867, + 0.032853566110134125, + -0.0026482329703867435, + -0.021328313276171684, + 0.011160565540194511, + -0.026125282049179077, + -0.02853134274482727, + 0.020719116553664207, + -0.041633810847997665, + -0.017072979360818863, + -0.04235245659947395, + 0.033467452973127365, + -0.0259063933044672, + 0.00593090895563364, + 0.0028695696964859962, + 0.040324654430150986, + 0.038537729531526566, + -0.10726382583379745, + -0.016721004620194435, + 0.04574549198150635, + 0.03193292394280434, + 0.010534636676311493, + -0.0031454437412321568, + -0.05155195668339729, + 0.004375271964818239, + 0.028770482167601585, + 0.018699660897254944, + 0.024799611419439316, + -0.004323371220380068, + 0.03195587173104286, + -0.006136205513030291, + 0.049865879118442535, + 0.0026470532175153494, + 0.008593921549618244, + 0.01336879562586546, + 0.013044037856161594, + -0.011215202510356903, + 0.09556722640991211, + -0.011261490173637867, + -0.0009138339082710445, + 0.016031447798013687, + -0.011091538704931736, + 0.04885539412498474, + -0.05667784810066223, + -0.021479202434420586, + -0.018742332234978676, + 0.003006670158356428, + -0.020191017538309097, + -0.04222838580608368, + 0.02047588862478733, + 0.06490495800971985, + 0.006752103567123413, + -0.0010722788283601403, + -0.014078852720558643, + 0.020129278302192688, + -0.031092604622244835, + 0.03278666362166405, + 0.06296152621507645, + 0.034061700105667114, + -0.005016814451664686, + -0.02117357775568962, + -0.020829590037465096, + 0.02753516659140587, + -0.02447027899324894, + 0.012209730222821236, + -0.055707626044750214, + -0.011871108785271645, + -0.058522406965494156, + 0.011442435905337334, + 0.03377733752131462, + -0.0010096174664795399, + 0.038627877831459045, + -0.017062213271856308, + -0.0023371882271021605, + 0.03743594139814377, + -0.030231090262532234, + -0.03568364307284355, + -0.004009159281849861, + -0.006929018069058657, + -0.00641171308234334, + 0.019985869526863098, + -0.01178212370723486, + 0.01734921522438526, + 0.044049061834812164, + -0.03665836900472641, + -0.05514437332749367, + 0.04764515534043312, + 0.01455630548298359, + -0.030861875042319298, + 0.020699216052889824, + 0.03277505561709404, + 0.002097961027175188, + -0.00899820402264595, + -0.015851130709052086, + -0.02915239706635475, + 0.022690575569868088, + 0.029867397621273994, + -9.559687896398827e-05, + -0.009246934205293655, + -0.059316281229257584, + -0.009239989332854748, + -0.03165276721119881, + -0.02803156152367592, + 0.02023107185959816, + -0.09688033908605576, + 0.058763276785612106, + -0.027001652866601944, + 0.0036406698636710644, + -0.0212857723236084, + -0.06335970014333725, + 0.012841282412409782, + 0.01163940317928791, + 0.029182029888033867, + -0.02492080256342888, + -0.04991283640265465, + -0.0062366751953959465, + 0.011464480310678482, + -0.008150585927069187, + 0.004695964511483908, + -0.10891196131706238, + 0.0033818939700722694, + -0.0035891893785446882, + -0.03933742269873619, + -0.03935964033007622, + -0.030528252944350243, + 0.008037255145609379, + 0.010274500586092472, + -0.0023941518738865852, + -0.03122950717806816, + 0.025380471721291542, + 0.026518236845731735, + -0.009597554802894592, + -0.024466147646307945, + 0.005551794543862343, + 0.019345348700881004, + -0.03244362771511078, + -0.022625718265771866, + 0.012667727656662464, + -0.02445315755903721, + -0.022615106776356697, + 0.046886760741472244, + 0.019671503454446793, + 0.005160368513315916, + 0.0462987944483757, + 0.02567109651863575, + 0.04175634682178497, + 0.06377802044153214, + -0.020686188712716103, + -0.015266600996255875, + 0.005445665214210749, + -0.02795908972620964, + 0.026551462709903717, + 0.02577064000070095, + -0.0013381479075178504, + 0.025406504049897194, + 0.0015919300494715571, + 0.00930753443390131, + 0.0029042805545032024, + -0.0020767212845385075, + 0.03383992239832878, + -0.0031365591567009687, + -0.0006248315912671387, + -0.011598404496908188, + -0.03134249895811081, + -0.03967374935746193, + 0.003740472486242652, + 0.0020304869394749403, + -0.02807515300810337, + 0.03565574809908867, + 0.04783555865287781, + -0.0009803572902455926, + 0.022794947028160095, + 0.018795419484376907, + 0.046969376504421234, + -0.012091209180653095, + 0.012350895442068577, + 0.004508011043071747, + 0.07005376368761063, + 0.017462613061070442, + 0.010647499933838844, + 0.0074372561648488045, + -0.0406862311065197, + -0.029052184894680977, + -0.012809978798031807, + -0.01307414099574089, + 0.03654557466506958, + 0.02710183523595333, + -0.022007733583450317, + 0.01804906688630581, + 0.00920341070741415, + -0.011209098622202873, + 0.04394493252038956, + 0.007219975348562002, + 0.02926339954137802, + -0.01928453892469406, + -0.0014531182823702693, + -0.04283176735043526, + -0.04756137728691101, + 0.05210093408823013, + -0.00993348378688097, + 0.0024601141922175884, + 0.0027354457415640354, + -0.035926703363657, + 0.02468043379485607, + -0.010483837686479092, + -0.022305862978100777, + 0.019621944054961205, + -0.03543906658887863, + 0.04629087820649147, + 0.03940391167998314, + 0.019347548484802246, + -0.04343181848526001, + -0.02597598358988762, + -0.03170078247785568, + -0.005927512422204018, + 0.026382654905319214, + -0.00770234502851963, + -0.04898807406425476, + -0.02348875254392624, + 0.017529357224702835, + 0.026846354827284813, + -0.015226653777062893, + 0.07303619384765625, + 0.027494147419929504, + -0.0059560067020356655, + -0.05125387758016586, + -0.014801953919231892, + -0.014171846210956573, + -0.007620660588145256, + -0.01477246917784214, + 0.02257540449500084, + 0.007051481865346432, + 0.01455194316804409, + -0.07015027850866318, + 0.00522963423281908, + 0.036755580455064774, + -0.023053862154483795, + 0.014665469527244568, + -0.00352082378230989, + -0.011081918142735958, + -0.07455556094646454, + 0.013316217809915543, + -0.0049766600131988525, + 0.036456022411584854, + 0.07658610492944717, + 0.005461486522108316, + 0.026229670271277428, + -0.006969512440264225, + -0.03615019470453262, + -0.028025280684232712, + -0.037278417497873306, + -0.04144257679581642, + -0.023167654871940613, + -0.0864931270480156, + 0.02183929830789566, + -0.01458014827221632, + -0.017877262085676193, + -0.005094451829791069, + 0.01902880147099495, + -0.008538693189620972, + -0.028730716556310654, + -0.011833744123578072, + -0.017654940485954285, + 0.04168592393398285, + 0.014544686302542686, + -0.004513914231210947, + -0.0027309691067785025, + 0.029120078310370445, + 0.030541904270648956, + 0.05577188357710838, + 0.007043702527880669, + -0.0026161361020058393, + -0.0006709370063617826, + -0.03398001194000244, + 0.032427627593278885, + -0.01227186992764473, + 0.008194838650524616, + -0.02008749172091484, + 0.023814581334590912, + 0.032480739057064056, + -0.04831535741686821, + -0.006159174256026745, + -0.05935906991362572, + 0.014258723706007004, + -0.05085946246981621, + -0.07968956232070923, + -0.0400414764881134, + 0.05133950710296631, + 0.06172093376517296, + 0.02828584425151348, + -0.004281352274119854, + -0.019355468451976776, + -0.05384587496519089, + -0.01142572145909071, + -0.01168886385858059, + -0.030401842668652534, + -0.050920676440000534, + -0.028665781021118164, + -0.004306464456021786, + -0.040819887071847916, + -0.045951880514621735, + -0.04834163188934326, + -0.001175271114334464, + -0.004894991870969534, + -0.0167416762560606, + 0.04491040110588074, + 0.016880424693226814, + -0.036188755184412, + -0.011416498571634293, + 0.019199222326278687, + -0.0069527458399534225, + -0.05403180792927742, + -0.050015054643154144, + -0.001927942386828363, + 0.012234996072947979, + 0.008350957185029984, + 0.005912041291594505, + -0.008752741850912571, + -0.03042200207710266, + -0.031768154352903366, + 0.02805577777326107, + 0.022497614845633507, + 0.02147631347179413, + -0.009030943736433983, + 0.012391677126288414, + 0.00853504054248333, + 0.05019347369670868, + -0.03529942035675049, + 0.005617921706289053, + -0.05205724388360977, + -0.01279672421514988, + 0.0032309317030012608, + 0.013084007427096367, + -0.04323822632431984, + -0.005308410152792931, + 0.053692445158958435, + -0.0032818347681313753, + -0.006702210288494825, + -0.01637078821659088, + 0.006328790448606014, + -0.0012640791246667504, + 0.017467480152845383, + 0.047406066209077835, + 0.038624297827482224, + 0.04249832406640053, + -0.017012042924761772, + -0.006899088155478239, + 0.00024089303042273968, + 0.04837542772293091, + 0.0357409305870533, + -0.049981046468019485, + -0.0030051767826080322, + 0.004136274103075266, + -0.01309819146990776, + -0.0101785222068429, + 0.011736373417079449, + 0.014484258368611336, + 0.0013391001848503947, + 0.016555985435843468, + -0.02831660583615303, + -0.015475926920771599, + 0.021809812635183334, + 0.016229774802923203, + -0.025695988908410072, + -0.047963760793209076, + 0.0122456606477499, + 0.10041113942861557, + -0.012928567826747894, + -0.04995781183242798, + 0.019573984667658806, + 0.054196547716856, + 0.024359138682484627, + -0.04190637916326523, + -0.009952204301953316, + 0.04207674786448479, + -0.033436063677072525, + -0.017630117014050484, + -0.00824454240500927, + 0.06373394280672073, + -0.007805890869349241, + 0.021317990496754646, + -0.0035397515166550875, + -0.013944101519882679, + 0.012516298331320286, + 0.008331776596605778, + 0.03909729793667793, + -0.016192562878131866, + 0.061877600848674774, + -0.029693279415369034, + 0.021365441381931305, + 0.008559530600905418, + 0.012452415190637112, + -0.040934640914201736, + 0.021889271214604378, + 0.05996404215693474, + -0.03915582224726677, + 0.0090621467679739, + 0.028976818546652794, + -0.02964659407734871, + -0.06701114028692245, + -0.020081777125597, + 0.013326496817171574, + -0.0032935033086687326, + 0.031654298305511475, + -0.02849358133971691, + -0.04638415575027466, + 0.04220147803425789, + 0.007545207627117634, + -9.040712029673159e-05, + 0.05248396843671799, + 0.09026093035936356, + 0.01700628362596035, + -0.004871448501944542, + 0.0393037423491478, + 0.051281776279211044, + -0.02648409642279148, + -0.0020301195327192545, + -0.03937970846891403, + 0.0359085351228714, + -0.008515900932252407, + 0.013038516975939274, + -0.00719508808106184, + 0.007968395948410034, + 0.009233453311026096, + -0.032593999058008194, + 0.07519116997718811, + -0.012916868552565575, + -0.026809323579072952, + -0.011569036170840263, + -0.044037800282239914, + 0.019229337573051453, + 0.06944046914577484, + 0.0918327122926712, + 0.002285226946696639, + 0.013284225016832352, + -0.011943121440708637, + 0.03441308066248894, + -0.04591432958841324, + 0.007346808910369873, + -0.051889222115278244, + 0.000567758281249553, + -0.01791825331747532, + 0.008003092370927334, + 0.006353165488690138, + -0.019638175144791603, + -0.008178425952792168, + 0.020873714238405228, + 0.03784037381410599, + 0.005272943526506424, + -0.02736457623541355, + 0.002017513383179903, + 0.008999126963317394, + -0.018112527206540108, + 0.0058393836952745914, + -0.012721766717731953, + 0.07131116092205048, + 0.023368099704384804, + -0.014981601387262344, + 0.02262696623802185, + -0.0014805016107857227, + 0.016238126903772354, + -0.038057032972574234, + -0.007165237795561552, + -0.027869191020727158, + 0.005942109040915966, + -0.038536056876182556, + 0.060918036848306656, + -0.013301183469593525, + 0.017026813700795174, + 0.023222343996167183, + -0.018224069848656654, + -0.02001320570707321, + 0.030662687495350838, + -0.06202512979507446, + 0.023088017478585243, + -0.029456349089741707, + 0.05718708038330078, + -0.005991231184452772, + 0.03232086822390556, + 0.0017674341797828674, + 0.011553894728422165, + 0.0035929542500525713, + -0.004163658246397972, + -0.050073761492967606, + 0.004499398171901703, + -0.0012637429172173142, + 0.07295113056898117, + 0.0007970072329044342, + 0.04727120324969292, + 0.0002439525560475886, + -0.00962076522409916, + 0.024799708276987076, + -0.009240950457751751, + 0.023009171709418297, + 0.03488655760884285, + -0.0030837298836559057, + 0.00728737423196435, + -0.038658007979393005, + 0.0057687400840222836, + 0.032950736582279205, + 0.06402827054262161, + -0.013315249234437943, + 0.04255492985248566, + 0.015009618364274502, + 0.03619110584259033, + 0.030727149918675423, + -0.039285287261009216, + 0.011160573922097683, + -0.03038114868104458, + -0.018668968230485916, + 0.014232886955142021, + 0.02093658410012722, + -0.025891277939081192, + 0.008747239597141743, + 0.015705754980444908, + -0.07692725956439972, + -0.007395116146653891, + -0.029794348403811455, + -0.03637213632464409, + 0.008036084473133087, + 0.006488955579698086, + 0.013158679008483887, + -0.034783151000738144, + -0.03116091527044773, + -0.029899701476097107, + -0.032816238701343536, + 0.027214597910642624, + 0.010048357769846916, + -0.006917562335729599, + -0.025609329342842102, + 0.002821259666234255, + -0.037828266620635986, + 0.048404864966869354, + -0.011138237081468105, + 0.008575974963605404, + -0.05520271137356758, + -0.02669619955122471, + -0.027486970648169518, + -0.03137078881263733, + -0.013948175124824047, + -0.009906466118991375, + -0.05178407207131386, + 0.02192743308842182, + -0.0076562343165278435, + 0.001102867303416133, + -0.03877941146492958, + -0.013540459796786308, + -0.03383343294262886, + -0.0215612705796957, + -0.014242425560951233, + 0.015838656574487686, + -0.012569071725010872, + 0.006726303603500128, + 0.02526378445327282, + 0.038439732044935226, + 0.013683654367923737, + -0.0034614698961377144, + 0.02061649225652218, + -0.017210224643349648, + 0.0004925405373796821, + -0.003913188353180885, + 0.028404464945197105, + -0.03194354847073555, + 0.001651229802519083, + 0.005035428795963526, + 0.037959955632686615, + -0.030292583629488945, + 0.015135418623685837, + -0.05985964834690094, + 0.05678515508770943, + 0.01551706250756979, + 0.0045535508543252945, + 0.0011934117646887898, + -0.019099390134215355, + 0.000881839485373348, + 0.004297181963920593, + -0.023900579661130905, + -0.015119432471692562, + 0.0516362302005291, + 0.0025358039420098066, + 0.013011099770665169, + -0.002463163109496236, + -0.01360427588224411, + 0.007912521250545979, + 0.02804749086499214, + 0.05959577485918999, + -0.00820869579911232, + -0.01066393218934536, + 0.038669366389513016, + 0.03929268568754196, + 0.014444646425545216, + -0.0038270766381174326, + 0.004892937373369932, + -0.003916904795914888, + 0.006431658752262592, + 0.054436199367046356, + 0.0010268606711179018, + -0.018682880327105522, + 0.005708157550543547, + -0.010597052052617073, + 0.013093716464936733, + -0.02900541201233864, + -0.03799988329410553, + 0.020067984238266945, + -0.017039122059941292, + -0.008908184245228767, + -0.012022221460938454, + -0.016580842435359955, + 0.004110079724341631, + -0.0063553741201758385, + -0.03500521183013916, + 0.020527919754385948, + 0.02335691638290882, + -0.004588454030454159, + -0.04563016816973686, + 0.045591916888952255, + 0.049325816333293915, + 0.041042741388082504, + 0.014858664944767952, + 0.035189419984817505, + -0.02412901259958744, + 0.006766744889318943, + -0.015683045610785484, + -0.019498325884342194, + -0.02030273713171482, + -0.011089635081589222, + -0.00744739780202508, + 0.028385484591126442, + 0.037851110100746155, + -0.011134329251945019, + 0.032191548496484756, + -0.038427677005529404, + -0.043701499700546265, + 0.017721036449074745, + -0.02492086961865425, + -0.004874812439084053, + -0.04163718968629837, + -0.010799519717693329, + 0.01859000138938427, + -0.008109577931463718, + -0.0226079523563385, + -0.005252128001302481, + -0.02937369793653488, + 0.03336229920387268, + 0.0322890467941761 + ], + "start_index": 27624, + "end_index": 27648, + "token_count": 3, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "a49509c9-26a2-5ea2-9332-04dbee4d3f79", + "_source": { + "text": "\n\n---\n\n## Operadores aritméticos\n\n\n\n+\n-\n*\n/\n%\n**", + "embedding": [ + -0.01267116516828537, + -0.011002571322023869, + -0.007779376581311226, + -0.07443665713071823, + 0.0053273397497832775, + 0.07215797901153564, + 0.011125017888844013, + 0.04094647243618965, + 0.018611222505569458, + -0.04672832787036896, + 0.019201381132006645, + -0.026456201449036598, + 0.10204806923866272, + -0.004455173388123512, + -0.04323817417025566, + 0.04741192236542702, + -0.021318258717656136, + -0.0024912094231694937, + 0.011490513570606709, + -0.04909007251262665, + 0.04332149401307106, + -0.022281793877482414, + -0.01598825678229332, + 0.05783173441886902, + 0.012763560749590397, + 0.026303278282284737, + -0.002234960673376918, + 0.062223393470048904, + -0.05112592875957489, + -0.07075338065624237, + 0.02225789986550808, + 0.010549107566475868, + -0.06019577011466026, + 0.03168758377432823, + -0.02091655321419239, + -0.0081858541816473, + -0.0009922556346282363, + 0.008697413839399815, + -0.01703093945980072, + 0.016772177070379257, + 0.06397924572229385, + 0.009163014590740204, + 0.0024633437860757113, + 0.03200478106737137, + -0.006910898722708225, + 0.022562362253665924, + 0.05866500735282898, + 0.004578777123242617, + 0.04237901791930199, + -0.001951824058778584, + -0.026328396052122116, + -0.07686609774827957, + 0.034023676067590714, + 0.03160456568002701, + -0.014981321059167385, + -0.018239106982946396, + 0.02028750441968441, + -0.0037027630023658276, + 0.012577109970152378, + 0.0048163351602852345, + -0.04739511385560036, + -0.012714800424873829, + -0.08058289438486099, + -0.003654137020930648, + 0.006112720817327499, + 0.006485217250883579, + -0.026898199692368507, + 0.008038348518311977, + -0.09157679975032806, + 0.00438495771959424, + -0.012944197282195091, + -0.006735822185873985, + 0.02549302764236927, + 0.03575494885444641, + 0.027819529175758362, + 0.02158927731215954, + -0.006456692703068256, + -0.08964993804693222, + 0.02204837091267109, + 0.026860961690545082, + 0.02684704028069973, + 0.04174008220434189, + 0.026992982253432274, + 0.013355514965951443, + 0.03747767210006714, + 0.053877316415309906, + -0.01462029479444027, + -0.0020189895294606686, + 0.010334806516766548, + 0.021436478942632675, + 0.030879991129040718, + 0.04487309604883194, + -0.05770221725106239, + -0.01820574514567852, + -0.0038754239212721586, + -0.03607269003987312, + -0.0050216419622302055, + -0.009983871132135391, + -0.005350685212761164, + 0.024083008989691734, + -0.012178058736026287, + -0.009172352962195873, + -0.011652890592813492, + 0.0005630205268971622, + -0.005607057828456163, + 0.051140666007995605, + -0.04924815893173218, + -0.02932584099471569, + 0.0047690123319625854, + -0.031233781948685646, + -0.04453681781888008, + 0.00523007707670331, + -0.025769665837287903, + 0.04818405210971832, + -0.014116201549768448, + -0.042302682995796204, + -0.04289749637246132, + -0.009676987305283546, + 0.026243479922413826, + 0.021096913143992424, + -0.008342960849404335, + -0.03858598321676254, + -0.007675630506128073, + 0.00552849005907774, + 0.01111364271491766, + -0.011407005600631237, + -0.026687555015087128, + 0.006921425461769104, + 0.02805595099925995, + -0.006680174730718136, + -0.0034733982756733894, + -0.0329974889755249, + -0.03363308310508728, + 0.015592705458402634, + 0.015239651314914227, + 0.013215296901762486, + -0.027607157826423645, + -0.030855298042297363, + 0.061181552708148956, + -0.011758356355130672, + -0.012387944385409355, + 0.018571076914668083, + -0.0060903336852788925, + -0.019228683784604073, + -0.013081956654787064, + 0.03087121620774269, + 0.012668685056269169, + 0.013756120577454567, + 0.013667205348610878, + 0.0827890932559967, + 0.003761152271181345, + -0.015784159302711487, + -0.010129913687705994, + -0.007152555976063013, + -0.004490284249186516, + 0.002875278936699033, + -0.01215510256588459, + 0.02977590821683407, + 0.006799307651817799, + 0.0028511967975646257, + -0.007805834989994764, + 0.035608403384685516, + 0.018520992249250412, + -0.030000656843185425, + -0.01042329054325819, + -0.022850189357995987, + -0.04822487011551857, + -0.029949041083455086, + 0.0346585176885128, + 0.008442013524472713, + 0.02443508245050907, + 0.010478628799319267, + 0.021850796416401863, + -0.02568749524652958, + -0.008478662930428982, + -0.04366730898618698, + -0.03145594522356987, + 0.00453138304874301, + 0.009188374504446983, + 0.003035895060747862, + 0.0060795024037361145, + -0.013558369129896164, + 0.018236666917800903, + -0.006591628771275282, + 0.014511150307953358, + 0.0587322898209095, + 0.015885157510638237, + -0.006940601393580437, + 0.018462486565113068, + 0.040634382516145706, + 0.03877543285489082, + -0.02198849618434906, + -0.048510339111089706, + 0.014661842957139015, + -0.03761456534266472, + -0.0341997966170311, + -0.01400717068463564, + -0.028546864166855812, + 0.015085272490978241, + 0.00387911731377244, + -0.009625713340938091, + -0.0215389933437109, + -0.009421703405678272, + 0.03650727495551109, + -0.0217906404286623, + 0.01170802116394043, + 0.02217990905046463, + 0.00534448865801096, + 0.0013574287295341492, + 0.00044931640150025487, + -0.014043157920241356, + -0.017814498394727707, + 0.016242220997810364, + -0.026783563196659088, + 0.013626618310809135, + -0.00726744020357728, + -0.03377364203333855, + 0.028740935027599335, + -0.005157638341188431, + -0.0005470340838655829, + 0.04198656603693962, + 0.021593056619167328, + -0.03220219910144806, + -0.009677020832896233, + 0.08737152069807053, + -0.0063627646304667, + 0.02495020255446434, + -0.00827046949416399, + 0.036158498376607895, + 0.018523799255490303, + 0.026970716193318367, + 0.0025448270607739687, + -0.01851712539792061, + -0.02713979408144951, + 0.01710989698767662, + -0.014070969074964523, + 0.005639507435262203, + 0.015636267140507698, + 0.03340522199869156, + 0.0034083924256265163, + 0.00609798775985837, + -0.0023854293394833803, + 0.03817259892821312, + 0.0265039149671793, + -0.03378281742334366, + 0.018275201320648193, + -0.002869949210435152, + 0.0706162229180336, + -0.012894315645098686, + -0.03654692694544792, + 0.07480645924806595, + 0.009446234442293644, + -0.05176101624965668, + -0.022747473791241646, + -0.010082365013659, + 0.021354423835873604, + -0.0025125129614025354, + -0.00790825393050909, + 0.02349143661558628, + 0.013069628737866879, + 0.03841767832636833, + -0.05392923206090927, + -0.03162349760532379, + 0.012789967469871044, + 0.02957913652062416, + -0.0033846572041511536, + -0.010015789419412613, + -0.03365414962172508, + -0.015919748693704605, + -0.0215058121830225, + -0.03697995841503143, + 0.01974990963935852, + 0.06853386014699936, + -0.020954424515366554, + -0.016788048669695854, + 0.025413144379854202, + -0.005121329799294472, + -0.06288936734199524, + -0.003175215795636177, + -0.039676401764154434, + 0.03057141788303852, + -0.06751053035259247, + 0.02281653881072998, + 0.002405712381005287, + 0.010717077180743217, + 0.021195504814386368, + 0.03293503075838089, + -0.02231636643409729, + 0.024278441444039345, + -0.026002557948231697, + 0.04017769545316696, + 0.016619188711047173, + 0.02528260461986065, + 0.00024424269213341177, + -0.02859107404947281, + 0.010347620584070683, + 0.00333417858928442, + 0.08947642147541046, + -0.04008733853697777, + -0.004008966963738203, + -0.019501227885484695, + -0.00976472720503807, + -0.012501252815127373, + -0.03546367585659027, + -0.02688361331820488, + -0.015513570979237556, + 0.03955787047743797, + -0.006032334640622139, + 0.019146958366036415, + 0.003682611742988229, + 0.07667941600084305, + -0.015394537709653378, + 0.005277198739349842, + -0.003398498985916376, + 0.03511498123407364, + 0.005389742087572813, + -3.6972120142308995e-05, + 0.04360780864953995, + 0.002484818920493126, + -0.023474056273698807, + -0.005787826608866453, + 0.024854738265275955, + -0.0491223968565464, + -0.048756588250398636, + 0.011267440393567085, + -0.0292188860476017, + 0.005137741565704346, + -0.013964029960334301, + -0.013690558262169361, + 0.015883201733231544, + -0.0382903628051281, + 0.00116617395542562, + 0.05460274592041969, + -0.028331410139799118, + -0.010181169956922531, + 0.015116584487259388, + 0.05994745343923569, + -0.02341916412115097, + -0.024675320833921432, + 0.038390886038541794, + 0.01946067623794079, + -0.012148684822022915, + -0.003993718884885311, + 0.006302240304648876, + -0.0068817464634776115, + -0.029393013566732407, + -0.02486776001751423, + 0.0007506584515795112, + 0.00022515740420203656, + -0.0038899611681699753, + -0.06719648838043213, + -0.04719347879290581, + 0.040567800402641296, + 0.013463607057929039, + -0.05091919004917145, + -0.019137578085064888, + -0.0032762514892965555, + 0.05322280526161194, + -0.038711585104465485, + 0.014118780381977558, + -0.06646451354026794, + -0.05375662073493004, + 0.015583977103233337, + 0.022823575884103775, + -0.03477288410067558, + 0.025215858593583107, + -0.028137393295764923, + 0.05942948907613754, + 0.011765163391828537, + -0.006349587347358465, + -0.024784201756119728, + -0.0757896900177002, + 0.00694664753973484, + 0.09397205710411072, + 0.10194070637226105, + 0.009033317677676678, + 0.05646521970629692, + -0.011321238242089748, + -0.004855834413319826, + 0.041772156953811646, + 0.025266708806157112, + 0.05101973935961723, + -0.04571341350674629, + -2.915623008448165e-05, + -0.03683925420045853, + 0.001816374366171658, + 0.006997823715209961, + -0.04208798706531525, + 0.006011676508933306, + -0.050924982875585556, + 0.061985552310943604, + -0.036277759820222855, + 0.008000400848686695, + 0.04079487547278404, + 0.014847910962998867, + -0.002658840036019683, + -0.005606464110314846, + -0.018418313935399055, + -0.05924546718597412, + 0.007533173076808453, + -0.0005457922234199941, + 0.009909678250551224, + -0.03834555670619011, + 0.06394503265619278, + -0.023761030286550522, + -0.04431193321943283, + -0.0170596931129694, + -0.018259108066558838, + 0.030960647389292717, + 0.019449660554528236, + 0.056388381868600845, + -0.025140175595879555, + -0.013850770890712738, + 0.006202023476362228, + 0.013386261649429798, + -0.027383169159293175, + 0.046112269163131714, + -0.02389342710375786, + -0.025709277018904686, + -0.03382749855518341, + -0.06820280104875565, + 0.07953238487243652, + -0.003978055436164141, + -0.011707326397299767, + 0.03926549106836319, + -0.008365204557776451, + -0.023512594401836395, + -0.02914177067577839, + -0.01736949384212494, + 0.05040377005934715, + 0.01924876496195793, + -0.001982679357752204, + 0.030179543420672417, + 0.046388834714889526, + -0.05512762442231178, + -0.012183181941509247, + 0.04832790046930313, + 0.011925984174013138, + -0.03617842495441437, + -0.03310714289546013, + 0.00023764552315697074, + 0.017921943217515945, + -0.01943211816251278, + 0.005173149984329939, + -0.024882512167096138, + 0.036376241594552994, + -0.03544965013861656, + 0.0034765955060720444, + 0.008343402296304703, + 0.00495455227792263, + 0.01065739244222641, + -0.044060736894607544, + -0.023573508486151695, + 0.04120888561010361, + -0.008737080730497837, + 0.004885809496045113, + -0.012537531554698944, + -0.0743526965379715, + 0.014222434721887112, + 0.005139146465808153, + 0.025704802945256233, + 0.03648873791098595, + 0.023768028244376183, + -0.027784207835793495, + -0.02498561330139637, + 0.004890686832368374, + 0.04625263810157776, + -0.0010197400115430355, + 0.003083231160417199, + -0.006811021827161312, + -0.02750028669834137, + 0.04916868731379509, + -0.0043744416907429695, + -0.009862803854048252, + 0.03627089783549309, + 0.019425995647907257, + -0.054346561431884766, + 0.0076617468148469925, + -0.06806154549121857, + 0.030070660635828972, + 0.022015204653143883, + -0.06208743155002594, + 0.013650299981236458, + -0.00724656181409955, + 0.03193037956953049, + -0.03863248974084854, + -0.0581054724752903, + -0.046962983906269073, + -0.06400194019079208, + 0.013796032406389713, + 0.033968258649110794, + 0.02179505117237568, + -0.008904369547963142, + -0.07354827225208282, + -0.010373552329838276, + -0.0021663312800228596, + -0.02687704935669899, + -0.017516758292913437, + -0.10252494364976883, + 0.00947097409516573, + 0.025886191055178642, + 0.00753713957965374, + 0.04152880236506462, + 0.015557432547211647, + 0.055591922253370285, + -0.02025720849633217, + 0.019719671458005905, + -0.004970015026628971, + -0.02297891490161419, + 0.08431679010391235, + -0.0231639351695776, + -0.017159558832645416, + 0.00765219097957015, + -0.010063947178423405, + -0.008932121098041534, + -0.02895703725516796, + 0.010384468361735344, + 0.052812401205301285, + -0.011681231670081615, + 0.042892277240753174, + -0.03386155143380165, + 0.01118288841098547, + 0.0630963146686554, + 0.025769803673028946, + 0.0017317577730864286, + 0.025130590423941612, + 0.0184306837618351, + -0.028557630255818367, + 0.0027674990706145763, + 0.026753798127174377, + -0.020078836008906364, + -0.016425887122750282, + -0.0066656554117798805, + 0.005280462093651295, + 0.06365109980106354, + 0.009573937393724918, + 0.0010611371835693717, + -0.05033913627266884, + 0.02179395593702793, + 0.008524291217327118, + -0.051751405000686646, + 0.015402700752019882, + -0.021753888577222824, + -0.007179870270192623, + -0.025591427460312843, + 0.048320457339286804, + -0.06948449462652206, + 0.016967523843050003, + -0.002597259124740958, + 0.0036424321588128805, + -0.008499025367200375, + -0.003940356429666281, + 0.09771648049354553, + 0.03849972039461136, + 0.02172565646469593, + -0.010426100343465805, + 0.020330872386693954, + 0.029957769438624382, + 0.03301859647035599, + 0.022163815796375275, + 0.0005462823901325464, + -0.04133555293083191, + 0.0038114849012345076, + -0.0070574115961790085, + -0.0049529047682881355, + 0.011571952141821384, + -0.010923187248408794, + -0.017306147143244743, + 0.01145464088767767, + 0.02968045137822628, + 0.021533066406846046, + -0.020587055012583733, + 0.04368339478969574, + 0.046324457973241806, + -0.034635744988918304, + -0.02716333419084549, + -0.01808563992381096, + 0.010661043226718903, + 0.007925529032945633, + -0.004668455570936203, + 0.017658134922385216, + -0.04602642357349396, + -0.0374884232878685, + -0.001011097221635282, + 0.021724818274378777, + -0.007694327272474766, + 0.017344040796160698, + 0.01561711821705103, + 0.03810539096593857, + -0.033900946378707886, + -0.059098295867443085, + -0.04417398199439049, + 0.04933970421552658, + -0.033883579075336456, + 0.050027430057525635, + -0.015101698227226734, + 0.00784937385469675, + -0.008636771701276302, + -0.0018076985143125057, + 0.008233338594436646, + 0.028247548267245293, + 0.031118402257561684, + -0.018466195091605186, + -0.0015305058332160115, + -0.053332071751356125, + -0.04564140737056732, + -0.005359487142413855, + -0.003825640305876732, + 0.0016302153235301375, + -0.008211915381252766, + 0.015135723166167736, + 0.03701362386345863, + -0.03766074776649475, + 0.07414031773805618, + 0.015248953364789486, + -0.026737460866570473, + -0.006609437055885792, + -0.04408614709973335, + 0.036968350410461426, + -0.018917100504040718, + 0.014431473799049854, + 0.011561386287212372, + 0.0062188757583498955, + 0.03448762744665146, + 0.017916593700647354, + 0.057185810059309006, + 0.030029527842998505, + -0.024041589349508286, + -0.007163988891988993, + 0.020580872893333435, + -0.00010545211989665404, + -0.034323785454034805, + -0.055562619119882584, + 0.003655496519058943, + 0.014712580479681492, + -0.021251901984214783, + 0.00643107108771801, + 0.014265201985836029, + 0.014506854116916656, + -0.021533748134970665, + -0.006616855505853891, + -0.02538461610674858, + 0.00936382170766592, + 0.01320385280996561, + -0.057127952575683594, + 0.00022154128237161785, + -0.05654391273856163, + -0.03723146393895149, + 0.003530284157022834, + -0.005215826909989119, + -0.03337622806429863, + -0.02022113837301731, + 0.028086965903639793, + 0.008622792549431324, + -0.02683282271027565, + 0.02899909019470215, + -0.005893375724554062, + -0.027819665148854256, + 0.014825950376689434, + -0.06333326548337936, + -0.03830302506685257, + -0.01842942088842392, + 0.0545678436756134, + -0.009611671790480614, + -0.057081930339336395, + -0.02847466617822647, + 0.023645000532269478, + 0.028083350509405136, + 0.04549865424633026, + 0.01403591688722372, + -0.034387726336717606, + 0.04405232146382332, + 0.03338092193007469, + -0.01582302153110504, + 0.016320040449500084, + -0.039337608963251114, + -0.032841961830854416, + 0.0009515270357951522, + -0.04292471334338188, + -0.014035060070455074, + -0.019666986539959908, + -0.026332354173064232, + -0.0030732564628124237, + -0.0395430289208889, + 0.01376322004944086, + -0.036633171141147614, + -0.06985063850879669, + 0.031787026673555374, + -0.022609377279877663, + -0.03397539258003235, + -0.03768250718712807, + -0.013538461178541183, + -0.04282034561038017, + -0.06525842845439911, + -0.04629385098814964, + -0.011031560599803925, + -0.0007408042438328266, + 0.0050317831337451935, + -0.039375241845846176, + -0.006038647145032883, + -0.012512032873928547, + -0.0024796819780021906, + -0.009943497367203236, + 0.0024138481821864843, + 0.005839741788804531, + -0.046588800847530365, + -0.060333847999572754, + 0.01394561119377613, + -0.07287753373384476, + 0.010541523806750774, + 0.04136915132403374, + -0.0037720007821917534, + 0.03285377472639084, + -0.009643481113016605, + 0.021256370469927788, + -0.012423842214047909, + 0.018874436616897583, + -0.046853646636009216, + 0.007083444390445948, + -0.04426741972565651, + 0.059200141578912735, + -0.034517813473939896, + 0.028026364743709564, + -0.014540550298988819, + -0.062251072376966476, + -0.04228127747774124, + 0.05449686199426651, + 0.05548446625471115, + 0.04386188089847565, + 0.01666533760726452, + 0.04962386563420296, + 0.0019935467280447483, + -0.042319197207689285, + -0.005573168396949768, + 0.021778341382741928, + 0.03891194239258766, + 0.009915282018482685, + -0.003054305911064148, + -0.07771775126457214, + -0.0073458533734083176, + -0.04421909153461456, + 0.012155665084719658, + -0.037772320210933685, + -0.05905071645975113, + -0.0068259937688708305, + 0.014122683554887772, + -0.0032467518467456102, + -0.04578988999128342, + 0.03202581778168678, + 0.033131834119558334, + 0.041390497237443924, + -0.011076485738158226, + -0.01995362900197506, + -0.008282536640763283, + -0.011750128120183945, + 0.045518603175878525, + 0.0033734797034412622, + 0.011978057213127613, + 0.02924424409866333, + 0.004838820546865463, + -0.03519413620233536, + 0.018334921449422836, + -0.0016396199353039265, + -0.014143085107207298, + 0.023816704750061035, + 0.005705156829208136, + -0.0021141853649169207, + -0.026929251849651337, + 0.04395216330885887, + 0.0020119838882237673, + -0.030010992661118507, + -0.007755154278129339, + 0.0006006091716699302, + 0.025754814967513084, + 0.022451138123869896, + 0.02167809195816517, + 0.02956659160554409, + -0.012856299057602882, + -0.05191357433795929, + 0.03646092489361763, + 0.021821698173880577, + -0.008283274248242378, + 0.0072763036005198956, + -0.006193364504724741, + -0.031240737065672874, + 0.04476315528154373, + 0.036221396178007126, + 0.02105359174311161, + 0.03005021996796131, + 0.0233788900077343, + 0.033946890383958817, + -0.007085856981575489, + 0.04059635102748871, + -0.017694808542728424, + 0.021391611546278, + 0.018233152106404305, + 0.00817286316305399, + -0.011631024070084095, + 0.0024608473759144545, + -0.025494907051324844, + 0.008524980396032333, + 0.03874271735548973, + -0.01690506748855114, + -0.01641671173274517, + -0.006575770676136017, + -0.02536858431994915, + 0.02956525608897209, + 0.024608539417386055, + -0.014552230015397072, + -0.009938509203493595, + 0.04230249300599098, + 0.01745620369911194, + 0.0020509071182459593, + -0.002899812301620841, + 0.026875639334321022, + -0.016230864450335503, + -0.016942966729402542, + 0.009023766964673996, + -0.041269950568675995, + 0.02676217071712017, + 0.020979726687073708, + 0.0035965777933597565, + 0.0009681284427642822, + -0.02046426758170128, + -0.00879104994237423, + 0.030684487894177437, + -0.006108107045292854, + 0.020884472876787186, + -0.01753436028957367, + -0.0025359070859849453, + 0.038277871906757355, + -0.0026964840944856405, + 0.0023293669801205397, + -0.007434921804815531, + 0.02968994900584221, + -0.038850218057632446, + 0.0241706520318985, + 0.021500833332538605, + -0.017900001257658005, + 0.06188049167394638, + 0.008635295554995537, + -0.04225547984242439, + -0.027977393940091133, + 0.05479428917169571, + -0.014076540246605873, + 0.030241649597883224, + -0.015122347511351109, + 0.04098177328705788, + 0.052364978939294815, + -0.05436147749423981, + -0.0015697735361754894, + -0.028058864176273346, + -0.009248119778931141, + 0.00570787163451314, + -0.003676631487905979, + 0.01880180835723877, + -0.0447828508913517, + 0.02735450491309166, + -0.05311937630176544, + 0.01888957805931568, + 0.022576283663511276, + 0.06320549547672272, + -0.044242504984140396, + 0.0011186306364834309, + -0.02217996120452881, + 0.02536100521683693, + 0.012294764630496502, + 0.022170476615428925, + 0.0640425756573677, + -0.026056112721562386, + 0.07695995271205902, + 0.040104564279317856, + -0.002494879299774766, + 0.01280179712921381, + -0.02872227318584919, + -0.003423289628699422, + -0.005202004220336676, + 0.02358325757086277, + -0.006931945215910673, + 0.011136471293866634, + 0.001981439534574747, + 0.01951204240322113, + 0.04117792472243309, + -0.039683692157268524, + -0.0033522688318043947, + -0.007842077873647213, + -0.025533942505717278, + -0.02218320034444332, + -0.04246557503938675, + -0.00010460147314006463, + 0.009318702854216099, + 0.024250740185379982, + -0.04468551650643349, + 0.004368398804217577, + -0.05230150371789932, + 0.04126289486885071, + 0.04330452159047127, + 0.013985980302095413, + 0.009589831344783306, + -0.015289419330656528, + 0.032590173184871674, + -0.03409452363848686, + 0.0014885964337736368, + -0.03038998879492283, + 0.017569273710250854, + 0.0023405051324516535, + 0.021542321890592575, + 0.020553134381771088, + -0.023796938359737396, + -0.006289065349847078, + -0.05580776184797287, + 0.016905248165130615, + 0.0034600174985826015, + -0.0009999246103689075, + 0.01820015162229538, + -0.010398589074611664, + -0.0006298194057308137, + -0.04719226434826851, + 0.01966153271496296, + -0.007790560368448496, + 0.015474486164748669, + 0.02200797200202942, + -0.017578601837158203, + 0.04747005179524422, + -0.009521613828837872, + -6.710793968522921e-05, + 0.0037623667158186436, + -0.0022950393613427877, + 0.026826510205864906, + -0.03420643508434296, + 0.007132360246032476, + -0.010437091812491417, + 0.020612062886357307, + 0.01404197234660387, + -0.05170079693198204, + -0.043801888823509216, + 0.04719917103648186, + 0.030919773504137993, + -0.0052309404127299786, + -0.0062058973126113415, + 0.0037264209240674973, + -0.050922464579343796, + -0.015128858387470245, + 0.02127966284751892, + 0.025689933449029922, + -0.0021327566355466843, + -0.02670668438076973, + 0.002076721051707864, + -0.03341647610068321, + -0.025649426504969597, + -0.01882166601717472, + -0.003703535534441471, + 0.0096523342654109, + 0.02806403674185276, + -0.04440317675471306, + 0.027298923581838608, + -0.0029432587325572968, + 0.04046082869172096, + 0.008735967800021172, + 0.06463637948036194, + 0.021824028342962265, + -0.03298364579677582, + -0.015275075100362301, + 0.007213843520730734, + 0.07848367094993591, + -0.015641076490283012, + 0.015273025259375572, + -0.023480670526623726, + 0.014384962618350983, + -0.051611244678497314, + -0.005094502586871386, + 0.020900165662169456, + -0.003915044944733381, + 0.061193812638521194, + 0.03684992715716362, + 0.0319945365190506, + -0.07259994745254517, + 0.03899180144071579, + 0.030598456040024757, + -0.06562966108322144, + -0.005911005195230246, + -0.026574108749628067, + 0.040748391300439835, + -0.02039923146367073, + -0.0026561333797872066, + 0.007287194486707449, + -0.008761616423726082, + 0.015152943320572376, + 0.022745229303836823, + -0.04902457073330879, + 0.018466394394636154, + 0.04088803380727768, + 0.03417535498738289, + 0.007359195034950972, + -0.036398231983184814, + 0.02669689990580082, + -0.06010361760854721, + 0.008723472245037556, + 0.010897166095674038, + 0.004771279636770487, + 0.015987534075975418, + -0.011488357558846474, + 0.053765248507261276, + 0.04411039128899574, + -0.0400797463953495, + 0.019964033737778664, + -0.01023301761597395, + 0.011107761412858963, + 0.00030579292797483504, + 0.03626114875078201, + 0.017232835292816162, + -0.0380033478140831, + 0.040100742131471634, + -0.059297822415828705, + 0.021382838487625122, + 0.01690267026424408, + -0.014314197935163975, + 0.04426994174718857, + -0.03918115049600601, + 0.042425256222486496, + 0.020065946504473686, + 0.03528449684381485, + -0.04154885932803154, + -0.0023667907807976007 + ], + "start_index": 27648, + "end_index": 27702, + "token_count": 10, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "90cd92b7-8f6e-561f-bf30-64ef5cc5432c", + "_source": { + "text": "\n\nTokens:\n\n\n\nPLUS\nMINUS\nMULT\nDIV\nMOD\nPOWER", + "embedding": [ + 0.004850702825933695, + -0.0019337318371981382, + -0.007943004369735718, + -0.11310689896345139, + 0.0029553116764873266, + 0.074981190264225, + 0.009775269776582718, + -0.015267716720700264, + -0.048177242279052734, + 0.012568197213113308, + 0.008799578994512558, + -0.03290025144815445, + 0.09612961858510971, + -0.007602016907185316, + -0.044254351407289505, + 0.04385421797633171, + 0.017609423026442528, + 0.03488392382860184, + 0.009989568963646889, + -0.06480205804109573, + 0.05094381421804428, + -0.02879299223423004, + -0.04095665365457535, + 0.07757512480020523, + 0.0052376920357346535, + 0.052947841584682465, + -0.03796935826539993, + 0.03944449871778488, + -0.005745895206928253, + -0.020606955513358116, + -0.012808997184038162, + -0.03923950344324112, + -0.04435630515217781, + 0.0024391699116677046, + -0.009093140251934528, + -0.012132246047258377, + 0.0004073698364663869, + -0.021195711567997932, + 0.011090748012065887, + 0.010030386038124561, + 0.06690604984760284, + 0.0008322536596097052, + -0.026642095297574997, + 0.03130901977419853, + -0.03609283268451691, + -0.013914856128394604, + 0.05693498253822327, + 0.024933472275733948, + 0.024713506922125816, + -0.0038642517756670713, + -0.023346852511167526, + -0.043881580233573914, + 0.04903540760278702, + 0.011762267909944057, + -0.011607710272073746, + -0.006004708353430033, + 0.004628839436918497, + 0.04392615333199501, + -0.019583621993660927, + 0.04449956491589546, + -0.04702728986740112, + 0.030843043699860573, + -0.12064068764448166, + 0.02705519273877144, + 0.010645502246916294, + 0.023843776434659958, + 0.0043465811759233475, + 0.016802940517663956, + -0.07575418800115585, + -0.03341852128505707, + -0.025918694213032722, + 0.001772846095263958, + 0.005372580140829086, + 0.03407977148890495, + 0.042298171669244766, + 0.0035144463181495667, + 0.008310330100357533, + -0.05505000799894333, + -0.001610211213119328, + 0.023684343323111534, + 0.021265774965286255, + 0.04364082217216492, + 0.02787753753364086, + 0.04320823401212692, + 0.051523175090551376, + 0.05275755375623703, + -0.06861615926027298, + -0.014447671361267567, + 0.06239309534430504, + 0.029152872040867805, + 0.0010814544511958957, + 0.023271992802619934, + -0.04076116159558296, + -0.012326046824455261, + -0.0037347846664488316, + -0.00867182482033968, + -0.030906053259968758, + 0.018509361892938614, + -0.03609811142086983, + -0.020993903279304504, + 0.00942125916481018, + -0.0122256800532341, + -0.04381498321890831, + 0.006029287353157997, + 0.02409164234995842, + 0.06243174150586128, + -0.033066943287849426, + 0.034858204424381256, + -0.005727194249629974, + 0.009281703270971775, + -0.02636369690299034, + -0.02082703448832035, + 0.02152826264500618, + 0.023636795580387115, + -0.0017354682786390185, + -0.012859586626291275, + -0.04134465754032135, + -0.03762707859277725, + -0.005495239514857531, + 0.002197966445237398, + 0.009999279864132404, + -0.06523506343364716, + 0.012422566302120686, + 0.008883967064321041, + 0.04710114747285843, + 0.00973498448729515, + -0.020761998370289803, + -0.0026771409902721643, + 0.04492490738630295, + -0.021815834566950798, + -0.019401848316192627, + -0.013157990761101246, + -0.008109886199235916, + -0.0005060508847236633, + -0.010442273691296577, + 0.0018039050046354532, + -0.017067821696400642, + -0.026555035263299942, + 0.0481383241713047, + -0.007661418989300728, + -0.06962084770202637, + 0.029160048812627792, + 1.4979564184613992e-05, + -0.014939362183213234, + 0.0021340486127883196, + 0.022609876468777657, + 0.013582234270870686, + -0.02505750209093094, + 0.026813073083758354, + 0.07301168888807297, + 0.022620566189289093, + -0.02479187585413456, + 0.006388880778104067, + -0.00678630918264389, + -0.047675929963588715, + 0.009032761678099632, + 0.004377793055027723, + 0.004063870757818222, + 0.0016661491245031357, + 0.02142507955431938, + -0.014781136065721512, + 0.0024990076199173927, + -0.0088516715914011, + -0.012431897222995758, + 0.005824711173772812, + 0.02023364044725895, + -0.07820921391248703, + -0.04356148838996887, + 0.020175673067569733, + 0.03751341998577118, + -0.011415796354413033, + -0.005240235477685928, + 0.0002716871676966548, + 0.01571131870150566, + -0.027170764282345772, + -0.005160276312381029, + -0.04449685662984848, + -0.03383543714880943, + -0.02728313021361828, + 0.024223437532782555, + 0.00371764088049531, + -0.012836990877985954, + -0.005568359047174454, + -0.00839809887111187, + 0.017253819853067398, + 0.052315060049295425, + 0.007741950452327728, + -0.012916816398501396, + 0.03218328580260277, + 0.01850791648030281, + 0.02399493381381035, + -0.005255424417555332, + -0.049840882420539856, + -0.012396435253322124, + -0.006754918955266476, + -0.011773054488003254, + -0.004102987237274647, + -0.05554547905921936, + -0.016048122197389603, + 0.007980161346495152, + 0.011112536303699017, + 0.010020272806286812, + 0.009988752193748951, + 0.017577435821294785, + -0.0315922312438488, + 0.01739179529249668, + 0.01203456986695528, + -0.013361680321395397, + -0.012744703330099583, + -0.00923718698322773, + -0.04073973372578621, + 0.011320601217448711, + -0.005593426525592804, + -0.018571637570858, + -0.005731164012104273, + 0.0001148327937698923, + -0.011019367724657059, + -0.006259341258555651, + 0.005817989818751812, + -0.015953317284584045, + 0.038752879947423935, + 0.015289111994206905, + -0.014136197045445442, + 0.0023303600028157234, + 0.07362492382526398, + -0.03645310550928116, + -0.005627819336950779, + -0.008505289442837238, + -0.008382272906601429, + 0.037240754812955856, + 0.014329054392874241, + -0.008169393986463547, + -0.01694420352578163, + 0.0074974847957491875, + 0.012683816254138947, + -0.0007411223486997187, + 0.0015463439049199224, + 0.017208611592650414, + 0.046108223497867584, + -0.016323702409863472, + -0.022097934037446976, + -0.0021940856240689754, + 0.03156160190701485, + 0.024247076362371445, + -0.0069189793430268764, + 0.03852713480591774, + 0.0031468402594327927, + 0.029592178761959076, + -0.01086702011525631, + -0.04249786213040352, + 0.08120477199554443, + -0.02623625285923481, + -0.030399225652217865, + 0.01020850520581007, + -0.007531896699219942, + 0.017540493980050087, + 0.005634271074086428, + -0.00827750563621521, + -0.0023081146646291018, + 0.005094869062304497, + 0.02133321389555931, + -0.03781312704086304, + -0.07560999691486359, + -0.009584820829331875, + -0.026568155735731125, + -0.008011526428163052, + -0.01607414521276951, + -0.031575579196214676, + -0.01832621544599533, + -0.02741202525794506, + -0.011270054616034031, + 0.02004513517022133, + 0.019582781940698624, + 0.02190544269979, + 0.0018879588460549712, + 0.04612618684768677, + 0.016657624393701553, + -0.13596543669700623, + 0.036232735961675644, + 0.02048005349934101, + 0.009810211136937141, + -0.017474476248025894, + -0.01155153475701809, + -0.0037261832039803267, + 0.005580347962677479, + 0.03382745385169983, + 0.04441280663013458, + -0.037006501108407974, + 0.023828089237213135, + 0.003574775531888008, + 0.03978608176112175, + 0.013292817398905754, + -0.0049668909050524235, + -0.011618352495133877, + -0.0497436560690403, + 0.04040883854031563, + 0.0036020020488649607, + 0.05651920661330223, + -0.007020734250545502, + -0.029790109023451805, + 0.025088533759117126, + -0.03210655227303505, + 0.012938936240971088, + -0.04214644432067871, + 0.00010009809193434194, + 0.006719373632222414, + 0.03148265182971954, + -0.011583933606743813, + 0.018985113129019737, + -0.018232334405183792, + 0.05388832464814186, + 0.010432322509586811, + 0.006286886520683765, + -0.02626447007060051, + 0.009022869169712067, + 0.0002514500811230391, + -0.04288026690483093, + 0.061424896121025085, + 0.009555359371006489, + 0.0320264957845211, + 0.007044728845357895, + -0.013517159037292004, + -0.010303417220711708, + -0.04866163805127144, + 0.03561605513095856, + 0.0032071582973003387, + 0.028260288760066032, + 0.006970108021050692, + -0.007472839206457138, + 0.02622366137802601, + -0.052411872893571854, + 0.01727730967104435, + 0.07539595663547516, + -0.007676115725189447, + -0.0014156678225845098, + 0.03027242235839367, + 0.016521070152521133, + -0.01086765993386507, + -0.0672082006931305, + 0.013206256553530693, + -0.002673378447070718, + 0.003976259380578995, + -0.01695319451391697, + 0.03059758059680462, + -0.033727649599313736, + -0.05725240334868431, + 0.017422206699848175, + 0.012871709652245045, + -0.02871873788535595, + 0.010734583251178265, + -0.04957187920808792, + -0.018295899033546448, + 0.026428045704960823, + 0.01869538426399231, + -0.03116949088871479, + -0.07680697739124298, + -0.030114488676190376, + 0.06292106956243515, + -0.016184819862246513, + 0.005316384136676788, + -0.04568461701273918, + -0.053282417356967926, + -0.026420652866363525, + 0.04541981965303421, + -0.00297609344124794, + -0.010432448238134384, + -0.02714422717690468, + 0.06344791501760483, + 0.0070590185932815075, + 0.014784364029765129, + -0.034618932753801346, + -0.0008843091782182455, + 0.023580579087138176, + 0.09005774557590485, + 0.11054268479347229, + 0.06177893653512001, + 0.04373287782073021, + 0.01363891176879406, + 0.007646159268915653, + 0.040436163544654846, + 0.0028710071928799152, + 0.00887435395270586, + -0.03855166584253311, + -0.016971038654446602, + 0.002423554193228483, + 0.006891708821058273, + -0.005308355670422316, + -0.05138299986720085, + -0.034678105264902115, + -0.025066103786230087, + 0.015188539400696754, + -0.014634945429861546, + 0.02972426451742649, + 0.017313793301582336, + 0.018576230853796005, + -0.027320750057697296, + -0.021923881024122238, + -0.04428282752633095, + -0.030353764072060585, + 0.017698919400572777, + 0.01243507955223322, + -0.011231846176087856, + -0.04837850481271744, + 0.03194459155201912, + 0.015403354540467262, + -0.02281278744339943, + 0.0033711877185851336, + -0.02502661943435669, + -0.02159554325044155, + -0.038210753351449966, + 0.06739791482686996, + 0.0005653799162246287, + 0.005509276874363422, + 0.021501051262021065, + 0.02941153384745121, + -0.03998010605573654, + 0.05445754528045654, + -0.0468391589820385, + 0.00674202386289835, + 0.0022288209293037653, + -0.013474753126502037, + 0.06658539921045303, + -0.018301567062735558, + -0.01802005246281624, + 0.02041999064385891, + -0.003616020316258073, + -0.009231830015778542, + -0.016925131902098656, + -0.024907371029257774, + 0.01269145030528307, + -0.007229127921164036, + -0.017085829749703407, + -0.036603715270757675, + 0.046954065561294556, + -0.05171861872076988, + 0.028637239709496498, + 0.09683200716972351, + 0.013179192319512367, + 0.0020926950965076685, + -0.014272036962211132, + -0.05061754584312439, + 0.002336414996534586, + -0.029195604845881462, + -0.004197087604552507, + -0.054700110107660294, + -0.010322269052267075, + -0.033098071813583374, + 0.023196309804916382, + 0.02557108923792839, + -0.010405540466308594, + -0.0029585573356598616, + -0.011868937872350216, + -0.03441721573472023, + 0.013407858088612556, + -0.01766052283346653, + -0.040799010545015335, + -0.0175706185400486, + -0.060995426028966904, + -0.016540201380848885, + 0.04807945340871811, + -0.00551210530102253, + -0.01889604702591896, + 0.004573436453938484, + -0.05555325746536255, + -0.030930295586586, + 0.03827425092458725, + 0.05592182278633118, + -0.008989650756120682, + -0.012648836709558964, + 0.013938166201114655, + -0.025671567767858505, + 0.01733972504734993, + -0.0027116264682263136, + -0.029298465698957443, + 0.003322164062410593, + 0.03572963923215866, + -0.029838789254426956, + 0.015349991619586945, + -0.08221961557865143, + 0.01144841406494379, + -0.0027264708187431097, + -0.07312486320734024, + 0.07011936604976654, + -0.06841761618852615, + 0.027701573446393013, + -0.0117421830072999, + -0.02201126329600811, + -0.04370966553688049, + -0.06850910931825638, + 0.048073910176754, + 0.00014822410594206303, + 0.013405350036919117, + -0.008013260550796986, + -0.059123534709215164, + -0.0425872802734375, + 0.006845472846180201, + -0.0027693603187799454, + -0.011395907029509544, + -0.1317826807498932, + 0.007793612312525511, + 0.03088301420211792, + -0.020911911502480507, + 0.022844895720481873, + -0.004982036538422108, + 0.024520371109247208, + -0.0012595808366313577, + 0.03734486177563667, + -0.01217398140579462, + 0.011729070916771889, + 0.06808660179376602, + -0.056111909449100494, + -0.02337362989783287, + -0.04163031280040741, + 0.009108557365834713, + 0.007796281948685646, + -0.027743151411414146, + 0.029015712440013885, + 0.059479642659425735, + -0.0010447311215102673, + 0.01978853903710842, + 0.005955068860203028, + 0.0013096455950289965, + 0.05682326853275299, + 0.019144950434565544, + 0.005430775228887796, + 0.08781637251377106, + 0.006263109389692545, + -0.008755767717957497, + -0.003203751053661108, + -0.01623961515724659, + 0.031168166548013687, + -0.026817958801984787, + -0.004360038321465254, + 0.0307853352278471, + 0.047921884804964066, + 0.0113694341853261, + -0.014128848910331726, + -0.01961912401020527, + 0.04763447120785713, + -0.015921473503112793, + -0.05886092409491539, + -0.029108230024576187, + -0.009484127163887024, + -0.022678563371300697, + 0.001512943534180522, + 0.013652688823640347, + -0.07966161519289017, + 0.022643301635980606, + 0.04489200934767723, + 0.03851643577218056, + 0.046850983053445816, + 0.02428760752081871, + 0.05791470408439636, + 5.409863661043346e-05, + 0.004804640077054501, + 0.008173193782567978, + 0.05703941732645035, + 0.01575602777302265, + 0.021417666226625443, + 0.0035239842254668474, + -0.02601386047899723, + -0.03966551646590233, + -0.024652423337101936, + -0.035925619304180145, + 0.003925495781004429, + 0.01955842599272728, + -0.0287889763712883, + 0.008287840522825718, + 0.010088167153298855, + 7.101729715941474e-05, + 0.034207623451948166, + -0.01746140606701374, + 0.014281314797699451, + 0.022031500935554504, + 0.02282572165131569, + -0.0019806562922894955, + -0.028206810355186462, + 0.031711675226688385, + -0.016010385006666183, + -0.04054395481944084, + 0.06099006533622742, + -0.053512465208768845, + 0.01362997479736805, + 0.005609821993857622, + 0.06228725239634514, + -0.03072168678045273, + -0.029003648087382317, + 0.028423890471458435, + 0.004057408310472965, + 0.00225484324619174, + -0.02282097563147545, + -0.028333745896816254, + 0.0421207994222641, + -0.009853729978203773, + 0.04727454110980034, + -0.03590647876262665, + -0.03255922347307205, + -0.030612697824835777, + -0.01235741563141346, + -0.02122553437948227, + 0.005085288546979427, + 0.045615196228027344, + 0.018281247466802597, + -0.01046526338905096, + -0.061069026589393616, + -0.01903720572590828, + 0.03184804320335388, + 0.0025818077847361565, + -0.005486563313752413, + -0.018804749473929405, + -0.020336631685495377, + 0.009292623959481716, + -0.03470039367675781, + 0.037578195333480835, + 0.015165473334491253, + -0.0498785637319088, + -0.021405551582574844, + -0.004277920816093683, + 0.008707202039659023, + -0.061299677938222885, + -0.0015925857005640864, + -0.011487784795463085, + 0.023918572813272476, + 0.03144383430480957, + 0.004822002723813057, + 0.027529289945960045, + 0.012690631672739983, + -0.07465801388025284, + -0.000943591061513871, + 0.0076519097201526165, + -0.01769515872001648, + -0.03709348663687706, + -0.10630475729703903, + 0.022299375385046005, + 0.037073299288749695, + -0.03484148904681206, + -0.00938187725841999, + 0.04086538031697273, + 0.0075762029737234116, + -0.012834031134843826, + -0.007880755700170994, + -0.02592991665005684, + 0.027118004858493805, + 0.005297657568007708, + -0.006691234186291695, + 0.015840565785765648, + -0.05585602670907974, + 0.01692640595138073, + -0.014615833759307861, + 0.025613820180296898, + 0.010543434880673885, + -0.026218490675091743, + 0.001812002738006413, + 0.02460666000843048, + 0.0254779364913702, + 0.022421589121222496, + -0.021842602640390396, + 0.017851436510682106, + 0.022555669769644737, + -0.060131024569272995, + -0.025574306026101112, + -0.0943889319896698, + 0.0414360836148262, + -0.024251488968729973, + -0.08295870572328568, + -0.04028142988681793, + 0.033535707741975784, + 0.061366043984889984, + 0.02623763121664524, + -0.02907266840338707, + -0.026644207537174225, + -0.0012456737458705902, + 0.023713361471891403, + 0.014364943839609623, + -0.019935544580221176, + -0.028631167486310005, + -0.003778894431889057, + -0.013553820550441742, + -0.03932426869869232, + 0.0017758856993168592, + -0.005599345546215773, + -0.035059817135334015, + 0.02350170724093914, + -0.028051216155290604, + 0.024490445852279663, + -0.020522428676486015, + -0.04932665079832077, + -0.012397021986544132, + 0.019351603463292122, + 0.02038830704987049, + -0.059425801038742065, + 0.013431296683847904, + -0.017489399760961533, + -0.049698106944561005, + 0.011811553500592709, + 0.009754063561558723, + 0.014263777993619442, + -0.017941709607839584, + -0.05848585441708565, + 0.009020215831696987, + 0.00795571506023407, + -0.007669622544199228, + -0.008787503466010094, + 0.0033057762775570154, + 0.009263711050152779, + -0.0008324859663844109, + -0.021165665239095688, + 0.009058156982064247, + -0.03978577256202698, + -0.005033846013247967, + 0.008790064603090286, + -0.0052070352248847485, + -0.01788654737174511, + 0.014087062329053879, + 0.03765449300408363, + -0.01683863438665867, + -0.01730278879404068, + -0.03552955761551857, + -0.0015026199398562312, + -0.0014075415674597025, + 0.006178147625178099, + -0.007580239325761795, + 0.028509899973869324, + -0.004117085598409176, + -0.025867976248264313, + -0.02871091105043888, + -0.01063862256705761, + 0.008899351581931114, + 0.005258874036371708, + -0.03503181040287018, + 0.014518825337290764, + 0.0383513905107975, + 0.013366539031267166, + -0.0005428909207694232, + 0.021726153790950775, + 0.017428826540708542, + -0.014997610822319984, + -0.0012817509705200791, + -0.028660157695412636, + 1.102103396988241e-05, + -0.00848973635584116, + 0.0022940728813409805, + -0.06646547466516495, + -0.04870036989450455, + 0.0009408676414750516, + 0.055706385523080826, + -0.016507703810930252, + -0.021766193211078644, + 0.020056094974279404, + 0.046509359031915665, + 0.036861270666122437, + -0.012721022590994835, + -0.023173779249191284, + 0.018202053382992744, + -0.037116553634405136, + 0.03765144199132919, + -0.0023846696130931377, + -0.001396075589582324, + 0.03644440323114395, + -0.006693446077406406, + -0.019642749801278114, + 0.017005760222673416, + -0.006715372204780579, + -0.004380182828754187, + 0.034513115882873535, + -0.0038876747712492943, + 0.05119962617754936, + -0.024748269468545914, + 0.003914522472769022, + -0.01844125986099243, + -0.026327071711421013, + -0.04310004040598869, + 0.02265039272606373, + 0.05845801532268524, + 0.019766950979828835, + 0.006768474821001291, + 0.05807717517018318, + -0.03800133988261223, + -0.045073430985212326, + 0.022291917353868484, + 0.0234110988676548, + -0.011150735430419445, + 0.06798357516527176, + -0.011907574720680714, + -0.04680974781513214, + 0.036482758820056915, + -0.007274776231497526, + 0.015618592500686646, + 0.03920522704720497, + 0.04752715677022934, + 0.036013104021549225, + 0.05756925791501999, + 0.03811468929052353, + 0.024061154574155807, + -0.0076777259819209576, + 0.0014980140840634704, + -0.05409679189324379, + 0.001278952811844647, + 0.016840897500514984, + -0.022703388705849648, + 0.023034848272800446, + 0.009759041480720043, + -0.004370357841253281, + -0.03919072449207306, + 0.03554026037454605, + 0.002164761768653989, + -0.014269698411226273, + 0.007141404785215855, + -0.007165459915995598, + 0.004172346089035273, + 0.021844545379281044, + 0.0502316951751709, + 0.036123842000961304, + 0.02150210551917553, + 0.031400930136442184, + 0.04296088218688965, + -0.023219112306833267, + -0.002725331811234355, + -0.012747121974825859, + -0.0010262340074405074, + 0.013523034751415253, + 0.014303385280072689, + -0.03135606646537781, + -0.02954281121492386, + -0.019049614667892456, + 0.024280698969960213, + 0.027387088164687157, + 0.03842245787382126, + 0.0363612025976181, + 0.005257128272205591, + -0.0020010063890367746, + -0.05605446174740791, + 0.006317864637821913, + 0.002014939906075597, + 0.036121830344200134, + 0.019025525078177452, + -0.01905888132750988, + -0.011442964896559715, + -0.009354567155241966, + 0.01657600700855255, + -0.03144485875964165, + -0.019190175458788872, + -0.029647670686244965, + 0.01975010149180889, + -0.01929941028356552, + 0.03419101983308792, + -0.012202235870063305, + 0.025858726352453232, + -0.013593122363090515, + -0.0711408406496048, + -0.033826302736997604, + -0.03714519739151001, + -0.026258688420057297, + 0.009045298211276531, + -0.003235242562368512, + 0.02545526996254921, + -0.015089287422597408, + 0.013778195716440678, + -0.027914244681596756, + -0.008974541909992695, + 0.010188296437263489, + 0.017348352819681168, + -0.02194945327937603, + 0.017325500026345253, + -0.02976335398852825, + 0.05628284066915512, + -0.016075821593403816, + 0.03865664452314377, + 0.023755908012390137, + -0.04743374139070511, + 0.058792613446712494, + 0.0037065569777041674, + 0.00631995452567935, + 0.019309071823954582, + -0.01699213683605194, + -0.04483962431550026, + -0.03826383873820305, + 0.02076178975403309, + 0.02278158999979496, + 0.039558183401823044, + -0.005544548854231834, + 0.0460238978266716, + 0.008419270627200603, + 0.021250328049063683, + 0.033007290214300156, + -0.030363256111741066, + -0.009082676842808723, + -0.03581136092543602, + -0.025615589693188667, + -0.01468842662870884, + 0.009242373518645763, + 0.01457677036523819, + -0.025504624471068382, + -0.0068060485646128654, + -0.020650800317525864, + 0.02524895779788494, + 0.011523094959557056, + -0.012784627266228199, + 0.017873713746666908, + -0.010345034301280975, + 0.02950850874185562, + 0.0014684965135529637, + -0.03720996528863907, + -0.038478899747133255, + -0.018292272463440895, + 0.02280459925532341, + 0.029664602130651474, + 0.018423397094011307, + -0.006706210318952799, + -0.000939339806791395, + -0.04651797562837601, + 0.03729688376188278, + -0.021809162572026253, + 0.0037666100542992353, + -0.05149272829294205, + -0.013919743709266186, + -0.030398502945899963, + -0.013635638169944286, + 6.83883581586997e-06, + 0.0051186527125537395, + -0.05146768316626549, + 0.019459037110209465, + 0.013069935142993927, + 0.03925701975822449, + -0.04585360363125801, + 0.0011332278372719884, + -0.023067397996783257, + -0.025968868285417557, + 0.005879875272512436, + -0.011336340568959713, + -0.00040454851114191115, + 0.007224831730127335, + 0.010691151022911072, + 0.022661928087472916, + -0.014980442821979523, + -0.018636297434568405, + 0.03748859465122223, + 0.014090056531131268, + 0.01140254084020853, + 0.008415484800934792, + 0.0524640828371048, + -0.06598470360040665, + -0.03785647451877594, + 0.025456374511122704, + 0.001473038224503398, + 0.0032667722553014755, + 0.008152754977345467, + -0.021440133452415466, + 0.02610882930457592, + 0.0035376024898141623, + 0.014916088432073593, + -0.025033794343471527, + -0.016296707093715668, + 0.0027372154872864485, + -0.028735319152474403, + -0.03448448330163956, + 0.0022398517467081547, + -0.0084678390994668, + 0.026770705357193947, + 0.02145564556121826, + -0.026557134464383125, + -0.01877911388874054, + 0.01643333025276661, + -0.017053676769137383, + 0.08718352019786835, + -0.03137028217315674, + -0.019950270652770996, + 0.03790579363703728, + 0.05335425212979317, + 0.003930306993424892, + 0.0061753857880830765, + 0.0373576357960701, + 0.01036243885755539, + 0.03242642059922218, + 0.011968775652348995, + 0.06040864810347557, + -0.0611889511346817, + 0.04607510566711426, + 0.014639104716479778, + -0.03755474090576172, + -0.019107626751065254, + -0.026057016104459763, + 0.0011821365915238857, + -0.003599670948460698, + 0.009628786705434322, + 0.03432663902640343, + -0.03150215744972229, + 0.041417401283979416, + 0.01152131985872984, + -0.058735501021146774, + -0.016749998554587364, + -0.005130372010171413, + 0.013217593543231487, + -0.005249385256320238, + 0.040768496692180634, + 0.019429074600338936, + -0.0236051008105278, + 0.010226515121757984, + 0.0219486802816391, + 0.021033816039562225, + 0.043857768177986145, + -0.007604293525218964, + -0.02955366112291813, + 0.019272232428193092, + -0.023397117853164673, + 0.025036588311195374, + -0.005653377156704664, + 0.00518046785145998, + 0.0031757524702697992, + 0.05555369704961777, + -0.0352419950067997, + -0.005726296920329332, + 0.046943940222263336, + -0.012667187489569187, + 0.02679751254618168, + -0.0276261568069458, + -0.007300523109734058, + 0.004017692990601063, + -0.02277863584458828, + 0.03783869743347168, + 0.011237120255827904, + 0.007192589342594147, + 0.01393453311175108, + -0.008062949404120445 + ], + "start_index": 27702, + "end_index": 27750, + "token_count": 3, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "05ec4577-b959-5b74-904d-20267ad6f6ad", + "_source": { + "text": "\n\nRegla importante:\n\n`**` debe evaluarse antes que `*` por la regla de **máxima coincidencia**.\n\n---\n\n## Operadores de comparación\n\n\n\n==\n!=\n<\n>\n<=\n>=", + "embedding": [ + -0.025878209620714188, + -0.027624189853668213, + -0.007956228218972683, + -0.06454764306545258, + 0.020524252206087112, + 0.06705935299396515, + -0.020566454157233238, + 0.02020297572016716, + 0.04502849280834198, + -0.05500940978527069, + 0.036040790379047394, + -0.06323419511318207, + 0.07921050488948822, + -0.004749819170683622, + -0.04924513027071953, + 0.05128944665193558, + -0.01810063049197197, + -0.07121370732784271, + -0.015371221117675304, + -0.0276758074760437, + -0.02462920732796192, + -0.004425585735589266, + 0.002879967913031578, + 0.06283022463321686, + 0.022390754893422127, + 0.02099093608558178, + -0.02456364408135414, + 0.03229386359453201, + -0.02581380121409893, + -0.05303610488772392, + -0.05857554450631142, + 0.019175520166754723, + -0.08487334847450256, + -0.0012880141148343682, + 0.0015439875423908234, + -0.009540249593555927, + -0.007513131480664015, + 0.004670855589210987, + 0.002509621437638998, + 0.008485514670610428, + 0.002029895316809416, + 0.022790158167481422, + -0.0150449238717556, + 0.04418386146426201, + -0.02025504596531391, + -0.03353056684136391, + 0.07282491773366928, + 0.02639499120414257, + -0.0004202427517157048, + 0.001894485205411911, + -0.0172947458922863, + -0.00010916354221990332, + 0.007996698841452599, + 0.0234585739672184, + -0.01848939061164856, + -0.041115060448646545, + 0.026726234704256058, + -0.04716816544532776, + -0.006342453416436911, + 0.013089572079479694, + -0.03738648071885109, + 0.0027269620914012194, + -0.007523737847805023, + -0.029819360002875328, + 0.013610268011689186, + 0.03796418011188507, + -0.002686629770323634, + -0.03273724764585495, + -0.04790680855512619, + -0.008818766102194786, + -0.010169233195483685, + 0.04053696617484093, + 0.03684409707784653, + 0.004039132501929998, + -0.01802842691540718, + 0.08568775653839111, + -0.0069341096095740795, + -0.04454299807548523, + 0.019633300602436066, + 0.019709158688783646, + -0.009103113785386086, + 0.00895544420927763, + 0.026953989639878273, + 0.0046996441669762135, + 0.038918182253837585, + 0.024016981944441795, + 0.0025834692642092705, + 0.0214455034583807, + 0.018665403127670288, + -0.01682242937386036, + 0.02619815617799759, + 0.04369678720831871, + 0.001285378821194172, + -0.015574031509459019, + 0.02381402626633644, + -0.0033408200833946466, + -0.04509274661540985, + 0.0052852206863462925, + 0.0038940352387726307, + 0.006352019030600786, + 0.010586093179881573, + -0.013148725964128971, + 0.03886749595403671, + 0.02237306348979473, + 0.012972150929272175, + 0.049358244985342026, + -0.02942519821226597, + -0.01709524169564247, + -0.024710480123758316, + -0.010428182780742645, + -0.010134048759937286, + 0.011721343733370304, + 0.012826095335185528, + 0.05761215463280678, + 0.01720665954053402, + 0.003029020968824625, + -0.028252046555280685, + -0.0026435113977640867, + 0.004326610825955868, + -0.0030731013976037502, + -0.0070266094990074635, + -0.0005761148640885949, + -0.007366573438048363, + -0.009484472684562206, + 0.05961817875504494, + 0.00932244025170803, + -0.06313376873731613, + -0.0019690741319209337, + 0.021213985979557037, + 0.003350234357640147, + -0.017855465412139893, + -0.03301018103957176, + -0.023795945569872856, + 0.05622311681509018, + 0.01810305565595627, + 0.0017871266463771462, + 0.013938304036855698, + -0.03281737491488457, + 0.057257384061813354, + -0.020257025957107544, + -0.021149232983589172, + 0.023016473278403282, + -0.030711499974131584, + -0.03078569285571575, + 0.00995104480534792, + 0.033396609127521515, + 0.0048281727358698845, + -0.0085924556478858, + -0.007619119249284267, + 0.034583043307065964, + 0.015128500759601593, + -0.015453443862497807, + -0.05350162461400032, + -0.007943401113152504, + -0.009968605823814869, + -0.003926744218915701, + 0.006719308439642191, + 0.034575093537569046, + -0.013948651030659676, + 0.009038467891514301, + -0.003198756370693445, + -0.007320441771298647, + 0.011201524175703526, + -0.049099113792181015, + 0.0008728784741833806, + 0.012381060048937798, + -0.045679643750190735, + -0.03427664935588837, + 0.03551901504397392, + 0.010751724243164062, + -0.01967664249241352, + 0.008509689010679722, + 0.00495037529617548, + 0.014604833908379078, + -0.0009764470160007477, + -0.01125807873904705, + -0.04571082070469856, + 0.08242449909448624, + 0.00831269845366478, + -0.001101577072404325, + 0.014574972912669182, + 0.0187644325196743, + 0.007032577879726887, + 0.02129232883453369, + 0.01958751305937767, + 0.07657280564308167, + -0.010066604241728783, + -0.009472315199673176, + 0.009427560493350029, + -0.00036700873170048, + 0.015067094005644321, + -0.013062166050076485, + -0.0005362668889574707, + 0.006094153039157391, + -0.02393552102148533, + -0.016183992847800255, + 0.019961800426244736, + -0.02274145744740963, + 0.0024742907844483852, + -0.02228759415447712, + 0.020976299419999123, + 0.03093016892671585, + -0.010880092158913612, + 0.010297809727489948, + -0.029300395399332047, + 0.0049643488600850105, + 0.019563613459467888, + 0.012245205231010914, + -0.01500134076923132, + 0.0021157339215278625, + -0.039251260459423065, + -0.009264491498470306, + 0.013612942770123482, + -0.01482695247977972, + 0.006994723342359066, + 0.0038980823010206223, + -0.017724044620990753, + 0.05258464813232422, + -0.008793122135102749, + 0.01669728383421898, + 0.03737293556332588, + 0.021831370890140533, + -0.02189437299966812, + -0.002351067028939724, + 0.08018174767494202, + -0.043462496250867844, + 0.01048857532441616, + -0.020971102640032768, + 0.009154261089861393, + -0.00014281601761467755, + 0.043281808495521545, + -0.0031255704816430807, + -0.040424544364213943, + -0.04276690632104874, + 0.01950056478381157, + 0.010296226479113102, + 0.011031110771000385, + -0.03790177032351494, + 0.03761136159300804, + -0.02981175109744072, + -0.014312163926661015, + 0.03711816295981407, + 0.03824631869792938, + 0.010130311362445354, + -0.012470172718167305, + 0.02614978887140751, + 0.020158803090453148, + -0.00678833294659853, + -0.02026832476258278, + 0.017851967364549637, + 0.03576270490884781, + -0.031545110046863556, + 0.003917068243026733, + -0.01162129919975996, + -0.029717274010181427, + 0.02622131071984768, + -0.021529674530029297, + -0.026471486315131187, + 0.0016609644517302513, + 0.001436328631825745, + -0.007454925682395697, + -0.0466071218252182, + -0.03677799552679062, + -0.0006097536534070969, + 0.011533678509294987, + 0.019790515303611755, + -0.02318463660776615, + -0.02576390467584133, + -0.03655678406357765, + -0.03377979248762131, + -0.01607886515557766, + 0.0246885959059, + 0.016103148460388184, + 0.0007151411846280098, + -0.006439803168177605, + -0.011367770843207836, + 0.012888694182038307, + -0.06698651611804962, + 0.005812131799757481, + 0.07505228370428085, + 0.05582449212670326, + -0.060879938304424286, + -0.004094438161700964, + -0.0005874992348253727, + 0.027375804260373116, + 0.043064989149570465, + -0.006042673718184233, + 0.022470511496067047, + 0.00406833877786994, + 0.042034514248371124, + 0.018187442794442177, + 0.04077998921275139, + -0.03763232007622719, + 0.0035929291043430567, + -0.03383232280611992, + -0.08568126708269119, + 0.015475219115614891, + 0.06430472433567047, + -0.015715815126895905, + 0.04122166708111763, + 0.03806911036372185, + -0.04237052798271179, + 0.02799646556377411, + -0.01952923648059368, + -0.03482188656926155, + -0.007127588614821434, + 0.08019626885652542, + 0.016866955906152725, + 0.01738831400871277, + -0.0031779631972312927, + 0.07319992035627365, + 0.0072840312495827675, + -0.013033630326390266, + -0.042576976120471954, + 0.0019059624755755067, + -0.014511317014694214, + -0.021052664145827293, + -0.01369475107640028, + -0.014502549543976784, + -0.0074261450208723545, + -0.020933659747242928, + 0.03288741037249565, + -0.035582225769758224, + -0.03903058171272278, + -0.0372338630259037, + -0.0050440882332623005, + 0.0484122559428215, + -0.02295226790010929, + 0.034307967871427536, + -0.011658897623419762, + 0.00541159650310874, + 0.009660174138844013, + 0.021839439868927002, + 0.009301477111876011, + -0.020049333572387695, + 0.023527370765805244, + 0.030225619673728943, + 0.03785910829901695, + -0.06098516285419464, + 0.010414894670248032, + 0.01485672127455473, + -0.026159802451729774, + -0.023540155962109566, + -0.01586110144853592, + -0.01903860829770565, + -0.0036020998377352953, + -0.05682544782757759, + 0.003580446122214198, + -0.004842808935791254, + -0.0248562041670084, + -0.005855513270944357, + -0.005593185778707266, + 0.022878430783748627, + 0.013136753812432289, + -0.04149223119020462, + -0.03250487148761749, + -0.03793226554989815, + 0.03398171067237854, + -0.03854049742221832, + -0.04450428858399391, + -0.08426787704229355, + -0.020207785069942474, + 0.024718496948480606, + -0.027010131627321243, + -0.044417254626750946, + 0.0060148704797029495, + -0.0162520632147789, + -0.03968815132975578, + -0.0030912102665752172, + -0.024419086053967476, + -0.09101792424917221, + -0.03378558158874512, + -0.010912011377513409, + 0.029288796707987785, + 0.0717877745628357, + 0.03736402466893196, + 0.0770653709769249, + 0.03378276899456978, + -0.018003158271312714, + 0.029070328921079636, + 0.021945733577013016, + 0.0517229400575161, + 0.025322645902633667, + 0.00018480914877727628, + -0.0411149300634861, + -0.014986909925937653, + -0.026815520599484444, + -0.008611363358795643, + -0.004712842404842377, + -0.015973107889294624, + 0.028532925993204117, + -0.03539680689573288, + -0.029612673446536064, + -0.005697392392903566, + 0.01104661077260971, + 0.07299317419528961, + -0.06285480409860611, + -0.03322175145149231, + -0.0239872969686985, + -0.015517819672822952, + -0.0013924455270171165, + 0.0112113356590271, + -0.0002849668962880969, + 0.02722901478409767, + 0.00508424686267972, + -0.016360832378268242, + -0.016342105343937874, + -0.05721505731344223, + 0.06036948040127754, + 0.021465152502059937, + 0.05373802036046982, + -0.021544838324189186, + -0.01251702755689621, + -0.007744474336504936, + 0.030945496633648872, + -0.01161169819533825, + 0.054048992693424225, + -0.06393485516309738, + -0.03925923630595207, + -0.0012219265336170793, + -0.071957066655159, + 0.05372045561671257, + -0.058507032692432404, + -0.038093049079179764, + 0.02201126143336296, + -0.01402800902724266, + 0.013050884939730167, + -0.057789672166109085, + -0.04372415691614151, + 0.06405078619718552, + -0.0662820041179657, + 0.004101469647139311, + 0.06431639939546585, + 0.03050006553530693, + -0.05197879672050476, + 0.019502943381667137, + -0.00913872942328453, + 0.028528740629553795, + -0.03236204385757446, + -0.038880664855241776, + -0.07128934562206268, + -0.02791389636695385, + -0.025370195508003235, + 0.007061335723847151, + 0.007254027295857668, + 0.004184816498309374, + 0.024798506870865822, + 0.08114742487668991, + 0.011688638478517532, + 0.01564090885221958, + 0.007904022932052612, + -0.032934464514255524, + 0.005568758584558964, + 0.016945669427514076, + -0.04125674068927765, + -0.07102230936288834, + -0.0064479634165763855, + -0.07536131143569946, + -0.03644811362028122, + -0.031568266451358795, + 0.007108442019671202, + 0.00015877545229159296, + -0.033977095037698746, + -0.08437719941139221, + 0.017544148489832878, + 0.006014320999383926, + -0.025501687079668045, + -0.011909461580216885, + 0.016109183430671692, + -0.0031000273302197456, + 0.003944909665733576, + -0.0017058484954759479, + 0.017093002796173096, + -0.05624828115105629, + -0.0007551713497377932, + -0.017539547756314278, + -0.06506083160638809, + 0.013971648178994656, + -0.06667446345090866, + 0.022448541596531868, + 0.043612658977508545, + -0.018351461738348007, + -0.05669272318482399, + -0.054817549884319305, + 0.003815807169303298, + 0.004432559013366699, + -0.004661377519369125, + 0.0015131402760744095, + -0.04326321557164192, + -0.0015083872713148594, + -0.013558804988861084, + -0.02105296030640602, + -0.04693884775042534, + -0.05219418555498123, + -0.006843451876193285, + 0.019030075520277023, + 0.014843386597931385, + 0.0035311058163642883, + -0.08923927694559097, + -0.019780784845352173, + 0.05282125994563103, + -0.0221380814909935, + 0.02760212868452072, + -0.010003959760069847, + 0.04404963180422783, + -0.03241955116391182, + 0.017276108264923096, + -0.02969585545361042, + -0.0038284114561975002, + 0.07897903770208359, + -0.0136715117841959, + 0.005499563179910183, + 0.009545236825942993, + 0.01268149446696043, + -0.0002585077309049666, + -0.01918785832822323, + -0.04456794261932373, + 0.04220377281308174, + 0.028774835169315338, + 0.07088910788297653, + 0.011623267084360123, + 0.00787991564720869, + 0.03749454393982887, + 0.0333641842007637, + 0.03044932149350643, + 0.040184102952480316, + -0.009394465945661068, + 0.02244250848889351, + 0.009930400177836418, + 0.00765236234292388, + -0.023324573412537575, + -0.006108706817030907, + -0.028521167114377022, + 0.019370093941688538, + -4.341844396549277e-05, + 0.06863715499639511, + -0.01033641118556261, + -0.0299773458391428, + 0.036146730184555054, + 0.008759216405451298, + -0.058852095156908035, + -0.04925630986690521, + 0.012105078436434269, + 0.024003101512789726, + -0.031034618616104126, + 0.04074595496058464, + -0.023200741037726402, + 0.029391279444098473, + 0.03341388702392578, + 0.03676249459385872, + 0.011711264960467815, + -0.005480621941387653, + 0.0678660124540329, + 0.013467548415064812, + 0.009460524655878544, + -0.015340473502874374, + 0.025088008493185043, + 0.043339405208826065, + 0.011498374864459038, + 0.0011628469219431281, + 0.034300945699214935, + -0.016345128417015076, + -0.0011572868097573519, + -0.022158222272992134, + 0.04909062758088112, + -0.02810000441968441, + 0.01601177267730236, + -0.03214944899082184, + 0.011092607863247395, + -0.000596596219111234, + 0.016675645485520363, + -0.031140359118580818, + -0.012971874326467514, + 0.06985434889793396, + -0.08147776126861572, + -0.038589250296354294, + -0.05719461292028427, + 0.04043861851096153, + 0.018194112926721573, + -0.014803296886384487, + 0.01921030692756176, + -0.052991464734077454, + -0.04369467496871948, + 0.03717693313956261, + 0.03860321268439293, + 0.024375377222895622, + 0.008629064075648785, + 0.0051126256585121155, + -0.0010497609619051218, + -0.013964511454105377, + -0.023025479167699814, + -0.0016846167854964733, + -0.001022301847115159, + -0.0062764957547187805, + 0.08294665813446045, + 0.03415527939796448, + -0.008192850276827812, + -0.051180899143218994, + 0.0008589868084527552, + -0.02131277322769165, + -0.03698594868183136, + 0.04555751010775566, + 0.017457125708460808, + 0.018279578536748886, + -0.0317048653960228, + -0.03551998361945152, + -0.007684075273573399, + -0.03557309880852699, + 0.010592002421617508, + -0.02545263059437275, + 0.012983408756554127, + 0.04354635253548622, + -0.06001225858926773, + 0.06438317149877548, + 0.029000630602240562, + -0.008455665782094002, + -0.03381701186299324, + -0.05114945024251938, + 0.06418686360120773, + 0.01343176607042551, + 0.013909580186009407, + 0.03315915912389755, + -0.026724282652139664, + 0.04908822104334831, + -0.017410483211278915, + 0.024077417328953743, + 0.043033797293901443, + -0.024586021900177002, + -0.020976398140192032, + 0.010524719953536987, + -0.023784207180142403, + 0.029806651175022125, + -0.01062838826328516, + 0.010925865732133389, + 0.006070309318602085, + -0.026515092700719833, + -0.03160543739795685, + -0.027115896344184875, + 0.01425021979957819, + -0.017322467640042305, + 0.018421294167637825, + 0.02851094678044319, + 0.01319247018545866, + 0.02172490768134594, + -0.027175582945346832, + -0.020646771416068077, + 0.0022292493376880884, + 0.013406256213784218, + -0.02109820768237114, + -0.041075028479099274, + -0.003250502049922943, + -0.04059818759560585, + 0.041096001863479614, + 0.024135150015354156, + -0.0291791632771492, + 0.006768044549971819, + 0.0138581283390522, + -0.006006992422044277, + -0.0173322930932045, + -0.03821219503879547, + -0.006601753178983927, + -0.024571552872657776, + 0.020100781694054604, + 0.03495880588889122, + -0.03181872516870499, + -0.007060933392494917, + 0.028028268367052078, + 0.04973325505852699, + 0.05902159586548805, + -0.015940574929118156, + -0.029272189363837242, + -0.03568244352936745, + -0.024066684767603874, + 0.025988075882196426, + 0.006450770888477564, + -0.03154964745044708, + -0.009064441546797752, + -0.040484990924596786, + -0.023048996925354004, + 0.01639045961201191, + -0.004362034611403942, + -0.025318384170532227, + 0.029936382547020912, + -0.04283653572201729, + -0.013185694813728333, + -0.032333437353372574, + -0.09789185971021652, + 0.011911503970623016, + -0.027304209768772125, + -0.007116400171071291, + -0.009910808876156807, + 0.013295531272888184, + -0.03582369536161423, + 0.00932591874152422, + -0.04605529457330704, + 0.04550239443778992, + 0.0036856404040008783, + -0.013595432974398136, + 0.014488918706774712, + -0.016139231622219086, + -0.007090690080076456, + 0.01714562438428402, + -0.041368428617715836, + 0.019710958003997803, + -0.015114055946469307, + -0.0879877582192421, + -0.09282287210226059, + -0.011434025131165981, + -0.06947943568229675, + 0.0035640683490782976, + 0.02000034786760807, + 0.052643563598394394, + 0.004225513897836208, + -0.012469707988202572, + 0.054844845086336136, + -0.010661524720489979, + -0.031169746071100235, + -0.06911756843328476, + -0.016245298087596893, + -0.04601343721151352, + 0.023754457011818886, + -0.06507812440395355, + 0.013313530944287777, + 0.06815152615308762, + -0.029403481632471085, + -0.022287292405962944, + 0.009959704242646694, + 0.05073438212275505, + 0.019155528396368027, + -0.030574392527341843, + -0.020304366946220398, + -0.008861907757818699, + -0.004328486043959856, + -0.010357777588069439, + -0.02580851875245571, + 0.0205573420971632, + 0.047375619411468506, + 0.015693796798586845, + 0.0012782108969986439, + -0.028128325939178467, + 0.01134288590401411, + -0.02051330730319023, + -0.026424597948789597, + -3.6860750697087497e-05, + 0.013027708977460861, + 0.04832625016570091, + -0.014449060894548893, + -0.005571552086621523, + 0.034602172672748566, + 0.04349006339907646, + -0.02515803463757038, + -0.019627708941698074, + -0.007000964134931564, + -0.032528094947338104, + -0.009852615185081959, + 0.01252738293260336, + 0.0013324731262400746, + 0.04016644507646561, + -0.00019060762133449316, + 0.025468315929174423, + 0.007480350788682699, + 0.023450398817658424, + -0.021044768393039703, + 0.015567554160952568, + -0.002054317155852914, + 0.00796932727098465, + -0.022838253527879715, + -0.007528893183916807, + 0.03144832327961922, + -0.004088734742254019, + -0.009231152012944221, + 0.011421498842537403, + -0.0017007794231176376, + 0.06120644509792328, + 0.012719685211777687, + 0.02246837690472603, + 0.008825118653476238, + -0.003974182531237602, + -0.007324247155338526, + 0.050045374780893326, + 0.026880841702222824, + -0.009004417806863785, + 0.0020875511690974236, + 0.029845094308257103, + -0.07390763610601425, + 0.036655399948358536, + 0.024298733100295067, + -0.007028184365481138, + 0.04709002748131752, + 0.009473619051277637, + -0.01530160941183567, + 0.019709810614585876, + 0.04908570274710655, + -0.01792905107140541, + 0.0065137604251503944, + 0.0019793875981122255, + 0.003353916807100177, + 0.017571136355400085, + 0.033415019512176514, + -0.01644854061305523, + -0.02976270206272602, + 0.06653598695993423, + -0.025840986520051956, + -0.0019398393342271447, + 0.04659084230661392, + -0.021871382370591164, + 0.023881087079644203, + 0.030971424654126167, + 0.029252605512738228, + 0.002277323277667165, + -0.02140941098332405, + 0.0333169549703598, + 0.031113239005208015, + -0.0324445404112339, + 0.021882282570004463, + -0.015531723387539387, + -0.016081972047686577, + -0.006276264321058989, + 0.01672409288585186, + 0.009405176155269146, + 0.00833628699183464, + -0.019179319962859154, + 0.0023549660108983517, + 0.022025739774107933, + -0.023437583819031715, + 0.03873467817902565, + 0.018076812848448753, + 0.004042688757181168, + -0.05420645698904991, + 0.0234873965382576, + -0.04372726008296013, + -0.006014611572027206, + -0.007541213184595108, + -0.0025186578277498484, + 0.039833296090364456, + 0.007338081952184439, + -0.008999369107186794, + 0.040310680866241455, + 0.013543486595153809, + 0.05342746526002884, + 0.031209932640194893, + -0.018579619005322456, + -0.016827862709760666, + 0.022205395624041557, + -0.003993316553533077, + 0.010965116322040558, + 0.022626228630542755, + 0.013440939597785473, + 0.04066852852702141, + -0.05104812979698181, + -0.02858158014714718, + -0.009635819122195244, + -0.057778194546699524, + -0.035854168236255646, + 0.016669539734721184, + 0.03789106011390686, + 0.005437076557427645, + 0.01964242197573185, + -0.036796245723962784, + 0.029297448694705963, + -0.04379540681838989, + -0.004859426524490118, + -0.03694372996687889, + 0.020290039479732513, + 0.011165796779096127, + 0.02013426274061203, + -0.025257153436541557, + -0.05402545630931854, + 0.057771336287260056, + -0.0165049247443676, + 0.039021994918584824, + 0.05698227137327194, + -0.014428998343646526, + -0.013782929629087448, + -0.002955028787255287, + -0.023294541984796524, + 0.005013920366764069, + 0.011191989295184612, + -0.023293698206543922, + 0.05150984972715378, + -0.02366158552467823, + 0.06028394401073456, + 0.0008222974720411003, + -0.005535478703677654, + 0.03420263156294823, + -0.029277436435222626, + -0.022456150501966476, + -0.009425047785043716, + -0.01966926082968712, + -0.0349731482565403, + 0.011645792052149773, + -0.008902640081942081, + 0.009863669984042645, + 0.03265678882598877, + -0.0799623355269432, + 0.027722736820578575, + 0.031583867967128754, + 0.004997536540031433, + 0.0010449885157868266, + -0.040750905871391296, + 0.025139203295111656, + 0.027048012241721153, + -0.019772548228502274, + -0.02689153514802456, + 0.026410343125462532, + 0.011367418803274632, + 0.013362696394324303, + 0.02676270715892315, + -0.026114409789443016, + -0.026405733078718185, + -0.03269890695810318, + 0.027502328157424927, + 0.052506715059280396, + 0.027107272297143936, + -0.012810248881578445, + -0.04054395854473114, + -0.0156598798930645, + -0.008086148649454117, + 0.005034855101257563, + -0.028813794255256653, + -0.02082367241382599, + 0.02628340572118759, + 0.0088961161673069, + 0.029273860156536102, + -0.008493446744978428, + -0.00617551663890481, + 0.01423171628266573, + 0.022574419155716896, + -0.028394797816872597, + -0.03833500295877457, + -0.00047270150389522314, + 0.022310985252261162, + 0.00962916761636734, + -0.035571496933698654, + 0.02535809762775898, + 0.011902605183422565, + 0.0316288061439991, + 0.06460866332054138, + 0.030961571261286736, + 0.005262802354991436, + 0.027313120663166046, + -0.05154106393456459, + 0.0504194051027298, + 0.013242505490779877, + 0.027480386197566986, + 0.007026661187410355, + -0.0054633719846606255, + -0.007604958023875952, + 0.06191930174827576, + 0.00558890076354146, + -0.01609581895172596, + -0.01277669332921505, + -0.021546803414821625, + -0.011829477734863758, + -0.023018434643745422, + -0.005431425292044878, + 0.003538904944434762, + 0.0018810235196724534, + 0.024541763588786125, + 0.007025130558758974, + -0.0065931957215070724, + -0.014175415970385075, + -0.00990058109164238, + 0.02211526222527027, + 0.05182206258177757, + -0.04321713745594025, + 0.02187878079712391, + -0.00843904446810484, + 0.004467321094125509, + -0.052753426134586334, + 0.0034926000516861677, + 0.02370353601872921, + 0.03369073569774628, + 0.053350284695625305, + -0.01817147247493267, + 0.01805773377418518, + -0.04231001064181328, + -0.004704623483121395, + 0.056348107755184174, + -0.025833282619714737, + -0.005186898168176413, + 0.00012459394929464906, + 0.02901759371161461, + 0.02957109361886978, + 0.041927412152290344, + -0.033589571714401245, + -0.04304933920502663, + -0.048569343984127045, + 0.06311186403036118, + -0.01622498594224453, + 0.021734917536377907, + 0.008146051317453384, + 0.023639220744371414, + -0.008397947065532207, + 0.002127997111529112, + -0.010116392746567726, + -0.023288974538445473, + 0.02715703658759594, + 0.03012678772211075, + -0.017370039597153664, + 0.006038813851773739, + 0.006817128509283066, + -0.002284899353981018, + 0.01841679960489273, + -0.0092259356752038, + 0.0034251476172357798, + 0.0252603217959404, + -0.011413058266043663, + 0.01577063836157322, + 0.026954177767038345, + -0.010112738236784935, + -0.034777577966451645, + 0.03612004965543747, + -0.01701006479561329, + -0.000983237405307591, + -0.0361160971224308, + 0.009766804054379463, + 0.06229916960000992, + -0.0344340018928051, + 0.00887352041900158, + 0.04471127316355705, + 0.0009675355977378786, + 0.023896370083093643, + -0.062214743345975876 + ], + "start_index": 27750, + "end_index": 27905, + "token_count": 38, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "108faed9-b335-59d2-ae1a-9bace3e82764", + "_source": { + "text": "\n\nTokens:\n\n\n\nEQ\nNEQ\nLT\nGT\nLTE\nGTE", + "embedding": [ + 0.0078037274070084095, + -0.0188185665756464, + -0.007126511074602604, + -0.11447840929031372, + -0.019816284999251366, + 0.08829236775636673, + -0.0054080188274383545, + 0.013813179917633533, + -0.031454410403966904, + -0.03189251571893692, + 0.0464143343269825, + -0.023910410702228546, + 0.12093453109264374, + -0.006086620967835188, + -0.038984913378953934, + 0.07400837540626526, + -0.013743224553763866, + -0.03606157377362251, + -0.018377916887402534, + -0.06444885581731796, + 0.025848204270005226, + -0.01911775954067707, + -0.022577332332730293, + 0.05196613445878029, + -0.010933564975857735, + 0.026156475767493248, + -0.07388772815465927, + 0.03418804332613945, + 0.017082395032048225, + -0.044331662356853485, + -0.03227626532316208, + -0.049382105469703674, + -0.032900121062994, + -0.0038688001222908497, + -0.003077779896557331, + -0.012132324278354645, + 0.008900337852537632, + 0.0018432560609653592, + 0.014584834687411785, + 0.014391458593308926, + 0.07140886038541794, + 0.010306576266884804, + -0.055726293474435806, + 0.048816829919815063, + -0.0534086637198925, + -0.02791665494441986, + 0.07997874915599823, + 0.014814083464443684, + -0.0006793532520532608, + 0.010648500174283981, + 0.00950513407588005, + 0.008433564566075802, + 0.020860033109784126, + 0.02391902171075344, + -0.02415594831109047, + -0.02143688313663006, + 0.015833670273423195, + 0.01107436791062355, + -0.003744895337149501, + 0.019594738259911537, + -0.05470705032348633, + 0.026154331862926483, + -0.07411640137434006, + 0.03744994476437569, + -0.0006468694191426039, + 0.0523938424885273, + 0.024495016783475876, + -0.013679887168109417, + -0.04586343094706535, + -0.027351822704076767, + -0.030502380803227425, + -0.003822685219347477, + 0.014631115831434727, + 0.03742815554141998, + 0.02111619897186756, + 0.037310369312763214, + 0.009948015213012695, + -0.04220355674624443, + -0.006322319153696299, + 0.035664938390254974, + -0.006189613603055477, + 0.054666876792907715, + 0.03993596136569977, + 0.03880983218550682, + 0.04522057995200157, + 0.06394070386886597, + -0.06461840122938156, + 0.010794026777148247, + 0.05813245102763176, + 0.03574281185865402, + 0.030281078070402145, + 0.011060927994549274, + -0.02018921449780464, + -0.061024706810712814, + 0.01657208614051342, + -0.025834672152996063, + -0.026561006903648376, + 0.0028361030854284763, + -0.02449324168264866, + -0.026121489703655243, + -0.004677630960941315, + -0.062395934015512466, + -0.01474709715694189, + 0.037487875670194626, + 0.012161514721810818, + 0.059946220368146896, + -0.012615324929356575, + 0.0008206172497011721, + 0.009817063808441162, + -0.01310319546610117, + -0.02410542219877243, + -0.027148345485329628, + 0.04923032969236374, + 0.01663781702518463, + 0.007755600847303867, + 0.0037330850027501583, + -0.04978835955262184, + -0.026248933747410774, + -0.0062186140567064285, + 0.02188809961080551, + 0.012418903410434723, + -0.02138880081474781, + 0.017718568444252014, + -0.005198582541197538, + 0.05974774435162544, + 0.023875389248132706, + -0.01776570826768875, + -0.006615583784878254, + 0.02175690419971943, + -0.0047020637430250645, + -0.02930416166782379, + -0.030469799414277077, + -0.02931974083185196, + 0.005853586830198765, + -0.005183938425034285, + -0.012476446107029915, + 0.025981497019529343, + -0.020166289061307907, + 0.05022812262177467, + 0.008527927100658417, + -0.054534971714019775, + 0.01983262412250042, + -0.0026416874025017023, + -0.005762420129030943, + 0.029605800285935402, + 0.04142282158136368, + 0.013100869953632355, + -0.021922241896390915, + 0.04667053744196892, + 0.026486417278647423, + 0.02070099674165249, + -0.004825600888580084, + -0.03627299889922142, + -0.0135965496301651, + -0.03100547567009926, + 0.0011814786121249199, + -0.0006785408477298915, + 0.025113621726632118, + 0.003981499001383781, + 0.023951172828674316, + -0.009388399310410023, + -0.011231624521315098, + -0.0051376549527049065, + -0.039453327655792236, + -0.008101729676127434, + -0.01491248793900013, + -0.029895871877670288, + -0.03928083926439285, + 0.01425533089786768, + 0.03717302903532982, + -0.021572422236204147, + 0.006727953907102346, + 0.007448509801179171, + 0.02161175198853016, + 0.0026956587098538876, + 0.007452183868736029, + -0.053318243473768234, + -0.020288757979869843, + -0.020400110632181168, + -0.005195594858378172, + -0.0003084363997913897, + -0.011853566393256187, + 0.012471293099224567, + -0.004384821746498346, + 0.005292113870382309, + 0.06494513899087906, + 0.001755275996401906, + -0.011015062220394611, + 0.015288295224308968, + -0.01913898065686226, + 0.008523634634912014, + -0.018185246735811234, + -0.0516149178147316, + -0.009365605190396309, + -0.00991304125636816, + -0.020783863961696625, + -0.0012359746033325791, + -0.04332392290234566, + 0.0017911571776494384, + -0.022506264969706535, + 0.012053684331476688, + 0.01924476958811283, + 0.004022539593279362, + -0.00608529569581151, + -0.03781349956989288, + 0.005157980602234602, + -0.008958468213677406, + 0.003941303119063377, + -0.029019758105278015, + -0.03698965534567833, + -0.009933852590620518, + 0.03144342452287674, + 0.015714675188064575, + -0.016147496178746223, + -0.0004930714494548738, + 0.0009860603604465723, + 0.01294059120118618, + 0.006377927493304014, + 0.004065391141921282, + 0.004963206592947245, + 0.03145305812358856, + 0.010646743699908257, + -0.024466916918754578, + 0.008180486038327217, + 0.04435696080327034, + -0.005813433323055506, + 9.321852849097922e-05, + 0.004038739483803511, + 0.017355741932988167, + 0.02919544279575348, + 0.023678380995988846, + -0.0018955705454573035, + -0.012746443040668964, + -0.002482210984453559, + 0.028824850916862488, + 0.00846875086426735, + -0.0007554921321570873, + -0.023615114390850067, + 0.0231033805757761, + -0.003508025547489524, + -0.01515478640794754, + 0.017336927354335785, + 0.010901243425905704, + 0.023525714874267578, + -0.011702856980264187, + 0.03519602492451668, + 0.013360104523599148, + 0.010681401006877422, + -0.016040639951825142, + 0.01620626077055931, + 0.05690919980406761, + -0.07854285836219788, + -2.4804767235764302e-05, + 0.05362287163734436, + -0.0024835329968482256, + 0.004164916463196278, + 0.011428982950747013, + -0.028599947690963745, + -8.0602039815858e-05, + -0.011929468251764774, + 0.006823687814176083, + -0.043138425797224045, + -0.036499738693237305, + 0.005964725743979216, + -0.0725688487291336, + -0.0025341217406094074, + -0.012695159763097763, + -0.048400383442640305, + -0.03682476282119751, + -0.017020005732774734, + -0.0021702926605939865, + 0.011028236709535122, + -0.007719400338828564, + -0.007510086055845022, + -0.006490788422524929, + 0.02107607014477253, + 0.017699366435408592, + -0.1298360973596573, + 0.022266555577516556, + 0.08501344174146652, + 0.022714123129844666, + -0.0013631334295496345, + -0.0030847040470689535, + -0.0387376993894577, + 0.012177874334156513, + 0.04803406074643135, + 0.020711898803710938, + -0.0050093806348741055, + -0.016034431755542755, + 0.040783319622278214, + 0.024686889722943306, + 0.03617989271879196, + -0.059255052357912064, + -0.018891893327236176, + -0.043005168437957764, + -0.04234219714999199, + 0.03299131989479065, + 0.032224733382463455, + -0.005082887597382069, + -0.029189039021730423, + 0.052772779017686844, + -0.0064989798702299595, + 0.025026626884937286, + -0.02545708417892456, + -0.04465991631150246, + -0.002574286423623562, + 0.07514522224664688, + -0.007412781938910484, + 0.02096405252814293, + -0.021867522969841957, + 0.043408069759607315, + 0.01866433396935463, + 0.008557614870369434, + -0.02777942828834057, + -0.0014356236206367612, + 0.013023314997553825, + -0.03892869874835014, + 0.03806789219379425, + -0.008784960955381393, + 0.025633791461586952, + -0.007824908010661602, + 0.017198337242007256, + -0.01419783290475607, + -0.020260341465473175, + 0.02359684742987156, + -0.009032410569489002, + 0.08436760306358337, + -0.004778124857693911, + 0.014622845686972141, + 0.052560120820999146, + 0.012412079609930515, + 0.02228633500635624, + 0.0269368477165699, + 0.027013344690203667, + 0.011233329772949219, + -0.0054842461831867695, + 0.013742610812187195, + 0.01468644943088293, + -0.07249023765325546, + 0.0011322335340082645, + -0.02017386443912983, + -0.031956177204847336, + -0.010250262916088104, + 0.03550214692950249, + -0.048628997057676315, + -0.02567598596215248, + -0.03367113694548607, + 0.0027771759778261185, + -0.01642574369907379, + -0.02006821520626545, + 0.022898446768522263, + -0.00677486089989543, + 0.020957347005605698, + 0.006780629511922598, + -0.011834494769573212, + -0.0655871033668518, + -0.06366068124771118, + 0.05398169159889221, + -0.03734217956662178, + -0.019541816785931587, + -0.07677136361598969, + -0.02813568525016308, + -0.003827132750302553, + 0.018558857962489128, + -0.02228841744363308, + -0.03146713227033615, + -0.010314777493476868, + -0.011848281137645245, + -0.008171860128641129, + 0.014272734522819519, + -0.06420836597681046, + -0.0429876409471035, + -0.007484627887606621, + 0.05764136463403702, + 0.06985614448785782, + 0.05236823484301567, + 0.05365779995918274, + 0.04838607460260391, + 0.005763879511505365, + 0.01960032433271408, + -0.0008729338878765702, + -0.015362367033958435, + 0.007680605165660381, + 0.002752302447333932, + -0.021749794483184814, + 0.021929239854216576, + 0.005324637051671743, + -0.04340038076043129, + -0.03804779425263405, + -0.05155909061431885, + -0.0045667835511267185, + -0.006580357439815998, + 0.032633766531944275, + 0.0007269451161846519, + 0.012727917172014713, + 0.021879136562347412, + -0.07047224789857864, + -0.04308018088340759, + -0.03177599608898163, + 0.02767191454768181, + 0.005274531897157431, + 0.008513308130204678, + -0.02060031145811081, + 0.01428457535803318, + 0.03585393726825714, + -0.012137067504227161, + -0.018542388454079628, + -0.02735431306064129, + -0.001280232798308134, + -0.03239228203892708, + 0.04708277806639671, + 0.01788206584751606, + -0.02180453948676586, + 0.034290120005607605, + 0.006851659156382084, + -0.04813718795776367, + 0.03418920934200287, + -0.030553268268704414, + -0.024690447375178337, + -0.005727379582822323, + -0.018145956099033356, + 0.062268659472465515, + -0.011212044395506382, + -0.06516236066818237, + 0.05195897817611694, + -0.011379068717360497, + -0.0019413288682699203, + -0.02468382753431797, + -0.03033837117254734, + -0.0015515624545514584, + -0.02115415595471859, + -0.01967586949467659, + -0.003981832880526781, + 0.008237390778958797, + -0.05290987342596054, + 0.020258290693163872, + 0.031473349779844284, + 0.03774873539805412, + 0.013900079764425755, + -0.060484349727630615, + -0.06111344322562218, + -0.00232364097610116, + -0.07200762629508972, + 0.058074578642845154, + -0.04062201827764511, + 0.003785504726693034, + 0.02342580258846283, + 0.07372917979955673, + 0.01969049870967865, + 0.03214910998940468, + -0.008729870431125164, + -0.018449705094099045, + -0.020321689546108246, + 0.02139810472726822, + -0.04521074518561363, + -0.06813536584377289, + -0.017492687329649925, + -0.0954531654715538, + -0.02213149331510067, + 0.034102823585271835, + -0.025564352050423622, + -0.01903061382472515, + 0.000992356799542904, + -0.07515852153301239, + -0.03141789138317108, + 0.017560278996825218, + 0.06045762449502945, + 0.0008133775554597378, + -0.018572980538010597, + 0.03186391294002533, + -0.006634366232901812, + -0.026718564331531525, + -0.010450013913214207, + -0.01677405834197998, + 0.010706302709877491, + 0.03221076354384422, + -0.03871173784136772, + -0.0030039811972528696, + -0.10540992021560669, + -0.019166620448231697, + 0.02396029606461525, + -0.05964592099189758, + 0.014384131878614426, + -0.09806037694215775, + 0.018548935651779175, + -0.019058965146541595, + 0.023432793095707893, + -0.019411686807870865, + -0.048833008855581284, + 0.030239898711442947, + -0.008601619862020016, + -8.118852565530688e-05, + -0.04150997847318649, + -0.06920243799686432, + -0.027238907292485237, + 0.06836899369955063, + -0.008387458510696888, + -0.0012232878943905234, + -0.13790571689605713, + -0.008460312150418758, + 0.04208633676171303, + -0.02445991151034832, + 0.01620696857571602, + 0.0076337698847055435, + 0.05873435363173485, + 0.014664961956441402, + -0.0036354095209389925, + -0.02302098087966442, + -0.015571513213217258, + 0.04965634644031525, + -0.03830449655652046, + -0.018529679626226425, + -0.023826513439416885, + 0.0034719794057309628, + 0.005869892425835133, + -0.023143220692873, + -0.004206140525639057, + 0.030480436980724335, + -0.008868771605193615, + 0.05500110238790512, + 0.012886090204119682, + 0.05780787765979767, + 0.041200265288352966, + 0.03353879600763321, + 0.025833116844296455, + 0.0715259537100792, + -0.025059811770915985, + -0.018240874633193016, + 0.01748822070658207, + 4.402039121487178e-05, + 0.014416093938052654, + -0.03007931262254715, + -0.02342098020017147, + -0.0027403770945966244, + 0.024911347776651382, + 0.03962485119700432, + 0.008942496962845325, + -0.02325964905321598, + 0.039598118513822556, + -0.008301416411995888, + -0.038781486451625824, + -0.004411004949361086, + -0.01852877251803875, + -0.007530658505856991, + 0.01683376543223858, + 0.005981198977679014, + -0.030376866459846497, + 0.04399031400680542, + 0.03521866351366043, + 0.013490852899849415, + 0.010523294098675251, + -0.0005638578440994024, + 0.048900436609983444, + 0.016025356948375702, + 0.03531024605035782, + -0.0016379720764234662, + 0.015581164509057999, + 0.02731265127658844, + 0.04243912175297737, + 0.010285546071827412, + -0.059888310730457306, + -0.043580975383520126, + -0.002463381038978696, + -0.06457208842039108, + 0.013864734210073948, + 0.006955289281904697, + 0.031403061002492905, + -0.0022020279429852962, + 0.010314779356122017, + -0.019127191975712776, + 0.034079570323228836, + 0.015465691685676575, + 0.009772908873856068, + 0.02937866561114788, + -0.011626703664660454, + -0.028061306104063988, + -0.018787262961268425, + 0.04217453673481941, + 0.016946857795119286, + -0.04462059587240219, + 0.01569853164255619, + -0.05603795498609543, + 0.006711945403367281, + 0.009146459400653839, + 0.0343218632042408, + 0.014537190087139606, + -0.0121393334120512, + 0.019952435046434402, + -0.023214679211378098, + 0.01593688875436783, + -0.04490303248167038, + -0.041436973959207535, + -0.012185076251626015, + -0.023579830303788185, + 0.02529175765812397, + 0.0074981325305998325, + -0.04970698803663254, + -0.04951557144522667, + -0.02268209494650364, + 0.00618590647354722, + -0.0019280245760455728, + 0.06336843222379684, + 0.021806366741657257, + -0.015530911274254322, + -0.06939016282558441, + 0.03146655485033989, + -0.023640483617782593, + -0.032087936997413635, + 0.002459227107465267, + 0.014556560665369034, + 0.0008678687154315412, + 0.006651401985436678, + -0.01955416426062584, + 0.023331232368946075, + 0.005500203929841518, + -0.03557198494672775, + 0.02227507159113884, + -0.016639860346913338, + 0.016163578256964684, + -0.03348199278116226, + 0.0030721465591341257, + 0.01943846233189106, + 0.011163795366883278, + 0.04253820329904556, + 0.01595945470035076, + 0.03481398895382881, + 0.03204997628927231, + -0.0591956302523613, + -0.010520562529563904, + -0.014504414983093739, + -0.03623853996396065, + 0.021122422069311142, + -0.0490884967148304, + 0.02831743285059929, + 0.030765721574425697, + -0.02393440343439579, + -0.01480187103152275, + 0.0158074963837862, + -0.010934808291494846, + -0.008826577104628086, + 0.012907947413623333, + -0.004746879450976849, + 0.034016769379377365, + 0.01250775158405304, + 0.014950999990105629, + 0.005553835071623325, + -0.029308786615729332, + 0.03909683972597122, + -0.011753106489777565, + 0.016851210966706276, + -0.045336559414863586, + -0.04645238444209099, + -0.007861986756324768, + 0.006750492379069328, + 1.1465675015642773e-05, + 0.026954611763358116, + 0.02298085205256939, + 0.024698693305253983, + -0.04309362918138504, + -0.06658127903938293, + 0.0011500560212880373, + -0.033263906836509705, + 0.031173404306173325, + -0.005107282195240259, + -0.0625288188457489, + 0.009724271483719349, + 0.03837010636925697, + 0.04486381262540817, + 0.03588901460170746, + -0.010277120396494865, + -0.018277185037732124, + -0.004512270912528038, + -0.03298921138048172, + 0.026152076199650764, + -0.03331039100885391, + -0.02501653879880905, + 0.00382552039809525, + -0.010856067761778831, + -0.06974860280752182, + -0.02407536841928959, + -0.030346428975462914, + -0.020175576210021973, + 0.031424105167388916, + -0.02924203686416149, + 0.015977563336491585, + -0.030622800812125206, + -0.05232151597738266, + 0.008502135053277016, + 0.02812272310256958, + 0.014028760604560375, + -0.03685836121439934, + -0.0025901368353515863, + 0.014971129596233368, + -0.012526857666671276, + -0.013333376497030258, + 0.031511832028627396, + 0.020046593621373177, + -0.010449443012475967, + -0.018461111932992935, + 0.017850415781140327, + 0.012576298788189888, + -0.011209879070520401, + -0.019320877268910408, + 0.002959704725071788, + 0.01288924366235733, + -0.00943412259221077, + -0.022021090611815453, + -0.006145715247839689, + -0.06584308296442032, + 0.02276647835969925, + -0.008895783685147762, + 0.029866546392440796, + -0.011247986927628517, + -0.022080043330788612, + 0.03310447186231613, + -0.005707047414034605, + -0.01688872091472149, + -0.05914910510182381, + -0.0014718975871801376, + -0.02963443659245968, + -0.008064311929047108, + -0.014215209521353245, + 0.004815925844013691, + 0.03453944995999336, + -0.01079198531806469, + -0.02009924128651619, + -0.017903538420796394, + 0.035324420779943466, + -0.0008521977579221129, + -0.05759759992361069, + -0.015247260220348835, + 0.02153506502509117, + -0.02274707891047001, + -0.02140241675078869, + -4.150897075305693e-05, + 0.03410036861896515, + 0.0007554726907983422, + 0.0008932541240938008, + -0.01080710906535387, + 0.012901509180665016, + 0.038275692611932755, + 0.01395401731133461, + -0.04220161959528923, + -0.02427620254456997, + 0.015794463455677032, + 0.06487814337015152, + 0.008172618225216866, + -0.007039147429168224, + 0.02269836701452732, + 0.06548088043928146, + -0.021050291135907173, + 0.00012650252028834075, + -0.018845075741410255, + 0.018206479027867317, + -0.022547200322151184, + 0.02473723143339157, + -0.007150203920900822, + 0.021762384101748466, + 0.0383821539580822, + -0.010027652606368065, + 0.0182801466435194, + 0.0367216020822525, + 0.013930062763392925, + -0.020711388438940048, + 0.02003638632595539, + -0.032171763479709625, + 0.009016676805913448, + -0.02286939136683941, + -0.04620074853301048, + -0.003901213873177767, + -0.04733624681830406, + -0.031243840232491493, + 0.008346827700734138, + 0.04183787479996681, + -0.010586785152554512, + 0.011835694313049316, + 0.0379764661192894, + -0.015597699210047722, + -0.009448996745049953, + 0.0515025295317173, + 0.01710386574268341, + 0.004211814608424902, + 0.04431670904159546, + -0.00784565880894661, + -0.04529168829321861, + 0.05454152822494507, + 0.0023316305596381426, + 0.0022579808719456196, + 0.024022264406085014, + 0.05453461781144142, + 0.01141543872654438, + 0.06433434039354324, + 0.030909767374396324, + 0.012719766236841679, + -0.004280506633222103, + 0.003352256491780281, + -0.03858828917145729, + 0.019677968695759773, + 0.052085477858781815, + -0.012463312596082687, + -0.011321437545120716, + 0.046809375286102295, + -0.00864520762115717, + -0.07058975845575333, + 0.043622639030218124, + -0.041395049542188644, + -0.0034440038725733757, + 0.01271186862140894, + 0.010654487647116184, + -0.0021331266034394503, + 0.004167370032519102, + 0.07516034692525864, + 0.0421016663312912, + -0.025212612003087997, + 0.02236207015812397, + 0.054840087890625, + -0.006104284431785345, + -0.015597857534885406, + 0.01745004579424858, + 0.024787208065390587, + -0.030585607513785362, + 0.002751172985881567, + -0.022201942279934883, + -0.00929858349263668, + -0.022690122947096825, + 0.06897306442260742, + 0.02104182541370392, + 0.006076691206544638, + -0.02046629600226879, + 0.010212584398686886, + 0.007582483813166618, + -0.015924325212836266, + 0.03115108609199524, + -0.009052349254488945, + 0.03757840394973755, + -0.003784730564802885, + -0.01015464961528778, + -0.03407829999923706, + -0.006043591536581516, + 0.0565861351788044, + -0.023785151541233063, + -0.026139212772250175, + -0.028311636298894882, + 0.02581973373889923, + -0.023082725703716278, + 0.02287284843623638, + -0.012856419198215008, + 0.013135513290762901, + 0.011124962009489536, + -0.0433356799185276, + -0.04870034009218216, + -0.010034513659775257, + -0.02532190829515457, + -0.004113226197659969, + -0.006227746140211821, + 0.025730285793542862, + 0.01649097353219986, + 0.02155393175780773, + -0.036036450415849686, + 0.0028636131901293993, + -0.00418280903249979, + 0.04038994759321213, + -0.01236787810921669, + 0.0004576474893838167, + -0.010360457934439182, + 0.07099929451942444, + -0.013623589649796486, + 0.020798271521925926, + 0.05075955390930176, + -0.04563681781291962, + 0.06842336803674698, + 0.02989552915096283, + -0.00329835363663733, + 0.0017641043523326516, + -0.04714328050613403, + -0.007509028073400259, + -0.023144548758864403, + 0.02865179441869259, + -0.004371440503746271, + 0.00524794589728117, + -0.004251333884894848, + 0.03877831622958183, + -0.021898269653320312, + 0.02697717770934105, + 0.008462565951049328, + -0.04067012667655945, + -0.030099641531705856, + -0.026925554499030113, + -0.016052059829235077, + 0.02415519207715988, + 0.018910259008407593, + -0.01264308113604784, + -0.024420982226729393, + 0.034815672785043716, + -0.05807102844119072, + -0.00920630618929863, + 0.0023726411163806915, + -0.023222949355840683, + 0.05171715468168259, + -0.018552390858530998, + 0.01067864615470171, + 0.026601199060678482, + -0.03793599456548691, + 0.0009741198155097663, + -0.025660056620836258, + 0.020889416337013245, + 0.0016450717812404037, + -0.0035037680063396692, + -0.013933643698692322, + 0.013456722721457481, + -0.03498672693967819, + 0.059412531554698944, + 0.02399701625108719, + 0.0277403611689806, + -0.023429766297340393, + -0.05229583755135536, + -0.006834445055574179, + -0.0022118075285106897, + -0.018017008900642395, + 0.005987103097140789, + -0.06005256623029709, + 0.018249038606882095, + 0.021727576851844788, + 0.0627792552113533, + -0.03494717553257942, + 0.006623632274568081, + 0.01293497160077095, + -0.010486381128430367, + -0.022242426872253418, + -0.01613284833729267, + -0.027976693585515022, + -0.006992442067712545, + 0.020121267065405846, + 0.012231350876390934, + -0.00021957319404464215, + 0.02479146607220173, + 0.04225681722164154, + 0.011839110404253006, + 0.025430994108319283, + 0.0037293601781129837, + 0.03754366189241409, + -0.05878997594118118, + 0.004829213488847017, + 0.02931477688252926, + 0.02064545266330242, + -0.018519442528486252, + 0.002312570111826062, + -0.015739625319838524, + 0.02788040041923523, + -0.0010372715769335628, + 0.007087541278451681, + -0.02433607541024685, + -0.01885470189154148, + -0.024832123890519142, + 0.04507532715797424, + -0.035494234412908554, + 0.025784090161323547, + 0.012981054373085499, + 0.020186861976981163, + 0.024455083534121513, + -0.011570514179766178, + -0.020375527441501617, + 0.023301370441913605, + -0.01218739990144968, + 0.06867331266403198, + -0.035118430852890015, + 0.003337589791044593, + 0.050701290369033813, + 0.03470675274729729, + 0.002745731035247445, + -0.006464749574661255, + 0.010570538230240345, + 0.010616256855428219, + 0.03427654504776001, + 0.008758106268942356, + 0.03574543818831444, + -0.052218858152627945, + 0.004639965482056141, + -0.02909764088690281, + -0.019623693078756332, + -0.019991865381598473, + -0.025217199698090553, + -0.0033250891137868166, + 0.0065095918253064156, + 0.0054277218878269196, + 0.018959542736411095, + -0.0023185848258435726, + 0.018837716430425644, + 0.05624408647418022, + -0.07202297449111938, + -0.013285958208143711, + 0.0007846055086702108, + 0.042430415749549866, + 0.003302396973595023, + 0.0031507841777056456, + 0.03633173182606697, + 0.01764531061053276, + -0.0024604806676506996, + 0.03793412446975708, + -0.00990784540772438, + -9.59099706960842e-05, + -0.003452935488894582, + -0.021439258009195328, + 0.007649058476090431, + -0.014714445918798447, + 0.00671563483774662, + -0.0077970013953745365, + 0.008764770813286304, + 0.021367374807596207, + 0.06954196840524673, + -0.020035594701766968, + -0.009552017785608768, + 0.053702931851148605, + -0.011817561462521553, + 0.03743067756295204, + -0.041793953627347946, + -0.001672995975241065, + 0.03719533234834671, + -0.006345177069306374, + -0.02225898951292038, + 0.005947192199528217, + 0.015868451446294785, + 0.027421781793236732, + -0.0287117138504982 + ], + "start_index": 27905, + "end_index": 27944, + "token_count": 3, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "26ecce7f-772d-5493-99fd-2877634b1066", + "_source": { + "text": "\n\n---\n\n## Operadores lógicos\n\n\n\nand\nor\nnot", + "embedding": [ + 0.01454959250986576, + -0.047448113560676575, + -0.005245433188974857, + -0.09886831045150757, + 0.021577013656497, + 0.03046645224094391, + -0.0069737969897687435, + 0.022197071462869644, + 0.02504131570458412, + -0.00034122553188353777, + -0.00019019402679987252, + -0.027416357770562172, + 0.09234564751386642, + -0.0038889257702976465, + -0.04535123333334923, + 0.05588921532034874, + -0.04857773333787918, + -0.020468754693865776, + 0.01325796078890562, + -0.08404456079006195, + -0.014246134087443352, + -0.004059801809489727, + 0.03126571327447891, + 0.08608128130435944, + 0.01393785048276186, + -0.014256552793085575, + -0.06847929954528809, + 0.08980347961187363, + -0.026936443522572517, + -0.032075848430395126, + -0.02084006741642952, + -0.03286992758512497, + -0.033714380115270615, + 0.022503817453980446, + 0.016379542648792267, + -0.0075488886795938015, + 0.010856292210519314, + 0.024960879236459732, + -0.009689567610621452, + 0.00773240951821208, + 0.02499871328473091, + 0.017649218440055847, + 0.03205666318535805, + 0.016365593299269676, + -0.07206792384386063, + 0.0106298653408885, + 0.08431406319141388, + -0.009823031723499298, + -0.026518024504184723, + -0.000247170974034816, + -0.024486176669597626, + -0.011201885528862476, + 0.010307437740266323, + 0.009456227533519268, + -0.04294789955019951, + -0.04639933258295059, + 0.011854075826704502, + -0.031697485595941544, + 0.03914043307304382, + -0.022635189816355705, + -0.028258198872208595, + -0.03319710120558739, + -0.07853258401155472, + -0.033712927252054214, + 0.03952060639858246, + 0.05338583514094353, + -0.008181393146514893, + -0.03254374861717224, + -0.06606974452733994, + -0.00039727211697027087, + -0.004550805781036615, + 0.058316271752119064, + 0.043948788195848465, + 0.022679036483168602, + 0.011948573403060436, + 0.025264807045459747, + -0.0035576748196035624, + -0.01629275642335415, + 0.004934278316795826, + -0.008586373180150986, + 0.008468449115753174, + 0.033910371363162994, + -0.04250267148017883, + 0.009944223798811436, + 0.009953218512237072, + 0.03352585807442665, + -0.044287923723459244, + -0.014227661304175854, + 0.028370574116706848, + -0.0018777010263875127, + 0.02352452091872692, + 0.0012922958703711629, + -0.02418656460940838, + -0.02733025886118412, + -0.01784937083721161, + -0.02663741447031498, + -0.02008860372006893, + -0.018003785982728004, + 0.008851421065628529, + 0.0041542877443134785, + 0.006244754884392023, + -0.002301991218701005, + -0.004133329726755619, + 0.08529398590326309, + -0.004325433634221554, + 0.06822417676448822, + -0.03446738421916962, + -0.019612617790699005, + 0.024564990773797035, + 0.03680994734168053, + -0.027525484561920166, + 0.017033908516168594, + -0.05352606624364853, + 0.04284999147057533, + 0.009138990193605423, + -0.04284666106104851, + 0.005333464592695236, + -0.006076132878661156, + 0.01833941973745823, + 0.02345278672873974, + -0.020576417446136475, + -0.059736113995313644, + -0.004429609514772892, + 0.0020748882088810205, + -0.0005754795856773853, + -0.023716730996966362, + -0.026687517762184143, + -0.027294859290122986, + 0.020370371639728546, + -0.010695533826947212, + -0.025814374908804893, + -0.0483689084649086, + -0.020594067871570587, + 0.054055117070674896, + 0.020661965012550354, + -0.005976117216050625, + 0.023622732609510422, + -0.002498144283890724, + 0.034825630486011505, + -0.027391500771045685, + -0.07322698086500168, + 0.018504435196518898, + -0.01705532893538475, + -0.021952876821160316, + 0.02647138573229313, + 0.036439623683691025, + 0.007918802089989185, + 0.005515595898032188, + -0.008438501507043839, + -0.011491692624986172, + -0.02021932415664196, + -0.024198779836297035, + -0.058286361396312714, + -0.03760463744401932, + -0.03313896805047989, + -0.01355324499309063, + 0.006820096168667078, + 0.019983133301138878, + 0.018937330693006516, + -0.00715774018317461, + -0.018407456576824188, + 0.004070995841175318, + -0.01976829580962658, + -0.026096167042851448, + 0.0019773291423916817, + 0.011728792451322079, + -0.04059659317135811, + -0.03442302718758583, + 0.039389435201883316, + 0.010035975836217403, + -0.012051183730363846, + 0.010358280502259731, + 0.020884986966848373, + -0.006840383633971214, + -0.0064469557255506516, + -0.0007632426568306983, + -0.04145040735602379, + 0.038670800626277924, + 0.005732104182243347, + 0.0005566691397689283, + 0.02545088343322277, + -0.014592873863875866, + 0.016441643238067627, + 0.019864507019519806, + 0.014612055383622646, + 0.07279681414365768, + -0.010776080191135406, + -0.0011863112449645996, + -0.010005651041865349, + 0.004567308817058802, + 0.04238392040133476, + 0.010593240149319172, + -0.0494980625808239, + 0.004302406217902899, + -0.0348183698952198, + 0.0015355254290625453, + -0.006602702662348747, + -0.015805684030056, + 0.012241260148584843, + 0.01256489660590887, + 0.00759809510782361, + 0.0017140094423666596, + -0.027384011074900627, + 0.018692413344979286, + -0.03983785957098007, + 0.027740130200982094, + 0.03502725437283516, + 0.009819814935326576, + 0.0013013107236474752, + 0.008580772206187248, + 0.018622277304530144, + -0.005963365081697702, + 0.013050288893282413, + -0.03511496260762215, + 0.011464199982583523, + -0.001056648325175047, + -0.011248833499848843, + 0.028759658336639404, + -0.006164590362459421, + -0.01515253633260727, + 0.03637261688709259, + 0.001416633022017777, + -0.012604745104908943, + -0.00042140044388361275, + 0.09095165133476257, + -0.024137478321790695, + 0.00711660273373127, + -0.003873431356623769, + -0.05589279159903526, + 0.005065688397735357, + 0.02941509149968624, + 0.03867359459400177, + -0.023522324860095978, + -0.01244502142071724, + 0.0175786055624485, + -0.007132810540497303, + -0.004018132109194994, + 0.007156692445278168, + 0.02143711969256401, + -0.016942862421274185, + -0.006904007401317358, + 0.011775515973567963, + 0.03532320633530617, + 0.023704951629042625, + -0.005288111511617899, + 0.020885644480586052, + 0.013523849658668041, + 0.03288215026259422, + -0.011551057919859886, + 0.0336824469268322, + 0.05742430314421654, + 0.03543509915471077, + 0.02063632197678089, + 0.03304046019911766, + 0.0089440131559968, + -0.003735225647687912, + -0.01227097399532795, + -0.01776314154267311, + 0.008516884408891201, + 0.00019160413648933172, + 0.008819708600640297, + -0.02918664924800396, + -0.02421373687684536, + 0.014872183091938496, + -0.00909536425024271, + 0.007064229343086481, + -0.018668871372938156, + -0.09298007190227509, + -0.024906646460294724, + -0.003814800875261426, + 0.010976078920066357, + -0.0254205372184515, + 0.02420014701783657, + -0.01245259027928114, + 0.005417727865278721, + 0.02369868941605091, + -0.0034703912679105997, + -0.06799956411123276, + 0.011465407907962799, + -0.02396203763782978, + 0.021226733922958374, + -0.061070580035448074, + 0.0025077916216105223, + -0.019480153918266296, + -0.004779036622494459, + 0.03317513316869736, + 0.01154998131096363, + -0.013038074597716331, + 0.009742124006152153, + -0.002346482826396823, + -0.023425603285431862, + 0.045522887259721756, + -0.05577811971306801, + 0.048658594489097595, + -0.049358464777469635, + -0.01242084987461567, + -0.027326053008437157, + 0.1153777614235878, + -0.02825801819562912, + -0.009376581758260727, + -0.01397240161895752, + 0.015695743262767792, + -0.012977872043848038, + -0.008026317693293095, + -0.009503575041890144, + 0.0017176237888634205, + 0.0615479052066803, + -0.0374484546482563, + -0.02200692519545555, + -0.04697698727250099, + 0.027565278112888336, + 0.0061749545857310295, + -0.00596775533631444, + -0.013009559363126755, + -0.0043315826915204525, + 0.009287840686738491, + -0.011093937791883945, + 0.07255671918392181, + -0.005193807650357485, + 0.03156191110610962, + -0.00815308652818203, + -0.050189465284347534, + -0.03480534628033638, + -0.024937322363257408, + 0.016420258209109306, + -0.015061045996844769, + 0.061376411467790604, + -0.01747228391468525, + 0.032839320600032806, + 0.018683794885873795, + 0.002048528753221035, + -0.010522086173295975, + 0.006721083074808121, + -0.019403450191020966, + 0.01720026321709156, + -0.009413469582796097, + -0.0062257819809019566, + -0.02836076356470585, + -0.0029084605630487204, + 0.015623854473233223, + 0.025574998930096626, + -0.021617701277136803, + 0.029386401176452637, + 0.021614454686641693, + -0.03600835055112839, + -0.004979813937097788, + -0.06568142026662827, + 0.02366694249212742, + 0.03198830783367157, + -0.01063396967947483, + -0.023092787712812424, + 0.008874263614416122, + 0.04570753127336502, + 0.05805265158414841, + -0.012427651323378086, + 0.01608305424451828, + -0.04522574320435524, + 0.06294886022806168, + -0.058991435915231705, + -0.025738557800650597, + -0.05333863943815231, + -0.027042044326663017, + 0.07242041081190109, + 0.026430394500494003, + -0.004356535151600838, + -0.03164739906787872, + -0.03310099244117737, + 0.009246173314750195, + 0.057966966181993484, + -0.04192673787474632, + -0.11656661331653595, + -0.05598706752061844, + 0.000421457109041512, + 0.048521123826503754, + 0.03146069869399071, + 0.020570551976561546, + 0.06968706846237183, + 0.03378257155418396, + -0.013620348647236824, + 0.03635045886039734, + -0.026143157854676247, + 0.038097210228443146, + 0.014226676896214485, + 0.038740124553442, + -0.04571467265486717, + 0.027874618768692017, + -0.01799779385328293, + -0.021546535193920135, + 0.03674941882491112, + -0.03557492047548294, + -0.00014790258137509227, + 0.011065869592130184, + -0.030704021453857422, + 0.00936922337859869, + 0.04209214448928833, + 0.011679132468998432, + -0.03147735446691513, + -0.0004621892003342509, + -0.09706193208694458, + 0.013609751127660275, + 0.014133365824818611, + 0.02676715888082981, + -0.03770313039422035, + 0.04282640293240547, + -0.02682543359696865, + -0.01786199025809765, + -0.022607585415244102, + -0.008356248959898949, + -0.014807340689003468, + -0.010821952484548092, + -0.009260187856853008, + -0.03914014622569084, + -0.03174491971731186, + 0.051796093583106995, + 0.04771533980965614, + 0.009847413748502731, + 0.0327029712498188, + -0.03668824955821037, + -0.040285177528858185, + -0.049906905740499496, + -0.0531863272190094, + 0.07993955165147781, + -0.015762455761432648, + -0.05667583644390106, + 0.023260680958628654, + -0.0053739300929009914, + 0.056723397225141525, + -0.07241501659154892, + -0.030428387224674225, + 0.04737696796655655, + -0.052392471581697464, + 0.03020525351166725, + 0.008516954258084297, + 0.014722917228937149, + -0.0413702167570591, + -0.009695731103420258, + 0.04306302219629288, + 0.03824235126376152, + -0.01448418851941824, + -0.01661141961812973, + -0.050264764577150345, + -0.029602158814668655, + -0.025678137317299843, + -0.008441056124866009, + -0.01961354911327362, + -0.02931402623653412, + -0.029088158160448074, + 0.05202876031398773, + 0.0184667706489563, + 0.0017586939502507448, + 0.028420887887477875, + -0.09826251864433289, + -0.00038312567630782723, + 0.039327189326286316, + -0.02188301458954811, + -0.006782278418540955, + -0.027755381539463997, + -0.028610724955797195, + 0.0368807278573513, + -0.003015063237398863, + -0.03520353138446808, + -0.026550522074103355, + 0.046999383717775345, + -0.04650794714689255, + -0.03385249897837639, + 0.0035013954620808363, + -0.0001990213932003826, + 0.01745457760989666, + 0.026783602312207222, + -0.0007589863962493837, + -0.009382517077028751, + -0.008461013436317444, + -0.008663635700941086, + -0.005203429143875837, + 0.025837158784270287, + 0.0259730014950037, + -0.017106764018535614, + -0.024956971406936646, + -0.047601863741874695, + 0.04511502385139465, + 0.01724225841462612, + 0.013295824639499187, + 0.04483755677938461, + -0.004241101443767548, + 0.02039865404367447, + -0.023304911330342293, + 0.00414082407951355, + -0.010548270307481289, + -0.020794987678527832, + 0.030627325177192688, + 0.025347163900732994, + -0.02227867767214775, + -0.007740499451756477, + -0.006796188652515411, + 0.001114587881602347, + 0.05306060612201691, + 0.005588448606431484, + -0.01039600744843483, + -0.1294945478439331, + -0.021917123347520828, + 0.003119156463071704, + 0.007266169413924217, + 0.02050899527966976, + 0.01905178278684616, + 0.05877872556447983, + -0.032514117658138275, + -2.7103360480396077e-05, + -0.03163779526948929, + 0.023899229243397713, + 0.054047759622335434, + -0.05194568634033203, + -0.05400498956441879, + -0.027142003178596497, + -0.035388343036174774, + -0.04418589174747467, + 0.009624004364013672, + 0.0018318112706765532, + 0.03471669182181358, + -0.012587531469762325, + 0.04815489053726196, + -0.017957672476768494, + 0.04973001033067703, + 0.04476326331496239, + 0.027955379337072372, + -0.00815071165561676, + 0.05056992173194885, + 0.04565681144595146, + -0.0066093266941607, + 0.025010880082845688, + 0.008120708167552948, + -0.05023365467786789, + 0.0013139317743480206, + -0.035723861306905746, + -0.03019675426185131, + 0.026631824672222137, + 0.03949720412492752, + 0.030841656029224396, + -0.023871809244155884, + 0.002123694634065032, + -0.009504549205303192, + 0.022118771448731422, + -0.015204562805593014, + 0.013384835794568062, + 0.029824180528521538, + -0.035266246646642685, + 0.018860405310988426, + -0.010871446691453457, + 0.0008811860461719334, + -0.003403689479455352, + 0.02621150203049183, + 0.026791302487254143, + -0.019765131175518036, + 0.05808310583233833, + 0.009462152607738972, + 0.029960956424474716, + -0.0011353775626048446, + -0.028363728895783424, + 0.045800257474184036, + 0.04471609368920326, + -7.863951759645715e-05, + 0.045273587107658386, + -0.031186752021312714, + -0.017084522172808647, + -0.0327412411570549, + 0.01311416458338499, + 0.011738006956875324, + 0.03834700584411621, + 0.007998250424861908, + 0.044472359120845795, + 0.022098004817962646, + 0.043274424970149994, + -0.000243797738221474, + -0.007750293239951134, + 0.054677341133356094, + -0.0154414726421237, + -0.006040643434971571, + -0.04159977659583092, + 0.04814920946955681, + 0.028528420254588127, + -0.009368260391056538, + 0.053280435502529144, + -0.006221333518624306, + -0.005579647608101368, + 0.0773642361164093, + 0.033092349767684937, + 0.014778738841414452, + -0.022636504843831062, + 0.023983946070075035, + 0.007954677566885948, + -0.030331941321492195, + -0.009240112267434597, + -0.049905452877283096, + -0.008711900562047958, + -0.024764012545347214, + 0.023931555449962616, + -0.014726700261235237, + 0.017329208552837372, + -0.019709939137101173, + -0.010672738775610924, + 0.018661383539438248, + 0.039785027503967285, + 0.0030643071513623, + -0.010417412966489792, + 0.020472534000873566, + -0.029591912403702736, + -0.027889590710401535, + -0.017034046351909637, + -0.040713753551244736, + 0.07407787442207336, + -0.02465115301311016, + 0.012408801354467869, + 0.011510450392961502, + -0.01693790778517723, + 0.06196582317352295, + 0.029291538521647453, + -0.02336069382727146, + -0.01118062436580658, + -0.06781435757875443, + 0.0331459604203701, + -0.01451005320996046, + 0.017782513052225113, + 0.022981515154242516, + -0.029717501252889633, + -0.007295700255781412, + 0.01520740520209074, + 0.03917308896780014, + 0.043524663895368576, + 0.017261413857340813, + -0.025620583444833755, + -0.004910667426884174, + -0.002351044677197933, + 0.01980103738605976, + -0.08214734494686127, + 0.05984968692064285, + -0.012838637456297874, + -0.027482952922582626, + -0.024456845596432686, + -0.018200544640421867, + -0.002680605510249734, + 0.04603823274374008, + 0.06024487316608429, + 0.012823669239878654, + 0.02999243140220642, + 0.008098688907921314, + 0.010225532576441765, + 0.00604957714676857, + -0.035623516887426376, + -0.014629488810896873, + 0.030750809237360954, + -0.007817106321454048, + -0.006196546368300915, + -0.016697390004992485, + 0.02799135632812977, + 0.010323036462068558, + -0.021215474233031273, + 0.012559831142425537, + 0.024642985314130783, + -0.027065102010965347, + 0.018196526914834976, + -0.010897266678512096, + -0.022451654076576233, + 0.0036614711862057447, + 0.01635042019188404, + -0.028648879379034042, + -0.09775779396295547, + -0.04846297949552536, + 0.030224740505218506, + 0.028890015557408333, + 0.025983627885580063, + 0.02282591722905636, + -0.01713658683001995, + -0.03943665698170662, + 0.034454602748155594, + 0.03941065073013306, + 0.029861541464924812, + -0.029747655615210533, + -0.01250294130295515, + 0.02911512739956379, + -0.05651115998625755, + 0.002932214178144932, + 0.017168445512652397, + -0.014370014891028404, + 0.010642293840646744, + -0.03824542462825775, + 0.021618083119392395, + -0.03239475563168526, + -0.05269329249858856, + 0.0058286236599087715, + 0.049994274973869324, + 0.020581593737006187, + 0.017877887934446335, + -0.014079703018069267, + -0.003302331082522869, + -0.03863534331321716, + -0.033490706235170364, + 0.043705716729164124, + -0.0185001902282238, + 0.01232956349849701, + -0.02537282183766365, + -0.0024321861565113068, + -0.010518422350287437, + -0.01201846357434988, + -0.023649059236049652, + -0.005517466925084591, + 0.04207642376422882, + -0.05739796534180641, + -0.046957407146692276, + 0.016707224771380424, + -0.06884567439556122, + 0.0037402319721877575, + -0.009408745914697647, + 0.041279640048742294, + 0.013579057529568672, + -0.05721164122223854, + 0.0322902537882328, + -0.03317076340317726, + -0.01553847175091505, + -0.027415554970502853, + -0.008827831596136093, + 0.023077301681041718, + -0.035528894513845444, + -0.0025324260350316763, + 0.01344226486980915, + 0.017484920099377632, + -0.04082515090703964, + -0.038564637303352356, + 0.024356123059988022, + 0.024095555767416954, + 0.030922185629606247, + -0.0037533272989094257, + -0.005715649574995041, + 0.005407590884715319, + -0.023712871596217155, + 0.03685050457715988, + -0.00235487287864089, + -0.016336403787136078, + 0.0004405381332617253, + 0.0035294727422297, + -0.010234327055513859, + -0.03713471069931984, + 0.02364850975573063, + 0.006632370874285698, + -0.040913961827754974, + -0.0198054201900959, + 0.017420276999473572, + 0.04497465118765831, + -0.00876296404749155, + -0.028521567583084106, + -0.009107057005167007, + 0.010674035176634789, + 0.011812999844551086, + 0.020842788740992546, + -0.0029267098288983107, + 0.02208802103996277, + -0.01256305631250143, + 0.05659390613436699, + -0.005797788966447115, + 0.035771504044532776, + 0.025441331788897514, + 0.0260868351906538, + -0.01450888067483902, + 0.006219474133104086, + 0.014711681753396988, + 0.02144872024655342, + 0.017147673293948174, + -0.02770567685365677, + 0.035439178347587585, + -0.00619164202362299, + -0.013734104111790657, + -0.00884371530264616, + -0.017028765752911568, + 0.014016998931765556, + 0.0552482083439827, + 0.01648181676864624, + 0.008647900074720383, + 0.004923877771943808, + 0.022412974387407303, + -0.0014383773086592555, + -0.02423172816634178, + 0.029885871335864067, + -0.00854259543120861, + -0.004698905628174543, + 0.008738299831748009, + 0.008484342135488987, + -0.05314812436699867, + 0.021000495180487633, + 0.02366684004664421, + -0.01803545467555523, + 0.04359528422355652, + 0.06236082687973976, + -0.020957138389348984, + 0.02584059163928032, + 0.04001456871628761, + -0.004349902737885714, + -0.002612499287351966, + -0.0024094933178275824, + 0.021234611049294472, + -0.006030959542840719, + 0.04920848459005356, + -0.004775787703692913, + -0.00501052662730217, + 0.04196584224700928, + 0.03814411908388138, + -0.04007556661963463, + 0.004587652627378702, + -0.03415446728467941, + 0.008187887258827686, + -0.008897610940039158, + -0.010929499752819538, + -0.029818270355463028, + 0.02514205127954483, + 0.0072501227259635925, + 0.04900403320789337, + -0.03659304231405258, + -0.00020970244077034295, + 0.01681717298924923, + -0.030994601547718048, + 0.03232128545641899, + 0.006678438279777765, + 0.025815851986408234, + 0.017139442265033722, + -0.0041543953120708466, + 0.004428716842085123, + -0.038971398025751114, + -0.05214517191052437, + 0.03765740990638733, + -0.003632911015301943, + -0.041766442358493805, + -0.04988420754671097, + -0.02467898093163967, + 0.038159508258104324, + 0.048429545015096664, + -0.006834183353930712, + 0.003519061952829361, + 0.004213156644254923, + 0.04781879484653473, + 0.002364924643188715, + 0.00031132917501963675, + -0.010694612748920918, + 0.02499622106552124, + -0.00037341166171245277, + -0.025634698569774628, + -0.007905703969299793, + 0.016431786119937897, + -0.013951072469353676, + 0.010919302701950073, + -0.02138761430978775, + 0.020313464105129242, + 0.03864666447043419, + -0.02900232933461666, + 0.008078264072537422, + 0.006784098222851753, + -0.044450126588344574, + -0.02686331607401371, + -0.019172390922904015, + 0.010046529583632946, + -0.00987954717129469, + 0.008636019192636013, + -0.020665151998400688, + 0.004994197282940149, + -0.006944855209439993, + 0.02256636694073677, + -0.005625593010336161, + -0.018979204818606377, + -0.0313882976770401, + 0.026947546750307083, + -0.026152249425649643, + -0.019325148314237595, + 0.0755319744348526, + -0.03807166591286659, + 0.08089900761842728, + 0.049632325768470764, + 0.013054056093096733, + -0.028993163257837296, + -0.005261356011033058, + -0.03399883955717087, + -0.005878003779798746, + -0.00010797548748087138, + -0.036650266498327255, + 0.01739433966577053, + 0.033867012709379196, + 0.03463315591216087, + 0.02622194029390812, + -0.03082446940243244, + -0.026817435398697853, + -0.024274678900837898, + -0.012427803128957748, + -0.04702642932534218, + 0.00934593379497528, + 0.0038409081753343344, + -0.016967713832855225, + -0.031216176226735115, + -0.03347310796380043, + 0.017617294564843178, + -0.032128624618053436, + 0.01522139459848404, + 0.03217211738228798, + 0.01394781842827797, + 0.056582141667604446, + -0.012278850190341473, + 0.055137213319540024, + -0.0018236691830679774, + -0.0038990972097963095, + 0.023098204284906387, + 0.015558007173240185, + -0.0038771338295191526, + 0.028782933950424194, + 0.031784746795892715, + -0.03375627472996712, + 0.004824847914278507, + -0.002297232858836651, + 0.03919520601630211, + 0.043983906507492065, + 0.01428971253335476, + 0.03974910452961922, + -0.03778653219342232, + 0.014618530869483948, + 0.016949545592069626, + 0.0174447949975729, + -0.03525702282786369, + 0.014231809414923191, + 0.03565273433923721, + 0.0164042878895998, + 0.017554402351379395, + 0.004805815871804953, + 0.03295494616031647, + 0.02987487055361271, + 0.023786406964063644, + -0.012284624390304089, + -0.0354769341647625, + -0.025674838572740555, + 0.004121823236346245, + 0.035425376147031784, + 0.016231166198849678, + -0.02153194695711136, + -0.056394562125205994, + 0.05812222510576248, + 0.05207861587405205, + 0.01685119792819023, + -0.030650736764073372, + 0.004505325108766556, + 0.00023916811915114522, + 0.007887952961027622, + 0.026802651584148407, + 0.0014030257007107139, + -0.0017082557315006852, + -0.026068618521094322, + 0.03412434458732605, + -0.006241929717361927, + -0.032953668385744095, + -0.00323443952947855, + 0.012865391559898853, + 0.0055190506391227245, + 0.019893541932106018, + -0.0345960296690464, + -0.00895923376083374, + 0.0314679890871048, + 0.04772152006626129, + 0.013342094607651234, + 0.007912404835224152, + -0.015620362013578415, + -0.0075067817233502865, + -0.026302732527256012, + -0.025120103731751442, + 0.048194319009780884, + -0.009199872612953186, + -0.04880137741565704, + -0.0175034049898386, + 0.0032022034283727407, + -0.021365448832511902, + -0.01538807526230812, + 0.02033865824341774, + 0.011362636461853981, + 0.03597834333777428, + -0.01600610837340355, + 0.018719058483839035, + -0.04719800502061844, + -0.011803245171904564, + 0.036508165299892426, + -0.05523475632071495, + -0.021192707121372223, + -0.0488610565662384, + 0.008584437891840935, + -0.03535981848835945, + -0.020837366580963135, + 0.02822314202785492, + -0.035238172858953476, + -0.06374640017747879, + 0.014339594170451164, + -0.01567476987838745, + 0.03722400218248367, + 0.04654252901673317, + 0.04142044484615326, + 0.0157468318939209, + -0.0147114722058177, + 0.0012274491600692272, + -0.06949145346879959, + -0.021034130826592445, + 0.037666887044906616, + -0.028934994712471962, + -0.015276988036930561, + 0.0075304643251001835, + 0.05895129591226578, + 0.055825285613536835, + -0.03504613786935806, + 0.021074678748846054, + -0.05095669627189636, + 0.011445569805800915, + 0.016078924760222435, + 0.025165840983390808, + -0.016948120668530464, + -0.028111882507801056, + -0.0037158133927732706, + -0.05106738209724426, + -0.004721412900835276, + -0.043197665363550186, + 0.01949763484299183, + 0.06813304126262665, + -0.04984087869524956, + 0.01652209646999836, + 0.019288843497633934, + 0.04866528883576393, + 0.007280429359525442, + -0.03161285072565079 + ], + "start_index": 27944, + "end_index": 27992, + "token_count": 9, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "81bd6bd6-b66e-5546-8005-3e60ec9ce2ec", + "_source": { + "text": "\n\nTokens:\n\n\n\nAND\nOR\nNOT", + "embedding": [ + 0.0033323580864816904, + -0.02037973329424858, + -0.010513989254832268, + -0.13273875415325165, + 0.003360292175784707, + 0.07217807322740555, + -0.02872372232377529, + 0.026257755234837532, + -0.03383660316467285, + -0.004480773117393255, + 0.015731336548924446, + -0.047207437455654144, + 0.08553899824619293, + -0.008238637819886208, + -0.042909298092126846, + 0.06235223263502121, + -0.04511440172791481, + -0.016888612881302834, + 0.00137402827385813, + -0.06437556445598602, + 0.009301465004682541, + -0.02484479360282421, + 0.01582440920174122, + 0.08793342113494873, + -0.0005304955411702394, + 0.035240307450294495, + -0.06424341350793839, + 0.05629073828458786, + -0.01037653535604477, + -0.028947649523615837, + -0.03393927961587906, + -0.059686046093702316, + -0.032009515911340714, + 0.003966470714658499, + 0.01399319153279066, + -0.013474574312567711, + -0.003407421289011836, + -0.02723160944879055, + 0.019533077254891396, + 0.010905477218329906, + 0.055412668734788895, + 0.00521824462339282, + -0.016845956444740295, + 0.03847101703286171, + -0.06646314263343811, + -0.014268783852458, + 0.07009147107601166, + -0.005181949120014906, + -0.010646187700331211, + 0.02131020277738571, + -0.0015758685767650604, + -0.021231701597571373, + 0.023283613845705986, + 0.031165193766355515, + -0.017231952399015427, + -0.050158727914094925, + 0.005460631102323532, + 0.028895918279886246, + 0.015442725270986557, + 0.02937001734972, + -0.030879782512784004, + 0.033853039145469666, + -0.0847630575299263, + 0.018942834809422493, + 0.012916789390146732, + 0.0526881217956543, + 0.014071987010538578, + 0.00607156939804554, + -0.06134609133005142, + -0.03642354533076286, + -0.0009266270790249109, + 0.06046611815690994, + 0.017267968505620956, + 0.021206103265285492, + 0.023859351873397827, + 0.01979239471256733, + 0.024289753288030624, + -0.020015859976410866, + 0.009740479290485382, + 0.030981585383415222, + 0.0005530333146452904, + 0.06140239164233208, + 0.040262818336486816, + 0.028409471735358238, + 0.04647132381796837, + 0.07291215658187866, + -0.08454885333776474, + -0.03319216147065163, + 0.06169764697551727, + 0.03779638931155205, + 0.014394956640899181, + 0.011900476180016994, + -0.03311191871762276, + -0.03490232303738594, + 0.023540839552879333, + -0.02283710055053234, + 0.008974652737379074, + 0.009986159391701221, + -0.021714311093091965, + -0.009560888633131981, + -0.016117246821522713, + -0.011228183284401894, + -0.009206903167068958, + 0.040510110557079315, + 0.011803273111581802, + 0.07351718842983246, + 0.004685958381742239, + 0.019486386328935623, + 0.006879482418298721, + 0.012784876860678196, + -0.018034320324659348, + -0.01929786056280136, + 0.02308262512087822, + 0.03298167511820793, + 0.011599968187510967, + -0.018115993589162827, + -0.005021391436457634, + -0.02956162393093109, + -0.03257877752184868, + 0.01973015069961548, + -0.003430672688409686, + -0.041185412555933, + 0.020929746329784393, + -0.015323254279792309, + 0.049410801380872726, + -0.0002763926750048995, + -0.021781807765364647, + -0.02464837022125721, + 0.024213740602135658, + -0.029527276754379272, + 0.00899454765021801, + -0.041884467005729675, + -0.012784434482455254, + 0.004750728141516447, + -0.006472302135080099, + -0.00868742261081934, + 0.025843149051070213, + -0.04531688243150711, + 0.03227616846561432, + -0.001585364923812449, + -0.06390306353569031, + 0.028648480772972107, + 0.009821692481637001, + -0.016764014959335327, + 0.016157614067196846, + 0.033121656626462936, + 0.032215043902397156, + -0.01548190601170063, + 0.018356887623667717, + 0.010166124440729618, + 0.029553255066275597, + 0.00329398806206882, + -0.03124033845961094, + -0.02032650075852871, + -0.04488833248615265, + -0.017958860844373703, + 0.012179466895759106, + 0.02820737659931183, + 0.022151900455355644, + 0.030610457062721252, + 0.003422083333134651, + -0.004187548998743296, + -0.015424365177750587, + -0.03541175276041031, + 0.002447945298627019, + 0.021878410130739212, + -0.038944635540246964, + -0.047341011464595795, + 0.016373448073863983, + 0.026293549686670303, + -0.016548333689570427, + 0.01357276365160942, + 0.014402794651687145, + -0.001536359079182148, + -0.016920825466513634, + 8.198287105187774e-05, + -0.04486147686839104, + 0.0034393034875392914, + -0.01308488380163908, + -0.006924313027411699, + 0.007081641349941492, + -0.01851153001189232, + 0.005802469793707132, + 0.0022307918407022953, + -0.0045582447201013565, + 0.07034178078174591, + -0.006417007185518742, + -0.027651386335492134, + 0.003976962063461542, + -0.003908779937773943, + 0.034941863268613815, + -0.010077712126076221, + -0.08500920236110687, + -0.009490225464105606, + -0.018079906702041626, + -0.006102126091718674, + 0.0185882356017828, + -0.028378786519169807, + 2.3578439140692353e-05, + -0.001675324165262282, + 0.0173439159989357, + -0.0006980623002164066, + 0.003958574961870909, + 0.01574731431901455, + -0.035497818142175674, + 0.025130700320005417, + -0.0017151905922219157, + 0.005025612656027079, + -0.012824730016291142, + -0.026840807870030403, + -0.0028512433636933565, + 5.372823216021061e-05, + 0.004291419871151447, + -0.022844457998871803, + -0.002818034728989005, + -0.015217200852930546, + 0.0271176565438509, + 0.012553325854241848, + 0.025097575038671494, + -0.020533014088869095, + 0.038739416748285294, + 0.004172156099230051, + -0.0071484302170574665, + 0.00437576649710536, + 0.06859035789966583, + -0.015125456266105175, + -0.017927218228578568, + -0.01476234383881092, + -0.014836023561656475, + 0.028066471219062805, + 0.034421004354953766, + 0.031193027272820473, + -0.01029364112764597, + -0.010035781189799309, + 0.02139340154826641, + 0.015423157252371311, + 7.107680721674114e-05, + 0.004238499328494072, + 0.03502104431390762, + -0.06184089183807373, + -0.04126467555761337, + 0.005729162599891424, + 0.028006432577967644, + 0.0235910601913929, + -0.014855443499982357, + 0.03773050010204315, + 0.013315663672983646, + 0.016257647424936295, + -0.010511203669011593, + 0.003949479199945927, + 0.07599826902151108, + -0.0640183538198471, + 0.03555692732334137, + 0.05007534474134445, + -0.0036463127471506596, + 0.01705312915146351, + 0.00730888731777668, + -0.03112776391208172, + -0.00342286447994411, + -0.0007773817633278668, + -0.015792235732078552, + -0.021115323528647423, + -0.0436413548886776, + 0.0047597214579582214, + -0.05202550068497658, + 0.0022455397993326187, + -0.01745188608765602, + -0.07478713244199753, + -0.04434195160865784, + -0.019431570544838905, + -0.019632557407021523, + 0.007676309905946255, + 0.0033567394129931927, + 0.017388205975294113, + 0.01800520159304142, + -0.0031091056298464537, + 0.025646721944212914, + -0.13467468321323395, + 0.013824507594108582, + 0.025867884978652, + 0.001014451147057116, + -0.01354001834988594, + -0.0015496989944949746, + -0.01504596509039402, + 0.014953630045056343, + 0.04426690936088562, + 0.015062865801155567, + -0.005465690512210131, + 0.022811222821474075, + 0.004562278278172016, + 0.025156553834676743, + 0.031105482950806618, + -0.0450814925134182, + 0.008435753174126148, + -0.03425867483019829, + 0.007047157268971205, + -0.004508299753069878, + 0.056053418666124344, + -0.012677837163209915, + -0.013969830237329006, + 0.010256855748593807, + -0.006133700720965862, + 0.0003169134142808616, + -0.020003018900752068, + -0.004177712835371494, + -0.003583504119887948, + 0.04651976376771927, + -0.04107687994837761, + 0.018106751143932343, + -0.029637964442372322, + 0.06758372485637665, + -0.013199806213378906, + 0.001743584987707436, + -0.04067901894450188, + -0.004552207421511412, + -0.0036693941801786423, + -0.03764567896723747, + 0.0716266855597496, + -0.009421584196388721, + 0.028380434960126877, + -0.021245386451482773, + -0.007355700246989727, + 0.0003512018593028188, + -0.014964181929826736, + 0.050016116350889206, + 0.009816077537834644, + 0.07434884458780289, + 0.01693197898566723, + 0.000363464088877663, + 0.048957765102386475, + -0.008381051942706108, + -0.03186015412211418, + 0.014229901134967804, + 0.021615928038954735, + 0.025828825309872627, + -0.011702959425747395, + 0.009742487221956253, + -0.00241009215824306, + -0.02049681730568409, + -0.00556417740881443, + 0.017775915563106537, + -0.03710085153579712, + -0.00515723368152976, + 0.018238604068756104, + -0.05946464091539383, + -0.018368612974882126, + -0.021202201023697853, + -0.00021421269048005342, + 0.005534524098038673, + 0.015239883214235306, + -0.03300099074840546, + -0.014911188744008541, + 0.006576516665518284, + 0.03573431819677353, + 0.004191975574940443, + -0.048494502902030945, + -0.06974081695079803, + 0.055139344185590744, + -0.01714385487139225, + -0.02447701059281826, + -0.06270185858011246, + -0.04818260297179222, + 0.010644164867699146, + 0.05734814330935478, + -0.020860940217971802, + -0.0181523896753788, + -0.05490460991859436, + 0.015989093109965324, + 0.03003525361418724, + -0.01865774393081665, + -0.08016922324895859, + -0.015772856771945953, + -0.008866892196238041, + 0.033531781286001205, + 0.08175152540206909, + 0.0720374658703804, + 0.051186453551054, + 0.06540485471487045, + 0.025890808552503586, + 0.031280722469091415, + -0.015286167152225971, + -0.007431193720549345, + -0.003827929962426424, + 0.03366442024707794, + -0.025120040401816368, + -0.0001171370895463042, + -0.016923628747463226, + -0.04662298783659935, + -0.014941046014428139, + -0.04211757704615593, + 0.00468023493885994, + 0.0019414988346397877, + 0.011650188826024532, + 0.00930429995059967, + 0.031205719336867332, + 0.032443176954984665, + -0.023967314511537552, + -0.030179336667060852, + -0.029951442033052444, + 0.03832990676164627, + 0.007839689962565899, + 0.008861927315592766, + -0.014060837216675282, + 0.04150531813502312, + 0.022024722769856453, + -0.021694796159863472, + -0.020925402641296387, + 0.0017139248084276915, + -0.030298685654997826, + -0.008135039359331131, + 0.047533031553030014, + 0.006350020878016949, + -0.01312604732811451, + 0.028370356187224388, + 0.023727528750896454, + -0.031096335500478745, + 0.042700305581092834, + -0.04911276698112488, + -0.00021182853379286826, + -0.009722081013023853, + -0.004922504536807537, + 0.05998476222157478, + -0.0030521119479089975, + -0.04750366136431694, + 0.024819374084472656, + -0.00324835954234004, + 0.020454339683055878, + -0.040468305349349976, + -0.026255935430526733, + 0.013878093101084232, + -0.03623199090361595, + -0.0015055511612445116, + -0.030367935076355934, + 0.040410712361335754, + -0.019374970346689224, + 0.032388146966695786, + 0.06423323601484299, + 0.03214286267757416, + -0.005131951533257961, + -0.013385836966335773, + -0.041589152067899704, + -0.014988885261118412, + -0.0036898546386510134, + 0.010133774019777775, + -0.034619592130184174, + -0.013722832314670086, + -0.01620819978415966, + 0.02969128079712391, + 0.040719881653785706, + 0.007131153251975775, + 0.020759548991918564, + -0.06330392509698868, + -0.021905194967985153, + 0.02310371585190296, + -0.039046745747327805, + -0.036921463906764984, + -0.013486073352396488, + -0.07580363750457764, + 0.02173323929309845, + 0.028763744980096817, + -0.019431905820965767, + -0.02617933414876461, + 0.02831183560192585, + -0.06422026455402374, + -0.05113813653588295, + 0.0187786016613245, + 0.045766279101371765, + -0.011534609831869602, + 0.0016280150739476085, + 0.026541540399193764, + -0.015518629923462868, + -0.010056344792246819, + -0.0027088297065347433, + -0.027297494933009148, + 0.019580142572522163, + 0.021127574145793915, + 0.010061879642307758, + -0.022456588223576546, + -0.08338195085525513, + 0.006432043854147196, + -0.003145666094496846, + -0.04642029106616974, + 0.06568089872598648, + -0.06622446328401566, + 0.03136226162314415, + -0.003982103429734707, + 0.026087604463100433, + -0.011479794047772884, + -0.04790297895669937, + 0.05443417280912399, + 0.004750986583530903, + -0.006229936145246029, + 0.019119516015052795, + -0.035745587199926376, + -0.02586827613413334, + 0.034752536565065384, + 0.007443972397595644, + -0.007362403906881809, + -0.15838618576526642, + -0.01692028157413006, + 0.022628583014011383, + -0.004110807552933693, + 0.032957542687654495, + -0.002793737920001149, + 0.04454744607210159, + -0.024681707844138145, + -0.006012551486492157, + -0.03483715280890465, + 0.04285149648785591, + 0.06929841637611389, + -0.0379076711833477, + -0.040545541793107986, + -0.03954845294356346, + -0.0023084585554897785, + 0.005738244391977787, + -0.020693689584732056, + 0.0013705557212233543, + 0.03597636520862579, + -0.02570386976003647, + 0.01588161289691925, + -0.007689863443374634, + 0.025802338495850563, + 0.05441341549158096, + 0.05307893455028534, + 0.03212101757526398, + 0.0721348375082016, + 0.00844115111976862, + 0.001782446401193738, + -0.009765355847775936, + -0.020988566800951958, + 0.01736827753484249, + -0.02177615463733673, + -0.037718869745731354, + 0.0029655122198164463, + 0.01669108308851719, + 0.04558376222848892, + 0.0229610875248909, + -0.020256374031305313, + 0.03193129971623421, + -0.021578628569841385, + -0.006208675913512707, + -0.01419484056532383, + -0.009087156504392624, + -0.00918208621442318, + -0.008747401647269726, + 0.03330923616886139, + -0.04334396868944168, + 0.02454858459532261, + 0.039018332958221436, + 0.035252753645181656, + 0.04931844025850296, + 0.020447280257940292, + 0.07096173614263535, + -0.010945890098810196, + 0.029529361054301262, + 0.002805211115628481, + 0.024096431210637093, + 0.03002079576253891, + 0.05470713973045349, + 0.028803104534745216, + -0.002952651586383581, + -0.02965625375509262, + -0.013577266596257687, + -0.0469512902200222, + 0.00995784904807806, + 0.009284643456339836, + -0.003821900812909007, + -0.004924830514937639, + 0.049799323081970215, + -0.006499328184872866, + 0.07078423351049423, + -0.003510481910780072, + 0.02192719839513302, + 0.03550862520933151, + 0.017024539411067963, + -0.024264546111226082, + -0.03691576421260834, + 0.060405321419239044, + 0.016452517360448837, + -0.02702363394200802, + 0.03940025717020035, + -0.04066155478358269, + 0.03197580203413963, + 0.02957879565656185, + 0.03435949236154556, + -0.009180973283946514, + -0.038572683930397034, + 0.011234086938202381, + 0.0038869697600603104, + -0.0007888743421062827, + -0.010958248749375343, + -0.031131668016314507, + -0.027867702767252922, + -0.016768792644143105, + 0.043169405311346054, + -0.0211782269179821, + -0.029188578948378563, + -0.04865318164229393, + -0.015576672740280628, + 0.018780110403895378, + 0.0011848396388813853, + 0.05562017485499382, + -0.005336079280823469, + 0.011691347695887089, + -0.06977478414773941, + -0.024499716237187386, + -0.006660639774054289, + -0.015206399373710155, + 0.004858733154833317, + -0.015486094169318676, + -0.022210031747817993, + 0.018979299813508987, + -0.04605028033256531, + 0.04850208759307861, + 0.017776187509298325, + -0.05933050438761711, + -0.022868342697620392, + -0.01612624153494835, + 0.003589500905945897, + -0.053519465029239655, + -0.009946519508957863, + 0.02042069099843502, + 0.005486129317432642, + 0.015041986480355263, + 0.014765437692403793, + 0.024114152416586876, + 0.02405061013996601, + -0.04485581815242767, + -0.02043609507381916, + -0.006513266824185848, + -0.027232561260461807, + 0.009549537673592567, + -0.08662960678339005, + 0.046431057155132294, + 0.002739764517173171, + -0.03555653244256973, + -0.044917117804288864, + 0.022591184824705124, + 0.0012138902675360441, + 0.0003570325206965208, + 0.038187023252248764, + -0.0022427693475037813, + 0.030919240787625313, + -0.006931940093636513, + 0.028425030410289764, + 0.019814126193523407, + -0.037803273648023605, + 0.024304963648319244, + 0.001139947329647839, + -0.01067278627306223, + -0.016671283170580864, + -0.018212376162409782, + 0.029812514781951904, + 0.024313561618328094, + 0.013690531253814697, + 0.024813352152705193, + -0.0016066590324044228, + 0.024150364100933075, + -0.0035929332952946424, + -0.07913993299007416, + 0.017028162255883217, + -0.04755937308073044, + 0.030512813478708267, + -0.019903529435396194, + -0.10557638108730316, + -0.026226205751299858, + 0.0265964362770319, + 0.05925311520695686, + 0.009563947096467018, + -0.003765821224078536, + -0.028724461793899536, + -0.027548259124159813, + 0.009716489352285862, + 0.025403054431080818, + -0.004265603609383106, + -0.03348487615585327, + 0.0020974730141460896, + 0.015530792996287346, + -0.07197729498147964, + -0.007541959173977375, + -0.016583425924181938, + -0.0012308276491239667, + 0.006677626166492701, + -0.03861765190958977, + 0.04466681554913521, + -0.0007007488748058677, + -0.018908312544226646, + -0.014403928071260452, + 0.03242446109652519, + 0.04205682873725891, + -0.04851581156253815, + 0.018930701538920403, + -0.002287918236106634, + -0.011516280472278595, + 0.0001794885320123285, + 0.022081246599555016, + -0.0026944836135953665, + -0.03473825380206108, + -0.012070942670106888, + 0.013486326672136784, + 0.02537614293396473, + -0.016978876665234566, + -0.0290310587733984, + 0.004580050241202116, + 0.00486362399533391, + -0.008336598984897137, + -0.028799021616578102, + 0.008379255421459675, + -0.07388164848089218, + 0.02337493747472763, + -0.023628121241927147, + 0.008213457651436329, + -0.019015168771147728, + -0.0358906090259552, + 0.031593021005392075, + -0.008483419194817543, + -0.015087442472577095, + -0.0287923663854599, + 0.008620877750217915, + -0.007142988964915276, + -0.02670160122215748, + 0.013666831888258457, + 0.006086424924433231, + 0.013655629009008408, + -0.01934102550148964, + -0.04245223477482796, + -0.00248219957575202, + 0.01304508838802576, + 0.014042584225535393, + -0.04476001858711243, + -0.009649782441556454, + 0.01215349230915308, + -0.007354177068918943, + 0.002898531500250101, + 0.01553303562104702, + 0.011350675486028194, + -0.010974384844303131, + 0.009860300458967686, + -0.02039068005979061, + -0.0065173800103366375, + 0.0277685709297657, + 0.005341327749192715, + -0.043609123677015305, + -0.04541829600930214, + 0.0020851572044193745, + 0.03624628111720085, + -0.008660982362926006, + -0.014267440885305405, + 0.010864410549402237, + 0.027398141101002693, + 0.017748460173606873, + -0.023246275261044502, + 0.0011784953530877829, + 0.03798316791653633, + -0.03025471232831478, + 0.027089601382613182, + -0.01815108396112919, + 0.031052466481924057, + 0.04155625402927399, + 0.00491184089332819, + -0.005555001087486744, + 0.022973770275712013, + 0.0025553577579557896, + -0.01701834425330162, + 0.031734663993120193, + -0.04725910350680351, + 0.038671061396598816, + -0.01632830500602722, + 0.005579928867518902, + -0.03703077882528305, + -0.026220789179205894, + -0.03451308235526085, + 0.05568530037999153, + 0.047649819403886795, + 0.004680059850215912, + 0.013082407414913177, + 0.03907309100031853, + -0.02480011247098446, + -0.03553866967558861, + 0.02638213150203228, + -0.0021629591938108206, + -0.022695451974868774, + 0.040593717247247696, + -0.022114083170890808, + -0.039027661085128784, + 0.03479423373937607, + -0.00694543682038784, + 0.008931663818657398, + 0.06033763289451599, + 0.08646877110004425, + 0.013064216822385788, + 0.03882657736539841, + 0.04376157000660896, + 0.03347713127732277, + 0.012943909503519535, + -0.005306764971464872, + -0.01392426062375307, + 0.006878223270177841, + 0.045877471566200256, + -0.011839943937957287, + 0.014903767965734005, + 0.025135504081845284, + 0.015203965827822685, + -0.060476627200841904, + 0.025414003059267998, + 0.002197511028498411, + 0.0003776217927224934, + 0.024210529401898384, + -0.04496084526181221, + 0.00030913404771126807, + 0.026203960180282593, + 0.059783466160297394, + 0.058826252818107605, + -0.0005725650698877871, + 0.014234816655516624, + 0.05353113263845444, + -0.048427239060401917, + 0.00760626932606101, + 0.03171538934111595, + 0.009372012689709663, + 0.0011026611318811774, + 0.008692233823239803, + -0.03486263006925583, + -0.023488089442253113, + -0.04495883360505104, + 0.04715948551893234, + 0.02372565120458603, + 0.042082611471414566, + 0.01045510545372963, + -0.028321534395217896, + 0.03451443091034889, + -0.01745874248445034, + 0.028776295483112335, + -0.008305598981678486, + 0.02261209860444069, + 0.018830187618732452, + -0.01742975227534771, + -0.03685435652732849, + -0.01539657637476921, + 0.027611276134848595, + -0.03061998076736927, + -0.021455135196447372, + -0.022181065753102303, + 0.025100141763687134, + -0.033294375985860825, + 0.028866209089756012, + -0.01950952038168907, + 0.010663364082574844, + -0.0035622352734208107, + -0.07334762811660767, + -0.010583275929093361, + 0.022419432178139687, + -0.06310490518808365, + 0.008077136240899563, + -0.01383570209145546, + 0.03307002782821655, + 0.007460725028067827, + 0.031576383858919144, + -0.01773579977452755, + -0.03253638371825218, + 0.0032213081140071154, + 0.013696529902517796, + -0.01306131761521101, + -0.009212029166519642, + -0.03852294385433197, + 0.06476698815822601, + -0.021361319348216057, + 0.0014578958507627249, + 0.0424656867980957, + -0.06766121089458466, + 0.0653209313750267, + 0.022615956142544746, + 0.018041720613837242, + 0.019757641479372978, + 0.022215718403458595, + -0.04374852776527405, + -0.05901511758565903, + 0.03753916919231415, + -0.0011515611549839377, + 0.05681716650724411, + -0.0031400418374687433, + 0.04270055890083313, + 0.020952580496668816, + 0.007054306101053953, + 0.005907424725592136, + -0.03737970441579819, + -0.007124324794858694, + -0.039032820612192154, + -0.014186992309987545, + 0.001543331192806363, + -0.0027975027915090322, + -0.014262006618082523, + -0.009971055202186108, + 0.014648416079580784, + -0.03413564711809158, + 0.005316995084285736, + -0.00806438084691763, + -0.00972616858780384, + 0.024984778836369514, + -0.0026276742573827505, + 0.012766452506184578, + 0.0022258711978793144, + -0.05022886022925377, + 0.0026766119990497828, + -0.006065714173018932, + 0.010939309373497963, + 0.03274151310324669, + 0.03168955445289612, + -0.023320620879530907, + -0.006572966929525137, + -0.015728166326880455, + 0.05854317918419838, + 0.0259866863489151, + 0.03364461660385132, + -0.015033635310828686, + -0.05630951002240181, + 0.007656486704945564, + -0.02035873383283615, + 0.0011809607967734337, + -0.010310349985957146, + -0.04595981538295746, + 0.04157136753201485, + 0.03566219285130501, + 0.044568274170160294, + -0.029210904613137245, + 0.04264549911022186, + 0.004253406543284655, + 0.013667608611285686, + 0.002131771994754672, + -0.014009520411491394, + -0.014669365249574184, + -0.002587467199191451, + 0.035420533269643784, + -0.006936857011169195, + -0.013476033695042133, + -0.02015024796128273, + 0.04239845648407936, + 0.021433500573039055, + 0.029140153899788857, + -0.002299494808539748, + 0.029039667919278145, + -0.02921081893146038, + -0.010178305208683014, + -0.003325836034491658, + 0.006603866349905729, + -0.0425591841340065, + -0.0003743474662769586, + -0.015805859118700027, + 0.03494048863649368, + -0.008687007240951061, + 0.025862548500299454, + 0.002979221288114786, + -0.02092452347278595, + 0.018262391909956932, + -0.00297882710583508, + -0.030810736119747162, + 0.038978271186351776, + 0.013717543333768845, + 0.02944228984415531, + 0.025197938084602356, + -0.03690563887357712, + -0.030221350491046906, + 0.007359555456787348, + -0.015622736886143684, + 0.0819849818944931, + -0.01147819496691227, + -0.008155100047588348, + 0.033197835087776184, + 0.0367189422249794, + 0.03531721234321594, + 0.0024683154188096523, + 0.018453536555171013, + 0.019507361575961113, + 0.028899166733026505, + 0.005077780690044165, + 0.027780186384916306, + -0.04431593418121338, + 0.0012573099229484797, + -0.0025343499146401882, + -0.0377417728304863, + -0.010173623450100422, + -0.059574924409389496, + 0.017116982489824295, + -0.024918898940086365, + -0.0009710659505799413, + 0.02855481579899788, + -0.04038896784186363, + -0.016562320291996002, + 0.013521261513233185, + -0.04388730973005295, + 0.005104245152324438, + -0.006537533365190029, + 0.022742122411727905, + 0.006961436942219734, + 0.03840402886271477, + 0.015065442770719528, + -0.01199310552328825, + -0.032496094703674316, + 0.04709847271442413, + -0.0064528160728514194, + 0.03180227801203728, + -0.011682243086397648, + -0.001773193827830255, + 0.04810860753059387, + -0.03747178614139557, + -0.0021836620289832354, + -0.007860702462494373, + 0.015973173081874847, + 0.017384115606546402, + 0.04005672410130501, + -0.04293147847056389, + -0.018132518976926804, + 0.015782417729496956, + -0.013286038301885128, + 0.023783588781952858, + -0.04413037747144699, + 0.019235987216234207, + 0.03606230765581131, + -0.02920423075556755, + 0.004761719144880772, + 0.02275661565363407, + 0.019250350072979927, + -0.006850564386695623, + -0.002557657426223159 + ], + "start_index": 27992, + "end_index": 28021, + "token_count": 3, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "f700a8dd-499e-5b1c-832b-4373328cde0c", + "_source": { + "text": "\n\n---\n\n# X.6 Delimitadores\n\nLos siguientes símbolos delimitan estructuras sintácticas.\n\n\n\n(\n)\n[\n]\n{\n}\n,\n.\n:", + "embedding": [ + -0.011926600709557533, + -0.0013185875723138452, + -0.010081789456307888, + -0.1085204929113388, + -0.01284489594399929, + 0.04946864768862724, + -0.05053175240755081, + 0.016119984909892082, + -0.012520749121904373, + -0.03223185986280441, + 0.02420218475162983, + -0.05459721013903618, + 0.033130135387182236, + -0.005584407597780228, + -0.03926271200180054, + 0.026230012997984886, + 0.03068212792277336, + 0.04395268112421036, + -0.04964940622448921, + -0.05513983964920044, + -0.024042246863245964, + 0.010423792526125908, + -0.057422224432229996, + 0.07377658784389496, + 0.00016951022553257644, + 0.014867371879518032, + -0.013621780090034008, + 0.03871408477425575, + 0.005994398612529039, + -0.024466093629598618, + -0.006403916981071234, + -0.04018769413232803, + -0.03886571153998375, + -0.01672322303056717, + -0.03443840518593788, + -0.008893092162907124, + -0.0441284105181694, + -0.04874914512038231, + -0.012990005314350128, + 0.019340576604008675, + -0.012435772456228733, + 0.009133216924965382, + -0.031816523522138596, + 0.006948042195290327, + 0.029320349916815758, + 0.000725816295016557, + 0.011931822635233402, + 0.017796223983168602, + 0.012349226512014866, + 0.035089753568172455, + -0.03592156246304512, + -0.0317215770483017, + 0.052017904818058014, + -0.038267120718955994, + -0.010927648283541203, + 0.026729479432106018, + -0.02686980552971363, + -0.06534537672996521, + 0.0022089420817792416, + 0.008115703240036964, + 0.038517896085977554, + -0.045065924525260925, + 0.006670577451586723, + 0.06863396614789963, + 0.025382986292243004, + 0.0043702335096895695, + -0.034184470772743225, + -0.002654545707628131, + -0.03114866279065609, + -0.004250666592270136, + -0.0203439611941576, + 0.03508947417140007, + 0.01536103431135416, + 0.022916020825505257, + 0.006725296378135681, + 0.004554354585707188, + 0.03010428510606289, + -0.018917463719844818, + -0.02057645656168461, + 0.019496656954288483, + 0.025912679731845856, + 0.02954161912202835, + 0.05125800520181656, + -0.011135784909129143, + 0.017343610525131226, + 0.06790013611316681, + -0.07873372733592987, + -0.04140608385205269, + -0.0021959319710731506, + 0.028762297704815865, + 0.018411295488476753, + 0.04859570041298866, + 0.011390137486159801, + -0.0528155080974102, + 0.05857129395008087, + 0.006040648091584444, + 0.029345020651817322, + 0.042989592999219894, + 0.003742063185200095, + -0.015350334346294403, + -0.0339469313621521, + -0.03227168694138527, + 0.004161042161285877, + 0.06795176863670349, + 0.018290065228939056, + 0.023523738607764244, + 0.02435002289712429, + 0.031483717262744904, + -0.027095651254057884, + 0.002642641309648752, + 0.016915716230869293, + 0.03147974982857704, + 0.03276100382208824, + 0.12400690466165543, + 0.03499962389469147, + -0.026645295321941376, + 0.02835918217897415, + 0.0038041400257498026, + 0.014979066327214241, + 0.01261978317052126, + -0.016200125217437744, + -0.005314132198691368, + 0.0052947658114135265, + -0.00209747813642025, + 0.05461415648460388, + -0.014021167531609535, + -0.038225047290325165, + -0.006794423796236515, + -0.007152206264436245, + 0.03288676217198372, + -0.006273145321756601, + 0.014965743757784367, + -0.0026467284187674522, + -0.03694633021950722, + -0.01079001184552908, + -0.03522077575325966, + 0.012438074685633183, + -0.08425834774971008, + 0.05216371640563011, + -0.005632792133837938, + 0.018212739378213882, + 0.009063465520739555, + 0.010033586993813515, + -0.0128019442781806, + 0.017018483951687813, + 0.01006472110748291, + 0.01567104458808899, + -0.0025547852274030447, + -0.011302957311272621, + 0.054104018956422806, + -0.017662959173321724, + -0.00553984334692359, + -0.04397549480199814, + -0.004988484550267458, + -0.010757953859865665, + -0.024664700031280518, + 0.022283462807536125, + -0.0004580927488859743, + 0.008090636692941189, + 0.03008192591369152, + -0.012549804523587227, + 0.00318400701507926, + -0.014309399761259556, + -0.036601532250642776, + 0.005627855192869902, + -0.01209112349897623, + -0.02471121959388256, + -0.03365286439657211, + 0.0305636003613472, + 0.036310967057943344, + 0.00022156699560582638, + -0.014733848161995411, + 0.012888728640973568, + -0.02046910487115383, + -0.024681393057107925, + -0.03050045110285282, + -0.012278304435312748, + -0.01402525044977665, + -0.04215267673134804, + 0.016179122030735016, + -0.023040536791086197, + -0.006015484686940908, + 0.010512723587453365, + -0.007676547393202782, + 0.030843857675790787, + 0.05561261624097824, + -0.014567001722753048, + 0.004669741727411747, + -0.005152676720172167, + -0.040826331824064255, + 0.016468292102217674, + -0.004994410555809736, + -0.06496014446020126, + 0.008936822414398193, + -0.010042284615337849, + -0.02686009556055069, + 0.018454842269420624, + -0.017636189237236977, + 0.024897322058677673, + -0.005440791603177786, + 0.02084987424314022, + 0.0043134428560733795, + -0.013369325548410416, + 0.05283135548233986, + -0.051746632903814316, + -0.03892003744840622, + -0.010136929340660572, + -0.0019990422297269106, + 0.0064841448329389095, + -0.017181318253278732, + -0.018296821042895317, + 0.0034931835252791643, + -0.03376225754618645, + -0.03407444432377815, + 0.005787975620478392, + 0.0318596176803112, + 0.00022395089035853744, + 0.02721690572798252, + -0.002809211378917098, + 0.012945093214511871, + 0.017179474234580994, + 0.0017677397700026631, + -0.04930213466286659, + -0.00598169956356287, + 0.06070573255419731, + 0.003080874914303422, + 0.0200056005269289, + -0.0180071834474802, + -0.006126264575868845, + -0.008503816090524197, + 0.011890290305018425, + 0.025898968800902367, + 0.028871219605207443, + 0.015388046391308308, + 0.012095692567527294, + -0.007129741366952658, + 0.0007829967071302235, + -0.03894485533237457, + 0.017169782891869545, + -0.08084507286548615, + -0.018181579187512398, + -0.014157494530081749, + 0.022293951362371445, + 0.01282500009983778, + -0.01465028990060091, + 0.014540452510118484, + 0.007696146611124277, + -0.018057946115732193, + -0.0016945297829806805, + -0.019330153241753578, + 0.06308680772781372, + 0.0742216408252716, + -0.04011015221476555, + -0.0461825430393219, + -0.006593724247068167, + 0.03526786342263222, + 0.011602897197008133, + -0.05754230171442032, + 0.025005217641592026, + 0.0013152076862752438, + -0.02672450616955757, + -0.02005188912153244, + -0.000918911537155509, + -0.014278016053140163, + 0.01766734942793846, + 0.05249762535095215, + -0.01106517668813467, + -0.03133808448910713, + -0.028626225888729095, + -0.030429475009441376, + -0.022887730970978737, + 0.00991350319236517, + 0.004117418546229601, + -0.023524465039372444, + -0.013657500967383385, + 0.03398334980010986, + 0.03817693516612053, + -0.04379598796367645, + -0.03843046724796295, + -0.019340524449944496, + -0.0195594634860754, + -0.03817594423890114, + -0.026297230273485184, + -0.011961023323237896, + 0.014465219341218472, + 0.03643987327814102, + 0.007679146248847246, + -0.017465073615312576, + 0.06046302244067192, + -0.02889479696750641, + 0.012663476169109344, + 0.032892465591430664, + -0.04699498787522316, + 0.01116660051047802, + -0.004996876232326031, + -0.02666088379919529, + -0.02230551466345787, + 0.03598403185606003, + -0.011539171449840069, + -0.0006076269201003015, + -0.01418103277683258, + 0.04074786603450775, + 0.0034718329552561045, + -0.03923465684056282, + -0.08320582658052444, + -0.0032146500889211893, + 0.06374191492795944, + -0.01076180674135685, + 0.0492999367415905, + 0.00015412640641443431, + 0.01885896548628807, + 0.026546766981482506, + -0.009401870891451836, + -0.03856707736849785, + 0.044488370418548584, + 0.03687560185790062, + 0.016281161457300186, + 0.02764856070280075, + 0.031820666044950485, + -0.0012357250088825822, + -0.00884016789495945, + 0.0063349404372274876, + 0.015373975969851017, + 0.022620251402258873, + -0.0011007983703166246, + -0.01688857562839985, + 0.08458667993545532, + -0.038383372128009796, + -0.0028122554067522287, + 0.04066496342420578, + -0.009581522084772587, + 0.002087168861180544, + 0.02183503657579422, + 0.00075309764361009, + -0.02455420047044754, + -0.0010289233177900314, + -0.02225366234779358, + 0.011778286658227444, + 0.0003960650064982474, + 0.0021646989043802023, + 0.026389410719275475, + 0.028161749243736267, + -0.04187621921300888, + 0.01738125830888748, + -0.01136604230850935, + -0.06835290789604187, + 0.0044993082992732525, + 0.029510198161005974, + 0.003472053213045001, + -0.009099639020860195, + -0.0020714958664029837, + -0.003294005524367094, + -0.019520578905940056, + -0.010769174434244633, + 0.020274560898542404, + -0.05902379751205444, + -0.018140386790037155, + 0.07018418610095978, + 0.01455882377922535, + -0.051778484135866165, + -0.021973609924316406, + -0.0009434517123736441, + -0.026618149131536484, + 0.032447751611471176, + 0.015196405351161957, + -0.006626982241868973, + -0.011494961567223072, + -0.031064776703715324, + -0.01751399040222168, + -0.03315204381942749, + -0.07144556939601898, + -0.023031985387206078, + -0.036836232990026474, + 0.057706836611032486, + 0.029470933601260185, + 0.031033284962177277, + 0.05608406662940979, + 0.044663019478321075, + 0.022563714534044266, + 0.052616845816373825, + -0.01596882939338684, + 0.011328200809657574, + 0.005359277594834566, + 0.04512585699558258, + -0.0219500083476305, + 0.0022790255025029182, + 0.03370048478245735, + -0.017136400565505028, + -0.03799092024564743, + -0.016165846958756447, + -0.006402937695384026, + 0.007657293695956469, + 0.0038660364225506783, + 0.02617538534104824, + -0.0044548483565449715, + 0.04406945779919624, + -0.030035892501473427, + -0.062458138912916183, + -0.003411900019273162, + -0.041877616196870804, + 0.0026392722502350807, + 0.009380749426782131, + 0.0074000428430736065, + 0.014355582185089588, + 0.013584517873823643, + -0.03546711057424545, + -0.020826322957873344, + 0.010195380076766014, + -0.0009618314215913415, + 0.006746720056980848, + 0.03459754213690758, + 0.0032360677141696215, + -0.05830059573054314, + -0.0033318845089524984, + -0.005667653866112232, + -0.02229267917573452, + 0.013973449356853962, + -0.06871915608644485, + -0.01141173206269741, + -0.0275704525411129, + -0.0067925164476037025, + 0.03466447815299034, + 0.009494815953075886, + 0.026393821462988853, + 0.0476524718105793, + 0.005085183773189783, + 0.00594675587490201, + -0.023931065574288368, + -0.005490874405950308, + 0.010334139689803123, + -0.033710770308971405, + -0.03306214511394501, + -0.0005320332711562514, + 0.04915378987789154, + -0.029040392488241196, + 0.01431521400809288, + 0.07768277823925018, + 0.03618846461176872, + 0.01617458090186119, + -0.022887548431754112, + -0.0313311330974102, + -0.029686927795410156, + -0.009630466811358929, + 0.029260694980621338, + -0.03884413093328476, + 0.01696627214550972, + -0.038988806307315826, + 0.05308355391025543, + -0.02009401097893715, + -0.02643384411931038, + 0.005425787530839443, + 0.01470858883112669, + 0.047006044536828995, + -0.025246448814868927, + 0.02709166333079338, + -0.013334427960216999, + 0.00015490355144720525, + -0.16513647139072418, + -0.012805105186998844, + 0.016868773847818375, + -0.005272390320897102, + -0.015382603742182255, + -0.003306382102891803, + -0.05222187936306, + -0.024229275062680244, + 0.04937583580613136, + 0.03289390355348587, + -0.0020807646214962006, + 0.056641049683094025, + 0.0030297476332634687, + 0.03460443764925003, + -0.00038826907984912395, + -0.012641927227377892, + 0.009520703926682472, + 0.018431104719638824, + 0.007380066439509392, + -0.014374751597642899, + 0.03250212222337723, + -0.05746281147003174, + 0.033877402544021606, + -0.017593231052160263, + -0.07005234062671661, + 0.02068917825818062, + -0.07974174618721008, + 0.027294088155031204, + -0.04774057865142822, + -0.011206001974642277, + -0.004989171400666237, + -0.050850190222263336, + -0.002240952104330063, + -0.02798403985798359, + -0.01276219543069601, + 0.054913341999053955, + 0.015341884456574917, + 0.05164635553956032, + 0.017403237521648407, + 0.019417274743318558, + 0.04280689358711243, + -0.08857685327529907, + -0.00435634097084403, + 0.040575698018074036, + -0.016543226316571236, + 0.013639761134982109, + 0.025479964911937714, + 0.01907982863485813, + -0.030014635995030403, + 0.04749445244669914, + -0.00033079806598834693, + 0.004898525308817625, + 0.0971568375825882, + -0.03431866317987442, + -0.011541697196662426, + 0.0029416887555271387, + 0.03373038396239281, + 0.033755335956811905, + -0.055846523493528366, + -0.027369841933250427, + 0.037602994590997696, + -0.015810659155249596, + 0.03016544133424759, + 0.05299394205212593, + 0.024172965437173843, + 0.04739347845315933, + 0.02858690358698368, + 0.018259940668940544, + -0.029462043195962906, + 0.00442255474627018, + 0.026386817917227745, + -0.021036876365542412, + -0.03515050560235977, + 0.031126022338867188, + -0.010987148620188236, + 0.03486962243914604, + -0.030455542728304863, + -0.027239451184868813, + -0.026982611045241356, + -0.014464475214481354, + -0.007976194843649864, + 0.038595277816057205, + 0.021468540653586388, + -0.02610180899500847, + 0.028146030381321907, + -0.011119095608592033, + 0.00032947133877314627, + 0.01704159379005432, + -0.010017619468271732, + -0.013955100439488888, + -0.013488666154444218, + -0.0016615177737548947, + 0.005418635439127684, + 0.017707407474517822, + 0.02472633309662342, + 0.03332138806581497, + -0.028912201523780823, + -0.027992751449346542, + 0.04520886763930321, + 0.014030829071998596, + 0.03650243580341339, + 0.027003303170204163, + -0.03322886675596237, + 0.03125679865479469, + -0.09352801740169525, + 0.0015420995187014341, + 0.06446552276611328, + 0.03875838220119476, + 0.00722818449139595, + -0.015182210132479668, + -0.009577158838510513, + 0.014274457469582558, + -0.0408969447016716, + -0.04015243053436279, + 0.037919070571660995, + -0.010852615348994732, + 0.02057061158120632, + -0.008870693854987621, + -0.053321465849876404, + -0.029789499938488007, + 0.01325003057718277, + -0.004464919213205576, + -0.0406346321105957, + 0.04193464666604996, + -0.002838181098923087, + 0.0196085125207901, + 0.03005245141685009, + -0.00040634258766658604, + -0.0025951117277145386, + -0.041111432015895844, + -0.001816443633288145, + 0.0034163855016231537, + -0.012471160851418972, + -0.015489869751036167, + -0.037852250039577484, + -0.005121010355651379, + 0.024928880855441093, + 0.014534473419189453, + 0.013157326728105545, + -0.028598064556717873, + 0.046245425939559937, + 0.01982121914625168, + -0.021235700696706772, + 0.005985869560390711, + 0.03239741548895836, + -0.04268670454621315, + 0.01422447431832552, + -0.042823728173971176, + -0.03746937960386276, + -0.0063191065564751625, + -0.0011983115691691637, + -0.0386483296751976, + -0.005407707300037146, + -0.03050476312637329, + -0.00046883776667527854, + 0.019711580127477646, + 0.055868200957775116, + -0.01592433825135231, + -0.06462915241718292, + -0.008699651807546616, + 0.003479298669844866, + 0.015457692556083202, + -0.011354084126651287, + 0.020818976685404778, + -0.01361427828669548, + 0.04026465862989426, + 0.05369139090180397, + 0.03188241273164749, + 0.011923221871256828, + -0.0015701992670074105, + -0.021632332354784012, + 0.037299782037734985, + 0.0005187626229599118, + -0.021798154339194298, + 0.029964320361614227, + -0.006017736624926329, + -0.009202170185744762, + -0.01464288029819727, + -0.05637789145112038, + 0.018547911196947098, + -0.0047691138461232185, + -0.002240716712549329, + -0.026511404663324356, + 0.013399986550211906, + -0.02813657559454441, + 0.0014598157722502947, + 0.04476790875196457, + 0.00590119231492281, + -0.04610922560095787, + -0.04835806041955948, + -0.024806933477520943, + -0.014838097617030144, + -0.025020569562911987, + -0.0009603556245565414, + 0.006734755821526051, + 0.024074433371424675, + -0.02724028192460537, + -0.0703258290886879, + -0.011392894200980663, + 0.01674790307879448, + -0.028734607622027397, + -0.01430327259004116, + -0.0628947988152504, + 0.01747024990618229, + -0.06263051927089691, + 0.014092719182372093, + 0.011218197643756866, + -0.016025418415665627, + -0.050019484013319016, + 0.04500456154346466, + 0.059336673468351364, + 0.04310477152466774, + 0.03743709623813629, + -0.06440186500549316, + -0.03341000899672508, + -0.00790392979979515, + 0.041952185332775116, + -0.009333379566669464, + -0.008833684027194977, + 0.008462280966341496, + -0.0680580660700798, + 0.020868171006441116, + -0.009500945918262005, + -0.014205427840352058, + 0.006176501978188753, + 0.022460365667939186, + -0.012199966236948967, + 0.03210480511188507, + -0.0351247675716877, + -0.06001943349838257, + 0.03233940526843071, + 0.036445289850234985, + -0.03950357064604759, + -0.011855578981339931, + 0.00824125949293375, + 0.018054453656077385, + 0.0049266451969742775, + 0.027770288288593292, + 0.01843518204987049, + -0.019842738285660744, + -0.028958074748516083, + -0.01991962268948555, + -0.02573322504758835, + -0.00176145788282156, + -0.01379797887057066, + -0.02673320658504963, + -0.03587929531931877, + -0.0026478657964617014, + -0.05855172127485275, + -0.05626697093248367, + 0.021737990900874138, + -0.05333605408668518, + -0.021420247852802277, + 0.043621283024549484, + 0.02097073569893837, + 0.003761513624340296, + -0.03852839022874832, + -0.02929259091615677, + 0.006200321484357119, + -0.01738172397017479, + -0.031572144478559494, + -0.06397570669651031, + 0.01897197775542736, + 0.021973691880702972, + -0.018185701221227646, + 0.025590917095541954, + 0.031180208548903465, + -0.026841439306735992, + -0.029454784467816353, + -0.025975815951824188, + 0.02669302374124527, + 0.045422669500112534, + -0.032678376883268356, + 0.0638720840215683, + 0.011781183071434498, + 0.003945944830775261, + 0.025808094069361687, + 0.02843703143298626, + -0.03657082840800285, + -0.015986589714884758, + -0.024279313161969185, + -0.013452950865030289, + 0.023790432140231133, + -0.04564303159713745, + 0.0401797853410244, + 0.04900563135743141, + 0.019720206037163734, + 0.005011223256587982, + -0.049975622445344925, + -0.018613774329423904, + 0.03496120870113373, + 0.030350983142852783, + 0.0248239915817976, + 0.01789468340575695, + -0.017934730276465416, + -0.026832934468984604, + -0.012419203296303749, + -0.03931514173746109, + 0.015048515982925892, + 0.006978237070143223, + 0.034207846969366074, + 0.0035275639966130257, + -0.0029752966947853565, + -0.004596862476319075, + -0.037361208349466324, + -0.01690622977912426, + 0.03830209746956825, + 0.021723832935094833, + -0.04511493816971779, + -0.031992457807064056, + -0.03742377832531929, + 0.00818554311990738, + -0.012966886162757874, + 0.02166173607110977, + -0.04164282977581024, + 0.02394239977002144, + 0.027532532811164856, + 0.05127258971333504, + 0.026032358407974243, + 0.019010869786143303, + -0.0450500063598156, + 0.0005349321290850639, + -0.01369389332830906, + 0.015884896740317345, + -0.07809438556432724, + 0.0100953234359622, + -0.0034653444308787584, + -0.015845049172639847, + 0.08012773096561432, + -0.046527210623025894, + 0.003627016907557845, + 0.05599834769964218, + -0.015531177632510662, + -0.0016731583746150136, + -0.022029509767889977, + 0.05458259582519531, + -0.0036363177932798862, + -0.006927922368049622, + 0.011342046782374382, + -0.014463170431554317, + 0.02382528968155384, + -0.005803679581731558, + 0.00022634834749624133, + -0.035097118467092514, + -0.0372740663588047, + -0.00789529550820589, + 0.0281166173517704, + 0.021105192601680756, + 0.01930076628923416, + 0.029160287231206894, + 0.02202826365828514, + 0.014035084284842014, + 0.004232784733176231, + -0.038641784340143204, + -0.019824348390102386, + 0.049677155911922455, + 0.03660466521978378, + 0.011573000811040401, + -0.014755633659660816, + -0.05865996703505516, + 0.00040459679439663887, + 0.02484627440571785, + 0.027400653809309006, + -0.01204411219805479, + -0.02800033614039421, + -0.010561265982687473, + 0.03285101428627968, + -0.04121380299329758, + 0.0788741186261177, + 0.0027612235862761736, + 0.03977160528302193, + -0.03849910944700241, + 0.03197421133518219, + -0.0003291937173344195, + -0.04275080934166908, + 0.0534035786986351, + 0.03738187253475189, + 0.022945966571569443, + 0.00025783784803934395, + -0.029942408204078674, + -0.046895191073417664, + -0.00778662646189332, + -0.01384939905256033, + 0.005747847259044647, + -0.04950692877173424, + 0.013863593339920044, + 0.02584197372198105, + 0.011693010106682777, + 0.026126207783818245, + 0.031529974192380905, + 0.04856167733669281, + 0.03269035369157791, + -0.024851210415363312, + 0.03746599331498146, + 0.0007682871073484421, + -0.03454156592488289, + 0.007290614303201437, + -0.035471368581056595, + 0.04624428600072861, + -0.034674059599637985, + 0.05396632105112076, + -0.041337236762046814, + 0.054366253316402435, + -0.07384403795003891, + 0.011477252468466759, + -0.008690048940479755, + 0.038526471704244614, + -0.005197630729526281, + 0.03121613897383213, + 0.014021769165992737, + -0.0002470455365255475, + 0.02701539546251297, + 0.004757869988679886, + 0.008786632679402828, + 0.024958964437246323, + -0.08780108392238617, + -0.0324307456612587, + -0.03391173481941223, + 0.025761153548955917, + 0.011184128932654858, + 0.01195386704057455, + -0.00978116225451231, + 0.0002488426980562508, + -0.010915495455265045, + 0.028275424614548683, + 0.02056961879134178, + -0.005073456093668938, + 0.004892605822533369, + 0.009208747185766697, + -0.030119281262159348, + -0.019120268523693085, + -0.028732022270560265, + 0.002172703156247735, + -0.031124839559197426, + 0.015878096222877502, + 0.0036278546322137117, + -0.023619865998625755, + -0.03558812662959099, + 0.017730742692947388, + 0.027925822883844376, + 0.011281969957053661, + 0.012181415222585201, + -0.032667554914951324, + 0.014716708101332188, + 0.03648589923977852, + -0.027101321145892143, + 0.03712289407849312, + -0.011939522810280323, + 0.0032089673914015293, + 0.0066818068735301495, + 0.0394798181951046, + -0.00785976555198431, + -0.004793707747012377, + -0.0011256365105509758, + 0.0030320188961923122, + 0.0127621591091156, + -0.014015110209584236, + 0.030307581648230553, + -0.05307728424668312, + -0.02064555510878563, + -0.04214062541723251, + -0.0507211871445179, + -0.03329310566186905, + -0.012453626841306686, + -0.029798442497849464, + 0.03592117130756378, + 0.036619894206523895, + -0.025006020441651344, + -0.013277711346745491, + 0.008051595650613308, + -0.028652315959334373, + 0.028373800218105316, + 0.00023496206267736852, + -0.0536542609333992, + -0.023272570222616196, + 0.06964605301618576, + -0.021283291280269623, + 0.03742363676428795, + -0.04992363974452019, + 0.060476358979940414, + 0.06522563844919205, + -0.004157903138548136, + -0.029866525903344154, + 0.007807938382029533, + -0.02589266188442707, + -0.009458805434405804, + 0.03878728300333023, + -0.005170212127268314, + 0.022536098957061768, + 0.0022989914286881685, + -0.01752997189760208, + 0.0029219696298241615, + 0.013525285758078098, + -0.022497057914733887, + 0.005836940836161375, + -0.013006874360144138, + 0.00494712358340621, + -0.007220543455332518, + 0.037786129862070084, + 0.0040001291781663895, + -0.020432526245713234, + -0.00959068350493908, + 0.015933062881231308, + -0.013264981098473072, + -0.009913107380270958, + -0.017234472557902336, + 0.0016893756110221148, + -0.019836347550153732, + -0.038598284125328064, + -0.012070485390722752, + 0.0013406496727839112, + -0.05785135179758072, + -0.03422151505947113, + 0.03725307062268257, + -0.0016059593763202429, + -0.0007175611681304872, + 0.016949256882071495, + 0.006250282283872366, + -0.004791094921529293, + -0.032712940126657486, + 0.010084634646773338, + 0.06858720630407333, + -0.04657190293073654, + -0.039190132170915604, + 0.023378364741802216, + 0.01859911158680916, + 0.009065386839210987, + -0.011400748044252396, + 0.015418408438563347, + 0.0011059805983677506, + 0.013222973793745041, + -0.008453991264104843, + -0.019271239638328552, + 0.005929477978497744, + -0.013500681146979332, + 0.09738827496767044, + -0.03338904306292534, + -0.06029645353555679, + 0.019960418343544006, + -0.007751955185085535, + 0.038397517055273056, + 0.005063684657216072, + -0.03400462865829468, + 0.03624970465898514, + 0.000288332172203809, + -0.006453291978687048, + 0.016746440902352333, + -0.016968751326203346, + 0.011062256060540676, + -0.025698622688651085, + -0.045205917209386826, + 0.04993026331067085, + 0.028359433636069298, + 0.007964910008013248, + 0.006605795584619045, + 0.03427547961473465, + 0.03647589311003685, + 0.01901974529027939, + 0.031033596023917198, + 0.042652640491724014, + -0.01137111708521843, + -0.010705963708460331, + 0.045171160250902176, + 0.07635242491960526, + 0.013674605637788773, + 0.005064633209258318, + -0.010443521663546562 + ], + "start_index": 28021, + "end_index": 28134, + "token_count": 26, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "fccee4fb-0daa-55cb-a4e4-a9a30c5140e3", + "_source": { + "text": "\n\nTokens:\n\n\n\nLPAREN\nRPAREN\nLBRACKET\nRBRACKET\nLBRACE\nRBRACE\nCOMMA\nDOT\nCOLON", + "embedding": [ + 0.028460359200835228, + 0.027348507195711136, + -0.005912881810218096, + -0.12493223696947098, + -0.029991423711180687, + 0.07083924114704132, + -0.04142151027917862, + 0.016146710142493248, + -0.0553165003657341, + -0.04429968446493149, + 0.06682225316762924, + -0.03697964921593666, + 0.05148269981145859, + -0.004854528699070215, + -0.0322706401348114, + 0.054301708936691284, + 0.015464178286492825, + 0.044288527220487595, + 0.0024484051391482353, + -0.03916454687714577, + 0.037679534405469894, + -0.006248326040804386, + -0.01725637912750244, + 0.08561725914478302, + -0.029683437198400497, + 0.019411178305745125, + -0.05869044363498688, + 0.014151974581182003, + 0.0278200414031744, + -0.02837204746901989, + -0.0404386930167675, + -0.06983266770839691, + -0.0290660560131073, + -0.019878333434462547, + -0.027065008878707886, + -0.010910813696682453, + 0.012100953608751297, + -0.02662278711795807, + 0.021310929208993912, + 0.016678158193826675, + 0.036523085087537766, + 0.03124930150806904, + -0.02480393461883068, + 0.04481665790081024, + -0.02320445142686367, + -0.02948453649878502, + 0.009397182613611221, + 0.0023961015976965427, + -0.02715827338397503, + 0.010585553012788296, + -0.02070707455277443, + -0.017399869859218597, + 0.039064764976501465, + 0.010486291721463203, + -0.03204473853111267, + 0.01647247187793255, + 0.0032190324272960424, + 0.013628488406538963, + -0.0005515603115782142, + 0.014303164556622505, + -0.028506923466920853, + 0.00919813010841608, + -0.06745152920484543, + 0.04085966572165489, + 0.016378534957766533, + 0.005093545187264681, + -0.003994203172624111, + -0.0029176343232393265, + -0.038315147161483765, + -0.01975102722644806, + -0.04238533228635788, + 0.03036653622984886, + -0.0003212971496395767, + 0.026853621006011963, + 0.02551679126918316, + -0.006218870636075735, + 0.022690683603286743, + -0.01917443796992302, + -0.00857541523873806, + 0.04664004221558571, + -0.0016172605101019144, + 0.05331522971391678, + 0.0428331084549427, + 0.030137021094560623, + 0.03516002371907234, + 0.05606086179614067, + -0.0862334668636322, + -0.04586729779839516, + 0.0502750463783741, + 0.041364140808582306, + -0.02899646945297718, + -0.0006831659702584147, + -0.016601229086518288, + -0.05086847394704819, + 0.044249363243579865, + -0.020714882761240005, + -0.015667639672756195, + 0.019330065697431564, + -0.010864327661693096, + -0.0021374414209276438, + -0.01124372985213995, + -0.06258174031972885, + -0.010712401941418648, + 0.04524335637688637, + 0.02102409303188324, + 0.06482318788766861, + -0.013757986016571522, + 0.039225250482559204, + -0.02016441524028778, + 0.02226409688591957, + -0.01670818403363228, + 0.00584571436047554, + 0.07023757696151733, + 0.06348957866430283, + 0.007681042421609163, + -0.019155051559209824, + -0.01655844785273075, + -0.05448933690786362, + -0.00970571767538786, + 0.008000710047781467, + 0.04700423777103424, + -0.012480845674872398, + 0.011701992712914944, + -0.011127540841698647, + 0.09589169919490814, + 0.03231390193104744, + -0.01713448576629162, + -0.02572394162416458, + 0.03090214915573597, + -0.0038194942753762007, + -0.0009786708978936076, + -0.022765206173062325, + -0.012263333424925804, + -0.04726002737879753, + -0.019251849502325058, + -0.0287702027708292, + 0.0007199625833891332, + -0.046309780329465866, + 0.04464507848024368, + -0.019614210352301598, + -0.03693579137325287, + 0.01885264739394188, + 0.009101619012653828, + -0.01625090464949608, + 0.01073318812996149, + 0.03288230672478676, + 0.020430000498890877, + -0.0059915813617408276, + 0.031071387231349945, + 0.05558067187666893, + 0.046015214174985886, + -0.020957378670573235, + -0.007264212239533663, + -0.02110414020717144, + -0.030702505260705948, + -0.009539327584207058, + -0.018153881654143333, + 0.006881942506879568, + 0.009621537290513515, + 0.03338633105158806, + -0.014710282906889915, + -0.003358379239216447, + -0.014270560815930367, + -0.03735704347491264, + 0.0038743047043681145, + -0.0025930183473974466, + -0.061428334563970566, + -0.02675359696149826, + 0.032430488616228104, + 0.03941909223794937, + -0.028121046721935272, + -0.014532891102135181, + 0.002524241106584668, + 0.030121266841888428, + -0.028426174074411392, + 0.007463586051017046, + -0.04396319016814232, + -0.011883457191288471, + -0.024574343115091324, + 0.03310628607869148, + -0.017258772626519203, + -0.006677933037281036, + 0.02202463708817959, + -0.012677894905209541, + 0.022204721346497536, + 0.05322825908660889, + -0.006011349614709616, + -0.02436750754714012, + 0.004701368045061827, + -0.018228119239211082, + 0.021698573604226112, + -0.02184119261801243, + -0.0653153657913208, + -0.0017317162128165364, + 0.004521459806710482, + -0.02709672972559929, + 0.044476233422756195, + -0.04471086710691452, + 0.009911887347698212, + 0.01202055998146534, + 0.02601170539855957, + -0.0007599435048177838, + 0.002325184177607298, + 0.005493937525898218, + -0.04956977441906929, + -0.016112055629491806, + -0.011710045859217644, + 0.00962179247289896, + -0.01731683313846588, + -0.04028422757983208, + 0.0065357740968465805, + 0.012602069415152073, + -0.035195548087358475, + -0.014943955466151237, + -0.003679224755614996, + -0.000593056611251086, + 0.018017994239926338, + 0.006263867020606995, + 0.011978629045188427, + 0.007136254571378231, + 0.016299067065119743, + 0.03423929587006569, + -0.018050914630293846, + -0.000635279982816428, + 0.06302960216999054, + 0.018632924184203148, + -0.014318433590233326, + -0.014656203798949718, + 0.018642675131559372, + 0.03193698450922966, + -0.011973194777965546, + 0.05184701085090637, + 0.028484297916293144, + 0.007520150393247604, + 0.024639353156089783, + 0.02181159518659115, + -0.0009789919713512063, + -0.01070372760295868, + 0.03578411415219307, + -0.10444330424070358, + -0.0252725537866354, + -0.019348861649632454, + 0.03135933727025986, + 0.013820216991007328, + -0.0055351355113089085, + 0.04224884510040283, + 0.0025896504521369934, + 0.0008261973271146417, + -0.013250982388854027, + -0.020631494000554085, + 0.08674028515815735, + -0.006525540724396706, + -0.003549225628376007, + 0.009317532181739807, + -0.026940524578094482, + 0.010392991825938225, + 0.01243909727782011, + -0.02834874391555786, + 0.01718015968799591, + -0.005420980975031853, + 0.006097323726862669, + -0.026816722005605698, + -0.002657489385455847, + -0.027742676436901093, + -0.04574904218316078, + 0.0096750408411026, + -0.005910875275731087, + -0.04416940361261368, + -0.029434382915496826, + -0.03500673547387123, + -0.013937331736087799, + 0.009176929481327534, + 0.021892346441745758, + 0.030283836647868156, + 0.01259359810501337, + 0.0021741860546171665, + 0.029859093949198723, + -0.11363591998815536, + 0.010411438532173634, + 0.03860654681921005, + -0.025060825049877167, + -0.00303676282055676, + 0.017807263880968094, + -0.038725800812244415, + 0.028555063530802727, + 0.040078505873680115, + 0.02741389349102974, + -0.020894454792141914, + 0.038541000336408615, + -0.0015331559116020799, + 0.011788620613515377, + 0.03989017754793167, + -0.04232294484972954, + -0.014895852655172348, + -0.011913562193512917, + -0.004919425118714571, + -0.005643259733915329, + 0.030336329713463783, + -0.026545032858848572, + -0.016525963321328163, + 0.026975180953741074, + 0.001699234009720385, + 0.018545592203736305, + -0.03500516712665558, + -0.050792597234249115, + 0.015592602081596851, + 0.06734715402126312, + -0.028159763664007187, + 0.03613608330488205, + -0.005335991736501455, + 0.051026586443185806, + 0.03457202762365341, + -0.0050127338618040085, + -0.008433145470917225, + 0.016468998044729233, + 0.00713060749694705, + -0.015039773657917976, + 0.02523374930024147, + -0.021835053339600563, + 0.013494119048118591, + -0.03995196148753166, + 0.021687883883714676, + 0.00621382798999548, + -0.02337183617055416, + 0.043243344873189926, + 0.01704154908657074, + 0.07781058549880981, + -0.002409847918897867, + 0.03703930601477623, + 0.06597156822681427, + 0.017661089077591896, + -0.015672387555241585, + 0.014683715999126434, + 0.021610282361507416, + 0.009252291172742844, + 0.009238953702151775, + -0.02008744142949581, + 0.028823059052228928, + -0.03437599167227745, + -0.014355519786477089, + 0.026054473593831062, + -0.026156842708587646, + -0.022317932918667793, + 0.03432214632630348, + -0.04662381112575531, + -0.036962587386369705, + 0.038780901581048965, + 0.023235362023115158, + -0.03357594087719917, + -0.007575248368084431, + -0.04159814119338989, + -0.011207078583538532, + -0.002700284356251359, + 0.007795085199177265, + 0.010971727780997753, + -0.11088528484106064, + -0.06218196824193001, + 0.04114195704460144, + -0.006115823984146118, + -0.03111410327255726, + -0.05153058096766472, + -0.028466543182730675, + -0.060323137789964676, + 0.06375865638256073, + 0.017392434179782867, + 0.009104541502892971, + -0.010579456575214863, + 0.012380416505038738, + 0.03153453767299652, + 0.0018390750046819448, + -0.037166137248277664, + -0.010943441651761532, + -0.009221680462360382, + 0.029428377747535706, + 0.07980614900588989, + 0.07558000832796097, + 0.04012186452746391, + 0.036212317645549774, + 0.025649795308709145, + 0.029626494273543358, + -0.01652311533689499, + -0.01764165796339512, + 0.0029522962868213654, + 0.016736136749386787, + 0.024965865537524223, + 0.010721155442297459, + -0.01893620938062668, + -0.05064614117145538, + -0.0664009377360344, + -0.024588506668806076, + 0.016037534922361374, + -0.04083629325032234, + 0.004082529339939356, + 0.021287646144628525, + -0.010072579607367516, + 0.03209676221013069, + -0.03169548138976097, + -0.06514784693717957, + 0.00029783841455355287, + 0.04782955348491669, + 0.025631507858633995, + -0.022375119850039482, + -0.023732073605060577, + -0.013410121202468872, + 0.032387007027864456, + -0.023602547124028206, + -0.009787610732018948, + -0.014466295018792152, + -0.04039005935192108, + -0.014372860081493855, + 0.06562364101409912, + 0.007392909377813339, + -0.010962540283799171, + -0.0002772885491140187, + 0.020723138004541397, + -0.03131437674164772, + 0.04057520255446434, + -0.03903776407241821, + 0.01808948814868927, + -0.0015950292581692338, + 0.006502097472548485, + 0.02851616032421589, + -0.01709778979420662, + 0.012453769333660603, + 0.026257634162902832, + -0.004030747804790735, + 0.0029686582274734974, + -0.018212756142020226, + -0.0128023074939847, + -0.032557133585214615, + -0.0014172689989209175, + -0.011379808187484741, + -0.06994358450174332, + 0.04207807779312134, + -0.026931215077638626, + 0.015292724594473839, + 0.06551555544137955, + 0.03945830464363098, + 0.017373109236359596, + -0.02603325806558132, + 0.000691696535795927, + -0.013686678372323513, + -0.014487861655652523, + 0.06460493057966232, + -0.0313432551920414, + -0.008761716075241566, + -0.03589770197868347, + 0.0497642382979393, + 0.0072897206991910934, + -0.02703188918530941, + 0.011871971189975739, + 0.006313742138445377, + 0.0005304129444994032, + 0.01344659086316824, + -0.018511706963181496, + -0.03851033374667168, + 0.0016052176943048835, + -0.07687316089868546, + -0.001517281518317759, + 0.04219600930809975, + -0.008065353147685528, + -0.009383332915604115, + 0.03264755383133888, + -0.06996262073516846, + -0.0766647681593895, + 0.015280263498425484, + 0.05987332761287689, + -0.009096009656786919, + 0.003227922599762678, + 0.023096056655049324, + -0.04435319826006889, + 0.022923028096556664, + -0.009567495435476303, + -0.012909320183098316, + 0.011746375821530819, + -0.016600238159298897, + 0.006108326371759176, + 0.027346588671207428, + -0.07748111337423325, + -0.022585509344935417, + -0.04201194643974304, + -0.11105062812566757, + 0.0832240954041481, + -0.09582684934139252, + 0.03533883020281792, + -0.020176991820335388, + 0.0030064007733017206, + -0.013500486500561237, + -0.0705350860953331, + 0.0825015977025032, + -0.0028712984640151262, + -0.0011408167192712426, + -0.0003764125576708466, + -0.03704100474715233, + -0.01890207827091217, + 0.018685022369027138, + 0.0057901907712221146, + 0.02122318372130394, + -0.12170282006263733, + 0.026656491681933403, + 0.04501571133732796, + -0.01567838340997696, + 0.027094898745417595, + -0.039471495896577835, + 0.03331649303436279, + -0.0008304640650749207, + 0.035560186952352524, + -0.015267846174538136, + 0.03210797533392906, + 0.05301344767212868, + -0.05776297673583031, + -0.034328676760196686, + -0.00786853302270174, + 0.01717515103518963, + 0.017686303704977036, + -0.007940713316202164, + 0.010030372999608517, + 0.021539678797125816, + -0.028113573789596558, + 0.03799878805875778, + 0.014415768906474113, + 0.0444827675819397, + 0.022916050627827644, + 0.0432511642575264, + 0.029546037316322327, + 0.05083877593278885, + -0.023870272561907768, + 0.019041871652007103, + -0.02254052273929119, + -0.046955861151218414, + 0.0819942057132721, + -0.05491127073764801, + -0.009194623678922653, + -0.024424290284514427, + -0.031582076102495193, + 0.025378262624144554, + 0.013349577784538269, + -0.02377128414809704, + 0.02408168837428093, + 0.015736032277345657, + -0.05465343967080116, + -0.023495303466916084, + -0.019973410293459892, + -0.022905077785253525, + 0.032886676490306854, + 0.006405933760106564, + -0.025344068184494972, + 0.006201216019690037, + 0.01922501064836979, + 0.04007086530327797, + 0.03950870782136917, + 0.03330323472619057, + 0.04323906451463699, + 0.007409136742353439, + -0.0030959686264395714, + 0.026040010154247284, + 0.04094059765338898, + 0.018748024478554726, + 0.013288953341543674, + 0.017541728913784027, + -0.009440027177333832, + -0.04790869727730751, + -0.008623253554105759, + -0.021010806784033775, + 0.007118814159184694, + -0.01665658690035343, + -0.034526340663433075, + 0.007183795794844627, + 0.005933715496212244, + -0.016859300434589386, + 0.03254098445177078, + -0.01107210386544466, + 0.03500929847359657, + 0.039153724908828735, + 0.03322669863700867, + -0.031894441694021225, + -0.026617281138896942, + 0.06172111630439758, + 0.0039298273622989655, + -0.07453561574220657, + 0.030968043953180313, + -0.03633053973317146, + 0.041781920939683914, + 0.014703061431646347, + 0.04339917376637459, + -0.06202462688088417, + -0.05138301104307175, + 0.042087774723768234, + 0.021062839776277542, + 0.021232344210147858, + -0.020756078884005547, + -0.011795958504080772, + -0.027850696817040443, + -0.026959292590618134, + 0.004508444108068943, + -0.02150486782193184, + -0.028463250026106834, + -0.010061261244118214, + -0.009339549578726292, + -0.00923819001764059, + 0.00840251985937357, + 0.044422127306461334, + -0.014535864815115929, + -0.02855154499411583, + -0.06161217391490936, + -0.0001457122270949185, + -0.00975814275443554, + 0.022730624303221703, + -0.0418991856276989, + -0.02669229917228222, + -0.045517146587371826, + 0.0027831147890537977, + -0.043505243957042694, + 0.017706697806715965, + -0.014451839029788971, + -0.03977195918560028, + -0.042601704597473145, + -0.005876528099179268, + 0.02855430357158184, + -0.022627508267760277, + -0.025067662820219994, + 0.013403855264186859, + 0.006813727784901857, + 0.05969355255365372, + 0.0020116004161536694, + 0.01752578839659691, + 0.010008322075009346, + -0.048667918890714645, + 0.007946603000164032, + -0.0013759358553215861, + -0.043890904635190964, + 0.008599122054874897, + -0.04260467737913132, + 0.012797155417501926, + 0.009363655000925064, + -0.05487101897597313, + -0.00785440020263195, + 0.02901316247880459, + -0.001232818583957851, + -0.026070373132824898, + 0.04826797544956207, + 0.0009248043061234057, + 0.042405687272548676, + 0.025757404044270515, + 0.03563645854592323, + -0.0005627436330541968, + -0.04183555021882057, + 0.028568986803293228, + -0.024221664294600487, + -0.01663840189576149, + -0.016620971262454987, + -0.02379835955798626, + 0.02293751947581768, + 0.020617540925741196, + -0.01838979497551918, + 0.027098283171653748, + 0.028905348852276802, + -0.005144770722836256, + -0.0231791939586401, + -0.06267684698104858, + -0.003108016913756728, + -0.06378721445798874, + 0.04074346646666527, + -0.013943743892014027, + -0.05914436653256416, + 0.024235716089606285, + 0.0024374208878725767, + 0.07322167605161667, + 0.02877890132367611, + 0.002673450158908963, + -0.039925314486026764, + -0.012063693255186081, + -0.022565670311450958, + 0.003977758344262838, + 0.005135671701282263, + -0.023895559832453728, + 0.00014376483159139752, + -0.014754858799278736, + -0.029653478413820267, + -0.022400857880711555, + -0.019196968525648117, + 0.012979663908481598, + 0.008430390618741512, + -0.01678566075861454, + 0.017784690484404564, + 0.011950558982789516, + -0.01432267390191555, + -0.014058989472687244, + 0.024953704327344894, + 0.010645933449268341, + -0.05830428749322891, + 0.028979584574699402, + -0.01719357632100582, + 0.004850482102483511, + 0.009941058233380318, + 0.009902765043079853, + 0.016255531460046768, + -0.025101283565163612, + -0.037990130484104156, + 0.02056729421019554, + 0.06054298207163811, + 0.0006285473355092108, + -0.03820747509598732, + 0.0139608820900321, + 0.013487846590578556, + -0.002261510118842125, + -0.022858886048197746, + 0.017313338816165924, + -0.0600389689207077, + 0.033923860639333725, + 0.022125229239463806, + 0.0030734671745449305, + -0.015099067240953445, + 0.020387573167681694, + 0.04726119711995125, + -0.002027305541560054, + -0.014186290092766285, + -0.05613694712519646, + 0.0392841175198555, + 0.004680211190134287, + -0.005556768737733364, + 0.005309153813868761, + -0.0007267648470588028, + -0.00461169146001339, + -0.028245262801647186, + 0.004299839958548546, + -0.045976802706718445, + 0.013108429498970509, + 0.025449374690651894, + -0.0504034124314785, + 0.002160766627639532, + 0.031007826328277588, + 0.004449894651770592, + 0.005820772144943476, + 0.015161051414906979, + 0.03137281909584999, + 0.012760697863996029, + -0.02920723333954811, + -0.03183561563491821, + 0.03433539718389511, + 0.010320374742150307, + 0.037391263991594315, + -0.031390704214572906, + -0.06050775572657585, + -0.021079637110233307, + 0.020523838698863983, + 0.00637638196349144, + 0.0032490002922713757, + -0.007392616011202335, + 0.01613972708582878, + 0.0401114784181118, + -0.02679593488574028, + -0.018289702013134956, + 0.030711140483617783, + -0.019505472853779793, + 0.027517063543200493, + 0.008348262868821621, + 0.0557960607111454, + 0.014312329702079296, + -0.005740491673350334, + 0.006755545269697905, + -0.011550492607057095, + -0.0204143263399601, + 0.029514960944652557, + 0.011250720359385014, + -0.022851010784506798, + 0.0017492842162027955, + -0.03631889075040817, + -0.002420644974336028, + -0.011584573425352573, + -0.03392926976084709, + -0.06499768048524857, + 0.032212890684604645, + 0.0550042949616909, + 0.00488589471206069, + 0.034636057913303375, + 0.0038872435688972473, + -0.035705652087926865, + -0.010684533976018429, + 0.01448579877614975, + 0.0088852159678936, + -0.008884613402187824, + 0.04561833664774895, + -0.026203256100416183, + -0.011325047351419926, + 0.07831726968288422, + -0.03541567921638489, + 0.001350719016045332, + 0.03075597807765007, + 0.03830358758568764, + 0.017858900129795074, + -0.005080902948975563, + 0.02770700864493847, + 0.019311463460326195, + -0.011409490369260311, + -0.027181554585695267, + 0.01450926810503006, + 0.0010067980038002133, + 0.04844227805733681, + -0.01866629719734192, + -0.023001331835985184, + 0.009728851728141308, + 0.010356331244111061, + -0.03648301586508751, + 0.07810048013925552, + -0.015316037461161613, + 0.01025762502104044, + 0.020787406712770462, + -0.003974870312958956, + -0.01962774060666561, + -0.01606700010597706, + 0.053998302668333054, + 0.025321131572127342, + 0.02093653753399849, + 0.0424029566347599, + 0.02826598472893238, + -0.030917475000023842, + -0.015744786709547043, + 0.027975719422101974, + 0.0007243312429636717, + -0.0373522974550724, + 0.014564170502126217, + -0.01190212182700634, + 0.006568878423422575, + -0.0004579772939905524, + 0.05341443791985512, + 0.02243819646537304, + 0.03523467853665352, + 0.022305941209197044, + 0.019691746681928635, + -0.01739310473203659, + -0.05769156292080879, + 0.06353921443223953, + -0.017004230991005898, + 0.03080437332391739, + 0.001444034045562148, + -0.048004504293203354, + -0.0535021647810936, + -0.004437633324414492, + 0.02425311505794525, + -0.01926925964653492, + -0.0007424565264955163, + -0.005726037546992302, + 0.023626074194908142, + -0.01903260126709938, + 0.009182105772197247, + 0.007873918861150742, + 0.004211955238133669, + -0.017713332548737526, + -0.07339952886104584, + -0.014493796043097973, + 0.004351815674453974, + -0.028112223371863365, + 0.01058458536863327, + 0.0013302499428391457, + 0.03708173707127571, + 0.021061083301901817, + 0.056514568626880646, + -0.04297510161995888, + -7.897270552348346e-05, + -0.009821653366088867, + -0.015171714127063751, + -0.012332121841609478, + 0.024935618042945862, + -0.03759787604212761, + 0.06722654402256012, + -0.003401318797841668, + 0.016171548515558243, + 0.05316168814897537, + -0.033794552087783813, + 0.04595988988876343, + 0.012265428900718689, + -0.03602356091141701, + 0.009933099150657654, + -0.016768930479884148, + -0.019394762814044952, + -0.05507812649011612, + 0.04528309032320976, + -0.006487542297691107, + 0.01869242452085018, + -0.0064008114859461784, + 0.020933100953698158, + -0.013677629642188549, + 0.015476847067475319, + 0.026807207614183426, + -0.016899647191166878, + 0.010196352377533913, + -0.03624579682946205, + -0.02043444663286209, + 0.01024978794157505, + -0.003441904904320836, + -0.0023392080329358578, + 0.009465613402426243, + 0.030697226524353027, + -0.053267545998096466, + 0.010069948621094227, + -0.013654493726789951, + -0.005766064859926701, + 0.01612132228910923, + -0.010326609015464783, + 0.01717446930706501, + 0.0032520967070013285, + -0.02696704864501953, + 0.01350018847733736, + -0.000990860746242106, + 0.03717038780450821, + 0.026540908962488174, + 0.012788635678589344, + 0.0038300638552755117, + -0.009332587942481041, + -0.04846994951367378, + 0.04174439609050751, + 0.01717391237616539, + 0.017568940296769142, + -0.020327644422650337, + 0.009016575291752815, + 0.0005200927844271064, + -0.023163750767707825, + 0.003738492028787732, + 0.01865205354988575, + -0.05618846043944359, + 0.01567700132727623, + 0.020945796743035316, + 0.04270454868674278, + -0.058176323771476746, + 0.013848860748112202, + -0.00825696624815464, + -0.028889251872897148, + -0.010615784674882889, + -0.004112678114324808, + -0.00824581366032362, + -0.02180846966803074, + 0.041436485946178436, + -0.001235450035892427, + 0.00795097928494215, + 0.006207182537764311, + 0.02876151353120804, + 0.01974458619952202, + 0.014658709056675434, + 0.01596364937722683, + 0.02460610680282116, + -0.019556574523448944, + -0.02980007603764534, + 0.014346849173307419, + 0.0014574165688827634, + -0.020194048061966896, + 0.020748281851410866, + -0.01661558449268341, + 0.04632915183901787, + 0.03629543259739876, + 0.022558096796274185, + -0.014010290615260601, + -0.05311684310436249, + -0.019789915531873703, + 0.01233505830168724, + -0.0035419363994151354, + 0.018666598945856094, + 0.007754146121442318, + 0.019084639847278595, + 0.035140786319971085, + -0.03065483644604683, + -0.014967897906899452, + 0.029604174196720123, + -0.012181737460196018, + 0.024533601477742195, + -0.032792918384075165, + -0.0031573965679854155, + 0.043159544467926025, + 0.020625639706850052, + 0.031318411231040955, + 0.026031741872429848, + 0.029973434284329414, + 0.021028785035014153, + 0.0408126637339592, + 0.02620769292116165, + 0.04947250708937645, + -0.03115282766520977, + -0.012549654580652714, + -0.017707744613289833, + -0.0059266360476613045, + -0.03208767622709274, + -0.028037307783961296, + 0.007111772894859314, + -0.004155575763434172, + -0.03294878080487251, + 0.018208954483270645, + -0.0261909868568182, + 0.02536005713045597, + 0.024723121896386147, + -0.04909646511077881, + -0.00036800268571823835, + -0.002248988952487707, + 0.03168009594082832, + -0.033322516828775406, + 0.019753191620111465, + 0.02390483394265175, + -0.005961666349321604, + -0.02111867442727089, + 0.017994040623307228, + -0.028565455228090286, + 0.000486049335449934, + -0.037483420222997665, + -0.008557166904211044, + -0.012709340080618858, + -0.014342106878757477, + 0.024732353165745735, + 0.0018526071216911077, + -0.0009360230178572237, + -0.008117754012346268, + 0.061294447630643845, + -0.028829094022512436, + -0.021267615258693695, + 0.03741450980305672, + -0.0029061920940876007, + 0.03537297993898392, + -0.0020706718787550926, + 0.023145396262407303, + 0.0014288605889305472, + 0.017590656876564026, + 0.0005710039986297488, + 0.029055986553430557, + -0.01563703641295433, + -0.003572191810235381, + 0.0008586436742916703 + ], + "start_index": 28134, + "end_index": 28214, + "token_count": 3, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "d3d4ecf3-8adf-54f5-b099-d19c87dc7362", + "_source": { + "text": "\n\n---\n\n# X.7 Literales\n\n## Enteros\n\n\n\nINTEGER ::= [0-9]+", + "embedding": [ + 0.0025256441440433264, + -0.002162463031709194, + -0.009310036897659302, + -0.1015196368098259, + -0.017544016242027283, + 0.05306681618094444, + -0.06704036891460419, + 0.019545158371329308, + 0.0032960146199911833, + -0.04434841871261597, + 0.08969607949256897, + -0.006756810005754232, + 0.037954237312078476, + -0.0076570333912968636, + -0.03321925550699234, + 0.04909093677997589, + 0.00491951871663332, + 0.05653784051537514, + 0.022096039727330208, + -0.05311215668916702, + -0.048894330859184265, + 0.04180654138326645, + -0.04574361443519592, + 0.052955858409404755, + 0.04134077578783035, + -0.012522491626441479, + -0.05553160235285759, + 0.04858245328068733, + 0.05453800782561302, + -0.06176217272877693, + 0.01670568436384201, + -0.013105600140988827, + -0.034536074846982956, + -0.01796121895313263, + -0.010916653089225292, + -0.012681326828897, + 0.03015756979584694, + 0.010433926247060299, + -0.03145179897546768, + 0.05609290301799774, + 0.002659830264747143, + -0.020493634045124054, + -0.002580528613179922, + -0.019170301035046577, + 0.02397257089614868, + -0.039991188794374466, + 0.016267703846096992, + -0.028415890410542488, + 0.05825021117925644, + 0.00691812252625823, + -0.04298624023795128, + -8.794941822998226e-05, + -0.002236973727121949, + 0.011770256794989109, + 0.0023671723902225494, + -0.02063334546983242, + 0.004305386915802956, + -0.04045361652970314, + 0.037566445767879486, + -0.006733297370374203, + 0.01045837253332138, + -0.014606662094593048, + -0.014063358306884766, + -0.02600986696779728, + -0.0055992030538618565, + 0.003601950127631426, + -0.022320998832583427, + -0.017159657552838326, + -0.044959332793951035, + 0.01275245938450098, + 0.0007455246523022652, + 0.04231758043169975, + -0.009681529365479946, + 0.005567567422986031, + 0.02651408687233925, + 0.03654080256819725, + -0.011642551980912685, + -0.05987102910876274, + 0.002159567316994071, + 0.042627833783626556, + -0.008441529236733913, + 0.047305818647146225, + -0.0163186714053154, + -0.02297600731253624, + -0.000686287647113204, + 0.04654588922858238, + -0.014095415361225605, + -0.00977869052439928, + 0.024439681321382523, + 0.04634961858391762, + -0.016998430714011192, + 0.018048539757728577, + -0.023456105962395668, + -0.025800950825214386, + -0.03541345149278641, + -0.012070851400494576, + -0.011212032288312912, + 0.051645677536726, + 0.02596421167254448, + -0.013773918151855469, + -0.024692310020327568, + 0.007277315482497215, + -0.04681999608874321, + 0.0880868062376976, + -0.06567277759313583, + 0.06631350517272949, + -0.026354534551501274, + 0.01342254038900137, + 0.0058090779930353165, + -0.04056703299283981, + -0.03116496652364731, + 0.002769679296761751, + 0.07627204805612564, + 0.031171424314379692, + 0.03724953904747963, + -0.00715066771954298, + -0.03836112469434738, + -0.05475756898522377, + 0.04199516773223877, + -0.006651364732533693, + 0.01649952493607998, + -0.02837849222123623, + 0.011628462001681328, + -0.008523376658558846, + 0.05308790132403374, + 0.02935572899878025, + -0.030404312536120415, + -0.019411491230130196, + 0.0004787161888089031, + -0.023321297019720078, + -0.036031439900398254, + 0.02338881976902485, + -0.0443241111934185, + -0.037774402648210526, + 0.020907754078507423, + -0.00657443655654788, + 0.0021551840472966433, + 0.012275736778974533, + 0.038901399821043015, + -0.0036514257080852985, + -0.006927023641765118, + -0.01912667788565159, + 0.026719674468040466, + 0.007985522039234638, + 0.03694219887256622, + 0.0351407453417778, + -0.003832358168438077, + 0.017850693315267563, + 0.009277372620999813, + 0.06300223618745804, + -0.01531762070953846, + 0.0061135077849030495, + -0.019886402413249016, + -0.01970915123820305, + -0.0316387414932251, + -0.02632974646985531, + 0.00568324513733387, + -0.022079629823565483, + 0.01361755933612585, + 0.014624732546508312, + -0.0016867899103090167, + -0.005474055651575327, + -0.02648596651852131, + -0.00393530772998929, + -0.018466128036379814, + 0.012601558119058609, + -0.04407805949449539, + -0.033303938806056976, + -0.03001680038869381, + 0.019108125939965248, + 0.01300969161093235, + 0.029399020597338676, + 0.0013560040388256311, + 0.005416625179350376, + 0.010274415835738182, + 0.014614769257605076, + -0.06362053006887436, + 0.015914572402834892, + 0.004573340527713299, + 0.00975832436233759, + 0.0008089906186796725, + -0.010593297891318798, + 0.0056268987245857716, + -0.011356123723089695, + -0.003048859303817153, + 0.07676724344491959, + -0.02894705720245838, + -0.017313802614808083, + -0.0028958702459931374, + 0.003620516275987029, + 0.004771954845637083, + -0.027492500841617584, + -0.03911517187952995, + 0.004414570052176714, + 0.00584467314183712, + -0.0398053377866745, + -0.017137084156274796, + -0.009971851482987404, + 0.05055300146341324, + -0.013118945993483067, + -0.020590385422110558, + -0.02185390703380108, + -0.004738731775432825, + 0.05040658637881279, + 0.007996485568583012, + -0.007242386229336262, + -0.01381080225110054, + 0.01623460464179516, + -0.029299600049853325, + -0.013187804259359837, + 0.02720138616859913, + 0.03539367765188217, + -0.023863716050982475, + 0.007841387763619423, + -0.001729531679302454, + -0.03621382266283035, + -0.0019021386979147792, + 0.05547589063644409, + 0.015715671703219414, + 0.02412535808980465, + 0.04981647804379463, + -0.010440605692565441, + -0.04192354902625084, + 0.003795005613937974, + 0.07218671590089798, + -0.0037288761232048273, + 0.012799986638128757, + 0.015380792319774628, + -0.023702476173639297, + 0.039133816957473755, + 0.00531147001311183, + 0.004535796586424112, + 0.021860262379050255, + -0.006283906288444996, + 0.04474451020359993, + -0.006634905934333801, + -0.01832074299454689, + -0.019821569323539734, + 0.04600653052330017, + -0.017112798988819122, + -0.026978155598044395, + -0.0025931389536708593, + 0.0046524545177817345, + 0.007836470380425453, + -0.009108311496675014, + -0.01973123662173748, + -0.01597232185304165, + -0.011774543672800064, + 0.01076190173625946, + -0.06254364550113678, + 0.014530070126056671, + 0.002967576961964369, + -0.0014116344973444939, + 0.029969634488224983, + 0.03888527676463127, + -0.03940850496292114, + 0.02117038704454899, + -0.04673658311367035, + 0.022767530754208565, + -0.012783018872141838, + 0.043652117252349854, + -0.04226192086935043, + 0.027428198605775833, + 0.03339986130595207, + 0.006155222654342651, + -0.010204308666288853, + -0.007984484545886517, + -0.042990922927856445, + -0.039722807705402374, + 0.0015080573502928019, + 0.021711144596338272, + -0.0015465498436242342, + 0.011258809827268124, + -0.018171407282352448, + 0.013307007029652596, + 0.07562641054391861, + 0.021232808008790016, + -0.08542882651090622, + -0.003167562885209918, + -0.0356132835149765, + 0.022961702197790146, + -0.030400937423110008, + -0.02902630716562271, + 0.011285161599516869, + 0.004301398526877165, + 0.05524122714996338, + 0.032478056848049164, + -0.020082788541913033, + 0.015210974961519241, + -0.015297255478799343, + 0.021426120772957802, + -0.04317162558436394, + -0.05821143463253975, + 0.022409701719880104, + -0.04371915012598038, + -0.04004900902509689, + 0.039567749947309494, + 0.04417920857667923, + 0.01062749046832323, + 0.022109379991889, + 0.021829668432474136, + 0.01459024753421545, + -0.01274851057678461, + -0.031776830554008484, + -0.04401715472340584, + 0.005766874644905329, + 0.03723321110010147, + -0.02018035762012005, + 0.023523522540926933, + 0.014122026041150093, + 0.030358897522091866, + 0.0013390585081651807, + -0.01614677719771862, + -0.033275894820690155, + -0.0030741372611373663, + 0.03371594846248627, + -0.05607136711478233, + 0.038844332098960876, + 0.026965055614709854, + -0.0025094232987612486, + 0.019472870975732803, + -0.0079661188647151, + -0.023258155211806297, + -0.07240224629640579, + 0.011685826815664768, + -0.009076138027012348, + 0.03099813312292099, + 0.004782381467521191, + 0.06802715361118317, + 0.08542841672897339, + 0.024632250890135765, + 0.003586469916626811, + 0.03477313742041588, + -0.0028898888267576694, + -0.005933417938649654, + -0.027449557557702065, + 0.008141874335706234, + 0.0740167573094368, + -0.021388037130236626, + 0.0032457050401717424, + -0.02026848867535591, + 0.04531006142497063, + -0.029130898416042328, + 0.02148018777370453, + -0.06022639945149422, + -0.007861417718231678, + 0.06602489948272705, + 0.032302070409059525, + 0.004894941579550505, + -0.019527509808540344, + 0.019602539017796516, + 0.008219259791076183, + 0.019918259233236313, + -0.017658598721027374, + 0.0331776961684227, + -0.009559967555105686, + 0.010209881700575352, + 0.01285452302545309, + -0.010550993494689465, + -0.026912588626146317, + -0.06249608099460602, + -0.043317172676324844, + -0.001188945141620934, + 0.04662271589040756, + 0.008520823903381824, + -0.049213018268346786, + 0.014280719682574272, + 0.03717249259352684, + 0.005958483088761568, + -0.04082852229475975, + -0.08873849362134933, + 0.030721792951226234, + -0.04637918248772621, + 0.07445450872182846, + 0.06611412763595581, + 0.06266056001186371, + 0.042847249656915665, + -0.0272161103785038, + -0.0161876380443573, + 0.018442237749695778, + 0.06533745676279068, + 0.008270278573036194, + -0.05027307569980621, + -0.010880598798394203, + -0.04677795618772507, + 0.014817947521805763, + 0.015793850645422935, + -0.025565002113580704, + -0.03436252847313881, + 0.004798322916030884, + 0.01697581447660923, + -0.013517293147742748, + 0.019473455846309662, + -0.00942960288375616, + -0.0033134326804429293, + 0.011352532543241978, + -0.05475272238254547, + 0.007079764269292355, + -0.010374810546636581, + 0.00851670652627945, + -0.028208458796143532, + 0.060422733426094055, + -0.01623532734811306, + 0.03504219651222229, + 0.0018550676759332418, + 0.01636124588549137, + 0.01775979809463024, + 0.029412787407636642, + -0.022523971274495125, + -0.037313368171453476, + 0.006845496594905853, + -0.015192593447864056, + -0.020331166684627533, + 0.00947983656078577, + -0.0006761981057934463, + -0.021748136729002, + 0.0868576243519783, + -0.032134197652339935, + 0.051856860518455505, + 0.013369799591600895, + 0.024652257561683655, + 0.003148729680106044, + -0.049196094274520874, + -0.01955242082476616, + 0.012319334782660007, + -0.04424351453781128, + 0.005457003600895405, + -0.03738078474998474, + -0.05367455258965492, + 0.04979446902871132, + 0.03147424757480621, + -0.031275879591703415, + -0.007944289594888687, + -0.004955063574016094, + -0.08272406458854675, + -0.033672161400318146, + 0.05567121505737305, + 0.05121362581849098, + 0.038460224866867065, + -0.03318653255701065, + 0.02295653522014618, + 0.05482840538024902, + 0.00509645976126194, + 0.023592406883835793, + -0.019427426159381866, + -0.07979300618171692, + -0.03459713235497475, + 0.04201563447713852, + -0.004778930451720953, + -0.006421683356165886, + 0.010835075750946999, + 0.0013468818506225944, + 0.019748354330658913, + 0.025194799527525902, + 0.030958103016018867, + -0.05658964440226555, + -0.04083981737494469, + -0.06296420842409134, + -0.020805981010198593, + 0.019591426476836205, + -0.0002679342869669199, + 0.012745385989546776, + -0.001926160417497158, + -0.02037736028432846, + -0.04617684334516525, + 0.011867125518620014, + -0.007540668360888958, + 0.01963675208389759, + -0.016880745068192482, + -0.021502193063497543, + -0.017833732068538666, + -0.01568763144314289, + -0.010384145192801952, + 0.024129413068294525, + 0.0068468013778328896, + -0.0070290579460561275, + -0.011867658235132694, + 0.048588257282972336, + -0.018576769158244133, + 0.005958274472504854, + -0.0271596796810627, + -0.02770146168768406, + 0.03932003676891327, + -0.05975102260708809, + 0.021320302039384842, + -0.057922519743442535, + -0.04014766961336136, + -0.06857924908399582, + -0.06324167549610138, + -0.008109328337013721, + -0.010703672654926777, + 0.030907422304153442, + -0.0021863689180463552, + -0.06923186033964157, + 0.01282399520277977, + -0.01697336696088314, + -0.004437387455254793, + 0.030109569430351257, + -0.05018124729394913, + 0.005823937244713306, + 0.026936789974570274, + -0.06257064640522003, + 0.01763451099395752, + 0.045515384525060654, + 0.021199597045779228, + 0.0014792702859267592, + 0.024006163701415062, + -0.018441302701830864, + 0.016193140298128128, + 0.03175177425146103, + -0.030382154509425163, + -0.02814709022641182, + -0.01696927472949028, + 0.024027470499277115, + -0.07201588153839111, + -0.052387215197086334, + -0.0010917106410488486, + 0.0005547227337956429, + -0.006838236004114151, + 0.06982968002557755, + -0.006236547604203224, + 0.04243025183677673, + -0.009139803238213062, + 0.02852560766041279, + -0.012954868376255035, + 0.029461311176419258, + 0.010107451118528843, + -0.00015855071251280606, + 0.007017855532467365, + -0.010694200173020363, + 0.008489041589200497, + -0.03197120130062103, + 0.05818609893321991, + 0.015279855579137802, + -0.04344216361641884, + 0.04754458740353584, + 0.030818818137049675, + 0.0004459829651750624, + -0.010484928265213966, + -0.014468788169324398, + -0.03094611130654812, + -0.02555781789124012, + -0.044980987906455994, + -0.0012501756427809596, + 0.04894564300775528, + -0.016418248414993286, + -0.018819166347384453, + -0.023305345326662064, + 0.030734743922948837, + -0.018634218722581863, + 0.013534311205148697, + 0.03934391215443611, + 0.032149381935596466, + -0.03147033229470253, + 0.031079687178134918, + 0.01625613495707512, + -0.03349523991346359, + 0.05723200738430023, + -0.0011085022706538439, + 0.013768177479505539, + -0.008037549443542957, + -0.024418378248810768, + -0.04805291071534157, + 0.028530968353152275, + 0.012856601737439632, + -0.003629060694947839, + 0.03211873024702072, + -0.02808551676571369, + 0.00409374013543129, + -0.057736340910196304, + 0.05697254091501236, + 0.017063798382878304, + -0.011104575358331203, + 0.02123018354177475, + 0.0019415279384702444, + -0.039875905960798264, + -0.0235245693475008, + 0.012419996783137321, + -0.027383361011743546, + -0.036904435604810715, + -0.0024619034957140684, + -0.025629239156842232, + -0.026645803824067116, + 0.009153516963124275, + 0.03834983706474304, + 0.009053309448063374, + -0.027552837505936623, + 0.02424747683107853, + -0.026509510353207588, + 0.018462106585502625, + -0.05498967319726944, + -0.06650383770465851, + 0.03168235719203949, + -0.005959629081189632, + 0.03656350076198578, + 0.0033753414172679186, + -0.05131655931472778, + 0.011519556865096092, + 0.016690760850906372, + 0.05694304034113884, + 0.002776630222797394, + 0.003547001862898469, + -0.003223956096917391, + 0.010777415707707405, + -0.04336565360426903, + 0.021168570965528488, + -0.039995983242988586, + -0.017014987766742706, + -0.00861477293074131, + 0.04458485171198845, + 0.009251592680811882, + -0.0001097185886465013, + -0.041599906980991364, + 0.021852726116776466, + -0.0012881079455837607, + -0.061794716864824295, + -0.02307693473994732, + -0.050883810967206955, + -0.026235951110720634, + -0.013084931299090385, + -0.002086121588945389, + -0.03953453153371811, + 0.02515890635550022, + 0.016851922497153282, + 0.006236303132027388, + 0.023560522124171257, + 0.03308213874697685, + -0.03754624351859093, + -0.038552701473236084, + -0.021968569606542587, + 0.003163764951750636, + -0.000990361557342112, + -0.024157634004950523, + 0.02192760817706585, + 0.030528776347637177, + -0.07186733931303024, + 0.0370665080845356, + 0.0053729345090687275, + 0.0025866092182695866, + -0.046780288219451904, + -0.032224178314208984, + 0.039863042533397675, + -0.011197289451956749, + 0.02315404638648033, + -0.001008998486213386, + 0.011187497526407242, + 0.0016978350467979908, + 0.039597008377313614, + 0.018765615299344063, + -0.041430212557315826, + -0.007777865510433912, + -0.017587395384907722, + -0.00706432806327939, + -0.008342741057276726, + -0.04860620200634003, + 0.027541058138012886, + 0.020680483430624008, + 0.04400050267577171, + -0.001342464704066515, + -0.020237769931554794, + -0.0031292831990867853, + -0.04378950223326683, + 0.04544935002923012, + 0.002193322405219078, + -0.03722066804766655, + -0.04853025823831558, + 0.027460673823952675, + 0.05437755584716797, + 0.04347227141261101, + -0.03622882813215256, + -0.024053525179624557, + -0.048120513558387756, + -0.024066990241408348, + 0.057597070932388306, + -0.05146651715040207, + -0.023796208202838898, + -0.01659896783530712, + -0.006855220999568701, + -0.011936423368752003, + 0.0019328995840623975, + -0.00527903763577342, + 0.010428369976580143, + 0.05819004774093628, + -0.05141737684607506, + 0.030390627682209015, + 0.005673967767506838, + -0.004639014136046171, + 0.03567316755652428, + 0.07283168286085129, + -0.02577623911201954, + 0.023372087627649307, + -0.0015207775868475437, + 0.006397370249032974, + 0.010877994820475578, + 0.08322405070066452, + -0.015827853232622147, + 0.015324026346206665, + 0.013233765959739685, + -0.032222796231508255, + 0.041950952261686325, + -0.007303650490939617, + -0.00022089823323767632, + -0.031962279230356216, + -0.030517078936100006, + 0.011361858807504177, + -0.0334264375269413, + -0.05256552994251251, + -0.010682645253837109, + -0.008332870900630951, + 0.007027287967503071, + 0.034491173923015594, + -0.006676170974969864, + -0.022583505138754845, + 0.011931115761399269, + 0.007079831790179014, + -0.014018304646015167, + 0.003144286572933197, + 0.018992522731423378, + 0.010445468127727509, + 0.033183421939611435, + -0.011912093497812748, + -0.020742522552609444, + 0.005163962487131357, + 0.00762847950682044, + -0.04934683442115784, + -0.03243344649672508, + -0.04631003737449646, + -0.0011825546389445662, + 0.05089689418673515, + -0.021739469841122627, + -0.0012957814615219831, + -0.020522186532616615, + 0.0232650525867939, + 0.01487632654607296, + 0.00458446703851223, + -0.018037253990769386, + -0.02019568346440792, + 0.02852577343583107, + -0.02843223325908184, + -0.028199296444654465, + 0.0350206233561039, + 0.0030072317458689213, + 0.0046919058077037334, + -0.04134209081530571, + 0.007963047362864017, + 0.03421258181333542, + -0.0017926867585629225, + 0.014076280407607555, + -0.009369995445013046, + 0.017088858410716057, + 0.04505099356174469, + 0.004268336575478315, + -0.017165282741189003, + 0.037255145609378815, + -0.04471936821937561, + -0.037760499864816666, + -0.007222090382128954, + 0.02657311223447323, + -0.03575671464204788, + 0.01915518008172512, + -0.014270815066993237, + 0.008793724700808525, + 0.018175847828388214, + 0.043068159371614456, + 0.041913148015737534, + 0.0018191230483353138, + 0.0010889392578974366, + -0.025247715413570404, + -0.0703696683049202, + 0.009371691383421421, + 0.009079957380890846, + -0.04880103841423988, + -0.0341399647295475, + 0.06457437574863434, + -0.030535364523530006, + -0.012417478486895561, + 0.03230445086956024, + -0.028082797303795815, + 0.014401523396372795, + 0.022124653682112694, + 0.07017850130796432, + -0.027279697358608246, + -0.02138959802687168, + -0.006990714929997921, + -0.04187813773751259, + 0.05581079050898552, + -0.026517031714320183, + 0.011725184507668018, + 0.004035470075905323, + 0.028969943523406982, + -0.02665083296597004, + 0.054634977132081985, + 0.00098318827804178, + -0.00475329952314496, + -0.03552132844924927, + 0.015950221568346024, + -0.03329158201813698, + 0.04841180518269539, + -0.012125851586461067, + 0.017653902992606163, + -0.035352084785699844, + 0.023545382544398308, + -0.03743356466293335, + -0.05417079105973244, + 0.030623966827988625, + -0.0009014760726131499, + -0.017445065081119537, + 0.0007594461785629392, + 0.015726646408438683, + 0.02072610706090927, + -0.02579645998775959, + -0.02326861582696438, + 0.03767452761530876, + 0.022634653374552727, + 0.003128746058791876, + -0.01341828890144825, + -0.021585898473858833, + -0.015362230129539967, + -0.03134801983833313, + 0.011435232125222683, + 0.012409172020852566, + 0.017146553844213486, + -0.03885528817772865, + 0.034155964851379395, + 0.030224112793803215, + 0.05362424626946449, + 0.019266286864876747, + 0.028273452073335648, + -0.020768528804183006, + 0.014385759830474854, + -0.01028765831142664, + 0.001554958987981081, + 0.035040538758039474, + -0.04938029497861862, + 0.0020571148488670588, + 0.05702643841505051, + -0.011021520011126995, + -0.018028216436505318, + -0.006558030843734741, + 0.011041435413062572, + 0.005315156653523445, + -0.053827915340662, + 0.03258303552865982, + 0.016496146097779274, + -0.05134311318397522, + 0.016730893403291702, + -0.0419357493519783, + -0.017974084243178368, + 0.010852512903511524, + -0.015129819512367249, + 0.017182495445013046, + 0.020978359505534172, + -0.056296635419130325, + -0.005616288166493177, + -0.017823226749897003, + 0.049856893718242645, + 0.032825224101543427, + 0.0005820135120302439, + 0.01237676665186882, + 0.0301044974476099, + -0.05237454175949097, + -0.015892134979367256, + -0.004020721651613712, + 0.003763546235859394, + -0.02732164040207863, + 0.05287378281354904, + -0.03486035764217377, + 0.0012692945310845971, + 0.01755680702626705, + -0.010462717153131962, + 0.011883481405675411, + 0.04629826545715332, + -0.03705039247870445, + -0.0030424168799072504, + -0.04687541350722313, + 0.025051314383745193, + -0.008143016137182713, + 0.017975619062781334, + 0.01799708977341652, + 0.02453051507472992, + 0.0178537517786026, + -0.014268012717366219, + -0.013089370913803577, + -0.02596423029899597, + -0.03562689945101738, + -0.004651018418371677, + 0.008540528826415539, + -0.04573850333690643, + -0.038700006902217865, + 0.008090187795460224, + 0.03206051513552666, + -0.03315466269850731, + -0.0617433562874794, + 0.009970372542738914, + -0.06859615445137024, + 0.01444579940289259, + 0.02169245108962059, + 0.021915199235081673, + 0.025436243042349815, + -0.030777104198932648, + 0.0037883673794567585, + 0.0071198055520653725, + -0.006387296132743359, + -0.0018801578553393483, + -0.005696916487067938, + -0.01657775789499283, + 0.01388615183532238, + 0.0003763999557122588, + 0.014013088308274746, + -0.024862492457032204, + -0.06749586760997772, + 0.041458696126937866, + 0.04667436331510544, + 0.013136639259755611, + 0.0398697629570961, + -0.08353241533041, + -0.03906586021184921, + -0.007997807115316391, + -0.06282023340463638, + -0.0022960312198847532, + -0.01100336853414774, + 0.02773314341902733, + 0.036189496517181396, + 0.006493471097201109, + 0.02457617036998272, + -0.031001094728708267, + -0.016655271872878075, + -0.033771812915802, + 0.016901014372706413, + -0.02607419155538082, + -0.0005873083719052374, + -0.002402744721621275, + 0.03279121220111847, + 0.036314066499471664, + 0.0349951833486557, + -0.0365041121840477, + 0.03311370313167572, + 0.015581768937408924, + -0.042266689240932465, + -0.009223079308867455, + 0.008602398447692394, + -0.018634960055351257, + 0.014035460539162159, + 0.03474743291735649, + -0.005783189553767443, + -0.003282611956819892, + 0.0002783330564852804, + 0.025384973734617233, + 0.02825707197189331, + -0.01246555894613266, + -0.04645930603146553, + 0.013156942091882229, + -0.03812204673886299, + -0.00024709844728931785, + 0.036534592509269714, + 0.007831547409296036, + -0.017602989450097084, + 0.00150988285895437, + 0.033117227256298065, + 0.001591215142980218, + -0.04383031651377678, + 0.014374622143805027, + 0.020168684422969818, + -0.00921852421015501, + 0.05324406176805496, + -0.03853706642985344, + 0.022261450067162514, + 0.014783208258450031, + -0.006699792575091124, + -0.005408686585724354, + 0.02402307093143463, + -0.0020017088390886784, + -0.003205293556675315, + 0.025757180526852608, + -0.005245792213827372, + 0.018492667004466057, + -0.0194878987967968, + -0.0006640694919042289, + 0.058102622628211975, + 0.01224474050104618, + -0.03131354600191116, + -0.043377939611673355, + 0.06137746199965477, + 0.04392171651124954, + -0.05609865486621857, + 0.01855929009616375, + -0.0450257882475853, + 0.02329241670668125, + -0.022864652797579765, + -0.019736098125576973, + 0.013915854506194592, + 0.02338154800236225, + 0.0492260605096817, + -0.009094364009797573, + -0.01046712789684534, + 0.06875357031822205, + -0.007350520230829716, + 0.010548681020736694, + -0.00328987673856318, + 0.024627642706036568, + -0.020080268383026123, + -0.010751442052423954, + 0.002324884757399559, + -0.015673857182264328, + -0.029802491888403893, + -0.04178713634610176, + -0.05724773183465004, + -0.020498525351285934, + -0.029650909826159477, + 0.038034431636333466, + -0.0027409850154072046, + 0.02061758004128933, + 0.034959837794303894, + -0.03170836716890335, + 0.011567260138690472, + -0.036375630646944046, + 0.0171077661216259, + -0.02260669879615307, + 0.04587600752711296, + -0.028156286105513573, + 0.04397270455956459, + -0.07287281006574631, + 0.01785728521645069, + -0.042720191180706024 + ], + "start_index": 28214, + "end_index": 28281, + "token_count": 13, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "0af564fb-3c7f-51df-bb02-ec13b7378041", + "_source": { + "text": "\n\nEjemplos:\n\n\n\n0\n10\n999", + "embedding": [ + -0.03625161200761795, + 0.010289443656802177, + -0.011600908823311329, + -0.08043791353702545, + 0.0297439806163311, + 0.09031333774328232, + -0.01610674150288105, + -0.02761778235435486, + -0.03983267396688461, + -0.03650115430355072, + -0.007670388091355562, + -0.008744362741708755, + 0.0766526609659195, + -0.008632106706500053, + -0.02722765877842903, + 0.04587920382618904, + 0.013726984150707722, + -0.008248595520853996, + 0.06595300137996674, + -0.028150800615549088, + -0.03531619533896446, + 0.02620585821568966, + -0.02656600810587406, + 0.0475030355155468, + -0.0453948974609375, + -0.0011814562603831291, + -0.0352558009326458, + 0.076737180352211, + -0.02257619798183441, + -0.08015722036361694, + 0.0066537377424538136, + -0.007030524779111147, + -0.02468721568584442, + -0.03458460047841072, + 0.015246445313096046, + -0.013916577212512493, + 0.015294332057237625, + -0.0032068996224552393, + -0.013668508268892765, + 0.018985388800501823, + -0.025594588369131088, + -0.025369038805365562, + -0.026471391320228577, + -0.01518747117370367, + -0.0077226003631949425, + 0.04212469607591629, + 0.048411253839731216, + 0.032405052334070206, + 0.06772328168153763, + 0.041010692715644836, + -0.07984232157468796, + -0.03269807621836662, + 0.026395630091428757, + -0.0027502637822180986, + 0.01548082660883665, + 0.031380437314510345, + 0.01632498949766159, + -0.033698175102472305, + -0.0115343714132905, + 0.03794294223189354, + -0.07660097628831863, + -0.026649998500943184, + 0.022093182429671288, + 0.0389539897441864, + 0.013650892302393913, + -0.006107615306973457, + -0.012073620222508907, + -0.038479018956422806, + -0.058411531150341034, + -0.03976570814847946, + -0.027633553370833397, + 0.03680265694856644, + -0.03387080505490303, + 0.002571459161117673, + 0.02164793200790882, + -0.08447128534317017, + 0.019079912453889847, + -0.0769195705652237, + 0.012804795987904072, + 0.006980609148740768, + 0.015978757292032242, + 0.018583226948976517, + -0.006730474531650543, + 0.03265513479709625, + 0.017120664939284325, + 0.0421409085392952, + 0.010848292149603367, + 0.03281343728303909, + 0.019306901842355728, + 0.030034031718969345, + -0.09482114017009735, + 0.038561657071113586, + -0.02998153120279312, + -0.04792918264865875, + -0.05339409038424492, + -0.03833528235554695, + -0.02451031655073166, + -0.007599516771733761, + 0.014295494183897972, + -0.012340491637587547, + 0.0031663028057664633, + -0.02668137289583683, + -0.03802690654993057, + 0.013746275566518307, + -0.03385383263230324, + 0.015484844334423542, + -0.07827303558588028, + 0.026423227041959763, + -0.019365977495908737, + -0.0006300961831584573, + -0.013116613030433655, + -0.004994951654225588, + 0.029101835563778877, + 0.02391614019870758, + -0.017077462747693062, + -0.018189065158367157, + -0.018835416063666344, + -0.01852290891110897, + 0.02711626887321472, + 0.0061515625566244125, + -0.0026554495561867952, + -0.059375468641519547, + -0.020093798637390137, + 0.00955123733729124, + -0.015951771289110184, + -0.009044315665960312, + -0.013056009076535702, + -0.0010068312985822558, + 0.014237564988434315, + -0.00925054308027029, + -0.006222249940037727, + 0.019214313477277756, + -0.04023414105176926, + -0.0605875626206398, + -0.019837457686662674, + 0.03475426137447357, + -0.012894400395452976, + -0.036800943315029144, + 0.03441010043025017, + -0.007330520078539848, + -0.05450659617781639, + 0.00363698392175138, + 0.017365122213959694, + 0.002256329171359539, + 0.007773844059556723, + -0.007461338769644499, + -0.0010263570584356785, + -0.014204056933522224, + 0.008325324393808842, + 0.08110826462507248, + -0.005167355295270681, + -0.028894765302538872, + 0.025172529742121696, + 0.010774526745080948, + -0.03249216824769974, + -0.0016397037543356419, + -0.0292840376496315, + -0.0026123777497559786, + -0.00860119890421629, + 0.015526831150054932, + 0.0026206958573311567, + 0.00013122879317961633, + -0.012776900082826614, + -0.0265069417655468, + 0.00660485727712512, + 0.021990295499563217, + -0.011065895669162273, + -0.006969486828893423, + -0.01273571327328682, + -0.003774343291297555, + -0.01767144724726677, + 0.017869126051664352, + 0.013239823281764984, + 0.003922092262655497, + -0.0012585428776219487, + -0.002926271641626954, + -0.01642276905477047, + -0.03871854767203331, + -0.011783620342612267, + -0.014033826999366283, + 0.0020534188952296972, + 0.006697441451251507, + 0.003884913632646203, + 0.039104361087083817, + 0.001052958657965064, + 0.05944341793656349, + 0.001717640203423798, + -0.040615689009428024, + -0.014621591195464134, + -0.010789943858981133, + -0.0010935585014522076, + -0.0633837953209877, + -0.03518986701965332, + -0.014574024826288223, + -0.034438662230968475, + -0.03875333443284035, + 0.040912892669439316, + -0.021125832572579384, + 0.033731117844581604, + -0.0050458526238799095, + 0.013077248819172382, + -0.013993737287819386, + 0.01440669409930706, + 0.028365612030029297, + -0.010648246854543686, + 0.04760957509279251, + -0.0031499890610575676, + -0.0007809495436958969, + 0.009267326444387436, + -0.0006438624695874751, + 0.0029127076268196106, + -0.015855085104703903, + -0.017095528542995453, + 0.002831334713846445, + -0.03096500039100647, + -0.02133709006011486, + -0.0059049371629953384, + 0.04550927132368088, + -0.011999565176665783, + 0.004207718651741743, + 0.053069207817316055, + 0.023020068183541298, + -0.06440049409866333, + -0.007094541098922491, + 0.032845139503479004, + -0.052747923880815506, + 0.028698839247226715, + -2.4661612769705243e-05, + -0.031410496681928635, + 0.02319595403969288, + 0.014768160879611969, + -0.0548584945499897, + 0.04772135242819786, + 0.07004720717668533, + 0.05058922991156578, + 0.03173558786511421, + -0.0006533862324431539, + -0.04183482751250267, + 0.08155561983585358, + -0.023225467652082443, + 0.012551573105156422, + -0.0027653800789266825, + 0.012503908015787601, + 0.00804134551435709, + -0.022283846512436867, + 0.046210672706365585, + -0.015173694118857384, + 0.0497383251786232, + -0.007487455848604441, + -0.01966649666428566, + 0.06269163638353348, + 0.027029428631067276, + -0.046318478882312775, + 0.04448791593313217, + 0.0035717131104320288, + -0.014129474759101868, + -0.00037619509384967387, + 0.004113249015063047, + 0.017420371994376183, + -0.00031594958272762597, + 0.057709138840436935, + -0.016394557431340218, + -0.0036154473200440407, + 0.0062676118686795235, + 0.06428264826536179, + 0.004320976790040731, + -0.04618179425597191, + 0.008543482981622219, + -0.02802402339875698, + -0.014182298444211483, + 0.05040595307946205, + 0.0318698026239872, + 0.00731199374422431, + -0.0025139714125543833, + -0.011127670295536518, + 0.011750821024179459, + 0.03653895482420921, + -0.03141075372695923, + -0.0002974119852297008, + 0.012614477425813675, + 0.03142697736620903, + -0.002158314688131213, + 0.0023107605520635843, + -0.00851515680551529, + -0.002861029701307416, + 0.045738548040390015, + 0.01245951559394598, + 0.019038623198866844, + -0.03314914554357529, + -0.0705089271068573, + 0.042655348777770996, + 0.008043822832405567, + -0.0197429358959198, + -0.01001996174454689, + -0.01083792932331562, + 0.050270579755306244, + 0.026421701535582542, + 0.05143016204237938, + 0.013234900310635567, + 0.0013524946989491582, + 0.0027120052836835384, + -0.024786565452814102, + -0.012770777568221092, + -0.05149859935045242, + 0.019477730616927147, + -0.0028658630326390266, + 0.07390357553958893, + 0.01825641095638275, + 0.042417075484991074, + -0.0025275442749261856, + 0.0658736452460289, + -0.02259141579270363, + -0.0035244403406977654, + -0.014094400219619274, + -0.010034477338194847, + -0.029213223606348038, + -0.052731532603502274, + 0.020721912384033203, + 0.00846393033862114, + 0.02290996164083481, + -0.0065264469012618065, + 0.03536504507064819, + 0.029306864365935326, + -0.024324622005224228, + -0.022238876670598984, + -0.0016819590236991644, + -0.016800791025161743, + 0.034851204603910446, + 0.0023547501768916845, + 0.05711786448955536, + -0.019508160650730133, + 0.06640539318323135, + 0.00613997271284461, + -0.010557356290519238, + -0.01871396228671074, + 0.0019515512976795435, + 0.03257870301604271, + 0.028235048055648804, + -0.006190513726323843, + 0.030726762488484383, + 0.008649760857224464, + -0.026482440531253815, + 0.013343117199838161, + -0.05382214114069939, + -0.06105104461312294, + -0.005765184294432402, + 0.037575434893369675, + 0.04875374585390091, + 0.020008467137813568, + 0.01275932602584362, + 0.07950686663389206, + 0.008395423181355, + -0.009091928601264954, + -0.011988608166575432, + -0.013666345737874508, + -0.04713406413793564, + -0.003404640592634678, + -0.016362564638257027, + -0.004417194053530693, + 0.00011488775635370985, + -0.05719352513551712, + -0.09188950061798096, + 0.023388873785734177, + 0.01343419961631298, + -0.024545108899474144, + -0.007434121798723936, + -0.035903967916965485, + 0.02614116482436657, + 0.005121629219502211, + 0.03648507967591286, + -0.042272381484508514, + -0.050918228924274445, + 0.006323107983916998, + 0.0755402222275734, + 0.05815088748931885, + 0.059461530297994614, + 0.04429065063595772, + -0.05671427398920059, + -0.007287452928721905, + 0.046778786927461624, + 0.048700474202632904, + 0.030121011659502983, + 0.011612976901233196, + 0.006465790327638388, + -0.0426579974591732, + -0.006161061581224203, + 0.014152767136693, + -0.02246440388262272, + -0.025877786800265312, + -0.024184858426451683, + 0.016955194994807243, + -0.029194068163633347, + -0.009486867114901543, + -0.0013599777594208717, + 0.0032886413391679525, + 0.05784497782588005, + -0.07046137750148773, + 0.04940476641058922, + -0.0037911401595920324, + 0.025281395763158798, + -0.01823405921459198, + 0.026400666683912277, + -0.054468948394060135, + 0.017657386139035225, + 0.01587587781250477, + -0.005554284900426865, + -0.06322389841079712, + -0.011338840238749981, + 0.01100744865834713, + 0.003111696569249034, + 0.036511678248643875, + -0.003330565756186843, + -0.014691786840558052, + -0.010783945210278034, + -0.008795622736215591, + -0.0004914250457659364, + 0.07499391585588455, + -0.02006770856678486, + -0.0005397730274125934, + -0.006060781888663769, + 0.003119544591754675, + -0.00016456579032819718, + -0.03396306559443474, + -0.008000146597623825, + 0.007064023986458778, + -0.018029648810625076, + -0.024806151166558266, + -0.007092534098774195, + -0.029034199193120003, + 0.03392776846885681, + 0.037428081035614014, + -0.009343561716377735, + 0.00504684541374445, + 0.01855168491601944, + -0.05480421707034111, + -0.013998141512274742, + 0.06879214942455292, + 0.010821699164807796, + -0.0020084073767066, + -0.00596935348585248, + 0.03573046624660492, + 0.02304213121533394, + 0.015674032270908356, + 0.0316905751824379, + -0.033491890877485275, + -0.04858701676130295, + 0.014601112343370914, + -0.0252300463616848, + 0.02259569801390171, + -0.018905138596892357, + 0.012414512224495411, + -0.007027829065918922, + -0.00922770518809557, + 0.019538432359695435, + -0.01004443597048521, + -0.020456532016396523, + 0.008407531306147575, + -0.09303548187017441, + 0.02177520841360092, + -0.02348066121339798, + -0.010296250693500042, + 0.06798691302537918, + -0.02278299257159233, + -0.020233087241649628, + 0.030750572681427002, + 0.055020175874233246, + 0.024528509005904198, + 0.004873604979366064, + 0.029553644359111786, + 0.017637837678194046, + -0.05257118493318558, + 0.002515750238671899, + -0.020404938608407974, + 0.032616376876831055, + 0.0365770049393177, + -0.04557427763938904, + -0.028669165447354317, + 0.050346266478300095, + -0.04983026906847954, + 0.03157748654484749, + -0.07052925229072571, + -0.014476901851594448, + 0.018838241696357727, + -0.020209984853863716, + 0.030328024178743362, + -0.04338792711496353, + -0.012782403267920017, + -0.09565652906894684, + -0.00515814870595932, + -0.016097376123070717, + 0.017295340076088905, + 0.0363030768930912, + -0.025150824338197708, + -0.0357646718621254, + -0.004886476788669825, + -0.03102988190948963, + 0.00461580092087388, + -0.01086551696062088, + -0.061528280377388, + 0.04465479403734207, + -0.011739978566765785, + 0.0433429479598999, + 0.015240122564136982, + 0.03341860696673393, + -0.004425820428878069, + -0.018988007679581642, + 0.03235156089067459, + 0.003978574648499489, + -0.00842683669179678, + -0.029382726177573204, + -0.025552617385983467, + 0.025352435186505318, + 0.00911519955843687, + 0.0389743447303772, + -0.05268450081348419, + -0.032939452677965164, + -0.01666274107992649, + 0.02551327645778656, + 0.006199500523507595, + 0.02544373832643032, + -0.027131875976920128, + 0.019665449857711792, + 0.03537486121058464, + 0.016006385907530785, + -0.04453502222895622, + 0.0414937287569046, + 0.034399259835481644, + 0.0036085189785808325, + -0.037713032215833664, + 0.005102855619043112, + 0.032405100762844086, + -0.01603984460234642, + 0.017847629263997078, + 0.01444969605654478, + -0.03929055854678154, + 0.005642119329422712, + -0.0015597559977322817, + -0.023358460515737534, + 0.07630428671836853, + -0.00606033019721508, + -0.07481687515974045, + -0.014189372770488262, + 0.012349848635494709, + 0.029685772955417633, + 0.0016673824284225702, + -0.00797310657799244, + -0.043603889644145966, + 0.019819939509034157, + -0.0067799994722008705, + 0.019969137385487556, + -0.048241809010505676, + 0.022396961227059364, + 0.046994648873806, + -0.004760771058499813, + 0.020966673269867897, + 0.02525322325527668, + -0.005359879694879055, + 0.025653263553977013, + 0.026073992252349854, + -0.08845636248588562, + -0.019329261034727097, + 0.03006299026310444, + -0.023240063339471817, + 0.01816534996032715, + -0.018983978778123856, + -0.00982469879090786, + 0.005864864215254784, + 0.004939952399581671, + 0.046867866069078445, + 0.0020448605064302683, + 0.03555293381214142, + -0.032861970365047455, + 0.003582180943340063, + 0.07469790428876877, + -0.038985513150691986, + -0.03352903947234154, + -0.03510712832212448, + 0.019917402416467667, + -0.02076958492398262, + -0.012893982231616974, + 0.019894186407327652, + -0.014239013195037842, + -0.043754033744335175, + 3.3197589800693095e-05, + 0.002157381270080805, + 0.048547014594078064, + 0.005694496911019087, + -0.014084539376199245, + -0.006814647000283003, + -0.008859360590577126, + -0.0001820488105295226, + -0.06710650026798248, + 0.009628810919821262, + 0.016080407425761223, + 0.03153048828244209, + 0.001607120386324823, + -0.08192054182291031, + -0.007887482643127441, + 0.00440916558727622, + 0.013081802055239677, + 0.026494355872273445, + 0.06983884423971176, + -0.015398867428302765, + -0.0070378901436924934, + -0.06509429216384888, + -0.006298252381384373, + 0.011880362406373024, + -0.008926683105528355, + 0.003461826127022505, + 0.05822758004069328, + -0.016204366460442543, + 0.012424640357494354, + -0.04189790412783623, + -4.0459319279761985e-05, + -0.002427802886813879, + -0.07543260604143143, + -0.03648921102285385, + 0.05737302452325821, + -0.018976429477334023, + -0.03723622485995293, + 0.028687072917819023, + 0.007976659573614597, + -0.01261640153825283, + 0.01858394220471382, + -0.005756080616265535, + 0.03598984703421593, + 0.01112357061356306, + -0.03635215386748314, + -0.04554496705532074, + -0.01826814003288746, + -0.013783610425889492, + 0.025691136717796326, + 0.0050607724115252495, + -0.00645044632256031, + 0.057114847004413605, + -0.050044331699609756, + 0.03913078084588051, + -0.02158542349934578, + -0.0018876692047342658, + -0.048498474061489105, + -0.02625046856701374, + -0.04021936655044556, + 0.0063364761881530285, + 0.037474777549505234, + 0.011535536497831345, + -3.966868462157436e-05, + -0.03378773480653763, + 0.027867762371897697, + 0.00806625559926033, + -0.038011934608221054, + 0.022194232791662216, + 0.024183480069041252, + 0.005964241921901703, + 0.02497822791337967, + -0.004747901577502489, + 0.006363652180880308, + -0.020788541063666344, + 0.009392816573381424, + -0.01814793050289154, + -0.049541085958480835, + -0.05376659706234932, + -0.03986930847167969, + 0.05223224312067032, + -0.014449775218963623, + -0.03837508708238602, + -0.07303360849618912, + 0.044777579605579376, + -0.01777847297489643, + 0.016011657193303108, + -0.046815481036901474, + -0.02235163375735283, + -0.038104038685560226, + 0.00407274067401886, + 0.06901293992996216, + -0.03400823846459389, + -0.011369203217327595, + -0.025821775197982788, + -0.026510240510106087, + 0.008346582762897015, + -0.02508452534675598, + -0.01148174051195383, + 0.002894548000767827, + -0.005654414650052786, + -0.03808066248893738, + -0.013441509567201138, + -0.03646675869822502, + 0.012675592675805092, + 0.031715281307697296, + 0.029681123793125153, + -0.016612278297543526, + -0.0069615961983799934, + -0.0070144715718925, + 0.06960994750261307, + -0.07534215599298477, + 0.02502976357936859, + -0.023179898038506508, + -0.015205520205199718, + -0.04249792918562889, + -0.007837208919227123, + 8.664265624247491e-05, + 0.009888086467981339, + 0.0003453344979789108, + 0.04203680157661438, + -0.004474645480513573, + 0.0030685870442539454, + 0.0238194577395916, + -0.041758377104997635, + 0.011422817595303059, + -0.0174487866461277, + -0.01303872000426054, + 0.014705763198435307, + 0.017254598438739777, + 0.010917246341705322, + 0.008746599778532982, + 0.0025149115826934576, + -0.032621871680021286, + 0.03330161049962044, + 0.03259670361876488, + -0.021656019613146782, + -0.018669912591576576, + 0.02272016927599907, + -0.04808948189020157, + 0.003474695375189185, + 0.050819650292396545, + -0.009932778775691986, + -0.01754867658019066, + -0.015416225418448448, + 0.03522651642560959, + 0.016143161803483963, + 0.007290349807590246, + 0.025434967130422592, + -0.0317731611430645, + 0.030145414173603058, + 0.009730550460517406, + -0.03800690919160843, + 0.032934028655290604, + 0.03659409284591675, + 0.01603151299059391, + -0.027703942731022835, + 0.01212500873953104, + -0.006938508246093988, + 0.0003402463044039905, + -0.035122063010931015, + -0.026619788259267807, + -0.022318126633763313, + 0.02888457290828228, + -0.023741940036416054, + 0.01987958326935768, + -0.014097862876951694, + 0.03781507909297943, + 0.024776525795459747, + -0.06286606937646866, + 0.02610788866877556, + 0.02408752776682377, + -0.042294710874557495, + -0.0327647402882576, + -0.06524325907230377, + 0.025067215785384178, + -0.007626849692314863, + 0.044753048568964005, + 0.029481131583452225, + -0.014269997365772724, + -0.020742088556289673, + -0.010847416706383228, + 0.031083986163139343, + 0.0023994569201022387, + -0.012231742031872272, + -0.02552577666938305, + -0.032877758145332336, + 0.027608195319771767, + 0.01203769538551569, + -0.006761943455785513, + 0.0024288874119520187, + 0.04210776835680008, + -0.011761725880205631, + -0.025577714666724205, + 0.01155416201800108, + -0.03484621271491051, + 0.028648486360907555, + 0.046707846224308014, + 0.04562624543905258, + -0.008527252823114395, + 0.017825549468398094, + 0.018027659505605698, + -0.04023491591215134, + 0.06938233971595764, + -0.012770374305546284, + 0.006714361719787121, + 0.07663658261299133, + 0.0263071246445179, + -0.014822007156908512, + 0.04905066266655922, + 0.019455989822745323, + 0.05563243106007576, + 0.00504370266571641, + 0.03999590873718262, + -0.03891810029745102, + -0.00408581830561161, + -0.003336321096867323, + -0.0032974134664982557, + -0.019861532375216484, + -0.002076393458992243, + -0.007983125746250153, + 0.02023203670978546, + 0.03619608283042908, + 0.006236443296074867, + -0.0035530375316739082, + 0.02806154265999794, + -0.018508190289139748, + -0.05789424106478691, + -0.010781576856970787, + 0.016048379242420197, + 0.016645945608615875, + 0.04157448559999466, + 0.02455218695104122, + 0.020012803375720978, + -0.035944968461990356, + -0.0459609217941761, + -0.046781618148088455, + 0.016088780015707016, + -0.02201678417623043, + -0.029108770191669464, + -0.016807349398732185, + 0.021271677687764168, + 0.011678109876811504, + 0.037625428289175034, + 0.03261028230190277, + -0.029571449384093285, + -0.006776114925742149, + -0.004335439298301935, + 0.006516550201922655, + -0.006653555668890476, + 0.04820718988776207, + 0.007082654163241386, + 0.04248997941613197, + -0.026344096288084984, + -0.03904237598180771, + 0.05351825803518295, + 0.003743372391909361, + -0.004717541858553886, + 0.006207434460520744, + -0.014811153523623943, + -0.0029212660156190395, + 0.03200265392661095, + 0.012501285411417484, + 0.011899822391569614, + -0.05967911705374718, + -0.03673017770051956, + 0.02119932323694229, + 0.005578950513154268, + 0.02919350005686283, + 0.020259656012058258, + 0.00032741762697696686, + -0.024386275559663773, + -0.049897700548172, + 0.07316656410694122, + -0.006952022667974234, + -0.037656519562006, + -0.05647222325205803, + -0.03914996236562729, + -0.055044565349817276, + -0.012321246787905693, + -0.015645485371351242, + -0.0009933551773428917, + -0.021191928535699844, + 0.03070075996220112, + 0.0022269398905336857, + 0.0044034626334905624, + 0.004125560633838177, + -0.02799137681722641, + 0.03531317785382271, + 0.010827712714672089, + -0.01461787335574627, + 0.026847699657082558, + -0.033560190349817276, + -0.031813714653253555, + 0.028194928541779518, + 0.04030495136976242, + -0.027892805635929108, + 0.032071925699710846, + 0.00702519528567791, + 0.05614175274968147, + -0.014589887112379074, + 0.019238168373703957, + -0.023161355406045914, + -0.02033284306526184, + -0.014552347362041473, + -0.04702896252274513, + 0.009519184939563274, + -0.015564211644232273, + 0.04893164336681366, + 0.0036716731265187263, + 0.007437804248183966, + 0.00916637759655714, + -0.10245610028505325, + 0.015420130454003811, + 0.04595343396067619, + 0.01995760202407837, + -0.02521827444434166, + 0.009852299466729164, + 0.016843637451529503, + -0.018011461943387985, + 0.03707582876086235, + -0.031565096229314804, + 0.002688654698431492, + -0.06536856293678284, + 0.0048233456909656525, + -0.011919623240828514, + -0.039861537516117096, + 0.018039124086499214, + -0.03565740957856178, + 0.024821601808071136, + 0.03054664097726345, + 0.009663589298725128, + 0.010042808018624783, + -0.044636793434619904, + -0.028306886553764343, + -0.02217239886522293, + -0.05441099405288696, + 0.0012672822922468185, + -0.009176393039524555, + 0.00515936641022563, + -0.000359667232260108, + -0.013302401639521122, + 0.007993776351213455, + -0.016659464687108994, + 0.026829298585653305, + 0.010772095993161201, + 0.02688332088291645, + 0.003242136910557747, + 0.03628406673669815, + -0.025587286800146103, + 0.010682658292353153, + 0.04062774404883385, + 0.029133513569831848, + -0.007369922939687967, + 0.011418817564845085, + -0.010489728301763535, + -0.027626212686300278, + 0.002421993762254715, + -0.015852855518460274, + -0.044609203934669495, + 0.04903807491064072, + 0.06050364300608635, + 0.08172385394573212, + 0.011256194673478603, + 0.03694524988532066, + -0.01770581305027008, + -0.03064621612429619, + -0.01150454394519329, + 0.01585119403898716, + -0.026383638381958008, + 0.0027872484643012285, + -0.013694572262465954, + 0.03532023727893829, + -0.019402166828513145, + -0.012153461575508118, + 0.050045717507600784, + 0.01061241514980793, + 0.011171545833349228, + -0.0011426794808357954, + 0.006564639508724213, + 0.045388363301754, + 0.01663731224834919, + -0.0036266709212213755, + 0.009784756228327751, + -0.028800375759601593, + 0.011260537430644035, + 0.05666109919548035, + -0.0010351407108828425, + 0.024796992540359497, + 0.009657751768827438, + 0.048782829195261, + -0.00792067963629961, + 0.038829952478408813, + 0.012387399561703205, + -0.03336997702717781, + 0.004444809164851904, + -0.004622019361704588, + -0.05420204997062683, + -0.05574658885598183, + 0.006736468989402056, + 0.023087752982974052, + 0.0006017580744810402, + 0.026256602257490158, + 0.0174378864467144, + 0.0016561051597818732, + 0.01242835447192192, + -0.005399498622864485, + -0.011924060992896557, + 0.03764307126402855, + -0.0022731367498636246, + 0.00041780684841796756, + 0.009245610795915127, + 0.023638078942894936, + 0.05801485478878021, + 0.020745079964399338, + -0.005133520346134901, + 0.03939574956893921, + -0.00709310220554471, + -0.014118057675659657, + 0.0348559133708477, + -0.024483583867549896, + 0.007196600548923016, + 0.026983089745044708, + 0.012121668085455894, + -0.013471709564328194, + 0.0025598437059670687, + -0.0025547270197421312, + 0.013041066005825996, + -3.896024736604886e-06, + 0.03133348003029823, + 0.057854946702718735, + 0.028254153206944466, + -0.02001095749437809, + -0.03642226755619049, + 0.006131344474852085, + 0.02568316087126732, + 0.016083231195807457, + -0.05274185538291931, + -0.01676386594772339, + -0.014721076935529709, + 0.024762708693742752, + 0.003914088476449251 + ], + "start_index": 28281, + "end_index": 28310, + "token_count": 6, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "093a61bb-242d-5b53-a59d-39e794bc7baf", + "_source": { + "text": "\n\n---\n\n## Números flotantes\n\n\n\nFLOAT ::= [0-9]+\\.[0-9]* | \\.[0-9]+", + "embedding": [ + 0.015538433566689491, + 0.0008818944334052503, + -0.003477942431345582, + -0.097996786236763, + 0.03137475252151489, + 0.015841597691178322, + -0.03990254923701286, + -0.0076095471158623695, + -0.030646389350295067, + -0.028140438720583916, + 0.10157178342342377, + -0.008534195832908154, + -0.01632850617170334, + -0.00020763550128322095, + -0.02981698326766491, + 0.06128883734345436, + 0.018656659871339798, + 0.028152549639344215, + -0.014980153180658817, + -0.03428101912140846, + -0.030453667044639587, + 0.05553458631038666, + 0.0033497437834739685, + 0.06455331295728683, + 0.06804267317056656, + -0.054327864199876785, + -0.005556018091738224, + 0.0054313866421580315, + 0.011382300406694412, + -0.0593966469168663, + -0.008035455830395222, + -0.025161197409033775, + -0.026479067280888557, + -0.019814981147646904, + 0.022123176604509354, + -0.005070333369076252, + 0.03345382213592529, + 0.03786014765501022, + 0.017433704808354378, + 0.03031769022345543, + -0.003788931295275688, + -0.002172481967136264, + -0.06741292029619217, + 0.004991335794329643, + -0.01540357805788517, + 0.026001648977398872, + 0.007624359335750341, + 0.07637214660644531, + 0.02014124020934105, + 0.02355649322271347, + -0.030370041728019714, + -0.019073612987995148, + 0.008382678031921387, + -0.009282984770834446, + -0.018527541309595108, + 0.007279825862497091, + 0.026836436241865158, + -0.016222838312387466, + 0.007021450437605381, + 0.010887407697737217, + -0.037955500185489655, + 0.04991426691412926, + -0.010156037285923958, + 0.0449148565530777, + -0.014523752965033054, + 0.033401504158973694, + -0.011234230361878872, + -0.04850028082728386, + -0.05160009115934372, + -0.006120291538536549, + -0.007790191099047661, + -0.021447746083140373, + -0.017769090831279755, + -0.013574890792369843, + 0.06838437169790268, + -0.027345627546310425, + 0.028978882357478142, + -0.07520806789398193, + 0.00390018243342638, + 0.031196311116218567, + 0.013903881423175335, + 0.06763852387666702, + -0.048390429466962814, + 0.03065386787056923, + 0.03165099397301674, + 0.08134029060602188, + 0.012179252691566944, + -0.04544460400938988, + 0.009939083829522133, + 0.07383996993303299, + -0.012361668050289154, + 0.01941698044538498, + -0.009268735535442829, + 0.02264878898859024, + -0.011603944003582, + 0.020377105101943016, + -0.029350563883781433, + 0.06878913938999176, + 0.01431554276496172, + -0.012825718149542809, + -0.008849394507706165, + 0.006863007787615061, + -0.04252946376800537, + 0.07588444650173187, + -0.03708978742361069, + 0.05431908741593361, + -0.000760857539717108, + 0.005476498976349831, + 0.011276614852249622, + 0.002498856745660305, + -0.02464558742940426, + -0.010255387052893639, + 0.10461346060037613, + 0.04795614629983902, + 0.0160532146692276, + -0.011541808024048805, + 0.03966887295246124, + -0.05269331857562065, + 0.0007617136579938233, + 0.018681196495890617, + 0.0289717186242342, + -0.0397915318608284, + 0.00624599726870656, + 0.002709499327465892, + 0.04739229753613472, + 0.036156974732875824, + -0.0268456619232893, + -0.03058159351348877, + -0.015324880369007587, + -0.01821509562432766, + 0.012087066657841206, + 0.0370514951646328, + -0.019542543217539787, + -0.017841411754488945, + 0.006974224001169205, + -0.02234472520649433, + 0.01858825795352459, + 0.011041690595448017, + 0.02574949711561203, + 0.023305196315050125, + -0.034051790833473206, + -0.024340033531188965, + 0.040064942091703415, + 0.008314128033816814, + 0.032767489552497864, + 0.01440118532627821, + 0.012577791698276997, + -0.015927962958812714, + -0.0026764303911477327, + 0.06269454210996628, + -0.012928751297295094, + -0.009450246579945087, + 0.0225864015519619, + -0.028665786609053612, + -0.02138363942503929, + 0.01845516450703144, + -0.01946590468287468, + -0.016553521156311035, + -0.004875588696449995, + 0.03776375949382782, + -0.028365308418869972, + -0.011693732813000679, + -0.011667871847748756, + -0.016615992411971092, + -0.04278114438056946, + 0.04274621233344078, + -0.027194716036319733, + -0.003687421791255474, + -0.026388127356767654, + 0.014725320041179657, + -0.01564234122633934, + 0.03764888271689415, + 0.00762439239770174, + -0.03983870521187782, + -0.007997388020157814, + 0.032539937645196915, + -0.0305977500975132, + 0.005681916605681181, + 0.05413520336151123, + -0.015090922825038433, + 0.010334940627217293, + 0.016060810536146164, + 0.006878930609673262, + 0.020460238680243492, + 0.0003665579133667052, + 0.03442703187465668, + -0.010622921399772167, + -0.008346954360604286, + 0.01385937724262476, + -0.024417148903012276, + 0.052292823791503906, + -0.011459797620773315, + -0.0038157780654728413, + -0.001345456694252789, + -0.008127179928123951, + -0.04177475348114967, + -0.014940637163817883, + -0.031235720962285995, + -0.01046925038099289, + -0.019801471382379532, + 0.0002531638601794839, + -0.015943484380841255, + 0.011528422124683857, + 0.029079658910632133, + -0.018123777583241463, + 0.020222654566168785, + -0.0003231813316233456, + -0.01655540242791176, + -0.0031036706641316414, + -0.004979871213436127, + 0.0009837569668889046, + -0.009711479768157005, + 0.009509380906820297, + -0.02730158157646656, + -0.02128603123128414, + -0.041549649089574814, + 0.023833436891436577, + 0.005709460005164146, + -0.0019722087308764458, + 0.02084539458155632, + 0.028708113357424736, + 0.008660519495606422, + -0.04334646463394165, + 0.0006104609346948564, + 0.07077434659004211, + 0.01600630022585392, + 0.012609697878360748, + -0.025454789400100708, + 0.00803313311189413, + 0.013079773634672165, + -0.015874307602643967, + 0.04685230553150177, + -0.02366708219051361, + 0.030986571684479713, + -0.002343683037906885, + 0.02765096165239811, + -0.015399940311908722, + -0.04156981036067009, + 0.01251074019819498, + 0.024614982306957245, + -0.0344812348484993, + -0.00386463338509202, + 0.031037840992212296, + 0.010136082768440247, + 0.0014147184556350112, + -0.006288865115493536, + 0.01282721571624279, + 0.04021681100130081, + -0.0030537189450114965, + -0.044702980667352676, + 0.062236178666353226, + -0.02880667708814144, + -0.058060422539711, + -0.017797283828258514, + 0.021590886637568474, + -0.04132558032870293, + 0.008901851251721382, + -0.043646253645420074, + 0.013749881647527218, + -0.025035353377461433, + 0.010105360299348831, + -0.01765790395438671, + -0.05800144746899605, + 0.022412922233343124, + 0.0107859056442976, + -0.008072787895798683, + -0.016560407355427742, + -0.01075070258229971, + -0.015003443695604801, + -0.00836093071848154, + 0.027865158393979073, + 0.0026221550069749355, + 0.032734181731939316, + 0.024183476343750954, + 0.022380081936717033, + -0.006431926973164082, + 0.017827467992901802, + -0.07605992257595062, + 0.024655338376760483, + 0.0034415358677506447, + 0.0029658128041774035, + -0.024082772433757782, + 0.0077833207324147224, + 0.017667468637228012, + -0.0259341299533844, + 0.03021320514380932, + 0.00913931056857109, + -0.04638822004199028, + -0.01421294640749693, + -0.03943026065826416, + 0.007055891677737236, + -0.023299621418118477, + -0.0006099705351516604, + 0.058510906994342804, + -0.02568865567445755, + -0.0038142804987728596, + 0.002787553472444415, + 0.034301452338695526, + 0.04306614771485329, + -0.022160233929753304, + -0.017539769411087036, + 0.014585960656404495, + -0.05061222240328789, + -0.02134132944047451, + -0.10243489593267441, + -0.03266392648220062, + 0.051960330456495285, + -0.034793078899383545, + -0.016488272696733475, + 0.015232030302286148, + 0.016715938225388527, + -0.00714854383841157, + -0.006977165583521128, + -0.045779112726449966, + -0.009117351844906807, + -0.04339335113763809, + -0.014838921837508678, + 0.014646371826529503, + 0.023436367511749268, + -0.008843787014484406, + -0.026667974889278412, + -0.028267577290534973, + -0.02625163458287716, + -0.04544578492641449, + 0.022212302312254906, + -0.016815517097711563, + 0.012222920544445515, + -0.0004437538736965507, + 0.06667137891054153, + 0.03914625942707062, + -0.003050400409847498, + -0.022228745743632317, + 0.020357055589556694, + 0.0063577741384506226, + -0.016095522791147232, + -0.008024139329791069, + 0.03308221325278282, + 0.07427769899368286, + 0.008999020792543888, + 0.004416877403855324, + -0.028071921318769455, + 0.02368765138089657, + 0.011058436706662178, + 0.05011595040559769, + -0.035648904740810394, + 0.005176139064133167, + 0.035420972853899, + 0.027069885283708572, + -0.00969972275197506, + -0.01598244719207287, + 0.016029970720410347, + -0.02592424675822258, + 0.0020692627876996994, + 0.0003018421703018248, + -0.0018539425218477845, + -0.00694692088291049, + 0.02993883192539215, + 0.004209648352116346, + -0.004600965417921543, + -0.03531976416707039, + -0.07305589318275452, + -0.04669668525457382, + -0.018407052382826805, + 0.004341225605458021, + 0.03251226618885994, + -0.017249953001737595, + -0.054885320365428925, + -0.01243312656879425, + 0.018311934545636177, + -0.006708824075758457, + -0.05066688731312752, + 0.03578472137451172, + -0.011753370985388756, + 0.0805850476026535, + 0.06842134892940521, + -0.004561745561659336, + 6.871301593491808e-05, + 0.013452203944325447, + 0.0407281294465065, + -0.010691935196518898, + 0.07083304226398468, + 0.00813748873770237, + -0.03063330054283142, + 0.007225350942462683, + -0.011998568661510944, + -0.051421161741018295, + 0.014448781497776508, + -0.027742380276322365, + -0.023823866620659828, + -0.0019715605303645134, + -0.009874974377453327, + -0.028882738202810287, + 0.04132954031229019, + 0.04901314154267311, + 0.007816847413778305, + 0.042386189103126526, + -0.06838466972112656, + 0.003517631208524108, + 0.016724558547139168, + 0.016007551923394203, + -0.007836132310330868, + 0.04217265546321869, + 0.015660539269447327, + 0.013732653111219406, + 0.025916174054145813, + -0.032018113881349564, + -0.039419110864400864, + 0.0022149095311760902, + -0.029319070279598236, + 0.014896415174007416, + 0.040956560522317886, + 0.02729799598455429, + -0.040905438363552094, + -0.02549799531698227, + -0.012161572463810444, + 0.008246737532317638, + 0.06168653443455696, + -0.026459461078047752, + -0.038447439670562744, + 0.018024098128080368, + -0.029668988659977913, + 0.02314109355211258, + -0.013410530053079128, + 0.02753235399723053, + 0.028769154101610184, + -0.08097763359546661, + -0.05322347208857536, + 0.01145978644490242, + 0.00843345932662487, + 0.028896266594529152, + 0.025900160893797874, + -0.02290821075439453, + 0.0037595771718770266, + 0.007020511198788881, + -0.1073785200715065, + 0.028626540675759315, + 0.0252351313829422, + 0.001218108576722443, + -0.03288658708333969, + -0.0411343015730381, + 0.04978592321276665, + 0.018862757831811905, + 0.02811684086918831, + 0.0069992090575397015, + -0.010851298458874226, + 0.012821037322282791, + -0.0006038211868144572, + 0.012500968761742115, + -0.0048674666322767735, + -0.06269537657499313, + -0.0036397958174347878, + -0.016570141538977623, + 0.0032338013406842947, + 0.005563205573707819, + 0.06046074256300926, + -0.0006269216537475586, + -0.01918403059244156, + -0.07725245505571365, + -0.06853578984737396, + 0.006365383975207806, + 0.01359197311103344, + 0.03162543103098869, + 0.0534464456140995, + -0.09923500567674637, + -0.051994118839502335, + 0.0519954189658165, + -0.020338846370577812, + -0.015595505014061928, + 0.04434137046337128, + 0.010421139188110828, + -0.022468822076916695, + -0.022956479340791702, + -0.04112245887517929, + 0.015592969954013824, + 0.015062782913446426, + 0.008586527779698372, + 0.003053577383980155, + 0.033630598336458206, + -0.032071419060230255, + 0.005934479646384716, + -0.06924240291118622, + -0.05361763387918472, + 0.037954580038785934, + -0.02281314507126808, + 0.03074593096971512, + -0.047915976494550705, + -0.00862796138972044, + -0.02444329857826233, + -0.04343520849943161, + 0.009086264297366142, + -0.0007626871229149401, + 0.021779291331768036, + -0.030283331871032715, + -0.015808699652552605, + 0.016989467665553093, + -0.0568663515150547, + -0.04387199878692627, + 0.03210524469614029, + -0.04241316393017769, + 0.04030375927686691, + -0.032967280596494675, + 0.036234330385923386, + 0.07366611063480377, + 0.03723766654729843, + -0.02339228428900242, + 0.00475740060210228, + -0.0009177388856187463, + -0.008909120224416256, + 0.016526177525520325, + 0.08132950216531754, + -0.03749052807688713, + -0.015782250091433525, + 0.01634759083390236, + 0.05308225750923157, + -0.013496353290975094, + -0.013880719430744648, + 0.06533141434192657, + 0.0048374272882938385, + -0.045574579387903214, + 0.01059858500957489, + -0.05232318490743637, + 0.023336971178650856, + 0.012850018218159676, + -0.03152742236852646, + -0.02901017852127552, + 0.0428629107773304, + 0.013487798161804676, + -0.03908113017678261, + 0.01961563527584076, + -0.009399146772921085, + -0.01896490342915058, + 0.021329564973711967, + 0.04028837010264397, + 0.01510701049119234, + 9.486184717388824e-05, + 0.03736478462815285, + 0.03769731521606445, + -0.04675941541790962, + -0.0004970415611751378, + 0.01831745356321335, + -0.03398749232292175, + 0.0035050546284765005, + -0.05195298790931702, + -0.03907736390829086, + 0.055919475853443146, + 0.002466714009642601, + -0.03596791625022888, + 0.0305495485663414, + 0.0024270666763186455, + -0.008464413695037365, + -0.04079664126038551, + 0.008032184094190598, + -0.0019598333165049553, + 0.01680206134915352, + -0.014209914021193981, + 0.0523599274456501, + 0.01709320954978466, + 0.03690485656261444, + 0.010184423997998238, + 0.012976332567632198, + 0.009697549976408482, + 0.004259110894054174, + -0.03663811460137367, + -0.008761494420468807, + 0.014210992492735386, + 0.009847695007920265, + -0.03683868795633316, + 0.012121991254389286, + -0.02529641054570675, + -0.005159599240869284, + 0.009237908758223057, + -0.01703864336013794, + -0.008279078640043736, + 0.03758247196674347, + -0.04459109529852867, + -0.0076212589628994465, + -0.05381767824292183, + 0.04607439041137695, + -0.04062580317258835, + -0.006044874433428049, + 0.008029810152947903, + -0.024928079918026924, + -0.03739619255065918, + 0.005243447609245777, + 0.02017962746322155, + 0.021722013130784035, + 0.01825813576579094, + 0.02990930713713169, + -0.0025121162179857492, + 0.028561875224113464, + -0.007106965873390436, + -0.03250652179121971, + 0.06783585995435715, + -0.0004718882264569402, + 0.05104532465338707, + 0.0006241853698156774, + -0.0736987292766571, + 0.003632873296737671, + -0.03193502873182297, + 0.014039051719009876, + 0.06051403656601906, + 0.014787603169679642, + -0.03588717430830002, + -0.042567525058984756, + -0.06190949305891991, + 0.009438745677471161, + -0.04430938884615898, + -0.007521991617977619, + -0.023935949429869652, + 0.03808865696191788, + -0.020062120631337166, + 0.009388724341988564, + -0.0317232646048069, + 0.02597726322710514, + 0.0007651418563909829, + -0.051167067140340805, + -0.04350582882761955, + -0.03563017398118973, + 0.011815126985311508, + 0.004518189933151007, + -0.021191431209445, + -0.03660472109913826, + -0.013952749781310558, + 0.028735952451825142, + -0.02110881358385086, + 0.011214672587811947, + 0.008517780341207981, + -0.03627007082104683, + 0.019767338410019875, + 0.03500417619943619, + -0.01550822053104639, + -0.030117645859718323, + -0.01230150368064642, + -0.00918754655867815, + -0.035019464790821075, + -0.03585058078169823, + 0.0379328690469265, + 0.03510318323969841, + 0.04069735109806061, + -0.014390374533832073, + -0.04049646481871605, + 0.004225117154419422, + 0.03977184742689133, + 0.03469182923436165, + 0.008221421390771866, + 0.020941928029060364, + -0.01489125844091177, + 0.0025682635605335236, + 0.019522298127412796, + -0.009788878262043, + 0.0206085667014122, + -0.01122083980590105, + 0.010392260737717152, + -0.012080103158950806, + -0.02696981467306614, + 0.009256690740585327, + -0.026913480833172798, + 0.042788032442331314, + 0.012137888930737972, + -0.09888847917318344, + 0.01966862939298153, + -0.06788448989391327, + 0.0031486281659454107, + -0.01766742393374443, + 0.022923337295651436, + -0.0048178015276789665, + -0.0031878731679171324, + 0.05870702862739563, + 0.027025936171412468, + -0.07767964154481888, + 0.013523517176508904, + -0.08113951981067657, + -0.007594539318233728, + 0.028973931446671486, + -0.00016307430632878095, + -0.016966529190540314, + -0.008430179208517075, + -0.04211487993597984, + 0.009183167479932308, + -0.01333160325884819, + -0.0011833880562335253, + 0.014182073995471, + 0.0077500054612755775, + -0.006231355015188456, + 0.038082730025053024, + -0.0043565211817622185, + -0.06122856214642525, + 0.0073252213187515736, + 0.0020276817958801985, + 4.410578912938945e-05, + 0.023237615823745728, + 0.04282182827591896, + 0.002926901215687394, + 0.03320161625742912, + 0.001628389465622604, + 0.020996328443288803, + 0.014955132268369198, + -0.008688773028552532, + -0.015785101801156998, + 0.021715037524700165, + 0.028168462216854095, + 0.01744939759373665, + -0.024027861654758453, + -0.012172079645097256, + 0.019889509305357933, + -0.015058801509439945, + -0.02560492977499962, + 0.034802161157131195, + 0.008540033362805843, + 0.03319430723786354, + -0.0030057241674512625, + -0.0191451795399189, + -0.0005660747992806137, + 0.024873437359929085, + 0.02703947201371193, + -0.03883616253733635, + 0.008497144095599651, + -0.03284694254398346, + 0.014227332547307014, + 0.01923307403922081, + 0.02096865139901638, + -0.013258803635835648, + -0.017104478552937508, + -0.012204570695757866, + -0.021010087803006172, + -0.011136656627058983, + -0.0067032878287136555, + -0.018326111137866974, + 0.038771845400333405, + 0.0005064517026767135, + -0.016198204830288887, + 0.013955602422356606, + 0.015326223336160183, + -0.013722207397222519, + -0.00745286513119936, + 0.07363427430391312, + -0.05406256020069122, + 0.06196195259690285, + -0.02598489262163639, + -0.03193649277091026, + -0.018710710108280182, + 0.058348823338747025, + 0.025736426934599876, + -0.038227763026952744, + -0.015114188194274902, + 0.03209395334124565, + -0.02381451055407524, + 0.018113596364855766, + 0.036637693643569946, + 0.05508996918797493, + 0.02446715161204338, + -0.03234931826591492, + -0.0008201899472624063, + -0.01625695824623108, + -0.02409450337290764, + -0.0026057676877826452, + -0.02500847913324833, + 0.007262686733156443, + -0.001954652601853013, + 0.021538037806749344, + 0.054836273193359375, + -0.0005568428314290941, + 0.04925452545285225, + -0.028889240697026253, + 0.014013626612722874, + 0.005352620035409927, + -0.03699895367026329, + 0.005951342172920704, + -0.018764138221740723, + 0.024005603045225143, + -0.014394589699804783, + -0.055641237646341324, + 0.024220570921897888, + 0.013127058744430542, + 0.00396772101521492, + -0.0393252819776535, + 0.019720882177352905, + 0.005054899957031012, + 0.03653190657496452, + -0.007778465747833252, + 0.009131209924817085, + -0.03942418843507767, + -0.027423860505223274, + -0.0021664819214493036, + -0.02123921923339367, + 0.0677894875407219, + -0.008600485511124134, + 0.0053914329037070274, + 0.024521848186850548, + -0.00684828357771039, + 0.01809086464345455, + 0.043950606137514114, + 0.024076657369732857, + 0.009088603779673576, + 0.020448964089155197, + 0.015725789591670036, + -0.015180972404778004, + 0.03616151586174965, + -0.010709733702242374, + 0.01944015733897686, + 0.030746128410100937, + -0.009693851694464684, + -0.00710417190566659, + -0.026176249608397484, + 0.009682882577180862, + 0.007823524065315723, + 0.012811485677957535, + -0.012076104991137981, + 0.00636919355019927, + 0.002480119001120329, + -0.016156964004039764, + 0.02192123420536518, + 0.0036584993358701468, + -0.00939115509390831, + 0.020251626148819923, + 0.013343156315386295, + -0.05231049284338951, + -0.0263085775077343, + -0.041028887033462524, + 0.006523319985717535, + -0.015291653573513031, + 0.030179927125573158, + -0.021329838782548904, + 0.05418902635574341, + -0.03293762728571892, + -0.010045185685157776, + 0.01961863785982132, + -0.0012102265609428287, + -0.020316436886787415, + 0.02011665515601635, + 0.00688983965665102, + 0.012810800224542618, + 0.09861564636230469, + 0.005327968392521143, + 0.04409228265285492, + -0.03787815570831299, + -0.042741455137729645, + -0.011039337143301964, + -0.08496903628110886, + 0.031764041632413864, + 0.012288663536310196, + -0.058415487408638, + -0.008965792134404182, + 0.018627937883138657, + -0.021122243255376816, + 0.0005576960975304246, + -0.04098203778266907, + -0.03872045502066612, + -0.025709642097353935, + -0.016777126118540764, + -0.018316660076379776, + 0.043209146708250046, + 0.0025408908259123564, + 0.003734436584636569, + -0.00945831649005413, + 0.016596123576164246, + 0.018633628264069557, + -0.0022554099559783936, + -0.04505974426865578, + -0.02341022901237011, + -0.017455099150538445, + -0.0427975170314312, + -0.03266594186425209, + -0.015855740755796432, + 0.011307859793305397, + -0.017506765201687813, + -0.001506502740085125, + 0.007453514263033867, + -0.008801883086562157, + -0.01097169890999794, + -0.013691597618162632, + 0.007611551787704229, + 0.012935176491737366, + 0.0036084866151213646, + -0.028740905225276947, + 0.012923973612487316, + 0.01043556910008192, + 0.04025604575872421, + -0.004309560637921095, + 0.042282067239284515, + 0.01513096783310175, + 0.018485482782125473, + 0.0064905304461717606, + 0.04637370631098747, + 0.05871666595339775, + -0.0035862945951521397, + 0.018214324489235878, + -0.010798600502312183, + -0.018588051199913025, + -0.011324825696647167, + 0.049417175352573395, + -0.004087244626134634, + -0.009252674877643585, + 0.05865016579627991, + -0.05238184332847595, + -0.03862947225570679, + 0.04905066266655922, + 0.01598786935210228, + 0.023004112765192986, + -0.042400337755680084, + 0.00017525578732602298, + 0.007726188283413649, + -0.003984850365668535, + -0.010167678818106651, + 0.027637790888547897, + 0.02075617015361786, + 0.037979625165462494, + 0.03309858962893486, + 0.0036581328604370356, + -0.01817055232822895, + -0.00015686753613408655, + 0.014163742773234844, + 0.050026435405015945, + 0.009225188754498959, + 0.026635827496647835, + 0.002852839883416891, + 0.005171772092580795, + -0.04460793733596802, + 0.059730421751737595, + -0.012182801961898804, + -0.013231949880719185, + 0.052643585950136185, + 0.008185510523617268, + -0.0024932336527854204, + -0.012555542401969433, + -0.032450877130031586, + 0.01514289528131485, + -0.0902010127902031, + 0.028449980542063713, + 0.003402876202017069, + 0.024894041940569878, + -0.05262356624007225, + 0.04748876392841339, + 0.02799753099679947, + 0.034189242869615555, + 0.004599093925207853, + 0.05800098180770874, + -0.02475707232952118, + -0.011872367933392525, + 0.08136402815580368, + -0.002664505271241069, + -0.0468301922082901, + 0.0008635694975964725, + -0.0307458508759737, + 0.021412190049886703, + 0.01934262178838253, + -0.009422649629414082, + -0.015485229901969433, + 0.012362383306026459, + 0.03624142333865166, + 0.0015957355499267578, + -0.0006665257969871163, + -0.08549259603023529, + 0.010659817606210709, + 0.017540786415338516, + 0.031922753900289536, + 0.017132902517914772, + -0.011490659788250923, + 0.055737193673849106, + 0.06869284063577652, + 0.0029422196093946695, + -0.012039453722536564, + -0.026815926656126976, + -0.003599215066060424, + 0.03977692127227783, + -0.037714675068855286, + -0.03276703879237175, + -0.027713553979992867, + -0.007231631316244602, + 0.032487139105796814, + 0.008655695244669914, + 0.03851933404803276, + 0.018628675490617752, + 0.04812159016728401, + -0.026524193584918976, + -0.04226534068584442, + -0.018726222217082977, + 0.02168588899075985, + 0.039646901190280914, + -0.004479558672755957, + -0.02316923253238201, + -0.0521397739648819, + 0.06863973289728165, + 0.028648560866713524, + 0.04420692101120949, + 0.04206833243370056, + -0.04184974357485771, + 0.04480578377842903, + 0.022534461691975594, + -0.012063432484865189, + 0.060424454510211945, + 0.017532678321003914, + 0.018126854673027992, + 0.04948936402797699, + 0.04226144030690193, + 0.037229668349027634, + -0.026357661932706833, + 0.01625649817287922, + 0.02621893212199211, + 0.05678043141961098, + -0.03702661767601967, + 0.0008102073916234076, + 0.011577917262911797, + 0.021000195294618607, + 0.027342677116394043, + -0.02969394251704216, + 0.0013847574591636658, + 0.00022827062639407814, + 0.0040395548567175865, + -0.005017322953790426, + -0.03637637943029404, + 0.019568201154470444, + 0.011862571351230145, + -0.013723810203373432, + 0.026606876403093338, + -0.008096051402390003, + 0.003957739565521479, + -0.02085208147764206, + 0.03293954208493233, + 0.011294704861938953, + 0.012452453374862671, + -0.06521443277597427, + 0.01223472598940134, + -0.032830242067575455 + ], + "start_index": 28310, + "end_index": 28387, + "token_count": 9, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "1f241711-1905-5633-8bd7-1881ba5b2092", + "_source": { + "text": "\n\nEjemplos:\n\n\n\n1.0\n3.14\n.5", + "embedding": [ + -0.010301514528691769, + 0.02242417261004448, + -0.008222468197345734, + -0.059734586626291275, + 0.005318121984601021, + 0.09842540323734283, + -0.03169244900345802, + 0.026520298793911934, + -0.043749138712882996, + -0.032461415976285934, + 0.03546556457877159, + -0.01139151956886053, + 0.04507764056324959, + -0.004535934422165155, + -0.03194556385278702, + 0.05277784541249275, + 0.003001651493832469, + 0.0769825428724289, + 0.04143393784761429, + -0.013063345104455948, + -0.0449824258685112, + 0.04143271967768669, + 0.014471505768597126, + 0.03164020553231239, + -0.008627932518720627, + -0.025227414444088936, + -0.04029547795653343, + -0.028165213763713837, + 0.031051067635416985, + -0.04483997821807861, + -0.004883385729044676, + -0.03610309585928917, + -0.06439689546823502, + -0.015448330901563168, + 0.014078992418944836, + -0.00777398981153965, + -0.01591113954782486, + -0.0024460789281874895, + -0.002612977521494031, + 0.002667051972821355, + 0.005456034559756517, + -0.028809532523155212, + -0.021451864391565323, + 0.027557015419006348, + -0.019855400547385216, + 0.08883827924728394, + 0.055424004793167114, + 0.021175801753997803, + 0.03727220743894577, + 0.01771673932671547, + -0.010295896790921688, + -0.04275445267558098, + 0.026444390416145325, + 0.007148345001041889, + 0.005049610510468483, + 0.06861412525177002, + -0.017111055552959442, + -0.0026516278740018606, + 0.014740336686372757, + 0.039404988288879395, + -0.07974447309970856, + -0.0468892864882946, + 0.014564557000994682, + 0.07589051872491837, + 0.012202280573546886, + -0.00714159244671464, + -0.00839648675173521, + -0.04210131615400314, + -0.1255348026752472, + -0.02549799345433712, + -0.040228892117738724, + -0.040090981870889664, + -0.046402137726545334, + -0.0052454229444265366, + 0.01883072778582573, + -0.04822201281785965, + 0.008822217583656311, + -0.09080254286527634, + -0.020627731457352638, + -0.051853593438863754, + -0.02772514335811138, + 0.03806830942630768, + 0.011247820220887661, + -0.015405021607875824, + 0.003046683967113495, + 0.06995497643947601, + 0.0014636338455602527, + 0.005418236833065748, + -0.017231879755854607, + -0.0020692984107881784, + -0.028067978098988533, + 0.06016760319471359, + -0.07023646682500839, + -0.0516696460545063, + -0.005549886263906956, + 0.02625386230647564, + 0.02195618860423565, + -0.01934663951396942, + -0.009727864526212215, + 0.002030717907473445, + -0.011213722638785839, + -0.019469967111945152, + -0.028633806854486465, + 0.01206892915070057, + -0.020616168156266212, + 0.01961796171963215, + -0.031059568747878075, + 0.005574211943894625, + 0.024549691006541252, + -0.0028706591110676527, + 0.033020373433828354, + -0.000714751600753516, + 0.046568576246500015, + 0.07504646480083466, + -0.00760203693062067, + -0.024186082184314728, + -0.0134999118745327, + -0.0012112029362469912, + 0.016408968716859818, + 0.023817220702767372, + 0.009502840228378773, + -0.054881684482097626, + -0.026455579325556755, + -0.014744371175765991, + 0.005475376266986132, + 0.025960171595215797, + -0.01477483194321394, + -0.014887014403939247, + 0.016305282711982727, + -0.011647247709333897, + 0.0028131138533353806, + 0.015600149519741535, + -0.03756717965006828, + -0.0633251741528511, + 0.014597892761230469, + 0.037542924284935, + -0.012737317010760307, + -0.07186363637447357, + 0.0743895098567009, + -0.02977721393108368, + -0.051637914031744, + 0.030706120654940605, + 0.012139080092310905, + -0.02053903602063656, + 0.007718035951256752, + 0.0340697206556797, + 0.014449412934482098, + 0.01937224715948105, + 0.00536492420360446, + 0.03243609890341759, + -6.708745058858767e-05, + -0.0009150755358859897, + 0.03235612064599991, + -0.011351708322763443, + -0.014168220572173595, + -0.02281292900443077, + -0.04379960522055626, + 0.01907452754676342, + 0.005244255531579256, + 0.025160154327750206, + 0.01077296957373619, + -0.010814116336405277, + -0.009868470951914787, + -0.01879740133881569, + 0.0051358710043132305, + 0.029453204944729805, + 0.03759588673710823, + -0.03179837763309479, + -0.06025130674242973, + -0.0027186318766325712, + -0.014967530034482479, + 0.03848039358854294, + 0.018382566049695015, + -0.047890450805425644, + 0.0061805639415979385, + -0.0102971401065588, + -0.02211417630314827, + -0.013488046824932098, + 0.01273544505238533, + 0.02616920694708824, + 0.016114961355924606, + 0.030454549938440323, + -0.0008111701463349164, + -8.774889283813536e-05, + -0.01726684533059597, + 0.018848346546292305, + -0.0017709662206470966, + -6.195450987434015e-05, + 0.0002555108512751758, + -0.010988892056047916, + 0.0021653142757713795, + -0.04750203713774681, + 0.005904532968997955, + -0.01794884353876114, + -0.053525008261203766, + -0.029891952872276306, + 0.06071403995156288, + -0.017499513924121857, + 0.001254671486094594, + -0.01617451198399067, + 0.007751244120299816, + 0.010243123397231102, + -0.008683521300554276, + 0.006241472437977791, + -0.02664610929787159, + -0.01140050683170557, + -0.015918541699647903, + 0.014649491757154465, + 0.017830923199653625, + -0.0127848070114851, + 0.02374344691634178, + -0.0038270328659564257, + -0.020154057070612907, + -0.033168211579322815, + -0.017868144437670708, + -0.012229440733790398, + -0.022886265069246292, + 0.043616313487291336, + 0.02095046080648899, + 0.020629985257983208, + 0.06693118065595627, + 0.009725322015583515, + -0.04519803449511528, + -0.0022428492084145546, + 0.017961429432034492, + -0.004713776055723429, + -0.0009032918605953455, + -0.013399985618889332, + -0.016796516254544258, + 0.05642683431506157, + 0.004812570754438639, + -0.037661902606487274, + 0.06434451788663864, + 0.05008174479007721, + 0.0159857589751482, + 0.005106684286147356, + -0.02853607013821602, + -0.050899580121040344, + 0.05586644634604454, + -0.008481545373797417, + 0.01576821878552437, + -0.01647377759218216, + 0.015196266584098339, + -0.008086287416517735, + -0.020729748532176018, + 0.006245565600693226, + 0.0022346063051372766, + 0.03518003970384598, + -0.0027774071786552668, + -0.022604720667004585, + 0.056181348860263824, + 0.05727383866906166, + -0.02395971305668354, + -0.02265501208603382, + 0.001286736805923283, + -0.02161632664501667, + 0.013633283786475658, + -0.005691087804734707, + 0.028783760964870453, + -0.02607620321214199, + 0.010148236528038979, + -0.033438727259635925, + -0.025711802765727043, + 0.009914647787809372, + -0.011247850023210049, + 0.01604325696825981, + -0.03429034352302551, + 0.005141130182892084, + -0.022392509505152702, + -0.005241689272224903, + 0.019174223765730858, + 0.028999166563153267, + 0.014998248778283596, + -0.01075446791946888, + -0.012728164903819561, + 0.02038242109119892, + 0.017258912324905396, + -0.03792889416217804, + -0.010597152635455132, + 0.018981100991368294, + -0.00999544933438301, + -0.010145558975636959, + 0.050969041883945465, + 0.01924600452184677, + 0.0015072246314957738, + 0.03266558423638344, + 0.01304862555116415, + -0.015717552974820137, + -0.0009107122314162552, + -0.024001935496926308, + 0.04275238513946533, + -0.013061661273241043, + 0.002772413194179535, + 0.017834674566984177, + -0.011932817287743092, + 0.025242086499929428, + -0.0039805276319384575, + 0.09622503072023392, + 0.043922387063503265, + 0.0028572867158800364, + -0.03641026094555855, + -0.03073260560631752, + -0.058863162994384766, + -0.037591323256492615, + -0.016506729647517204, + 0.010406150482594967, + 0.06462880223989487, + 0.00032856062171049416, + 0.025994226336479187, + 0.03328368067741394, + 0.07592567056417465, + 0.004339721519500017, + 0.0124473562464118, + -0.022435666993260384, + 0.00844966433942318, + -0.05044902116060257, + -0.032756488770246506, + 0.014317314140498638, + -0.004982335027307272, + -0.0017976671224460006, + -0.02354409731924534, + 0.037497229874134064, + 0.027423707768321037, + 0.01749301329255104, + -0.0018354473868384957, + -0.023251380771398544, + -0.021479498594999313, + 0.012695511803030968, + 0.007426701486110687, + 0.043126773089170456, + 0.005032394081354141, + 0.03430817648768425, + 0.016172192990779877, + -0.016824111342430115, + -0.012450276874005795, + 0.021732565015554428, + 0.03777710348367691, + 0.005517755635082722, + 0.03980931639671326, + -0.03929590433835983, + -0.015573703683912754, + -0.046386733651161194, + -0.02425895817577839, + 0.0030240709893405437, + -0.03254323825240135, + -0.019046910107135773, + 0.037133388221263885, + 0.014567738398909569, + -0.011043616570532322, + 0.02163473330438137, + 0.038349900394678116, + -0.024939680472016335, + -0.018671870231628418, + -0.011822294443845749, + -0.021886838600039482, + -0.011490974575281143, + 0.018998291343450546, + 0.015292546711862087, + -0.015521420165896416, + -0.019186079502105713, + -0.024197040125727654, + -0.06844674795866013, + 0.008003936149179935, + 0.05461934581398964, + 0.029697321355342865, + 0.0003296621725894511, + -0.042376212775707245, + -0.004047567956149578, + -0.002833237871527672, + -0.013807261362671852, + -0.04846508800983429, + -0.06895854324102402, + 0.024100186303257942, + 0.05488542467355728, + 0.07163641601800919, + 0.03649985045194626, + 0.06307525932788849, + -0.019588591530919075, + 0.023324312642216682, + -0.015023479238152504, + 0.007883799262344837, + 0.03420918062329292, + -0.002950505120679736, + 0.0012753301998600364, + -0.09241117537021637, + -0.01603790931403637, + 0.029433581978082657, + -0.03898065537214279, + -0.01936730556190014, + -0.014602466486394405, + 0.006553714629262686, + -0.04098211228847504, + -0.0024790640454739332, + -0.014857406727969646, + 0.03620709478855133, + 0.05790368467569351, + -0.02485516108572483, + -0.020266404375433922, + 0.008253965526819229, + 0.031854305416345596, + -0.0086579080671072, + 0.01879175938665867, + -0.02030547708272934, + 0.02142968587577343, + 0.060440901666879654, + -0.031257420778274536, + -0.01616767793893814, + -0.03450123593211174, + 0.012860105372965336, + -0.003812548704445362, + 0.0533798523247242, + 0.005119064822793007, + -0.01937028393149376, + 0.0003295812348369509, + 0.01416323147714138, + -0.012460049241781235, + 0.035097379237413406, + -0.05525624752044678, + 0.03004077449440956, + -0.020005619153380394, + -0.003125611459836364, + 0.01369979977607727, + 0.020038215443491936, + -0.017107486724853516, + 0.027191143482923508, + -0.03929928317666054, + -0.05344434082508087, + -0.009857353754341602, + 0.02058599889278412, + 0.03745569661259651, + 0.02754231169819832, + -0.016647474840283394, + 0.04236624389886856, + 0.0021160158794373274, + -0.04503229260444641, + -0.010281426832079887, + 0.05912002921104431, + -0.00299911480396986, + -0.01561959832906723, + -0.02967066317796707, + 0.042392387986183167, + 0.010365351103246212, + -0.018000172451138496, + 0.02958587184548378, + -0.0024536713026463985, + -0.011622047983109951, + 0.03465140610933304, + -0.002856547012925148, + -0.006670949514955282, + 0.012199506163597107, + 0.03793192282319069, + -0.024048933759331703, + -0.023084226995706558, + 0.025488007813692093, + 0.021986689418554306, + -0.003660712856799364, + 0.016399340704083443, + -0.07269637286663055, + -0.02182331681251526, + 0.04152792692184448, + -0.006503941956907511, + 0.06784513592720032, + -0.010388444177806377, + -0.049803026020526886, + -0.03216394782066345, + 0.049973659217357635, + -0.012998036108911037, + -0.03943264111876488, + 0.02909138984978199, + 0.014921518042683601, + -0.036782510578632355, + 0.014791509136557579, + -0.00079307024134323, + 0.02829214558005333, + 0.02839767560362816, + -0.016848336905241013, + -0.03145776316523552, + 0.049672577530145645, + -0.054031964391469955, + -0.021422259509563446, + -0.05533256381750107, + -0.051492560654878616, + 0.04556804522871971, + -0.010514815337955952, + -0.018895085901021957, + -0.043175406754016876, + -0.007478176150470972, + -0.051112085580825806, + -0.06037444248795509, + -0.006685507018119097, + 0.038926489651203156, + 0.027022749185562134, + -0.03063282184302807, + -0.0071939872577786446, + 0.012721817009150982, + -0.04286421462893486, + -0.011456686072051525, + -0.017721103504300117, + -0.07815549522638321, + 0.030594823881983757, + 0.0204788651317358, + 0.06626683473587036, + -0.007829979062080383, + 0.018508611246943474, + -0.036614760756492615, + -0.017687996849417686, + 0.03718050941824913, + 0.0316716805100441, + 0.032999902963638306, + 0.07379603385925293, + -0.03214038163423538, + 0.027012363076210022, + 0.012270924635231495, + 0.0022285799495875835, + -0.023323895409703255, + -0.01955084316432476, + 0.0014417866477742791, + 0.02370253950357437, + 0.006907752715051174, + -0.006874238606542349, + -0.03321952745318413, + 0.05067088454961777, + 0.049361977726221085, + 0.05055227503180504, + -0.031000429764389992, + 0.06489327549934387, + -0.005496891215443611, + 0.029784372076392174, + 0.04673728719353676, + -0.015955641865730286, + 0.02709541842341423, + 0.0022744343150407076, + 0.021337460726499557, + 0.0701027438044548, + -0.008570723235607147, + 0.05611405521631241, + -0.005583600606769323, + -0.019836340099573135, + 0.004950941074639559, + 0.010714075528085232, + -0.07517687976360321, + 0.008444160223007202, + -0.008624891750514507, + -0.01373986154794693, + 0.001614266773685813, + 0.014738029800355434, + -0.03383946418762207, + -0.009998714551329613, + -0.04869379475712776, + 0.011965369805693626, + -0.039430905133485794, + 0.013589219190180302, + -0.014037266373634338, + -0.006810965947806835, + -0.008335360325872898, + 0.0648045614361763, + 0.01127663441002369, + -0.0014823698438704014, + 0.030507860705256462, + -0.006081136409193277, + 0.015056146308779716, + 0.055297303944826126, + -0.0384887158870697, + 0.032104939222335815, + -0.04505912959575653, + 0.006111315451562405, + -0.00015396981325466186, + 0.02194497361779213, + 0.033178623765707016, + -0.0011963414726778865, + 0.02400018461048603, + -0.01913537085056305, + 0.014053230173885822, + 0.05959223583340645, + -0.021461481228470802, + -0.05142829939723015, + -0.007180473301559687, + 0.019527500495314598, + 0.03266677260398865, + -0.03911849483847618, + 0.07482526451349258, + -0.02756894938647747, + -0.07072973251342773, + -0.03891356289386749, + 0.0028344523161649704, + 0.011380653828382492, + 0.014396054670214653, + 0.04545724019408226, + 0.02455810271203518, + 0.0361761711537838, + -0.007271491456776857, + -0.05253169313073158, + -0.03049687296152115, + 0.01764540560543537, + 0.013026377186179161, + -0.007837843149900436, + -0.025741135701537132, + -0.037278614938259125, + 0.03229245916008949, + 0.010745741426944733, + -0.0098450668156147, + 0.03405091539025307, + -0.04063696414232254, + -0.008008669130504131, + -0.042722880840301514, + -0.01546606607735157, + 0.02319115400314331, + -0.007877764292061329, + -0.01850486733019352, + 0.0028065298683941364, + 0.00396294891834259, + 0.03823728859424591, + -0.0382043831050396, + 0.013651751913130283, + 0.023801611736416817, + -0.05744672939181328, + -0.09452593326568604, + 0.06346386671066284, + -0.02853013202548027, + -0.008466336876153946, + 0.06252641975879669, + 0.010035576298832893, + -0.0033387017901986837, + 0.01797407865524292, + 0.0006126640364527702, + 0.06805174052715302, + 0.031434737145900726, + -0.020943529903888702, + -0.0003050123050343245, + -0.014925888739526272, + -0.015491168946027756, + 0.036618154495954514, + -0.033491265028715134, + 0.0018217249307781458, + 0.05140300467610359, + 0.011370254680514336, + -0.0014057072112336755, + 0.016545766964554787, + 0.040786635130643845, + -0.01668943278491497, + -0.026185832917690277, + -0.007148209027945995, + -0.01564468815922737, + -0.043231021612882614, + -0.036103349179029465, + 0.018492335453629494, + -0.014842629432678223, + 0.028915194794535637, + -0.01035993080586195, + -0.05938056483864784, + -0.025827422738075256, + -0.004591493867337704, + 0.015951741486787796, + 0.045620955526828766, + -0.011105811223387718, + -0.009808648377656937, + 0.0028974295128136873, + -0.04451744630932808, + 0.021344909444451332, + -0.038317080587148666, + -0.002309439005330205, + -0.010217552073299885, + 0.010936722159385681, + -0.008188586682081223, + -0.013756013475358486, + -0.0671829804778099, + -0.005811797920614481, + -0.014866313897073269, + 0.023424221202731133, + -0.00010671135532902554, + 0.002321862615644932, + -0.058524299412965775, + 0.039786554872989655, + 0.09114416688680649, + -0.0050528510473668575, + -0.01226778980344534, + -0.01617010496556759, + -0.07961999624967575, + 0.019806040450930595, + -0.002947672037407756, + 0.019427483901381493, + -0.014816703274846077, + -0.0103343790397048, + 0.004480624571442604, + -0.0009521823958493769, + -0.016002576798200607, + -0.08725551515817642, + 0.01999652571976185, + -0.01282430998980999, + 0.01149769127368927, + -0.0025562061928212643, + -0.005407159682363272, + 0.08383321017026901, + -0.039465103298425674, + 0.029032837599515915, + -0.008741622790694237, + -0.04883743077516556, + 0.018401391804218292, + -0.026586296036839485, + 0.007341394200921059, + 0.0005997038097120821, + -0.030038906261324883, + 0.01241381000727415, + 0.030905209481716156, + 0.006489160470664501, + -0.01680641993880272, + -0.03961766138672829, + 0.022634413093328476, + -0.025249451398849487, + -0.00241669244132936, + 0.008183502592146397, + 0.043537985533475876, + 0.023179471492767334, + -0.0009296751231886446, + -0.01879381388425827, + -0.01757153496146202, + 0.025607844814658165, + 0.0052564991638064384, + -0.0019791009835898876, + -0.02473320998251438, + 0.03568499535322189, + -0.05454099178314209, + 0.035918090492486954, + 0.018566325306892395, + -0.010399937629699707, + -0.022089090198278427, + 0.01669229194521904, + 0.004959496203809977, + 0.008884242735803127, + -0.03825259953737259, + 0.07246977835893631, + -0.004237198270857334, + 0.038006316870450974, + 0.03562192991375923, + -0.04555662348866463, + 0.04906950891017914, + 0.040487583726644516, + -0.010998818092048168, + 0.015570702962577343, + 0.021201102063059807, + -0.04617531970143318, + -0.021440474316477776, + -0.040222201496362686, + -0.036013033241033554, + -0.013801943510770798, + 0.03502689301967621, + 0.001828450127504766, + 0.039032962173223495, + 6.416572432499379e-05, + 0.03606509417295456, + 0.04760660231113434, + -0.04936976730823517, + 0.014856341294944286, + 0.0021123120095580816, + -0.016451695933938026, + 0.0072723738849163055, + -0.04242069274187088, + 0.03816519305109978, + 0.01638929173350334, + 0.013529098592698574, + 0.049567218869924545, + 0.014612347818911076, + 0.03418750688433647, + 0.004881458822637796, + 0.02912323735654354, + 0.03171881288290024, + -0.007605347316712141, + -0.014183448627591133, + -0.05121529847383499, + -0.019882315769791603, + -0.005422572139650583, + -0.025737501680850983, + -0.03934550657868385, + 0.0035168323665857315, + 0.020362071692943573, + -0.01291829627007246, + 0.00890363659709692, + -0.03502919152379036, + -0.019565129652619362, + 0.011301708407700062, + 0.04592173174023628, + 0.027362575754523277, + 0.025319509208202362, + -0.01886887662112713, + -0.028323320671916008, + 0.046096693724393845, + 0.005793191026896238, + 0.00546066602692008, + 0.010541876778006554, + 0.014907844364643097, + -0.02335858903825283, + 0.045288775116205215, + 0.051351338624954224, + 0.004840699024498463, + 0.024694977328181267, + 0.016103878617286682, + -0.05168420448899269, + -0.01027775276452303, + 0.0026150234043598175, + 0.06619378924369812, + -0.0409247986972332, + -0.0026174646336585283, + 0.019126221537590027, + 0.011168957687914371, + 0.0008557559340260923, + 0.018880650401115417, + 0.0060992673970758915, + 0.008740631863474846, + 0.02382180467247963, + -0.05856643617153168, + -0.027868306264281273, + 0.045406416058540344, + -0.0039039701223373413, + 0.005707124248147011, + 0.012914550490677357, + -0.010876032523810863, + -0.07383707165718079, + -0.018764397129416466, + -0.022794518619775772, + -0.036859191954135895, + -0.01435090135782957, + -0.03966521471738815, + -0.03600246459245682, + -0.015745026990771294, + 0.02301155962049961, + 0.04977552592754364, + 0.02031351439654827, + 0.019109584391117096, + -0.04201458394527435, + 0.019890327006578445, + 0.025999922305345535, + -0.02071850560605526, + 0.05682963505387306, + 0.014530736953020096, + 0.06931036710739136, + -0.018214471638202667, + -0.0372900664806366, + 0.04550979286432266, + 0.015182633884251118, + 0.024838779121637344, + 0.04611654952168465, + -0.04490871727466583, + 0.0396021343767643, + 0.022501520812511444, + 0.009155688807368279, + -0.03311983868479729, + 0.004503334406763315, + 0.006776404567062855, + 0.022731993347406387, + 0.020546691492199898, + 0.020221102982759476, + 0.026797879487276077, + 0.0076071638613939285, + -0.0138670913875103, + -0.022623475641012192, + 0.05425684526562691, + 0.04537639766931534, + -0.0015209534903988242, + -0.030912764370441437, + -0.0836511105298996, + -0.05774809047579765, + -0.01645979844033718, + -0.01422116532921791, + -0.031372714787721634, + 0.005864579696208239, + 0.024549463763833046, + -0.018752148374915123, + 0.0006123041966930032, + 0.012765064835548401, + -0.03569339960813522, + 0.04767576605081558, + -0.025312719866633415, + -0.010478515177965164, + 0.03563832491636276, + -0.010559418238699436, + -0.011394104920327663, + -0.029825767502188683, + 0.046020280569791794, + -0.007165074814110994, + 0.04608646780252457, + 0.05834221467375755, + 0.04556350037455559, + 0.00972218532115221, + -0.027210868895053864, + -0.01175991352647543, + 0.03661113977432251, + -0.004071651492267847, + -0.010963893495500088, + 0.04820602759718895, + -0.014251204207539558, + 0.021386349573731422, + 0.014618228189647198, + -0.012100549414753914, + 0.014751153066754341, + -0.07868387550115585, + 0.02876453660428524, + 0.038390420377254486, + 0.017552288249135017, + -0.010427230037748814, + -0.009375038556754589, + -0.0009780157124623656, + -0.012064299546182156, + 0.0018460634164512157, + -0.034651197493076324, + 0.027884328737854958, + 0.04249059036374092, + -0.0013395160203799605, + 0.027011429890990257, + -0.06348176300525665, + 0.017263805493712425, + -0.002454298548400402, + 0.06026856601238251, + -0.024657705798745155, + 0.02665017917752266, + 0.06648316234350204, + -0.008337218314409256, + -0.032649751752614975, + -0.01438334584236145, + -0.011735786683857441, + 0.012016097083687782, + 0.02934752032160759, + 0.005079166032373905, + -0.017350351437926292, + -0.02980225346982479, + -0.024322399869561195, + 0.017946645617485046, + -0.007421736139804125, + 0.004810997284948826, + 0.023714853450655937, + 0.012041023932397366, + 0.032683394849300385, + -0.037701159715652466, + 0.05336796119809151, + -0.02287985384464264, + 0.0067268977873027325, + -0.020742613822221756, + 0.010836067609488964, + -0.03719917684793472, + -0.0049948603846132755, + 0.028661059215664864, + -0.01020388025790453, + -0.04831097275018692, + 0.0023031674791127443, + 0.024769136682152748, + 0.04132351279258728, + -0.04284262657165527, + 7.49348837416619e-05, + -0.018433554098010063, + -0.03402869775891304, + -0.0007501794025301933, + 0.015441968105733395, + -0.0022823212202638388, + -0.034842390567064285, + 0.03821172937750816, + 0.0013518942287191749, + -0.019686685875058174, + -0.03821904584765434, + 0.025961624458432198, + -0.0046838498674333096, + 0.02002711035311222, + -0.0026473049074411392, + -0.003406545612961054, + 0.026436908170580864, + -0.02860340103507042, + -0.03769716992974281, + -0.01470404677093029, + -0.028240183368325233, + 0.011833871714770794, + -0.011283748783171177, + 0.03685929998755455, + 0.03387809917330742, + 0.0206453874707222, + 0.03714723140001297, + -0.0022883659694343805, + -0.021913250908255577, + 0.019586078822612762, + -0.03920752927660942, + -0.021263275295495987, + 0.010673295706510544, + -0.054099295288324356, + -0.024598868563771248, + 0.023887548595666885, + 0.03315380960702896, + -0.03148198127746582, + 0.018970008939504623, + 0.052713099867105484, + 0.0039422595873475075, + 0.005389753729104996, + 0.010552430525422096, + -0.04282476380467415, + -0.003612975124269724, + -0.02188374102115631, + 0.04022187367081642, + -0.030467037111520767, + -0.009211180731654167, + 0.04032281041145325, + 0.004427249077707529, + -0.004486403428018093, + 0.014258249662816525, + -0.009595660492777824, + -0.00098644127137959, + -0.005920711904764175, + -0.024989092722535133, + -0.001090618665330112, + -0.007377662230283022, + 0.02287912555038929, + -0.003579715732485056, + -0.018445579335093498, + -0.015873713418841362, + 0.0066842371597886086, + -0.018618784844875336, + -0.005453166551887989, + 0.00765119818970561, + 0.0046716793440282345, + -0.01759164407849312, + -0.009895985946059227, + 0.006420723162591457, + -0.05939275026321411, + 0.02011777088046074, + -0.056528665125370026, + 0.022999752312898636, + 0.028348397463560104, + 0.0020835353061556816, + -0.02161889709532261 + ], + "start_index": 28387, + "end_index": 28419, + "token_count": 6, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "80cb2c12-88d4-5004-9b7b-088b1cb9a763", + "_source": { + "text": "\n\n---\n\n## Strings\n\nAVAP soporta cadenas con comillas simples y dobles, con soporte de secuencias de escape.\n\n\n\nSTRING_DOUBLE ::= \"\\\"\" ( [^\"\\\\] | ESCAPE_SEQ )* \"\\\"\"\nSTRING_SINGLE ::= \"'\" ( [^'\\\\] | ESCAPE_SEQ )* \"'\"\nESCAPE_SEQ ::= \"\\\\\" ( '\"' | \"'\" | \"\\\\\" | \"n\" | \"t\" | \"r\" | \"0\" )", + "embedding": [ + 0.04384041205048561, + 0.035467956215143204, + -0.008767474442720413, + -0.07156125456094742, + -0.013891865499317646, + 0.005314138252288103, + 0.004169776104390621, + 0.013162129558622837, + -0.07829081267118454, + -0.0774994045495987, + 0.0001551903988001868, + 0.00034431254607625306, + -0.02114114910364151, + -0.008141479454934597, + -0.033584438264369965, + 0.03905739262700081, + 0.06644155085086823, + 0.022829018533229828, + 0.0033928793855011463, + -0.04530910775065422, + -0.0740363672375679, + 0.004907913971692324, + -0.009044623002409935, + 0.1053178608417511, + 0.028981048613786697, + 0.0003018337010871619, + -0.004937104415148497, + 0.03988460823893547, + 0.05657627433538437, + -0.02672518789768219, + -0.009250819683074951, + -0.07171513140201569, + -0.03957682102918625, + -0.01163767371326685, + -0.011874672025442123, + -0.012151014059782028, + -0.008205614984035492, + -0.028136208653450012, + 0.04792103171348572, + -0.012733925133943558, + -0.02656722255051136, + -0.029491538181900978, + 0.04872923716902733, + 0.023042792454361916, + -0.02390418015420437, + -0.0125001585111022, + 0.029252514243125916, + 0.009330867789685726, + 0.045097675174474716, + -0.00617695739492774, + -0.028406985104084015, + -0.03267272561788559, + 0.0020164253655821085, + -0.009757895022630692, + -0.02487817592918873, + 0.01687212847173214, + -0.004648101516067982, + -0.026191193610429764, + 0.006103855557739735, + -0.012174895964562893, + -0.015178699046373367, + 0.06298666447401047, + -0.02793116867542267, + 0.04196290299296379, + -0.025051666423678398, + 0.004574120044708252, + 0.008249858394265175, + 0.015896795317530632, + -0.07691536843776703, + -0.011634784750640392, + 0.011164799332618713, + -0.01667620800435543, + 0.007266160100698471, + 0.03176702558994293, + -0.014977267012000084, + -0.040165893733501434, + 0.00106718426104635, + -0.03488736227154732, + -0.02575526386499405, + 0.00833130069077015, + 0.0038942182436585426, + 0.05805227905511856, + 0.032001618295907974, + 0.00925645511597395, + 0.016840027645230293, + 0.05328838899731636, + -0.027299070730805397, + -0.053139131516218185, + 0.021577870473265648, + 0.007813413627445698, + 0.02619779296219349, + 0.009014911949634552, + -0.013354416005313396, + -0.029090575873851776, + 0.07551036775112152, + 0.008626517839729786, + 0.03369848430156708, + 0.044260527938604355, + 0.03844616189599037, + 0.027840755879878998, + -0.024865176528692245, + -0.01321713998913765, + 0.03925663232803345, + 0.06843631714582443, + 0.018953530117869377, + 0.039143890142440796, + 0.008846204727888107, + 0.016229314729571342, + -0.04886819049715996, + 0.007661279756575823, + -0.034716252237558365, + 0.014167696237564087, + 0.06322867423295975, + 0.09501956403255463, + 0.005836314521729946, + -0.012801031582057476, + 0.01353062130510807, + 0.004771960433572531, + 0.030845310539007187, + -0.025588059797883034, + -0.0026948980521410704, + -0.011570453643798828, + 0.04113645479083061, + 0.01632731594145298, + 0.04454558715224266, + -0.013008988462388515, + -0.02771648019552231, + -0.006170202046632767, + -0.013310796581208706, + -0.004757361952215433, + 0.009420927613973618, + 0.06091879680752754, + -0.021620942279696465, + -0.0009192175348289311, + -0.004199517425149679, + -0.014033040963113308, + 0.023607162758708, + 0.004101244267076254, + 0.06624995172023773, + 0.007951206527650356, + -0.0268645491451025, + -0.01899547502398491, + -0.04903542995452881, + -0.04648520424962044, + 0.0021750954911112785, + 0.06383541226387024, + 0.011579759418964386, + -0.02164146676659584, + -0.015807410702109337, + 0.021151350811123848, + 0.05462266132235527, + -0.030317123979330063, + -0.017569145187735558, + -0.01022456493228674, + -0.027586787939071655, + -0.003188454546034336, + -0.0016809989465400577, + -0.03731416538357735, + -0.0287647508084774, + 0.038341131061315536, + 0.030037133023142815, + 0.03958696126937866, + 0.003656806657090783, + -0.04756829887628555, + -0.01379953883588314, + 0.03447448089718819, + -0.06615447998046875, + -0.04039416089653969, + -0.01622929610311985, + 0.04880061745643616, + 0.0019808763172477484, + 0.007670619059354067, + -0.0008104128646664321, + -0.019933992996811867, + -0.021794354543089867, + -0.04110439866781235, + -0.03148069605231285, + 0.01918965019285679, + 0.006415141746401787, + -0.03330305218696594, + 0.012580971233546734, + 0.021664509549736977, + -0.0058069429360330105, + -0.014497514814138412, + 0.015202363021671772, + 0.07174661755561829, + -0.01074189879000187, + 0.0018176588928326964, + -0.02053329348564148, + -0.045795947313308716, + -0.005155385937541723, + -0.008581498637795448, + -0.03751606121659279, + -0.0011846984270960093, + -0.0030685116071254015, + -0.019529176875948906, + 0.01892961375415325, + -0.006673468742519617, + 0.011377586051821709, + -0.0136426892131567, + 0.015244717709720135, + -0.023388538509607315, + 0.009979648515582085, + -0.02659565769135952, + -0.014809194952249527, + -0.04303711652755737, + -0.035867251455783844, + 0.0161456111818552, + -0.014379019849002361, + -0.043437935411930084, + 0.018751436844468117, + 0.04785354435443878, + 0.001785118249244988, + -0.03752852603793144, + -0.006131013855338097, + -0.021572932600975037, + -0.004090429749339819, + 0.04725432023406029, + 0.002255302621051669, + 0.007511802949011326, + 0.02854919247329235, + -0.0015684511745348573, + -0.03683074563741684, + 0.007714213337749243, + 0.07616409659385681, + 0.01938970573246479, + -0.009947223588824272, + -0.008933718316257, + -0.021180281415581703, + -0.008635181933641434, + -0.0027975577395409346, + 0.035331469029188156, + 0.048715248703956604, + 0.0010723801096901298, + -0.005658387206494808, + 0.02904924936592579, + 0.013211207464337349, + -0.02770972065627575, + 0.026491312310099602, + -0.028673941269516945, + -0.039020735770463943, + -0.011608516797423363, + 0.00048607500502839684, + 0.009656188078224659, + 0.011140873655676842, + 0.003959686961025, + 0.0027828977908939123, + -0.02500016987323761, + -0.02657156251370907, + 0.011355866678059101, + 0.008059113286435604, + 0.05238933488726616, + 0.0027202372439205647, + -0.019585752859711647, + 0.003992969635874033, + -0.004976573865860701, + 0.00542508764192462, + -0.024373577907681465, + 0.03378975763916969, + -0.025765353813767433, + 0.021516665816307068, + -0.011152094230055809, + 0.03844648599624634, + 0.013230308890342712, + 0.019625389948487282, + 0.045355260372161865, + 0.0040144347585737705, + 0.024149147793650627, + -0.02205546386539936, + -0.030605163425207138, + 0.010129340924322605, + -0.008022628724575043, + 0.004144045989960432, + -0.0038302799221128225, + 0.019230259582400322, + -0.0019158232025802135, + 0.0027354087214916945, + -0.07798245549201965, + 0.009447717107832432, + 0.028912873938679695, + -0.0021206785459071398, + 0.01103551872074604, + -0.014301329851150513, + -0.04283065348863602, + 0.020529644563794136, + 0.022148823365569115, + 0.021024174988269806, + -0.054802920669317245, + -0.018630757927894592, + -0.0229718629270792, + -0.02400204911828041, + 0.05686691030859947, + -0.06451208144426346, + -0.005419927183538675, + -0.028968699276447296, + -0.0009809016482904553, + -0.026762807741761208, + 0.0035422607325017452, + 0.017049456015229225, + -0.017836758866906166, + -0.004407004918903112, + -0.03522172197699547, + -0.022107796743512154, + 0.007970480248332024, + -0.06761467456817627, + -0.0030846591107547283, + 0.047948699444532394, + -0.05039619654417038, + 0.02833951637148857, + 0.060563649982213974, + 0.00861545279622078, + 0.011673273518681526, + -0.0212058387696743, + 0.010073081590235233, + 0.0006088397349230945, + -0.014484226703643799, + -0.007881350815296173, + 0.018933327868580818, + 0.05106307566165924, + 0.007768549956381321, + -0.026773594319820404, + 0.0016815627459436655, + 0.0153952082619071, + -0.038870807737112045, + 0.01047440990805626, + -0.06342961639165878, + 0.04250272363424301, + 0.020147772505879402, + 0.05494633689522743, + 0.05082205310463905, + 0.03602192923426628, + 0.00532792741432786, + 0.01553400419652462, + 0.007436803542077541, + -0.0066185989417135715, + 0.01007851306349039, + -0.020813995972275734, + 0.023070966824889183, + -0.016092609614133835, + -0.038472577929496765, + -0.007436178624629974, + -0.026446640491485596, + -0.01166763249784708, + 0.03496718779206276, + -0.008782638236880302, + 0.012466314248740673, + 0.015108507126569748, + 0.024413397535681725, + 0.013434532098472118, + 0.007921785116195679, + 0.010865362361073494, + -0.004161749966442585, + 0.009233868680894375, + 0.027427205815911293, + 0.0049354396760463715, + -0.040859468281269073, + -0.026153067126870155, + 0.05345829576253891, + -0.003266730811446905, + -0.06236809119582176, + -0.02980692684650421, + 0.0055054170079529285, + 0.01932619698345661, + 0.031102431938052177, + 0.06030914559960365, + -0.04686078429222107, + -0.017434466630220413, + -0.06182493269443512, + 0.04376259818673134, + 0.0008858288638293743, + -0.052260588854551315, + -0.028664877638220787, + -0.09333846718072891, + 0.024208566173911095, + 0.026843341067433357, + 0.01596713438630104, + 0.023112762719392776, + -0.004015895072370768, + 0.0026175579987466335, + -0.0012183570070192218, + 0.008799961768090725, + 0.0016509350389242172, + -0.037750452756881714, + -0.016822146251797676, + 0.0012038439745083451, + -0.03296347334980965, + 0.041182003915309906, + -0.0173467006534338, + -0.024013910442590714, + 0.011163735762238503, + 0.009244662709534168, + -0.04208320379257202, + 0.041717104613780975, + 0.013173522427678108, + -0.014007305726408958, + 0.045644115656614304, + -0.06471102684736252, + -0.033322468400001526, + 0.013195164501667023, + 0.0215369313955307, + 0.06453244388103485, + -0.0026774220168590546, + -0.007876472547650337, + -0.009599074721336365, + 0.031407151371240616, + 0.0342278815805912, + -0.01729605719447136, + -0.012082464061677456, + -0.02149154804646969, + 0.044174809008836746, + 0.05114922672510147, + -0.021523306146264076, + 0.007602277677506208, + -0.01923111081123352, + -0.016434160992503166, + -0.03954127058386803, + 0.032554980367422104, + -0.06397958099842072, + -0.0699584111571312, + -0.02937253937125206, + -0.026929616928100586, + 0.01787695474922657, + -0.018836334347724915, + -0.008049959316849709, + 0.01828116551041603, + -0.013869925402104855, + -0.011799091473221779, + -0.05615021288394928, + -0.012518656440079212, + -0.029086261987686157, + 0.006222200579941273, + -0.030308570712804794, + -0.035838644951581955, + 0.04541180282831192, + -0.06802283972501755, + 0.00892794132232666, + 0.05126557499170303, + 0.07762596011161804, + -0.03088766522705555, + -0.024348394945263863, + 0.0347442626953125, + -0.018282147124409676, + -0.012141657061874866, + 0.03159764036536217, + -0.01779995486140251, + -0.008863309398293495, + 0.027035484090447426, + 0.06067213416099548, + 0.02737353928387165, + -0.03238867595791817, + 0.011221684515476227, + -0.0004439058538991958, + 0.03289946913719177, + 0.049520403146743774, + 0.006479065399616957, + -0.005034165922552347, + -0.009098927490413189, + -0.0501314215362072, + -0.025513414293527603, + -0.0021153143607079983, + -0.03496174514293671, + 0.014796058647334576, + 0.02072710357606411, + -0.042278025299310684, + -0.056571610271930695, + -0.0037097609601914883, + -0.022062310948967934, + -0.02654651738703251, + 0.0708208903670311, + 0.007264752872288227, + 0.015532424673438072, + 0.029750538989901543, + -0.033183153718709946, + -0.004954217933118343, + 0.01590179093182087, + -0.04031169041991234, + 0.0007247108151204884, + 0.01906917802989483, + -0.04981255903840065, + 0.0024158130399882793, + -0.03511017560958862, + -0.03462951257824898, + 0.003814896335825324, + -0.03361048921942711, + 0.05246077850461006, + 0.010339784435927868, + 0.05874711647629738, + 0.017355721443891525, + -0.038650184869766235, + 0.011344213970005512, + 0.011135623790323734, + 0.04383796453475952, + 0.07656789571046829, + -0.04892192408442497, + 0.03320249542593956, + -0.03802652657032013, + 0.01573089510202408, + 0.010927001014351845, + -0.08892658352851868, + 0.05865238234400749, + -0.0030703158117830753, + 0.004298611078411341, + 0.005215332377701998, + 0.0021880194544792175, + -0.02671002969145775, + -0.014806436374783516, + 0.02386622317135334, + -0.07577473670244217, + 0.0795050635933876, + 0.0561373345553875, + 0.03799230977892876, + -0.03625143691897392, + -0.010640435852110386, + 0.04103338345885277, + 0.01790442503988743, + -0.027604779228568077, + 0.04034923389554024, + 0.027573682367801666, + -0.041117746382951736, + -0.0023157899267971516, + -0.021125568076968193, + 0.049867525696754456, + 0.01703944243490696, + -0.05259102210402489, + -0.004628285765647888, + 0.005215239245444536, + 0.026914848014712334, + 0.0031811175867915154, + 0.04011273384094238, + 0.0063405223190784454, + 0.01669120416045189, + -0.03689534217119217, + 0.07157611846923828, + 0.004106619860976934, + -0.044543035328388214, + -0.003173950593918562, + 0.021231895312666893, + -0.040363337844610214, + -0.008671942166984081, + 0.029357997700572014, + -0.0350562147796154, + -0.004629755392670631, + -0.033276598900556564, + 0.026352517306804657, + 0.05054956674575806, + 0.03692690655589104, + -0.0023725482169538736, + 0.038896605372428894, + -0.0652560144662857, + 0.04041985794901848, + 0.032649923115968704, + 0.03253893181681633, + 0.02332257106900215, + -0.0010207687737420201, + 0.04688775911927223, + -0.0029371415730565786, + 0.039660949259996414, + -0.022251678630709648, + 0.012634066864848137, + -0.04798371344804764, + -0.003277065232396126, + -0.03226201608777046, + 0.026204897090792656, + 0.030174553394317627, + -0.013188567012548447, + -0.028834810480475426, + -0.018366435542702675, + 0.0399746298789978, + -0.006163133308291435, + 0.019984252750873566, + 0.03242897987365723, + 0.02694934606552124, + 0.019526196643710136, + 0.07998314499855042, + -0.020497171208262444, + -0.058299485594034195, + -0.01300757471472025, + 0.062020186334848404, + 0.025133321061730385, + -0.0015991551335901022, + 0.03978767618536949, + -0.022955168038606644, + 0.03111962601542473, + 0.056942302733659744, + -0.0038836244493722916, + -0.016232425346970558, + -0.03801342472434044, + -0.012656813487410545, + 0.0037138592451810837, + 0.013758938759565353, + -0.05840134620666504, + -0.00434905244037509, + 0.028956623747944832, + 0.00036092332447879016, + 0.03734897822141647, + 0.009839320555329323, + -0.050441499799489975, + 0.015188751742243767, + -0.01789240539073944, + 0.021502600982785225, + 0.02329697273671627, + 0.053701382130384445, + -0.02431917004287243, + 0.011688857339322567, + -0.04118289053440094, + -0.021549440920352936, + -0.011865331791341305, + -0.019824836403131485, + -0.060401078313589096, + -0.04768747463822365, + -0.04277410730719566, + 0.03203028067946434, + 0.006839741487056017, + 0.05884784832596779, + -0.03020431660115719, + -0.026910480111837387, + -0.07640359550714493, + -0.015734368935227394, + 0.01978903077542782, + -0.009601895697414875, + -0.01020063366740942, + 0.0018656515749171376, + 0.010188311338424683, + 0.013126960955560207, + -0.010685965418815613, + 0.019519753754138947, + -0.0008486823062412441, + -0.03496841713786125, + -0.05850536748766899, + -0.0456923246383667, + -0.019292505457997322, + -0.009799202904105186, + 0.00596073642373085, + -0.013508315198123455, + 0.011931991204619408, + 0.0014481466496363282, + -0.0053474013693630695, + 0.015892021358013153, + 0.009089251048862934, + -0.04757154360413551, + 0.010008406825363636, + 0.003098888322710991, + 0.020547840744256973, + -0.014379147440195084, + 0.015592683106660843, + 0.020247386768460274, + -0.04463988170027733, + 0.027636103332042694, + -0.004823818802833557, + -0.02262430265545845, + -0.02926412597298622, + 0.0231943279504776, + -0.0043881419114768505, + 0.01740654744207859, + -0.0503593385219574, + 0.03908330947160721, + -0.004658516030758619, + 0.0741763561964035, + 0.02613063156604767, + -0.04758612811565399, + 0.03183535113930702, + -0.07389869540929794, + 0.0019763021264225245, + -0.03223023936152458, + 0.028159549459815025, + 0.05888178572058678, + 0.08029691874980927, + 0.03835660219192505, + 0.0022199710365384817, + -0.016680609434843063, + -0.03108222782611847, + -0.052094899117946625, + -0.044601503759622574, + 0.031571440398693085, + -0.0253659226000309, + -0.05906651169061661, + 0.031673576682806015, + -0.03227182850241661, + 0.01660226285457611, + 0.00510836998000741, + -0.04261338338255882, + -0.03792195022106171, + 0.07117558270692825, + -0.03456682711839676, + -0.013497146777808666, + -0.05737267807126045, + -0.009872188791632652, + 0.023643430322408676, + -0.006466008257120848, + 0.015077007934451103, + -0.01170909870415926, + 0.00037783326115459204, + -0.013461161404848099, + -0.003905054647475481, + -0.03164590150117874, + -0.03580164536833763, + -0.021612325683236122, + -0.009596973657608032, + -0.007756530307233334, + 0.02585088275372982, + 0.025443902239203453, + 0.017716681584715843, + 0.002135206712409854, + 0.03176337108016014, + -0.005310693755745888, + -0.04571593552827835, + -0.011211568489670753, + 0.036440279334783554, + -0.050192881375551224, + 0.009926140308380127, + 0.01235152967274189, + 0.04956965520977974, + -0.044331952929496765, + 0.005312535911798477, + 0.05199052393436432, + -0.0012319881934672594, + -0.05162874981760979, + 0.02457507885992527, + -0.003217434510588646, + 0.028067944571375847, + 0.02145635522902012, + -0.014527360908687115, + 0.02261217124760151, + -0.041461359709501266, + -0.09381407499313354, + -0.0388735868036747, + -0.026810217648744583, + -0.017102466896176338, + 0.040588729083538055, + -0.016947457566857338, + 0.04942788556218147, + 0.0017079738900065422, + -0.007431943900883198, + -0.03130950406193733, + 0.0034050694666802883, + -0.00043751249904744327, + 0.024821605533361435, + 0.04331351816654205, + 0.006611756980419159, + -0.003851170651614666, + -0.014713136479258537, + -0.017984945327043533, + 0.0070093898102641106, + -0.042664531618356705, + 0.025985486805438995, + 0.00531543605029583, + 0.034501440823078156, + -0.00254555931314826, + -0.018182726576924324, + 0.01139053050428629, + -0.0023052291944622993, + -0.017072705551981926, + 0.023531470447778702, + 0.021234281361103058, + -0.031983278691768646, + 0.015060288831591606, + 0.01346171647310257, + -0.0017430398147553205, + -0.009477278217673302, + -0.05523179844021797, + 0.015718746930360794, + 0.030628517270088196, + -0.007014761678874493, + -0.008677403442561626, + 0.017753511667251587, + 0.00045604168553836644, + 0.03272663429379463, + -0.01590636745095253, + -0.02077449858188629, + 0.02268076501786709, + -0.004795461893081665, + -0.04451363906264305, + 0.02657647430896759, + 0.05849375203251839, + -0.01992150954902172, + 0.037346743047237396, + 0.004897368140518665, + -0.006475732196122408, + 0.007285973988473415, + 0.012534642592072487, + -0.03132683038711548, + 0.004266205243766308, + 0.014768509194254875, + -0.004790290258824825, + -0.02223590761423111, + 0.04459541663527489, + -0.021334189921617508, + -0.0011179939610883594, + 0.012807128950953484, + 0.01822062022984028, + -0.010305020958185196, + -0.019039487466216087, + 0.06309527903795242, + -0.005740710534155369, + -0.005563853774219751, + 0.0018836334347724915, + 0.023116854950785637, + 0.05555436760187149, + -0.028318515047430992, + 0.005999489687383175, + -0.00031249222229234874, + 0.011675480753183365, + -0.013627649284899235, + 0.004676491487771273, + 0.03629106655716896, + -0.021573686972260475, + 0.036836784332990646, + 0.024513356387615204, + 0.02233700454235077, + 0.011708748526871204, + -0.040001485496759415, + 0.01043038908392191, + 0.002432921901345253, + 0.026113292202353477, + 0.02076617069542408, + 0.01862424798309803, + 0.0007221674313768744, + -0.017710816115140915, + 0.0005051849293522537, + -0.049618806689977646, + -0.010809446685016155, + 0.0019076557364314795, + 0.019482886418700218, + 0.01271006278693676, + -0.017190106213092804, + -0.00536277424544096, + -0.0020674860570579767, + 0.002933720126748085, + 0.032694343477487564, + 0.01852000504732132, + 0.013188740238547325, + -0.04357320815324783, + 0.06737253069877625, + 0.06847589462995529, + -0.01216085720807314, + -0.018271351233124733, + -0.11199058592319489, + -0.013003849424421787, + 0.020073669031262398, + 0.010445167310535908, + 0.011470441706478596, + -0.002376843709498644, + -0.017111940309405327, + 0.05473094433546066, + -0.006679954472929239, + 0.020973434671759605, + -0.001131788594648242, + 0.008371526375412941, + -0.010467709973454475, + -0.042957160621881485, + -0.03970671817660332, + 0.024157114326953888, + -0.041722554713487625, + -0.0018854707013815641, + -0.03239530324935913, + 0.027097471058368683, + 0.029336435720324516, + 0.004031047224998474, + -0.015909001231193542, + 0.0440453477203846, + -0.030994199216365814, + 0.02322014421224594, + -0.0021919114515185356, + -0.007847541011869907, + -0.06089520826935768, + 0.04520218446850777, + 0.03185014799237251, + -0.024970388039946556, + 0.009651750326156616, + 0.01436574012041092, + 0.008441831916570663, + 0.03393982723355293, + -0.03099813684821129, + 0.020810777321457863, + 0.03944726288318634, + 0.04617103934288025, + -0.045674633234739304, + 0.00559690548107028, + 0.026345496997237206, + 0.054031457751989365, + -0.013331716880202293, + 0.046603813767433167, + 0.006221219431608915, + 0.014971564523875713, + 0.007268515881150961, + 0.004631365649402142, + -0.02819194458425045, + -0.041443776339292526, + -0.05061843991279602, + 0.012141802348196507, + 0.0026320209726691246, + 0.00497246440500021, + -0.012099957093596458, + 0.030887477099895477, + -0.060958653688430786, + 0.044680770486593246, + 0.04531801864504814, + 0.04224830120801926, + -0.017519542947411537, + -0.03046908602118492, + -0.029706411063671112, + -0.018139267340302467, + 0.038084641098976135, + 0.00625655148178339, + 0.04108475521206856, + -0.0012644326779991388, + 0.005472083110362291, + 0.028177455067634583, + -0.028431741520762444, + -0.012111199088394642, + -0.07335488498210907, + -0.003018026938661933, + 0.012828492559492588, + -0.0015438151312991977, + -0.012554578483104706, + 0.012862741015851498, + 0.002115908544510603, + 0.023053018376231194, + 0.005968435667455196, + -0.03343632444739342, + -0.03017183020710945, + 0.008463558740913868, + 0.0020513480994850397, + 0.02114860713481903, + -0.022996559739112854, + -0.02499232441186905, + -0.05372065678238869, + -0.008317169733345509, + -0.03412298858165741, + 0.004696125164628029, + 0.007658676709979773, + 0.01736641861498356, + 0.03854352608323097, + -0.02012430503964424, + 0.025642141699790955, + -0.04044685140252113, + 0.05636530742049217, + -0.03295677900314331, + 0.030237017199397087, + 0.02004554681479931, + 0.01499562431126833, + -0.021408485248684883, + 0.02124031074345112, + -0.014946801587939262, + 0.014649693854153156, + 0.022677721455693245, + -0.007127964869141579, + 0.026965679600834846, + -4.062062726006843e-05, + 0.039282381534576416, + -0.04494009166955948, + 0.05588975176215172, + -0.07024059444665909, + -0.050126221030950546, + 0.005993203725665808, + -0.0036961890291422606, + -0.03126748278737068, + 0.024872997775673866, + 0.014392930082976818, + -0.01764385774731636, + -0.00105279590934515, + -0.006236006040126085, + -0.01879805698990822, + -0.004988148808479309, + -0.041895005851984024, + -0.07123474776744843, + -0.0016501173377037048, + -0.0287505853921175, + 0.033769771456718445, + 0.03281668573617935, + 0.018995895981788635, + 0.03282810002565384, + 0.00109962560236454, + 0.020918261259794235, + -0.015518184751272202, + 0.015510965138673782, + -0.055068645626306534, + -0.028843557462096214, + 0.018015511333942413, + -0.028258591890335083, + -0.04883430525660515, + 0.02409134805202484, + 0.031219059601426125, + -0.006777818780392408, + -0.019930168986320496, + -0.0005211119423620403, + -0.03368184342980385, + 0.027637366205453873, + 0.05620560050010681, + -0.033569879829883575, + 0.023640211671590805, + -0.030894631519913673, + 0.03262800723314285, + -0.02280287630856037, + 0.007315673399716616, + 0.022832250222563744, + -0.024251889437437057, + 0.0199718214571476, + -0.034323062747716904, + 0.03699066862463951, + 0.013140630908310413, + -0.04892595112323761, + 0.034967731684446335, + -0.008214505389332771, + 0.00323344930075109, + -0.0015661708312109113, + 0.0031524403020739555, + -0.015703575685620308, + -0.0141973327845335, + 0.018455423414707184, + -0.05165551230311394, + 0.015287945047020912, + -0.024164920672774315, + -0.013481414876878262, + 0.04423310235142708, + 0.018834268674254417, + 0.036926254630088806, + -0.0017750597326084971, + 0.040375418961048126, + 0.006764292251318693, + 0.0029197754338383675, + -0.005867346189916134, + -0.018573572859168053, + -0.038056712597608566 + ], + "start_index": 28419, + "end_index": 28712, + "token_count": 30, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "83da10b4-b3ff-5804-a5c9-f643290eac3d", + "_source": { + "text": "\n\nEjemplos:\n\n\n\n\"hola\"\n'texto'\n\"https://api.com\"", + "embedding": [ + -0.021489037200808525, + 0.02912476845085621, + -0.010786633938550949, + -0.10094303637742996, + -0.007281335536390543, + -0.042607083916664124, + -0.046543583273887634, + 0.015158800408244133, + -0.06009233370423317, + -0.05516945943236351, + 0.0027736916672438383, + -0.03300207480788231, + 0.01635805331170559, + -0.010020263493061066, + -0.03888768330216408, + 0.07119700312614441, + -0.028916258364915848, + 0.08881168812513351, + 0.04970686882734299, + -0.05089428648352623, + -0.05704210326075554, + 0.024521462619304657, + 0.023304156959056854, + 0.061769790947437286, + -0.016877800226211548, + -0.014087023213505745, + 0.006556870881468058, + 0.04571694880723953, + 0.019171297550201416, + -0.029625678434967995, + -0.030866457149386406, + -0.03911338001489639, + -0.06582383811473846, + -0.027126729488372803, + 0.024365117773413658, + -0.013304956257343292, + 0.027870161458849907, + -0.029180215671658516, + -0.0033328623976558447, + 0.017898431047797203, + 0.002865738468244672, + 0.02587158977985382, + 0.05213812366127968, + 0.008315992541611195, + -0.01684589497745037, + -0.013706493191421032, + 0.018800200894474983, + 0.004754018038511276, + 0.025304174050688744, + 0.004715028218924999, + 0.0055669634602963924, + -0.014172629453241825, + 0.01828833483159542, + -0.014561220072209835, + 0.018322566524147987, + -0.03685332462191582, + 0.01747201383113861, + 0.06367248296737671, + -0.006432695314288139, + 0.030338814482092857, + -0.09133468568325043, + -0.016374820843338966, + -0.06383471935987473, + 0.027467673644423485, + 0.011084801517426968, + -0.04125959426164627, + 0.009014376439154148, + 0.014616316184401512, + -0.06804051995277405, + -0.030592424795031548, + -0.003424369962885976, + -0.049536194652318954, + -0.03186248242855072, + 0.030435580760240555, + 0.010578799061477184, + -0.018498649820685387, + -0.01547602005302906, + -0.02481170929968357, + 0.017473017796874046, + -0.001199830323457718, + -0.01833856850862503, + 0.06889203935861588, + 0.02994040586054325, + 0.005998130422085524, + -0.00931751262396574, + 0.06391124427318573, + 0.0011307564564049244, + -0.018854565918445587, + 0.011081467382609844, + -0.045364800840616226, + 0.004437561146914959, + 0.017482828348875046, + -0.08511845767498016, + -0.021475164219737053, + 0.07951627671718597, + 0.0038797336164861917, + -0.019606921821832657, + -0.031209487468004227, + -0.04234731197357178, + 0.011990630067884922, + -0.0037660286761820316, + -0.005550895351916552, + 0.04724469035863876, + -0.03591683506965637, + -0.0037841927260160446, + 0.03446066007018089, + -0.09489458054304123, + 0.032359637320041656, + -0.018730921670794487, + -0.037728749215602875, + -0.009240029379725456, + 0.008292150683701038, + 0.03967136889696121, + 0.0427967831492424, + 0.015142593532800674, + -0.029472995549440384, + 0.04484604671597481, + -0.002529697958379984, + -0.012013597413897514, + 0.01606292463839054, + 0.0352042131125927, + -0.047071292996406555, + -0.021267442032694817, + 0.0010233215289190412, + 0.04427921772003174, + 0.00846946332603693, + -0.015908988192677498, + -0.006542004179209471, + 0.030697369948029518, + -0.01550291571766138, + 0.014903233386576176, + -0.025594137609004974, + -0.03858472406864166, + -0.06729591637849808, + 0.02436581812798977, + 0.020484643056988716, + 0.02413126640021801, + 0.010674706660211086, + 0.046276506036520004, + -0.0016912126448005438, + -0.02786010131239891, + 0.014638489112257957, + -0.009282877668738365, + -0.0116842957213521, + 0.0071963174268603325, + 0.03906593471765518, + 0.009693765081465244, + 0.007559970486909151, + 0.017136286944150925, + -7.268216722877696e-05, + 0.021004239097237587, + 0.003541578771546483, + -0.013769488781690598, + -0.0052311597391963005, + -0.013108054175972939, + 0.020648758858442307, + -0.014218639582395554, + -0.006900138687342405, + -0.011780607514083385, + 0.027174076065421104, + 0.030083924531936646, + -0.02363516390323639, + 0.0004892140277661383, + -0.01949717104434967, + -0.015324913896620274, + 0.047841452062129974, + -0.04771289974451065, + -0.04643472284078598, + -0.035469457507133484, + -0.007888346910476685, + 0.006679083686321974, + 0.007316653151065111, + -0.0006156686577014625, + -0.018861709162592888, + 0.001372910221107304, + 0.006940125022083521, + -0.022358424961566925, + -0.057025011628866196, + -0.01753678359091282, + -0.01978379860520363, + 0.01808108016848564, + -0.027677666395902634, + 0.028529467061161995, + -0.006867113523185253, + 0.011823884211480618, + 0.04053177312016487, + 0.02372555248439312, + 0.02312508411705494, + -0.032688748091459274, + -0.00791509822010994, + -0.005208305083215237, + -0.05113011971116066, + -0.07548927515745163, + 0.003500376595184207, + -0.0227525532245636, + -0.04280133917927742, + 0.0528448224067688, + 0.004019417800009251, + -0.0007687800680287182, + -0.00034147914266213775, + -0.0033131036907434464, + -0.04712921753525734, + 0.020351432263851166, + 0.015378829091787338, + -0.03186437487602234, + -0.04469398409128189, + 0.016127441078424454, + -0.01091734692454338, + -0.0025418256409466267, + -0.03123640827834606, + 0.02270856872200966, + 0.013964863494038582, + -0.012836135923862457, + -0.035187967121601105, + -0.006810955703258514, + 0.020931610837578773, + 0.004201198928058147, + 0.025889962911605835, + 0.005487267393618822, + 0.03261034935712814, + 0.04079793393611908, + 0.01768539287149906, + -0.029175717383623123, + -0.002040168037638068, + 0.07686667889356613, + -0.05180156230926514, + 0.017838817089796066, + 0.01170820090919733, + 0.022102918475866318, + 0.011902081780135632, + -0.024219565093517303, + -0.020380735397338867, + 0.07377136498689651, + 0.030090106651186943, + 0.03628171607851982, + -0.022975172847509384, + -0.006315132137387991, + -0.05597639083862305, + 0.032733093947172165, + -0.046759843826293945, + -0.013050580397248268, + -0.002063979394733906, + 0.0004325422050897032, + 0.004118567798286676, + -0.026364069432020187, + 0.010767682455480099, + -0.00171464285813272, + 0.0323079489171505, + -0.004264018032699823, + -0.004002613015472889, + 0.002483184216544032, + -0.024041539058089256, + 0.0012815669178962708, + 0.04704631492495537, + 0.0008529182523488998, + -0.010033601894974709, + 0.0061014313250780106, + -0.01533871702849865, + 0.02717718295753002, + -0.002684595063328743, + 0.0633617639541626, + -0.02767827734351158, + -0.030295494943857193, + 0.020154492929577827, + 0.04398776963353157, + -0.006903438828885555, + -0.012167814187705517, + 0.04907593876123428, + -0.024486495181918144, + -0.0062920572236180305, + 0.03533858433365822, + 0.022766754031181335, + 0.006147444248199463, + -0.0174556914716959, + 0.015762023627758026, + 0.008801460266113281, + -0.00924887415021658, + -0.08274903148412704, + 0.03532567247748375, + 0.022870337590575218, + -0.0008145621395669878, + 0.024031445384025574, + -0.004570634104311466, + -0.07815580070018768, + 0.006854072213172913, + 0.05148150771856308, + 0.044377587735652924, + 0.034335680305957794, + -0.032042838633060455, + 0.032070670276880264, + 0.044623591005802155, + 0.005894863046705723, + -0.03729729726910591, + 0.02045929990708828, + -0.004417254123836756, + 0.005554770585149527, + 0.012257374823093414, + 0.06892747431993484, + -0.016450878232717514, + -0.03310064598917961, + 0.0031045975629240274, + -0.02113514021039009, + -0.021378936246037483, + 0.025754595175385475, + -0.03114938735961914, + -0.017385726794600487, + 0.038684770464897156, + -0.022157026454806328, + 0.016047559678554535, + -0.003333465661853552, + 0.04943588376045227, + -0.003520881524309516, + 0.016108432784676552, + -0.013524707406759262, + 0.023559782654047012, + -0.0025930446572601795, + -0.052459754049777985, + 0.05545428395271301, + -0.010915211401879787, + 0.007454170845448971, + -0.012028023600578308, + 0.00890088640153408, + -0.005154360085725784, + -0.000958027841988951, + 0.02121593803167343, + 0.021764012053608894, + -0.004588873591274023, + 0.0004676385724451393, + 0.02356664091348648, + 0.004883242771029472, + 0.03185917064547539, + 0.022494951263070107, + 0.04910624772310257, + -0.03764776512980461, + 0.03991047665476799, + 0.03389564901590347, + 0.034784432500600815, + -0.012989331036806107, + -0.018376246094703674, + 0.0050794705748558044, + 0.012201066128909588, + -0.02135477587580681, + -0.0045256237499415874, + -0.04477701336145401, + -0.04090391844511032, + -0.009274882264435291, + -0.01936359331011772, + 0.05594597011804581, + 0.02580874413251877, + 0.046785954385995865, + -0.01728862337768078, + 0.011113042011857033, + -0.008268042467534542, + 0.002982359379529953, + -0.019874827936291695, + -0.009145992808043957, + 0.01782415620982647, + 0.020159205421805382, + -0.06973672658205032, + -0.0032471097074449062, + -0.026918474584817886, + -0.055130958557128906, + 0.014475765638053417, + -0.03356320410966873, + 0.016377205029129982, + 0.023155542090535164, + -0.008993848226964474, + -0.0015019761631265283, + 0.046975281089544296, + 0.00510412035509944, + -0.05512159317731857, + -0.04523898661136627, + -0.03273659572005272, + 0.03456728905439377, + 0.04294703155755997, + 0.09970533847808838, + 0.08227045834064484, + -0.045216526836156845, + -0.02989077940583229, + 0.029865482822060585, + 0.04257877171039581, + 0.010524933226406574, + -0.03339582309126854, + -0.01256047748029232, + -0.018245242536067963, + -0.0054205115884542465, + 0.01485367864370346, + -0.02832980453968048, + 0.007210174109786749, + 0.0033166820649057627, + 0.00012936830171383917, + -0.037713270634412766, + 0.007609674707055092, + -0.015009045600891113, + 0.02908538281917572, + 0.04785332828760147, + -0.04457021504640579, + -0.031107177957892418, + 0.023061346262693405, + -0.00600314000621438, + 0.04653388261795044, + -0.03854190185666084, + -0.09760793298482895, + 0.0439423993229866, + -0.00176386465318501, + 0.008952013216912746, + 0.028563741594552994, + -0.01473220158368349, + 0.04011854529380798, + -0.013684390112757683, + 0.09356489777565002, + -0.008944126777350903, + -0.013532394543290138, + -0.016642043367028236, + 0.020275533199310303, + -0.027910320088267326, + 0.0619342140853405, + -0.045049067586660385, + 0.027527756989002228, + 0.005909623112529516, + -0.020057039335370064, + 0.013599270023405552, + -0.02921353466808796, + -0.0015245121903717518, + -0.0564071461558342, + 0.0035002627409994602, + -0.038563914597034454, + -0.029246142134070396, + -0.015759892761707306, + 0.0679778978228569, + -0.04050871357321739, + -0.02413102425634861, + -0.02212223783135414, + 0.00828795786947012, + -0.030984625220298767, + 0.04065040498971939, + 0.08096549659967422, + 0.012023347429931164, + 0.042195968329906464, + 0.0050528147257864475, + -0.019080443307757378, + 0.0246967114508152, + 0.03143671900033951, + -0.03629858046770096, + -0.04957308992743492, + -0.0030430827755481005, + 0.04897984489798546, + 0.023340951651334763, + 0.016905834898352623, + 0.020709587261080742, + 0.04384903982281685, + 0.006830905098468065, + 0.02295031026005745, + 0.08041632920503616, + 0.001964944414794445, + -0.047712188214063644, + 0.021496981382369995, + -0.02770785242319107, + 0.05258920043706894, + 0.04680141061544418, + 0.017379095777869225, + 0.03147173672914505, + 0.00048149641952477396, + -0.039275456219911575, + -0.05471746250987053, + 0.01857127621769905, + 0.013498199172317982, + -0.044100139290094376, + 0.004396372474730015, + 0.006108172237873077, + -0.019582640379667282, + 0.03224877268075943, + -0.04040093347430229, + 0.0034626361448317766, + 0.03891075775027275, + -0.008820982649922371, + -0.07766713201999664, + 0.04858829081058502, + -0.016923189163208008, + 0.009042923338711262, + -0.005031152628362179, + -0.033567894250154495, + 0.039958108216524124, + -0.02116878144443035, + 0.051674798130989075, + -0.04715130850672722, + 0.00402033980935812, + -0.04886582866311073, + -0.053710561245679855, + -0.026074320077896118, + 0.006587082054466009, + 0.06176149845123291, + -0.00868578813970089, + -0.04455849900841713, + -0.0015413722721859813, + -0.034311629831790924, + 0.0008156481198966503, + -0.02768695168197155, + -0.08986695855855942, + 0.020908597856760025, + 0.00025633216137066483, + 0.01277996227145195, + 0.004486700985580683, + 0.01272379420697689, + -0.04502012953162193, + -0.01273131649941206, + 0.015482289716601372, + -0.03366178274154663, + 0.08096462488174438, + 0.046375323086977005, + 0.015870722010731697, + -0.018635306507349014, + 0.01684923842549324, + 0.05418610945343971, + -0.012165029533207417, + -0.003997412975877523, + -0.0039102789014577866, + 0.0005700844922102988, + -0.022743048146367073, + 0.027180474251508713, + 0.03963204845786095, + 0.01729820854961872, + 0.03999710455536842, + 0.022149167954921722, + 0.028835413977503777, + -0.00400847801938653, + 0.011463376693427563, + -0.010536668822169304, + 0.007460190448909998, + -0.007523641921579838, + 0.00955311581492424, + -0.010674689896404743, + 0.008001270703971386, + -0.012532103806734085, + 0.00578819727525115, + 0.010731908492743969, + -0.0018655158346518874, + 0.016636807471513748, + -0.03261847794055939, + 0.015370769426226616, + 0.008342142216861248, + 0.009972992353141308, + -0.00046569283585995436, + 0.005940648261457682, + 0.029490411281585693, + 0.002889851573854685, + -0.0326012447476387, + 0.027071552351117134, + 0.009825659915804863, + 0.022723957896232605, + 0.025150803849101067, + 0.05393305420875549, + 0.04993358254432678, + -0.028490329161286354, + 0.0009598275064490736, + 0.030863478779792786, + 0.05926878750324249, + -0.015512941405177116, + 0.016946520656347275, + -0.03699983283877373, + -0.013259710744023323, + -0.012471777386963367, + 0.012007140554487705, + -0.006145517807453871, + 0.018089113757014275, + 0.02200007438659668, + 0.021294238045811653, + 0.029231999069452286, + 0.032709769904613495, + 0.06379090249538422, + 0.05185583606362343, + -0.014919193461537361, + 0.025235770270228386, + 0.01846480928361416, + 0.035333119332790375, + -0.06370479613542557, + -0.02883538417518139, + 0.032991599291563034, + 0.005395346786826849, + -0.03496681526303291, + 0.028475958853960037, + -1.1443329640314914e-05, + 0.017448117956519127, + 0.02225578762590885, + 0.0226863045245409, + 0.010834243148565292, + -0.01817983388900757, + 0.03136163949966431, + 0.037070680409669876, + -0.0005280694458633661, + -0.024968916550278664, + -0.03298741206526756, + -0.0009298536460846663, + -0.0034936671145260334, + 0.020879730582237244, + -0.04268735647201538, + -0.033294402062892914, + -0.0020204195752739906, + -0.0067873201332986355, + -0.0022807414643466473, + 0.029980264604091644, + 0.04950832948088646, + 0.004599325358867645, + 0.004490694496780634, + -0.05880013480782509, + 0.010520215146243572, + 0.0039521208964288235, + 0.01702667586505413, + -0.02723146602511406, + 0.020504122599959373, + -0.030688149854540825, + 0.024422993883490562, + -0.01149809081107378, + 0.014793013222515583, + 0.02358316443860531, + -0.0646166056394577, + -0.051736779510974884, + 0.015431784093379974, + -0.007524818181991577, + -0.047397736459970474, + 0.01950015313923359, + 0.026259003207087517, + 0.0065233344212174416, + 0.08203886449337006, + -0.009245624765753746, + 0.04971983656287193, + -0.042030464857816696, + -0.02944984845817089, + -0.06960351765155792, + -0.01888062246143818, + -0.014078117907047272, + -0.008955934084951878, + -0.04216201230883598, + -0.0005512086790986359, + -0.01780492439866066, + -0.017044153064489365, + 0.0028422405011951923, + -4.4730080844601616e-05, + 0.0065488554537296295, + -0.030502069741487503, + 0.0072831204161047935, + -0.018815942108631134, + -0.015716219320893288, + 0.0038309211377054453, + 0.026914585381746292, + 0.020361168310046196, + -0.03726739436388016, + -0.024615932255983353, + 0.02678997628390789, + -0.025632726028561592, + 0.0384901762008667, + 0.01844046823680401, + 0.020863551646471024, + 0.016586650162935257, + -0.02213720977306366, + 0.0005105521995574236, + 0.02294676937162876, + 0.018346333876252174, + 0.041016679257154465, + -0.02110055275261402, + -0.012182147242128849, + -0.04087038338184357, + 0.011107944883406162, + -0.025552092120051384, + -0.02610577456653118, + -0.019405575469136238, + 0.055083274841308594, + 0.01431680005043745, + 0.020257847383618355, + -0.05643508583307266, + -0.0006208866834640503, + 0.008985757827758789, + -0.022967496886849403, + 0.016379885375499725, + 0.011762645095586777, + -0.03255525603890419, + -0.005306991282850504, + -0.012744135223329067, + -0.04053766280412674, + -0.01987731084227562, + 0.03069176897406578, + -0.06129002198576927, + 0.002707427367568016, + -0.08955713361501694, + 0.03410814702510834, + -0.015938257798552513, + -0.0308065302670002, + 0.07083554565906525, + 0.03243189677596092, + -0.003781396895647049, + 0.004374965559691191, + -0.023083873093128204, + 0.06307731568813324, + -0.043267622590065, + -0.012456345371901989, + 0.013112150132656097, + -0.019754810258746147, + -0.004628778900951147, + 0.004651953466236591, + -0.026289818808436394, + 0.026361143216490746, + -0.026215791702270508, + -0.05736985802650452, + 0.015266193076968193, + 0.005644202698022127, + -0.011105863377451897, + -0.06549011170864105, + 0.00758349196985364, + -0.04667646437883377, + -0.05044550448656082, + 0.011215019971132278, + 0.04682111740112305, + 0.0038196903187781572, + -0.012328710407018661, + 0.0008588553173467517, + -0.010671851225197315, + -0.03446337580680847, + 0.020181378349661827, + 0.010599169880151749, + -0.032648418098688126, + 0.0346774160861969, + -0.030781319364905357, + 0.01789349876344204, + 0.02666517347097397, + -0.058083415031433105, + -0.02502617798745632, + 0.01709054782986641, + 0.03771631792187691, + -0.004123824182897806, + 0.0008251596591435373, + 0.01165122538805008, + -0.056736670434474945, + 0.013655980117619038, + -0.013753743842244148, + 0.012353752739727497, + 0.009983374737203121, + 0.05657396838068962, + -0.011817888356745243, + -0.031140316277742386, + 0.02216615341603756, + 0.048497576266527176, + -0.00684454245492816, + -0.02958003804087639, + 0.008395924232900143, + -0.015956711024045944, + 0.017246153205633163, + 0.021013490855693817, + -0.03492777794599533, + 0.006030651740729809, + -0.0012534329434856772, + 0.027780061587691307, + -0.07132446765899658, + -0.0450076162815094, + 0.019495951011776924, + -0.037205275148153305, + -0.04516427218914032, + -0.026891091838479042, + 0.05993889272212982, + 0.007863305509090424, + 0.016946427524089813, + 0.031299740076065063, + -0.008590234443545341, + 0.017406482249498367, + 0.002176843583583832, + 0.07516584545373917, + -0.004641659092158079, + -0.00958773959428072, + -0.029117964208126068, + 0.013082470744848251, + -0.01272162701934576, + 0.04816649481654167, + -0.006274557672441006, + -0.02629472129046917, + 0.06848053634166718, + 0.004417197313159704, + -0.02044721692800522, + 0.03401399403810501, + -0.01270683016628027, + -0.007659079972654581, + 0.03671572357416153, + 0.012949397787451744, + -0.03092527575790882, + 0.038667771965265274, + -0.016350237652659416, + -0.023157436400651932, + 0.04317902773618698, + -0.01684616506099701, + 0.012640925124287605, + 0.05189211666584015, + 0.029310857877135277, + 0.007972813211381435, + 0.0010422785999253392, + 0.0430062972009182, + 0.013552219606935978, + 0.004970953334122896, + 0.039070431143045425, + -0.0214585829526186, + 0.002858659252524376, + 0.02828323096036911, + -0.03307632729411125, + -0.015635158866643906, + 0.03069213405251503, + -0.004202511161565781, + 0.020984869450330734, + 0.049264293164014816, + -0.028082968667149544, + 0.018633998930454254, + 0.009737043641507626, + -0.030248641967773438, + 0.0042832158505916595, + 0.012784603051841259, + 0.05370241031050682, + 0.018911022692918777, + 0.008316515013575554, + 0.009801804088056087, + 0.04262469708919525, + -0.07413841038942337, + 0.026876043528318405, + -0.03450719639658928, + 0.005431537050753832, + -0.026068130508065224, + 0.008614428341388702, + 0.010274436324834824, + -0.0014088824391365051, + -0.0361456573009491, + 0.0368514284491539, + 0.052039120346307755, + 0.018465496599674225, + 0.008956445381045341, + -0.01969745196402073, + -0.03847725689411163, + -0.01723259501159191, + 0.025761092081665993, + 0.028636377304792404, + 0.04624944552779198, + -0.0015159131726250052, + -0.018079672008752823, + 0.025174617767333984, + -0.006999412085860968, + 0.02668311446905136, + 0.00831501092761755, + -0.003271531080827117, + 0.02942662313580513, + 0.04931998252868652, + 0.010937473736703396, + 0.006961191538721323, + 0.02345186658203602, + 0.011621461249887943, + 0.03440969064831734, + 0.04893312603235245, + 0.02028661221265793, + 0.03426089510321617, + -0.00529114156961441, + -0.003506275126710534, + -0.04966623708605766, + 0.03899523243308067, + 0.03694808483123779, + 0.025354932993650436, + -0.06699197739362717, + -0.014833252876996994, + -0.03109845519065857, + -0.01785033941268921, + -0.03444306179881096, + -0.05081568658351898, + -0.0013309569330886006, + 0.08606874197721481, + 0.007988858968019485, + 0.016869572922587395, + 0.02257848158478737, + -0.0011887603905051947, + 0.03474939987063408, + 0.016068866476416588, + -0.002836179919540882, + 0.01197861973196268, + 0.01744988188147545, + -0.00854288786649704, + -0.009062174707651138, + -0.0016198166413232684, + 0.022014720365405083, + 0.047091539949178696, + -0.021075738593935966, + 0.03393159061670303, + 0.013324816711246967, + 0.006617974489927292, + -0.018987396731972694, + -0.023022279143333435, + 0.007235878612846136, + -0.0340450145304203, + 0.02298640087246895, + -0.032660894095897675, + 0.026580534875392914, + -0.019597642123699188, + 0.026723166927695274, + 0.02123493328690529, + -0.11253117024898529, + 0.013315541669726372, + 0.0419766865670681, + 0.023502307012677193, + -0.025891685858368874, + -0.032919105142354965, + 0.048016298562288284, + -0.014019574038684368, + 0.017151018604636192, + -0.011955884285271168, + -0.010356122627854347, + -0.010705338791012764, + 0.04434940591454506, + -0.01632738672196865, + -0.033523429185152054, + 0.025399036705493927, + -0.022246507927775383, + 0.024303413927555084, + 0.005117279011756182, + 0.003916558809578419, + -0.02451794035732746, + -0.02231672964990139, + -0.042170874774456024, + -0.026438351720571518, + -0.00809070747345686, + -0.017034336924552917, + -0.012963008135557175, + -0.013155564665794373, + -0.0009896282572299242, + -0.004175635054707527, + -0.03502316400408745, + -0.03364275023341179, + 0.01797572150826454, + 0.03251754865050316, + 0.027915123850107193, + 0.043703969568014145, + 0.01851838268339634, + 0.0028831553645431995, + 0.061051249504089355, + 0.039285145699977875, + 0.0312036219984293, + -0.025480307638645172, + 0.033408023416996, + -0.024295898154377937, + 0.0365108922123909, + 0.01705073192715645, + -0.008583638817071915, + -0.03846726566553116, + 0.04314234480261803, + 0.003672852646559477, + 0.034660179167985916, + -0.03484766557812691, + -0.009026933461427689, + 0.019854554906487465, + 0.04154971241950989, + -0.01341154519468546, + 0.04394448548555374, + -0.03841593116521835, + -0.018560435622930527, + 0.008751781657338142, + 0.010960080660879612, + -0.07222779840230942, + -0.02023221366107464, + 0.016243940219283104, + 0.0279508288949728, + -0.012132206931710243, + 0.033681780099868774, + 0.009604094550013542, + 0.0184915903955698, + 0.01282532885670662, + 0.005321000702679157, + -0.01771632954478264, + 0.009987029246985912, + 0.03781889006495476, + 0.015558226965367794, + -0.010467714630067348, + 0.03346101939678192, + 0.0025727534666657448, + 0.032605890184640884, + -0.016302336007356644, + 0.02822679840028286, + 0.03485119715332985, + -0.02564024180173874, + -0.010980949737131596, + -0.001113555976189673, + -0.0391983725130558, + -0.07459202408790588, + 0.06104859337210655, + 0.05092122405767441, + 0.015348987653851509, + -0.009684241376817226, + -0.006934444885700941, + 0.01854284107685089, + 0.014842942357063293, + 0.02347136102616787, + -0.02718164399266243, + 0.007827790454030037, + 0.026871539652347565, + -0.016775984317064285, + -0.03554126247763634, + -0.00666876370087266, + 0.04607848450541496, + -0.013939371332526207, + -0.010124901309609413, + -0.0016132096061483026, + 0.011643116362392902, + -0.019865430891513824, + 0.016151657328009605, + 0.034043457359075546, + 0.02557237632572651, + -0.01588849164545536, + 0.013121877796947956, + 0.015585423447191715, + 0.011249096132814884, + -0.0019133718451485038, + 0.028110230341553688, + 0.025499142706394196, + 0.010415719822049141, + 0.007428283803164959, + -0.061526376754045486, + -0.0019191408064216375, + -0.04731622338294983, + 0.007755602709949017, + 0.040642477571964264, + 0.010890698060393333, + -0.0018769210437312722, + -0.01575763337314129, + -0.011339669115841389, + 0.05389346554875374, + 0.010535779409110546 + ], + "start_index": 28712, + "end_index": 28765, + "token_count": 6, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "490e861c-1e4c-5e9a-91c0-004521f4ef47", + "_source": { + "text": "\n\nSecuencias de escape soportadas:\n\n\n\n| Secuencia | Significado |\n|-----------|-------------------|\n| `\\\"` | Comilla doble |\n| `\\'` | Comilla simple |\n| `\\\\` | Barra invertida |\n| `\\n` | Salto de línea |\n| `\\t` | Tabulación |\n| `\\r` | Retorno de carro |\n| `\\0` | Carácter nulo |\n", + "embedding": [ + 0.04176952317357063, + 0.02114364504814148, + -0.014061827212572098, + -0.09603696316480637, + -0.0034345153253525496, + 0.038584548979997635, + -0.03054806962609291, + -0.0021674653980880976, + -0.09304045140743256, + -0.05186035856604576, + -0.006785726640373468, + -0.06709060072898865, + 0.008323580026626587, + -0.012532214634120464, + -0.05080437287688255, + 0.06008570268750191, + 0.059569042176008224, + -0.0008223762270063162, + 0.026221567764878273, + -0.04175873473286629, + -0.08121350407600403, + 0.0047166794538497925, + 0.014836597256362438, + 0.11591798067092896, + 0.07960127294063568, + -0.009726854041218758, + -0.023140370845794678, + 0.04461092874407768, + 0.05857735127210617, + -0.03477000072598457, + -0.012160963378846645, + -0.04393312707543373, + -0.08198785036802292, + -0.023506110534071922, + 0.012027663178741932, + -0.016972914338111877, + -0.038170214742422104, + -0.005776370409876108, + 0.039882779121398926, + -0.0040854099206626415, + 0.007755603641271591, + -0.0184183269739151, + 0.02066657692193985, + 0.049097295850515366, + -0.01199895329773426, + -0.03298515826463699, + 0.03843368589878082, + 0.00182913348544389, + 0.039043065160512924, + 0.012659820728003979, + -0.0029458783101290464, + 0.0012688975548371673, + 0.031636811792850494, + 0.011609194800257683, + 0.014041132293641567, + -0.015228738076984882, + -0.021501166746020317, + -0.04025296866893768, + 0.005421881563961506, + 0.004249155055731535, + 0.014036988839507103, + 0.03320898860692978, + -0.06688858568668365, + 0.03742675855755806, + 0.018475955352187157, + -0.00630910461768508, + -0.00394250126555562, + -0.046904556453228, + -0.08058430254459381, + -0.01881183683872223, + 0.015257713384926319, + 0.02314893901348114, + 0.029050886631011963, + 0.006788080558180809, + -0.012098236009478569, + -0.029537802562117577, + -0.01764165610074997, + -0.03308047726750374, + -0.01315031386911869, + 0.05974256992340088, + 0.006122877821326256, + 0.09645027667284012, + 0.025119226425886154, + 0.025126738473773003, + 0.01640240103006363, + 0.06876246631145477, + -0.07050460577011108, + -0.03795161843299866, + 0.017573077231645584, + 0.03400376811623573, + 0.013777694664895535, + 0.05439656600356102, + 0.019520366564393044, + -0.03229880332946777, + 0.042845457792282104, + 0.004567510448396206, + 0.0045538474805653095, + 0.09233594685792923, + 0.03087620995938778, + 0.009914392605423927, + -0.015038393437862396, + -0.0072102309204638, + 0.02687554433941841, + 0.015184160321950912, + 0.01198670081794262, + 0.05580422654747963, + -0.005096824839711189, + -0.019782187417149544, + -0.0219386275857687, + 0.008576488122344017, + 0.006962043698877096, + -0.0019516571192070842, + 0.05001109465956688, + 0.10331034660339355, + 0.015849046409130096, + 0.018943732604384422, + 0.008609754964709282, + -0.017498746514320374, + 0.0026130639016628265, + -0.005721365101635456, + 0.029676299542188644, + -0.043407369405031204, + 0.011434570886194706, + 0.007415910251438618, + 0.04337020963430405, + -0.0006417817203328013, + -0.017584897577762604, + -0.0067443326115608215, + -0.00851158145815134, + -0.013685250654816628, + 0.014521227218210697, + 0.06837166845798492, + -0.02385970577597618, + -0.07794416695833206, + 0.017604464665055275, + -0.007289251312613487, + 0.016265736892819405, + -0.014734470285475254, + 0.05709034949541092, + 0.0062681459821760654, + -0.036433130502700806, + 0.023778241127729416, + -0.027036704123020172, + -0.0546511672437191, + 0.015193652361631393, + 0.03359261900186539, + 0.024328993633389473, + -0.005633548833429813, + -0.01099163293838501, + 0.006656590383499861, + 0.04164741560816765, + -0.02546996995806694, + -0.03374418243765831, + -0.01691494695842266, + -0.0015458357520401478, + -0.00391974626109004, + -0.0036563377361744642, + -0.0005506754387170076, + -0.003447942668572068, + 0.014641014859080315, + 0.026446547359228134, + 0.0015272590098902583, + -0.015205390751361847, + -0.051809828728437424, + -0.025303412228822708, + 0.0021834252402186394, + -0.013622046448290348, + -0.0251630712300539, + 0.014940399676561356, + 0.02457934059202671, + 0.0034540852066129446, + -0.013747782446444035, + -0.0087464964017272, + -0.015959613025188446, + -0.006754015106707811, + -0.016888605430722237, + -0.029713118448853493, + 0.013577970676124096, + -0.06451735645532608, + -0.013571569696068764, + -0.0016664856811985373, + 0.007476761471480131, + 0.0008644319605082273, + -0.019910547882318497, + 0.014924210496246815, + 0.06699810177087784, + -0.01542700920253992, + -0.019564272835850716, + 0.004065880551934242, + -0.035737186670303345, + -0.01928691193461418, + -0.007103766314685345, + -0.0923333615064621, + -0.018226150423288345, + -0.011764945462346077, + -0.02950751781463623, + -0.005585425067692995, + 0.01121890265494585, + -0.029144287109375, + 0.0041143642738461494, + 0.015347974374890327, + 0.008802592754364014, + 0.016610395163297653, + -0.011420386843383312, + -0.043226443231105804, + 0.005390218459069729, + -0.03612365573644638, + 0.001271487446501851, + -0.03194831684231758, + -0.03179843723773956, + -0.01718077063560486, + 0.048826657235622406, + -0.029808418825268745, + -0.041718989610672, + -0.016350682824850082, + -0.005660467781126499, + 0.004622753243893385, + 0.03107801452279091, + -0.013976223766803741, + 0.03840292617678642, + 0.0353129506111145, + -0.0060595362447202206, + -0.06490457057952881, + -0.004242085386067629, + 0.057108908891677856, + 0.01889447309076786, + 0.012763812206685543, + -0.005426015704870224, + 0.012089896015822887, + -0.004669521935284138, + 0.007948380894958973, + 0.009110846556723118, + 0.00950966402888298, + -0.01669844053685665, + 0.03606292977929115, + 0.020011553540825844, + 0.016132600605487823, + -0.02656938135623932, + 0.06620880216360092, + -0.043299030512571335, + -0.0012084963964298368, + -0.01614677533507347, + 0.011906915344297886, + -0.005315024871379137, + -0.019146986305713654, + 0.034516800194978714, + 0.01292857713997364, + -0.02201279252767563, + -0.025915630161762238, + 0.018313631415367126, + 0.012227370403707027, + 0.05009528249502182, + 0.0021030446514487267, + -0.045307714492082596, + 0.0007396360742859542, + -0.025996027514338493, + -0.0017846639966592193, + -0.001523315440863371, + 0.016455501317977905, + -0.022417934611439705, + 0.009965978562831879, + -0.039432283490896225, + 0.005783188622444868, + 0.006855395156890154, + 0.06377051025629044, + 0.03845740109682083, + 0.01272549293935299, + -0.0025949219707399607, + -0.03220362588763237, + -0.018490038812160492, + 0.020125066861510277, + 0.030763890594244003, + -0.01046772301197052, + 0.0004634465731214732, + 0.004709068685770035, + 0.025646308436989784, + 0.020798156037926674, + -0.0920637920498848, + -0.02144629880785942, + 0.016558779403567314, + 0.02688470110297203, + -0.005203435197472572, + -0.0020394043531268835, + -0.02713705413043499, + 0.009091051295399666, + 0.021309029310941696, + 0.028919637203216553, + -0.05243390053510666, + -0.011316548101603985, + -0.016407018527388573, + -0.037050437182188034, + 0.0416964553296566, + -0.053695566952228546, + 0.005648093763738871, + 0.0038284054026007652, + -0.005502173211425543, + -0.05977803096175194, + 0.049928419291973114, + 0.03150467574596405, + -0.0245402492582798, + 0.018709423020482063, + -0.017979757860302925, + -0.0064112041145563126, + 0.033707115799188614, + -0.03781984746456146, + -0.0014268603408709168, + 0.056956347078084946, + -0.006430439651012421, + 0.026297740638256073, + 0.02708500064909458, + -0.010344263166189194, + -0.027343347668647766, + -0.018844133242964745, + 0.012252889573574066, + 0.030581707134842873, + -0.015989532694220543, + -0.02994823083281517, + -0.010031585581600666, + 0.012164437212049961, + 0.034663647413253784, + 0.027389952912926674, + -0.0181950144469738, + 0.04349633678793907, + -0.009802921675145626, + 0.009285038337111473, + -0.02280210144817829, + 0.0586887001991272, + 0.002782354364171624, + 0.060457367449998856, + 0.05820723995566368, + 0.03227059915661812, + -0.04108641669154167, + -0.02430431917309761, + -0.00299527938477695, + -0.008570254780352116, + 0.005407334305346012, + -0.01672181487083435, + 0.038566380739212036, + -0.031113123521208763, + -0.003840049495920539, + 0.004541471134871244, + 0.014950930140912533, + -0.04835214093327522, + -0.011742077767848969, + -0.00799665879458189, + -0.01742437481880188, + -0.0008019171073101461, + 0.06449947506189346, + 0.03461075201630592, + 0.01767636090517044, + 0.019631437957286835, + -0.019960802048444748, + 0.01964254304766655, + 0.026478538289666176, + 0.004118326585739851, + -0.08156685531139374, + 0.0012622639769688249, + 0.038541629910469055, + -0.0388360396027565, + -0.0673753172159195, + -0.04701162874698639, + -0.003779286751523614, + 0.010457102209329605, + 0.04061137139797211, + 0.0024702432565391064, + -0.021107280626893044, + -0.034750573337078094, + -0.009456388652324677, + 0.0654599741101265, + 0.03232751414179802, + -0.08659762144088745, + -0.03706470876932144, + -0.06834111362695694, + 0.05308723449707031, + 0.05781172588467598, + 0.035152535885572433, + 0.039298027753829956, + 0.008822587318718433, + -0.026767464354634285, + 0.014864982105791569, + 0.00875439215451479, + 0.013288546353578568, + -0.00501871295273304, + 0.0027358545921742916, + -0.06626705080270767, + 0.008118540979921818, + 0.01187699381262064, + -0.05032982677221298, + 0.0020365845412015915, + 0.004843906499445438, + 0.004118293523788452, + -0.03197013959288597, + 0.06378009915351868, + 0.03624749928712845, + 0.005982177332043648, + 0.03344152867794037, + -0.09158973395824432, + -0.03311466425657272, + 0.018203703686594963, + -0.03554779291152954, + 0.03247490152716637, + 0.01961727812886238, + 0.005386257078498602, + -0.0140477130189538, + 0.008584853261709213, + -0.0002418859367026016, + -0.012358584441244602, + -0.023305285722017288, + -0.013267717324197292, + 0.02761102095246315, + 0.020627500489354134, + -0.005543404258787632, + -0.01213155034929514, + -0.046439796686172485, + -0.01632711850106716, + -0.025584163144230843, + 0.07187400758266449, + -0.03938742354512215, + -0.014965154230594635, + -0.044855836778879166, + -0.013575916178524494, + 0.019537165760993958, + -0.018722349777817726, + 0.017216261476278305, + 0.025140414014458656, + 0.005530139897018671, + -0.027937322854995728, + -0.05050402879714966, + 0.04527335241436958, + 0.029844801872968674, + -0.020767778158187866, + 0.018793534487485886, + -0.02802409790456295, + 0.08483507484197617, + -0.06553856283426285, + 0.0412728413939476, + 0.07870203256607056, + 0.06647460907697678, + -0.0520394928753376, + -0.01714235544204712, + 0.013408180326223373, + -0.00560798728838563, + -0.008294530212879181, + 0.022736720740795135, + -0.04672063887119293, + -0.017718713730573654, + 0.015868129208683968, + 0.04533328115940094, + 0.0053074657917022705, + 0.013904286548495293, + 0.005395335610955954, + -0.029750103130936623, + 0.01770169474184513, + 0.05345170944929123, + 0.005942408461123705, + -0.022103454917669296, + 0.0074791936203837395, + -0.04444536939263344, + 0.0198106300085783, + 0.022366533055901527, + 0.008168882690370083, + 0.0008838638314045966, + 0.0057643745094537735, + -0.05360877513885498, + -0.029128633439540863, + 0.029099490493535995, + 0.032179057598114014, + 0.00630224822089076, + 0.03505098074674606, + -0.0024479764979332685, + 0.008540729060769081, + 0.0005449025775305927, + -0.01904897391796112, + -0.009732132777571678, + 0.00863157119601965, + -0.01834852620959282, + -0.02447797916829586, + 0.010953485034406185, + -0.06835849583148956, + 0.04186059162020683, + 0.00046874344116076827, + -0.05470145121216774, + 0.027253283187747, + -0.088081955909729, + 0.02943888120353222, + -0.018228743225336075, + 0.06041792780160904, + -0.039599932730197906, + -0.06362143903970718, + 0.022111115977168083, + 0.02757725678384304, + 0.029276201501488686, + 0.033187877386808395, + -0.056581415235996246, + 0.02844996005296707, + -0.03564134240150452, + -0.0007243026047945023, + 0.054436542093753815, + -0.08742975443601608, + 0.03345220163464546, + 0.013463728129863739, + 0.04033909738063812, + 0.0065513355657458305, + 0.005927846301347017, + -0.027966877445578575, + -0.02131306566298008, + 0.03133134916424751, + -0.029385004192590714, + 0.015562943182885647, + 0.031586989760398865, + 0.02208366058766842, + -0.019075198099017143, + -0.0004566950083244592, + 0.015495468862354755, + 0.01562529429793358, + -0.03354618325829506, + 0.02021702192723751, + 0.048880912363529205, + -0.006364995613694191, + 0.0350923053920269, + 0.03161978721618652, + -0.010816555470228195, + -0.007879459299147129, + -0.06422105431556702, + 0.0183747299015522, + 0.025693319737911224, + 0.001406784518621862, + -0.01513036247342825, + 0.0007594776106998324, + -0.028254635632038116, + 0.055836211889982224, + -0.01947244256734848, + 0.04543541744351387, + 0.008694055490195751, + 0.014889699406921864, + 0.012394534423947334, + -0.01456715539097786, + -0.03590096905827522, + -0.011340123601257801, + 0.04007566347718239, + -0.025800202041864395, + -0.009956839494407177, + -0.050605639815330505, + 0.007426350377500057, + 0.09299646317958832, + 0.024675117805600166, + 0.004206493031233549, + 0.012321447022259235, + -0.03212848678231239, + 0.04671373590826988, + 0.03279922902584076, + -0.015784429386258125, + 0.046104129403829575, + -0.010176843963563442, + 0.04196557030081749, + 0.022111600264906883, + 0.020418280735611916, + 0.04133172333240509, + 0.0223680529743433, + -0.07287558168172836, + 0.01762205734848976, + -0.0343405082821846, + -0.020165102556347847, + 0.06314019858837128, + -0.02085815742611885, + 0.015510820783674717, + 0.008083133026957512, + 0.032295290380716324, + 0.02642335742712021, + 0.004149581305682659, + 0.009598561562597752, + 0.018049413338303566, + -0.016362858936190605, + 0.0677817240357399, + -0.020984482020139694, + -0.08019354194402695, + -0.0025330018252134323, + 0.0252961628139019, + -0.006637361366301775, + -0.003691617166623473, + 0.0786355510354042, + -0.012252137996256351, + 0.009244152344763279, + 0.02569132298231125, + 0.0032213928643614054, + -0.019190296530723572, + -0.009433088824152946, + -0.011405309662222862, + 0.014220747165381908, + -0.034903086721897125, + -0.05160025879740715, + -0.006510480307042599, + 0.0035447869449853897, + -0.02542436495423317, + 0.038920462131500244, + 0.0006977952434681356, + -0.055349383503198624, + -0.004594214726239443, + -0.009214675985276699, + 0.0025084028020501137, + 0.04099017009139061, + 0.02396201901137829, + 0.00853536743670702, + 0.01606771908700466, + -0.006905961316078901, + 0.0032469735015183687, + -0.022950954735279083, + 0.010930400341749191, + -0.05474526435136795, + -0.007492333184927702, + -0.015777986496686935, + 0.041723981499671936, + -0.02135396935045719, + 0.01331778708845377, + 0.012102833949029446, + -0.05150394141674042, + -0.012727114371955395, + 0.009037286974489689, + 0.021431153640151024, + -0.036488454788923264, + -0.031159574165940285, + -0.021258633583784103, + 0.026733161881566048, + 0.04432470723986626, + -0.017668938264250755, + 0.04217034950852394, + -0.013117468915879726, + 0.013873403891921043, + 0.0032348819077014923, + -0.016831422224640846, + -0.02433212473988533, + 0.0006144308717921376, + -0.009362621232867241, + -0.007631401531398296, + 0.06268849223852158, + -0.026318607851862907, + -0.01377553679049015, + -0.009289571084082127, + 0.02133268490433693, + -0.029557151719927788, + -0.00735075306147337, + -0.010065237060189247, + 0.02876739390194416, + 0.005987712647765875, + 0.006093698088079691, + 0.004605766851454973, + -0.031169218942523003, + -0.005651557818055153, + -0.012118256650865078, + -0.028707468882203102, + -0.017029521986842155, + -0.004611344542354345, + 0.017956184223294258, + -0.014024059288203716, + -0.047047849744558334, + 0.034585244953632355, + -0.025866040959954262, + 0.04065241664648056, + -0.02653971128165722, + -0.07241204380989075, + 0.014557144604623318, + -0.03952517732977867, + 0.007453646045178175, + -0.03478889912366867, + 0.0065032984130084515, + 0.008450519293546677, + 0.0579015277326107, + 0.04371437430381775, + 0.025052953511476517, + -0.017068063840270042, + -0.024711595848202705, + -0.008333460427820683, + -0.03563140332698822, + 0.01806323230266571, + -0.014799946919083595, + -0.036512404680252075, + 0.0055796182714402676, + -0.0297805555164814, + -0.006598417181521654, + -0.010275708511471748, + -0.04226306825876236, + -0.02111007273197174, + 0.06960960477590561, + -0.04765872284770012, + -0.004412761889398098, + -0.037814103066921234, + -0.009623791091144085, + 0.004870826844125986, + 0.018068039789795876, + 0.00022614577028434724, + -0.031373295933008194, + 0.036875586956739426, + 0.0010037543252110481, + 0.0034433193504810333, + 0.020498177036643028, + 0.009208750911056995, + -0.0335790179669857, + -0.0395493321120739, + -0.025222934782505035, + 0.003333569271489978, + 0.02926631271839142, + 0.006984766107052565, + -0.05463019013404846, + 0.015357527881860733, + 0.006250297650694847, + -0.04784976691007614, + -0.018109828233718872, + 0.02154877968132496, + -0.03292762115597725, + -0.028415149077773094, + 0.008677125908434391, + 0.05397040396928787, + 0.03150911256670952, + 0.01685679703950882, + 0.04722865670919418, + 0.014997746795415878, + -0.0017758747562766075, + 0.005701016169041395, + -0.028569133952260017, + 0.01686958409845829, + 0.05501077324151993, + -0.020499635487794876, + 0.017596501857042313, + -0.03165121749043465, + -0.08131324499845505, + -0.04118441790342331, + -0.010891621001064777, + 0.008336893282830715, + -0.004116237163543701, + 0.026855897158384323, + 0.06368470937013626, + -0.01607922837138176, + -0.004644568078219891, + -0.013734580017626286, + -0.028207626193761826, + -0.017119713127613068, + 0.02971806935966015, + 0.02806353010237217, + 0.04484882205724716, + 0.0022092980798333883, + -0.03472679853439331, + -0.016454454511404037, + 0.006344346795231104, + -0.03402826189994812, + -0.020067505538463593, + 0.05782483145594597, + -0.040981486439704895, + 0.026084598153829575, + 0.02876671403646469, + 0.013366356492042542, + 0.023818956688046455, + -0.006782056298106909, + 0.029978865757584572, + -0.0222457367926836, + -0.02689494378864765, + 0.05311480537056923, + 0.0012806076556444168, + 0.014446176588535309, + -0.0043884338811039925, + 0.01320721860975027, + 0.042569227516651154, + -0.0012820708798244596, + -0.02464008703827858, + 0.020255692303180695, + -0.0208303090184927, + -0.02797631360590458, + 0.008140555582940578, + 0.0019525185925886035, + -0.008340969681739807, + -0.0045552016235888, + 0.021570103242993355, + -0.0036781064700335264, + -0.0035527502186596394, + 0.08224170655012131, + 0.02812335640192032, + 0.023339563980698586, + -0.0228591151535511, + -0.033347614109516144, + 0.02373732440173626, + -0.006457068957388401, + 0.010090753436088562, + 0.0027659183833748102, + -0.011302672326564789, + -0.002504861680790782, + -0.062248311936855316, + 0.05484446510672569, + -0.00043360862764529884, + -0.014476247131824493, + 0.019000500440597534, + 0.020187053829431534, + -0.012586730532348156, + 0.006581066641956568, + 0.043517954647541046, + 0.028373200446367264, + 0.013714500702917576, + 0.0016049470286816359, + -0.0033369252923876047, + 0.03169260546565056, + 0.006971354130655527, + 0.01594395935535431, + -0.017218489199876785, + 0.03219342604279518, + 0.01146166492253542, + 0.00359952705912292, + 0.039475198835134506, + 0.007655702065676451, + 0.07383812963962555, + 0.020102035254240036, + -0.008691712282598019, + 0.013909982517361641, + -0.02787136286497116, + 0.05576401948928833, + -0.007701060734689236, + -0.0002854728081729263, + 0.030148621648550034, + 0.04619615897536278, + 0.022085361182689667, + -0.015029211528599262, + 0.03084281086921692, + -0.020382331684231758, + -0.0032194179948419333, + 0.02242635376751423, + 0.010660751722753048, + 0.03705162554979324, + -0.01919996738433838, + 0.05291062220931053, + 0.022501641884446144, + -0.008507389575242996, + -0.02010529115796089, + 0.01291394792497158, + -0.013267677277326584, + -0.034370314329862595, + 0.053842440247535706, + 0.025553517043590546, + 0.027417300269007683, + -0.005451001226902008, + -0.07899975776672363, + -0.0647849440574646, + 0.02061520703136921, + 0.010271228849887848, + 0.047069694846868515, + -0.01878281496465206, + 0.016355818137526512, + -0.0012460878351703286, + -0.009969344362616539, + 0.02283092960715294, + -0.031397636979818344, + 0.013452631421387196, + 0.03132273256778717, + -0.005322619806975126, + -0.007242641411721706, + 0.01581922173500061, + -0.03317086398601532, + -0.006195250432938337, + -0.021844422444701195, + 0.027261460199952126, + 1.569349115015939e-05, + -0.023846453055739403, + -0.03303705155849457, + 0.034924160689115524, + -0.06332326680421829, + -0.008359111845493317, + -0.01877003349363804, + -2.439571289869491e-05, + -0.018271418288350105, + 0.04407232627272606, + 0.02909713424742222, + 0.019930865615606308, + 0.020888114348053932, + 0.010228780098259449, + 0.020848726853728294, + 0.028251023963093758, + -0.018109265714883804, + -0.003267828840762377, + 0.010785446502268314, + 0.025953592732548714, + -0.012732240371406078, + 0.006810648832470179, + -0.005734463222324848, + 0.005895788315683603, + -0.011445312760770321, + 0.050012607127428055, + 0.004005262162536383, + -0.019360927864909172, + -0.019499368965625763, + 0.02157202735543251, + -0.025853730738162994, + -0.08533494919538498, + -0.02991545759141445, + -0.01326354406774044, + -0.01063508540391922, + -0.007586875464767218, + 0.04188503324985504, + 0.002091433620080352, + -0.0426260381937027, + -0.009957331232726574, + 0.009639102965593338, + 0.048903938382864, + -0.0108231445774436, + -0.02899947576224804, + 0.01627703756093979, + -0.008519498631358147, + -0.0005547011969611049, + -0.02523580938577652, + 0.017846163362264633, + -0.0034929472021758556, + -0.013403697870671749, + 0.01994965970516205, + -0.032768573611974716, + -0.005781279411166906, + -0.020962409675121307, + 0.029194289818406105, + -0.011002720333635807, + -0.025198929011821747, + 0.026460427790880203, + -0.04303150624036789, + -0.04013168811798096, + -0.020981580018997192, + -0.02505916729569435, + -0.032151974737644196, + 0.0015552492113783956, + -0.03846832737326622, + 0.05080233886837959, + 0.01979362964630127, + -0.025613805279135704, + 0.005491440184414387, + -0.020369455218315125, + 0.019503289833664894, + 0.02929801680147648, + 0.004795358050614595, + 0.05150507390499115, + -0.015640083700418472, + 0.03447460010647774, + -0.014664622023701668, + 0.038775116205215454, + -0.0363604910671711, + 0.03054499253630638, + 0.0003577148891054094, + 0.012568295933306217, + -0.0460052452981472, + -0.0043584187515079975, + -0.034266047179698944, + 0.037661340087652206, + 0.007258050609380007, + 0.0048429593443870544, + 0.00600480567663908, + 0.0032922166865319014, + 0.014814957045018673, + -0.00392534164711833, + 0.02313252165913582, + -0.04068093001842499, + 0.02037891373038292, + -0.03528354689478874, + -0.02532757632434368, + 0.042817335575819016, + -0.025874227285385132, + 0.004889823962002993, + 0.0029139360412955284, + 0.0015213676961138844, + -0.0027048755437135696, + -0.013169732876121998, + 0.013098238967359066, + 0.013358410447835922, + -0.01696162298321724, + -0.04313933849334717, + -0.07243848592042923, + -0.0014302714262157679, + 0.005577864591032267, + -0.0012601393973454833, + -0.005742191337049007, + 0.08147773891687393, + 0.002070843242108822, + 0.02360422909259796, + 0.028658363968133926, + 0.035474006086587906, + 0.014932876452803612, + -0.04041975736618042, + -0.006282960530370474, + -0.015260717831552029, + -0.020507115870714188, + -0.04822167009115219, + 0.030019864439964294, + 0.01990683190524578, + -0.010716300457715988, + -0.029079418629407883, + -0.032214563339948654, + 0.014004526659846306, + 0.018778188154101372, + 0.025949746370315552, + -0.04252272844314575, + 0.03824830427765846, + -0.025414964184165, + 0.024540891870856285, + -0.01389988698065281, + -0.017118658870458603, + 0.0026318784803152084, + -0.01422268059104681, + -0.02081843465566635, + 0.0006406401516869664, + 0.04390924423933029, + -0.009554225020110607, + -0.032738544046878815, + 0.03561653569340706, + -0.03532412648200989, + -0.011396213434636593, + -0.016812492161989212, + -0.03216440603137016, + -0.02463044971227646, + 0.011184457689523697, + 0.03387204185128212, + -0.016778944060206413, + 0.012185107916593552, + 0.004267828073352575, + -0.030188942328095436, + 0.0021180855110287666, + 0.0003023243334610015, + 0.021773766726255417, + -0.0155581533908844, + 0.026405734941363335, + -0.02221772074699402, + 0.0031944329384714365, + -0.027619799599051476, + -0.00553487241268158, + -0.061175305396318436 + ], + "start_index": 28765, + "end_index": 29107, + "token_count": 10, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "79ad9d70-fad0-5bd6-8eec-577dac1e9d45", + "_source": { + "text": "\n> **Nota:** `\\n` dentro de un string es un carácter de datos, no un terminador de sentencia. El EOL físico sigue siendo el único terminador.\n\n---\n\n# X.8 Literales booleanos\n\nTokens:\n\n\n\nTrue\nFalse", + "embedding": [ + 0.018823014572262764, + 0.04433617368340492, + -0.008823107928037643, + -0.10726059228181839, + -0.03509322181344032, + 0.027964191511273384, + -0.06926175951957703, + 0.013253265991806984, + -0.08993884176015854, + -0.033980730921030045, + 0.0337705984711647, + -0.0412311889231205, + 0.01974865049123764, + -0.00955461710691452, + -0.04875224083662033, + 0.0778433233499527, + 0.014794878661632538, + -0.007158967200666666, + 0.024024127051234245, + -0.05421106144785881, + -0.07465100288391113, + 0.004944839049130678, + 0.015099423006176949, + 0.07592128217220306, + 0.05231040343642235, + 0.04035016894340515, + -0.06563504040241241, + 0.03744909167289734, + 0.02769956924021244, + -0.06147056072950363, + -0.028304286301136017, + -0.09900917112827301, + -0.04301564767956734, + -0.047174643725156784, + 0.014767001383006573, + -0.014719168655574322, + 0.06138421222567558, + 0.012473388575017452, + 0.03099043108522892, + 0.006817028857767582, + 0.0002365830005146563, + 0.04713596776127815, + -0.009659425355494022, + 0.008708381094038486, + -0.016893161460757256, + -0.048736512660980225, + 0.008638800121843815, + -0.015423695556819439, + 0.03207488730549812, + 0.0385722890496254, + -0.026611875742673874, + 0.014234029687941074, + 0.005110186990350485, + -0.011381778866052628, + -0.03461715951561928, + -0.021903090178966522, + -0.04466545209288597, + -0.010163279250264168, + 0.00363023835234344, + 0.005673276260495186, + -0.02014266513288021, + 0.02121010422706604, + -0.03026312030851841, + 0.013784248381853104, + 0.00912432000041008, + 0.015146046876907349, + 0.04009835422039032, + -0.010358055122196674, + -0.039481211453676224, + -0.03083026222884655, + 0.02188299037516117, + 0.025521574541926384, + -0.0035411592107266188, + 0.03714935854077339, + 0.011450075544416904, + 0.006014990620315075, + 0.005267295986413956, + -0.04616929590702057, + -0.02527022734284401, + 0.05005238950252533, + -0.0047743478789925575, + 0.06531684845685959, + -0.012741913087666035, + 0.011989808641374111, + 0.03778006136417389, + 0.03606746345758438, + -0.02631516382098198, + -0.0257585309445858, + 0.029090844094753265, + 0.04396366700530052, + -0.0008230105740949512, + 0.02358577772974968, + -0.004692207556217909, + -0.010877858847379684, + 0.03363247588276863, + 0.0028126828838139772, + 0.02055414579808712, + 0.07074668258428574, + 0.009941844269633293, + 0.02353316731750965, + -0.024044208228588104, + -0.030247384682297707, + -0.0031566082034260035, + 0.04222957044839859, + -0.03864637017250061, + 0.028211360797286034, + -0.0017700508469715714, + 0.00930425338447094, + -0.06404923647642136, + -0.0324115976691246, + 0.0021227910183370113, + 0.006689999718219042, + 0.0841941088438034, + 0.05563106760382652, + -0.01125305611640215, + -0.010577036999166012, + -0.0001183355416287668, + -0.03852658346295357, + 0.018679605796933174, + -0.0027784311678260565, + 0.015138044022023678, + -0.02913656458258629, + 0.01791955716907978, + -0.014401445165276527, + 0.0239765252918005, + 0.026270251721143723, + -0.05855894088745117, + -0.020556218922138214, + 0.0068620340898633, + -0.02188987284898758, + -0.010674736462533474, + 0.01300901360809803, + -0.019060833379626274, + -0.04659505933523178, + 0.005997101776301861, + -0.004345988389104605, + -0.007627555169165134, + -0.04606630280613899, + 0.03606609255075455, + -0.025364577770233154, + -0.0437774658203125, + -0.0040366509929299355, + 0.008605103939771652, + -0.009243256412446499, + 0.018320545554161072, + 0.02742350473999977, + 0.019874542951583862, + -0.0009445712785236537, + 0.021974604576826096, + 0.012989279814064503, + -0.024117039516568184, + 0.0026753919664770365, + -0.016391677781939507, + -0.01651758886873722, + -0.027233771979808807, + 0.007716051302850246, + -0.0047017536126077175, + -0.0026402354706078768, + 0.003586717415601015, + 0.010987085290253162, + 0.002109598834067583, + -0.007669354323297739, + -0.013793593272566795, + -0.03842858597636223, + 0.0034205897245556116, + 0.043653231114149094, + -0.006603502668440342, + -0.03632225841283798, + 0.04466130957007408, + 9.065928315976635e-05, + 0.002902014646679163, + 0.0014101541601121426, + -0.010714167729020119, + 0.007187702227383852, + -0.02085072360932827, + -0.019129516556859016, + -0.022877134382724762, + 0.009679136797785759, + -0.018559448421001434, + 0.006245722062885761, + 0.002792677842080593, + -0.018754057586193085, + -0.009923015721142292, + -0.019571855664253235, + 0.016624223440885544, + 0.02955593541264534, + -0.020695822313427925, + -0.023235173895955086, + 0.019825385883450508, + -0.019281620159745216, + 0.01044802088290453, + -0.004807461053133011, + -0.08658360689878464, + -0.008897179737687111, + -0.008167441934347153, + -0.03460118919610977, + 0.022697731852531433, + 0.011221553198993206, + -0.0016992853488773108, + -0.007026928011327982, + 0.025781895965337753, + -0.022399406880140305, + 0.015399283729493618, + 0.0037863177713006735, + -0.04763813316822052, + -0.012066562660038471, + -0.0012191574787721038, + 0.00010950461000902578, + -0.018212025985121727, + -0.027710003778338432, + 0.00674248393625021, + 0.041386928409338, + -0.01915648952126503, + -0.03424464538693428, + 8.637613791506737e-05, + -0.02996082976460457, + -0.002249264158308506, + 0.02783971279859543, + 0.007130050100386143, + 0.014007523655891418, + 0.02730686590075493, + -0.0007326819468289614, + -0.018516607582569122, + -0.0023860547225922346, + 0.06740527600049973, + -0.00021440173441078514, + -0.0021002814173698425, + -0.010039912536740303, + -0.040615059435367584, + -0.0016039133770391345, + -0.02117527835071087, + 0.024939250200986862, + -0.0008466299041174352, + -0.03824890777468681, + 0.03141740337014198, + 0.011591671034693718, + 0.013468981720507145, + -0.03302532061934471, + 0.05608934536576271, + -0.04814421012997627, + -0.015696054324507713, + 0.008253185078501701, + 0.0208164993673563, + 0.02261095680296421, + -0.02248263545334339, + 0.017143456265330315, + -0.004817509558051825, + -0.02857177145779133, + -0.0023570589255541563, + -0.019864048808813095, + 0.024158727377653122, + 0.0065363747999072075, + -0.036995142698287964, + 0.004779760725796223, + 0.009381629526615143, + -0.03541817143559456, + -0.010004053823649883, + -0.03693791851401329, + -0.013240997679531574, + -0.015556788071990013, + 0.026926321908831596, + -0.037955962121486664, + 0.02586897648870945, + 0.02271493338048458, + 0.051543451845645905, + 0.025053242221474648, + -0.019953496754169464, + 0.01627425104379654, + -0.03753036633133888, + -0.005383828654885292, + 0.04548075422644615, + 0.010945613496005535, + -0.04793564975261688, + 0.01684904471039772, + 0.027959611266851425, + 0.02750549279153347, + 0.007087660487741232, + -0.11513350903987885, + 0.021214162930846214, + 0.027553336694836617, + 0.06030150130391121, + -0.03124387003481388, + 0.028002092614769936, + -0.03439412638545036, + 0.008640171028673649, + 0.04537966102361679, + 0.03139691427350044, + 0.011515926569700241, + 0.0073765479028224945, + 0.007116295397281647, + -0.006503568962216377, + 0.004440066404640675, + -0.08320008218288422, + -0.00287000834941864, + -0.028742779046297073, + -0.07108253240585327, + -0.03405914828181267, + 0.0839141234755516, + 0.007740826811641455, + 0.04910571873188019, + 0.005645358003675938, + -0.026609325781464577, + 0.012260106392204762, + 0.019773442298173904, + -0.02645457722246647, + 0.004139533266425133, + 0.028526287525892258, + -0.017581185325980186, + 0.004283202812075615, + 0.02184201031923294, + 0.013137293048202991, + -0.0035618161782622337, + -0.009825403802096844, + -0.03169650584459305, + -0.034493234008550644, + -0.011282035149633884, + -0.06360400468111038, + 0.009688305668532848, + 0.0010828363010659814, + 0.0315677784383297, + -0.028153620660305023, + -0.024335376918315887, + 0.037604257464408875, + 0.06444571912288666, + 0.03830561414361, + 0.0006874369573779404, + 0.06898713111877441, + 0.013660862110555172, + 0.0935606136918068, + 0.03899681568145752, + 0.03582655265927315, + -0.054909154772758484, + -0.022606737911701202, + 0.0353616327047348, + 0.0597982294857502, + 0.027465736493468285, + -0.019241638481616974, + 0.05847563222050667, + -0.02166348323225975, + -0.004633733537048101, + 0.017023960128426552, + -0.01931793801486492, + 0.014914616011083126, + 0.04332553222775459, + -0.04191519320011139, + 0.004231019876897335, + 0.021541479974985123, + 0.06549343466758728, + 0.019423549994826317, + -0.0342092402279377, + 0.02958979830145836, + 0.028589362278580666, + 0.03283096104860306, + -0.017449213191866875, + -0.003939718008041382, + -0.03665199875831604, + -0.0025261426344513893, + 0.032318636775016785, + -0.016987154260277748, + -0.07602208852767944, + -0.04326317459344864, + -0.009093326516449451, + 0.033962901681661606, + 0.044270358979701996, + 0.017920583486557007, + -0.06226547062397003, + -0.03465792164206505, + -0.011576124466955662, + 0.05465066805481911, + -0.012449818663299084, + -0.11327056586742401, + 0.013242433778941631, + -0.04926343634724617, + 0.020549321547150612, + 0.026994220912456512, + 0.07453839480876923, + 0.04086338356137276, + 0.03516773506999016, + 0.011992045678198338, + 0.0264676995575428, + -0.03207295387983322, + 0.01751171052455902, + -0.018518198281526566, + 0.009190306067466736, + -0.013199902139604092, + -0.03114309348165989, + -0.023483747616410255, + -0.024536412209272385, + 0.00209136214107275, + -0.010393479838967323, + 0.029341043904423714, + -0.021224332973361015, + 0.010396702215075493, + 0.003356067230924964, + -0.0021078097634017467, + 0.005929032806307077, + -0.0785982757806778, + -0.02388814091682434, + -0.006173100788146257, + -0.003872407367452979, + 0.0006312592886388302, + 0.010698231868445873, + 0.011612000875175, + -0.011670823208987713, + -0.00036866797017864883, + 0.004624476656317711, + -0.03364472836256027, + -0.0008295533480122685, + -0.05134745314717293, + 0.01157635822892189, + 0.0344943143427372, + -0.005337705835700035, + -0.02257615514099598, + 0.003147567855194211, + -0.024724407121539116, + -0.009039364755153656, + 0.08852170407772064, + -0.055975183844566345, + -0.033003319054841995, + -0.05755503848195076, + -0.006335478276014328, + 0.011483481153845787, + -0.019351735711097717, + -0.04392744228243828, + 0.014024438336491585, + -0.030308356508612633, + -0.04583694040775299, + -0.08911669254302979, + -0.025234399363398552, + 0.05877397581934929, + 0.010770482011139393, + -0.04694325104355812, + -0.06608034670352936, + 0.06119474768638611, + -0.08584167808294296, + 0.038771968334913254, + 0.06502724438905716, + 0.06384645402431488, + -0.02322147786617279, + -0.02134595811367035, + 0.020451311022043228, + 0.03005063347518444, + -0.008754385635256767, + 0.03789359703660011, + -0.03305878862738609, + -0.02742636390030384, + -0.049017321318387985, + 0.07454878836870193, + 0.030019566416740417, + -0.011545307002961636, + 0.011968732811510563, + -0.0036576681304723024, + 0.015970326960086823, + 0.059531278908252716, + 0.021227624267339706, + -0.04837364703416824, + 0.03651374205946922, + -0.047337234020233154, + -0.027345774695277214, + 0.0219260361045599, + 0.013915006071329117, + 0.0073950509540736675, + 0.002560956170782447, + -0.05794605612754822, + -0.06776849925518036, + 0.030655033886432648, + -0.004093818366527557, + -0.00981964636594057, + 0.040143415331840515, + 0.01010778546333313, + -0.02276010811328888, + -0.05074569210410118, + -0.0016263567376881838, + 0.014223418198525906, + -0.0003787169698625803, + -0.022814616560935974, + -0.02221924439072609, + -0.017423173412680626, + -0.03681312873959541, + 0.0017755337757989764, + 0.006395893637090921, + -0.027227455750107765, + 0.03712256997823715, + -0.08754200488328934, + 0.012074952013790607, + -0.04079744964838028, + -0.0008689227979630232, + -0.0013013356365263462, + -0.03578824922442436, + 0.03974510729312897, + 0.015532607212662697, + 0.03892263397574425, + -0.0015617756871506572, + -0.013140494003891945, + 0.008100608363747597, + -0.05196909233927727, + -0.006886030547320843, + -0.006424148567020893, + -0.106036476790905, + 0.012495430186390877, + 0.013763406313955784, + -0.0022856516297906637, + 0.02629641443490982, + -0.0003732570621650666, + -0.012974776327610016, + -0.03223791718482971, + 0.006898173131048679, + -0.02747274935245514, + 0.02486368641257286, + 0.017957597970962524, + -0.031311873346567154, + -0.0030578349251300097, + -0.0003484916524030268, + 0.03881978243589401, + 0.01737668178975582, + -0.011182831600308418, + 0.03142582252621651, + -0.0015852084616199136, + -0.05884429067373276, + 0.08349420875310898, + -0.002463253913447261, + 0.07678262144327164, + 0.028530634939670563, + 0.04011204093694687, + 0.017498543485999107, + 0.005119492765516043, + -0.00068709283368662, + -0.013420572504401207, + 0.014261793345212936, + -0.035290755331516266, + 0.0291502233594656, + -0.015826193615794182, + 0.012556586414575577, + -0.011703870259225368, + 0.022720135748386383, + 0.035422954708337784, + 0.03963412344455719, + 0.01381961815059185, + -0.02506202831864357, + 0.006466441322118044, + -0.03028169833123684, + -0.015010682865977287, + -0.021680116653442383, + 0.014752103947103024, + 0.008621301501989365, + -0.004519131034612656, + 0.004854956641793251, + 0.011961188167333603, + -0.01835324801504612, + 0.0315629281103611, + 0.020138856023550034, + 0.03169739991426468, + 0.03818731755018234, + 0.00802138913422823, + 0.042557548731565475, + 0.07001379877328873, + -0.012359579093754292, + 0.04328172281384468, + 0.06332847476005554, + 0.0013893380528315902, + 0.009878394193947315, + -0.00942190457135439, + 0.0018014287343248725, + 0.014581946656107903, + 0.010847008787095547, + 0.0012153842253610492, + 0.01708301156759262, + 0.009965980425477028, + 0.05913103371858597, + -0.030640192329883575, + 0.06262402981519699, + 0.007163108326494694, + 0.014293038286268711, + 0.05794066563248634, + -0.02547968365252018, + -0.05065775290131569, + -0.05495781451463699, + 0.033902477473020554, + 0.004360421095043421, + -0.05174735188484192, + 0.02101016417145729, + -0.010599167086184025, + 0.0008786028483882546, + 0.052011195570230484, + 0.02451808750629425, + 0.005563168786466122, + -0.009091878309845924, + 0.005251822993159294, + 0.024739062413573265, + -0.015095172449946404, + -0.029899921268224716, + -0.030463282018899918, + 0.022034548223018646, + 0.016054900363087654, + 0.028017286211252213, + 0.025761203840374947, + -0.0691412091255188, + -0.024968506768345833, + 0.03884432092308998, + -0.01624930463731289, + 0.00969473086297512, + 0.052240096032619476, + 0.020422812551259995, + -0.013170641846954823, + -0.05351390689611435, + 0.007514805067330599, + 0.02153118886053562, + 0.010041954927146435, + -0.0005494235665537417, + 0.01810000091791153, + -0.008343375287950039, + 0.01675676368176937, + -0.046825822442770004, + 0.01611502841114998, + -0.03088763728737831, + -0.03005393035709858, + -0.0602446012198925, + -0.010217798873782158, + 0.04027179628610611, + -0.03513843193650246, + -0.0009432429797016084, + 0.010082898661494255, + 0.02622237056493759, + 0.08148705959320068, + 0.010338962078094482, + 0.01377161219716072, + 0.04365396499633789, + -0.007687159348279238, + 0.0009566892986185849, + 0.02355358935892582, + 0.00848002266138792, + -0.0027277027256786823, + -0.04395453259348869, + 0.011315830983221531, + 0.006879346910864115, + -0.045048587024211884, + -0.025460796430706978, + -0.0007300622528418899, + -0.015258180908858776, + -0.02576850913465023, + 0.00813563447445631, + 0.02027571201324463, + -0.008167090825736523, + 0.005214333534240723, + 0.04913536086678505, + -0.017488056793808937, + -0.012670638971030712, + 0.03665871545672417, + 0.02711496874690056, + -0.00795899610966444, + -0.01642978936433792, + 0.022318465635180473, + 0.02123164013028145, + 0.024422498419880867, + -0.025808481499552727, + 0.020006166771054268, + 0.011280078440904617, + 0.002047022571787238, + 0.0008047627052292228, + -0.05240509659051895, + 0.01593485102057457, + -0.07425016164779663, + 0.052201494574546814, + -0.009605510160326958, + -0.021963929757475853, + -0.0190411526709795, + 0.04949713498353958, + 0.03699600696563721, + 0.06037048250436783, + 0.018932923674583435, + -0.004530806094408035, + -0.029434241354465485, + -0.033696312457323074, + 0.02265429124236107, + -0.02573995664715767, + -0.02267707884311676, + -0.019595857709646225, + -0.04940776526927948, + 0.000565810885746032, + -0.001127969822846353, + -0.019614404067397118, + 0.004190006293356419, + 0.06662862747907639, + -0.054404087364673615, + 0.018282918259501457, + 0.0017323294887319207, + -0.06798847764730453, + 0.07001452147960663, + 0.030519606545567513, + 0.0016102563822641969, + -0.008123570121824741, + -0.009884731844067574, + -0.011846662499010563, + 0.00061447499319911, + 0.029314476996660233, + 0.0043038977310061455, + -0.014286214485764503, + -0.021392732858657837, + 0.0028348946943879128, + -0.022157156839966774, + 0.05099456012248993, + 0.01167890802025795, + -0.043434854596853256, + -0.029131421819329262, + 0.012218094430863857, + -0.050054699182510376, + -0.02951829694211483, + -0.004349334165453911, + -0.02410806342959404, + -0.018104055896401405, + 0.01110165286809206, + 0.05866972729563713, + 0.023681731894612312, + 9.189773118123412e-05, + -0.002651968039572239, + -0.014385170303285122, + -0.027962714433670044, + -0.006138014141470194, + -0.04493079334497452, + 0.016934799030423164, + -0.009552210569381714, + -0.026753326877951622, + 0.018884504213929176, + 0.027518760412931442, + -0.04991566017270088, + -0.028987247496843338, + -0.0019101629732176661, + -0.012330110184848309, + 0.03609172999858856, + -0.028560973703861237, + -0.011877535842359066, + -0.0055547114461660385, + 0.004090405069291592, + 0.01399710588157177, + 0.013119294308125973, + 0.0026930123567581177, + 0.01014015730470419, + 0.03708414360880852, + 0.005639140028506517, + -0.03897632658481598, + 0.019099069759249687, + -0.0024151899851858616, + 0.0015129664679989219, + 0.004934840835630894, + 0.010922225192189217, + 0.04016266018152237, + -0.024623045697808266, + 0.007597811985760927, + 0.001109511125832796, + 0.05966031923890114, + 0.021732591092586517, + -0.03458257392048836, + 0.008652769029140472, + -0.006514186039566994, + -0.009876794181764126, + 0.014688806608319283, + -0.00902634859085083, + 0.04259713739156723, + 0.012174737639725208, + 0.03303300216794014, + -0.005956642795354128, + -0.014154338277876377, + 0.014504519291222095, + 0.00907155591994524, + 0.01954062283039093, + -0.0485953651368618, + 0.023218480870127678, + -0.021720612421631813, + -0.046366143971681595, + 0.009441149421036243, + -0.0030525866895914078, + -0.03929608687758446, + 0.0406564362347126, + 0.03788537532091141, + -0.009519764222204685, + 0.010702481493353844, + 0.04583870992064476, + -0.05173098295927048, + -0.005234890151768923, + 0.0030432934872806072, + -0.0023072215262800455, + -0.03644317016005516, + -0.010785514488816261, + -0.007062140852212906, + -0.024283185601234436, + 0.07948581129312515, + 0.014185568317770958, + -0.02017125114798546, + 0.0488666407763958, + 0.024065587669610977, + -0.03749848157167435, + 0.024340130388736725, + 0.03866923972964287, + 0.036573778837919235, + -0.03138034790754318, + -0.02386518381536007, + -0.0002732929424382746, + 0.05511541664600372, + -0.005302920006215572, + 0.03599197417497635, + -0.03273339569568634, + 0.03986770659685135, + 0.020366648212075233, + -0.022399311885237694, + 0.06285884976387024, + -0.01635788194835186, + 0.02460850588977337, + -0.012013794854283333, + -0.008622754365205765, + -0.030868586152791977, + 0.027461139485239983, + 0.011108548380434513, + 0.046869635581970215, + -0.005983821582049131, + 0.002708275569602847, + 0.021560166031122208, + -0.010777071118354797, + -0.006100787315517664, + 0.04003973677754402, + 0.0017370587447658181, + 0.0036838832311332226, + 0.016509627923369408, + 0.01685505360364914, + 0.016633544117212296, + -0.01709326170384884, + 0.040894776582717896, + 0.0048004696145653725, + 0.01895313151180744, + -0.004064306616783142, + 0.017826922237873077, + 0.005915550980716944, + 0.015597193501889706, + 0.05065639689564705, + 0.006360430736094713, + 0.03826954960823059, + 0.01113208383321762, + -0.05317673832178116, + -0.018665388226509094, + 0.007481672801077366, + 0.03576895222067833, + 0.007877057418227196, + -0.06347373127937317, + 0.006278492975980043, + 0.005107642617076635, + -0.0292484350502491, + 0.03299013525247574, + 0.012787879444658756, + -0.023064354434609413, + 0.03297755494713783, + -0.03321624547243118, + -0.031191915273666382, + 0.02618846856057644, + -0.019156260415911674, + -0.027880551293492317, + 0.011278082616627216, + 0.048786282539367676, + 0.031508494168519974, + -0.019931098446249962, + -0.011282035149633884, + 0.011678701266646385, + -0.054730143398046494, + -0.013535802252590656, + 0.00010917749750660732, + 0.02360648848116398, + -0.04320835322141647, + 0.06987648457288742, + -0.016091052442789078, + -0.024621551856398582, + 0.0469120591878891, + -0.0045349132269620895, + 0.03772326931357384, + 0.008060279302299023, + 0.0174920205026865, + -0.015309127047657967, + 0.0037815135437995195, + -0.02595723234117031, + -0.02122787944972515, + 0.018919195979833603, + 0.024302970618009567, + 0.027704451233148575, + -0.010231632739305496, + 0.028697403147816658, + -0.0197098758071661, + 0.011775733903050423, + -0.03742470219731331, + -0.026147445663809776, + 5.769997005700134e-05, + -0.04315336048603058, + -0.022931139916181564, + 0.015498530119657516, + -0.026670949533581734, + -0.02023281343281269, + -0.0009630142012611032, + 0.034351881593465805, + -0.06265445798635483, + 0.009849835187196732, + 0.025076862424612045, + 0.027414944022893906, + 0.005878087133169174, + 0.012990612536668777, + 0.032777316868305206, + 0.0064331176690757275, + 0.007859688252210617, + 0.031450364738702774, + -0.0011980996932834387, + 0.009055748581886292, + 0.04801534488797188, + -0.03230707719922066, + -0.02995738387107849, + -0.023992108181118965, + -0.012096076272428036, + 0.06047578528523445, + 0.014210788533091545, + 0.030973823741078377, + 0.0005602691089734435, + -0.05725668743252754, + -0.01981094479560852, + -0.0012049730867147446, + -0.01772204041481018, + -0.023201020434498787, + 0.008412825874984264, + 0.01892121694982052, + 0.041055090725421906, + 0.0023437903728336096, + 0.006446680519729853, + 0.01697256788611412, + -0.005856493022292852, + 0.04259438440203667, + 0.0019894337747246027, + 0.01145108975470066, + -0.027555270120501518, + 0.01636156626045704, + 0.04834965988993645, + 0.02338368259370327, + 0.018577061593532562, + -0.05037825182080269, + 0.0431038960814476, + -0.01776328682899475, + -0.03265804424881935, + -0.014167523011565208, + -0.006228754296898842, + -0.009947584010660648, + 0.01280581671744585, + -0.007421654649078846, + -0.008682313375175, + -0.014810994267463684, + 0.010262703523039818, + 0.002010064898058772, + 0.06389372050762177, + -0.01004501711577177, + -0.035695258527994156, + 0.019266627728939056, + -0.07399260997772217, + -0.006148887798190117, + 0.056831542402505875, + 0.011843615211546421, + 0.02813950553536415, + -0.01330943126231432, + 0.007872236892580986, + 0.006299762986600399, + -0.009077276103198528, + -0.028639962896704674, + 0.0011725296499207616, + -0.015775177627801895, + 0.020263398066163063, + -0.006954754237085581, + -0.011286473833024502, + -0.02811576798558235, + 0.0005412458558566868, + 0.017887774854898453, + 0.021091483533382416, + 0.031041154637932777, + 0.013476748019456863, + 0.022158341482281685, + -0.03953620046377182, + 0.008147851563990116, + -0.053719211369752884, + -0.027708331122994423, + 0.0565766915678978, + -0.003657001070678234, + 0.01062194723635912, + -0.00222507631406188, + 0.0020728325471282005, + 0.02197415381669998, + -0.0013970894506201148, + 0.026683731004595757, + -0.04091845080256462, + -0.02359294891357422, + 0.03725995868444443, + -0.07284358888864517, + 0.03966658562421799, + 0.004935326520353556, + 0.03598356992006302, + -0.010916661471128464, + 0.03720402345061302, + 0.023382527753710747, + 0.013138644397258759, + -0.030656112357974052, + 0.06234835833311081, + 0.03203028440475464, + 0.004921585787087679, + -0.0180905070155859, + 0.02657093107700348, + -0.018703889101743698, + 0.006587107665836811, + 0.013709248043596745, + -0.004114201758056879, + -0.02043173834681511, + 0.007535373792052269, + 0.011228334158658981, + 0.012526663951575756, + 0.0131511390209198, + -0.005448139738291502, + -0.029212739318609238, + -0.015187113545835018, + -0.0016928098630160093, + 0.021564798429608345, + 0.01964474469423294, + 0.03564340993762016, + -0.01651030220091343, + 0.022984737530350685, + -0.026698555797338486, + -0.020464805886149406, + -0.05069146677851677 + ], + "start_index": 29107, + "end_index": 29309, + "token_count": 49, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "b3fa8a05-1b09-5277-8199-1dcae165107f", + "_source": { + "text": "\n\n---\n\n# X.9 Literal nulo\n\nToken:\n\n\n\nNone", + "embedding": [ + 0.040278080850839615, + 0.010594516061246395, + -0.011190314777195454, + -0.13898105919361115, + -0.02760082297027111, + 0.031061621382832527, + -0.053739991039037704, + 0.011544646695256233, + -0.05307856202125549, + -0.030332360416650772, + 0.04496936500072479, + -0.02584470994770527, + 0.007606681901961565, + -0.011221013031899929, + -0.048649635165929794, + 0.048502903431653976, + 0.05574498698115349, + -0.013123929500579834, + 0.03482486680150032, + -0.05404704809188843, + -0.04712311550974846, + 0.0030923266895115376, + -0.011999726295471191, + 0.0847269669175148, + -0.00018440643907524645, + 0.04894646257162094, + -0.11110394448041916, + 0.07967273145914078, + 0.038527339696884155, + -0.07439632713794708, + 0.007611519657075405, + -0.02001350373029709, + -0.02143034338951111, + -0.031163237988948822, + 0.014645826071500778, + -0.017140287905931473, + 0.028577091172337532, + 0.026807010173797607, + -0.018968595191836357, + 0.028339803218841553, + 0.020080018788576126, + -0.0038664601743221283, + -0.021633831784129143, + 0.015397008508443832, + 0.04108906164765358, + 0.0020482128020375967, + 0.011768145486712456, + 0.022423449903726578, + 0.08411145210266113, + 0.02137068286538124, + -0.020987091585993767, + -0.03095160983502865, + 0.01595647819340229, + 0.018988147377967834, + 0.0006568516255356371, + 0.007877092808485031, + 0.002662797924131155, + 0.023614536970853806, + 0.015201210044324398, + -0.0007285530446097255, + -0.001424013520590961, + 0.040652573108673096, + -0.011168088763952255, + -0.03766025975346565, + 0.011194134131073952, + 0.08193615078926086, + 0.016003182157874107, + -0.027538787573575974, + -0.02636805735528469, + -0.030627207830548286, + 0.00575271574780345, + 0.04013504460453987, + -0.038927435874938965, + 0.02691560983657837, + 0.027726799249649048, + -0.023919111117720604, + -0.003411589190363884, + -0.056666456162929535, + -0.003734315512701869, + 0.016683395951986313, + -0.004329299554228783, + 0.06456596404314041, + -0.0045270430855453014, + 0.012430739589035511, + 0.015072794631123543, + 0.031278420239686966, + -0.010418618097901344, + 0.005802982486784458, + 0.012236506678164005, + 0.04435864835977554, + -0.033889446407556534, + 0.05179818347096443, + 0.014092647470533848, + -0.02820986695587635, + 0.03289607912302017, + -0.03381919115781784, + -0.01502870861440897, + 0.06053841486573219, + -0.013005198910832405, + -0.008844496682286263, + -0.05203084275126457, + -0.018933778628706932, + -0.025628570467233658, + 0.027508921921253204, + -0.06569502502679825, + 0.04697800800204277, + -0.04210273548960686, + 0.027546275407075882, + -0.03139907866716385, + -0.04374615103006363, + -0.023512817919254303, + -0.0025251093320548534, + 0.08793514221906662, + 0.008685745298862457, + -0.01534401997923851, + 0.0016334168612957, + 0.007559341378509998, + -0.06076829880475998, + 0.023801367729902267, + 0.00036367509164847434, + 0.005217192228883505, + -0.0514959953725338, + -0.00386024359613657, + -0.008610925637185574, + 0.052862439304590225, + 0.019233472645282745, + -0.01967553421854973, + -0.02713209204375744, + -0.002310030395165086, + -0.028198307380080223, + -0.02518332563340664, + 0.018079984933137894, + -0.0314486026763916, + -0.0562836118042469, + 0.009764873422682285, + -0.006049563176929951, + 0.005894957110285759, + -0.007793810218572617, + 0.0273292176425457, + 0.004146067425608635, + -0.05984199419617653, + 0.00860621314495802, + 0.005057447124272585, + 0.0032511709723621607, + 0.01928943581879139, + 0.011287732981145382, + -0.00554109551012516, + -0.0009092302643693984, + 0.02562124654650688, + 0.0031904669012874365, + 0.0024557746946811676, + -0.004743397235870361, + 0.00473501393571496, + -0.02173830196261406, + -0.04907209798693657, + 0.009615376591682434, + -0.01872815378010273, + -0.018411846831440926, + 0.0015259693609550595, + -0.008173752576112747, + -0.02878335490822792, + 0.019774943590164185, + -0.026018958538770676, + -0.04071320220828056, + -0.012091598473489285, + 0.05722131207585335, + 2.8331755856925156e-06, + -0.022752851247787476, + -0.018912112340331078, + -0.006961846258491278, + -0.004766072612255812, + 0.019249754026532173, + -0.004208677913993597, + 0.028185728937387466, + -0.003389497986063361, + 0.038349349051713943, + -0.03413926437497139, + -0.030004914849996567, + -0.03014034777879715, + -0.0027973332908004522, + 0.007932351902127266, + -0.006337880156934261, + -0.024105608463287354, + 0.010963281616568565, + 0.036266252398490906, + 0.0675436407327652, + 0.00023713197151664644, + -0.02873481810092926, + 0.009110360406339169, + 0.006699926685541868, + 0.0031468463130295277, + -0.03596654534339905, + -0.05111315846443176, + 0.0005972458166070282, + -0.0004886536044068635, + -0.02082623541355133, + 0.009234526194632053, + -0.02437598444521427, + 0.0007825892535038292, + -0.015090408734977245, + 0.0025411774404346943, + 0.012122642248868942, + 0.01158965565264225, + -0.003074514213949442, + -0.028466060757637024, + 0.021993685513734818, + 0.01214490458369255, + -0.019885582849383354, + -0.0076734102331101894, + -0.021490462124347687, + -0.03624672070145607, + 0.0036241335328668356, + -0.00617962284013629, + 0.013763045892119408, + -0.007968977093696594, + 0.007609921973198652, + -0.018280670046806335, + 0.03835709020495415, + -0.002249444369226694, + 0.03488391637802124, + 0.03341350704431534, + 0.002527255564928055, + -0.06575854867696762, + 0.008021112531423569, + 0.0795498862862587, + -0.01975536160171032, + 0.01372584793716669, + 0.014977579936385155, + -0.0006184160592965782, + 0.030043352395296097, + 0.008718157187104225, + 0.017431708052754402, + -0.001059798407368362, + -0.006278467830270529, + 0.05523962900042534, + 0.006915105041116476, + 0.0035805951338261366, + 0.005966144613921642, + 0.06497331708669662, + -0.05389026924967766, + -0.03671248257160187, + 0.016420478001236916, + -0.006339342799037695, + 0.01443308126181364, + -0.003273487789556384, + 0.04000209644436836, + 0.007303755264729261, + 0.03309623897075653, + 0.01657707802951336, + -0.01788330264389515, + 0.02520628087222576, + -0.06215886026620865, + -0.011965017765760422, + 0.04925471544265747, + -0.0001269210915779695, + -0.033533770591020584, + 0.024668408557772636, + -0.04682937264442444, + 0.008478788658976555, + 0.0037572376895695925, + 0.026322780176997185, + -0.04461103305220604, + -0.04822729155421257, + 0.02153164893388748, + -0.0033909103367477655, + 0.00481907045468688, + 0.0033052752260118723, + -0.0236664991825819, + -0.035191942006349564, + -0.003671027719974518, + -0.002405778970569372, + 0.02050858363509178, + -0.041718386113643646, + -0.03197687119245529, + -0.013355743139982224, + 0.03323652595281601, + 0.014381790533661842, + -0.12429900467395782, + 0.01411257404834032, + -0.013158495537936687, + 0.05262850970029831, + -0.06031961739063263, + -0.004850543569773436, + -0.04606837034225464, + 0.021681712940335274, + 0.036579012870788574, + 0.03446134179830551, + 0.0008709015673957765, + 0.020984604954719543, + -0.00044623741996474564, + 0.004092282149940729, + -0.02271871268749237, + -0.03140488266944885, + 0.01519687008112669, + -0.029147623106837273, + -0.028065860271453857, + 0.04398152604699135, + 0.024946287274360657, + 0.022294025868177414, + 0.035034503787755966, + 0.035074952989816666, + 0.005719035863876343, + 0.03884674981236458, + -0.011628592386841774, + -6.436371040763333e-05, + -0.02053019031882286, + 0.04161520302295685, + 0.00546320341527462, + -0.005688780918717384, + 2.623678301461041e-05, + 0.018723443150520325, + -0.011119048111140728, + 0.008119887672364712, + -0.02565641514956951, + -0.040108710527420044, + 0.012104845605790615, + -0.10530466586351395, + 0.013689310289919376, + -0.0018717978382483125, + 0.037676479667425156, + -0.05032864585518837, + -0.019376207143068314, + 0.0006699239020235837, + 0.005238146521151066, + 0.02799661085009575, + 0.01041605044156313, + 0.03220304846763611, + 0.04445100203156471, + 0.051944881677627563, + 0.05932653695344925, + 0.0007141029345802963, + 0.03172653168439865, + 0.029590245336294174, + 0.006022778805345297, + -0.005583231337368488, + 0.018462883308529854, + 0.0068802423775196075, + 0.05209304019808769, + -0.022141635417938232, + 0.02052491530776024, + 0.03235006704926491, + 0.034536540508270264, + -0.03052412159740925, + 0.04359125718474388, + -0.03686123341321945, + -0.03587361425161362, + 0.04101022332906723, + 0.044920675456523895, + 0.028350170701742172, + 0.007906178012490273, + 0.035976942628622055, + -0.011228120885789394, + -0.00726179638877511, + 0.0025514638982713223, + 0.0031357333064079285, + -0.02296864613890648, + -0.006028792355209589, + 0.029724426567554474, + -0.014399616979062557, + -0.01699107326567173, + -0.03991909697651863, + -0.035319771617650986, + 0.034976162016391754, + 0.007908214814960957, + -0.022702127695083618, + -0.024894043803215027, + -0.023037219420075417, + 0.030809899792075157, + 0.03723228722810745, + -0.007416949607431889, + -0.07113169878721237, + 0.052106715738773346, + -0.027022093534469604, + 0.040396835654973984, + 0.08314163982868195, + 0.0999801978468895, + 0.04646768420934677, + -0.005979754030704498, + -0.0022764336317777634, + 0.06619170308113098, + 0.009685499593615532, + 0.04582870751619339, + -0.0009707942372187972, + -0.01594897173345089, + -0.07375504076480865, + -0.012183007784187794, + 0.01699894107878208, + -0.010352025739848614, + -0.018841324374079704, + -0.03861105442047119, + 0.025003565475344658, + 0.00388974673114717, + -0.014871095307171345, + -0.015491374768316746, + 0.0270825382322073, + 0.019842054694890976, + -0.11211202293634415, + 0.014765746891498566, + 0.029825443401932716, + 0.014374311082065105, + -0.01919906586408615, + 0.0134515892714262, + 0.009862353093922138, + 0.016446689143776894, + 0.021056922152638435, + 0.032171864062547684, + -0.008801629766821861, + -0.0069923703558743, + 0.007482261396944523, + 0.012265205383300781, + 0.0004634395882021636, + 0.007855373434722424, + -0.018743127584457397, + -0.012437701225280762, + 0.008465341292321682, + -0.02840222604572773, + 0.09058748185634613, + -0.04544294252991676, + 0.008294238708913326, + 0.0038975272327661514, + -0.009272484108805656, + 0.031217321753501892, + -0.035189684480428696, + 0.0006550930556841195, + 0.022460782900452614, + -0.024006808176636696, + -0.0607345812022686, + -0.06526829302310944, + 0.013115569949150085, + 0.09017597138881683, + 0.02528262883424759, + -0.03634946793317795, + -0.08926527947187424, + 0.03456611558794975, + -0.06402230262756348, + -0.011477102525532246, + 0.06185624748468399, + 0.009251427836716175, + 0.03294636681675911, + -0.03192802518606186, + 0.04440728947520256, + 0.012197178788483143, + -0.049811951816082, + 0.0009631447028368711, + -0.06607537716627121, + -0.018276600167155266, + -0.04951802268624306, + -0.016819454729557037, + 0.051550496369600296, + -0.006380648352205753, + 0.008253619074821472, + -0.036959387362003326, + -0.05016503855586052, + 0.031327713280916214, + -0.011586642824113369, + -0.025007139891386032, + 0.027828579768538475, + 0.018671119585633278, + 0.02629704587161541, + -0.013837424106895924, + -0.03392484039068222, + 0.03622656315565109, + -0.0032703226897865534, + -0.046419575810432434, + -0.006512154825031757, + 0.024891100823879242, + 0.04983602091670036, + -0.009218852035701275, + -0.002972262678667903, + 0.01492469571530819, + -0.057940203696489334, + 0.0016339798457920551, + 0.007687862496823072, + 0.03252773359417915, + 0.013131420128047466, + -0.0016914309235289693, + -0.03854938596487045, + -0.002737009199336171, + -0.0400957390666008, + 0.015575258992612362, + -0.027280647307634354, + -0.018575720489025116, + 0.0485515221953392, + -0.07082018256187439, + 0.009754226543009281, + -0.027088874951004982, + -0.013900178484618664, + -0.032725341618061066, + -0.05360373854637146, + 0.05515940114855766, + 0.010645567439496517, + 0.015158086083829403, + 0.014398840256035328, + -0.0683007687330246, + -0.022693021222949028, + 0.007451116573065519, + 0.009026900865137577, + -0.015016213059425354, + -0.08514124900102615, + 0.03496076539158821, + 0.012145155109465122, + 0.004065689165145159, + 0.0005544808227568865, + 0.014823835343122482, + -0.022596685215830803, + 0.00974593311548233, + -8.441520185442641e-05, + -0.004058379679918289, + 0.039609234780073166, + 0.05852825567126274, + -0.02007380686700344, + -0.008310162462294102, + -0.03689442574977875, + 0.08327586203813553, + -0.05156417936086655, + -0.022426025941967964, + 0.027074502781033516, + 0.03196966275572777, + -0.04119478911161423, + 0.11670178920030594, + -0.014920146204531193, + 0.00012233367306180298, + 0.021881835535168648, + 0.037733763456344604, + 0.03156321495771408, + 0.0831139013171196, + 0.00622852286323905, + -0.02239595353603363, + 0.004668469075113535, + 0.004450772423297167, + 0.010277164168655872, + -0.022948704659938812, + -0.011719431728124619, + 0.019403381273150444, + 0.022959334775805473, + 0.014199403114616871, + 0.016403038054704666, + 0.0022247089073061943, + 0.008202004246413708, + -0.03617081791162491, + 0.0012968395603820682, + -0.0007347387145273387, + -0.032342929393053055, + -0.0005083902506157756, + 0.014204063452780247, + -0.00046241102972999215, + -0.013023313134908676, + 0.011517766863107681, + 0.011429298669099808, + 0.02765733189880848, + 0.021002676337957382, + 0.050169605761766434, + 0.026592770591378212, + -0.03859510272741318, + 0.02990887127816677, + -0.0010162687394768, + -0.005188243463635445, + 0.015669824555516243, + 0.0012115587014704943, + -0.04335464537143707, + -0.001236736890859902, + -0.011870201677083969, + 0.0007558329962193966, + 0.006004849448800087, + -0.020284287631511688, + -0.010656145401299, + 0.04191747307777405, + 0.033884450793266296, + 0.05120395869016647, + -0.07286076992750168, + 0.01628062315285206, + 0.0033191265538334846, + -0.03296837583184242, + 0.014022350311279297, + 0.010503912344574928, + -0.07056042551994324, + -0.05521613359451294, + 0.023860540241003036, + -0.015748677775263786, + -0.012114235199987888, + 0.045108504593372345, + -0.011318380013108253, + -0.014928597956895828, + 0.009604806080460548, + 0.015700621530413628, + 0.013125463388860226, + -0.05221889913082123, + 0.003776132594794035, + 0.061618536710739136, + 0.014975118450820446, + -0.054880209267139435, + -0.02477381005883217, + -0.021814145147800446, + 0.008175116032361984, + 0.03860703110694885, + -0.019037919119000435, + -0.08581604063510895, + -0.0075135803781449795, + 0.024684298783540726, + 0.041421834379434586, + 0.017048057168722153, + 0.03620542585849762, + 0.00912338588386774, + -0.005725511349737644, + -0.06116434559226036, + -0.0004307189374230802, + -0.00784316286444664, + -0.04213560000061989, + 0.0175030380487442, + 0.0015231514116749167, + -0.03207803890109062, + 0.0023418907076120377, + -0.034152764827013016, + 0.004966503009200096, + -0.02129780687391758, + -0.07536207139492035, + 0.0018632066203281283, + -0.004928736016154289, + 0.003723881207406521, + -0.07940027862787247, + -0.00650476710870862, + -0.01842714659869671, + 0.04839952662587166, + 0.06600343436002731, + 0.05931806191802025, + 0.029743539169430733, + 0.02195974439382553, + -0.01723027229309082, + -0.05922083929181099, + -0.006122181657701731, + -0.029029948636889458, + -0.02209409512579441, + -0.006109712645411491, + 0.008567149750888348, + 0.029268302023410797, + -0.05551956221461296, + 0.013723552227020264, + -0.007173014804720879, + -8.559085108572617e-05, + -0.004079075995832682, + -0.04533211886882782, + -0.016502879559993744, + 0.02011946402490139, + 0.010000362992286682, + 0.003964520525187254, + 0.01698087528347969, + -0.017558280378580093, + 0.017391830682754517, + 0.004220159258693457, + -0.013392047956585884, + 0.014254369772970676, + 0.007910547778010368, + -0.019228100776672363, + 0.012049955315887928, + -0.030212173238396645, + 0.021871719509363174, + -0.024928327649831772, + 0.020824337378144264, + 0.03075449727475643, + -0.03961038589477539, + -0.041766054928302765, + -0.06742294877767563, + 0.008098242804408073, + -0.0031102029606699944, + -0.029015444219112396, + -0.018602438271045685, + 0.04124460369348526, + 0.05356243625283241, + 0.06291652470827103, + -0.022744309157133102, + 0.011055021546781063, + -0.05633605644106865, + -0.05133584514260292, + -0.011723939329385757, + -0.06154765188694, + 0.0011940618278458714, + -0.045818787068128586, + -0.03314255550503731, + -0.019834164530038834, + -0.03520333021879196, + -0.021518563851714134, + 0.02278415858745575, + 0.024090826511383057, + -0.038523364812135696, + 0.020923901349306107, + -0.018446341156959534, + -0.04372015222907066, + 0.03544127196073532, + 0.04631654545664787, + 0.028583018109202385, + -0.031418487429618835, + -0.021190404891967773, + 0.00374954123981297, + -0.033280130475759506, + 0.02416515164077282, + 0.014234000816941261, + -0.0011621520388871431, + -0.025157790631055832, + -0.034223295748233795, + 0.030788015574216843, + 0.010825494304299355, + -0.004220962058752775, + -0.007147904019802809, + -0.0379946194589138, + 0.0186246819794178, + -0.00550314225256443, + -0.052061498165130615, + 0.03145113214850426, + -0.04609410837292671, + -0.04719621688127518, + 0.05809427797794342, + -0.03339945524930954, + -0.016868414357304573, + -0.038716915994882584, + 0.007605429273098707, + -0.027393769472837448, + -0.019241105765104294, + -0.009425846859812737, + 0.0056098452769219875, + 0.007952477782964706, + -0.012967916205525398, + -0.0003232436429243535, + 0.016232432797551155, + 0.014820928685367107, + -0.02266618236899376, + -0.0337957888841629, + -0.012170388363301754, + 0.023378552868962288, + 0.037147775292396545, + -0.009974785149097443, + -0.013713950291275978, + -0.011046250350773335, + 0.008230950683355331, + 0.004612948279827833, + 0.008746488951146603, + 0.028801878914237022, + 0.006081233732402325, + 0.03443707153201103, + -0.020196150988340378, + -0.008625770919024944, + -0.006267518736422062, + 0.00923223327845335, + -0.002225537085905671, + -0.04690706729888916, + -0.027405988425016403, + 0.06854978203773499, + -0.033278658986091614, + -0.0038025325629860163, + 0.010719302110373974, + 0.04678582400083542, + 0.04989394545555115, + -0.03659320995211601, + -0.0039665368385612965, + 0.016274752095341682, + -0.005795955657958984, + -0.025075696408748627, + -0.015522515401244164, + 0.01878824457526207, + 0.018248029053211212, + 0.038313400000333786, + 0.017328951507806778, + 0.0070852432399988174, + 0.022934645414352417, + 0.025105470791459084, + 0.016592275351285934, + 0.00020511991169769317, + -0.0072882408276200294, + -0.03331296518445015, + -0.04867560788989067, + 0.00586015684530139, + 0.005899511743336916, + 0.0011102543212473392, + 0.033896517008543015, + 0.05252828076481819, + -0.00573819549754262, + -0.011519084684550762, + 0.04471999779343605, + -0.019611941650509834, + -0.008699271827936172, + 0.005635703448206186, + 0.023034686222672462, + 0.003168500494211912, + 0.01624760404229164, + -0.007969607599079609, + -0.07380688190460205, + 0.07647473365068436, + -0.0076102907769382, + -0.011051486246287823, + 0.03593762218952179, + 0.0015973459230735898, + -0.022477535530924797, + 0.049052439630031586, + 0.018737750127911568, + 0.009281729348003864, + -0.002679639495909214, + 0.00903133675456047, + -0.03800155222415924, + 0.024014128372073174, + -0.020604819059371948, + 0.013607155531644821, + -0.01543629914522171, + -0.004702080972492695, + -0.016049770638346672, + -0.004792479798197746, + 0.07928226888179779, + 0.009505282156169415, + -0.028147360309958458, + 0.021830853074789047, + -0.011444848030805588, + 0.014024757780134678, + 0.026652123779058456, + 0.05469450727105141, + 0.03896878659725189, + 0.02797516994178295, + -0.005029059015214443, + 0.007036881987005472, + -0.026207000017166138, + -0.028821177780628204, + 0.04123690351843834, + 0.033676180988550186, + -0.028917359188199043, + 0.011339103803038597, + -0.02682632952928543, + 0.005201306194067001, + -0.03266206011176109, + 0.011447369121015072, + 0.00771934911608696, + 0.017768530175089836, + -0.04930812865495682, + 0.0025749763008207083, + 0.026060447096824646, + -0.05313415452837944, + 0.05009302496910095, + -0.007298366166651249, + 0.046212051063776016, + 0.03077954798936844, + -0.0372721403837204, + -0.030162058770656586, + -0.014131887815892696, + 0.046617742627859116, + 0.03905237466096878, + -0.028609301894903183, + 0.011480830609798431, + 0.02211802452802658, + -0.006197094451636076, + 0.040413595736026764, + -0.012489927932620049, + -0.008437871001660824, + -0.007998543791472912, + 0.005038321018218994, + -0.0053315544500947, + 0.016049347817897797, + -0.037942349910736084, + 0.025378866121172905, + -0.05886702984571457, + 0.00802590698003769, + 0.026027867570519447, + -0.007328622043132782, + -0.019902175292372704, + 0.04225374758243561, + -0.05745813995599747, + -0.0053961924277246, + 0.0007643022108823061, + 0.023646263405680656, + -0.015496158972382545, + 0.0405774861574173, + -0.015183383598923683, + 0.0047093103639781475, + 0.009341306053102016, + 0.008298295550048351, + 0.04344940930604935, + -0.010509112849831581, + -0.024691423401236534, + -0.016812365502119064, + -0.03274965658783913, + 0.002951736096292734, + 0.007839624769985676, + 0.006214090157300234, + -0.017390761524438858, + 0.018905706703662872, + 0.03380541503429413, + -0.011487767100334167, + 0.00942955445498228, + -0.006593827158212662, + -0.04284476116299629, + -0.005975147243589163, + -0.005398026201874018, + -0.045356523245573044, + -0.0024747143033891916, + 0.03345327451825142, + 0.021641654893755913, + -0.010186615400016308, + -0.0034077076707035303, + 0.025661401450634003, + -0.06460089981555939, + -0.045641057193279266, + -0.003219439648091793, + -0.028331106528639793, + 0.005984368268400431, + 0.011082827113568783, + 0.018520591780543327, + 0.008377566002309322, + 0.004993016365915537, + -0.039549555629491806, + -0.03598378971219063, + 0.014244191348552704, + 0.022702744230628014, + -0.024283580482006073, + -0.04171789437532425, + -0.021466074511408806, + -0.03131571784615517, + 0.028582343831658363, + -0.0093969302251935, + 0.01791759580373764, + 0.010374941863119602, + -0.029102684929966927, + -0.023996222764253616, + 0.004350637085735798, + -0.025691792368888855, + -0.019111961126327515, + -0.014078191481530666, + 0.04032712057232857, + 0.03465951979160309, + -0.025537194684147835, + -0.014331713318824768, + -0.043903905898332596, + 0.020430078729987144, + -0.005099256057292223, + 0.00975153036415577, + -0.004756623413413763, + -0.006872881203889847, + 0.01384678017348051, + 0.07507029920816422, + 0.02979547344148159, + 0.01815539412200451, + -0.03153611719608307, + 0.040749914944171906, + -1.4708185517520178e-05, + -0.03248443827033043, + 0.008026860654354095, + 0.0014940019464120269, + -0.041588351130485535, + 0.021099714562296867, + 0.03017493523657322, + 0.03241429850459099, + -0.00844480749219656, + 0.04334147647023201, + -0.05645136535167694, + 0.02376422844827175, + -0.017016427591443062, + -0.0020439191721379757, + -0.03489828482270241, + -0.01730678230524063, + -0.035991426557302475, + 0.008286562748253345, + -0.01615864224731922, + -0.023081902414560318, + -0.006001142784953117, + 0.008790940046310425, + 0.0036368740256875753, + -0.015323283150792122, + -0.012894255109131336, + 0.0014167657354846597, + -0.0020805683452636003, + 0.040609221905469894, + 0.01968655176460743, + 0.0012173403520137072, + 0.00715006934478879, + 0.059097882360219955, + 0.009547162801027298, + 0.024140292778611183, + 0.004476916044950485, + 0.027685176581144333, + 0.01354655809700489, + 0.02438545413315296, + 0.009556577540934086, + -0.035385508090257645, + -0.007941732183098793, + -0.013540057465434074, + -0.010094493627548218, + -0.011892483569681644, + -0.02882591262459755, + 0.021653883159160614, + 0.006043936125934124, + -0.010850613936781883, + 0.007312650792300701, + -0.025609366595745087, + 0.024065285921096802, + 0.02208149991929531, + -0.0466143861413002, + 0.007403697818517685, + 0.020304203033447266, + -0.010191097855567932, + -0.00869639404118061, + 0.024005906656384468, + 0.037052564322948456, + 0.03816315904259682, + 0.030067626386880875, + 0.005603844299912453, + 0.009968485683202744, + -0.0033041525166481733, + 0.0069510675966739655, + 0.017954690381884575, + -0.025699231773614883, + 0.0028576101176440716, + -0.0214863158762455, + -0.014875581488013268, + -0.028003303334116936, + 0.017682667821645737, + 0.008001036010682583, + 0.024348847568035126, + 0.01654837094247341, + 0.033740345388650894, + -0.0024588597007095814, + -0.023657726123929024, + -0.026178808882832527, + 0.004706337116658688, + 0.040090348571538925, + 0.01687534898519516, + -0.03864087909460068, + -0.00032522715628147125, + -0.026997601613402367, + -0.001045115408487618, + -0.02200094424188137 + ], + "start_index": 29309, + "end_index": 29356, + "token_count": 12, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "58858ea7-5776-5403-9b17-52a31bfaa0ae", + "_source": { + "text": "\n\n---\n\n# X.10 Operador de desreferenciación\n\nAVAP permite acceder al valor de una variable utilizando el prefijo `$`.\n\nEjemplo:\n\n\n\naddVar(copia, $original)", + "embedding": [ + -0.001016326597891748, + 0.0017984393052756786, + -0.011685687117278576, + -0.12914039194583893, + 0.023158883675932884, + -0.0011558623518794775, + -0.0467650331556797, + -0.013967306353151798, + -0.010848112404346466, + -0.01123898383229971, + -0.02322465367615223, + -0.04883765056729317, + -0.016749797388911247, + -0.009993334300816059, + -0.03525710850954056, + 0.015297704376280308, + 0.046392664313316345, + 0.0010425788350403309, + -0.025775952264666557, + -0.02493809349834919, + -0.009059174917638302, + -0.004269020166248083, + -0.0469508171081543, + 0.027674594894051552, + -0.020240774378180504, + 0.0081253657117486, + -0.0375027172267437, + 0.0469563789665699, + -0.012203667312860489, + -0.05774269253015518, + -0.04069821164011955, + -0.011191737838089466, + -0.0723777711391449, + 0.02835780195891857, + -0.04402575641870499, + -0.015056225471198559, + 0.003751889569684863, + -0.04405856877565384, + -0.009526684880256653, + 0.005403461400419474, + 0.019065380096435547, + 0.009997892193496227, + 0.016735956072807312, + 0.0640542283654213, + 0.010430406779050827, + -0.031105024740099907, + 0.0049367365427315235, + -0.012654337100684643, + 0.04458743706345558, + -0.008552849292755127, + -0.03358553349971771, + -0.012825668789446354, + 0.0296512208878994, + -0.02796119451522827, + -0.028329603374004364, + -0.010020180605351925, + 0.02116578072309494, + 0.03669218719005585, + 0.01588044874370098, + 0.000578617095015943, + -0.006736604031175375, + -0.00010143742110813037, + 0.00037201092345640063, + -0.0074941362254321575, + -0.004052524920552969, + 0.007778379134833813, + -0.032616760581731796, + 0.0460720993578434, + -0.09827949106693268, + 0.001713635167106986, + -0.012755938805639744, + -0.06218770146369934, + 0.008976828306913376, + 0.026796255260705948, + 0.02770909294486046, + 0.004528860095888376, + 0.011680020950734615, + -0.04568959400057793, + -0.013208436779677868, + 0.039838142693042755, + 0.010679993778467178, + 0.0538819245994091, + 0.06103174760937691, + -0.0043876455165445805, + -0.007021818310022354, + 0.055371493101119995, + 0.007466289680451155, + 0.025167018175125122, + -0.02174314111471176, + -0.0007314961403608322, + 0.011316977441310883, + 0.013727037236094475, + -0.004316186998039484, + 0.02594306692481041, + 0.05708947032690048, + -0.03681037575006485, + -0.031091464683413506, + 0.04762955754995346, + -0.008701669983565807, + 0.017491064965724945, + 0.024658432230353355, + -0.012073282152414322, + -0.0025039990432560444, + 0.054601844400167465, + -0.011539299041032791, + 0.041222959756851196, + -0.06207858398556709, + 0.020692918449640274, + 0.00994773581624031, + -0.05461880937218666, + -0.03445196524262428, + 0.02223408780992031, + 0.053664762526750565, + 0.045999735593795776, + -0.02594744972884655, + 0.04244160279631615, + 0.01096395868808031, + -0.014014370739459991, + 0.045060791075229645, + 0.01206879410892725, + -0.014733100309967995, + 0.024989694356918335, + 0.007070562802255154, + 0.000636258686427027, + 0.022790107876062393, + -0.020687367767095566, + -0.03233582153916359, + -0.003513317322358489, + -0.004808937199413776, + -0.01255976315587759, + -0.008647246286273003, + 0.013125131838023663, + -0.03853519633412361, + 0.011465510353446007, + 0.00995524600148201, + 0.019368983805179596, + 0.04098391905426979, + -0.005753029603511095, + 0.07812030613422394, + -0.019711442291736603, + 0.007736948784440756, + -0.027797400951385498, + -0.028956884518265724, + -0.020078569650650024, + 0.04631119966506958, + 0.05489598214626312, + 0.004115911666303873, + 0.022787228226661682, + -0.021978620439767838, + 0.008297205902636051, + 0.02388792857527733, + -0.006461810320615768, + -0.01982066221535206, + -0.007325331214815378, + -0.037081941962242126, + 0.04286888614296913, + -0.0009207644616253674, + -0.007003536447882652, + 0.024336015805602074, + 0.01682913675904274, + 0.03410159796476364, + 0.019345024600625038, + -0.016388094052672386, + -0.043085355311632156, + -0.02676411159336567, + 0.013272551819682121, + -0.010679212398827076, + -0.028842927888035774, + 0.00038726479397155344, + 0.005262075923383236, + -0.016671571880578995, + 0.022097527980804443, + 0.004811852239072323, + -0.001428757095709443, + 0.006299367640167475, + -0.005670143291354179, + -0.044729605317115784, + -0.02027091570198536, + -0.01548215001821518, + 0.00894535519182682, + 0.013908850029110909, + -0.008815377950668335, + 0.025229018181562424, + 0.025537019595503807, + 0.04503520205616951, + 0.05348225682973862, + -0.008811716921627522, + -0.016281163319945335, + -0.02270764298737049, + -0.01477847620844841, + -0.019088642671704292, + -0.01435819361358881, + 0.04205499216914177, + -0.031093256548047066, + -0.032669685781002045, + -0.03414367884397507, + -0.019267912954092026, + -0.047525450587272644, + 0.007873124442994595, + 0.005449199117720127, + 0.019547104835510254, + 0.03707828372716904, + 0.016848983243107796, + 0.004217651207000017, + -0.04239681735634804, + -0.021251080557703972, + 0.026793470606207848, + 0.004774294327944517, + 0.0012793795904144645, + 0.010947085916996002, + -0.023679906502366066, + 0.036031316965818405, + 0.003490459406748414, + -0.03657270967960358, + 0.010163137689232826, + -0.013476314023137093, + -0.03077537566423416, + 0.02679942362010479, + -0.01066136546432972, + 0.0077875652350485325, + 0.017585113644599915, + 0.02709157019853592, + -0.04355994984507561, + -0.007686079479753971, + 0.07225561141967773, + -0.0032784638460725546, + 0.014811094850301743, + 0.014290967024862766, + -0.0220464039593935, + -0.02259763516485691, + -0.0002900162653531879, + -0.051077548414468765, + -0.02037426456809044, + -0.008117880672216415, + 0.023764677345752716, + 0.03847840055823326, + 0.00250361580401659, + -0.05256025120615959, + 0.06286048144102097, + 0.038360048085451126, + -0.0017545386217534542, + -0.03961370885372162, + 0.02317553199827671, + 0.018045131117105484, + 0.007216076832264662, + -0.000990181346423924, + -0.0022689795587211847, + 0.01871871016919613, + -0.035962313413619995, + -0.04417891427874565, + 0.056306470185518265, + 0.01942063681781292, + -0.03559420257806778, + 0.0002845321723725647, + -0.0003918332513421774, + -0.02844903990626335, + 0.005427522584795952, + 0.02733144722878933, + 0.026067903265357018, + 0.01254517026245594, + 0.029319215565919876, + -0.040910206735134125, + -0.011793360114097595, + 0.007042646408081055, + 0.03336756303906441, + 0.0002664934436324984, + -0.016713082790374756, + 0.017925294116139412, + -0.004717342555522919, + -0.020151600241661072, + -0.006519457325339317, + 0.018409742042422295, + -0.011104395613074303, + -0.008856646716594696, + 0.016537785530090332, + 0.010055146180093288, + -0.011845755390822887, + -0.09578581154346466, + 0.04182819277048111, + -0.0030584416817873716, + 0.002827897435054183, + -0.0007428397657349706, + 0.007114460226148367, + 0.006074775941669941, + 0.0015025112079456449, + 0.026283886283636093, + 0.05527555197477341, + -0.05271752178668976, + 0.042259033769369125, + 0.014513898640871048, + -0.000961889571044594, + 0.03643787279725075, + -0.019397033378481865, + -0.028593266382813454, + -0.018198683857917786, + -0.023262349888682365, + 0.0333133339881897, + 0.02184996008872986, + 0.01890324056148529, + -0.014905056916177273, + 0.010227161459624767, + -0.04653773084282875, + 0.014971772208809853, + -0.018312979489564896, + 0.02529856003820896, + -0.021471476182341576, + 0.1219407320022583, + -0.0002953055955003947, + 0.01896180398762226, + 0.026401350274682045, + 0.07074782252311707, + 0.009737121872603893, + -0.025313725695014, + 0.023549217730760574, + -0.025819620117545128, + 0.027303161099553108, + -0.03966080769896507, + 0.020014608278870583, + 0.035797201097011566, + -0.04725078120827675, + 0.020155277103185654, + -0.06011608988046646, + -0.025670431554317474, + -0.07743512839078903, + 0.03509362041950226, + -0.03470820188522339, + 0.07251564413309097, + 0.05098161846399307, + 0.01463388092815876, + -0.01240456011146307, + -0.0004229088663123548, + 0.011125242337584496, + 0.030777307227253914, + 0.0003516303841024637, + 0.0054754046723246574, + -0.008378664031624794, + 0.05260602384805679, + -0.017212549224495888, + 0.0402371846139431, + -0.02531045489013195, + 0.015271303243935108, + 0.059287965297698975, + -0.04635918140411377, + -0.014146865345537663, + -0.0038527839351445436, + -0.03293156623840332, + 0.040483877062797546, + 0.059565603733062744, + -0.002278451342135668, + 0.027414025738835335, + -0.02540874108672142, + -0.009556779637932777, + 0.006784688215702772, + -0.0004635555378627032, + -0.035299189388751984, + -0.03824440762400627, + 0.021788740530610085, + 0.050906579941511154, + 0.004786766599863768, + -0.031123284250497818, + -0.016983598470687866, + 0.014872518368065357, + 0.010027175769209862, + 0.04379543662071228, + -0.009590218774974346, + 0.014867747202515602, + -0.03776503726840019, + -0.020741695538163185, + 0.07831643521785736, + -0.04671299830079079, + -0.08725050091743469, + 0.005020423326641321, + 0.011305205523967743, + 0.01789369247853756, + 0.054823461920022964, + 0.015594257973134518, + 0.013106741942465305, + -0.03184061497449875, + -0.022215470671653748, + 0.09035565704107285, + 0.05468365550041199, + -0.01657722517848015, + -0.005866325926035643, + 0.002151796594262123, + -0.04430663585662842, + -0.007496952544897795, + -0.020467163994908333, + -0.06731639057397842, + -0.048466190695762634, + -0.014287857338786125, + 0.06410467624664307, + -0.008435998111963272, + -0.008169842883944511, + -0.036501962691545486, + 0.01714256778359413, + 0.03237355500459671, + -0.0901961475610733, + -0.0025555617175996304, + -0.0009898414136841893, + 0.00028487283270806074, + 0.015206718817353249, + 0.04730638489127159, + -0.06684508174657822, + 0.05761023238301277, + 0.01923278160393238, + 0.011858079582452774, + 0.0018980996683239937, + -0.04169217869639397, + 0.03126150742173195, + -0.017951827496290207, + 0.007656255271285772, + 0.03786623850464821, + -0.03043270856142044, + 0.009392514824867249, + -0.01893223449587822, + -0.038180455565452576, + 0.01139137800782919, + -0.04107790067791939, + -0.020266469568014145, + 0.014688913710415363, + -0.046824272722005844, + 0.05416102707386017, + -0.06315092742443085, + 0.03929322212934494, + 0.0019034147262573242, + 0.019775498658418655, + -0.04405935853719711, + -0.03589105233550072, + 0.021118400618433952, + 0.07505612820386887, + 0.013390288688242435, + 0.03089829720556736, + 0.016916442662477493, + 0.015321997925639153, + -0.027270134538412094, + 0.01396456640213728, + 0.05572634935379028, + 0.04104987531900406, + 0.02774961106479168, + 0.002683872589841485, + 0.041961491107940674, + -0.00691434508189559, + -0.021429164335131645, + 0.0011483904672786593, + -0.04835273697972298, + 0.014571002684533596, + -0.01882530376315117, + 0.03505082428455353, + 0.01776278018951416, + 0.005952767562121153, + -0.020685425028204918, + -0.05326276272535324, + 0.017715319991111755, + 0.03902681916952133, + -0.01519381906837225, + -0.03145711496472359, + -0.016977759078145027, + -0.012342758476734161, + 0.01570780761539936, + 0.011087446473538876, + 0.0032944660633802414, + 0.05788861960172653, + -0.003915742039680481, + 0.010317985899746418, + 0.02265286259353161, + -0.010952302254736423, + 0.020204167813062668, + -0.020733503624796867, + 0.07003334909677505, + -0.008869713172316551, + 0.006300174165517092, + 0.023458469659090042, + -0.0013719608541578054, + -0.021695947274565697, + -0.012037502601742744, + -0.01396341621875763, + -0.031862739473581314, + 0.03640563786029816, + -0.021223941817879677, + -0.040161989629268646, + -0.0246356762945652, + -0.02020474337041378, + -0.04980537295341492, + -0.02655240334570408, + 0.07108547538518906, + 0.005947386845946312, + 0.018934600055217743, + 0.0030468273907899857, + -0.05029061436653137, + -0.03106064163148403, + -0.05095319449901581, + 0.015546035021543503, + 0.0070735798217356205, + -0.025485141202807426, + 0.014504431746900082, + -0.004038766957819462, + 0.03190850466489792, + -0.027847008779644966, + -0.06829536706209183, + 0.06617289036512375, + -0.021562855690717697, + -0.010454852133989334, + 0.011597336269915104, + 0.009294281713664532, + -0.018754947930574417, + -0.017226360738277435, + 0.01795537956058979, + -0.027935314923524857, + 0.04273942485451698, + 0.04884486272931099, + -0.01749192178249359, + -0.00834608543664217, + 0.05665099248290062, + 0.023057254031300545, + -0.03690708428621292, + -0.04164053127169609, + 0.04392631724476814, + -0.005394021049141884, + -0.0008311447454616427, + 0.0050766500644385815, + -0.02275710739195347, + -0.0012942426837980747, + 0.05082295462489128, + 0.0001769891387084499, + 0.006270167417824268, + 0.0258466899394989, + 0.02638872340321541, + -0.009807457216084003, + 0.02690742537379265, + 0.026900315657258034, + -0.043104298412799835, + 0.01993606612086296, + 0.009607922285795212, + -0.013239700347185135, + 0.020478595048189163, + -0.009561460465192795, + -0.03269006311893463, + -0.001057750079780817, + 0.01578943245112896, + 0.011489764787256718, + -0.037014465779066086, + 0.008514161221683025, + 0.004497017245739698, + -0.005316514987498522, + -0.0091454042121768, + -0.010220504365861416, + -0.022153401747345924, + 0.08161845058202744, + 0.0029379944317042828, + 0.045391328632831573, + -0.024137990549206734, + 0.009457108564674854, + 0.054264411330223083, + 0.040228892117738724, + 0.04332295060157776, + -0.04084067791700363, + 0.020079519599676132, + 0.007650339510291815, + 5.374101965571754e-05, + -0.029986824840307236, + 0.020574083551764488, + 0.03539048135280609, + 0.038147758692502975, + 0.02925807796418667, + -0.02935485541820526, + 0.013988228514790535, + -0.021590331569314003, + 0.03229587525129318, + 0.017956377938389778, + 0.00651142094284296, + 0.028836026787757874, + 0.002712614368647337, + -0.03280261531472206, + 0.04496471956372261, + -0.030444258823990822, + -0.04326513409614563, + -0.0020266762003302574, + 0.039864979684352875, + -0.026938537135720253, + 0.007124773226678371, + 0.027842391282320023, + -0.011523609980940819, + 0.010039914399385452, + 0.032954487949609756, + 0.03098420798778534, + 0.06376852095127106, + -0.029008040204644203, + 0.0226853359490633, + -0.016442714259028435, + -0.013687662780284882, + -0.07602506130933762, + -0.02929820492863655, + -0.0027744038961827755, + 0.00012571000843308866, + 0.03470528870820999, + 0.026260066777467728, + -0.011003149673342705, + -0.012426496483385563, + 0.030982473865151405, + 0.00034414351102896035, + -0.01779993809759617, + -0.003853463102132082, + -0.05574985593557358, + 0.03377174213528633, + -0.057741809636354446, + -0.012046782299876213, + -0.04166111722588539, + -0.030979210510849953, + -0.02759423851966858, + -0.029590154066681862, + -0.03589005023241043, + 0.011051611043512821, + -0.010674837976694107, + 0.06232750788331032, + 0.07913213223218918, + -0.017515284940600395, + 0.007680206093937159, + -0.004585659131407738, + 0.04622216150164604, + -0.039302434772253036, + 0.0027514847461134195, + 0.030011190101504326, + 0.0369785837829113, + 0.05994914099574089, + 0.042264167219400406, + 0.034269168972969055, + -0.0017548819305375218, + -0.005145511589944363, + -0.035079389810562134, + -0.023338133469223976, + -0.018161362037062645, + 0.01464695855975151, + -0.05774696543812752, + -0.006635413970798254, + -0.04952413961291313, + -0.027241550385951996, + -0.012413933873176575, + -0.032450322061777115, + 0.017821520566940308, + -0.009279376827180386, + -0.020479947328567505, + 0.010998356156051159, + 0.02177615836262703, + 0.0864957720041275, + 0.0028874415438622236, + 0.025762293487787247, + -0.025356438010931015, + 0.0032721469178795815, + 0.048058945685625076, + 0.01667333021759987, + -0.003677944652736187, + 0.02320176549255848, + -0.0178423710167408, + 0.019860701635479927, + -0.06818141788244247, + -0.02403438836336136, + -0.05537920445203781, + -0.011292573064565659, + -0.03443600982427597, + -0.01951446942985058, + 0.022859472781419754, + -0.048258114606142044, + 0.03778255358338356, + -0.03964261710643768, + -0.008153965696692467, + -0.029098939150571823, + 0.06974240392446518, + -0.003408135613426566, + -0.013805544935166836, + -0.005058057140558958, + -0.040110599249601364, + -0.04990838095545769, + -0.030728962272405624, + 0.016326000913977623, + -0.024108393117785454, + -0.06641722470521927, + -0.013479298911988735, + -0.0926099643111229, + 0.0025468082167208195, + -0.006536019500344992, + -0.03998884931206703, + -0.0006039775907993317, + 0.04255304113030434, + -0.051107343286275864, + 0.03999466821551323, + -0.008591038174927235, + -0.02991699054837227, + 0.011799946427345276, + 0.03936265408992767, + -0.014056305401027203, + -0.02172142267227173, + -0.01736743189394474, + -0.048097286373376846, + -0.03699224814772606, + 0.028199248015880585, + -0.01330168079584837, + 0.016606269404292107, + 0.023853475227952003, + -0.030672935768961906, + 0.0132093271240592, + -0.015495388768613338, + -0.011365652084350586, + 0.006319837179034948, + 0.025040995329618454, + 0.004756909795105457, + -0.0049545434303581715, + -0.06123744696378708, + -0.02076960913836956, + -0.03391099348664284, + -0.01823946088552475, + 0.04044003039598465, + 0.018625078722834587, + -0.01284091081470251, + -0.049659889191389084, + 0.058881908655166626, + 0.018610063940286636, + -0.012115394696593285, + -0.00998815055936575, + -0.014246470294892788, + 0.03282160684466362, + 0.029104912653565407, + -0.03337252512574196, + 0.025824513286352158, + 0.026099300011992455, + -0.047181304544210434, + -0.030495628714561462, + -0.0016905678203329444, + 0.04017405956983566, + 0.023844648152589798, + -0.05925498157739639, + -0.031094754114747047, + 0.016001274809241295, + 0.019332345575094223, + -0.012090563774108887, + 0.01579785719513893, + 0.02347758039832115, + 0.03910723701119423, + -0.013885519467294216, + 0.008132685907185078, + -0.006890865042805672, + -0.010673167183995247, + 0.014111019670963287, + -0.013842987827956676, + -0.06648772954940796, + -0.0015838205581530929, + 0.008014330640435219, + 0.043113041669130325, + -0.0205652117729187, + -0.027009541168808937, + 0.020976128056645393, + 0.040540069341659546, + -0.001039224793203175, + 0.004796899389475584, + 0.033146925270557404, + -0.0077184829860925674, + 0.04811329394578934, + -0.002743407851085067, + 0.01886509172618389, + 0.0008457897347398102, + 0.028181256726384163, + -0.007602981757372618, + 0.02064507268369198, + 0.0025365627370774746, + -0.031148649752140045, + 0.04529910534620285, + 0.01513533852994442, + 0.0371672697365284, + 0.0032539265230298042, + -0.02022489160299301, + 0.02248469926416874, + 0.01194680668413639, + -0.03596147149801254, + 0.029505940154194832, + 0.04571850597858429, + -0.013418176211416721, + -0.028502214699983597, + 0.028703639283776283, + -0.013543625362217426, + -0.045607153326272964, + 0.008906987495720387, + 0.0023525815922766924, + -0.028254862874746323, + 0.019658273085951805, + 0.008903942070901394, + -0.00713845482096076, + 0.06074429303407669, + -0.03223606199026108, + -0.011509137228131294, + 0.02424652688205242, + 0.07042273133993149, + 0.0035218927077949047, + -0.0046211667358875275, + 0.0582435242831707, + -0.0031111938878893852, + -0.024461066350340843, + 0.03192763775587082, + 0.03570476546883583, + 0.028032386675477028, + -0.017745578661561012, + 0.008036704733967781, + -0.024062976241111755, + -0.033288560807704926, + 0.00908495020121336, + 0.026035111397504807, + 0.03203049674630165, + -0.03102906420826912, + 0.0075338189490139484, + -0.01673940196633339, + -0.004252449609339237, + 0.024615924805402756, + -0.006515095476061106, + 0.05542915686964989, + 0.05041550099849701, + 0.01278783567249775, + -0.016527604311704636, + -0.006582946050912142, + -0.04675250127911568, + -0.037123240530490875, + -0.023984329774975777, + -0.00830008927732706, + -0.011557012796401978, + 0.0035511760506778955, + -0.008684120140969753, + 0.02486102469265461, + 0.010110854171216488, + -0.019706707447767258, + 0.02493658848106861, + 0.005121229682117701, + 0.0012946495553478599, + 0.037714384496212006, + 0.03260962292551994, + 0.0016004801727831364, + 0.0374484546482563, + 0.020304838195443153, + 0.038519445806741714, + 0.032708171755075455, + -0.02813783288002014, + 0.014416147023439407, + 0.02806209586560726, + 0.007623199373483658, + 0.006568172015249729, + 0.04391789808869362, + -0.05571973696351051, + 0.07686708122491837, + -0.01335386373102665, + 0.023831849917769432, + 0.01678750105202198, + -0.020752187818288803, + 0.04004690796136856, + -0.04078220948576927, + 0.040695760399103165, + 0.027673525735735893, + -0.1053466945886612, + -0.018436841666698456, + -0.0023311369586735964, + 0.04848701134324074, + -0.03234768658876419, + 0.0008004437549971044, + -0.07017944753170013, + 0.03572027012705803, + -0.0021794061176478863, + 0.02342459000647068, + -0.03417859226465225, + 0.02664307691156864, + -0.027628649026155472, + 0.03009001724421978, + -0.027413194999098778, + -0.007573456969112158, + 0.0064417715184390545, + 0.0016226449515670538, + 0.0066611384972929955, + 0.009853098541498184, + 0.0157609973102808, + 0.0009294462506659329, + -0.005948262754827738, + 0.012509039603173733, + -0.027169087901711464, + -0.010687584057450294, + -0.008653066121041775, + 0.026137901470065117, + -0.028579073026776314, + 0.03962353244423866, + 0.055701885372400284, + -0.04763880744576454, + 0.008015620522201061, + -0.026809249073266983, + 0.012741082347929478, + 0.014532847329974174, + -0.03531426563858986, + -0.016148967668414116, + -0.007390857208520174, + -0.01691681332886219, + -0.03578013926744461, + 0.007732704281806946, + -0.13140176236629486, + 0.05463389679789543, + 0.02042892761528492, + 0.029112569987773895, + 0.005645123776048422, + -0.00491046067327261, + -0.01242559589445591, + -0.017969107255339622, + 0.026118775829672813, + -0.02526285871863365, + -0.048983383923769, + 0.003521301783621311, + 0.06274428963661194, + 0.013922614976763725, + -0.009516199119389057, + -0.04052217677235603, + -0.0749555230140686, + 0.059236954897642136, + 0.007466626353561878, + 0.005537942983210087, + 0.0017511381302028894, + 0.006574489641934633, + -0.01384309958666563, + -0.0038066960405558348, + 0.000689685984980315, + -0.023351071402430534, + -0.05170070752501488, + 0.02328576147556305, + 0.006345510948449373, + 0.036675069481134415, + -0.01851833052933216, + -0.01969991996884346, + -0.02014917880296707, + 0.023601047694683075, + -0.05581105500459671, + -0.02177262306213379, + -0.00017327768728137016, + 0.0041839065961539745, + 0.03734426200389862, + 0.02179585210978985, + 0.03781602904200554, + -0.055937957018613815, + 0.039412740617990494, + 0.019919520244002342, + -0.024927843362092972, + 0.0021952970419079065, + -0.006404045503586531, + -0.03015821799635887, + 0.0056087551638484, + 0.0097587201744318, + 0.04420754685997963, + -0.03159554675221443, + 0.014320218935608864, + -0.017167072743177414, + 0.015377235598862171, + 0.031230026856064796, + -0.023777861148118973, + 0.007674700114876032, + -0.012659702450037003, + -0.02014923095703125, + -0.028348373249173164, + -0.004315635189414024, + 0.018954884260892868, + -0.00534464605152607, + -0.0020327463280409575, + -0.010420402511954308, + 0.022733869031071663, + -0.018590407446026802, + -0.010117967613041401, + 0.04825219139456749, + -0.0023557269014418125, + 0.02616855874657631, + -0.005989083554595709, + 0.016239462420344353, + -0.05287150293588638, + -0.022545605897903442, + -0.0009904601611196995, + 0.058815646916627884, + 0.03983927518129349, + -0.014126223511993885, + 0.024364713579416275, + 0.014291329309344292, + -0.029032347723841667, + -0.00951498094946146, + 0.03060683235526085, + -0.04835892096161842, + -0.019844667986035347, + -0.02370166964828968, + 0.05031818524003029, + -0.005511506460607052, + -0.0021722489036619663, + -0.0073884474113583565, + -0.0008541016723029315, + 0.03458555415272713, + 0.009038226678967476, + -0.014323537237942219, + 0.017726756632328033, + 0.0031922527123242617, + 0.04239173233509064, + -0.0676731988787651, + 0.04913567379117012, + 0.03224007040262222, + 0.01620394177734852, + -0.012029879726469517, + 0.01681947335600853, + -0.016596129164099693, + 0.03460060805082321, + 0.027025273069739342, + -0.009057586081326008, + 0.027473395690321922, + 0.0011639285366982222, + -0.0056720697320997715, + -0.005502711515873671, + 0.009600837714970112, + -0.05035246163606644, + 0.04858502745628357, + -0.02265784703195095, + -0.012836265377700329, + 0.013631734997034073, + 0.006622937973588705, + 0.02102203294634819, + 0.030022766441106796, + -0.005876696202903986, + 0.04923879727721214, + 0.013231650926172733, + 0.025060243904590607, + 0.017589634284377098, + -0.021887902170419693, + 0.02929665707051754, + -0.027017414569854736 + ], + "start_index": 29356, + "end_index": 29521, + "token_count": 35, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "e8302bc6-bb0a-59c8-a612-da11fd83ac59", + "_source": { + "text": "\n\nToken:\n\n\n\nDEREF ::= $", + "embedding": [ + -0.002694208873435855, + 0.022544654086232185, + -0.010690373368561268, + -0.08093076199293137, + 0.02693118341267109, + -0.011290932074189186, + -0.10856649279594421, + 0.013573884032666683, + -0.036948129534721375, + -0.0064806570298969746, + 0.033730823546648026, + -0.025347230955958366, + 0.06998924165964127, + -0.010931337252259254, + -0.04356349632143974, + 0.04852262884378433, + 0.035447631031274796, + 0.02735080197453499, + -0.056760597974061966, + -0.019685912877321243, + 0.009644478559494019, + 0.006117463111877441, + -0.04108203202486038, + 0.044034481048583984, + -0.000858952640555799, + 0.07444364577531815, + -0.0774231031537056, + -0.007559456862509251, + 0.03954286873340607, + -0.05024657025933266, + -0.030198194086551666, + -0.0602010115981102, + -0.07113366574048996, + -0.020310141146183014, + -0.014972017146646976, + -0.015938010066747665, + -0.006659011822193861, + -0.04778119549155235, + -0.04438765347003937, + 0.046005893498659134, + -0.004851801786571741, + -0.015330119989812374, + 0.023152286186814308, + 0.009026320651173592, + 0.0016708059702068567, + -0.04598798230290413, + -0.012706507928669453, + 0.0018901254516094923, + 0.032710328698158264, + -0.011732978746294975, + -0.03276761621236801, + -0.0017674448899924755, + 0.05440281331539154, + -0.0021546094212681055, + 0.007299089804291725, + -0.051349371671676636, + 0.0018937591230496764, + 0.06014729291200638, + 0.023714208975434303, + 0.011698554269969463, + 0.05373578518629074, + 0.01496150717139244, + -0.009982381016016006, + 0.022894984111189842, + 0.02001543529331684, + 0.07034856081008911, + 0.03325808420777321, + -0.024435166269540787, + 0.0004839642788283527, + -0.012895929627120495, + 0.015461204573512077, + -0.04057953134179115, + -0.016042474657297134, + 0.020275922492146492, + 0.05358462408185005, + -0.0362403579056263, + 0.025407010689377785, + 0.00975110661238432, + -0.02980528399348259, + 0.013299348764121532, + -0.006005024537444115, + 0.058396849781274796, + 0.0365024134516716, + 0.024415889754891396, + 0.008566103875637054, + 0.0799809992313385, + -0.03666935861110687, + -0.011091623455286026, + 0.031203098595142365, + 0.012223788537085056, + -0.00452307378873229, + 0.009228878654539585, + 0.015878789126873016, + -0.009283175691962242, + 0.03647734597325325, + -0.04255786910653114, + -0.00021397574164438993, + 0.08092983067035675, + -0.02229410968720913, + -0.006709537468850613, + 0.005491083487868309, + -0.0303795263171196, + -0.015368014574050903, + 0.02724340744316578, + 0.0015239543281495571, + 0.06008433178067207, + -0.034475646913051605, + 0.05932006239891052, + -0.013041717000305653, + -0.0332132950425148, + -0.0058424267917871475, + 0.02531532756984234, + 0.08230014145374298, + 0.028573783114552498, + 0.0558503083884716, + -0.00027157572912983596, + 0.018317226320505142, + -0.05703151226043701, + 0.037123605608940125, + -0.0027456134557724, + -0.01764789968729019, + 0.040466781705617905, + 0.011891624890267849, + -0.014252680353820324, + 0.05612725019454956, + 0.018282348290085793, + -0.031559668481349945, + -0.0004972409224137664, + 0.027641579508781433, + -0.031036458909511566, + -0.011915731243789196, + -0.007545680273324251, + 0.004758456256240606, + -0.0791364386677742, + 0.015253005549311638, + -0.0037304714787751436, + 0.023436270654201508, + -0.02771591767668724, + 0.03438783809542656, + -0.0022255375515669584, + 0.029677677899599075, + -0.004027559421956539, + 0.016864703968167305, + 0.012411543168127537, + 0.04109689220786095, + 0.0417402982711792, + 0.00036844867281615734, + -0.0004973816103301942, + 0.02768665738403797, + 0.07148415595293045, + 0.008173317648470402, + 0.011123908683657646, + -0.04027525708079338, + 0.009495520032942295, + -0.051520537585020065, + 0.0014104698784649372, + -0.0026784143410623074, + -0.006014994345605373, + 0.038674332201480865, + 0.009827373549342155, + -0.006359820254147053, + -0.023333020508289337, + -0.023555831983685493, + -0.030729491263628006, + -0.04246293753385544, + 0.0350244864821434, + -0.003333715721964836, + -0.02783859334886074, + -0.019060052931308746, + 0.009276875294744968, + -0.06549163162708282, + 0.00916315894573927, + -0.013585543259978294, + 0.013589354231953621, + 0.01539878360927105, + 0.024767527356743813, + -0.05354437604546547, + -0.061766982078552246, + 0.001564191305078566, + 0.025089485570788383, + -0.004705303348600864, + -0.01912829838693142, + 0.01019301824271679, + 0.0007160674431361258, + -0.0014769978588446975, + 0.02228057011961937, + 0.017632855102419853, + 0.015453323721885681, + -0.020274966955184937, + -0.010913517326116562, + -0.011297891847789288, + -0.0003845030441880226, + -0.08444837480783463, + -0.004574796184897423, + -0.009399598464369774, + -0.0304129458963871, + 0.016268525272607803, + -0.027559803798794746, + 0.000382192840334028, + -0.009959792718291283, + 0.02245696261525154, + 0.037524621933698654, + 0.01444939523935318, + -0.03383992239832878, + -0.042566362768411636, + 0.021423999220132828, + 0.04499916359782219, + 0.010017643682658672, + -0.019889425486326218, + -0.01945625990629196, + -0.0028881749603897333, + 0.03235034644603729, + -0.0049066804349422455, + -0.029160039499402046, + 0.004298272076994181, + -0.05750923603773117, + 0.02112528681755066, + 0.002613341435790062, + 0.0072363740764558315, + 0.02335336245596409, + 0.012627871707081795, + 0.010809488594532013, + -0.009754478931427002, + 0.00528712896630168, + 0.05077098309993744, + -0.04374418780207634, + -0.020930755883455276, + 0.0029680971056222916, + 0.022275878116488457, + 0.009531579911708832, + 0.01534357387572527, + 0.0133432038128376, + 0.004351662006229162, + 0.007180273067206144, + 0.01704470068216324, + 0.016562268137931824, + 0.009655550122261047, + -0.04826268553733826, + 0.06686976552009583, + -0.03136257082223892, + -0.04377077519893646, + -0.019675998017191887, + 0.0208615530282259, + 0.026530100032687187, + -0.01687680184841156, + 0.04103952273726463, + -3.797735189436935e-05, + 0.004265313968062401, + -0.03282208740711212, + -0.01115274615585804, + 0.04055659845471382, + -0.05545090138912201, + 0.022129276767373085, + 0.004754550755023956, + -0.014004379510879517, + 0.004260655026882887, + 0.0077089108526706696, + -0.014113452285528183, + 0.0024678620975464582, + -0.002056458732113242, + 0.007459898479282856, + -0.02978678233921528, + -0.04591256380081177, + -0.028294898569583893, + -0.030592389404773712, + -0.009197128005325794, + -0.0010186965810135007, + -0.025836506858468056, + -0.006248047109693289, + -0.012869074009358883, + -0.043245188891887665, + 0.013836391270160675, + 0.004400595091283321, + 0.02331496588885784, + 0.03677484393119812, + 0.03862755745649338, + 0.05028323084115982, + -0.086240753531456, + 0.02033238671720028, + 0.08301174640655518, + -0.017825130373239517, + -0.018860945478081703, + -0.015401342883706093, + -0.013702132739126682, + 0.012117063626646996, + 0.05232932046055794, + 0.009796853177249432, + 0.002981595229357481, + 0.037963367998600006, + 0.027952518314123154, + -0.03025481291115284, + -0.0028042043559253216, + -0.028125565499067307, + -0.032066117972135544, + -0.02022838220000267, + -0.02776356413960457, + 0.015194409526884556, + 0.05423225089907646, + 0.05495358631014824, + -0.0036017470993101597, + -0.0020496651995927095, + 0.0013241118285804987, + -0.005199226085096598, + -0.022954417392611504, + 0.017902318388223648, + -0.008944660425186157, + 0.029006652534008026, + 0.01032025646418333, + 0.035801224410533905, + -0.025439603254199028, + 0.0395006500184536, + -0.02051292546093464, + -0.020975109189748764, + -0.04823362082242966, + -0.04789609834551811, + -0.03290565311908722, + -0.06851945072412491, + 0.014355123043060303, + -0.02525305561721325, + 0.006646528374403715, + -0.057834602892398834, + 0.05330217257142067, + 0.012903612107038498, + 0.014880621805787086, + 0.026163015514612198, + 0.012066276744008064, + 0.07078299671411514, + 0.02996368706226349, + 0.011885909363627434, + 0.06481014937162399, + -0.018322182819247246, + 0.01930713839828968, + 0.0558529756963253, + 0.01475665532052517, + 0.010698635131120682, + -0.015939142554998398, + 0.021139126271009445, + 0.037816982716321945, + -0.02651018276810646, + -0.007087085396051407, + 0.030383585020899773, + 0.021756771951913834, + -0.03813876211643219, + 0.04657195881009102, + -0.07204689830541611, + -0.027681568637490273, + 0.09706167876720428, + 0.031127162277698517, + -0.015911420807242393, + -0.00224934215657413, + 0.006068083923310041, + -0.0019496579188853502, + -0.024175720289349556, + -0.003203868167474866, + 0.016524503007531166, + -0.08140341937541962, + 0.011594142764806747, + 0.019982289522886276, + -0.0004861887719016522, + -0.03296876326203346, + -0.028664326295256615, + -0.05862345173954964, + -0.034688204526901245, + 0.029169799759984016, + -0.028712492436170578, + -0.00411366717889905, + 0.014608831144869328, + 0.009246896021068096, + 0.023998329415917397, + -0.002611950971186161, + -0.08578649908304214, + 0.054565101861953735, + -0.005968153011053801, + -0.026516733691096306, + 0.06660962104797363, + 0.085399329662323, + 0.055521752685308456, + 0.04114885628223419, + 0.054857637733221054, + 0.03920971229672432, + 0.036919087171554565, + -0.01658632606267929, + -0.017664315178990364, + 0.0477999784052372, + -0.03991034999489784, + -0.03651055693626404, + -0.014909569174051285, + -0.008656462654471397, + -0.057330626994371414, + -0.014509683474898338, + 0.025866523385047913, + 0.02053121104836464, + -0.017693176865577698, + -0.022957077249884605, + 0.034161005169153214, + 0.006599181331694126, + -0.07634659111499786, + -0.054118912667036057, + 0.028047528117895126, + 0.04678122326731682, + 0.025549856945872307, + 0.01638026162981987, + -0.0006025509792380035, + -0.025897199288010597, + -0.0012632611906155944, + 0.040257833898067474, + -0.003946238197386265, + 0.020338106900453568, + -0.032551515847444534, + -0.029808783903717995, + 0.018481960520148277, + -0.002090143971145153, + -0.01605936884880066, + -5.6351815146626905e-05, + 0.020773788914084435, + -0.03217132017016411, + 0.04372929036617279, + -0.021689580753445625, + 0.010323083959519863, + 0.011078981682658195, + 0.015461979433894157, + 0.02587377279996872, + -0.031753044575452805, + 0.01985335722565651, + 0.007759630214422941, + -0.018038226291537285, + -0.0384378619492054, + -0.059257183223962784, + -0.025040840730071068, + 0.07482115924358368, + 0.029018796980381012, + 0.0062156254425644875, + -0.03401641547679901, + -0.010473961010575294, + 0.027818650007247925, + 0.03837147355079651, + 0.0788194090127945, + 0.04708736762404442, + 0.004052861128002405, + 0.010474818758666515, + -0.027425942942500114, + -0.010590135119855404, + -0.016969285905361176, + 0.032014187425374985, + -0.017453519627451897, + 0.010605665855109692, + -0.019481180235743523, + 0.01707514375448227, + 0.020183546468615532, + -0.005152365658432245, + 0.009712446480989456, + -0.02747509442269802, + 0.024562619626522064, + 0.040345449000597, + -0.0019438534509390593, + -0.07303038984537125, + -0.018606891855597496, + -0.003999031148850918, + 0.01384743582457304, + 0.01688489504158497, + -0.023264490067958832, + -0.00927727110683918, + 0.005975412204861641, + -0.014373380690813065, + -0.03563205525279045, + 0.013943152502179146, + 0.03853950649499893, + -0.037702083587646484, + 0.023877399042248726, + -0.005888663697987795, + 0.03504867106676102, + -0.020996717736124992, + -0.0009212104487232864, + -0.019623273983597755, + 0.03897947072982788, + 0.0442773774266243, + -0.017232315614819527, + 0.04356200248003006, + -0.061369553208351135, + -0.004602125380188227, + -0.013380326330661774, + -0.04641413316130638, + 0.015300394035875797, + -0.08249584585428238, + 0.03738924488425255, + 0.003152661956846714, + 0.020284930244088173, + 0.011995050124824047, + -0.04008915275335312, + 0.002536304062232375, + -0.009864512830972672, + 0.009205729700624943, + -0.014286312274634838, + -0.02379278652369976, + 0.028658147901296616, + 0.03880751132965088, + 0.03507199510931969, + 0.018898149952292442, + -0.10575052350759506, + 0.024288032203912735, + -0.023685164749622345, + -0.032561980187892914, + 0.008076281286776066, + -0.023404190316796303, + 0.030022254213690758, + 0.02301466278731823, + 0.03136926144361496, + 0.007618047297000885, + 0.03202354535460472, + 0.058938074856996536, + -0.037929438054561615, + -0.020178310573101044, + -0.023471055552363396, + 0.05465281009674072, + -0.023975050076842308, + -0.024839211255311966, + 0.014860895462334156, + -0.0009985716314986348, + -0.007460129912942648, + 0.04325325787067413, + 0.026862213388085365, + -0.009218216873705387, + -0.006156791001558304, + 0.010340656153857708, + 0.009681710042059422, + 0.04798877611756325, + -0.01637852005660534, + 0.022327421233057976, + 0.008705652318894863, + -0.0001595975481905043, + 0.06686025112867355, + -0.02348698303103447, + -0.031068652868270874, + -0.002261483110487461, + -0.05605625733733177, + 0.02687114290893078, + 0.011970128864049911, + 0.009828106500208378, + 0.04367274045944214, + -0.008549622260034084, + -0.007794808596372604, + -0.010257215239107609, + -0.010060937143862247, + -0.0072142500430345535, + -0.010913715697824955, + 0.012891847640275955, + 0.009820237755775452, + 0.009824404492974281, + 0.02607990801334381, + -0.0029447227716445923, + -0.011004767380654812, + 0.051493920385837555, + 0.04536119103431702, + 0.010540422052145004, + -0.007188054267317057, + -0.0024472768418490887, + 0.0009392229258082807, + -0.029270272701978683, + 0.021604575216770172, + -0.010787594132125378, + 0.001796347089111805, + -0.008340288884937763, + 0.0037535305600613356, + 0.013434771448373795, + 0.012471717782318592, + 0.021408092230558395, + 0.0023301539476960897, + 0.019142283126711845, + -0.02071855217218399, + -0.03985138610005379, + 0.03131594881415367, + -0.03880924731492996, + 0.0002405496925348416, + 0.04361517354846001, + 0.024103492498397827, + -0.026539558544754982, + -0.02876995876431465, + 0.05050549656152725, + -0.010246066376566887, + -0.02305184118449688, + 0.03326433151960373, + -0.01582908071577549, + 0.024023402482271194, + -0.031352698802948, + -0.003237352008000016, + -0.0029491183813661337, + -0.0224734079092741, + -0.008273156359791756, + 0.010000042617321014, + 0.023174716159701347, + -0.005348783917725086, + -0.049147166311740875, + -0.009352274239063263, + 0.004445315338671207, + -0.004043344873934984, + 0.018109768629074097, + -0.022929230704903603, + -0.03214683756232262, + 0.04326178506016731, + 0.012903191149234772, + -0.01909329742193222, + 0.013204389251768589, + -0.018971603363752365, + 0.008512124419212341, + -0.0344027616083622, + -0.015147549100220203, + -0.04416334629058838, + 0.023001253604888916, + -0.038285329937934875, + 0.0023814477026462555, + 0.011234373785555363, + 0.01135808601975441, + -0.011030489578843117, + 0.02604725770652294, + 0.047850072383880615, + -0.009442931041121483, + 0.016107728704810143, + -0.002877107821404934, + -0.009545884095132351, + -0.053316377103328705, + -0.040028929710388184, + -0.0030944945756345987, + 0.035093750804662704, + 0.07508718967437744, + 0.02671959064900875, + 0.024274727329611778, + 0.05678744614124298, + -0.00821419432759285, + -0.01348363421857357, + -0.045541442930698395, + -0.03572395443916321, + 0.002379676327109337, + -0.012479324825108051, + 0.031093083322048187, + 0.010492529720067978, + -0.04799322783946991, + -0.015015705488622189, + 0.052078891545534134, + 0.023195780813694, + -0.02452811971306801, + 0.00818233098834753, + 0.008691812865436077, + 0.04151398316025734, + 0.007250132504850626, + 0.021458933129906654, + 0.016752401366829872, + -0.004237402696162462, + 0.05297216400504112, + 0.041940633207559586, + 0.009190408512949944, + -0.0003341072588227689, + -0.0036727716214954853, + 0.0028148628771305084, + -0.007363056298345327, + -0.0001703979796729982, + -0.002075389726087451, + -0.030145512893795967, + 0.0265754796564579, + 0.013896487653255463, + -0.0599304735660553, + 0.03461025655269623, + -0.048941612243652344, + 0.05388408154249191, + -0.07309826463460922, + -0.06715992838144302, + -0.021000029519200325, + 0.01337197795510292, + 0.04293707758188248, + 0.02980641834437847, + -0.00784935150295496, + -0.03471042960882187, + -0.027167731896042824, + -0.02630889229476452, + 0.022220782935619354, + -0.00443662703037262, + -0.03650953248143196, + -0.013599350117146969, + -0.008497600443661213, + -0.0022088023833930492, + -0.07174727320671082, + -0.028910445049405098, + 0.034212805330753326, + -0.0003943655174225569, + -0.052091315388679504, + 0.03571442514657974, + -0.0064442758448421955, + -0.009029720909893513, + 0.028868427500128746, + 0.03493683412671089, + -0.019890202209353447, + -0.042759593576192856, + 0.007747062016278505, + -0.023266740143299103, + -0.020372971892356873, + -0.005663053598254919, + -0.02447769232094288, + -0.013565447181463242, + -0.02951345220208168, + -0.022000627592206, + 0.01155687402933836, + 0.018551096320152283, + 0.01484587974846363, + -0.004247721284627914, + 0.013980967923998833, + -0.014780186116695404, + -0.005492398515343666, + -0.010728497058153152, + 0.013184957206249237, + 0.005711087491363287, + -0.0015950448578223586, + 0.0035065964329987764, + 0.04367191344499588, + 0.017423171550035477, + -0.010022052563726902, + 0.04800379276275635, + 0.013926325365900993, + -0.03197947517037392, + -0.03606535866856575, + 0.028235455974936485, + 0.025200914591550827, + -0.01701890118420124, + 0.0016138016944751143, + 0.01722591556608677, + 0.05670773610472679, + -0.043255798518657684, + -0.032040808349847794, + 0.025178933516144753, + 0.0036443823482841253, + 0.03309513255953789, + -0.04908394813537598, + 0.03308914601802826, + 0.0514865443110466, + 0.0437801331281662, + -0.011787539348006248, + 0.009953835047781467, + 0.01889132149517536, + -0.013897625729441643, + 0.03218293935060501, + 0.01093218382447958, + -0.00801643542945385, + 0.0023313239216804504, + 0.007268326822668314, + -0.025458283722400665, + -0.013864775188267231, + -0.01722673699259758, + 0.03995493799448013, + -0.008138536475598812, + 0.016338465735316277, + 0.022011354565620422, + 0.02190404385328293, + 0.04223199933767319, + 0.02443564124405384, + -0.013651282526552677, + 0.05905216559767723, + -0.002370410365983844, + -0.015135790221393108, + -0.017651088535785675, + 0.04907206445932388, + 0.010096035897731781, + -0.03040166012942791, + -0.048167213797569275, + 0.012640475295484066, + 0.01571699231863022, + 0.04220542311668396, + 0.017101386561989784, + -0.014226241037249565, + 0.02215820550918579, + -0.031871676445007324, + 0.025348467752337456, + -0.0033159831073135138, + -0.016844969242811203, + -0.04844480752944946, + 0.005596196744590998, + 0.05660945549607277, + -0.05623322352766991, + 0.000347877386957407, + 0.011727376841008663, + -0.03508055582642555, + -0.004163539502769709, + 0.014789437875151634, + 0.007317155133932829, + -0.05788445100188255, + 0.04084731638431549, + 0.004732815083116293, + -0.003554645227268338, + 0.08515563607215881, + -0.03397331014275551, + -0.003057494992390275, + 0.036376919597387314, + 0.02237480878829956, + 0.018961943686008453, + 0.02969302050769329, + 0.026964066550135612, + 0.020468953996896744, + -0.029496822506189346, + -0.028796497732400894, + -0.0032300245948135853, + 0.03177816793322563, + -0.00013955576287116855, + 0.04474464803934097, + -0.021291816607117653, + -0.033056192100048065, + -0.0274855624884367, + -0.010441510938107967, + 0.02966214530169964, + -0.008869960904121399, + -0.05452805757522583, + 0.03268349543213844, + 0.009680566377937794, + -0.015387493185698986, + 0.04593346640467644, + 0.08762630820274353, + 0.02286222018301487, + 0.021412847563624382, + -0.0152351725846529, + 0.05985192582011223, + -0.06723886728286743, + -0.03080441989004612, + 0.01360113825649023, + -0.0057602934539318085, + -0.04822828620672226, + -0.02156744711101055, + -0.0025833980180323124, + -0.021673547104001045, + 0.016071535646915436, + 0.01768912933766842, + 0.0005585259641520679, + 0.03631902113556862, + -0.026043297722935677, + 0.028268929570913315, + -0.004406559746712446, + -0.05556470900774002, + 0.037940170615911484, + -0.019598674029111862, + 0.05121983215212822, + 0.009387237019836903, + -0.024380119517445564, + -0.015534299425780773, + 0.03602185472846031, + 0.014216093346476555, + -0.04085438698530197, + 0.0021156705915927887, + -0.006879474967718124, + 0.042431823909282684, + -0.04517685994505882, + 0.0362081304192543, + 0.006902511231601238, + -0.045571185648441315, + -0.001456949976272881, + -0.060894329100847244, + 0.018541641533374786, + 0.03158702701330185, + -0.07063748687505722, + -0.022365817800164223, + -0.04411182552576065, + 0.022716382518410683, + 0.0015068943612277508, + 0.03512243926525116, + -0.04140596464276314, + -0.008871748112142086, + -0.04056378826498985, + -0.014229546301066875, + -0.003498068079352379, + 0.004184618592262268, + 0.03715398535132408, + 0.07090897113084793, + -0.014207448810338974, + 0.04903281480073929, + 0.04500583931803703, + -0.023969119414687157, + 0.0019147119019180536, + -0.03273222967982292, + 0.017175598070025444, + 0.022955143824219704, + -0.004832826554775238, + 0.005539928562939167, + -0.033889804035425186, + 0.0024029831402003765, + 0.027418535202741623, + 0.0720830112695694, + 0.020543307065963745, + 0.05217694491147995, + 0.02947063557803631, + 0.022688640281558037, + -0.019504066556692123, + -0.017485234886407852, + 0.03019704669713974, + -0.031077735126018524, + -0.04447457939386368, + 0.0013428039383143187, + 0.04827513545751572, + -0.005230454262346029, + 0.0061210040003061295, + 0.04524559527635574, + -0.0901283547282219, + -0.00023775696172378957, + 0.0003295358910690993, + -0.004902469459921122, + 0.005237401928752661, + 0.008188402280211449, + -0.009568886831402779, + -0.017917757853865623, + 0.016983576118946075, + 0.018602656200528145, + -0.0667930468916893, + 0.03559325635433197, + 0.0023289197124540806, + -0.01656142994761467, + 0.0014595432439818978, + -0.008393310010433197, + -0.01293169055134058, + 0.053522393107414246, + 0.011794938705861568, + -0.0028607179410755634, + -0.020866023376584053, + -0.017066072672605515, + -0.016840483993291855, + 0.018183371052145958, + 0.00823062751442194, + 0.01885150372982025, + -0.0809997096657753, + -0.014828850515186787, + 0.024145107716321945, + 0.040026795119047165, + -0.02891485020518303, + -0.016221079975366592, + 0.046910837292671204, + -0.02275095134973526, + -0.0018950363155454397, + 0.0017586065223440528, + 0.044294845312833786, + -0.016267837956547737, + 0.04520526900887489, + 0.028892941772937775, + -0.02458176575601101, + 0.029149100184440613, + 0.018325751647353172, + -0.0065976707264781, + 0.0016798372380435467, + 0.0009172531426884234, + -0.015093598514795303, + -0.029439611360430717, + -0.010173749178647995, + -0.007701253518462181, + 0.019208520650863647, + 0.002850614720955491, + 0.041849371045827866, + -0.0786445215344429, + 0.05199339613318443, + -0.01848410815000534, + 0.008647712878882885, + -0.010844020172953606, + -0.035705920308828354, + 0.035214219242334366, + 0.03436456620693207, + -0.04484889283776283, + -0.010763120837509632, + -0.022372324019670486, + 0.009516647085547447, + 0.01895967498421669, + -0.03531231731176376, + 0.006054968107491732, + 0.0082098925486207, + 0.02499651536345482, + 0.0611911416053772, + 0.023462625220417976, + 0.013700015842914581, + 0.0604567714035511, + 0.008573712781071663, + 0.011220571584999561, + 0.0023094320204108953, + 0.01568155735731125, + 0.0017860742518678308, + 0.022526957094669342, + 0.015428941696882248, + -0.0089406818151474, + -0.0103352852165699, + 0.022050797939300537, + 0.004373631905764341, + -0.018688611686229706, + -0.015816714614629745, + -0.01428395975381136, + 0.01592538319528103, + 0.0030345346312969923, + 0.01574535295367241, + 0.021972594782710075, + -0.015622643753886223, + 0.017625998705625534, + 0.019085891544818878, + -0.031152447685599327, + -0.008873989805579185, + 0.008383069187402725, + 0.01272745244204998, + -0.035555895417928696, + 0.04659790173172951, + 0.0261582899838686, + 0.05350598692893982, + -0.014530118554830551, + 0.01804455928504467, + -0.010911217890679836, + 0.02973519079387188, + 0.04064661264419556, + -0.015275862067937851, + -0.03592288866639137, + 0.021185703575611115, + -0.04291865602135658, + 0.008489206433296204, + 0.01592765934765339, + -0.015608880668878555, + 0.03292400762438774, + -0.0450904406607151, + 0.02431824617087841, + 0.014711830765008926, + 0.011638335883617401, + 0.001380810746923089, + 0.012696029618382454, + -0.007612179033458233, + 0.003257348667830229, + 0.04565398767590523, + 0.024313077330589294, + 0.04220571741461754, + -0.041940029710531235, + 0.03038741834461689, + 0.012931336648762226 + ], + "start_index": 29521, + "end_index": 29550, + "token_count": 3, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "7b1482d1-3710-54be-9678-4d3a9329baa5", + "_source": { + "text": "\n\n---\n\n# X.11 Orden de precedencia léxica\n\nPara evitar ambigüedades, el lexer debe aplicar el principio **longest match first**.\n\nOrden obligatorio:\n\n1. comentarios (`///` antes que `//`, luego `/* */`)\n2. whitespace\n3. palabras reservadas\n4. identificadores\n5. números flotantes\n6. enteros\n7. strings\n8. operadores compuestos (`**`, `==`, `<=`, `>=`, `!=`)\n9. operadores simples\n10. delimitadores\n\n---\n\n# X.12 Separación formal: nivel léxico vs nivel sintáctico\n\n\n\nNIVEL LÉXICO — produce tokens: IDENTIFIER, INTEGER, FLOAT, STRING,\n operadores, delimitadores, EOL, palabras reservadas.\n\nNIVEL SINTÁCTICO — consume tokens: construye el AST según las reglas BNF\n de las Secciones I–IX.", + "embedding": [ + -0.02566191367805004, + -0.02056504227221012, + -0.010905308648943901, + -0.07698296010494232, + -0.031089304015040398, + 0.020602500066161156, + -0.04369210824370384, + 0.02141907624900341, + -0.008084658533334732, + -0.06944810599088669, + 0.04645694047212601, + -0.09380687773227692, + 0.040255751460790634, + -0.009011507965624332, + -0.04880886152386665, + 0.029116347432136536, + 0.010968762449920177, + -0.0021003212314099073, + -0.03003786690533161, + -0.006316956132650375, + -0.019805321469902992, + 0.004708120599389076, + -0.06433551013469696, + 0.06592150777578354, + 0.018625468015670776, + 0.007839327678084373, + -0.024061569944024086, + 0.0206600409001112, + 0.035995256155729294, + -0.04317170009016991, + -0.03497094288468361, + 0.007306333631277084, + -0.09526466578245163, + -0.00168055878020823, + 0.01395324245095253, + -0.013209252618253231, + -0.031343527138233185, + -0.01148038636893034, + 0.025909423828125, + 0.032925091683864594, + 0.0007278004777617753, + 0.04764853045344353, + -0.0482887364923954, + 0.007399671245366335, + -0.001004914753139019, + -0.07514576613903046, + -0.01821264997124672, + 0.04013168439269066, + 0.010822908021509647, + 0.01716005615890026, + -0.04541773721575737, + -0.006601718720048666, + 0.03508424386382103, + 0.007840365171432495, + -0.06887118518352509, + -0.027700502425432205, + -0.01033253874629736, + -0.06977776437997818, + 0.004927319940179586, + 0.016108468174934387, + 0.035473305732011795, + -0.06822022050619125, + -0.01602122187614441, + -0.0396043062210083, + 0.03414391353726387, + 0.025665100663900375, + -0.0005233075935393572, + -0.06177907437086105, + 0.00342784496024251, + 0.007688421756029129, + -0.019242526963353157, + 0.002937840297818184, + 0.01977105811238289, + 0.018945926800370216, + 0.036403823643922806, + 0.05274989828467369, + -0.01988150365650654, + -0.052976809442043304, + -0.005472325254231691, + 0.05475945770740509, + 0.017881710082292557, + -0.002153214067220688, + 0.039007894694805145, + -0.019078930839896202, + 0.051567766815423965, + 0.05000201240181923, + -0.042620785534381866, + 0.004909034352749586, + 0.006451892666518688, + 0.04415887966752052, + 0.006389533169567585, + 0.035044845193624496, + 0.016576655209064484, + -0.03397533670067787, + 0.0343073308467865, + -0.005622195079922676, + -0.02380630560219288, + 0.055936142802238464, + 0.011995759792625904, + 0.009161473251879215, + -0.02869214303791523, + -0.03774625062942505, + -0.012527626007795334, + 0.047056131064891815, + 0.012510688044130802, + 0.06314097344875336, + -0.03550730273127556, + 0.012807059101760387, + 0.00298472517170012, + -0.010468673892319202, + 0.007479765918105841, + 0.02221183106303215, + 0.016757285222411156, + 0.07503452897071838, + 0.02563648112118244, + -0.043820690363645554, + -0.03843789920210838, + -0.011921091005206108, + -0.0384528785943985, + 0.0034554589074105024, + 0.010360980406403542, + -0.01099078543484211, + -0.032309576869010925, + -0.017049284651875496, + 0.02039315551519394, + 0.02332904562354088, + -0.10024219006299973, + -0.021697741001844406, + 0.01052003912627697, + 0.011569198220968246, + -0.022156409919261932, + -0.006355812773108482, + -0.004884505178779364, + -0.0318884439766407, + 0.004769741091877222, + -0.043567657470703125, + -0.010283608920872211, + -0.03913508355617523, + 0.04555653780698776, + -0.0030588472727686167, + -0.022657157853245735, + 0.007784166838973761, + 0.004517369903624058, + -0.007743474096059799, + 0.044809434562921524, + 0.01039064396172762, + 0.009911403991281986, + 0.01626424677670002, + 0.004454202950000763, + 0.04108100384473801, + -0.0182481799274683, + -0.01700221374630928, + -0.022297237068414688, + -0.018951134756207466, + -0.025940371677279472, + -0.004671019501984119, + 0.01878267526626587, + 0.02544417418539524, + 0.013249987736344337, + 0.022498613223433495, + -0.012152550742030144, + -0.0038877814076840878, + 0.006110084243118763, + -0.0629781112074852, + -0.01491610612720251, + 0.0003709243901539594, + -0.04051655903458595, + -0.04193311929702759, + 0.011325947940349579, + 0.02935057505965233, + -0.035374715924263, + 0.0208226777613163, + 0.002541189081966877, + 0.05050438642501831, + 0.00013131253945175558, + -0.009887869469821453, + -0.029198819771409035, + 0.08017318695783615, + -0.016738438978791237, + -0.009620054624974728, + -0.00201220135204494, + 0.019678600132465363, + -0.002209532307460904, + 0.012305472046136856, + 0.04446781426668167, + 0.1332378089427948, + 0.002757617272436619, + -0.0014564500888809562, + 0.00889391079545021, + -0.015076437965035439, + -0.010869838297367096, + -0.010349847376346588, + -0.012958449311554432, + 0.0016359523870050907, + -0.006914996076375246, + -0.013155006803572178, + -0.00017770801787264645, + -0.025805920362472534, + -0.007609064690768719, + -0.007665202487260103, + 0.04884101077914238, + -0.0023462288081645966, + -0.01722639426589012, + 0.01846480742096901, + -0.05275139957666397, + 0.005885286722332239, + 0.009842346422374249, + 0.04254528507590294, + 0.003344670869410038, + 0.014463474042713642, + -0.009411085397005081, + -0.000727785867638886, + -0.015180688351392746, + -0.037302128970623016, + 0.005139953922480345, + -0.02936902828514576, + -0.024987181648612022, + 0.00766495568677783, + -0.0036186962388455868, + 0.06177029013633728, + 0.009064920246601105, + 0.013975230976939201, + -0.02086961641907692, + 0.006773058325052261, + 0.10301931947469711, + 0.015605469234287739, + -0.011069872416555882, + -0.03531628102064133, + 0.03115178272128105, + 0.0103866932913661, + 0.006169409491121769, + 0.02386852726340294, + 0.026737907901406288, + -0.055126406252384186, + 0.04312678053975105, + -0.02205727808177471, + -0.003355305874720216, + -0.006101164035499096, + 0.030192863196134567, + -0.05444217100739479, + 0.00944245234131813, + 0.0004739081778097898, + -0.007290990091860294, + 0.021871034055948257, + -0.004670241381973028, + 0.01844644732773304, + 0.011687500402331352, + 0.0005123703740537167, + -0.011539734899997711, + 0.02614239789545536, + 0.04248068109154701, + 0.017659829929471016, + -0.03840174525976181, + -0.010860915295779705, + -0.008174900896847248, + 0.011226858012378216, + 0.006865124683827162, + -0.026234611868858337, + -0.012117106467485428, + -0.02151043340563774, + -0.01331847719848156, + -0.04074940085411072, + -0.020943596959114075, + 0.010295008309185505, + 0.01935785450041294, + 0.0141595508903265, + -0.0069971089251339436, + 0.010305539704859257, + -0.031100885942578316, + -0.03369555249810219, + 0.0063235023990273476, + 0.012160017155110836, + 0.01596391759812832, + 0.01945003680884838, + 0.025926627218723297, + 0.047291312366724014, + 0.010067654773592949, + -0.07561387121677399, + 0.02841571718454361, + 0.08344573527574539, + 0.025091663002967834, + -0.05866618454456329, + -0.023215536028146744, + 0.010129979811608791, + 0.0070272996090352535, + 0.030519288033246994, + 0.020349742844700813, + 0.03193196281790733, + 0.02163071557879448, + 0.007802088279277086, + -0.017159687355160713, + 0.006346799433231354, + 0.0019116055918857455, + 0.0032490678131580353, + -0.05553149804472923, + -0.05411277711391449, + -0.01183532178401947, + 0.02885420061647892, + 0.008056625723838806, + -0.01690463349223137, + 0.02980504371225834, + 0.02601982280611992, + 0.0024248752743005753, + -0.04568489268422127, + -0.059419870376586914, + -0.017820997163653374, + 0.02222408913075924, + -0.004268050193786621, + 0.03311891481280327, + -0.0015310072340071201, + 0.05660521611571312, + 0.01271302904933691, + -0.03344590589404106, + -0.06426416337490082, + 0.007599553093314171, + 0.015477677807211876, + 0.03765967860817909, + 0.001688901917077601, + 0.008558632805943489, + 0.02023659087717533, + -0.01060774177312851, + 0.04208198934793472, + -0.023999478667974472, + -0.018776431679725647, + 0.01173339132219553, + 0.008784386329352856, + 0.06079649180173874, + 0.018329249694943428, + 0.05578174442052841, + 0.028948193415999413, + 0.02327078953385353, + -0.02214830368757248, + 0.02962309867143631, + -0.009815710596740246, + -0.025730691850185394, + -0.03641600161790848, + 0.028738558292388916, + 0.03375272452831268, + -0.0808621495962143, + 0.027478592470288277, + 0.023884281516075134, + -0.01936512254178524, + -0.02898937277495861, + -0.009029894135892391, + -0.02433745190501213, + -0.02527046762406826, + 0.017668932676315308, + -0.017960311844944954, + 0.02162018232047558, + -0.027035553008317947, + -0.03913678973913193, + 0.03538290411233902, + -0.0023985961452126503, + 0.005432508885860443, + -0.04279665648937225, + -0.08217481523752213, + 0.008328234776854515, + 0.06012335047125816, + -0.005808075424283743, + -0.042725302278995514, + -0.08090813457965851, + -0.00961296446621418, + -0.02061052806675434, + 0.045730650424957275, + 0.009466120973229408, + 0.02821718342602253, + -0.01650398224592209, + -0.05235166847705841, + 0.02819492295384407, + -0.010357261635363102, + -0.1239808201789856, + 0.015123661607503891, + -0.0035754621494561434, + 0.031257856637239456, + 0.07327957451343536, + 0.04590960964560509, + 0.007331635802984238, + 0.012738228775560856, + 0.014481031335890293, + 0.04938878118991852, + 0.031054899096488953, + 0.03577987849712372, + -0.01635325886309147, + 0.007684042211622, + -0.007105687633156776, + -0.012217455543577671, + -0.016167744994163513, + -0.01043461449444294, + -0.04367581382393837, + -0.005092198494821787, + 0.039496008306741714, + -0.02481965348124504, + -0.013607596978545189, + 0.0053426846861839294, + 0.02854790724813938, + 0.036633554846048355, + -0.03149107098579407, + -0.07302901893854141, + -0.025922557339072227, + -0.026204127818346024, + -0.00029289809754118323, + -4.641704435925931e-05, + 0.011377382092177868, + -0.014883219264447689, + 0.02644454874098301, + -0.026150649413466454, + 0.010796959511935711, + 0.00863705575466156, + 0.04814739152789116, + 0.004349608905613422, + -0.02368510700762272, + 0.00484827533364296, + -0.023767121136188507, + -0.005391441285610199, + 0.027563581243157387, + -0.04342354089021683, + 0.0562124103307724, + -0.028658229857683182, + 0.013039467856287956, + 0.022931277751922607, + -0.04226718097925186, + 0.08685541898012161, + -0.05197320505976677, + 0.029905730858445168, + 0.019855761900544167, + 0.0017473670886829495, + -0.011203106492757797, + -0.0257972851395607, + -0.04032841697335243, + 0.010996139608323574, + -0.0035474868491292, + 0.0020514235366135836, + -0.017083827406167984, + 0.008112458512187004, + -0.037569280713796616, + 0.040926866233348846, + 0.04130159690976143, + 0.0035788477398455143, + 0.004372786730527878, + -0.03243618458509445, + 0.005391295067965984, + -0.0008393130265176296, + -0.011016782373189926, + 0.019176671281456947, + -0.014875691384077072, + -0.0014050632016733289, + -0.0026878875214606524, + 0.04662948101758957, + -0.003091873601078987, + 0.0029488196596503258, + 0.0395694337785244, + -0.027206262573599815, + 0.008268464356660843, + 0.03336656093597412, + -0.035684142261743546, + -0.055481113493442535, + -0.0003976675507146865, + -0.11998336762189865, + -0.019993161782622337, + 0.005563848651945591, + 0.0030626945663243532, + 0.01251024380326271, + 0.00821616966277361, + -0.08174630254507065, + -0.018445704132318497, + 0.018239300698041916, + 0.0014673300320282578, + -0.021551089361310005, + 0.05762818828225136, + -0.01782100461423397, + 0.01711231656372547, + -0.006833589170128107, + 0.010977971367537975, + -0.035241466015577316, + 0.009446471929550171, + -0.06523223221302032, + -0.02706906385719776, + 0.015774749219417572, + -0.04539963975548744, + -0.006979778874665499, + -0.021131981164216995, + -0.045034993439912796, + 0.03045966662466526, + -0.08414740860462189, + 0.024783290922641754, + -0.01758471131324768, + 0.002313473494723439, + -0.02641209587454796, + -0.041919369250535965, + 0.01867806352674961, + -0.04589199274778366, + -0.013311188668012619, + -0.07181262224912643, + -0.010351954959332943, + 0.01597472093999386, + 0.012617691420018673, + -0.012923354282975197, + 0.011767893098294735, + -0.1313437521457672, + -0.006795017514377832, + 0.011815851554274559, + -0.03661384806036949, + 0.00845856312662363, + 0.027802972123026848, + 0.0016519064083695412, + -0.017753561958670616, + 0.002405554288998246, + -0.06186468154191971, + 0.011924199759960175, + 0.04195103794336319, + -0.03311200439929962, + 0.021020960062742233, + 0.043573882430791855, + 0.027856802567839622, + -0.008232509717345238, + -0.04269355535507202, + -0.015130288898944855, + 0.01146920956671238, + -0.025562701746821404, + 0.05488944798707962, + 0.06376214325428009, + 0.0610077939927578, + 0.0004668883339036256, + 0.027121732011437416, + 0.03777396306395531, + 0.029448973014950752, + 0.0012956318678334355, + 0.0008268951787613332, + 0.004818913526833057, + -0.04553597792983055, + 0.020621169358491898, + -0.0352688729763031, + -0.028474684804677963, + 0.017515385523438454, + -0.039859168231487274, + 0.02982478030025959, + 0.00986923836171627, + -0.031772978603839874, + 0.035548511892557144, + 0.015785424038767815, + -0.03632344678044319, + -0.026641426607966423, + 0.00985776912420988, + 0.0029316016007214785, + 0.017022060230374336, + -0.023965099826455116, + -0.03629251569509506, + 0.001566098420880735, + 0.030588636174798012, + 0.03675353527069092, + -0.013431452214717865, + 0.018015917390584946, + 0.05254949629306793, + -0.023130018264055252, + 0.008238743990659714, + 0.019110828638076782, + 0.02910495363175869, + 0.029067592695355415, + -0.03124379552900791, + -0.02412203699350357, + 0.03894459083676338, + -0.04686544090509415, + 0.0273443516343832, + -0.016168421134352684, + 0.054006531834602356, + -0.02973139099776745, + 0.0008854016778059304, + -0.013308584690093994, + 0.02462823875248432, + -0.007578092627227306, + -0.005129495169967413, + 0.007328803651034832, + -0.010182398371398449, + 0.012911831960082054, + -0.002772510051727295, + -0.02808910235762596, + -0.06790341436862946, + 0.03395843133330345, + 0.0011929564643651247, + -0.03832771256566048, + 0.034181978553533554, + -0.055798888206481934, + -0.06969967484474182, + 0.033318594098091125, + 0.02946729026734829, + -0.0033986237831413746, + -0.011183775961399078, + 0.016310736536979675, + 0.012437685392796993, + -0.006600769702345133, + -0.044449690729379654, + 0.00752138951793313, + 0.020080115646123886, + 0.019219567999243736, + 0.04007965326309204, + -0.009679327718913555, + -0.02177191898226738, + -0.029048817232251167, + -0.007733186241239309, + -0.024593550711870193, + -0.012603585608303547, + 0.0299990214407444, + 0.04555125534534454, + 0.0016765783075243235, + -0.04777652025222778, + -0.015034696087241173, + 0.03150293976068497, + -0.026623418554663658, + -0.0016517133917659521, + -0.03974175825715065, + 0.021216029301285744, + 0.022231634706258774, + -0.061991434544324875, + 0.021548397839069366, + 0.03639332950115204, + -0.025554396212100983, + -0.013367344625294209, + -0.051052507013082504, + 0.028714435175061226, + -0.04755741357803345, + -0.009703321382403374, + 0.0044146995060145855, + 0.004473635461181402, + 0.018064118921756744, + 0.00800161063671112, + -0.015187159180641174, + 0.0069779460318386555, + -0.02422511577606201, + -0.025262102484703064, + 0.021096330136060715, + -0.05517590790987015, + 0.017392469570040703, + -0.03690740466117859, + 0.0022961623035371304, + -0.034514911472797394, + -0.03398706763982773, + 0.008078361861407757, + 0.01669560745358467, + -0.02027801238000393, + 0.013669920153915882, + 0.00803895853459835, + 0.023919997736811638, + 0.011043068021535873, + 0.05809001252055168, + 0.027374353259801865, + -0.002498184097930789, + 0.024321388453245163, + -0.01020398736000061, + -0.01068838406354189, + -0.025764862075448036, + 0.025057049468159676, + -0.02013850398361683, + 0.04507443681359291, + 0.05029817298054695, + -0.013669111765921116, + 0.024364974349737167, + 0.012712243013083935, + 0.00334064569324255, + 0.01776021346449852, + -0.0205825362354517, + 0.004292105790227652, + -0.0731062963604927, + 0.02857024036347866, + 0.01003678236156702, + -0.021345844492316246, + -0.032577816396951675, + -0.0004939412465319037, + 0.048535630106925964, + 0.0364576056599617, + 0.008058618754148483, + -0.0381680466234684, + -0.03001151606440544, + -0.06669910252094269, + 0.00833064690232277, + 0.008281314745545387, + -0.03587643429636955, + -0.007170904893428087, + -0.018536847084760666, + 0.02032855711877346, + -0.011774654500186443, + 2.2722593712387607e-05, + 0.00862739235162735, + 0.048012059181928635, + -0.023637594655156136, + 0.03303992748260498, + 0.022843481972813606, + -0.046815551817417145, + 0.029319075867533684, + 0.003032280597835779, + 0.0035150947514921427, + 0.014282256364822388, + -0.018129395321011543, + 0.007639103103429079, + -0.0017852949677035213, + 0.013314040377736092, + 0.04738811030983925, + 0.02553829364478588, + -0.012937028892338276, + -0.03974917158484459, + -0.011015685275197029, + 0.014931512996554375, + 0.03208503872156143, + -0.014876926317811012, + 0.016916124150156975, + 0.00824058149009943, + -0.04252320155501366, + -0.04378431662917137, + -0.018768485635519028, + -0.04447785019874573, + 0.001358178909868002, + 0.04246313497424126, + 0.04284074530005455, + 0.013189034536480904, + -0.050785768777132034, + 0.012228730134665966, + -0.008466193452477455, + -0.010724056512117386, + -0.06936168670654297, + -0.025235507637262344, + 0.008871329948306084, + -0.016640909016132355, + -0.05786871910095215, + -0.028014324605464935, + 0.03481582552194595, + -0.04308187589049339, + 0.02534220926463604, + -0.034041937440633774, + -0.009288427419960499, + 0.05344615876674652, + -0.016503188759088516, + -0.036119602620601654, + 0.024746127426624298, + -0.005038433242589235, + -0.006375861819833517, + 0.008316660299897194, + 0.004907976370304823, + 0.008697985671460629, + 0.03197947144508362, + 0.002990345237776637, + -0.001880053780041635, + -0.006074682809412479, + 0.026214919984340668, + -0.0017657341668382287, + -0.03756144270300865, + -0.03898089751601219, + 0.032389234751462936, + 0.004100888501852751, + 0.013049622997641563, + -0.003694047685712576, + 0.04860926792025566, + -0.0017818879568949342, + 0.00818896759301424, + -0.011320254765450954, + 0.008039957843720913, + -0.036659665405750275, + 0.006866625044494867, + -0.00039012718480080366, + 0.03426890820264816, + -0.035602353513240814, + 0.01814351975917816, + 0.000508482160512358, + 0.03874604031443596, + -0.02119818702340126, + 0.0595502071082592, + 0.05354145169258118, + -0.011688278056681156, + -0.00343037536367774, + -0.020921843126416206, + 0.03694257512688637, + 0.010798892937600613, + 0.021537763997912407, + -0.03348587453365326, + 0.04444275051355362, + 0.04542984068393707, + -0.0055689504370093346, + 0.0219789519906044, + 0.035629503428936005, + -0.04231975972652435, + -0.04517555981874466, + -0.02195664681494236, + 0.014751222915947437, + -0.06206899881362915, + 0.025942474603652954, + 0.022820886224508286, + -0.034609053283929825, + 0.07854331284761429, + -0.021685775369405746, + -0.011504153721034527, + 0.06514379382133484, + 0.002229187171906233, + -0.008135022595524788, + 0.005736647639423609, + 0.030907586216926575, + 0.011347774416208267, + -0.044284719973802567, + -0.039789605885744095, + -0.04761926829814911, + 0.026273027062416077, + -0.016857611015439034, + -0.007401544600725174, + -0.04969898611307144, + -0.005016796290874481, + -0.023250099271535873, + -0.025816166773438454, + 0.08153647929430008, + 0.003940395545214415, + -0.016017720103263855, + 0.008225373923778534, + 0.025289123877882957, + 0.01480386033654213, + 0.009449956007301807, + 0.02472282014787197, + 0.03916936367750168, + 0.001103681861422956, + -0.008895275183022022, + -0.014672272838652134, + -0.030066542327404022, + 0.004286613781005144, + 0.051166992634534836, + 0.0033811957109719515, + 0.0030277445912361145, + 0.014144095592200756, + -0.018622349947690964, + -0.009544783271849155, + 0.01751655712723732, + 0.057630591094493866, + -0.009884262457489967, + 0.0418880470097065, + -0.02762674354016781, + 0.024897757917642593, + 0.008964973501861095, + 0.0063365064561367035, + 0.012935923412442207, + -0.0386844277381897, + 0.032826751470565796, + 0.039490215480327606, + -0.04640565440058708, + -0.019936848431825638, + -0.023781467229127884, + 0.014684774912893772, + 0.0047798166051507, + -0.0193043015897274, + -0.013005095534026623, + 0.01810266077518463, + 0.01024573016911745, + -0.023701608180999756, + 0.04281593859195709, + 0.012953681871294975, + -0.010840795002877712, + -0.003688809461891651, + 0.0005952267092652619, + -0.006745221093297005, + -0.047273606061935425, + -0.02756447158753872, + -0.02264632098376751, + 0.04847089573740959, + -0.017517706379294395, + 0.045331597328186035, + -0.013637796975672245, + 0.03789231926202774, + -0.017178431153297424, + -0.011040088720619678, + -0.0328754223883152, + 0.028707189485430717, + -0.04031014069914818, + 0.028676390647888184, + -0.003712086472660303, + -0.008281389251351357, + 0.050863608717918396, + -0.016290882602334023, + 0.030955500900745392, + 0.014420293271541595, + -0.04250505939126015, + 0.003708326956257224, + -0.013546382077038288, + 0.005098892375826836, + -0.021200306713581085, + 0.019131451845169067, + 0.037517089396715164, + 0.05479312315583229, + 0.004753248766064644, + 0.05973445624113083, + -0.0271561611443758, + 0.034923989325761795, + 0.06148823723196983, + -0.00923852063715458, + -0.00593947060406208, + 0.009495709091424942, + -0.03913149982690811, + -0.0021080845035612583, + 0.02249208278954029, + 0.0061247581616044044, + 0.022766731679439545, + 0.04972776770591736, + -0.07027044892311096, + -0.010602151975035667, + -0.026530984789133072, + -0.005348615348339081, + 0.030924182385206223, + -0.009936323389410973, + 0.053696129471063614, + 0.014511631801724434, + -0.013741341419517994, + 0.0029767442028969526, + 0.00856291875243187, + 0.011079513467848301, + -0.0001825087092583999, + 0.0445152148604393, + -0.015028102323412895, + -0.03227228298783302, + -0.002822551177814603, + 0.009770545177161694, + -0.004461274482309818, + 0.017394021153450012, + -0.0020489580929279327, + -0.02351670153439045, + -0.031527210026979446, + -0.01810292713344097, + -0.012315943837165833, + -0.033426567912101746, + -0.043387144804000854, + 0.03718810901045799, + 0.006547567900270224, + 0.010720668360590935, + -0.013349048793315887, + 0.0013498235493898392, + -0.007061588577926159, + -0.0008796956390142441, + -0.043345339596271515, + -0.026667172089219093, + -0.04002092406153679, + -0.025045234709978104, + 0.010753173381090164, + -0.01879621297121048, + 0.004832423757761717, + -0.01463213562965393, + 0.0037174655590206385, + 0.06346937268972397, + -0.0016891597770154476, + 0.00201041460968554, + 0.0030489908531308174, + -0.046572186052799225, + 0.02596159838140011, + 0.0320078544318676, + -0.0316120944917202, + 0.015974432229995728, + 0.011276951059699059, + -0.06911441683769226, + 0.07781557738780975, + 0.031729985028505325, + 0.013931452296674252, + -0.02492275834083557, + -0.03929726034402847, + 0.004702131263911724, + 0.013506541028618813, + 0.021288758143782616, + -0.018141210079193115, + 0.01655624993145466, + 0.04874448850750923, + 0.007331750821322203, + -0.0026115088257938623, + 0.01404540054500103, + -0.006218560039997101, + 0.02182571031153202, + -0.009493456222116947, + -0.06686627864837646, + -0.01898590847849846, + 0.006392414215952158, + -0.012463917024433613, + -0.02773560956120491, + 0.04568898677825928, + 0.006803406402468681, + -0.027913326397538185, + 0.019240038469433784, + 0.0031698723323643208, + 0.018101947382092476, + -0.021650271490216255, + 0.007796319667249918, + 0.05763092637062073, + -0.007627936080098152, + -0.0034458348527550697, + 0.002139657037332654, + 0.03164643794298172, + 0.07557818293571472, + -0.026029715314507484, + -9.56168514676392e-06, + -0.014966558665037155, + -0.02065892517566681, + 0.0027494500391185284, + -0.03410615399479866, + 0.05040125921368599, + -0.011408629827201366, + -0.01391417346894741, + -0.03710353747010231, + 0.024806398898363113, + 0.029019225388765335, + 0.004721148405224085, + -0.0067105102352797985, + 0.03918052464723587, + -0.028851447626948357, + 0.01751328445971012, + 0.0037225387059152126, + 0.05112246423959732, + 0.038153596222400665, + 0.008455389179289341, + -0.04839229956269264, + 0.005162193439900875, + -0.043613288551568985, + 0.031274836510419846, + 0.012775666080415249, + -0.015468068420886993, + 0.012474402785301208, + 0.03194411098957062, + 0.00023752107517793775, + 0.006015520077198744, + -0.03213299810886383, + 0.015058466233313084, + 0.023483287543058395, + -0.030569739639759064, + 0.002519492991268635, + 0.048503328114748, + -0.007525857072323561, + 0.03390709310770035, + -0.019329288974404335 + ], + "start_index": 29550, + "end_index": 30280, + "token_count": 143, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "412d4d23-630d-5ee3-a23d-cfc9d711e042", + "_source": { + "text": "\n\nEl Apéndice X cubre el nivel léxico. Las Secciones I–IX cubren el nivel sintáctico.\n\n---\n\n# X.13 Tokens producidos por el lexer\n\nEl lexer produce los siguientes tokens:\n\n\n\nIDENTIFIER\nINTEGER\nFLOAT\nSTRING\n\nASSIGN\nPLUS\nMINUS\nMULT\nDIV\nMOD\nPOWER\n\nEQ\nNEQ\nLT\nGT\nLTE\nGTE\n\nAND\nOR\nNOT\nIN\nIS\n\nLPAREN\nRPAREN\nLBRACKET\nRBRACKET\nLBRACE\nRBRACE\nCOMMA\nDOT\nCOLON\n\nDEREF\n\nTrue\nFalse\nNone\n\nEOL", + "embedding": [ + 0.030515361577272415, + 0.02068052627146244, + -0.010463456623256207, + -0.10555470734834671, + -0.019635532051324844, + 0.05447431653738022, + -0.053890909999608994, + 0.0322577990591526, + -0.021382877603173256, + -0.05428556725382805, + 0.061285607516765594, + -0.05453383922576904, + 0.06025601550936699, + -0.009240676648914814, + -0.036296598613262177, + 0.050901930779218674, + 0.03871733322739601, + 0.013513567857444286, + -0.03522525727748871, + -0.04068982973694801, + -0.02790350839495659, + 0.005141077563166618, + -0.07638189941644669, + 0.08563587069511414, + -0.018747026100754738, + 0.013385248370468616, + -0.049380913376808167, + 0.02656540833413601, + 0.0353979654610157, + -0.03499196097254753, + 0.02608315460383892, + -0.0749908834695816, + -0.07202234864234924, + -0.010409916751086712, + 0.0030220835469663143, + -0.014356589876115322, + -0.011770756915211678, + -0.03802751749753952, + 0.049860790371894836, + 0.013261259533464909, + 0.008714801631867886, + 0.046387895941734314, + -0.031711187213659286, + 0.008995701558887959, + 0.00614085653796792, + -0.05825604125857353, + -0.012149439193308353, + 0.005160598084330559, + 0.019942352548241615, + 0.0045637693256139755, + -0.037452418357133865, + 0.006577102467417717, + 0.04296639934182167, + 0.005886304657906294, + -0.054271768778562546, + 0.02528320625424385, + -0.014388348907232285, + 0.01664106547832489, + -0.0030226479284465313, + 0.033904317766427994, + 0.052611980587244034, + -0.022493185475468636, + -0.04448904097080231, + 0.015606725588440895, + 0.029286935925483704, + -0.02393895573914051, + 0.01970095746219158, + 0.008329558186233044, + -0.02236802689731121, + 0.0014444536063820124, + -0.013753771781921387, + 0.00039916668902151287, + 0.008348186500370502, + 0.050792284309864044, + 0.04813283309340477, + -0.0011839127400889993, + 0.012884417548775673, + -0.044965069741010666, + 0.0023598154075443745, + 0.07002874463796616, + 0.013002288527786732, + 0.041739631444215775, + 0.039506785571575165, + -0.012822957709431648, + 0.04114959388971329, + 0.06853990256786346, + -0.08750678598880768, + -0.022922564297914505, + 0.03469064086675644, + 0.060949862003326416, + -0.02139616757631302, + 0.000948932662140578, + -0.020328568294644356, + -0.03649261221289635, + -0.0028922392521053553, + -0.001932821935042739, + -0.015382111072540283, + 0.042625412344932556, + -0.027692286297678947, + 0.009282433427870274, + -0.03356817737221718, + -0.05387216433882713, + -0.031649149954319, + 0.04797840490937233, + 0.0024428656324744225, + 0.06991758942604065, + -0.015954088419675827, + 0.0320073626935482, + -0.0293513685464859, + -0.023163992911577225, + -0.0011911659967154264, + -0.006188902538269758, + 0.034758783876895905, + 0.07479295879602432, + 0.021739263087511063, + -0.03835326433181763, + -0.008353044278919697, + -0.030768506228923798, + -0.02465035580098629, + 0.00046563916839659214, + -0.012032273225486279, + -0.02576495334506035, + -0.00482246233150363, + -0.0367862805724144, + 0.03275031968951225, + 0.014408945105969906, + -0.05607466772198677, + -0.018140368163585663, + 0.02559918537735939, + 0.012908082455396652, + -0.009464637376368046, + -0.021579453721642494, + -0.015711573883891106, + -0.006701657548546791, + -0.007404939271509647, + -0.0327947698533535, + -0.01705014705657959, + -0.01912020705640316, + 0.03128694370388985, + -0.01709035597741604, + -0.015994921326637268, + 0.008718357421457767, + 0.02527269907295704, + 0.006844230927526951, + 0.024318786337971687, + 0.018299495801329613, + 0.007373325061053038, + 0.01317952573299408, + 0.007197737228125334, + 0.027448546141386032, + -0.006914566736668348, + -0.002875277539715171, + -0.00672741187736392, + -0.002817132044583559, + -0.04507143422961235, + 0.002320572268217802, + 0.003963609226047993, + 0.012302492745220661, + 0.0051357741467654705, + 0.03487012907862663, + -0.005443111527711153, + -0.005289333872497082, + -0.026669053360819817, + -0.03618672490119934, + 0.0005139987915754318, + 0.014405179768800735, + -0.047872744500637054, + -0.03753620386123657, + 0.013913165777921677, + 0.053340911865234375, + -0.011695915833115578, + 0.007855144329369068, + -0.007193096447736025, + 0.06196143850684166, + -0.00705871544778347, + 0.0037355332169681787, + -0.023666460067033768, + -0.013626535423099995, + -0.044520303606987, + -0.0037901310715824366, + 0.007706104312092066, + -0.00953417643904686, + -0.013736521825194359, + 0.0018003510776907206, + 0.020978739485144615, + 0.05913442373275757, + -0.010119090788066387, + -0.0024728563148528337, + 0.016447095200419426, + -0.006303726229816675, + 0.015032164752483368, + 0.0018873716471716762, + -0.08283425867557526, + 0.0011322753271088004, + 0.005208712071180344, + -0.01373343076556921, + -0.0320233516395092, + -0.03635818883776665, + 0.0043584550730884075, + -0.0027362850960344076, + 0.05029755458235741, + 0.004562451504170895, + -0.0005105729214847088, + 0.010815514251589775, + -0.04624059423804283, + -0.0050001624040305614, + -0.023495396599173546, + 0.03151965141296387, + -0.029222430661320686, + 0.0018814759096130729, + -0.00032508489675819874, + 0.029757607728242874, + -0.04215044155716896, + -0.041821423918008804, + -0.00992570910602808, + -0.0012834221124649048, + -0.001843766076490283, + -0.007990146987140179, + 0.00013389464584179223, + 0.030609088018536568, + 0.024655431509017944, + 0.029220741242170334, + -0.03925514221191406, + 0.01119638979434967, + 0.06061349809169769, + 0.010466103442013264, + -0.010982117615640163, + -0.028502022847533226, + -0.026746589690446854, + 0.03393659368157387, + 0.026897825300693512, + 0.015939651057124138, + 0.01897093839943409, + -0.030847907066345215, + 0.01665826141834259, + -0.00347267952747643, + -0.009249022230505943, + -0.007317214272916317, + 0.04707283154129982, + -0.03267393261194229, + -0.007975341752171516, + 0.0006927704089321196, + 0.01905220001935959, + 0.017945513129234314, + 0.007928425446152687, + 0.020012594759464264, + 0.014017495326697826, + -0.015470277518033981, + -0.006411926355212927, + -0.01271931454539299, + 0.0672975406050682, + 0.017423948273062706, + 0.024716051295399666, + -0.00012637143663596362, + 0.001532951951958239, + 0.018765676766633987, + 0.0024915540125221014, + -0.028303202241659164, + -0.007104382384568453, + -0.01420449186116457, + 0.015992091968655586, + -0.02716364525258541, + -0.02507646195590496, + 0.004472317174077034, + -0.017674380913376808, + 9.889277862384915e-05, + -0.0033994221594184637, + -0.011056901887059212, + -0.03087879903614521, + -0.03357791528105736, + -0.002684307284653187, + 0.013989762403070927, + -0.0019046143861487508, + 0.020611213520169258, + 0.036976803094148636, + 0.04922541603446007, + 0.02384999580681324, + -0.08688143640756607, + 0.009887080639600754, + 0.03565350919961929, + 0.03695228695869446, + -0.03885732218623161, + -0.020015355199575424, + -0.03252270817756653, + -0.010558991692960262, + 0.03777480497956276, + 0.04990936443209648, + -0.0139063885435462, + 0.029256226494908333, + -0.029688481241464615, + -0.004561304580420256, + 0.027533411979675293, + -0.030412746593356133, + 0.0027007674798369408, + -0.058527883142232895, + -0.005988525692373514, + 0.015970950946211815, + 0.050403300672769547, + -0.013489552773535252, + -0.006362656597048044, + 0.011195633560419083, + 0.029679495841264725, + 0.005831586197018623, + -0.028610115870833397, + -0.07581830769777298, + -0.005017559044063091, + 0.03441483527421951, + 0.009733512066304684, + 0.03480129688978195, + 0.0009821646381169558, + 0.019624337553977966, + -0.0007265300955623388, + -0.009053388610482216, + -0.04360117390751839, + 0.018659625202417374, + 0.03693373501300812, + 0.0008228945080190897, + 0.03245440497994423, + 0.03644367307424545, + 0.025903047993779182, + -0.012882431969046593, + -0.006016156170517206, + 0.012413039803504944, + -0.03680456802248955, + 0.057814303785562515, + 0.011908069252967834, + 0.07259425520896912, + -0.004461698699742556, + 0.05946727469563484, + 0.03091314248740673, + 0.03082793764770031, + 0.019866595044732094, + 0.0649794414639473, + -0.015824725851416588, + -0.011713435873389244, + -0.01952490024268627, + -0.02347070910036564, + 0.016378382220864296, + -0.0520404651761055, + 0.009968622587621212, + 0.02804168500006199, + 0.010583212599158287, + -0.03151453658938408, + 0.03208683431148529, + -0.04991825297474861, + -0.06993409246206284, + 0.037699028849601746, + -0.0120245311409235, + -0.0012810255866497755, + 0.005231100600212812, + -0.011786836199462414, + 0.014028288424015045, + 0.004976626019924879, + 0.003373576095327735, + -6.951936666155234e-05, + -0.07743217796087265, + -0.01113773975521326, + 0.047787778079509735, + -0.005755254998803139, + -0.016940468922257423, + -0.06650569289922714, + -0.0371088907122612, + -0.024079320952296257, + 0.07601939141750336, + 0.03187185525894165, + 0.004088150337338448, + -0.006876626517623663, + -0.025833485648036003, + 0.03388701006770134, + 0.0176487285643816, + -0.07747900485992432, + 0.042746808379888535, + 0.024618202820420265, + 0.021118052303791046, + 0.10236681252717972, + 0.0858270451426506, + 0.006993195973336697, + 0.03565923124551773, + 0.01994599774479866, + 0.011818019673228264, + 0.011494483798742294, + 0.008041494525969028, + -0.0423056036233902, + -0.020332826301455498, + -0.016144242137670517, + -0.002099669072777033, + -0.009959147311747074, + -0.04294556379318237, + -0.06397814303636551, + 0.008558467961847782, + 0.02877170220017433, + -0.01010494027286768, + 0.010901270434260368, + 0.016771763563156128, + 0.011977596208453178, + 0.006532774306833744, + -0.01984444633126259, + -0.054040614515542984, + -0.01950337551534176, + 0.01742955669760704, + -0.008297440595924854, + -0.007782534696161747, + -0.013682328164577484, + -0.012178177945315838, + 0.03743866831064224, + 0.014414144679903984, + 0.02630394697189331, + -0.0024443434085696936, + -0.030111711472272873, + -0.0016023037023842335, + -0.009286843240261078, + 0.017575662583112717, + 0.0034784029703587294, + -0.025372104719281197, + 0.009106754325330257, + -0.03682602196931839, + 0.05072096735239029, + -0.030806969851255417, + 0.0142204063013196, + 0.014476295560598373, + 0.0005711079575121403, + 0.07924916595220566, + -0.038417667150497437, + -0.0023951365146785975, + 0.035044051706790924, + -0.007621409837156534, + -0.04785773158073425, + -0.020268579944968224, + -0.05731843411922455, + -0.0325780026614666, + -0.011498385109007359, + -0.038992688059806824, + -0.06492115557193756, + 0.0071832239627838135, + -0.02779512107372284, + 0.009613682515919209, + 0.07117150723934174, + 0.04718153923749924, + -0.00566921615973115, + -0.021876519545912743, + 0.005819566547870636, + -0.001971143763512373, + -0.0017251335084438324, + 0.03936947137117386, + -0.05390944331884384, + 0.020629936829209328, + -0.04262612760066986, + 0.048809655010700226, + -0.007299819961190224, + 0.006335285492241383, + 0.024924930185079575, + -0.0065634180791676044, + -0.01855485700070858, + 0.03524619713425636, + -0.03154945746064186, + -0.023079432547092438, + -0.05184724181890488, + -0.0943693295121193, + 0.0009053441463038325, + 0.05179056525230408, + 0.00522339204326272, + 0.002661219798028469, + 0.029673736542463303, + -0.048155006021261215, + -0.08499499410390854, + 0.03143106400966644, + 0.027653802186250687, + -0.011268583126366138, + 0.020100228488445282, + 0.004265548661351204, + -0.00043899379670619965, + -0.00813498254865408, + 0.017069660127162933, + 0.006312659475952387, + -0.0020300475880503654, + -0.025141526013612747, + -0.0161143746227026, + 0.029353633522987366, + -0.059650760143995285, + -0.02659943327307701, + -0.03579307347536087, + -0.0714968666434288, + 0.050780072808265686, + -0.08748529851436615, + 0.014398226514458656, + -0.03150266781449318, + 0.010111797600984573, + -0.021846836432814598, + -0.07064568996429443, + 0.036746855825185776, + -0.017944371327757835, + -0.013094472698867321, + -0.04251139983534813, + -0.007436535786837339, + -0.020796678960323334, + 0.017035309225320816, + -0.014122366905212402, + 0.014038098976016045, + -0.12757617235183716, + -0.004029769450426102, + 0.04514789208769798, + 0.005502707790583372, + -0.005325146950781345, + 0.0076639107428491116, + 0.00467985775321722, + -0.014475381001830101, + -0.020022522658109665, + -0.03311394900083542, + 0.02256026677787304, + 0.038416922092437744, + -0.04955160990357399, + -0.019061699509620667, + 0.01770785264670849, + 0.011278162710368633, + -0.024810511618852615, + -0.009448380209505558, + -0.0011801200453191996, + -0.024085944518446922, + -0.045916423201560974, + 0.04382086545228958, + 0.06743787229061127, + 0.05491580069065094, + 0.0433620847761631, + 0.08120212703943253, + 0.04888797551393509, + 0.03296509012579918, + 0.007093364838510752, + -0.016849657520651817, + -0.033908095210790634, + -0.053570907562971115, + 0.012817999348044395, + -0.05116558447480202, + 0.0005333774024620652, + -0.014513947069644928, + -0.019397059455513954, + 0.04009917005896568, + 0.01387009210884571, + -0.019829582422971725, + 0.030958665534853935, + 0.01759716495871544, + -0.008403602056205273, + -0.019315900281071663, + -0.0022605792619287968, + -0.021000374108552933, + 0.022378508001565933, + -0.03658761829137802, + -0.032686080783605576, + 0.012348749674856663, + 0.04493756219744682, + 0.009393301792442799, + 0.037467990070581436, + 0.02047751471400261, + 0.03714447095990181, + -0.0005561109283007681, + -0.01277907844632864, + 0.01765536330640316, + -0.0007287727785296738, + 0.07069030404090881, + 0.035401713103055954, + 0.005639692768454552, + -0.013914348557591438, + -0.04102008044719696, + 0.005257234908640385, + -0.009869027882814407, + 0.028727369382977486, + 0.015976160764694214, + 0.0005931365303695202, + -0.03195307031273842, + 0.019453272223472595, + -0.03872355818748474, + 0.03191913291811943, + 0.012052888981997967, + 0.014522929675877094, + -0.001564841833896935, + 0.020502176135778427, + -0.014046894386410713, + -0.02892908826470375, + 0.04736192151904106, + -0.010929133743047714, + -0.05689609423279762, + 0.05214204639196396, + -0.01955748349428177, + -0.023739732801914215, + 0.03424341604113579, + 0.03216749429702759, + -0.03462940827012062, + -0.035531748086214066, + -0.003633857471868396, + 0.002570969983935356, + 0.03496246039867401, + -0.03310002386569977, + -0.002772209933027625, + 0.02323629893362522, + 0.016789479181170464, + 0.020303571596741676, + -0.02151108905673027, + -0.013390526175498962, + -0.022966809570789337, + -0.01789373904466629, + -0.012213741429150105, + 0.019817102700471878, + 0.03295707702636719, + 0.023692402988672256, + -0.0214327834546566, + -0.04674097150564194, + -0.011904374696314335, + 0.010017355903983116, + -0.018961459398269653, + -0.011478081345558167, + -0.028471587225794792, + -0.04199972003698349, + 0.0034018682781606913, + -0.046687234193086624, + 0.000483259791508317, + 0.026582013815641403, + -0.058679401874542236, + 0.012814104557037354, + -0.011546737514436245, + 0.009394766762852669, + -0.055259011685848236, + 0.0052703372202813625, + -0.0197072122246027, + 0.024004925042390823, + 0.04244164004921913, + 0.0029474347829818726, + 0.020290181040763855, + -0.0004536486230790615, + -0.08671891689300537, + -0.03554515540599823, + 0.010526233352720737, + -0.03298591822385788, + 0.005692158360034227, + -0.035077054053545, + 0.04091275855898857, + -0.021279387176036835, + -0.058232471346855164, + -0.013901173137128353, + 0.02774813584983349, + -0.021522274240851402, + 0.0013786692870780826, + 0.029699625447392464, + 0.022279564291238785, + 0.005325503647327423, + 0.026388956233859062, + 0.03759108483791351, + 0.0037025599740445614, + -0.010175058618187904, + 0.016358129680156708, + 0.009082519449293613, + 0.019835306331515312, + 0.020997175946831703, + -0.03245628997683525, + 0.006401259917765856, + 0.031007707118988037, + -0.006751089356839657, + 0.07268596440553665, + 0.04880265146493912, + 0.009621228091418743, + -0.0047669424675405025, + -0.019675999879837036, + 0.002739282324910164, + -0.07483267039060593, + 0.05689310282468796, + -0.02974850870668888, + -0.05673122778534889, + -0.0042806826531887054, + 0.010342888534069061, + 0.0469294898211956, + 0.025585215538740158, + 0.0029860599897801876, + 0.014798285439610481, + -0.03207721933722496, + -0.0558491125702858, + 0.02206600084900856, + -0.00017443799879401922, + -0.05020889639854431, + 0.019832780584692955, + -0.01114154513925314, + -0.00037702504778280854, + -0.016809668391942978, + -0.03457359969615936, + 0.013475466519594193, + 0.04828956723213196, + -0.046574801206588745, + 0.0039182864129543304, + -0.03588104248046875, + -0.040871892124414444, + 0.0012893318198621273, + 0.03133004531264305, + 0.002153057837858796, + -0.009283045306801796, + 0.011169257573783398, + 0.0026235810946673155, + -0.03239346668124199, + 0.04000657796859741, + 0.012068931013345718, + 0.023475870490074158, + -0.006804982200264931, + -0.03823687508702278, + 0.015250192023813725, + 0.018937287852168083, + 0.032339103519916534, + -0.019774319604039192, + 0.009235932491719723, + 0.010350586846470833, + -0.015528751537203789, + -0.004510050639510155, + -0.015009274706244469, + -0.07572854310274124, + -0.01691080443561077, + 0.03941613808274269, + 0.03479649871587753, + 0.00998768676072359, + -0.04771452769637108, + 0.02388005331158638, + 0.017913999035954475, + -0.010272612795233727, + -0.060831040143966675, + -0.021866044029593468, + 0.013886738568544388, + -0.026652956381440163, + -0.008774022571742535, + -0.026467563584446907, + -0.00414906395599246, + -0.03856654465198517, + -0.003232361748814583, + -0.016974681988358498, + -0.015613841824233532, + 0.04039613902568817, + -0.04115099087357521, + 0.00014894951891619712, + 0.024361159652471542, + -0.013430571183562279, + 0.024143408983945847, + 0.021995268762111664, + 0.012353598140180111, + -0.011525510810315609, + 0.021298497915267944, + -0.013573144562542439, + -0.027714524418115616, + 0.008428959175944328, + 0.04017835855484009, + -0.04061494395136833, + -0.05653597414493561, + -0.012921303510665894, + 0.004455831833183765, + 0.002416224218904972, + 0.01178772933781147, + -0.005661954637616873, + 0.01458361092954874, + -0.016070647165179253, + 0.011026052758097649, + -0.041265178471803665, + 0.015343882143497467, + -0.030469905585050583, + 0.029926197603344917, + 0.010998178273439407, + 0.041604604572057724, + -0.0043218694627285, + 0.004219915717840195, + 0.000994171597994864, + -0.006385097745805979, + -0.011844146996736526, + 0.032624248415231705, + 0.027876602485775948, + -0.02072315849363804, + 0.03867277130484581, + -0.02081778086721897, + -0.03331329673528671, + -0.0015696120681241155, + -0.005238889716565609, + -0.07046951353549957, + 0.026188312098383904, + 0.05213678628206253, + 0.0143188601359725, + -0.002849928569048643, + 0.009040924720466137, + -0.05991208925843239, + -0.024029051885008812, + -0.03110787458717823, + -0.012303904630243778, + -0.062312088906764984, + 0.020917871966958046, + 0.00895980279892683, + -0.03740561380982399, + 0.04284762963652611, + -0.027422649785876274, + -0.015289142727851868, + 0.040031831711530685, + 0.017416128888726234, + -0.00848446972668171, + 0.013420380651950836, + 0.004158934578299522, + 0.011883494444191456, + -0.03600404039025307, + -0.04599521681666374, + -0.02671699970960617, + 0.0020902601536363363, + 0.004179576877504587, + -0.010500590316951275, + -0.0416935496032238, + -0.006202458869665861, + -0.003263653488829732, + -0.02904953621327877, + 0.08299991488456726, + -0.005653805565088987, + -0.04138518124818802, + 0.0046105957590043545, + -0.021824821829795837, + -0.002754154149442911, + 0.012613015249371529, + 0.06795696914196014, + 0.03659738227725029, + -0.005103373434394598, + -0.009658437222242355, + 0.02973870374262333, + -0.05593664571642876, + -0.02399742789566517, + 0.02452630177140236, + -0.008090910501778126, + -0.019480722025036812, + 0.028126895427703857, + -0.054472316056489944, + -0.013658742420375347, + 0.017854075878858566, + 0.043720927089452744, + 0.008449390530586243, + 0.05072806775569916, + -0.0014223807957023382, + -0.004900109488517046, + 0.039204470813274384, + 0.011482302099466324, + 0.01928631402552128, + -0.04304616525769234, + 0.0063201203010976315, + 0.029098015278577805, + -0.05678599700331688, + -0.055464763194322586, + -0.03911101073026657, + -0.018616950139403343, + -0.03033619374036789, + -0.03618510812520981, + -0.021393176168203354, + -0.0007581524550914764, + -0.0030235976446419954, + -0.003820637706667185, + 0.029310548678040504, + 0.015612841583788395, + -0.024330684915184975, + -0.04886498674750328, + -0.01632649265229702, + -0.0042715552262961864, + -0.07754965871572495, + -0.019221637398004532, + -0.03958780691027641, + 0.02513892762362957, + 0.013054436072707176, + 0.054162006825208664, + -0.017945021390914917, + 0.012248298153281212, + -0.024097643792629242, + 0.0018459330312907696, + -0.011916374787688255, + 0.045027151703834534, + -0.03621983528137207, + 0.042998056858778, + -0.030298786237835884, + 0.0014631395461037755, + 0.04776828736066818, + -0.021599482744932175, + 0.04148555546998978, + -0.009187036193907261, + -0.06070365011692047, + -0.013413198292255402, + -0.033420100808143616, + -0.001475370954722166, + -0.04460400715470314, + 0.020260408520698547, + 0.03250478580594063, + 0.06571651995182037, + 0.012082017958164215, + 0.05093119293451309, + -0.04758128151297569, + 0.05308648198843002, + 0.02132122963666916, + -0.011393924243748188, + 0.0035458526108413935, + -0.025903739035129547, + -0.033656056970357895, + 0.01051640510559082, + 0.013320588506758213, + -0.023535678163170815, + -0.016032911837100983, + 0.0185362808406353, + -0.05329256132245064, + -0.010293511673808098, + -0.036345288157463074, + -0.012673134915530682, + 0.021926676854491234, + -0.005323817487806082, + 0.04625578597187996, + 0.018357517197728157, + -0.027932966127991676, + 0.025516420602798462, + -0.013434282504022121, + 0.03700128197669983, + 0.04105667769908905, + 0.028748655691742897, + -0.005168931093066931, + -0.002916526049375534, + -0.02991025149822235, + 0.02867722511291504, + 0.0011177886044606566, + 0.04081231728196144, + -0.015760313719511032, + -0.0386490635573864, + -0.03414878994226456, + -0.0046001155860722065, + -0.011662134900689125, + -0.03844004124403, + -0.04438454285264015, + 0.017917145043611526, + 0.01746424101293087, + 0.028463125228881836, + -0.017546163871884346, + 0.025293486192822456, + -0.004917514976114035, + -0.022824937477707863, + -0.022582560777664185, + -0.03138534352183342, + -0.0668572410941124, + -0.003927781246602535, + 0.03174616023898125, + 0.027392778545618057, + -0.006510916166007519, + -0.03889045491814613, + 0.026688631623983383, + -0.012952138669788837, + 0.0010589448502287269, + -0.008610214106738567, + 0.02818426489830017, + -0.043771106749773026, + -0.011223976500332355, + 0.011440898291766644, + -0.006515234708786011, + 0.004455807153135538, + 0.04725264012813568, + -0.04511507600545883, + 0.04126666858792305, + 0.013943145982921124, + 0.024268588051199913, + -0.011720987036824226, + -0.038557153195142746, + -0.011486680246889591, + 0.010930970311164856, + 0.016443749889731407, + 0.03462029993534088, + 0.024351727217435837, + 0.04208964854478836, + 0.014304152689874172, + -0.021564045920968056, + 0.0007603811100125313, + 0.028432641178369522, + -0.02065935544669628, + 0.024121606722474098, + -0.042042020708322525, + -0.00681177107617259, + 0.046252913773059845, + 0.007616541348397732, + 0.005215127486735582, + 0.035008374601602554, + 0.030329497531056404, + -0.0016836379654705524, + 0.007564254570752382, + -0.008479688316583633, + 0.018427317962050438, + -0.017108434811234474, + -0.001911468687467277, + 0.000252979138167575, + 0.010180233046412468, + -0.032554417848587036, + -0.03727145493030548, + 0.004244946409016848, + 0.05339980870485306, + -0.03946360573172569, + 0.06829152256250381, + -0.04102308303117752, + 0.011926991865038872, + -0.0005048216553404927, + -0.05778410658240318, + 0.020619643852114677, + -0.00044501014053821564, + 0.02929009310901165, + -0.017843440175056458, + 0.03130435571074486, + 0.006063956767320633, + -0.00739979837089777, + 0.01617140881717205, + 0.02130407840013504, + -0.008128798566758633, + 0.008542110212147236, + 0.008747514337301254, + 0.015535661950707436, + -0.0077597820200026035, + -0.003115404164418578, + -0.044132862240076065, + -0.023188095539808273, + -0.043650370091199875, + 0.03765164688229561, + 0.03262060135602951, + -0.029387515038251877, + 0.022135362029075623, + 0.003772953525185585, + 0.02910015732049942, + 0.023815691471099854, + -0.03793005645275116, + 0.009453720413148403, + -0.011022823862731457, + 0.003912807907909155, + 0.007387747522443533, + 0.028152864426374435, + -0.02591322548687458, + 0.04105828329920769, + -0.0029289303347468376 + ], + "start_index": 30280, + "end_index": 30661, + "token_count": 50, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "1dfdefaf-49c9-5082-b422-af377e9b53a7", + "_source": { + "text": "\n\n---\n\n# X.14 Elementos ignorados por el lexer\n\nLos siguientes elementos se descartan durante el análisis léxico:\n\n\n\nWHITESPACE\nLINE_COMMENT\nDOC_COMMENT\nBLOCK_COMMENT", + "embedding": [ + -0.010873200371861458, + 0.010140595026314259, + -0.005439413245767355, + -0.08314407616853714, + -0.040699828416109085, + 0.007204244378954172, + -0.05753757804632187, + -0.01817290671169758, + -0.052400797605514526, + -0.04553624242544174, + 0.03412666171789169, + -0.08083487302064896, + -0.007961723953485489, + -0.005307831335812807, + -0.03635816648602486, + 0.02693994715809822, + 0.07078579813241959, + 0.03297457471489906, + 0.006211962550878525, + -0.037531040608882904, + -0.034900303930044174, + 0.008867699652910233, + -0.06077443063259125, + 0.09926330298185349, + 0.04278036579489708, + 0.021929791197180748, + -0.034033142030239105, + -0.045823413878679276, + -0.004817906767129898, + 0.00564221478998661, + -0.0151709308847785, + -0.062105316668748856, + -0.0567428395152092, + -0.029646404087543488, + 0.02937057800590992, + -0.008737096562981606, + 0.02630583755671978, + 0.04279054328799248, + 0.014162582345306873, + 0.0036345936823636293, + -0.010741207748651505, + 0.01590721122920513, + -0.01379420980811119, + 0.024446208029985428, + -0.0046622417867183685, + -0.02681267261505127, + 0.004086568485945463, + 0.017696356400847435, + -0.018838321790099144, + 0.0005521385464817286, + -0.0371435210108757, + -0.013932277448475361, + 0.015142573043704033, + 0.02236372046172619, + -0.03118652105331421, + 0.01545474212616682, + -0.020367488265037537, + -0.06552153080701828, + 0.018435809761285782, + 0.012355172075331211, + 0.021560031920671463, + -0.017434310168027878, + -0.007876311428844929, + 0.015588106587529182, + 0.03448962792754173, + 0.008047202602028847, + 0.007922718301415443, + -0.026420172303915024, + -0.024958161637187004, + -0.037058811634778976, + -0.02004171349108219, + 0.03946182131767273, + 0.009141524322330952, + 0.0017175948014482856, + 0.011532196775078773, + -0.000247676158323884, + -0.0072672925889492035, + -0.031736575067043304, + -0.023771042004227638, + 0.0020809746347367764, + -0.0038643800653517246, + 0.055450256913900375, + 0.059287093579769135, + 0.013957311399281025, + -0.010150707326829433, + 0.04216538369655609, + -0.00919437874108553, + -0.029240677133202553, + -0.0030786474235355854, + 0.08014748245477676, + -0.06313241273164749, + 0.018134204670786858, + -0.0004920500796288252, + -0.02409489080309868, + 0.021560562774538994, + 0.006322876084595919, + 0.011375060304999352, + -0.010509108193218708, + 0.011008822359144688, + -0.005989463999867439, + -0.03307010605931282, + -0.03365987539291382, + 0.04874275252223015, + 0.052020132541656494, + -0.011860589496791363, + 0.062064364552497864, + -0.023480825126171112, + 0.021745964884757996, + -0.024975167587399483, + -0.007796436548233032, + -0.003596255090087652, + -0.009911831468343735, + 0.03258190304040909, + 0.012765523046255112, + 0.008526395075023174, + 0.022288106381893158, + 0.028390679508447647, + -0.04187415912747383, + 0.001958205597475171, + 0.03187881037592888, + -0.0015425431774929166, + -0.005247007589787245, + -0.033868856728076935, + -0.0362967848777771, + 0.07954337447881699, + 0.021355176344513893, + -0.04494190588593483, + -0.035057708621025085, + -0.006440837401896715, + 0.01627965271472931, + -0.010561763308942318, + 0.00875389575958252, + -0.003716564504429698, + -0.01537050399929285, + 0.010848063044250011, + -0.015739092603325844, + -0.020435532554984093, + -0.02581193670630455, + 0.04823511838912964, + -0.021102827042341232, + -0.02958628349006176, + 0.010961049236357212, + -0.012358060106635094, + -0.01688804291188717, + 0.026926767081022263, + 0.016104454174637794, + 0.0035537565127015114, + 0.025942619889974594, + 0.007808369118720293, + 0.01776766963303089, + -0.0020661908201873302, + -0.04519432783126831, + -0.00023572423378936946, + -0.004304473754018545, + -0.006571260746568441, + 0.004556118045002222, + -0.0030863953288644552, + 0.006183680612593889, + 0.004374186508357525, + 0.011479790322482586, + -0.005486713256686926, + 0.0033253130968660116, + -0.016099339351058006, + -0.035479363054037094, + -0.006691440939903259, + 0.010882007889449596, + 0.02934146486222744, + -0.028379615396261215, + 0.055748309940099716, + 0.004483232274651527, + -0.009733430109918118, + 0.0346522331237793, + -0.0046464065089821815, + 0.010026729665696621, + 0.004694487899541855, + -0.012952273711562157, + -0.0526936911046505, + 0.023382147774100304, + -0.041199177503585815, + 0.012127242051064968, + 0.009393532760441303, + -0.014037408865988255, + -0.022465163841843605, + 0.005037609953433275, + 0.05895829573273659, + 0.07841451466083527, + -0.016577521339058876, + -0.025028133764863014, + 0.02068416215479374, + 0.004954554606229067, + 0.04223497211933136, + -0.009305511601269245, + -0.06040927767753601, + 0.003710726508870721, + -0.007525283843278885, + 4.8763100494397804e-05, + -0.016718747094273567, + -0.019469289109110832, + -0.004579090978950262, + 0.010258826427161694, + 0.07718691974878311, + -0.020921971648931503, + -0.011845601722598076, + 0.03913641348481178, + -0.03942418470978737, + -0.029604872688651085, + 0.012119230814278126, + 0.006027159746736288, + -0.02186485193669796, + 0.016541430726647377, + 0.014915555715560913, + -0.01481473445892334, + -0.06060639023780823, + 0.012577597051858902, + -0.00021764630218967795, + -0.031433284282684326, + -0.025953959673643112, + 0.048184022307395935, + 0.014553840272128582, + 0.03542917221784592, + -0.007912886328995228, + 0.02184375748038292, + -0.042041242122650146, + -0.012180140241980553, + 0.04893011599779129, + 0.0034934852737933397, + 0.00817110389471054, + -0.05236312001943588, + -0.0013653368223458529, + 0.021009404212236404, + -0.024818304926156998, + 0.04479639232158661, + 0.08425132930278778, + -0.01153826154768467, + 0.031119275838136673, + -0.0009754592319950461, + 0.00013038348697591573, + -0.04184365272521973, + 0.036133553832769394, + -0.07695518434047699, + 0.0012965494534000754, + -0.02317550778388977, + 0.03341345861554146, + 0.012029077857732773, + -0.010217101313173771, + 0.0021442226134240627, + 0.010197354480624199, + 0.0016548472922295332, + -0.0018893086817115545, + -0.019710371270775795, + -0.030271975323557854, + 0.053565047681331635, + 0.0019184817792847753, + -0.038912124931812286, + 0.017120083793997765, + -0.010910695418715477, + 0.012475411407649517, + -0.006258058827370405, + -0.023673776537179947, + -0.020769523456692696, + -0.01086130179464817, + -0.006791646592319012, + -0.012493852525949478, + 0.017411964014172554, + -0.00045887212036177516, + 0.015568012371659279, + -0.027878694236278534, + -0.022504249587655067, + -0.04578174278140068, + -0.02546091191470623, + -0.022046254947781563, + 0.022198187187314034, + 0.003245996544137597, + 0.0040682656690478325, + 0.033098820596933365, + 0.05968032404780388, + 0.009855948388576508, + -0.10503818094730377, + 0.003443001536652446, + 0.03071533516049385, + 0.062031228095293045, + -0.04600105062127113, + -0.005052508320659399, + 0.014516357332468033, + -0.0252423994243145, + 0.0198430884629488, + 0.004916104953736067, + -0.0013651754707098007, + 0.059441037476062775, + 0.006218065042048693, + -0.015382788144052029, + -0.0007500385981984437, + -0.0572584830224514, + 0.07143035531044006, + -0.05207277461886406, + -0.062313180416822433, + -0.037743933498859406, + 0.030742747709155083, + 0.008024193346500397, + 0.02677115984261036, + 0.006011513527482748, + -0.0016730425413697958, + -0.05325242131948471, + -0.022244423627853394, + -0.06011847406625748, + 0.016409046947956085, + 0.02123057283461094, + -0.0037585035897791386, + 0.008195608854293823, + 0.03614158183336258, + 0.04849774390459061, + 0.0038838449399918318, + -0.01729978434741497, + -0.05165454372763634, + 0.011755771934986115, + 0.019692834466695786, + 0.015043431892991066, + 0.017619941383600235, + 0.008720895275473595, + -0.0005975214880891144, + 0.005987571552395821, + -0.039018772542476654, + 0.002793465042486787, + 0.028099901974201202, + -0.010415862314403057, + -0.0005206365021876991, + 0.049190666526556015, + 0.02195771411061287, + -0.008786597289144993, + 0.03396499156951904, + -0.027772001922130585, + -0.041052963584661484, + 0.030464308336377144, + -0.034246090799570084, + -0.0235599372535944, + -0.02298610284924507, + -0.036252010613679886, + 0.05541755631566048, + -0.03068780153989792, + 0.008799987845122814, + 0.02574549801647663, + 0.050001420080661774, + -0.02912716753780842, + 0.014857311733067036, + -0.03151002153754234, + -0.015685059130191803, + 0.01605363003909588, + -0.013684182427823544, + 0.026240507140755653, + -0.0005124023300595582, + -0.04008311405777931, + 0.027035489678382874, + -0.042903244495391846, + 0.013765934854745865, + -0.011200767010450363, + -0.05730297788977623, + -0.014136174693703651, + 0.0635548010468483, + -0.02384708635509014, + -0.06310912221670151, + -0.03762781620025635, + -0.0336357019841671, + -0.018015500158071518, + 0.027060603722929955, + -0.019678277894854546, + -0.0030304882675409317, + -0.018255818635225296, + 0.0015787462471053004, + 0.06136155501008034, + -0.03785613179206848, + -0.11312016099691391, + 0.04060995206236839, + -0.01886918395757675, + 0.03158566355705261, + 0.081277996301651, + 0.044728539884090424, + 0.0016736234538257122, + 0.017439037561416626, + 0.028277508914470673, + 0.05495774745941162, + 0.013853042386472225, + 0.02376990020275116, + 0.021499430760741234, + 0.0011686523212119937, + -0.05682773143053055, + 0.014774492010474205, + 0.029530242085456848, + -0.033975280821323395, + -0.03476591408252716, + 0.006596004124730825, + 0.06627510488033295, + 0.021611973643302917, + 0.04576747119426727, + 0.023515213280916214, + 0.013485914096236229, + 0.036575797945261, + -0.017843756824731827, + 0.0032465520780533552, + -0.02366514317691326, + 0.013963394798338413, + -0.020951466634869576, + -0.03146526217460632, + 0.03254618123173714, + -0.03946276381611824, + 0.016664767637848854, + 0.011483725160360336, + 0.010064221918582916, + -0.03476059064269066, + -0.024366697296500206, + -0.052810780704021454, + -0.0027291744481772184, + -0.009127866476774216, + -0.054668646305799484, + 0.023128759115934372, + 0.014829369261860847, + -0.012935792095959187, + 0.05684949457645416, + -0.051612719893455505, + 0.050098054111003876, + 0.002485814969986677, + 0.009720517322421074, + 0.036613624542951584, + 0.018230322748422623, + -0.047513920813798904, + 0.023799823597073555, + 0.010146432556211948, + -0.03995412960648537, + -0.000431628170190379, + -0.025862453505396843, + -0.03986198455095291, + 0.015452533960342407, + 0.019070524722337723, + -0.03883224353194237, + 0.023053741082549095, + -0.01824730634689331, + -0.007603553589433432, + 0.031927499920129776, + 0.01646231859922409, + -0.011972290463745594, + -0.03778713196516037, + 0.0030125309713184834, + 0.043868161737918854, + -0.06296427547931671, + -0.0077010090462863445, + 0.002768408739939332, + 0.021694596856832504, + -0.02635951153934002, + -0.0010294762905687094, + -0.005775340832769871, + -0.02503894455730915, + -0.01158993225544691, + -0.031215447932481766, + 0.01067875511944294, + 0.030996866524219513, + -0.034419480711221695, + -0.021340398117899895, + -0.001031380146741867, + -0.01461844239383936, + -0.015737468376755714, + 0.07223384827375412, + 0.033443935215473175, + 0.02879554033279419, + 0.013032958842813969, + -0.014494872651994228, + -0.0584569126367569, + 0.022561732679605484, + 0.040362607687711716, + -0.04561511054635048, + 0.022333592176437378, + -0.005307973828166723, + 0.0370606854557991, + -0.002512227511033416, + 0.04739081859588623, + 0.04757485166192055, + 0.020755354315042496, + -0.005278327967971563, + -0.017486462369561195, + 0.00761578232049942, + 0.01911918632686138, + 0.01857003942131996, + -0.02723747305572033, + -0.04569576680660248, + 0.07730308920145035, + -0.10046474635601044, + 0.01384737342596054, + -0.07170555740594864, + 0.012888512574136257, + 0.011367956176400185, + -0.029160920530557632, + 0.03007303923368454, + -0.0018815186340361834, + -0.01270548440515995, + -0.02564290538430214, + 0.007863971404731274, + 0.006732765585184097, + -0.05196557566523552, + 0.0007785665220580995, + -0.0025030290707945824, + -0.05218411237001419, + 0.003738032653927803, + 0.013254418969154358, + 0.025554651394486427, + -0.00514516606926918, + 0.004173255525529385, + -0.015616033226251602, + 0.009304923005402088, + 0.028556667268276215, + -0.028024066239595413, + 0.03222212940454483, + 0.059461601078510284, + -0.037837326526641846, + -0.020099850371479988, + -0.010986896231770515, + 0.02670464850962162, + 0.0267446581274271, + -0.04389852285385132, + -0.00710453512147069, + 0.013838555663824081, + -0.003026270540431142, + 0.03750162199139595, + 0.045655325055122375, + 0.01782328449189663, + -0.012191232293844223, + 0.01254013180732727, + 0.03740228712558746, + 0.005363245960325003, + 0.014494892209768295, + 0.00130075856577605, + -0.03870571777224541, + 0.016873976215720177, + 0.05521128699183464, + -0.041049517691135406, + 0.0016561761731281877, + -0.014528010040521622, + -0.0766359493136406, + 0.015976833179593086, + 0.013528404757380486, + -0.022677941247820854, + -0.013320915400981903, + 0.022055968642234802, + -0.06523159891366959, + -0.03232463449239731, + -0.015364649705588818, + 0.020788954570889473, + 0.06005239486694336, + -0.02634940855205059, + -0.030702009797096252, + 0.004022326320409775, + 0.048811979591846466, + 0.04314914718270302, + 0.05498367175459862, + 0.006755263078957796, + 0.06377725303173065, + -0.0676138773560524, + -0.0028001032769680023, + 0.006881183944642544, + 0.024631714448332787, + 0.012042641639709473, + 0.02350001409649849, + -0.021856315433979034, + 0.026444721966981888, + -0.028584610670804977, + 0.023980239406228065, + 0.021905764937400818, + 0.023891035467386246, + -0.0109599269926548, + 0.01946786232292652, + 0.0013641981640830636, + -0.013633561320602894, + -0.029288455843925476, + -0.008522872813045979, + 0.03117372840642929, + -0.06506449729204178, + 0.04951236769556999, + 0.034741465002298355, + -0.05715596675872803, + -0.051419951021671295, + 0.04961387440562248, + -0.00937916524708271, + -0.00840882956981659, + 0.020560596138238907, + -0.016719087958335876, + -0.012139484286308289, + 0.002101609483361244, + 0.025594504550099373, + -0.035440657287836075, + -0.04879843816161156, + 0.04187257960438728, + -0.020503701642155647, + 0.04924476519227028, + -0.029804660007357597, + 0.05112442001700401, + 0.010154790244996548, + -0.007779773790389299, + 0.05785548686981201, + -0.03995892405509949, + -0.020041905343532562, + -0.01611427031457424, + 0.04383904114365578, + 0.0013462743954733014, + -0.009610656648874283, + 0.04367133602499962, + 0.006401353515684605, + -0.042563531547784805, + -0.03016476333141327, + -0.0010616061044856906, + 0.008559145964682102, + 0.028041880577802658, + -0.020447243005037308, + -0.0493963249027729, + -0.004990739282220602, + 0.0008676949073560536, + -0.027494605630636215, + 0.01243351399898529, + -0.0020594042725861073, + 0.0016144978580996394, + -0.002289571100845933, + -0.015544865280389786, + -0.011264276690781116, + -0.061063457280397415, + -0.019956035539507866, + -0.012472197413444519, + 0.003709646174684167, + 0.06354476511478424, + 0.03803889453411102, + 0.013378359377384186, + 0.0035790593829005957, + -0.01639758050441742, + -0.008816867135465145, + 0.03497827425599098, + -0.09322631359100342, + 0.008604819886386395, + -0.008095956407487392, + 0.014643620699644089, + 0.019313134253025055, + -0.02518964186310768, + 0.01702532172203064, + 0.016342468559741974, + -0.006958293728530407, + -0.031451087445020676, + -0.030980555340647697, + 0.043318264186382294, + 0.009862896054983139, + 0.001360601163469255, + -0.06957022845745087, + 0.003163144923746586, + -0.002569109434261918, + -0.0074015227146446705, + 0.00855343323200941, + 0.00046688326983712614, + 0.005189443938434124, + 0.04190662503242493, + 0.006092201452702284, + -0.01463867537677288, + -0.0426456518471241, + 0.030236639082431793, + 0.01903127320110798, + 0.024367082864046097, + -0.03345567360520363, + -0.05988883599638939, + -0.02411617338657379, + -0.04050344228744507, + 0.02750258706510067, + 0.029871687293052673, + -0.025943290442228317, + 0.0228273868560791, + 0.025990359485149384, + -0.0059366896748542786, + 0.039234697818756104, + 0.017748024314641953, + -0.004858015105128288, + 0.006904160138219595, + -0.007063484285026789, + 0.016953637823462486, + 0.016980119049549103, + -0.05908995121717453, + -0.0288948193192482, + -0.029742952436208725, + -0.011007320135831833, + -0.02768033929169178, + -0.014581275172531605, + -0.029857851564884186, + 0.02899627946317196, + 0.02971719577908516, + -0.00624798983335495, + -0.02989496849477291, + -0.07434307038784027, + 0.029607458040118217, + 0.005853444337844849, + 0.006082960404455662, + 0.021306414157152176, + 0.017703568562865257, + 0.0002448348677717149, + -0.012282454408705235, + -0.004553964827209711, + -0.02349710278213024, + -0.006595252547413111, + -0.01714896410703659, + -0.034730877727270126, + 0.003864337457343936, + -0.005393394269049168, + -0.01924373023211956, + 0.0017654134426265955, + 0.028555428609251976, + 0.021435344591736794, + -0.028128769248723984, + -0.015821553766727448, + 0.027937455102801323, + -0.06610533595085144, + -0.05191199108958244, + 0.050523024052381516, + 0.022255675867199898, + 0.011157728731632233, + 0.005372505635023117, + 0.021004535257816315, + -0.053429655730724335, + -0.06012367829680443, + -0.023874495178461075, + 0.007237808778882027, + 0.043565407395362854, + -0.023372771218419075, + -0.017657453194260597, + 0.014442596584558487, + 0.007764769252389669, + -0.059371259063482285, + 0.011321530677378178, + -0.036065537482500076, + -0.0039316099137067795, + -0.0073743355460464954, + -0.0668538510799408, + 0.029273221269249916, + 0.02409670501947403, + 0.005202723667025566, + 0.07513952255249023, + 0.012988083995878696, + -0.017676444724202156, + 0.06302421540021896, + 0.02337745949625969, + -0.02595444768667221, + 0.03157087042927742, + 0.0020737014710903168, + -0.01671147346496582, + 0.019645381718873978, + -0.06673891842365265, + -0.01841592602431774, + 0.01467077061533928, + 0.0045846267603337765, + 0.003290714230388403, + -0.021754322573542595, + -0.030740268528461456, + 0.018094222992658615, + 0.0030833750497549772, + -0.0026605480816215277, + -0.024022968485951424, + -0.013785828836262226, + 0.010446681641042233, + -0.002458997769281268, + 0.04424057900905609, + 0.012429648078978062, + 0.03771759569644928, + -0.008433056063950062, + 0.029743775725364685, + 0.006511487066745758, + 0.08472173660993576, + 0.005391267593950033, + -0.06787148863077164, + -0.022384099662303925, + -0.05279942601919174, + -0.014000914059579372, + -0.026485474780201912, + -0.0005701740738004446, + -0.0327117033302784, + 0.0706651508808136, + 0.057152386754751205, + 0.030436711385846138, + 0.03481626138091087, + -0.005453233141452074, + -0.03691169619560242, + -0.0008882081601768732, + -0.01805647276341915, + 0.007939794100821018, + -0.0030775819905102253, + 0.03723539039492607, + 0.027498165145516396, + -0.05316844582557678, + -0.014719190075993538, + -0.013368054293096066, + -0.00425418047234416, + 0.06399984657764435, + -0.030087104067206383, + -0.01324163842946291, + 0.009555155411362648, + 0.030893098562955856, + 0.016024097800254822, + 0.005234634503722191, + -0.02307025156915188, + 0.004152694251388311, + 0.012497295625507832, + 0.019101450219750404, + 0.027683133259415627, + -0.04151931405067444, + -0.03587882220745087, + -0.008111879229545593, + -0.023465091362595558, + 0.11693283915519714, + 0.012283429503440857, + 0.007413322106003761, + 0.02422073483467102, + -0.04524731636047363, + -0.052275821566581726, + -0.013890468515455723, + 0.05240534245967865, + 0.004214485175907612, + -0.003622994525358081, + 0.019756345078349113, + 0.0069579677656292915, + -0.026199469342827797, + 0.026013152673840523, + 0.055717263370752335, + -0.004765911493450403, + 0.003490754636004567, + 0.05300147086381912, + -0.015092676505446434, + 0.05327784642577171, + 0.0022933424916118383, + 0.043772559612989426, + -0.04235592484474182, + 0.035021815448999405, + 0.007474563550204039, + -0.0017690947279334068, + -0.003036768641322851, + -0.06283505260944366, + 0.05691901966929436, + -0.027079572901129723, + 0.00484823901206255, + 0.029253996908664703, + -0.04179081693291664, + -0.015329316258430481, + 0.007349780760705471, + -0.0019243150018155575, + 0.05815273895859718, + -0.010280727408826351, + -0.00481231277808547, + -0.010757754556834698, + -0.029541905969381332, + -0.00024227627727668732, + 0.0050139049999415874, + 0.028711192309856415, + -0.01174238882958889, + -0.02772897481918335, + -0.010909540578722954, + 0.010672582313418388, + -0.018007108941674232, + -0.07262672483921051, + -0.03214170038700104, + 0.06478890776634216, + -0.00988445058465004, + 0.04665199667215347, + 9.222892549587414e-05, + 0.04150259867310524, + -0.02629818581044674, + -0.04741692170500755, + 0.007560500409454107, + 0.004996743518859148, + -0.03485710173845291, + 0.05500537157058716, + -0.04632250964641571, + -0.02239743433892727, + 0.033838532865047455, + -0.046200525015592575, + -0.011651890352368355, + 0.03514757752418518, + -0.04423503577709198, + 0.003948412369936705, + -0.04289129003882408, + 0.0011201511370018125, + -0.006748913787305355, + -0.014597796835005283, + -0.025334268808364868, + 0.06588443368673325, + 0.022162310779094696, + 0.01053011603653431, + -0.044398482888936996, + 0.007065475918352604, + -0.0211644247174263, + 0.0016037378227338195, + 0.008686494082212448, + -0.03126435726881027, + 0.014775905758142471, + 0.010277552530169487, + 0.025304192677140236, + -0.019328078255057335, + 0.018841784447431564, + 0.004956508055329323, + -0.052345629781484604, + 0.009244974702596664, + -0.009516585618257523, + 0.04812178015708923, + 0.016251327469944954, + -0.014808567240834236, + 0.05523746460676193, + -0.006099906284362078, + -0.007566739339381456, + -0.03366662934422493, + -0.019805381074547768, + 0.018639378249645233, + -0.029990628361701965, + 0.023783553391695023, + 0.004409363027662039, + -0.02253643423318863, + -0.011574165895581245, + 7.30411265976727e-05, + 0.019968757405877113, + -0.013919465243816376, + 0.04059085622429848, + 0.01696142926812172, + 0.045339230448007584, + 0.014439484104514122, + 0.012921384535729885, + -0.02570324018597603, + 0.03244709223508835, + 0.019342606887221336, + -0.024265553802251816, + 0.028982313349843025, + 0.0029734682757407427, + 0.010436144657433033, + 0.009932445362210274, + 0.01536656729876995, + -0.013698199763894081, + 0.010874190367758274, + -0.02471894398331642, + 0.008063423447310925, + 0.019314121454954147, + -0.006703786086291075, + 0.022523917257785797, + -0.047483496367931366, + 0.01832534186542034, + 0.03303544595837593, + -0.02910349890589714, + 0.018921155482530594, + 0.012662338092923164, + -0.026375753805041313, + -0.0021526534110307693, + 0.031098084524273872, + -0.03725554049015045, + -0.011498715728521347, + 0.08157826960086823, + -0.019051896408200264, + 0.05624033138155937, + 0.026917336508631706, + 0.03342073783278465, + 0.02589576132595539, + -0.06998196989297867, + 0.011496080085635185, + 0.017162911593914032, + 0.027209041640162468, + 0.014869595877826214, + 0.006741396151483059, + 0.02640395425260067, + -0.007183159701526165, + -0.03534612059593201, + 0.04045801982283592, + 0.05118374526500702, + 0.026404637843370438, + -0.04079284146428108, + -0.03870365768671036, + -0.01642855815589428, + 0.02706892043352127, + -0.00988081470131874, + -0.02662440948188305, + 0.059544142335653305, + -0.001247481326572597, + 0.0018639634363353252, + 0.02201305888593197, + 0.04586904123425484, + -0.006032966077327728, + -0.017889168113470078, + -0.00826225895434618, + 0.012553930282592773, + 0.007742487825453281, + -0.04374459385871887, + -0.03125542774796486, + 0.04212629795074463, + 0.04954785853624344, + -0.021159816533327103, + 0.015488908626139164, + 0.017025629058480263, + -0.03115088678896427, + -0.015093366615474224, + -0.04396085813641548, + 0.009885905310511589, + 0.018565796315670013, + 0.004152265377342701, + -0.010025423020124435, + 0.04803023859858513, + 0.02214338257908821, + -0.044979967176914215, + -0.023025359958410263, + 0.012933867983520031, + -0.03269665688276291, + -0.006504998542368412, + -0.0024822810664772987, + 0.03968408703804016, + -0.035295236855745316, + 0.0025093089789152145, + -0.0332370325922966, + -0.008421817794442177, + -0.03894789144396782, + 0.015743855386972427, + -0.01929190568625927, + 0.021897828206419945, + 0.024049274623394012, + 0.019807914271950722, + -0.02063015103340149, + -0.025412259623408318, + -0.01323190052062273, + 0.017776919528841972, + -0.0026307334192097187, + 0.01021228451281786, + 0.018017852678894997, + 0.03742900863289833, + -0.005330005660653114, + -0.024315105751156807, + 0.023420216515660286 + ], + "start_index": 30661, + "end_index": 30833, + "token_count": 28, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "83318055-e590-5c2b-b50b-0c9b04e21079", + "_source": { + "text": "\n\nEstos tokens no son enviados al parser.\n\n\n# XI.1 Modelo de Memoria y Resolución de Variables\n\nAVAP utiliza un modelo de memoria basado en **tres tipos de ámbitos (scopes)**:\n\n\n\nGlobal Scope\nMain Local Scope\nFunction Scope", + "embedding": [ + -0.02442489191889763, + -0.00024432953796349466, + -0.01102160569280386, + -0.1360047161579132, + 0.00043298170203343034, + 0.03466124087572098, + 0.0005108219338580966, + 0.015259874053299427, + -0.03800090402364731, + -0.05787937715649605, + 0.03566668555140495, + -0.07561691850423813, + 0.0005937294336035848, + -0.01146914903074503, + -0.03840497136116028, + 0.03628966957330704, + 0.01102450955659151, + 0.042046621441841125, + -0.028845475986599922, + -0.009363817051053047, + 0.01936163753271103, + -0.001015011454001069, + -0.039589013904333115, + 0.07205541431903839, + -0.0588233657181263, + 0.010901625268161297, + -0.02937251515686512, + -0.009493316523730755, + -0.017562733963131905, + 0.01877317950129509, + -0.030002838000655174, + -0.006168852560222149, + -0.02992197498679161, + -0.027525972574949265, + -0.0664835125207901, + -0.01649862341582775, + 0.014343850314617157, + -0.0696316510438919, + 0.05682307854294777, + -0.003897341201081872, + -0.02318834885954857, + 0.03453974798321724, + 0.019884470850229263, + 0.05663544684648514, + 0.013598300516605377, + -0.07259145379066467, + -0.004962074104696512, + -0.0015588784590363503, + 0.03142270818352699, + -0.01550688873976469, + -0.026848196983337402, + -0.009822264313697815, + 0.03493594378232956, + -0.030180806294083595, + -0.04011843353509903, + 0.06044653430581093, + -0.0027749119326472282, + -0.04445980489253998, + -0.003659056033939123, + 0.01087788213044405, + 0.01299850270152092, + -0.03874849155545235, + -0.021484630182385445, + 0.020702365785837173, + -0.0029476117342710495, + 0.012244999408721924, + -0.008427579887211323, + 0.00985807180404663, + -0.01671089045703411, + 0.00461735762655735, + -0.033663805574178696, + -0.05821414291858673, + -0.031976282596588135, + 0.0068767620250582695, + 0.03481770306825638, + -0.021636024117469788, + 0.05913018062710762, + -0.025633979588747025, + 0.03259117156267166, + 0.05547672510147095, + -0.012277236208319664, + 0.05929454043507576, + 0.04246491566300392, + 0.00957446452230215, + 0.005909051280468702, + 0.07984209060668945, + -0.023661425337195396, + 0.0005368894198909402, + 0.02252875082194805, + 0.031845614314079285, + 0.02340523898601532, + -0.007486928254365921, + -0.0011527965543791652, + -0.0017519935499876738, + 0.05287473648786545, + 0.004268950317054987, + -0.04267517104744911, + 0.015834089368581772, + -0.014136645942926407, + -0.02852337621152401, + -0.0010990842711180449, + -0.031822096556425095, + -0.06589935719966888, + 0.017606385052204132, + -0.009211648255586624, + 0.05993841961026192, + -0.041944339871406555, + 0.030994098633527756, + -0.008231190033257008, + -0.04994940757751465, + -0.02359544113278389, + -0.005540522746741772, + -0.005210493225604296, + 0.07770603150129318, + -0.026549285277724266, + 0.002997445873916149, + -0.006596826948225498, + 0.006344994064420462, + -0.019285107031464577, + -0.002968478947877884, + 0.04226227104663849, + 0.031447429209947586, + 0.013830745592713356, + 0.02013225108385086, + 0.01851009577512741, + 0.009631066583096981, + -0.041571684181690216, + -0.01646108366549015, + 0.017313599586486816, + -0.009103993885219097, + 0.01564282551407814, + 0.01859789900481701, + -0.034312933683395386, + -0.01428898610174656, + -0.019451536238193512, + -0.050127580761909485, + 0.017189007252454758, + -0.03949950262904167, + 0.03389636054635048, + -0.026974055916070938, + 0.0013531276490539312, + -0.009444613941013813, + 0.033652614802122116, + -0.04366784915328026, + 0.002237292705103755, + 0.0264438409358263, + 0.011770740151405334, + 0.01913439854979515, + 0.023806340992450714, + -0.007665366865694523, + 0.027509797364473343, + -0.01927979290485382, + 0.030549688264727592, + -0.009304900653660297, + -0.043922264128923416, + -0.020054766908288002, + 0.012233546935021877, + 0.020088370889425278, + 0.025665555149316788, + 0.024811014533042908, + -0.01964186131954193, + 0.008217147551476955, + -0.023874109610915184, + -0.025844335556030273, + -0.004866363946348429, + 0.03979852423071861, + 0.0020003337413072586, + -0.014691250398755074, + -0.0341196171939373, + 0.03731223940849304, + -0.028033243492245674, + 0.003179837018251419, + 0.015195711515843868, + -0.02385196089744568, + -0.02839185670018196, + -0.013781439512968063, + -0.03985569253563881, + -0.002994651673361659, + -0.01810830645263195, + 0.03420594707131386, + 0.0047260308638215065, + -0.006174322217702866, + -0.03153109550476074, + 0.02326912246644497, + 0.018005497753620148, + 0.06331426650285721, + -0.00793874729424715, + -0.0045765470713377, + -0.01190109085291624, + -0.055648453533649445, + -0.007777308579534292, + -0.01887989230453968, + -0.04429057613015175, + 0.005208939779549837, + 0.001175875193439424, + -0.021762032061815262, + -0.03766419366002083, + -0.019159693270921707, + 0.01274881511926651, + -0.013604417443275452, + 0.02433486469089985, + 0.012044713832437992, + -0.007988589815795422, + 0.001008215476758778, + -0.029039083048701286, + -8.018095104489475e-05, + -0.04893200844526291, + 0.009112457744777203, + -0.037094175815582275, + 0.030675360932946205, + -0.0221620611846447, + 0.03125064820051193, + -0.0028123303782194853, + -0.022290725260972977, + -0.017635053023695946, + -0.002267036586999893, + -0.01343589462339878, + -0.0016764726024121046, + -0.00641703512519598, + 0.012160230427980423, + 0.009465021081268787, + 0.001975987572222948, + -0.011976051144301891, + 0.033331941813230515, + 0.06735284626483917, + -0.03068055585026741, + -0.012652665376663208, + -0.025617729872465134, + -0.019648777320981026, + 0.009935650043189526, + 0.022143971174955368, + -0.03001103550195694, + 0.014070697128772736, + -0.010714670643210411, + 0.02404864877462387, + 0.064342200756073, + 0.02369583398103714, + 0.037987884134054184, + 0.05115021392703056, + 0.0006086984067223966, + -0.0294839795678854, + 0.019609520211815834, + -0.011244341731071472, + 0.012077209539711475, + -0.005267481319606304, + 0.021125271916389465, + 0.02478891983628273, + -0.014019784517586231, + -0.03546316921710968, + -0.007516483776271343, + 0.07836421579122543, + 0.0008449987508356571, + 0.017289897426962852, + 0.0021294141188263893, + -0.0009846399771049619, + -0.03015400841832161, + -0.001503822160884738, + 0.009452647529542446, + 0.01894846372306347, + -0.014826921746134758, + 0.012291516177356243, + -0.03260420262813568, + -0.008794750086963177, + 0.009583515115082264, + -0.057193413376808167, + 0.027378935366868973, + -0.028428636491298676, + 0.02140730619430542, + -0.0070534017868340015, + -0.02531573362648487, + -0.004754248540848494, + 0.002797868102788925, + -0.015002778731286526, + 0.015071234665811062, + 0.03285300359129906, + -0.001499001169577241, + -0.0028750328347086906, + -0.0944165363907814, + 0.027684705331921577, + 0.05020700395107269, + -0.005076494067907333, + -0.008528327569365501, + -0.03904074802994728, + -0.005854472517967224, + -0.008905785158276558, + 0.031552936881780624, + 0.019750000908970833, + -0.017613964155316353, + 0.007303242571651936, + -0.0022319324780255556, + -0.005337639711797237, + 0.055358413606882095, + -0.037029411643743515, + -0.00032236226252280176, + 0.007023078389465809, + -0.015391229651868343, + 0.04405668377876282, + -0.026741182431578636, + 0.02747860737144947, + -0.0010508510749787092, + 0.02662554755806923, + 0.04545554518699646, + 0.02255309745669365, + -0.023125940933823586, + -0.02479487657546997, + -0.009739051572978497, + 0.08419489115476608, + -0.06260274350643158, + 0.06187756359577179, + 0.06101646646857262, + 0.1053970605134964, + 0.021205715835094452, + -0.03121028281748295, + -0.026487385854125023, + 0.003670802339911461, + 0.0397014245390892, + -0.001737731508910656, + -0.020569588989019394, + 0.0101926913484931, + -0.03505362197756767, + 0.01905960403382778, + 0.003566320287063718, + -0.007472530007362366, + -0.050036873668432236, + 0.030801009386777878, + 0.014851434156298637, + 0.0482846237719059, + 0.0833444744348526, + 0.00549093633890152, + -0.020260827615857124, + 0.03375633433461189, + 0.011328008025884628, + 0.04246549680829048, + -0.020765306428074837, + 0.013296212069690228, + -0.016191987320780754, + -0.0473104752600193, + -0.007991385646164417, + 0.0015699483919888735, + -0.02988290973007679, + 0.0068822759203612804, + 0.03761279582977295, + 0.005178334657102823, + 0.010035785846412182, + -0.030587349086999893, + -0.0587901696562767, + 0.03837956115603447, + -0.01917121186852455, + 0.007806100882589817, + -0.002957396674901247, + -0.03744730353355408, + -0.0035791429691016674, + -0.009309877641499043, + 0.004996528383344412, + -0.01684820093214512, + -0.03200357034802437, + -0.028373120352625847, + 0.018286142498254776, + 0.0366077721118927, + -0.04258345440030098, + -0.01654750108718872, + 0.01369153056293726, + -0.030955981463193893, + 0.011991798877716064, + 0.020551009103655815, + 0.04014572501182556, + -0.05361878126859665, + -0.06499230861663818, + 0.05762915313243866, + -0.013935728929936886, + -0.0832679495215416, + 0.0018276551272720098, + -0.005513523239642382, + 0.024016933515667915, + 0.0678541287779808, + 0.016762416809797287, + 0.027102256193757057, + 0.0074789198115468025, + 0.04648982733488083, + 0.07148171216249466, + 0.031274065375328064, + -0.04152572900056839, + 0.03440197557210922, + -0.00587097741663456, + -0.0035410679411143064, + 0.025351159274578094, + 0.018791917711496353, + -0.018325787037611008, + -0.025138674303889275, + 0.008249126374721527, + 0.03502478078007698, + -0.010551754385232925, + 0.002297785831615329, + 0.014361264184117317, + 0.009436091408133507, + 0.0277774166315794, + -0.07834554463624954, + -0.03866875544190407, + 0.0007985701085999608, + 0.01718791015446186, + 0.018433978781104088, + -0.02671743929386139, + -0.00862399023026228, + 0.02082274854183197, + 0.056315261870622635, + 0.0005530478083528578, + 0.04655734449625015, + -0.010727152228355408, + 0.011073199100792408, + -0.036785636097192764, + 0.02402646467089653, + 0.03800197318196297, + -0.01110498234629631, + -0.006263637449592352, + 0.006241935305297375, + -0.05300004407763481, + 0.03698476403951645, + 0.007231525611132383, + -0.03841980919241905, + 0.03369418904185295, + -0.027484267950057983, + 0.060674555599689484, + -0.055696867406368256, + -0.0421944335103035, + 0.03613167256116867, + 0.00771778030321002, + -0.026982957497239113, + -0.035901885479688644, + -0.02039415016770363, + -0.010605732910335064, + -0.011133501306176186, + 0.012030454352498055, + -0.000707665691152215, + 0.02347451075911522, + -0.0037064868956804276, + 0.030834652483463287, + 0.02624133974313736, + 0.007372052408754826, + 0.007046449929475784, + -0.0018445797031745315, + 0.006095500197261572, + -0.046381399035453796, + 0.005536430049687624, + -0.03885844349861145, + -0.004499380476772785, + 0.01138463243842125, + -0.04702938348054886, + 0.021773742511868477, + -0.04026242345571518, + -0.03158404678106308, + -0.00025160625227726996, + -0.021011319011449814, + -0.037638355046510696, + 0.04689045622944832, + 0.038261450827121735, + -0.01914391666650772, + -0.01236741617321968, + -0.11622101068496704, + 0.00035718362778425217, + 0.028403179720044136, + 0.020680606365203857, + 0.04409271851181984, + -0.005542645696550608, + -0.014871363528072834, + -0.06338930875062943, + 0.04622220620512962, + 0.020289167761802673, + -0.010942313820123672, + 0.03649909049272537, + -0.010408631525933743, + 0.009271733462810516, + 0.01732591725885868, + 0.0089560030028224, + -0.03045148402452469, + -0.033919453620910645, + -0.019572356715798378, + -0.020617103204131126, + -0.01654188334941864, + -0.0217718668282032, + -0.04816747456789017, + -0.01930503360927105, + 0.0032131364569067955, + 0.05013399198651314, + -0.04081546515226364, + 0.07066227495670319, + 0.03181573376059532, + 0.0009095486020669341, + 0.01602049544453621, + -0.051492370665073395, + 0.023005230352282524, + -0.04922107979655266, + 0.013651695102453232, + -0.034165527671575546, + 0.012041877023875713, + -0.0034870326053351164, + 0.01327591110020876, + -0.00059524952666834, + 0.007309243083000183, + -0.09932076930999756, + 0.050406116992235184, + 0.013554572127759457, + -0.01018671877682209, + 0.00951682310551405, + 0.03460140526294708, + 0.015660250559449196, + 0.0016941654030233622, + 0.004278790671378374, + -0.026827385649085045, + 0.012497643008828163, + 0.061242587864398956, + 0.01769493706524372, + 0.013502866961061954, + 0.05154269561171532, + 0.02750304341316223, + -0.004946092143654823, + 0.0030886062886565924, + 0.014468060806393623, + -0.01691601797938347, + -0.023938795551657677, + 0.037723105400800705, + 0.03768268972635269, + 0.026729527860879898, + 0.02608714997768402, + 0.01036884356290102, + -0.03959902375936508, + 0.02105862647294998, + 0.03216606751084328, + -0.017576955258846283, + 0.06755516678094864, + 0.007757601328194141, + 0.019224243238568306, + -0.0569283552467823, + -0.005490352399647236, + 0.017962908372282982, + -0.014274983666837215, + 0.0028828796930611134, + 0.029673200100660324, + 0.023629654198884964, + 0.025888731703162193, + 0.009599875658750534, + -0.019998470321297646, + -0.01505409087985754, + -0.03192879259586334, + 0.005028309766203165, + 0.0013146367855370045, + -0.01842596009373665, + -0.10346236824989319, + 0.038544438779354095, + 0.017697717994451523, + 0.0273198913782835, + 0.00017114692309405655, + -0.009241842664778233, + 0.056219372898340225, + -0.038939494639635086, + 0.029206881299614906, + 0.014419520273804665, + 0.03513329103589058, + 0.006279279012233019, + 0.03746195137500763, + -0.08495765179395676, + 0.011800970882177353, + -0.022335099056363106, + 0.013460847549140453, + 0.02851451002061367, + -0.006056136451661587, + -0.039974555373191833, + -0.009950227104127407, + 0.05780523270368576, + 0.003604585537686944, + 0.006831205449998379, + 0.03635888919234276, + -0.016127517446875572, + 0.00385864800773561, + 0.005922435782849789, + 0.011552225798368454, + -0.0009375275694765151, + -0.021813850849866867, + 0.08888828009366989, + 0.015412583947181702, + 0.010088004171848297, + -0.028031114488840103, + -0.020217478275299072, + 0.05562908574938774, + 0.038620635867118835, + 0.03047667071223259, + 0.014293135143816471, + 0.015894759446382523, + -0.03886771574616432, + 0.009348020888864994, + 0.011453975923359394, + -0.017250124365091324, + 0.025278154760599136, + 0.008028611540794373, + 0.01051049493253231, + 0.03523461893200874, + -0.01583036407828331, + -0.005987081211060286, + -0.0021194994915276766, + -0.048736780881881714, + 0.03601309284567833, + -0.023055171594023705, + 0.02406981587409973, + -0.024193668738007545, + 0.0032171308994293213, + -0.07359897345304489, + 0.0003263696562498808, + -0.009208309464156628, + 0.005908761639147997, + -0.05109117925167084, + -0.04670165106654167, + -0.026391522958874702, + -0.007239385042339563, + -0.033319611102342606, + -0.023731747642159462, + 0.009066433645784855, + -0.027490723878145218, + -0.0037840844597667456, + 0.0651046633720398, + -0.009796256199479103, + -0.05948646739125252, + 0.0014401167863979936, + -0.015632858499884605, + 0.03309062123298645, + 0.08787629753351212, + 0.02053081803023815, + 0.038042452186346054, + -0.01954473927617073, + 0.0011081885313615203, + -0.0437781885266304, + -0.009758289903402328, + -0.016387062147259712, + -0.0391986146569252, + -0.029743824154138565, + 0.0036430738400667906, + -0.004445609636604786, + -0.020037125796079636, + -0.0058630988933146, + 0.002276920946314931, + -0.003686778014525771, + -0.05029154568910599, + 0.01147469412535429, + 0.023913457989692688, + -0.015616526827216148, + 0.01700541004538536, + 0.01164665911346674, + -0.03873749077320099, + -0.03520124778151512, + 0.025592494755983353, + 0.03087109513580799, + 0.010711709037423134, + -0.008603903464972973, + -0.00340643129311502, + 0.009930667467415333, + 0.06659066677093506, + -0.030505644157528877, + 0.06884260475635529, + 0.0017422365490347147, + 0.03334919363260269, + 0.024248050525784492, + -0.04344142600893974, + 0.039547137916088104, + -0.09452661871910095, + 0.04987578094005585, + -0.047065865248441696, + -0.02210349217057228, + -0.023773804306983948, + 0.052942972630262375, + 0.05554917827248573, + -0.002307997550815344, + 0.01918906159698963, + -0.06811919808387756, + -0.025283418595790863, + -0.05751723051071167, + 0.016199501231312752, + 0.023696793243288994, + -0.05368233844637871, + -0.0021978223230689764, + -0.012135266326367855, + 0.04834185913205147, + -0.010497924871742725, + -0.04164809361100197, + -0.003938496578484774, + 0.034087538719177246, + -0.051074445247650146, + 0.05311084911227226, + -0.05872933566570282, + -0.052006445825099945, + -0.043120697140693665, + 0.03606025502085686, + -0.010573850013315678, + -0.02868543192744255, + -0.0009766070870682597, + 0.01878346875309944, + -0.010479223914444447, + 0.04549508914351463, + -0.05096900463104248, + 0.0036524678580462933, + 0.040606096386909485, + -0.029015975072979927, + 0.010887770913541317, + 0.04403701797127724, + -0.019854852929711342, + -0.01087985374033451, + 0.012489656917750835, + -0.030808651819825172, + 0.0072409301064908504, + -0.02826264686882496, + -0.06297072768211365, + -0.03383362293243408, + -0.008449281565845013, + 0.015328843146562576, + 0.039289481937885284, + -0.022751620039343834, + -0.008973275311291218, + 0.06031488627195358, + 0.03198641538619995, + -0.00018899640417657793, + -0.0333993099629879, + -0.013266663998365402, + 0.037852562963962555, + 0.01633387804031372, + -0.0918261781334877, + 0.060392241925001144, + 0.0216978769749403, + -0.030114708468317986, + 0.008096111007034779, + 0.0024830077309161425, + 0.03244180604815483, + 0.059682782739400864, + -0.01966329850256443, + 0.006817564368247986, + 0.02832820639014244, + -0.015114332549273968, + -0.033882010728120804, + 0.0019707551691681147, + 0.00868417602032423, + 0.08402319997549057, + -0.003983767703175545, + 0.013286813162267208, + 0.03804522007703781, + -0.009767381474375725, + -0.005768126808106899, + -0.01866619847714901, + -0.07669422775506973, + -0.00985515583306551, + 0.011351381428539753, + 0.030144959688186646, + -0.010706563480198383, + -0.002034335397183895, + 0.02043343335390091, + 0.003243626793846488, + -0.030444376170635223, + -0.026131190359592438, + -0.003445158014073968, + 0.0062038227915763855, + 0.016476374119520187, + 0.024592325091362, + 0.03181827440857887, + -0.014061909168958664, + 0.005975816864520311, + 0.022825784981250763, + 0.01643400266766548, + 0.00037062488263472915, + -0.013342374935746193, + 0.03910162299871445, + -0.013337609358131886, + 0.07811073958873749, + 0.01127895712852478, + -0.03769449517130852, + -0.03934409096837044, + -0.023842783644795418, + -0.0408720038831234, + 0.052577219903469086, + -0.03517446666955948, + -0.0008021771791391075, + -0.0009457644773647189, + -0.015479248017072678, + -0.03931404650211334, + -0.045854032039642334, + 0.0267715472728014, + 0.04364893212914467, + -0.026120487600564957, + 0.03826993703842163, + -0.01083712000399828, + 0.002103228587657213, + -0.024318650364875793, + -0.005847285035997629, + -0.02096589468419552, + 0.004955278243869543, + 0.038924530148506165, + -0.04151066392660141, + -0.036634430289268494, + 0.06545612961053848, + 0.01514383777976036, + 0.021054096519947052, + -0.002244628733024001, + -0.017088936641812325, + 0.004493179265409708, + -0.02967347763478756, + 0.0017948281019926071, + -0.03696848079562187, + -0.023287301883101463, + 0.01141350343823433, + -0.028411755338311195, + 0.04358638823032379, + -0.008607447147369385, + 0.02492576651275158, + -0.004699149634689093, + -0.031769320368766785, + 0.0024814691860228777, + -0.032511766999959946, + 0.07536974549293518, + 0.042566873133182526, + 0.03532258793711662, + -0.020704301074147224, + 0.021633300930261612, + -0.009533134289085865, + 0.01748828962445259, + -0.013469169847667217, + 0.03859015554189682, + -0.016405854374170303, + 0.011064001359045506, + -0.009837108664214611, + 0.01745535619556904, + -0.010590020567178726, + -0.005790174938738346, + 0.04028816893696785, + 0.015129786916077137, + -0.004200104624032974, + -0.027222031727433205, + -0.008669747970998287, + -0.022415397688746452, + 0.05901869758963585, + 0.010789484716951847, + 0.05187610536813736, + 0.019319167360663414, + -0.014461901970207691, + -0.01457068882882595, + -0.009141918271780014, + 0.007253848481923342, + -0.006734554655849934, + 0.04428059607744217, + -0.06230483576655388, + 0.022181062027812004, + -0.019442696124315262, + -0.0026321522891521454, + 0.0264333076775074, + -0.005757075734436512, + -0.04883680120110512, + -0.028175683692097664, + 0.005242438521236181, + 0.0189431831240654, + -0.053649406880140305, + 0.011764572001993656, + -0.041082508862018585, + 0.07836480438709259, + -0.020296204835176468, + -0.01345499511808157, + -0.03929285705089569, + -0.004707131534814835, + -0.026891464367508888, + -0.03616470471024513, + -0.05396699160337448, + 0.02466275542974472, + 0.005807311274111271, + 0.023914262652397156, + -0.04550371691584587, + 0.011423168703913689, + -0.003234514268115163, + -0.024311834946274757, + 0.0025824615731835365, + 0.014127356931567192, + 3.6521094443742186e-05, + 0.02302454225718975, + 0.040834978222846985, + 0.028323698788881302, + -0.05966329574584961, + 0.005796448793262243, + 0.028643358498811722, + 0.03513537347316742, + -0.030344678089022636, + 0.007827706634998322, + 0.018876532092690468, + 0.0008152060909196734, + 0.03578680381178856, + 0.002001858549192548, + 0.007822544313967228, + 0.021307453513145447, + -0.008421432226896286, + 0.003407838521525264, + 0.02026849240064621, + -0.000978971365839243, + -0.028235487639904022, + 0.008957126177847385, + -0.08209220319986343, + 0.018781866878271103, + 0.00843060202896595, + 0.0008756805909797549, + 0.01652713119983673, + -0.013105759397149086, + 0.020221691578626633, + -0.006774538196623325, + -0.0066301231272518635, + -0.010008265264332294, + -0.005075504537671804, + 0.025348100811243057, + 0.02815261483192444, + 0.0418555773794651, + -0.04241342097520828, + 0.022928588092327118, + -0.03208988532423973, + 0.007509251125156879, + -0.002781728282570839, + -0.013402028940618038, + -0.04381497949361801, + 0.01944553107023239, + -0.012212241068482399, + 0.020920388400554657, + 0.01938413456082344, + -0.008787458762526512, + -0.002108809305354953, + -0.002181682037189603, + -0.008188195526599884, + 0.0115528404712677, + -0.02112613059580326, + -0.00012039628927595913, + -0.006691325455904007, + -0.027961384505033493, + -0.0345500186085701, + -0.01792425662279129, + -0.0328512042760849, + 0.041304685175418854, + 0.06537975370883942, + 0.025594279170036316, + 0.03228721767663956, + -0.021781833842396736, + 0.013285007327795029, + -0.01396129373461008, + 0.024997161701321602, + -0.017558595165610313, + 0.052375104278326035, + -0.010412773117423058, + -0.004608398303389549, + 0.028788451105356216, + 0.018017644062638283, + 0.02714640460908413, + 0.017053456977009773, + -0.00923244096338749, + 0.04799015447497368, + 0.029379459097981453, + 0.031033383682370186, + 0.012052071280777454, + -0.02810630202293396, + 0.0008667329675517976, + -0.029953699558973312, + -0.0429673045873642, + 0.005835837684571743, + -0.004921366460621357, + -0.022440802305936813, + 0.018994398415088654, + 0.006181016098707914, + -0.019149430096149445, + 0.012432588264346123, + -0.021599235013127327, + -0.0005107338074594736, + -0.01640017330646515, + -0.023874126374721527, + -0.001409627147950232, + -0.010698184370994568, + 0.010034755803644657, + 0.005096209701150656, + 0.05049591138958931, + 0.026035768911242485, + -0.016679583117365837, + -0.010377025231719017, + 0.031397879123687744, + -0.02426973171532154, + 0.0105268694460392, + 0.003117757383733988, + -0.007547732908278704, + -0.014579489827156067, + -0.015303288586437702, + -0.020872728899121284, + 0.018082687631249428, + 0.007314089685678482, + -0.00583134638145566, + 0.020054643973708153, + 0.02367154322564602, + 0.045038893818855286, + -0.0859709158539772, + -0.003964630421251059, + -0.032042261213064194, + 0.015206101350486279, + -0.021919408813118935, + 0.03962869569659233, + 0.03676483780145645, + 0.01641005091369152, + 0.013923343271017075, + 0.0005144267342984676, + -0.01982281357049942, + 0.04082554578781128, + 0.06813400238752365, + 0.001331393956206739, + 0.0005191155942156911, + -0.0063745309598743916, + 0.009223601780831814, + -0.0360257513821125, + 0.05624973028898239, + -0.03198925778269768, + 0.017784440889954567, + -0.04748852178454399, + 0.015819430351257324, + 0.003209079848602414, + 0.04801218956708908, + 0.029476167634129524, + -0.012737666256725788, + 0.00931634847074747, + -0.009566504508256912, + 0.028145765885710716, + -0.016082225367426872, + -0.009729135781526566, + -0.03018045425415039, + -0.020517490804195404, + 0.0007693256484344602 + ], + "start_index": 30833, + "end_index": 31062, + "token_count": 45, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "0cd5416e-20a5-5905-8300-8c9b7bd38593", + "_source": { + "text": "\n\nCada tipo de ámbito tiene reglas estrictas de visibilidad.\n\n---\n\n# XI.1.1 Global Scope\n\nEl **Global Scope** contiene variables declaradas como globales y es accesible desde cualquier parte del programa.\n\nPropiedades:\n\n- existe durante toda la vida del proceso del intérprete\n- es visible desde el flujo principal\n- es visible desde todas las funciones\n- es visible desde goroutines\n\nLas variables globales actúan como **estado compartido del programa**.\n\n---\n\n# XI.1.2 Main Local Scope\n\nEl **Main Local Scope** corresponde al flujo de ejecución principal del script, fuera de cualquier función.\n\nEjemplo:\n\n\n\nx = 10\ny = 20", + "embedding": [ + -0.029235944151878357, + -0.05699142813682556, + -0.008108838461339474, + -0.09685473889112473, + 0.02996256574988365, + -0.030006175860762596, + -0.01275953184813261, + -0.029351424425840378, + -0.0406411774456501, + -0.05165448039770126, + 0.06035102531313896, + -0.030097035691142082, + 0.02879536896944046, + -0.007824579253792763, + -0.03526821732521057, + 0.032838910818099976, + 0.00448642997071147, + 0.07291439920663834, + -0.0450596883893013, + -0.0448949821293354, + -0.06269846856594086, + 0.0017264713533222675, + -0.0027795007918030024, + -0.017760463058948517, + -0.035674069076776505, + -0.002346838591620326, + -0.015790781006217003, + 0.00785817950963974, + 0.055609412491321564, + 0.027968987822532654, + -0.04462461546063423, + 0.039377279579639435, + -0.06298307329416275, + -0.011376017704606056, + -0.045358289033174515, + -0.014694825746119022, + 0.07788129150867462, + -0.06450547277927399, + 0.03142349421977997, + 0.013288430869579315, + -0.020285891368985176, + 0.04376188665628433, + 0.05771930143237114, + 0.022023428231477737, + 0.08230265229940414, + -0.05681976303458214, + -0.043861024081707, + 0.010832978412508965, + -0.031959377229213715, + -0.017860811203718185, + -0.045060694217681885, + 0.005406670272350311, + -0.028687257319688797, + -0.020197810605168343, + -0.04684899374842644, + 0.04499353468418121, + -0.014504071325063705, + -0.08278175443410873, + -0.004295209888368845, + 0.03267839550971985, + 0.030174214392900467, + -0.036407455801963806, + -0.014696277678012848, + -0.016043908894062042, + -0.026237068697810173, + 0.036702435463666916, + -0.03641968593001366, + -0.015685902908444405, + 0.016902921721339226, + -0.017246529459953308, + 0.00506559107452631, + -0.05829846113920212, + -0.030472466722130775, + 0.0133122019469738, + 0.007930460385978222, + -0.022895053029060364, + -0.017558777704834938, + -0.02813347801566124, + 0.051362499594688416, + 0.01282140240073204, + -0.006884259171783924, + 0.013907250016927719, + -0.01839708350598812, + -0.03166257590055466, + 0.02078128792345524, + 0.06614406406879425, + -0.0060310522094368935, + 0.004986190237104893, + 0.013395932503044605, + 0.021919164806604385, + 0.02940240688621998, + 0.01262633316218853, + -0.008345738984644413, + 0.03868832439184189, + 0.02571437507867813, + 0.0074965558014810085, + -0.003936081659048796, + 0.025377904996275902, + 0.014048159122467041, + 0.010421487502753735, + 0.01190111506730318, + -0.00569162517786026, + -0.04585922881960869, + 0.0424666665494442, + 0.031628046184778214, + 0.049733441323041916, + -0.05741451308131218, + 0.008161707781255245, + -0.024224111810326576, + -0.0001675586827332154, + -0.0015038030687719584, + 0.00967296864837408, + -0.010122360661625862, + 0.07070738077163696, + -0.0634613037109375, + -0.009044838137924671, + 0.0034674890339374542, + -0.019342243671417236, + -0.002362003782764077, + 0.012983286753296852, + 0.024359967559576035, + 0.00013099155330564827, + 0.03017706423997879, + -0.010027116164565086, + 0.027921725064516068, + 0.017031146213412285, + -0.035949040204286575, + -0.005774001125246286, + 0.009185085073113441, + -0.00813569687306881, + 0.016479453071951866, + 0.0014080093242228031, + -0.012033989652991295, + -0.06414971500635147, + 0.01478931400924921, + -0.018838800489902496, + 0.015022735111415386, + -0.030294254422187805, + 0.035921644419431686, + -0.02181805856525898, + -0.02706507220864296, + -0.03541288524866104, + 0.005163515452295542, + -0.011471349745988846, + 0.02402716688811779, + -0.016797875985503197, + 0.007928421720862389, + 0.032702598720788956, + -0.011513221077620983, + -0.019442737102508545, + -0.024302132427692413, + -0.016269568353891373, + 0.026371821761131287, + -0.02723546326160431, + 0.015721481293439865, + -0.0011113254586234689, + -0.0088835833594203, + -0.0035779972095042467, + 0.00886193010956049, + 0.015258347615599632, + 0.01848915033042431, + 0.006066017784178257, + 0.006234401371330023, + -0.027451805770397186, + -0.013703140430152416, + 0.03302023932337761, + 0.03971546143293381, + -0.023831618949770927, + -0.0017886321293190122, + -0.019343022257089615, + 0.0016727426555007696, + 0.012701685540378094, + -0.00046901029418222606, + -0.04749683290719986, + 0.027390290051698685, + 0.010920345783233643, + -0.018106834962964058, + 0.016881082206964493, + -0.028723858296871185, + 0.033280760049819946, + 0.007097340654581785, + 0.015757309272885323, + 0.022991186007857323, + 0.0254693441092968, + -0.0021432393696159124, + 0.04787895455956459, + -0.004298156127333641, + 0.0014375598402693868, + -0.004283461254090071, + -0.04353129863739014, + -0.00410482520237565, + -0.020416736602783203, + -0.042692117393016815, + 0.0004652944626286626, + 0.004261621739715338, + -0.024787364527583122, + -0.041098229587078094, + -0.0344979390501976, + -0.021806692704558372, + -0.006835246458649635, + 0.004468549974262714, + 0.042105235159397125, + -0.010532970540225506, + 0.0054273963905870914, + -0.011943834833800793, + -0.0071373688988387585, + 0.0002994826063513756, + 0.011259217746555805, + -0.01363550964742899, + 0.016696296632289886, + -0.03827313333749771, + 0.01739443466067314, + -0.020265407860279083, + -0.003477595979347825, + -0.00809863954782486, + 0.032350506633520126, + 0.0056223212741315365, + 0.03524109721183777, + -0.014614329673349857, + 0.03804657235741615, + 0.017312686890363693, + 0.016556696966290474, + -0.012752672657370567, + 0.012271597981452942, + 0.08302246034145355, + 0.01921454258263111, + -0.008360914885997772, + -0.021992456167936325, + -0.03164402395486832, + 0.01734060049057007, + 0.0324641689658165, + -0.0233157929033041, + -0.007624791469424963, + 0.011793695390224457, + 0.01936543546617031, + 0.0380401648581028, + -0.004100507125258446, + 0.07641351968050003, + 0.03961491584777832, + -0.01850375346839428, + 0.005335291847586632, + 0.00256918603554368, + -0.005993337370455265, + 0.005986469332128763, + -0.008527020923793316, + -0.006379943341016769, + 0.022582532837986946, + -0.012944984249770641, + -0.0098851528018713, + 0.0022636898793280125, + 0.04952037334442139, + -0.0012645047390833497, + -0.027625875547528267, + -0.04337644577026367, + 0.018742728978395462, + 0.021365061402320862, + -0.0011578717967495322, + 0.004146977793425322, + -0.008568600751459599, + -0.005750991869717836, + 0.008701231330633163, + -0.03664190694689751, + 0.015609956346452236, + 0.00785521138459444, + -0.0012597189052030444, + 0.002757977694272995, + -0.02115674875676632, + -0.0026688361540436745, + -0.026477912440896034, + 0.004975738003849983, + -0.0024761876557022333, + -0.004952221643179655, + -0.012727619148790836, + 0.03975890949368477, + 0.012267240323126316, + -0.012830630876123905, + -0.0001459729828638956, + -0.046507954597473145, + 0.03405936062335968, + 0.009015054441988468, + 0.025488970801234245, + 0.011801374144852161, + -0.019719406962394714, + 0.016609767451882362, + -0.005447602365165949, + 0.012615383602678776, + 0.01919863559305668, + 0.012067379429936409, + -0.012938369065523148, + 0.0015470291255041957, + -0.005754903890192509, + 0.054976191371679306, + -0.06151241064071655, + 0.010688812471926212, + -0.0031391053926199675, + -0.019978400319814682, + 0.027380499988794327, + -0.03858141601085663, + 0.02168201096355915, + -0.004164997022598982, + 0.03716292604804039, + 0.014204937033355236, + 0.013396821916103363, + -0.03296087309718132, + -0.052874788641929626, + 0.024029260501265526, + 0.04583292081952095, + -0.03019298054277897, + 0.028496740385890007, + 0.02915501967072487, + 0.12608663737773895, + 0.0017864861292764544, + -0.004967511631548405, + -0.04591842368245125, + 0.04357477277517319, + 0.06527747958898544, + 0.05402868986129761, + -0.03628216311335564, + -0.01277113612741232, + -0.028758876025676727, + 0.05012933909893036, + 0.0053035723976790905, + 0.014729508198797703, + -0.023342086002230644, + 0.0041917115449905396, + 0.041779775172472, + 0.0490129254758358, + 0.06371237337589264, + 0.0008086889865808189, + -0.053538184612989426, + -0.0037424988113343716, + 0.026120798662304878, + 0.002806613454595208, + 0.022137856110930443, + 0.014232594519853592, + 0.03397630527615547, + -0.051607564091682434, + 0.02430979534983635, + -0.050651952624320984, + -0.03532172366976738, + 0.008374202996492386, + 0.004231915343552828, + -0.004559886641800404, + -0.07893023639917374, + -0.01543260458856821, + -0.0021821146365255117, + -0.04389036074280739, + -0.04123885557055473, + 0.04482463002204895, + -0.008634212426841259, + -0.0876830518245697, + -0.02309713512659073, + -0.03231119364500046, + -0.018534043803811073, + -0.0192446056753397, + -0.014901760034263134, + -0.0006365475128404796, + 0.010947008617222309, + -0.010944300331175327, + 0.023761438205838203, + 0.03556806966662407, + 0.0078464699909091, + -0.030932340770959854, + 0.029456960037350655, + -0.03157922253012657, + 0.037762343883514404, + -0.07502573728561401, + -0.07010065019130707, + 0.05654506757855415, + -0.09755582362413406, + -0.05276130512356758, + 0.023036470636725426, + -0.04093911871314049, + 0.008050457574427128, + 0.024251682683825493, + 0.00020829540153499693, + 0.06619653850793839, + 0.01975906267762184, + 0.01853630691766739, + 0.08704390376806259, + 0.05199986696243286, + -0.01772705465555191, + -0.007248143199831247, + 0.007800508290529251, + 0.025311533361673355, + 0.02411654032766819, + 0.0005731307901442051, + -0.05374123156070709, + 0.02086266502737999, + -0.04518318921327591, + 0.011292784474790096, + -0.057143598794937134, + 0.021519018337130547, + -0.004078051541000605, + 0.007777029182761908, + -0.01194070465862751, + -0.04364628344774246, + -0.01747957244515419, + -0.025022776797413826, + 0.010530446656048298, + -0.05570374056696892, + -0.0003725971037056297, + -0.035207975655794144, + -0.028349831700325012, + 0.02867860533297062, + 0.025676928460597992, + -0.020546598359942436, + -0.008515099063515663, + -0.0021831432823091745, + -0.025087645277380943, + 0.023458212614059448, + -0.006064609624445438, + 0.014149464666843414, + 0.019671237096190453, + -0.014231071807444096, + -0.01453089527785778, + 0.00665637943893671, + 0.05565555393695831, + -0.04046761617064476, + 0.020416323095560074, + -0.0710630714893341, + -0.017754841595888138, + -0.08133478462696075, + -0.02203822322189808, + -0.0020396073814481497, + -0.011259013786911964, + -0.018998732790350914, + -0.036074817180633545, + 0.004905061796307564, + -0.003107021562755108, + -0.0008630796219222248, + -0.027072777971625328, + 0.0450822077691555, + 0.02227216213941574, + -0.010047226212918758, + -0.017710650339722633, + -0.0010182051919400692, + 0.0720299705862999, + -0.009412690065801144, + -0.01122534554451704, + -0.004990875255316496, + -0.03771929815411568, + 0.016749637201428413, + -0.03953750431537628, + 0.0177911464124918, + -0.00689476914703846, + -0.05384740233421326, + 0.0014287992380559444, + -0.013345207087695599, + -0.011601251550018787, + 0.01118798553943634, + -0.01328948698937893, + 0.021659839898347855, + 0.020132826641201973, + 0.011259591206908226, + -0.006047565955668688, + 0.001499090576544404, + -0.046322088688611984, + 0.007457641884684563, + -0.0177298691123724, + 0.04934317618608475, + 0.0966518297791481, + 0.047723934054374695, + 0.005266061518341303, + -0.09143879264593124, + 0.02177884615957737, + -0.005189094692468643, + -0.004563531372696161, + 0.021028777584433556, + 0.010979429818689823, + 0.04554083198308945, + -0.00326174171641469, + 0.008594819344580173, + -0.002664177678525448, + -0.04015333577990532, + 0.003192655509337783, + 0.0004054729361087084, + -0.043523985892534256, + 0.007595836650580168, + -0.0229155495762825, + -0.025004060938954353, + -0.014017670415341854, + 0.0073967729695141315, + -0.044189274311065674, + 0.09135936200618744, + 0.00623079389333725, + 0.001028789789415896, + 0.01464802771806717, + -0.09158512204885483, + -0.04412767291069031, + -0.06685466319322586, + 0.001459345337934792, + -0.02651134505867958, + 0.031715184450149536, + 0.019014766439795494, + 0.03216950595378876, + -0.009254556149244308, + -0.0258990116417408, + -0.06863120943307877, + 0.05783950909972191, + -0.019932059571146965, + -0.044381625950336456, + 0.010329408571124077, + 0.021488085389137268, + -0.004569042939692736, + -0.0019698655232787132, + 0.05462624132633209, + -0.060322683304548264, + -0.013551111333072186, + 0.011247888207435608, + 0.014272931031882763, + 0.038974810391664505, + 0.05293703451752663, + -0.0026216323021799326, + -0.00972352921962738, + 0.013702486641705036, + 0.04176321253180504, + -0.0036117066629230976, + 0.04245613515377045, + 0.017232736572623253, + 0.00519560044631362, + 0.06987062841653824, + 0.01906134933233261, + 0.01723208837211132, + -0.02339334227144718, + 0.020944789052009583, + 0.03075668215751648, + 0.017454175278544426, + 0.06060275807976723, + 0.02167244628071785, + 0.005281554535031319, + -0.060853589326143265, + -0.008058367297053337, + -0.02378445491194725, + 0.015578933991491795, + 0.03281542658805847, + -0.018392780795693398, + 0.04450222849845886, + 0.022540194913744926, + -0.017721522599458694, + -0.015348473563790321, + 0.012502382509410381, + -0.02794591896235943, + 0.00161355035379529, + 0.02965165302157402, + -0.04859341308474541, + -0.07602061331272125, + 0.06362155079841614, + 0.05532417446374893, + 0.0332251600921154, + -0.024006960913538933, + -0.02649887651205063, + 0.008408361114561558, + 0.012338194064795971, + 0.01051377784460783, + 0.013946533203125, + 0.05058199167251587, + 0.014513679780066013, + 0.04234350100159645, + -0.07797940075397491, + -0.007660847622901201, + 0.011323732323944569, + -0.008208283223211765, + -0.01190201286226511, + -0.01853877119719982, + -0.05593699961900711, + 0.028296004980802536, + 0.06103646755218506, + 0.02567259781062603, + 0.04140133783221245, + 0.04189605265855789, + -0.0009503651526756585, + -0.0818064734339714, + 0.04023420065641403, + -0.020665617659687996, + -0.03296211361885071, + -0.022933922708034515, + 0.038463372737169266, + -0.023156680166721344, + -0.005337415263056755, + 0.012789059430360794, + 0.029576143249869347, + 0.039647992700338364, + 0.0069272639229893684, + 0.005874730180948973, + -0.027898306027054787, + 0.03297724574804306, + 0.015945637598633766, + -0.018431223928928375, + 0.011881419457495213, + -0.013450868427753448, + 0.02917243354022503, + -0.014530799351632595, + 0.0028326110914349556, + 0.05347621068358421, + 0.029900316148996353, + -0.02674715779721737, + -0.0021170908585190773, + -0.05396420881152153, + -0.008654964156448841, + -0.01577538251876831, + 0.03770710900425911, + -0.0085566695779562, + 0.0027850125916302204, + -0.04394190013408661, + 0.01573937013745308, + -0.011666757054626942, + -0.010572222992777824, + -0.03574073314666748, + -0.007309430278837681, + -0.055538609623909, + -0.001646930119022727, + 0.014045541174709797, + -0.01454378291964531, + -0.016391390934586525, + -0.01319995429366827, + 0.006539550609886646, + 0.010006275959312916, + -0.0029399641789495945, + -0.030322736129164696, + 0.061962004750967026, + -0.01147198025137186, + -0.0126427561044693, + 0.09705420583486557, + 0.038718972355127335, + 0.02710007317364216, + -0.041502904146909714, + 0.008058070205152035, + -0.04562796279788017, + 0.008053497411310673, + -0.03365714102983475, + 0.005329479463398457, + -0.009900983422994614, + 0.030754515901207924, + 0.01644987054169178, + -0.005264471750706434, + 0.012148071080446243, + 0.011446823365986347, + -0.0028485695365816355, + -0.03602972254157066, + -0.008820220828056335, + 0.023828664794564247, + 0.0069604008458554745, + -0.016085481271147728, + 0.031445588916540146, + 0.023243917152285576, + -0.01667236164212227, + 0.015225375071167946, + 0.027109583839774132, + 0.0012138125021010637, + 0.035736143589019775, + -0.010535352863371372, + 0.024727415293455124, + 0.06879441440105438, + 0.011410948820412159, + -0.0010611132020130754, + -0.030329277738928795, + 0.02802351303398609, + 0.01974296383559704, + 0.0006456328555941582, + 0.011851903051137924, + -0.03565412759780884, + -0.027752025052905083, + -0.06648200750350952, + 0.035914238542318344, + -4.260148125467822e-05, + 0.06261161714792252, + 0.048073023557662964, + -0.02318050153553486, + -0.013043823651969433, + 0.008656530641019344, + -0.0025224306154996157, + -0.032929934561252594, + 0.07290620356798172, + 0.003606268670409918, + -0.033410437405109406, + 0.0514063835144043, + -0.00017385542741976678, + 0.04047171398997307, + 0.0007268926128745079, + -0.0025437676813453436, + 0.010821186937391758, + 0.07018061727285385, + -0.030607761815190315, + 0.02005438506603241, + 0.004240632057189941, + -0.08596663177013397, + -0.06326542794704437, + 0.02492077648639679, + -0.024710027500987053, + -0.004852575715631247, + -0.04797353968024254, + 0.029847459867596626, + -0.03727906942367554, + -0.013253576122224331, + -0.007298645563423634, + -0.01032596081495285, + 0.062002889811992645, + -0.02015121653676033, + -0.0160418301820755, + -0.012421481311321259, + -0.03840191289782524, + -0.029766175895929337, + -0.0094115836545825, + -0.0030504309106618166, + -0.0026385565288364887, + -0.029245471581816673, + -0.042176950722932816, + -0.04450218379497528, + -0.01877206563949585, + 0.023311397060751915, + 0.04322922229766846, + -0.038251280784606934, + 0.0054449476301670074, + 0.020161159336566925, + 0.03148453310132027, + 0.002690242836251855, + -0.06620977818965912, + -0.030048485845327377, + 0.08981133252382278, + 0.04577303305268288, + -0.10920020937919617, + 0.028074156492948532, + 0.021294886246323586, + 0.018997209146618843, + -0.026834631338715553, + 0.05488013103604317, + 0.022740429267287254, + 0.05489567667245865, + -0.017230229452252388, + 0.002425607992336154, + -0.006761095952242613, + 0.007094889413565397, + -0.02921874448657036, + 0.031678907573223114, + 0.010400908067822456, + 0.06446010619401932, + -0.007711091544479132, + -0.012625266797840595, + 0.001570611959323287, + 0.02414306253194809, + -0.019358092918992043, + -0.012912841513752937, + -0.06137624755501747, + -0.0008636608254164457, + 0.015785740688443184, + -0.016791805624961853, + 0.07314543426036835, + -0.025394011288881302, + 0.04299825429916382, + 0.049394164234399796, + -0.04534594342112541, + 0.005229620728641748, + -0.026629658415913582, + -0.004697361029684544, + 0.005145237315446138, + -0.02061433158814907, + 0.0046098423190414906, + -0.013658996671438217, + 0.07587108761072159, + -0.007424403913319111, + 0.02084234356880188, + 0.010279862210154533, + -0.0007574618211947381, + 0.04369432479143143, + -0.0005035946378484368, + 0.041962217539548874, + 0.0027913011144846678, + -0.017231056466698647, + -0.02665763534605503, + -0.02845541201531887, + -0.01791762001812458, + 0.01382890623062849, + -0.00804289523512125, + -0.03519207611680031, + -0.031156960874795914, + -0.023447366431355476, + -0.008861077018082142, + -0.01299347635358572, + 0.011902312748134136, + 0.03409808129072189, + -0.05914384499192238, + 0.0071326051838696, + 0.037015583366155624, + 0.017127806320786476, + 0.013689126819372177, + -0.008558656089007854, + -0.03309442847967148, + 0.02302607335150242, + 0.01613384112715721, + -0.0087742256000638, + 0.004807403776794672, + 0.03904912248253822, + -0.015937602147459984, + -0.004669553600251675, + 0.01369420439004898, + 0.015425257384777069, + 0.02246163785457611, + -0.03128717467188835, + -0.011446605436503887, + -0.0035042783711105585, + -0.023533914238214493, + -0.027250731363892555, + 0.006178098265081644, + -0.0182158425450325, + 0.0073996009305119514, + -0.028433043509721756, + -0.023972326889634132, + -0.0608990341424942, + -0.008558067493140697, + -0.02011944353580475, + 0.04534485563635826, + 0.02198122814297676, + 5.597856579697691e-05, + -0.05650738999247551, + 0.020098641514778137, + -0.009937622584402561, + -0.0009684759424999356, + -0.04815280809998512, + 0.03869316726922989, + -0.016968758776783943, + 0.020618541166186333, + -0.016341937705874443, + -0.02640538662672043, + -0.029445426538586617, + -0.008821014314889908, + 0.03642621636390686, + -0.009989043697714806, + 0.016830412670969963, + 0.005411653313785791, + -0.043466903269290924, + -0.015668168663978577, + 0.036987967789173126, + -0.018143396824598312, + 0.032557010650634766, + 0.041185785084962845, + 0.033408451825380325, + 0.009941479191184044, + 0.009224842302501202, + 0.007823559455573559, + 0.04095025360584259, + -0.0026236020494252443, + -0.03250591456890106, + 0.021218908950686455, + -0.0002532911312300712, + -0.027674665674567223, + -0.007009290624409914, + 0.022568587213754654, + -0.021113969385623932, + 0.023784790188074112, + 0.018108028918504715, + 0.034222908318042755, + -0.0650162398815155, + -0.021441765129566193, + 0.002856867155060172, + 0.07862363755702972, + 0.002438346156850457, + -0.010541107505559921, + -0.02385828271508217, + 0.03683067113161087, + -0.015076073817908764, + -0.03929723799228668, + -0.059776924550533295, + -0.01960071735084057, + -0.014345311559736729, + 0.01590883545577526, + -0.06756934523582458, + -0.01377800665795803, + -0.019978072494268417, + 0.02481129951775074, + -0.014067412354052067, + 0.01363468635827303, + 0.025083018466830254, + 0.0005018280353397131, + 0.058590445667505264, + 0.021203219890594482, + -0.018585603684186935, + -0.00770595483481884, + -0.01705828122794628, + 0.01558831986039877, + -0.016409555450081825, + -0.0197244081646204, + -0.04426506534218788, + -0.0030956738628447056, + 0.024832865223288536, + 0.03956061601638794, + 0.0159317459911108, + 0.0043730344623327255, + -0.008435644209384918, + 0.0205264613032341, + 0.02099032700061798, + -0.004645107313990593, + -0.0016683366848155856, + 0.045319534838199615, + -0.05982203409075737, + -0.013171316124498844, + 0.01016591489315033, + -0.023095091804862022, + 0.031153472140431404, + 0.008272448554635048, + 0.04574761912226677, + -0.03030378930270672, + 0.009441051632165909, + -0.008060355670750141, + 0.028250113129615784, + -0.012517894618213177, + 0.03574754297733307, + 0.03420780226588249, + -0.03373618796467781, + 0.01497624721378088, + 0.019794298335909843, + 0.015285726636648178, + 0.023534782230854034, + -0.06682536005973816, + 0.01367103960365057, + 0.020842716097831726, + -0.016009313985705376, + -0.002477802336215973, + 0.052955158054828644, + -0.02946244180202484, + 0.005467585753649473, + -0.007494149263948202, + 0.025586437433958054, + -0.0326099768280983, + -0.02080066315829754, + 0.0022427181247621775, + -0.04896670579910278, + -0.03012399561703205, + 0.0019082160433754325, + 0.002808941062539816, + 0.005060889292508364, + -0.00957734975963831, + 0.013050438836216927, + 0.04215594753623009, + 0.05481313169002533, + 0.006843142677098513, + -0.0242339875549078, + -0.009865369647741318, + 0.009434557519853115, + -0.023940153419971466, + 0.02714327722787857, + -0.042741045355796814, + 0.04314526543021202, + 0.05506280064582825, + 0.02123350091278553, + 0.01109549030661583, + 0.0031533529981970787, + 0.0039688884280622005, + 0.009623702615499496, + 0.01612364687025547, + -0.015138848684728146, + -0.03664741292595863, + -0.0014761516358703375, + -0.0358404815196991, + 0.00244069192558527, + -0.019154895097017288, + -0.03611045330762863, + 0.033717602491378784, + -0.03838396444916725, + -0.0015911657828837633, + 0.008444438688457012, + -0.034424085170030594, + 0.03444259241223335, + -0.0341748408973217, + -0.012039724737405777, + -0.02488919533789158, + -0.03839745372533798, + -0.004835917614400387, + -0.037153154611587524, + -0.018165981397032738, + 0.04048576578497887, + 0.04033816605806351, + -0.018517587333917618, + -0.005122644826769829, + -0.0013713057851418853, + 0.014696076512336731, + -0.02023027464747429, + 0.02605840004980564, + 0.008259005844593048, + 0.006998132448643446, + -0.033369775861501694, + -0.017135407775640488, + 0.0021499935537576675, + 0.01485208049416542, + 0.02998298406600952, + 0.006097860634326935, + 0.0086974473670125, + -0.010014154948294163, + 0.0012142035411670804, + -0.03265468031167984, + -0.012062140740454197, + -0.03396184742450714, + 0.0363592728972435, + 0.019659731537103653, + 0.02208149991929531, + 0.057718902826309204, + -0.00478482898324728, + -0.004106517881155014, + -0.0046323020942509174, + -0.03188983350992203, + 0.015242340974509716, + 0.04693473502993584, + -0.025811757892370224, + -0.024302612990140915, + 0.006276335101574659, + -0.020445581525564194, + 0.014939415268599987, + -0.013317502103745937, + -0.010080059990286827, + -0.006509900558739901, + 0.021491197869181633, + 0.009949982166290283, + 0.011795845814049244, + -0.002541366731747985, + 0.014335780404508114, + -0.017837319523096085, + 0.008442952297627926, + -0.031133856624364853, + 0.025699617341160774, + -0.03967183828353882, + 0.01473901979625225, + -0.02779003232717514, + 0.005801466293632984, + -0.05249972268939018 + ], + "start_index": 31062, + "end_index": 31691, + "token_count": 143, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "02599727-31c2-5bbc-8e1c-f21908dbee9d", + "_source": { + "text": "\n\nEstas variables son **locales del flujo principal**.\n\nReglas:\n\n- son accesibles dentro del flujo principal\n- **no son accesibles desde funciones**\n- **no son accesibles desde goroutines**\n- desaparecen cuando finaliza la ejecución del script\n\nEsto evita dependencias implícitas entre funciones y el flujo principal.\n\n---\n\n# XI.1.3 Function Scope\n\nCada vez que se invoca una función:\n\n\n\nfunction nombre(parametros)", + "embedding": [ + -0.0015729733277112246, + -0.04068358242511749, + -0.008131098933517933, + -0.13143888115882874, + 0.048107270151376724, + 0.003466777503490448, + -0.01461191475391388, + -0.036946892738342285, + -0.015377077274024487, + -0.009483089670538902, + 0.029052412137389183, + -0.0371626578271389, + -0.005328567232936621, + -0.008867695927619934, + -0.04166417196393013, + 0.03886938467621803, + 0.011641226708889008, + 0.015729598701000214, + -0.05039416253566742, + -0.0555722713470459, + -0.09208814054727554, + 0.019957751035690308, + 0.03344402462244034, + -0.016431445255875587, + -0.019483918324112892, + 0.018786681815981865, + -0.0051156869158148766, + 0.013478176668286324, + 0.009224919602274895, + -0.014890537597239017, + -0.020681114867329597, + 0.016914982348680496, + -0.04762974753975868, + -0.015369686298072338, + -0.05303288623690605, + -0.012987904250621796, + 0.06435126066207886, + -0.07242502272129059, + 0.023245248943567276, + 0.020817512646317482, + -0.015733469277620316, + 0.05527612194418907, + 0.06562312692403793, + 0.025079291313886642, + 0.05356406047940254, + -0.027625802904367447, + -0.038565441966056824, + 0.03711885213851929, + -0.012222529388964176, + -0.016308346763253212, + -0.029875775799155235, + 0.022082827985286713, + 0.0011128609767183661, + -0.032330892980098724, + -0.04047727584838867, + 0.009699037298560143, + -0.015847476199269295, + -0.07322480529546738, + -0.009113527834415436, + 0.022567138075828552, + 0.010752047412097454, + -0.07328230887651443, + -0.010172388516366482, + -0.05584074184298515, + -0.014762702398002148, + 0.053187429904937744, + -0.02695479243993759, + -0.006151109002530575, + -0.020477676764130592, + -0.010853408835828304, + 0.017961377277970314, + -0.05833200365304947, + -0.011448889039456844, + 0.01915583573281765, + -0.012914381921291351, + -0.005224860273301601, + 0.013395445421338081, + -0.01391759142279625, + 0.05229731276631355, + 0.011231367476284504, + -0.01687649078667164, + 0.031590431928634644, + 0.017335936427116394, + -0.009861140511929989, + 0.01740449108183384, + 0.08109154552221298, + -0.016267502680420876, + 0.03477095440030098, + 0.027262218296527863, + 0.036905087530612946, + 0.030741127207875252, + 0.014085928909480572, + -0.030818434432148933, + 0.06515493243932724, + 0.06054094061255455, + -0.011142155155539513, + 0.002974923001602292, + -0.001723748748190701, + 0.023447174578905106, + -0.01893570087850094, + -0.01742970384657383, + -0.01035701297223568, + -0.0254653450101614, + 0.027567459270358086, + 0.012316791340708733, + 0.055502526462078094, + -0.037256188690662384, + 0.0114193856716156, + -0.008313841186463833, + 0.01150961872190237, + -0.012958928011357784, + -0.001753741642460227, + 0.008593916893005371, + 0.024836858734488487, + -0.052987903356552124, + 0.02084747888147831, + 0.035729680210351944, + -0.008684825152158737, + -0.017794715240597725, + 0.0011012513423338532, + 0.03192615509033203, + 0.016008839011192322, + 0.0254268366843462, + -0.009862040169537067, + 0.046803805977106094, + 0.009342668578028679, + -0.038793765008449554, + -0.00404749670997262, + 0.021773185580968857, + -0.02891540713608265, + 0.010289371944963932, + -0.016209015622735023, + 0.007049411069601774, + -0.03322135657072067, + 0.005131515208631754, + -0.023597823455929756, + 0.02610987424850464, + -0.015090701170265675, + 0.03223451226949692, + 0.0006502405158244073, + -0.048006344586610794, + -0.02427288144826889, + 0.01612289994955063, + -0.02043725550174713, + 0.025660257786512375, + -0.000707616622094065, + 0.008038033731281757, + 0.03936513140797615, + -0.00035928867873735726, + -0.001300597912631929, + -0.00916006974875927, + -0.019667156040668488, + -0.01169215515255928, + -0.013123271986842155, + 0.00817165244370699, + 0.010126843117177486, + -0.020887497812509537, + 0.003402241738513112, + 0.010344785638153553, + 0.020054655149579048, + 0.013834581710398197, + 0.01138343382626772, + 0.0034814171958714724, + -0.0340852290391922, + -0.010781298391520977, + 0.06272393465042114, + 0.010915517807006836, + -0.02965584211051464, + -0.025443773716688156, + -0.03645731881260872, + -0.018604561686515808, + 0.0003706310235429555, + 0.014310348778963089, + -0.07057172805070877, + -0.01359388418495655, + -0.005364439450204372, + -0.022762339562177658, + 0.06798768043518066, + -0.02203431725502014, + -0.010537910275161266, + 0.017358331009745598, + 0.02135997824370861, + 0.020207775756716728, + 0.02736290544271469, + 0.006261818576604128, + 0.04148704931139946, + -0.03667435795068741, + -0.029749959707260132, + -0.01242489367723465, + -0.054468005895614624, + 0.0218505896627903, + -0.00779441324993968, + -0.001207859953865409, + -0.018309297040104866, + 0.007897550240159035, + -0.01929865963757038, + -0.057838067412376404, + -0.041088003665208817, + -0.009177704341709614, + -0.014950152486562729, + -0.0212488304823637, + 0.03365389257669449, + -0.0059363762848079205, + 0.006875086110085249, + -0.023699330165982246, + 0.01468527503311634, + 0.017089011147618294, + -0.007078997790813446, + -0.02134980820119381, + 0.0020944273564964533, + -0.02065083011984825, + -0.009010997600853443, + -0.025889642536640167, + -0.038177475333213806, + 0.005801591090857983, + 0.016955209895968437, + -0.02354995720088482, + 0.06744667887687683, + 0.0008158411365002394, + 0.02527090348303318, + 0.022532735019922256, + 0.012758340686559677, + -0.0013446054654195905, + 0.023408489301800728, + 0.048040393739938736, + -0.006603035610169172, + 0.012051889672875404, + -0.03558368980884552, + -0.020682338625192642, + 0.016369828954339027, + 0.024518771097064018, + -0.017588652670383453, + 0.020471712574362755, + 0.009984373115003109, + 0.018279453739523888, + 0.033557601273059845, + -0.004593966528773308, + 0.03107679821550846, + 0.034968648105859756, + 0.034083981066942215, + 0.019211946055293083, + -0.0213478896766901, + -0.004310459364205599, + 0.025729520246386528, + -0.015418767929077148, + 0.018379976972937584, + 0.006475682370364666, + -0.027101492509245872, + -0.011109973303973675, + 3.4198772482341155e-05, + 0.07234356552362442, + 0.006132302340120077, + -0.024338336661458015, + -0.02378758043050766, + -0.00482817180454731, + -0.028309743851423264, + 0.000951823138166219, + 0.05110079422593117, + -0.013107380829751492, + 0.001387333613820374, + -0.0026561343111097813, + -0.03613213822245598, + 0.0052962107583880424, + 0.034717101603746414, + 0.0015295147895812988, + 0.004908858332782984, + -0.023478567600250244, + -0.019407877698540688, + -0.024579400196671486, + -0.024878015741705894, + 0.014148914255201817, + 0.014642205089330673, + -0.007299629505723715, + 0.04038921743631363, + 0.029238546267151833, + -0.03259001672267914, + -0.016685744747519493, + -0.03556470945477486, + 0.017436794936656952, + -0.016880739480257034, + 0.00551432091742754, + -0.03871740773320198, + -0.04130954667925835, + 0.03257019445300102, + 0.006462747231125832, + 0.012193338945508003, + -0.0025847519282251596, + -0.003445090027526021, + 0.001519509474746883, + 0.007426914758980274, + -0.021592730656266212, + 0.019011395052075386, + -0.07049509882926941, + -0.02314545214176178, + 0.025101318955421448, + -0.021460717543959618, + 0.004354092292487621, + -0.012418326921761036, + 0.05393984168767929, + -0.007323610130697489, + 0.03870529681444168, + 0.013786282390356064, + 0.016466083005070686, + -0.05166935920715332, + -0.02326594851911068, + 0.035885851830244064, + 0.0646456629037857, + -0.027084708213806152, + 0.04944442957639694, + 0.04072938114404678, + 0.08201435208320618, + 0.041409481316804886, + -0.001706268871203065, + -0.031643327325582504, + -0.0188639797270298, + 0.05299980938434601, + 0.04137168079614639, + -0.01991932839155197, + 0.011199557222425938, + -0.046206943690776825, + 0.019583331421017647, + 0.0006790071493014693, + -0.004392658360302448, + -0.05238310247659683, + -0.0031274277716875076, + 0.03120521269738674, + 0.08901140093803406, + 0.0352197140455246, + 0.027784988284111023, + -0.028838198632001877, + -0.0029571019113063812, + 0.027444368228316307, + 0.03609185665845871, + 0.019568167626857758, + 0.026799757033586502, + 0.012491093948483467, + -0.03409895300865173, + -0.0033326223492622375, + -0.03690385818481445, + -0.0017670603701844811, + 0.0008675477583892643, + 0.04999295249581337, + 0.015848712995648384, + -0.03508954495191574, + 0.007022119127213955, + -0.012306573800742626, + -0.035671912133693695, + 0.022172091528773308, + 0.0470748171210289, + -0.03802136704325676, + -0.10296573489904404, + -0.01244213804602623, + -0.02269117347896099, + -0.0031986937392503023, + -0.041473932564258575, + 0.0039141252636909485, + 0.01316369604319334, + -0.0028959400951862335, + 0.010704564861953259, + 0.011705035343766212, + 0.02490861527621746, + -0.002883690409362316, + -0.033304791897535324, + 0.07858514785766602, + -0.012149713933467865, + -0.0031109119299799204, + -0.07584396749734879, + -0.10056038945913315, + 0.08147893846035004, + -0.0763440728187561, + -0.05227574706077576, + 0.03868947923183441, + 0.012961601838469505, + 0.00766221946105361, + 0.06906526535749435, + 0.01413030456751585, + 0.04605980962514877, + 0.040400974452495575, + 0.006291721481829882, + 0.06517951935529709, + 0.031273581087589264, + 0.03672630712389946, + -0.014989010989665985, + 0.0168190635740757, + 0.025697316974401474, + 0.00527902552857995, + 0.005930065643042326, + -0.057060834020376205, + 0.02972801961004734, + -0.015184572897851467, + 0.021985772997140884, + 0.0007707600598223507, + 0.011368688195943832, + 0.0016929438570514321, + 0.000232191028771922, + 0.042301490902900696, + -0.08419473469257355, + -0.015443227253854275, + -0.00956824328750372, + 0.05486077815294266, + -0.04999338462948799, + -0.019322820007801056, + -0.03887788951396942, + 0.013123846612870693, + 0.09941888600587845, + 0.017939146608114243, + -0.03264316916465759, + -0.013584622181952, + -0.0067441328428685665, + -0.055697277188301086, + 0.020765332505106926, + 0.007481694221496582, + 0.0014443062245845795, + 0.014615262858569622, + -0.014316813088953495, + -0.00703661423176527, + -0.008672180585563183, + 0.05103548988699913, + 0.005995441228151321, + -0.010471997782588005, + -0.05054223909974098, + -0.004873816389590502, + -0.061708785593509674, + -0.015781711786985397, + -0.004097110591828823, + -0.014534368179738522, + -0.03231381997466087, + -0.049822356551885605, + 0.035795532166957855, + 0.005443618167191744, + 0.0008851540624164045, + -0.016602519899606705, + 0.05269357189536095, + 0.010869150049984455, + 0.00020159220730420202, + -0.0006270033773034811, + 0.020338140428066254, + 0.050838641822338104, + 0.0005229872767813504, + 0.0032984567806124687, + 0.0022942598443478346, + -0.05483480542898178, + 0.006232036743313074, + -0.014674825593829155, + -0.01656557247042656, + 0.013418326154351234, + -0.08075558394193649, + 0.03743327409029007, + -0.001250903238542378, + 0.011629867367446423, + 0.021535109728574753, + -0.0256089698523283, + 0.015732211992144585, + 0.006620841566473246, + 0.010899381712079048, + 0.006267085671424866, + 0.043597765266895294, + -0.005893199238926172, + 0.005978206172585487, + -0.007736813277006149, + 0.02360924333333969, + 0.06936679035425186, + 0.032614436000585556, + -0.011399667710065842, + -0.06010572984814644, + 0.024315284565091133, + 0.0008461576653644443, + -0.04970225691795349, + 0.012800176627933979, + 0.013844969682395458, + 0.06481169164180756, + -0.041382770985364914, + 0.016241274774074554, + -0.03896453231573105, + -0.03077680990099907, + 0.037657320499420166, + 0.023957854136824608, + 0.028244443237781525, + -0.01481409277766943, + -0.043405286967754364, + -0.01825147680938244, + 0.0015333360061049461, + 0.003617602866142988, + -0.06193600594997406, + 0.0975634753704071, + -0.023132752627134323, + -0.014090629294514656, + -0.0020165315363556147, + -0.06817222386598587, + -0.025217590853571892, + -0.06525158882141113, + 0.01773454062640667, + -0.010371357202529907, + -0.0029468927532434464, + 0.0023432010784745216, + 0.028826633468270302, + -0.004169701598584652, + -0.02556355856359005, + -0.0742037370800972, + 0.02165704406797886, + -0.011246968992054462, + -0.01926870085299015, + 0.019833805039525032, + 0.04233783856034279, + -0.004099974408745766, + -0.027016984298825264, + 0.07017066329717636, + -0.053834106773138046, + 0.004424911458045244, + 0.048528410494327545, + 0.008276049047708511, + 0.006313825026154518, + 0.09077004343271255, + -0.01879028230905533, + -0.02213546447455883, + 0.0012892101658508182, + 0.050555676221847534, + 0.01173995528370142, + 0.041871678084135056, + 0.049692973494529724, + -0.0035038345959037542, + 0.0552062951028347, + 0.013982487842440605, + 0.02249777317047119, + 0.0019160251831635833, + 0.04034881293773651, + 0.046450432389974594, + -0.0009365587029606104, + 0.08236202597618103, + -0.00313679245300591, + -0.023372596129775047, + -0.03174472972750664, + -0.033555906265974045, + -0.011702179908752441, + 0.04120103642344475, + -0.007155634928494692, + 0.008143759332597256, + 0.05244362726807594, + -0.002711203647777438, + -0.01577850989997387, + 0.008381025865674019, + 0.015431251376867294, + -0.03335541859269142, + -0.0010722184088081121, + 0.04508908465504646, + -0.040601760149002075, + -0.0500003844499588, + 0.02791691944003105, + 0.011547516100108624, + -0.009058386087417603, + -0.0579531230032444, + -0.027176879346370697, + 0.0353190153837204, + -0.03067423216998577, + 0.02223493531346321, + -0.01635931059718132, + 0.059346459805965424, + 0.02724195085465908, + 0.02339976839721203, + -0.05183278024196625, + 0.027195122092962265, + 0.05683986470103264, + -0.020668771117925644, + -0.006807737052440643, + 0.0031456362921744585, + -0.01703597977757454, + 0.025631550699472427, + 0.06292080134153366, + 0.015869585797190666, + 0.023230906575918198, + 0.025418832898139954, + -0.021618586033582687, + -0.08853152394294739, + 0.007262566592544317, + -0.04810788109898567, + -0.033377379179000854, + 0.013919913209974766, + 0.04854326695203781, + -0.03299561142921448, + 0.01773812435567379, + 0.029403332620859146, + 0.028669878840446472, + 0.01139559131115675, + 0.009205197915434837, + 0.026442788541316986, + 0.0095914825797081, + 0.0070360093377530575, + -0.021742109209299088, + 0.007037263363599777, + -0.018092967569828033, + 0.01420726627111435, + 0.04726748168468475, + 0.004240138456225395, + 0.028029993176460266, + 0.07134488970041275, + 0.025210700929164886, + -0.03239196911454201, + -0.020518792793154716, + -0.05128026008605957, + 0.008614404127001762, + 0.024169890210032463, + 0.02820628695189953, + 0.000762245908845216, + -0.0018999158637598157, + -0.03611180558800697, + 0.008007941767573357, + 0.008392048068344593, + 0.03219275176525116, + -0.03731590136885643, + -0.021353183314204216, + -0.04072076082229614, + -0.01195693388581276, + 0.0120132677257061, + -0.00031734336516819894, + -0.005484914872795343, + -0.05402497202157974, + -0.0019436003640294075, + 0.046363912522792816, + 0.007658138405531645, + -0.007536039687693119, + 0.030109954997897148, + -0.022111162543296814, + 0.02052028849720955, + 0.09450278431177139, + 0.029247092083096504, + 0.01911214552819729, + 0.00354792014695704, + 0.007825571112334728, + -0.015705084428191185, + -0.015335403382778168, + -0.02546081505715847, + -0.048978064209222794, + -0.0494719035923481, + 0.015490571968257427, + 0.028793061152100563, + 0.0158324483782053, + 0.028188087046146393, + -0.005543975159525871, + -0.03376585617661476, + -0.011217412538826466, + -0.024976829066872597, + 0.034279949963092804, + 0.028389209881424904, + -0.01075019221752882, + 0.010296663269400597, + 0.00379548454657197, + -0.03515773266553879, + -0.002324276603758335, + 0.016307618468999863, + 0.02229357324540615, + 0.04749538004398346, + 0.008495708927512169, + -0.005093786399811506, + 0.08822347968816757, + -0.0039795455522835255, + -0.002981547499075532, + -0.01411477755755186, + 0.042266376316547394, + 0.019652117043733597, + 0.013230799697339535, + 0.008905449882149696, + -0.016003690659999847, + 0.008572778664529324, + -0.02519894205033779, + 0.018297657370567322, + 0.012121912091970444, + 0.026836616918444633, + 0.051934901624917984, + 0.011433718726038933, + -0.03674851357936859, + 0.0037647837307304144, + 0.000668046937789768, + -0.06325604766607285, + 0.0599813237786293, + -0.01551901362836361, + -0.016743965446949005, + 0.035784605890512466, + 0.020094702020287514, + 0.03767375275492668, + -0.0222566369920969, + -0.006115821190178394, + 0.014181789942085743, + 0.02049066126346588, + -0.032293789088726044, + 0.0320286899805069, + 0.007256804499775171, + -0.06332318484783173, + -0.06824088096618652, + 0.024582259356975555, + -0.010645607486367226, + -0.0052170236594974995, + -0.007826996967196465, + 0.03481932356953621, + -0.023139361292123795, + -0.02412319928407669, + -0.002781833987683058, + -0.016260679811239243, + 0.032411862164735794, + -0.0281980037689209, + 0.007870478555560112, + 0.006483475677669048, + 0.008298974484205246, + 0.024266811087727547, + -0.018771687522530556, + -0.012999958358705044, + -0.002932141302153468, + -0.026814982295036316, + -0.014608873054385185, + -0.01289202831685543, + 0.001829214277677238, + -0.0118334935978055, + 0.03779026120901108, + -0.03956246003508568, + -0.01051846332848072, + 0.020501628518104553, + 0.05109800025820732, + 0.02947438880801201, + -0.0460660420358181, + -0.019794989377260208, + 0.04479755088686943, + 0.04094243049621582, + -0.11146066337823868, + 0.03703249990940094, + 0.04202199727296829, + 0.0035301235038787127, + -0.031738199293613434, + 0.012977708131074905, + 0.05330455303192139, + 0.07059591263532639, + -0.008585614152252674, + 0.0175870843231678, + 0.007951857522130013, + 0.01227941270917654, + -0.04642622545361519, + -0.016111508011817932, + -0.007486781105399132, + 0.019841268658638, + 0.005946045741438866, + -0.0006635048775933683, + -0.009324692189693451, + 0.03312867134809494, + -0.034774161875247955, + -0.0035176004748791456, + -0.05067341774702072, + 0.007790370378643274, + 0.041135840117931366, + -0.010271679610013962, + 0.0707085132598877, + -0.02150258608162403, + -0.007983415387570858, + 0.05268854275345802, + -0.01686028204858303, + 0.05328630283474922, + -0.04584337770938873, + 0.012302052229642868, + 0.007498909253627062, + -0.007216090336441994, + 0.02068968676030636, + -0.020800357684493065, + 0.07866756618022919, + -0.000633981020655483, + 0.027234390377998352, + -0.027966592460870743, + -0.01962604746222496, + 0.025160551071166992, + -0.017204655334353447, + 0.03400210663676262, + -0.0007776145357638597, + -0.016426987946033478, + -0.00642881914973259, + 0.01654062047600746, + -0.029080219566822052, + 0.012758319266140461, + 0.02091679535806179, + 0.016809821128845215, + -0.03321110084652901, + 0.03844656050205231, + -0.0009876575786620378, + -0.008366983383893967, + 0.020514221861958504, + 0.05213560536503792, + -0.07912792265415192, + -0.009982364252209663, + -0.019876040518283844, + 0.03401513025164604, + 0.01026440691202879, + -0.010768412612378597, + -0.04034518450498581, + 0.008684574626386166, + 0.029656877741217613, + -0.027635250240564346, + 0.0035772169940173626, + 0.04475376009941101, + -0.02559567801654339, + 0.001364454161375761, + 0.03101973608136177, + -0.008261098526418209, + -0.008505739271640778, + -0.03162433207035065, + -0.010926125571131706, + -0.0321246013045311, + -0.026713846251368523, + -0.04519236087799072, + -0.011049644090235233, + 0.005840030498802662, + 0.0018960651941597462, + -0.022295253351330757, + -0.031796034425497055, + -0.0343167707324028, + 8.454074850305915e-05, + 0.005642792675644159, + -0.012559940107166767, + 0.0016832741675898433, + 0.0011193001409992576, + -0.021299969404935837, + -0.007442181929945946, + 0.006915740668773651, + 0.008156114257872105, + -0.006773737724870443, + 0.04675007984042168, + 0.0034207161515951157, + 0.008115938864648342, + -0.028037868440151215, + -0.02408973127603531, + 0.02503333054482937, + 0.0061750346794724464, + 0.0411008857190609, + 0.015587124042212963, + -0.04709345102310181, + -0.009115515276789665, + -0.019755549728870392, + -0.003724313573911786, + 0.062466301023960114, + -0.018211858347058296, + 0.03571242094039917, + -0.007023456506431103, + -0.006817879620939493, + -0.004724305123090744, + 0.00222034496255219, + -0.0025660141836851835, + 0.030676838010549545, + 0.007824991829693317, + -0.025963591411709785, + 0.07617274671792984, + -0.023250911384820938, + -0.019247805699706078, + -0.03618377819657326, + 0.005745480302721262, + -0.0048061516135931015, + 0.003718429710716009, + 0.025993453338742256, + 0.03975791856646538, + -0.057554859668016434, + -0.021674592047929764, + -0.016094109043478966, + 0.0647868886590004, + 0.011772033758461475, + -0.017889540642499924, + -0.06346024572849274, + 0.02354080229997635, + -0.029930908232927322, + -0.035084884613752365, + -0.06018019840121269, + -0.0008175068069249392, + -0.0029174652881920338, + 0.003340913448482752, + -0.0450294055044651, + -0.031051862984895706, + -0.028153812512755394, + 0.024197744205594063, + -0.019246157258749008, + -0.008566773496568203, + 0.053680289536714554, + 0.013351893983781338, + 0.029220111668109894, + 0.010782569646835327, + -0.014044986106455326, + -0.019344618543982506, + -0.045297328382730484, + -0.006211607251316309, + -0.0017169706989079714, + -0.0007930946885608137, + -0.019953487440943718, + -0.002563798800110817, + 0.019392134621739388, + 0.026169385761022568, + 0.0029305696953088045, + -0.010773849673569202, + -0.020069118589162827, + -0.003726855618879199, + 0.004802624229341745, + -0.027626575902104378, + 0.016703881323337555, + 0.013226613402366638, + -0.05503655970096588, + 0.0034327534958720207, + 0.043309468775987625, + -0.02024794928729534, + 0.04605461657047272, + 0.017071517184376717, + 0.03914397582411766, + -0.01717918924987316, + -0.009348907507956028, + -0.028375795111060143, + 0.02970067225396633, + 0.022424323484301567, + 0.011848242953419685, + 0.051465701311826706, + -0.04595080390572548, + 0.006261458154767752, + 0.03778490424156189, + 0.028812842443585396, + -0.0053137983195483685, + -0.023310821503400803, + -0.006983230356127024, + 0.013301714323461056, + 0.011098591610789299, + -0.02250492386519909, + 0.05356484651565552, + -0.03164050355553627, + -0.03513263165950775, + -0.0179173294454813, + 0.02328237146139145, + -0.01380754355341196, + -0.038965921849012375, + 0.014466360211372375, + -0.03881298005580902, + 0.0019656678196042776, + -0.0007081013172864914, + -0.02393178455531597, + 0.02063102088868618, + 0.02460801787674427, + 0.008664489723742008, + 0.03382504731416702, + 0.0865803137421608, + 0.005187124479562044, + 0.029053321108222008, + -0.010517017915844917, + -0.03894173353910446, + -0.022003304213285446, + 0.0001880006748251617, + -0.04128454998135567, + 0.019350241869688034, + 0.03755743056535721, + 0.0197518952190876, + -0.004037928767502308, + -0.017332131043076515, + 0.0029167900793254375, + 0.009460950270295143, + 0.015233161859214306, + 0.00487646646797657, + -0.01681295782327652, + -0.009026006795465946, + -0.037310995161533356, + 0.0544528104364872, + -0.021692240610718727, + -0.008334665559232235, + 0.025274071842432022, + -0.032109204679727554, + 0.031674422323703766, + 0.002343621337786317, + -0.060711443424224854, + 0.016648493707180023, + -0.0116448188200593, + -0.01715177483856678, + -0.03729670122265816, + -0.022213753312826157, + 0.002283395268023014, + -0.03871423006057739, + -0.005639687180519104, + 0.03500775247812271, + 0.025684671476483345, + 0.0012938135769218206, + 0.03548886999487877, + 0.0026854865718632936, + 0.005601219832897186, + 0.0017562637804076076, + 0.038464684039354324, + 0.018358737230300903, + -0.02584501914680004, + -0.0213263351470232, + 0.0006895767292007804, + 0.005804730113595724, + 0.010812838561832905, + 0.026487363502383232, + -0.005664370022714138, + 0.0032089354936033487, + -0.003537342883646488, + -0.004007811192423105, + -0.029585260897874832, + -0.0008079512626864016, + -0.02000708505511284, + 0.02214181050658226, + 0.034143831580877304, + 0.04618680477142334, + 0.053231868892908096, + -0.008492843247950077, + -0.021607346832752228, + 0.030890386551618576, + -0.02113884873688221, + 0.05343646928668022, + 0.048292580991983414, + 0.008108828216791153, + 0.015320786274969578, + 0.006203735247254372, + -0.047799911350011826, + -0.024692503735423088, + 0.004351827781647444, + 0.01691889762878418, + -0.01767176203429699, + 0.013312228955328465, + 0.037663575261831284, + 0.029996264725923538, + 0.0072088222950696945, + -0.012360063381493092, + -0.0311873946338892, + 0.012353062629699707, + -0.01888074353337288, + 0.05170661211013794, + -0.025543058291077614, + -0.013711842708289623, + -0.018903180956840515, + 0.029916532337665558, + -0.021486323326826096 + ], + "start_index": 31691, + "end_index": 32112, + "token_count": 96, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "afb4e0f5-0d34-511d-a2c8-f8448c0c6988", + "_source": { + "text": "\n\nel motor crea un **Function Scope independiente**.\n\nEste ámbito contiene:\n\n- parámetros de la función\n- variables creadas dentro de la función\n- resultados intermedios\n\nPropiedades:\n\n- solo es visible dentro de esa función\n- no es visible desde el exterior\n- se destruye cuando la función termina\n\n---\n\n# XI.1.4 Resolución de variables\n\nLa resolución de variables sigue el siguiente orden jerárquico:\n\n\n\n1. Function Scope\n2. Global Scope", + "embedding": [ + 0.024535877630114555, + -0.03762566298246384, + -0.008897190913558006, + -0.12233564257621765, + 0.02995605394244194, + 0.018535833805799484, + -0.0341162346303463, + -0.006778956390917301, + -0.018430205062031746, + -0.055999740958213806, + 0.006649188697338104, + -0.04151881858706474, + -0.00664393650367856, + -0.009609628468751907, + -0.038088615983724594, + 0.0522112175822258, + 0.03138309344649315, + 0.03341861441731453, + -0.05106625333428383, + -0.05754304304718971, + -0.050207529217004776, + 0.016792122274637222, + -0.03940172865986824, + -0.02410343661904335, + -0.020505743101239204, + 0.011635825969278812, + -0.005332320928573608, + -0.022600511088967323, + -0.009957361966371536, + -0.015412664972245693, + -0.02980557642877102, + 0.009247292764484882, + -0.05787977948784828, + 0.009113634936511517, + -0.05506476014852524, + -0.01445839274674654, + 0.06049502268433571, + -0.09420426934957504, + 0.002375109354034066, + 0.011847240850329399, + -0.006278268527239561, + 0.04213410243391991, + 0.03831537067890167, + 0.034290194511413574, + 0.0672411173582077, + -0.01896843872964382, + -0.03406773507595062, + 1.3744464922638144e-05, + 0.044609539210796356, + -0.01730872131884098, + -0.00560257351025939, + 0.020948149263858795, + 0.022068023681640625, + -0.013971234671771526, + -0.0036077918484807014, + 0.054800599813461304, + -0.015355492010712624, + -0.08771063387393951, + -0.014629867859184742, + 0.01599067635834217, + 0.00029422130319289863, + -0.04297235608100891, + -0.014724836684763432, + -0.013586977496743202, + -0.01572233811020851, + 0.040610894560813904, + -0.014889082871377468, + 0.027565879747271538, + -0.03630417212843895, + 0.008112064562737942, + 0.011310798116028309, + -0.07413274794816971, + 0.011776894330978394, + 0.02989893965423107, + -0.0022159377112984657, + -0.020320173352956772, + 0.01220717467367649, + -0.01980757713317871, + 0.07670924812555313, + 0.024917934089899063, + 0.017507337033748627, + 0.04506302997469902, + 0.013411332853138447, + -0.0081548560410738, + 0.01999455876648426, + 0.06044556573033333, + -0.009328782558441162, + 0.025155063718557358, + 0.008265409618616104, + 0.033237822353839874, + 0.03231266140937805, + 0.03015907295048237, + 0.003491834504529834, + 0.06974399834871292, + 0.07313530892133713, + 0.006047381088137627, + 0.0009214854217134416, + 0.014639615081250668, + 0.006065438035875559, + -0.03104165755212307, + -0.019227685406804085, + -0.008488772436976433, + -0.0652715191245079, + 0.023542553186416626, + 0.042896125465631485, + 0.039273545145988464, + -0.06210942938923836, + 0.0014198124408721924, + -0.00033770009758882225, + -0.032711777836084366, + 0.010092953220009804, + -0.02667836658656597, + -0.011268407106399536, + 0.059944652020931244, + -0.03625355288386345, + 0.019007200375199318, + 0.005933558102697134, + 0.016089843586087227, + -0.041346605867147446, + 0.03008297272026539, + 0.05427452549338341, + -0.006518005393445492, + 0.00947280041873455, + 0.010444494895637035, + 0.04410097375512123, + -0.013737843371927738, + -0.038053449243307114, + 0.0036499330308288336, + 0.009226023219525814, + -0.027860714122653008, + 0.023103484883904457, + -0.015189440920948982, + -0.006205104757100344, + 0.007818248122930527, + 0.010185835883021355, + -0.038122061640024185, + 0.02376003935933113, + -0.034002941101789474, + 0.026910586282610893, + 0.009908986277878284, + -0.03727893903851509, + -0.023860972374677658, + 0.01827261596918106, + -0.008924215100705624, + 0.007847567088901997, + -0.020399190485477448, + 0.009280398488044739, + 0.021241281181573868, + 0.030641378834843636, + -0.033170200884342194, + -0.009435896761715412, + -0.008921240456402302, + -0.007483545690774918, + -0.018070118501782417, + 0.014917026273906231, + 0.004660412203520536, + -0.009173957630991936, + 0.010450730100274086, + 0.016163673251867294, + 0.038938943296670914, + 0.01724192500114441, + 0.012032805010676384, + 0.01263371016830206, + -0.040712855756282806, + -0.011886756867170334, + 0.04928688704967499, + 0.020395997911691666, + -0.025914575904607773, + -0.01529836654663086, + -0.014740686863660812, + -0.024610130116343498, + -0.004524550400674343, + 0.0006139665492810309, + -0.0539834201335907, + -0.0017637928249314427, + -0.023096101358532906, + -0.011587688699364662, + 0.05508756265044212, + 0.0005067522288300097, + 0.012521522119641304, + 0.01787942834198475, + 0.023745102807879448, + -0.00824914313852787, + 0.003749321913346648, + -0.004197281785309315, + 0.03388766571879387, + -0.006589954718947411, + -0.022296398878097534, + 0.0015170067781582475, + -0.08790536969900131, + -0.02567317523062229, + 0.0017535127699375153, + 0.011189662851393223, + -0.01309871580451727, + -0.0006446107290685177, + -0.027627497911453247, + -0.055887624621391296, + -0.010605418123304844, + -0.003133488120511174, + -0.007497671525925398, + -0.007844311185181141, + 0.011944294907152653, + -0.014290639199316502, + -0.00988360308110714, + -0.037658073008060455, + -0.004035197198390961, + -0.018165476620197296, + -0.010974087752401829, + -0.031858716160058975, + 0.012090400792658329, + -0.031462956219911575, + 0.010956029407680035, + -0.029718494042754173, + 0.008051790297031403, + -0.01146538183093071, + 0.02358127571642399, + -0.020605716854333878, + 0.04226336255669594, + 0.00962192751467228, + 0.026850640773773193, + 0.0044820792973041534, + 0.008508515544235706, + 0.035359494388103485, + 0.027418319135904312, + 0.042599815875291824, + 0.005702833645045757, + -0.0011476175859570503, + -0.027560776099562645, + -0.014828543178737164, + 0.011213433928787708, + 0.03376845270395279, + -0.05895932763814926, + 0.003907650709152222, + 0.023543165996670723, + 0.014392802491784096, + 0.026698004454374313, + -0.00798159558326006, + 0.050111472606658936, + 0.032082438468933105, + 0.007845232263207436, + -0.019555026665329933, + -0.011220072396099567, + -0.0014574542874470353, + 0.011834066361188889, + -0.024754317477345467, + 0.03047739900648594, + 0.0020256908610463142, + -0.008827860467135906, + -0.012872982770204544, + 0.0008091276977211237, + 0.08756371587514877, + -0.009192914701998234, + 0.00036774619366042316, + 0.004410112742334604, + -0.023326892405748367, + 0.0029406428802758455, + -0.0026576132513582706, + 0.02916663885116577, + -0.014984010718762875, + -0.027443252503871918, + -0.01795746572315693, + -0.04129413515329361, + -0.023006169125437737, + 0.04682441055774689, + 0.02306763455271721, + 0.015903672203421593, + -0.03081267699599266, + -0.02235395461320877, + 0.0013431472470983863, + -0.0001005517115117982, + -0.00019605207489803433, + 0.02979959174990654, + -0.04621879756450653, + 0.018276024609804153, + 0.011840548366308212, + -0.020537126809358597, + -0.016147304326295853, + -0.04264429956674576, + 0.0158749520778656, + 0.005538605619221926, + -0.023590993136167526, + -0.02484765462577343, + -0.05536261200904846, + 0.010515186004340649, + 0.013329524546861649, + 0.012558333575725555, + -0.003999356646090746, + -0.024041147902607918, + 0.050615400075912476, + -0.02110215649008751, + -0.0228147991001606, + 0.05733189731836319, + -0.036327678710222244, + 0.007523105014115572, + 0.03330954164266586, + -0.037262193858623505, + 0.004991208668798208, + -0.010041466914117336, + 0.05688364431262016, + -0.013439413160085678, + 0.0582912303507328, + 0.01755405031144619, + -0.01014483068138361, + -0.03239590674638748, + -0.03034316562116146, + 0.022149071097373962, + 0.06794615834951401, + -0.023472599685192108, + 0.07782219350337982, + 0.025451036170125008, + 0.1007256954908371, + 0.018997475504875183, + -0.020430264994502068, + -0.0322236530482769, + 0.0256422758102417, + 0.04186190664768219, + 0.04251633584499359, + -0.007331397850066423, + 0.001170728006400168, + -0.021046707406640053, + 0.03228354454040527, + 0.012771899811923504, + 0.0157417431473732, + -0.052539169788360596, + 0.018429704010486603, + 0.01644838973879814, + 0.04709962010383606, + 0.06240353733301163, + 0.0039913831278681755, + -0.04567236080765724, + -0.00513395806774497, + 0.0044455635361373425, + 0.036614637821912766, + -0.0008333742152899504, + 0.0009710945305414498, + -0.01521216332912445, + -0.025384563952684402, + 0.004014594946056604, + -0.007409458979964256, + -0.017522668465971947, + 0.015015076845884323, + 0.04625425115227699, + -0.009684178046882153, + -0.06328223645687103, + 0.009046550840139389, + -0.03201211243867874, + -0.012854310683906078, + -0.005160340573638678, + 0.03512193262577057, + -0.013670296408236027, + -0.05519570782780647, + 0.0006521623581647873, + -0.01867898553609848, + -0.015644371509552002, + -0.017620457336306572, + -0.024324288591742516, + 0.01683422178030014, + -0.0067740329541265965, + 0.007797333411872387, + 0.008206799626350403, + 0.020175714045763016, + 0.01955205760896206, + -0.032651886343955994, + 0.03663558512926102, + -0.008221050724387169, + 0.03516092896461487, + -0.05167095363140106, + -0.08713904768228531, + 0.04750557616353035, + -0.03987736999988556, + -0.07494723796844482, + 0.014490335248410702, + 0.038610078394412994, + 0.018890712410211563, + 0.041755639016628265, + -0.013288640417158604, + 0.021987149491906166, + 0.0299857035279274, + -0.017757374793291092, + 0.05858957767486572, + 0.016105249524116516, + 0.021029585972428322, + 0.012836196459829807, + -0.0021621789783239365, + 0.017652418464422226, + 0.002446261001750827, + -0.007063139230012894, + -0.0488910898566246, + 0.0547817163169384, + -0.03247186914086342, + 0.045799218118190765, + -0.03951652720570564, + 0.008261510170996189, + -0.01974503882229328, + -0.017123425379395485, + 0.036831486970186234, + -0.0553617924451828, + -0.03856594115495682, + 0.006971245631575584, + 0.06070517376065254, + -0.02460699900984764, + -0.003339538350701332, + -0.0090383505448699, + 0.033365510404109955, + 0.07424366474151611, + -0.003569019492715597, + -0.0027600633911788464, + 0.021248599514365196, + 0.012722156010568142, + -0.021779410541057587, + 0.005932770669460297, + 0.022403491660952568, + -0.00864443089812994, + 0.0006188239203765988, + -0.024068735539913177, + 0.00046383077278733253, + 0.025402724742889404, + 0.04674716666340828, + -0.019773466512560844, + -0.017487920820713043, + -0.026296641677618027, + 0.018392810598015785, + -0.0622423030436039, + -0.010703462176024914, + 0.014202791266143322, + -0.005847109016031027, + -0.05734682455658913, + -0.02973928488790989, + 0.0179173331707716, + 0.06739059090614319, + -0.014051693491637707, + 0.01973787508904934, + 0.028673529624938965, + 0.04367825388908386, + -0.01107353251427412, + 0.037427857518196106, + 0.006876115221530199, + 0.05487508699297905, + -0.008463829755783081, + -0.0164162777364254, + -0.027703778818249702, + -0.02112373523414135, + 0.006469023879617453, + -0.016079554334282875, + -0.010137205943465233, + 0.0006307738949544728, + -0.0733509510755539, + 0.06836577504873276, + 0.017089610919356346, + 0.008293329738080502, + 0.03525129333138466, + -0.015214490704238415, + 0.003814664203673601, + 0.03171549364924431, + -0.007639965042471886, + -0.007254892494529486, + 0.03812725469470024, + -0.07305001467466354, + 0.0463595986366272, + 0.002159109804779291, + 0.08293270319700241, + 0.06379362940788269, + 0.011483375914394855, + 0.029358752071857452, + -0.09276153147220612, + 0.03770773112773895, + 0.02461840957403183, + -0.017425432801246643, + 0.04867888242006302, + -0.007226584944874048, + 0.051773037761449814, + -0.0009427383192814887, + 0.025135479867458344, + -0.037688445299863815, + -0.03330402448773384, + 0.05845476686954498, + 0.017096469178795815, + -0.026838582009077072, + -0.00012874086678493768, + -0.06751842051744461, + -0.00786721333861351, + -0.010616354644298553, + -0.003214536001905799, + -0.04648292437195778, + 0.10292252153158188, + -0.014445722103118896, + 0.001763191306963563, + 0.006374482996761799, + -0.02578641101717949, + -0.017885498702526093, + -0.08137889951467514, + 0.04359481483697891, + -0.048064224421978, + -0.006948280148208141, + 0.012446501292288303, + 0.002635321579873562, + -0.007825254462659359, + -0.01622053049504757, + -0.09641061723232269, + 0.016311893239617348, + -0.02499653771519661, + -0.06116027384996414, + 0.03515079990029335, + 0.04767995700240135, + 0.006932094693183899, + -0.01932305470108986, + 0.050027549266815186, + -0.0606875903904438, + 0.008857408538460732, + 0.03504151478409767, + 0.013124807737767696, + 0.021481284871697426, + 0.046977706253528595, + 0.02400098368525505, + -0.018201177939772606, + -0.010136767290532589, + 0.0408344566822052, + -0.01431695744395256, + 0.013013980351388454, + 0.07610857486724854, + 0.030818453058600426, + 0.055003028362989426, + 0.02670331671833992, + 0.017995603382587433, + -0.014929704368114471, + 0.02678120695054531, + 0.03700384870171547, + -0.014141972176730633, + 0.03024076111614704, + 0.008696921169757843, + 0.0009695184417068958, + -0.05589037388563156, + 0.0002080528502119705, + 0.0014023142866790295, + 0.021252766251564026, + 0.004450732376426458, + 0.0007476119790226221, + 0.07367589324712753, + 0.030144574120640755, + -0.026534242555499077, + -0.001550573157146573, + -0.029667243361473083, + -0.05843142047524452, + 0.004841149318963289, + 0.0018770961323753, + -0.06204885244369507, + -0.05271002650260925, + 0.008247745223343372, + 0.016120485961437225, + -0.0024670944549143314, + -0.04286060482263565, + -0.06474505364894867, + 0.0784074068069458, + -0.022157615050673485, + 0.012659563682973385, + -0.014824098907411098, + 0.049401119351387024, + 0.01506101805716753, + 0.04315074160695076, + -0.07474367320537567, + 0.03813963383436203, + -0.010871718637645245, + -0.04063337296247482, + -0.0007974480395205319, + -0.0006380383856594563, + -0.018916055560112, + -0.01559786219149828, + 0.03590753301978111, + 0.03503844141960144, + 0.003145709168165922, + 0.05372411012649536, + -0.01997903361916542, + -0.03991187363862991, + -0.00035010723513551056, + -0.041021108627319336, + -0.014224602840840816, + -0.0009695260087028146, + 0.06248047947883606, + -0.04272554814815521, + -0.004800543189048767, + 0.028253376483917236, + 0.013944079168140888, + -0.0014037960208952427, + 0.003977402113378048, + 0.006702568847686052, + 0.024591395631432533, + 0.007874448783695698, + -0.03245757147669792, + 0.005732348654419184, + -0.022135617211461067, + -0.0025882695335894823, + 0.04925568029284477, + 0.03388083726167679, + 0.014831610955297947, + 0.06559208035469055, + 0.011650009080767632, + -0.048241134732961655, + -0.008175337687134743, + -0.059774838387966156, + 0.013139687478542328, + -0.0028596320189535618, + 0.016939615830779076, + 0.020554203540086746, + 0.016542799770832062, + -0.02258489280939102, + 0.03538722172379494, + 0.017178663983941078, + 0.024119634181261063, + -0.015999246388673782, + -0.052033428102731705, + -0.01835949346423149, + 0.011554350145161152, + -0.017565231770277023, + -0.0017556872917339206, + -0.004058845806866884, + -0.027841025963425636, + 0.02498648688197136, + 0.03644949197769165, + -0.019655568525195122, + -0.026455357670783997, + 0.024817468598484993, + -0.012874300591647625, + 0.028199084103107452, + 0.10056769102811813, + 0.008624093607068062, + -0.009247827343642712, + -0.002150863641873002, + 0.02067297324538231, + -0.01216970756649971, + 0.007731896359473467, + -0.01942181959748268, + -0.023861659690737724, + -0.024807747453451157, + 0.008838487789034843, + 0.022206272929906845, + 0.023028597235679626, + -7.701937647652812e-06, + -0.008732154965400696, + 0.0017074012430384755, + -0.017444875091314316, + -0.009213061071932316, + 0.009692848660051823, + 0.018621638417243958, + 0.005071489606052637, + 0.02430712804198265, + -0.0036580506712198257, + -0.0362720787525177, + 0.0048896861262619495, + 0.023848876357078552, + 0.016248539090156555, + 0.027231397107243538, + -0.018883034586906433, + 0.014927717857062817, + 0.08480619639158249, + -0.029170673340559006, + 0.023515013977885246, + 0.002114511327818036, + 0.052007708698511124, + 0.012759188190102577, + -0.021573221310973167, + 0.04781939089298248, + -0.012720536440610886, + 0.055110253393650055, + -0.042388368397951126, + 0.008862935937941074, + -0.027897849678993225, + 0.04291373863816261, + 0.010175352916121483, + 0.02340739034116268, + 0.017476076260209084, + 0.004630657844245434, + -0.024703383445739746, + -0.05547584593296051, + 0.02474130690097809, + -0.01842142455279827, + -0.01463423389941454, + 0.028587577864527702, + 0.0010897396132349968, + 0.019231731072068214, + 0.0014084980357438326, + -0.007327108643949032, + -0.025259390473365784, + 0.049011554569005966, + -0.05440015718340874, + 0.04933809116482735, + -0.04373558238148689, + -0.03839753195643425, + -0.023914720863103867, + 0.010925021022558212, + -0.013748775236308575, + -0.0026103577110916376, + -0.0225748959928751, + 0.002774104941636324, + -0.0040209111757576466, + 0.0071237776428461075, + -0.002307997550815344, + -0.0015381594421342015, + 0.01690099574625492, + -0.042608216404914856, + -0.009856549091637135, + 0.0051633333787322044, + -0.005005596671253443, + 0.007281373254954815, + -0.005020400043576956, + -0.008095696568489075, + -0.009829819202423096, + -0.01876663602888584, + -0.031166722998023033, + -0.0037560083437711, + -0.01762017048895359, + -0.00028184379334561527, + 0.033790603280067444, + -0.020747866481542587, + -0.025066856294870377, + 0.016388028860092163, + 0.01906251162290573, + 0.028157873079180717, + -0.058397985994815826, + -0.048394620418548584, + 0.047015462070703506, + 0.012086150236427784, + -0.1260874718427658, + 0.06589390337467194, + 0.052623238414525986, + 0.008603984490036964, + -0.004030168522149324, + 0.011757183820009232, + 0.05721084028482437, + 0.06752534955739975, + -0.03303864970803261, + 0.01892908290028572, + 0.019795499742031097, + 0.02241060510277748, + -0.03457324951887131, + 0.032179877161979675, + 0.020068135112524033, + 0.044284526258707047, + -0.009776156395673752, + 0.010152085684239864, + 0.006336118094623089, + 0.011029237881302834, + 0.005041270051151514, + -0.018620319664478302, + -0.009678604081273079, + -0.01647794432938099, + 0.028940869495272636, + -0.015358226373791695, + 0.03728235885500908, + -0.022110559046268463, + 0.013706893660128117, + 0.04129830747842789, + -0.0414576530456543, + 0.03612871840596199, + -0.023827333003282547, + 0.015920378267765045, + 0.020058341324329376, + 0.014792696572840214, + 0.039985526353120804, + -0.017565235495567322, + 0.06141196936368942, + -0.019486967474222183, + 0.011997077614068985, + -0.05485919862985611, + -0.036328285932540894, + 0.042353883385658264, + -0.0365341380238533, + 0.04029017686843872, + 0.0018350179307162762, + -0.02076890505850315, + -0.047339554876089096, + 0.004066812340170145, + -0.0354621484875679, + 0.03334195539355278, + -0.010099143721163273, + 0.018704896792769432, + 0.0019863280467689037, + 0.000473393447464332, + -0.02052142843604088, + -0.03720807284116745, + -0.019218681380152702, + 0.009360814467072487, + -0.04684541001915932, + 0.013791385106742382, + 0.006083629094064236, + 0.035021040588617325, + 0.006035148166120052, + -0.03038579598069191, + -0.050989121198654175, + 0.014325259253382683, + 0.03959563374519348, + -0.03431548923254013, + -0.0016146592097356915, + 0.03383564576506615, + -0.0256182961165905, + 0.010611615143716335, + 0.032006826251745224, + -0.030307158827781677, + -0.0008168128551915288, + -0.03188485652208328, + 0.0020707750227302313, + -0.035085536539554596, + -0.008006289601325989, + -0.03595450147986412, + 0.024544570595026016, + 0.016706835478544235, + 0.0062146419659256935, + 0.03379395231604576, + -0.00596586661413312, + -0.048746507614851, + -0.010293388739228249, + -0.005223825573921204, + 0.0240694060921669, + 0.01284842099994421, + 0.024563567712903023, + -0.024344362318515778, + -0.003446190617978573, + -0.0013536845799535513, + -0.006903315428644419, + -0.04771293327212334, + 0.03744296357035637, + 0.010313503444194794, + 0.0072231600061059, + 0.001174251432530582, + -0.022549618035554886, + -0.008233688771724701, + 0.05416441336274147, + 0.03440707176923752, + 0.023595258593559265, + -0.04910498857498169, + 0.0032767581287771463, + -0.03970415145158768, + 0.013908087275922298, + 0.042003776878118515, + 0.0114248963072896, + 0.03819078207015991, + 0.02045375481247902, + 0.003695883322507143, + 0.008611737750470638, + 0.03926033154129982, + 0.024252768605947495, + 0.022220345214009285, + -0.003393427701666951, + -0.020926959812641144, + 0.0741080790758133, + -0.009684662334620953, + -0.011344892904162407, + 0.007653363049030304, + -0.003355385037139058, + 0.029061011970043182, + -0.017845580354332924, + 0.03473197668790817, + 0.051869042217731476, + -0.0871136486530304, + -0.030535830184817314, + -0.0024737752974033356, + 0.05852825194597244, + -0.02439061738550663, + -0.02858615480363369, + -0.06675997376441956, + 0.038232024759054184, + -0.04332631453871727, + -0.05890217423439026, + -0.048765603452920914, + -0.0032669606152921915, + 0.019559040665626526, + -0.00716229947283864, + -0.07446218281984329, + -0.026379726827144623, + -0.044544704258441925, + 0.002115718787536025, + 0.01587931253015995, + -0.017014138400554657, + 0.04483308270573616, + 0.021545512601733208, + 0.03399283066391945, + 0.0020207040943205357, + -0.0061347042210400105, + 0.02837446518242359, + -0.004038494545966387, + -0.0010420004837214947, + -0.022428778931498528, + 0.012133623473346233, + -0.015682004392147064, + 0.001077223219908774, + 0.017986902967095375, + 0.024131597951054573, + 0.031840384006500244, + -0.00481268810108304, + -0.032253991812467575, + 0.022504759952425957, + 0.01070449035614729, + -0.04750531166791916, + 0.020382151007652283, + 0.005869265645742416, + -0.04347865283489227, + -0.013372878544032574, + 0.024141009896993637, + -0.0010882746428251266, + 0.05495478957891464, + 0.017517754808068275, + 0.030734021216630936, + -0.007134133018553257, + -0.022300835698843002, + -0.0035189141053706408, + 0.016547491773962975, + 0.023010622709989548, + 0.010407110676169395, + 0.04125452786684036, + -0.029257208108901978, + 0.06226459518074989, + 0.008382586762309074, + -0.02558938041329384, + -0.0010334081016480923, + -0.05859540030360222, + -0.009160001762211323, + 0.023198768496513367, + -0.020368684083223343, + -0.007609052583575249, + 0.018143676221370697, + -0.00696368096396327, + 0.007813815958797932, + -0.04322231560945511, + 0.027770360931754112, + 0.021342875435948372, + -0.02054980956017971, + 0.044322121888399124, + -0.006610132288187742, + 0.019485963508486748, + 0.0009842048166319728, + -0.012598122470080853, + -0.0068159145303070545, + 0.016670873388648033, + 0.028052328154444695, + 0.020352743566036224, + 0.018278727307915688, + -0.020699121057987213, + 0.010374869219958782, + 0.0046594892628490925, + -0.026219762861728668, + -0.02000989392399788, + -0.004351913928985596, + -0.0675320252776146, + 0.017323432490229607, + 0.039745256304740906, + -0.017305977642536163, + 0.011203454807400703, + 0.015721680596470833, + -0.012173849157989025, + 0.002152747008949518, + 0.025210164487361908, + 0.02674158103764057, + -0.029366696253418922, + 0.021619057282805443, + 0.025487594306468964, + 0.0026744366623461246, + -0.052903883159160614, + -0.03836007043719292, + 0.018518485128879547, + -0.04068859666585922, + 0.03567320480942726, + -0.0031948669347912073, + -0.03534847870469093, + 0.008771986700594425, + -0.030147843062877655, + -0.021563367918133736, + -0.0908508151769638, + -0.02980640158057213, + 0.008940347470343113, + -0.021217847242951393, + -0.016925305128097534, + 0.023438595235347748, + 0.026752429082989693, + 0.001799124525859952, + 0.013795102946460247, + -0.0005895892973057926, + 0.011859358288347721, + -0.004189227242022753, + 0.024945681914687157, + 0.026403483003377914, + -0.0251725222915411, + -0.02204858884215355, + -0.00043597014155238867, + -0.01789044588804245, + 0.006418222561478615, + 0.005224966444075108, + -0.007303793448954821, + 0.01685073785483837, + -0.01309247687458992, + 0.00593887735158205, + -0.021021753549575806, + 0.0006460972945205867, + -0.0408673994243145, + 0.023451484739780426, + 0.025503946468234062, + 0.015476703643798828, + 0.03667919337749481, + 0.015174545347690582, + -0.01089164987206459, + 0.021731259301304817, + -0.04008238762617111, + 0.02698569931089878, + 0.04646023362874985, + 0.0065414393320679665, + 0.017886163666844368, + 0.019338104873895645, + -0.02132917009294033, + -0.05391180142760277, + 0.0255436934530735, + -0.03930787369608879, + 0.000712912529706955, + -0.00799830537289381, + 0.020615847781300545, + 0.027968598529696465, + 0.002624180866405368, + 0.02568267285823822, + -0.009523740969598293, + 0.011099182069301605, + -0.025481227785348892, + 0.050049904733896255, + -0.010605237446725368, + -0.03330797702074051, + -0.020420322194695473, + -0.02270028367638588, + 0.006339322309941053 + ], + "start_index": 32112, + "end_index": 32557, + "token_count": 96, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "c948b818-03f4-5c89-bbff-3c2fcf4a07d6", + "_source": { + "text": "\n\nEl **Main Local Scope no es visible dentro de funciones**.\n\nSi una variable no existe en los scopes visibles, el motor produce un **error de ejecución**.\n\n---\n\n# XI.1.5 Aislamiento entre funciones\n\nCada invocación de función crea un **scope independiente**.\n\nEjemplo:\n\n\n\nfunction ejemplo()\n{\n x = 10\n}", + "embedding": [ + 0.01329119224101305, + -0.054798271507024765, + -0.008355692028999329, + -0.12991108000278473, + 0.022351164370775223, + -0.00790324341505766, + -0.049078501760959625, + -0.023822594434022903, + -0.019894426688551903, + -0.046703170984983444, + 0.011789604090154171, + -0.0602218434214592, + -0.03011079505085945, + -0.008796258829534054, + -0.028115030378103256, + 0.051830168813467026, + 0.013190480880439281, + 0.0015069025103002787, + -0.03210941702127457, + -0.05416584759950638, + -0.07459934800863266, + 0.023219818249344826, + -0.01919977366924286, + 0.004038602113723755, + -0.032564520835876465, + 0.0380743034183979, + -0.009263946674764156, + 0.02788051962852478, + 0.004814928863197565, + 0.008749634027481079, + -0.04021391645073891, + 0.03201288357377052, + -0.018363388255238533, + -0.018510714173316956, + -0.002781420713290572, + -0.01274134125560522, + 0.07684074342250824, + -0.06408313661813736, + 0.022031506523489952, + 0.01545338612049818, + -0.0038249024655669928, + 0.06015808507800102, + 0.07117162644863129, + 0.029348939657211304, + 0.06132322922348976, + -0.030841005966067314, + 0.008466878905892372, + 0.01416716631501913, + 0.031091807410120964, + -0.006271999329328537, + -0.0234372615814209, + 0.03197510540485382, + -0.006768213585019112, + -0.03217669948935509, + -0.009566985070705414, + 0.01660032570362091, + -0.0069326129741966724, + -0.08410224318504333, + 0.005740839056670666, + 0.02302865870296955, + -0.01168892253190279, + -0.046889036893844604, + 0.00504071032628417, + -0.0359388068318367, + -0.01250547543168068, + 0.0357629656791687, + -0.024014215916395187, + 0.02241675555706024, + -0.020372677594423294, + 0.00748318200930953, + -0.005736860912293196, + -0.04894892871379852, + 0.022830378264188766, + 0.03052617982029915, + -0.026017000898718834, + -0.027918020263314247, + 0.008161770179867744, + -0.03573531284928322, + 0.048321280628442764, + -0.0012835020897909999, + 0.00086053746053949, + 0.008865914307534695, + -0.01732139103114605, + -0.0159003846347332, + -0.004555155523121357, + 0.06902091950178146, + 0.026619134470820427, + 0.013543197885155678, + 0.031232092529535294, + 0.028929706662893295, + 0.02295447140932083, + 0.025112099945545197, + -0.02814301662147045, + 0.02807271108031273, + 0.04885859042406082, + -0.0005251076072454453, + -0.03942539170384407, + -0.010945851914584637, + -0.00649336539208889, + -0.022076118737459183, + -0.006150761619210243, + -0.011927959509193897, + -0.038413047790527344, + 0.017264727503061295, + 0.025424646213650703, + 0.05126291885972023, + -0.021251525729894638, + 0.012915786355733871, + 0.00324584124609828, + -0.005876148585230112, + -0.02138596959412098, + -0.02924940176308155, + 0.02878471277654171, + 0.06467252224683762, + -0.06759169697761536, + 0.020536761730909348, + 0.03818991780281067, + 0.00835247989743948, + -0.011904386803507805, + 0.015211233869194984, + 0.04721885547041893, + 0.0011915130307897925, + 0.02725795842707157, + -0.0038838430773466825, + 0.05380699038505554, + 0.006234296131879091, + -0.044634461402893066, + -0.009531259536743164, + 0.004487437661737204, + -0.006776119582355022, + 0.03167405351996422, + -0.017583798617124557, + 0.0020378464832901955, + -0.02552660182118416, + 0.0007384986383840442, + -0.018916478380560875, + 0.013928006403148174, + -0.05054227262735367, + 0.024812815710902214, + 0.014671309851109982, + -0.039158571511507034, + -0.009702851064503193, + -0.011146046221256256, + -0.018891463056206703, + 0.016639642417430878, + -0.021727707237005234, + 0.004857043270021677, + 0.025664152577519417, + 0.018557453528046608, + -0.04577096179127693, + -0.009214244782924652, + -0.01763800159096718, + -0.004069510847330093, + 0.0015753923216834664, + 0.01923406310379505, + 0.01735975593328476, + -0.018407030031085014, + 0.008596973493695259, + 0.009311345405876637, + 0.03046567179262638, + 0.0026778005994856358, + -0.0026902055833488703, + 0.0035833714064210653, + 0.007801380008459091, + -0.007835634052753448, + 0.04654112458229065, + 0.004863928537815809, + -0.00963423028588295, + -0.002511093858629465, + -0.008973306976258755, + -0.02178082801401615, + 0.02426159381866455, + 0.023160258308053017, + -0.05704774707555771, + -0.0012838911497965455, + -0.022958148270845413, + -0.006227044388651848, + 0.05939122661948204, + -0.037583306431770325, + 0.017725136131048203, + 0.017881842330098152, + 0.004503349773585796, + 0.0027050012722611427, + 0.002178463153541088, + 0.008698882535099983, + 0.02630247175693512, + -0.0311293862760067, + -0.028823496773838997, + 0.000108529937278945, + -0.06658301502466202, + -0.017056912183761597, + -0.02359437756240368, + 0.010903783142566681, + -0.0061751119792461395, + 0.0010921282228082418, + -0.03439220041036606, + -0.026757052168250084, + -0.026065463200211525, + -0.012185260653495789, + 0.0023332859855145216, + 0.011468181386590004, + 0.042195022106170654, + 0.00019830951350741088, + 0.0024909558705985546, + -0.010318818502128124, + -0.017818350344896317, + -0.007626797538250685, + -0.002149605890735984, + -0.04497643932700157, + -0.001569652697071433, + -0.04797987639904022, + 0.018142497166991234, + -0.03351644426584244, + -0.03376462683081627, + -0.014781665056943893, + 0.006446084473282099, + -0.022587260231375694, + 0.03351278603076935, + -0.010284987278282642, + 0.002583825495094061, + 0.014707396738231182, + 0.0067893038503825665, + 0.0190285574644804, + 0.008237527683377266, + 0.0534818060696125, + -0.0043598441407084465, + 0.003757996717467904, + -0.02965877763926983, + -0.03956163302063942, + 0.028606805950403214, + 0.054769132286310196, + -0.05400918796658516, + 0.036891233175992966, + 0.0021142775658518076, + 0.02766929194331169, + -0.0016199907986447215, + -0.010362240485846996, + 0.04540614038705826, + 0.038344841450452805, + 0.019006038084626198, + -0.0051892525516450405, + -0.017347317188978195, + -0.021307671442627907, + 0.009442058391869068, + -0.00766347348690033, + 0.01792946085333824, + -0.0004164495621807873, + 0.024319127202033997, + 0.008156698197126389, + 0.0029741451144218445, + 0.06850790977478027, + -0.00672547984868288, + -0.02108675241470337, + -0.001998193794861436, + -0.016755076125264168, + 0.004128008149564266, + -0.009012890048325062, + 0.03149297460913658, + -0.021361805498600006, + -0.010897261090576649, + -0.01638616807758808, + -0.025081142783164978, + -0.018306784331798553, + 0.04207688197493553, + 0.029421625658869743, + 0.016848841682076454, + -0.02586614526808262, + -0.0606415793299675, + -0.005911508109420538, + 0.0044736177660524845, + 0.0020897998474538326, + 0.019501984119415283, + -0.02110901288688183, + 0.03568219393491745, + 0.005363346543163061, + -0.02765399031341076, + -0.017017915844917297, + -0.047309573739767075, + 0.0048440671525895596, + -0.0283226165920496, + 0.005427087657153606, + -0.01996445283293724, + -0.04641837999224663, + 0.029241520911455154, + 0.03713516891002655, + 0.027971260249614716, + -0.006107100285589695, + 0.0237589068710804, + 0.05375192314386368, + -0.013761969283223152, + -0.03094370849430561, + 0.03456231951713562, + -0.08782295137643814, + 0.01729706861078739, + 0.03680569306015968, + -0.01956350728869438, + 0.011015060357749462, + 0.004701829515397549, + 0.04144794121384621, + 0.019887205213308334, + 0.03443628549575806, + 0.03079400770366192, + -0.0027997628785669804, + -0.06413291394710541, + -0.04098505154252052, + 0.05015166476368904, + 0.059918779879808426, + -0.012508290819823742, + 0.055550575256347656, + 0.04326927289366722, + 0.05082732439041138, + 0.017323674634099007, + -0.003111673053354025, + -0.02573397383093834, + -0.004228382371366024, + 0.0599895678460598, + 0.021139275282621384, + -0.0197267048060894, + 0.042227599769830704, + 0.00476634968072176, + 0.0056197610683739185, + 0.0033013068605214357, + 0.013995030894875526, + -0.017146307975053787, + 0.01875188574194908, + 0.04123670980334282, + 0.03864714130759239, + 0.03682132437825203, + 0.003454785095527768, + -0.07180611789226532, + -0.027762046083807945, + -0.014249083586037159, + 0.02968684211373329, + 0.009118002839386463, + 0.00936848297715187, + 0.006070398259907961, + -0.07594858855009079, + 0.00012849544873461127, + -0.03117837756872177, + 0.004129136446863413, + 0.00033334558247588575, + 0.0297580286860466, + -0.019872533157467842, + -0.06216820701956749, + -0.005789702758193016, + -0.0241712536662817, + -0.03106169030070305, + -0.0052152713760733604, + 0.04133732616901398, + -0.029712650924921036, + -0.11035282909870148, + -0.007663991767913103, + -0.01750485599040985, + -0.000323893764289096, + -0.020704537630081177, + -0.04767459258437157, + 0.01835312321782112, + -0.001937542692758143, + 0.024892259389162064, + 0.0009645111276768148, + 0.04387282580137253, + 0.004131866153329611, + -0.023341847583651543, + 0.04049057513475418, + -0.029848437756299973, + 0.01976977474987507, + -0.05807733163237572, + -0.09910459071397781, + 0.0784228965640068, + -0.06865257769823074, + -0.05361231788992882, + 0.023885302245616913, + -0.023360785096883774, + -0.00622082594782114, + 0.052084311842918396, + 0.0021302513778209686, + 0.05495657026767731, + 0.0616970956325531, + -0.012332890182733536, + 0.05950983986258507, + 0.054937995970249176, + 0.04535719007253647, + -0.009801623411476612, + -0.01854824088513851, + 0.015173048712313175, + 0.02584865689277649, + 0.008410594426095486, + -0.055260464549064636, + 0.03779270499944687, + -0.023896649479866028, + 0.037453196942806244, + -0.03023320809006691, + 0.0004692465881817043, + -0.0437244288623333, + 0.0002524528536014259, + 0.0552687831223011, + -0.046407196670770645, + -0.03134419396519661, + 0.02282605692744255, + 0.06249719485640526, + -0.03964686393737793, + -0.004564892966300249, + -0.006653438322246075, + 0.02652214840054512, + 0.0398518331348896, + -0.0030050252098590136, + -0.010766861960291862, + -0.03588695079088211, + 0.03368967026472092, + -0.05317806079983711, + -0.00395949836820364, + 0.017832964658737183, + 0.006555797532200813, + 0.006058758124709129, + -0.025805046781897545, + -0.0061325314454734325, + 0.014147481881082058, + 0.036806926131248474, + -0.034672435373067856, + -0.03095981478691101, + -0.03293488919734955, + 0.009883920662105083, + -0.06103527173399925, + -0.003617355599999428, + -0.024060776457190514, + 0.019549187272787094, + -0.06054382398724556, + -0.06840233504772186, + 0.05150244012475014, + 0.024429764598608017, + 0.012448769994080067, + 0.005153348203748465, + 0.03160015866160393, + 0.036757539957761765, + 0.011325591243803501, + 0.008937628008425236, + -0.00043997832108289003, + 0.09536051750183105, + 0.01268931943923235, + -0.019963983446359634, + -0.02178478054702282, + -0.0024592424742877483, + 0.0012889521894976497, + -0.015813108533620834, + -0.03472268208861351, + 0.002743238816037774, + -0.0683756023645401, + 0.039629045873880386, + 0.013843146152794361, + -0.005637917667627335, + 0.027287403121590614, + -0.020587872713804245, + -0.011503932997584343, + 0.048973288387060165, + 0.003956499043852091, + -0.002660201396793127, + 0.020934535190463066, + -0.05251295492053032, + 0.044583048671483994, + 0.007353031542152166, + 0.08107496052980423, + 0.07508847862482071, + 0.037270110100507736, + 0.05157146602869034, + -0.05023754760622978, + 0.01695636846125126, + 0.009343369863927364, + -0.0031341928988695145, + 0.032245706766843796, + -0.008299424313008785, + 0.059653494507074356, + -0.0022873959969729185, + 0.011337991803884506, + -0.022328991442918777, + -0.033709920942783356, + 0.052851930260658264, + -0.025083743035793304, + -0.025138363242149353, + -0.006641685031354427, + -0.03331812098622322, + -0.015599280595779419, + -0.021165626123547554, + -0.006175487767904997, + -0.07010051608085632, + 0.05710035562515259, + -0.02365850657224655, + -0.020606927573680878, + -0.0038717363495379686, + -0.04371608793735504, + -0.017428666353225708, + -0.0597686842083931, + 0.024488292634487152, + -0.01854654960334301, + -0.013769914396107197, + -0.02421344630420208, + 0.026341550052165985, + 0.012001970782876015, + -0.03422402963042259, + -0.0909828394651413, + 0.003974635619670153, + -0.013634894974529743, + -0.03260006010532379, + 0.05181308090686798, + 0.01750004105269909, + -0.012620323337614536, + 0.006855655461549759, + 0.061343446373939514, + -0.07364759594202042, + 0.06121107190847397, + 0.018926255404949188, + 0.03349253535270691, + 0.020816493779420853, + 0.04232490435242653, + -0.007069158833473921, + -0.01190843153744936, + -0.024194132536649704, + 0.03458510711789131, + 0.01122527290135622, + 0.012250051833689213, + 0.031289953738451004, + -0.0034071479458361864, + 0.03144620358943939, + 0.030218232423067093, + 0.040118567645549774, + -0.007931741885840893, + 0.01965019293129444, + 0.054535046219825745, + -0.00908845104277134, + 0.033969633281230927, + 0.005656739696860313, + 0.0228071678429842, + -0.025174135342240334, + -0.01356588862836361, + -0.0041200146079063416, + 0.04300377145409584, + 0.018163491040468216, + 0.008682330138981342, + 0.07503781467676163, + 0.005927497986704111, + -0.012917921878397465, + -0.01113944686949253, + 0.0045449561439454556, + -0.0478992760181427, + 0.018761442974209785, + 0.01788271591067314, + -0.06032171845436096, + -0.06593166291713715, + 0.005233909003436565, + -0.006003689020872116, + 0.016315437853336334, + -0.023181233555078506, + -0.036077797412872314, + 0.030663510784506798, + -0.020217277109622955, + 0.026664821431040764, + -0.020212706178426743, + 0.04127215966582298, + 0.039145469665527344, + 0.04220284894108772, + -0.09288682788610458, + 0.027798764407634735, + 0.009607399813830853, + -0.03891601413488388, + -0.025237297639250755, + -0.017562001943588257, + -0.02600203827023506, + -0.00739552965387702, + 0.04471409693360329, + 0.023698123171925545, + 0.0052395048551261425, + 0.04519087076187134, + -0.024096105247735977, + -0.04531945660710335, + 0.04193942993879318, + -0.02770145982503891, + 0.0022297920659184456, + -0.01552413497120142, + 0.07706715166568756, + -0.0195054542273283, + -0.02033030055463314, + 0.03259265050292015, + 0.05939918011426926, + 0.051511913537979126, + -0.013757559470832348, + 0.020184047520160675, + 0.0018451951909810305, + -0.021431785076856613, + -0.06393483281135559, + 0.03423625975847244, + -0.018282026052474976, + 0.0016288356855511665, + 0.037167854607105255, + 0.00638094637542963, + 0.015103846788406372, + 0.0549599789083004, + -0.0015304844127967954, + -0.022040000185370445, + -0.020992722362279892, + -0.04620552062988281, + 0.025018684566020966, + 0.03799193352460861, + -0.0014747974928468466, + 0.009992793202400208, + 0.011859198100864887, + -0.04592599347233772, + -0.011516350321471691, + 0.010077040642499924, + 0.011217835359275341, + 0.01559414342045784, + -0.05762917920947075, + -0.019632456824183464, + 0.010098744183778763, + 0.0027027565520256758, + 0.01918334886431694, + -0.004101972561329603, + -0.03723854571580887, + 0.007371736690402031, + 0.06300782412290573, + -0.021070338785648346, + -0.04008573666214943, + 0.0029951874166727066, + -0.006653991062194109, + -0.0021644574590027332, + 0.1194913312792778, + 0.025602038949728012, + 0.0313398614525795, + -0.011817504651844501, + 0.02342139557003975, + -0.039966173470020294, + 0.01834067516028881, + -0.01945525035262108, + -0.05028961971402168, + -0.022219397127628326, + -0.0012730770977213979, + 0.03196663036942482, + -0.01721424050629139, + 0.0031861080788075924, + -0.027238745242357254, + 0.003312832210212946, + -0.012626179493963718, + -0.021212033927440643, + 0.021159328520298004, + -0.017352228984236717, + -0.0015404821606352925, + 0.02676369622349739, + -0.026402724906802177, + -0.033951014280319214, + -0.02318483032286167, + 0.012727177701890469, + 0.026729093864560127, + 0.04985254630446434, + 0.005840604659169912, + 0.019174199551343918, + 0.07966182380914688, + -0.007603438571095467, + 0.02647353708744049, + 0.018027115613222122, + 0.05876979976892471, + -0.001413231249898672, + -0.003500087885186076, + 0.020076407119631767, + -0.00967556145042181, + 0.02885446324944496, + -0.020138243213295937, + -0.00044223826262168586, + -0.026416875422000885, + -0.011012106202542782, + 0.0348474457859993, + -0.008600732311606407, + -0.02753790281713009, + 0.018908238038420677, + 0.01877070590853691, + -0.06628507375717163, + 0.044944360852241516, + -0.01195759791880846, + -0.021844439208507538, + 0.030230389907956123, + -0.026469208300113678, + 0.03777940943837166, + 0.004716773983091116, + -0.011336645111441612, + -0.003714572172611952, + 0.018044674769043922, + -0.03408399969339371, + 0.04318449646234512, + -0.009365661069750786, + -0.050801683217287064, + -0.029431428760290146, + -0.0025962248910218477, + -0.0058153485879302025, + -0.007556596305221319, + -0.012168443761765957, + 0.007472142111510038, + -0.024667276069521904, + -0.011271487921476364, + -0.010347353294491768, + -0.025658387690782547, + 0.0181768536567688, + -0.0634433850646019, + -0.012044976465404034, + 0.03603485971689224, + 0.030989820137619972, + 0.012265441007912159, + -0.019692784175276756, + 0.010621625930070877, + -0.007336045149713755, + -0.030353054404258728, + -0.05420698970556259, + -0.03448362648487091, + -0.0029811300337314606, + 0.012111268006265163, + 0.059537142515182495, + 0.008651049807667732, + -0.0044509670697152615, + -0.017279719933867455, + 0.03620299696922302, + 0.057902827858924866, + -0.047132108360528946, + -0.022701120004057884, + 0.04266935586929321, + 0.044478826224803925, + -0.096375472843647, + 0.06935346871614456, + 0.04174228385090828, + 0.00589709123596549, + -0.022914087399840355, + 0.021074246615171432, + 0.029116865247488022, + 0.062098294496536255, + -0.0020454854238778353, + 0.036239877343177795, + -0.005601930432021618, + -0.004478822462260723, + -0.016993114724755287, + 0.011011319234967232, + 0.03185928985476494, + 0.05322020873427391, + -0.005731189623475075, + 0.02533675730228424, + -0.006512762047350407, + 0.014374563470482826, + -0.007028496824204922, + -0.004966248758137226, + -0.03548508882522583, + -0.008258195593953133, + 0.02517273835837841, + -0.03748407959938049, + 0.0757862776517868, + -0.061683282256126404, + 0.012340672314167023, + 0.0436626635491848, + -0.029801977798342705, + 0.06102997064590454, + -0.04520886018872261, + 0.01870013400912285, + 0.008607185445725918, + -0.020317627117037773, + 0.047460783272981644, + -0.0028572464361786842, + 0.0886063426733017, + -0.05013417452573776, + 0.010798074305057526, + -0.05563861131668091, + -0.020365020260214806, + 0.00838352832943201, + -0.019236372783780098, + 0.04964347556233406, + 0.0018025615718215704, + -0.018754055723547935, + -0.0043050674721598625, + 0.0037259904202073812, + -0.023306461051106453, + 0.02271411567926407, + 0.0014791946159675717, + 0.0033572232350707054, + -0.0007863344508223236, + -0.00495868967846036, + -0.03413661569356918, + -0.0047136456705629826, + 0.015474891290068626, + 0.027116285637021065, + -0.06371469795703888, + 0.013484143652021885, + -0.015700142830610275, + 0.008821569383144379, + -0.0062444815412163734, + -0.0244090985506773, + -0.06231464445590973, + 0.032544031739234924, + 0.00024356815265491605, + -0.02509722299873829, + -0.004385896027088165, + 0.03313787654042244, + -0.015426956117153168, + 0.019016651436686516, + 0.02037053555250168, + 0.0019422498298808932, + -0.006289246026426554, + -0.07248527556657791, + 0.0076228780671954155, + -0.038196414709091187, + -0.0048565855249762535, + -0.04426296055316925, + 0.020619045943021774, + -0.021008064970374107, + 0.033088356256484985, + 0.02501942776143551, + -0.02090645767748356, + -0.06708034873008728, + -0.026332730427384377, + 0.016165005043148994, + 0.01644996926188469, + 0.03627121075987816, + -0.017325570806860924, + -0.032449230551719666, + 0.002464290475472808, + 0.005360723473131657, + 0.02940242365002632, + -0.0567513033747673, + 0.05325101688504219, + -0.004309157375246286, + 0.013286684639751911, + -0.032641276717185974, + -0.03865950554609299, + -0.0010531132575124502, + 0.006802754942327738, + 0.028781326487660408, + 0.003727918490767479, + -0.04350946843624115, + -0.031690023839473724, + -0.03522980958223343, + 0.002608959563076496, + 0.023448573425412178, + -0.007875609211623669, + 0.009079214185476303, + -0.018949348479509354, + -0.014963537454605103, + -0.0342663899064064, + 0.005957656539976597, + 0.013178796507418156, + 0.011410037986934185, + 0.005302805919200182, + -0.03282426297664642, + 0.07444602996110916, + -0.02197902835905552, + -0.028437025845050812, + -0.014762441627681255, + 0.008199523203074932, + 0.009983973577618599, + 0.015992192551493645, + 0.008518172428011894, + 0.04271388798952103, + -0.0716550201177597, + 0.0027835406363010406, + -0.02802794612944126, + 0.06513422727584839, + 0.024372830986976624, + -0.01616736501455307, + -0.05311732366681099, + 0.0006009722710587084, + -0.035132765769958496, + -0.035314761102199554, + -0.03742477297782898, + -0.003158786566928029, + 0.0015034818788990378, + 0.028816772624850273, + -0.04363938793540001, + -0.00807346310466528, + -0.040073201060295105, + 0.026684461161494255, + -0.015172828920185566, + 0.009650220163166523, + 0.024008357897400856, + 0.023367326706647873, + 0.016930758953094482, + -0.007822565734386444, + 0.007937096990644932, + 0.01140319649130106, + -0.015032978728413582, + -0.01055837795138359, + -0.020594652742147446, + 0.026140086352825165, + -0.023596839979290962, + -0.0196366049349308, + -0.00014047346485313028, + 0.06042460724711418, + 0.019836019724607468, + -0.011057962663471699, + 0.0160304456949234, + -0.00044188176980242133, + 0.016658969223499298, + -0.013114477507770061, + 0.006312696263194084, + -0.010457172058522701, + -0.03747519850730896, + -0.001447419635951519, + 0.035576749593019485, + -0.018272632732987404, + 0.03742912411689758, + 0.027954643592238426, + 0.01653037779033184, + -0.028185298666357994, + -0.0026397458277642727, + -0.014920580200850964, + 0.023835834115743637, + 0.031873248517513275, + 0.011964273639023304, + 0.0292954258620739, + -0.02789388597011566, + 0.026850838214159012, + 0.023707546293735504, + 0.006113623268902302, + -0.006153269670903683, + -0.01692206971347332, + -0.01942352019250393, + 0.010258561931550503, + -0.005133177153766155, + 0.0007409406825900078, + 0.034564122557640076, + -0.02610350213944912, + -0.01928662694990635, + -0.025689514353871346, + 0.00714858528226614, + 0.003955730237066746, + -0.007092202547937632, + 0.0064104050397872925, + -0.03205440193414688, + -0.0006532705156132579, + 0.016880622133612633, + -0.011523530818521976, + 0.004065872170031071, + 0.02701500803232193, + 0.031571343541145325, + 0.047143734991550446, + 0.02929656393826008, + -0.023062018677592278, + -0.009060944430530071, + -0.0134055707603693, + -0.04732188582420349, + -0.04713304713368416, + 0.008307134732604027, + -0.0318407267332077, + 0.03138316422700882, + 0.02896915189921856, + 0.0007331460947170854, + -0.002174495253711939, + -0.005503708031028509, + -0.003567004343494773, + -0.00548905273899436, + 0.003184968838468194, + 0.009963943623006344, + -0.018891291692852974, + 0.02510552853345871, + -0.022737298160791397, + 0.0287463441491127, + -0.05773662030696869, + -0.04970479756593704, + 0.02445739507675171, + -0.02124566026031971, + 0.017756178975105286, + -0.01734672300517559, + -0.04353632777929306, + 0.008531788364052773, + -0.004335830919444561, + -0.06423566490411758, + -0.053204089403152466, + -0.035266242921352386, + 0.015024279244244099, + -0.017305413261055946, + 0.012064153328537941, + 0.0284049641340971, + 0.017644472420215607, + -0.011007148772478104, + -0.0141694201156497, + 0.02683296427130699, + 0.0391901358962059, + -0.014741248451173306, + 0.038056518882513046, + 0.02590879611670971, + -0.0183354914188385, + 0.012527750805020332, + -0.02381657063961029, + -0.02666766569018364, + 0.02494060806930065, + 0.04458333179354668, + -0.004400595556944609, + 0.009324432350695133, + -0.012188786640763283, + 0.005023381672799587, + -0.010630447417497635, + -0.008865480311214924, + -0.02898603118956089, + 0.0022648442536592484, + 0.03140722215175629, + 0.018302427604794502, + 0.03636058419942856, + -0.011833763681352139, + 0.0015542261535301805, + 0.022395236417651176, + -0.018047994002699852, + 0.028000235557556152, + 0.03871641680598259, + 0.019062984734773636, + 0.0014653857797384262, + 0.028144774958491325, + -0.018677758052945137, + -0.01603221707046032, + 0.030207712203264236, + -0.0256161168217659, + 0.00671811867505312, + 0.00728208664804697, + 0.0030107200145721436, + 0.028149427846074104, + 0.0065920292399823666, + -0.0057764858938753605, + -0.01855233870446682, + 0.006460411474108696, + -0.004752476233989, + 0.026067977771162987, + -0.021570978686213493, + -0.04593354091048241, + -0.026541119441390038, + 0.011264296248555183, + -0.01129150204360485 + ], + "start_index": 32557, + "end_index": 32869, + "token_count": 68, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "d4bb69fa-e987-524e-a9da-552322c110da", + "_source": { + "text": "\n\nLa variable `x`:\n\n- solo existe dentro de esa ejecución de la función\n- no es visible desde otras funciones\n- no es visible desde el flujo principal\n\n---\n\n# XI.1.6 Acceso desde goroutines\n\nLas goroutines creadas mediante:\n\n\n\ngo funcion()", + "embedding": [ + -0.019640354439616203, + -0.054521556943655014, + -0.009611778892576694, + -0.10161900520324707, + 0.05361533537507057, + -0.000907612033188343, + -0.019027002155780792, + -0.012256092391908169, + -0.0011721187038347125, + -0.030943555757403374, + 0.023084688931703568, + -0.05312587693333626, + 0.002910551382228732, + -0.009751880541443825, + -0.023088300600647926, + 0.027578575536608696, + 0.04184284433722496, + 0.01576491817831993, + -0.027836140245199203, + -0.03724617511034012, + -0.09730776399374008, + -0.005209772381931543, + 0.016491124406456947, + -0.051245372742414474, + -0.03537474200129509, + 0.014420036226511002, + -0.07447566092014313, + 0.0456509105861187, + 0.02243693545460701, + 0.006515556015074253, + -0.024553388357162476, + 0.009737547487020493, + -0.04078067094087601, + -0.014761916361749172, + -0.06035391241312027, + -0.014282768592238426, + 0.06878381222486496, + -0.07237103581428528, + 0.012831815518438816, + 0.030218083411455154, + -0.0002862370165530592, + 0.030035987496376038, + 0.06727312505245209, + 0.021767636761069298, + 0.044950153678655624, + -0.03337936848402023, + -0.003416906576603651, + 0.021411240100860596, + 0.01721523515880108, + -0.003276858711615205, + -0.02208692394196987, + 0.025809938088059425, + -0.021621501073241234, + -0.011439133435487747, + -0.029461350291967392, + -0.02010972611606121, + -0.03648912161588669, + -0.044368110597133636, + 0.010856634937226772, + 0.03290625661611557, + -0.02270573377609253, + -0.040942080318927765, + -0.014751173555850983, + 0.014301897957921028, + -0.028715405613183975, + 0.016803715378046036, + -0.01966138556599617, + 0.05400939658284187, + -0.02370668575167656, + -0.01574365608394146, + 0.004250883124768734, + -0.07411061972379684, + 0.018851792439818382, + 0.024463921785354614, + 0.006045875139534473, + -0.013048472814261913, + 0.008962114341557026, + -0.04407700523734093, + 0.059969156980514526, + 0.023205989971756935, + 0.00616841996088624, + 0.03268074244260788, + 0.02236555889248848, + -0.029323581606149673, + 0.03286202251911163, + 0.05327184870839119, + -0.013446810655295849, + 0.04077381268143654, + 0.022260311990976334, + 0.04099278151988983, + 0.021704131737351418, + 0.01895793527364731, + -0.024150697514414787, + 0.0265955813229084, + 0.010049186646938324, + -0.00036984437610954046, + 0.039157550781965256, + 0.0351601280272007, + 0.002128259278833866, + -0.018144601956009865, + -0.02961859665811062, + -0.00537714920938015, + -0.028386840596795082, + 0.058657124638557434, + 0.006509704049676657, + 0.06801968067884445, + -0.028457893058657646, + 0.03428416699171066, + -0.01594347134232521, + 0.01711328513920307, + -0.0004888923140242696, + -0.0032904676627367735, + 0.025585420429706573, + 0.041753675788640976, + -0.04696787893772125, + 0.020758403465151787, + 0.03494630753993988, + -0.0185451190918684, + -0.003424047725275159, + 0.001136010279878974, + -0.018777230754494667, + 0.02884259633719921, + 0.023638904094696045, + -0.015210865996778011, + 0.023856669664382935, + -0.010104130953550339, + -0.026720210909843445, + 0.01307108998298645, + 0.011329391039907932, + -0.007751740515232086, + 0.008878214284777641, + 0.010202046483755112, + 0.016056688502430916, + -0.0014083819696679711, + 0.013333562761545181, + 0.004690048284828663, + 0.03653569892048836, + -0.019748913124203682, + 0.0419713631272316, + -0.008631986565887928, + -0.023643000051379204, + -0.020967794582247734, + 0.02059093862771988, + -0.021495815366506577, + 0.03942309319972992, + -0.000575157580897212, + 0.029778843745589256, + 0.03402244299650192, + -0.0010838982416316867, + -0.024580534547567368, + -0.004429155495017767, + -0.007324124686419964, + -0.017061978578567505, + 0.017551712691783905, + 0.022802453488111496, + 0.01882469654083252, + -0.013402264565229416, + -0.011212821118533611, + -0.004300713539123535, + 0.015177829191088676, + 0.00127991393674165, + 0.021126238629221916, + 0.00815573614090681, + -0.0034234735649079084, + -0.023798877373337746, + 0.027146998792886734, + 0.013967348262667656, + -0.00831812433898449, + -0.02424556203186512, + -0.008257823064923286, + 0.01363943051546812, + 0.015492943115532398, + 0.010181737132370472, + -0.04795018583536148, + -0.012746932916343212, + -0.017397714778780937, + -0.02914840169250965, + 0.0427972711622715, + -0.015594203025102615, + -0.024805475026369095, + 0.03901761770248413, + 0.018839240074157715, + 0.029315119609236717, + 0.016687050461769104, + 0.01338185928761959, + 0.0334734208881855, + -0.019815508276224136, + -0.03451582044363022, + 0.005099080037325621, + -0.05509132146835327, + -0.007837126031517982, + -0.009519332088530064, + -0.022407367825508118, + 0.00205453229136765, + 0.012508216314017773, + -0.018595265224575996, + -0.03899841755628586, + -0.015301032923161983, + -0.023204462602734566, + -0.012559543363749981, + -0.019762765616178513, + 0.059343371540308, + -0.010860303416848183, + 0.012150687165558338, + 0.004210549872368574, + -0.008126189932227135, + -0.019415127113461494, + -0.008205817081034184, + -0.025998488068580627, + -0.0028879994060844183, + -0.034116558730602264, + 0.004944478161633015, + -0.009145843796432018, + 0.001558350631967187, + -0.020619217306375504, + 0.010489718988537788, + -0.00370195833966136, + 0.03496326133608818, + -0.0034437761642038822, + 0.04194008186459541, + 0.021007616072893143, + 0.021941376850008965, + 0.009377516806125641, + 0.0035676881670951843, + 0.00832301750779152, + 0.006499744486063719, + -0.002906602807343006, + -0.03583553805947304, + -0.013347117230296135, + 0.024410100653767586, + 0.0434517040848732, + -0.0246232058852911, + 0.02793554589152336, + -0.021168740466237068, + 0.029206562787294388, + 0.026153743267059326, + -0.019520284608006477, + 0.024270860478281975, + 0.04091335088014603, + 0.0063979350961744785, + 0.013722176663577557, + -0.02373938448727131, + -0.016640422865748405, + 0.0059997932985424995, + 0.007066256832331419, + -0.01620030216872692, + -0.008975444361567497, + -0.02254798635840416, + -0.00927734561264515, + 0.002872752258554101, + 0.09682705998420715, + 0.04316163808107376, + -0.03514721244573593, + -0.010319389402866364, + -0.006784515455365181, + -0.0026179132983088493, + 0.004239261616021395, + 0.03191953897476196, + -0.0072317300364375114, + -0.013353557325899601, + -0.014808155596256256, + -0.029318755492568016, + 0.023209717124700546, + 0.05152452737092972, + 0.009604723192751408, + 0.0007090758881531656, + -0.027622902765870094, + -0.023142799735069275, + -0.02352244406938553, + -0.004959543701261282, + -0.0011168447090312839, + 0.012189953587949276, + -0.032756026834249496, + 0.024730978533625603, + 0.0032236401457339525, + -0.028027793392539024, + -0.01050479244440794, + -0.0333220548927784, + 0.004183340817689896, + -0.06049639359116554, + 0.032663773745298386, + -0.019239790737628937, + -0.028064128011465073, + 0.005550148896872997, + 0.006217525340616703, + 0.017137786373496056, + 0.02969524636864662, + 0.0020900412928313017, + 0.02895994856953621, + 0.004130457993596792, + -0.013286242261528969, + 0.0038643197622150183, + -0.06542802602052689, + -0.004704994149506092, + 0.013709325343370438, + -0.03975735977292061, + 0.03160291537642479, + 0.02358030341565609, + 0.006224514916539192, + -0.019905028864741325, + 0.018178414553403854, + -0.023143626749515533, + 0.016014089807868004, + -0.05365971475839615, + -0.003909090533852577, + 0.03886055946350098, + 0.05638372525572777, + -0.04334288090467453, + 0.018216043710708618, + 0.03227356821298599, + 0.056498751044273376, + 0.024002069607377052, + -0.0052452958188951015, + 0.01594027690589428, + 0.004030833952128887, + 0.06393276900053024, + 0.01033962145447731, + -0.003223818028345704, + 0.033582914620637894, + -0.043386466801166534, + 0.02989298105239868, + -0.006998216267675161, + 0.043833911418914795, + -0.043957699090242386, + 0.01572960615158081, + 0.02108931913971901, + 0.06215910241007805, + 0.011105796322226524, + -0.018442930653691292, + -0.05380736291408539, + -0.01586524397134781, + -0.010426030494272709, + 0.04520680010318756, + 0.009431432001292706, + -0.013268708251416683, + 0.01187678799033165, + -0.028444739058613777, + -0.010743311606347561, + -0.0318470261991024, + 0.023454325273633003, + 0.018721207976341248, + 0.04902709275484085, + -0.010190890170633793, + -0.025583472102880478, + 0.006061921361833811, + -0.030127696692943573, + -0.0049403999000787735, + 0.0400935597717762, + 0.029038455337285995, + -0.02927599661052227, + -0.07475359737873077, + -0.0009091935935430229, + 0.0005085634184069932, + -0.03147397190332413, + -0.0454731248319149, + -0.017011485993862152, + 0.02332497388124466, + -0.025879884138703346, + -0.0029854571912437677, + 0.008183462545275688, + 0.04392632469534874, + -0.02791348099708557, + -0.0072840736247599125, + 0.05196565389633179, + -0.026602309197187424, + -0.043683018535375595, + -0.07096955180168152, + -0.08593085408210754, + 0.08725184202194214, + -0.07401580363512039, + -0.06598056107759476, + 0.00503068882972002, + 0.020795749500393867, + -0.0002452068729326129, + 0.03035258874297142, + 0.02485659345984459, + 0.05018038675189018, + 0.034949395805597305, + -0.036160580813884735, + 0.059747446328401566, + 0.047475166618824005, + 0.028454972431063652, + -0.037434764206409454, + -0.015675611793994904, + 0.011601710692048073, + 0.033271387219429016, + 0.01856440119445324, + -0.055637482553720474, + 0.03324579820036888, + -0.017450841143727303, + 0.0334627702832222, + -0.024007223546504974, + 0.02926836721599102, + -0.020466169342398643, + 0.012221393175423145, + 0.040878333151340485, + -0.06142445281147957, + -0.03912279009819031, + -0.02942562848329544, + 0.013284128159284592, + -0.03336508572101593, + 0.020247913897037506, + -0.04061394929885864, + 0.029503991827368736, + 0.04957328736782074, + 0.010975739918649197, + -0.011271737515926361, + -0.019966619089245796, + 0.02787199430167675, + -0.04028838872909546, + 0.016582001000642776, + -0.0007697882829234004, + -0.025131167843937874, + 0.06083710119128227, + -0.030086062848567963, + -0.01117855403572321, + 0.009306225925683975, + 0.004634343087673187, + -0.0027841352857649326, + 0.005085165146738291, + -0.045045990496873856, + -0.02601473778486252, + -0.06779000908136368, + 0.004635598044842482, + -0.025318017229437828, + -0.009389556013047695, + -0.06595507264137268, + -0.07043146342039108, + 0.04395988956093788, + 0.045613113790750504, + -0.031003540381789207, + -0.051203835755586624, + 0.050665199756622314, + 0.04888997972011566, + -0.017850274220108986, + -0.01360070239752531, + 0.02174171432852745, + 0.053332000970840454, + -0.008429988287389278, + 0.0034150409046560526, + -0.018975643441081047, + -0.020293988287448883, + -0.03157353773713112, + -0.018161214888095856, + -0.025168510153889656, + -0.0053128344006836414, + -0.07778194546699524, + 0.06560508906841278, + 0.03884625807404518, + 0.013951383531093597, + 0.027201902121305466, + 0.00861857458949089, + 0.05455917865037918, + -0.012063694186508656, + 0.025796927511692047, + 6.936890713404864e-05, + 0.020356396213173866, + -0.047865383327007294, + 0.016723521053791046, + -0.0021972276736050844, + 0.05309046059846878, + 0.10194206982851028, + 0.04859798774123192, + 0.012791033834218979, + -0.0643121749162674, + 0.02575998194515705, + 0.008494142442941666, + -0.0014958331594243646, + -0.005382442846894264, + 0.022223912179470062, + 0.05669628456234932, + -0.06066149100661278, + 0.011923998594284058, + -0.016320543363690376, + -0.022072812542319298, + 0.04817310720682144, + -0.010808045044541359, + -0.014125745743513107, + -0.012144475243985653, + -0.05975376442074776, + -0.005581711418926716, + -0.02534056454896927, + -0.0027395091019570827, + -0.05104578658938408, + 0.050354037433862686, + -0.025545205920934677, + -0.0631343349814415, + 0.002009267220273614, + -0.0860896185040474, + -0.05313056707382202, + -0.05427352339029312, + 0.046409618109464645, + -0.016106871888041496, + -0.00952290091663599, + -0.03804249316453934, + -0.002299650339409709, + 0.007742724381387234, + -0.049016956239938736, + -0.07367036491632462, + 0.025024740025401115, + -0.015635937452316284, + -0.02416568249464035, + 0.022668976336717606, + 0.027758799493312836, + -0.053512558341026306, + -0.0012796430382877588, + 0.03160594776272774, + -0.0529630109667778, + 0.056803613901138306, + 0.036055561155080795, + 0.04555729776620865, + 0.03329339623451233, + 0.09402130544185638, + 0.018372640013694763, + -0.0227888785302639, + 0.01274622231721878, + 0.005413848906755447, + -9.632082947064191e-05, + 0.04467841610312462, + 0.017905160784721375, + 0.012766469269990921, + 0.05076119676232338, + 0.05328582227230072, + 0.014162902720272541, + 0.0190160870552063, + 0.013432596810162067, + 0.037182874977588654, + 0.026588238775730133, + 0.04895559698343277, + 0.0011611509835347533, + -0.005022028461098671, + -0.012330746278166771, + -0.0017607944319024682, + -0.018616197630763054, + 0.011921633966267109, + 0.0086015360429883, + -0.02900884300470352, + 0.06018529459834099, + 0.0069428966380655766, + -0.00835234671831131, + 0.022158881649374962, + -0.0011209341464564204, + -0.02715543657541275, + -0.014751466922461987, + 0.027718929573893547, + -0.06235549971461296, + -0.027497990056872368, + 0.016372524201869965, + -0.010988311842083931, + -0.00596279464662075, + -0.024765968322753906, + -0.04335407540202141, + 0.027505071833729744, + -0.0048990328796207905, + 0.04972054064273834, + -0.04626060649752617, + -0.003345564939081669, + 0.005276922602206469, + 0.022726472467184067, + -0.04761544242501259, + 0.059275172650814056, + 0.03013201244175434, + 0.007399055641144514, + 0.008231153711676598, + -0.03981605917215347, + -0.02579653263092041, + 0.007963432930409908, + 0.055211156606674194, + 0.020005635917186737, + 0.03562094271183014, + 0.0450744554400444, + 0.012289107777178288, + -0.08390480279922485, + 0.04528247192502022, + -0.06249328702688217, + -0.03087887354195118, + 0.004416748881340027, + 0.03942256420850754, + -0.004647207912057638, + 0.007660853210836649, + 0.04328242689371109, + 0.044081393629312515, + -0.005033079069107771, + 0.016095994040369987, + 0.014981686137616634, + 0.025937510654330254, + -0.024951819330453873, + -0.05501483008265495, + 0.01619807258248329, + -0.012222783640027046, + -0.02374700829386711, + 0.021839240565896034, + -0.01737872324883938, + 0.0036551011726260185, + 0.08047766238451004, + 0.019917255267500877, + -0.034603193402290344, + -0.008484971709549427, + -0.039020318537950516, + -0.0058721206150949, + -0.001910913153551519, + 0.026063965633511543, + 0.03662535920739174, + -0.0013355989940464497, + -0.024221889674663544, + -0.01768907904624939, + -0.01598989963531494, + 0.0043014767579734325, + -0.04054388776421547, + -0.001007825369015336, + -0.0378175750374794, + -0.040308937430381775, + 0.03371693566441536, + 0.021598774939775467, + 0.018276289105415344, + -0.040488846600055695, + 0.01344795897603035, + 0.023670705035328865, + -0.029870234429836273, + -0.011684969067573547, + 0.017799990251660347, + 0.044296007603406906, + -0.0005530995549634099, + 0.10341668128967285, + 0.05710878595709801, + 0.010965844616293907, + 0.02090257778763771, + 0.02160654403269291, + -0.05218365788459778, + -0.002011291915550828, + -0.01220792904496193, + -0.011580988764762878, + -0.02566540800035, + 0.013631647452712059, + 0.025861628353595734, + -0.00038163285353221, + 0.023504767566919327, + -0.012682436034083366, + -0.012241237796843052, + -0.020478148013353348, + -0.0048233685083687305, + 0.016771333292126656, + -0.004643683787435293, + 0.01584051549434662, + -0.009509499184787273, + -0.013694499619305134, + -0.051125068217515945, + -0.01273499708622694, + 0.030462684109807014, + 0.020382342860102654, + -0.0012630122946575284, + -0.010694758966565132, + 0.004295938182622194, + 0.06179358810186386, + 0.009893554262816906, + -0.009656019508838654, + -0.007668059319257736, + 0.06827882677316666, + -0.00955896731466055, + 0.00846056453883648, + 0.016866451129317284, + 0.0005454556085169315, + -0.0012584938667714596, + -0.044997718185186386, + 0.012912290170788765, + -0.017554188147187233, + 0.033478204160928726, + 0.007608172949403524, + -0.030929217115044594, + -0.033077504485845566, + -0.006368407513946295, + -0.009598114527761936, + -0.09168367087841034, + 0.027249718084931374, + -0.02726404368877411, + -0.026193980127573013, + 0.007220057304948568, + -0.009453662671148777, + 0.045843638479709625, + -0.02138783596456051, + -0.03347953036427498, + -0.0049483394250273705, + 0.037851907312870026, + -0.051985450088977814, + 0.030390627682209015, + -0.01539604552090168, + -0.015880635008215904, + -0.016295166686177254, + 0.006478296592831612, + -0.004925244953483343, + -0.008069093339145184, + 0.002219305606558919, + 0.02318420447409153, + -0.047517210245132446, + 0.029088180512189865, + 0.002403243212029338, + -0.017628299072384834, + 0.02974727936089039, + -0.014032169245183468, + -0.0264568068087101, + -0.03780992329120636, + -0.03054819256067276, + 0.02634911611676216, + -0.04637572541832924, + -0.004394914489239454, + 0.011734070256352425, + -0.00777854211628437, + -0.04374656453728676, + -0.03416835144162178, + -0.002579018473625183, + 0.008857480250298977, + 0.014466125518083572, + -0.03645484521985054, + -0.03247588500380516, + -0.007939641363918781, + 0.05590593069791794, + 0.04684405028820038, + -0.012190470471978188, + -0.007253539282828569, + 0.04757419973611832, + 0.018101973459124565, + -0.0862124040722847, + 0.03751067444682121, + 0.010722644627094269, + 0.007688934449106455, + -0.06795395910739899, + 0.01168076228350401, + 0.070337675511837, + 0.0498502179980278, + -0.02819208614528179, + -0.005885148420929909, + 0.0011776330647990108, + 0.0328923836350441, + -0.02906966395676136, + 0.00703583937138319, + -0.0026812241412699223, + 0.033183615654706955, + -0.01945742405951023, + 0.01239753607660532, + -0.014280056580901146, + 0.046347398310899734, + -0.019321557134389877, + -0.0041274018585681915, + -0.04012603312730789, + 0.0057195210829377174, + 0.038161613047122955, + -0.022825365886092186, + 0.08032943308353424, + -0.03684449940919876, + 0.013168442994356155, + -0.0019897487945854664, + -0.017832783982157707, + 0.05453083664178848, + -0.058308809995651245, + 0.015726253390312195, + 0.02176426164805889, + -0.01806683838367462, + -0.008862384594976902, + -0.013446701690554619, + 0.11313720792531967, + -0.012929102405905724, + 0.02256852015852928, + 0.016205858439207077, + -0.016257882118225098, + 0.06023559719324112, + -0.025371089577674866, + 0.03655409812927246, + 0.010354764759540558, + -0.013147945515811443, + -0.023943400010466576, + -0.015206048265099525, + -0.010031260550022125, + 0.005390217527747154, + 0.027160480618476868, + -0.0018347013974562287, + -0.046791791915893555, + 0.047231100499629974, + -0.04018712416291237, + -0.03307697921991348, + 0.04789169877767563, + 0.04654582217335701, + -0.06949051469564438, + 0.02628723531961441, + -0.022726356983184814, + -0.014383292756974697, + 0.02661791630089283, + -0.046365540474653244, + -0.03578374162316322, + 0.025394173339009285, + 0.04674401134252548, + -0.01119146216660738, + 0.021484527736902237, + 0.08130546659231186, + -0.031248411163687706, + -0.01598094403743744, + 0.028905734419822693, + 0.013229831121861935, + 0.014339109882712364, + -0.004778955597430468, + 0.024701133370399475, + 0.017103521153330803, + -0.0047300709411501884, + -0.06111593171954155, + 0.0005962499999441206, + -0.012469694018363953, + 0.011726032011210918, + -0.02076343260705471, + -0.03364942595362663, + -0.028283603489398956, + 0.011902665719389915, + 0.048321135342121124, + -0.0027391519397497177, + -0.0038359302561730146, + 0.004027190618216991, + -0.06133095547556877, + -0.003666359931230545, + -0.006604867056012154, + -0.02697366289794445, + -0.06864361464977264, + 0.041615862399339676, + -0.021792910993099213, + 0.04526597633957863, + -0.017511414363980293, + -0.03220558539032936, + 0.025751911103725433, + 0.020986884832382202, + 0.035789571702480316, + 0.018287722021341324, + -0.03090466745197773, + -0.011059476062655449, + 0.014482377097010612, + -0.005252992734313011, + 0.02654380537569523, + -0.007751128636300564, + 0.0069413622841238976, + 0.010432271286845207, + 0.005554514937102795, + -0.015900755301117897, + 0.0177091583609581, + -0.011999567970633507, + 0.01962892897427082, + -0.017897672951221466, + -0.006432339549064636, + 0.06789620965719223, + 0.01143402699381113, + 0.012488367967307568, + -0.004071340896189213, + 0.013728141784667969, + 0.037257902324199677, + 0.0187756959348917, + 0.016242247074842453, + 0.024036310613155365, + -0.08249499648809433, + -0.017375299707055092, + -0.01629914529621601, + 0.058429036289453506, + 0.010292676277458668, + 0.011558663100004196, + -0.03526655584573746, + 0.025673262774944305, + -0.013925946317613125, + -0.06498982012271881, + -0.0416199266910553, + -0.029349660500884056, + -0.023712633177638054, + 0.013928268104791641, + -0.04424396529793739, + -0.03727956488728523, + 0.011060521006584167, + 0.03240509331226349, + -0.027952002361416817, + -0.0017014751210808754, + 0.028017722070217133, + 0.004640184808522463, + 0.0069427816197276115, + 0.004685693886131048, + -0.027485013008117676, + -0.02816825546324253, + -0.01735602505505085, + 3.869913416565396e-05, + 0.009248493239283562, + 0.006206658203154802, + -0.04267245903611183, + -0.014259880408644676, + -0.02986854501068592, + 0.012614536099135876, + -0.027375806123018265, + -0.01428312249481678, + -0.005497671663761139, + 0.002149329287931323, + -0.01619519107043743, + -0.009907254949212074, + 0.0027203757781535387, + 0.002239972585812211, + -0.060038696974515915, + -0.0007587084546685219, + 0.02596413530409336, + -0.030252773314714432, + 0.01661897450685501, + 0.07046778500080109, + 0.02507881075143814, + -0.000802333583123982, + 0.006940304301679134, + -0.020699122920632362, + 0.0016795106930658221, + 0.019714349880814552, + -0.017533427104353905, + 0.01323409378528595, + -0.00722527178004384, + 0.027662836015224457, + 0.01198481023311615, + 0.04794803261756897, + 0.0376838855445385, + -0.02331845462322235, + -0.022400125861167908, + 0.0060985819436609745, + -0.042048826813697815, + -0.03469186648726463, + 0.04579312726855278, + -0.04903179779648781, + -0.017037101089954376, + -0.006361021660268307, + 0.021479159593582153, + 0.0008544022566638887, + -0.03537463769316673, + 0.02930133044719696, + -0.02610519900918007, + 0.03106842376291752, + -0.02069563791155815, + -0.023744011297822, + 0.0006631585420109332, + 0.017205089330673218, + -0.013639208860695362, + 0.030108919367194176, + 0.0599571168422699, + -0.04585803300142288, + 0.026262713596224785, + -0.00016157903883140534, + 0.006924686022102833, + -0.017086109146475792, + 0.018865525722503662, + -0.06071960926055908, + 0.022403759881854057, + 0.02823343127965927, + 0.007326577324420214, + -0.001613314263522625, + -0.020580310374498367, + -0.00446009635925293, + -0.019343024119734764, + -0.0048288023099303246, + 0.0022897017188370228, + -0.005181087646633387, + 0.025503521785140038, + -0.01662728562951088, + 0.027810873463749886, + -0.030849777162075043, + 0.01584729738533497, + 0.002487268764525652, + -0.036035384982824326, + 0.019228043034672737, + 0.00732899084687233, + -0.026695718988776207, + -0.03365074470639229, + 0.012298560701310635, + -0.04458935186266899, + -0.046795256435871124, + -0.027845950797200203, + 0.017418375238776207, + -0.055111728608608246, + -0.008556042797863483, + 0.02797107957303524, + 0.011556059122085571, + 0.007369650527834892, + -0.005104406271129847, + 0.014644886367022991, + 0.02650141343474388, + -0.031383685767650604, + 0.05156123265624046, + -0.0032337531447410583, + -0.011752991937100887, + -0.015369298867881298, + 0.0051081315614283085, + 0.01995798945426941, + 0.004535703919827938, + 0.01650909148156643, + -0.02002561278641224, + -0.00539762107655406, + -0.017642905935645103, + -0.009006953798234463, + -0.023883402347564697, + 0.00024138098524417728, + -0.008326172828674316, + 0.020535165444016457, + 0.05490647256374359, + 0.019749069586396217, + 0.04837893322110176, + -0.02072528935968876, + -0.0030996964778751135, + 0.030969718471169472, + -0.02108839526772499, + 0.07345272600650787, + 0.021719716489315033, + -0.001020347699522972, + 0.002024993998929858, + 0.03161562979221344, + -0.019284455105662346, + -0.004443998448550701, + -0.023522596806287766, + 0.010898949578404427, + 0.011120189912617207, + 0.008869430981576443, + 0.0469994954764843, + 0.018342360854148865, + -0.049351952970027924, + -0.02294541709125042, + -0.006716737989336252, + 0.011473244987428188, + 0.014191272668540478, + 0.028369786217808723, + -0.023943400010466576, + 0.004319005645811558, + -0.03614497929811478, + 0.04631052538752556, + 0.012149610556662083 + ], + "start_index": 32869, + "end_index": 33114, + "token_count": 57, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "24114379-b181-5634-bf0d-98f6fe23293a", + "_source": { + "text": "\n\nsiguen las mismas reglas de scope que una función normal.\n\nPor lo tanto:\n\n- pueden acceder a **Global Scope**\n- pueden acceder a su propio **Function Scope**\n- **no pueden acceder al Main Local Scope**", + "embedding": [ + -0.015656812116503716, + -0.06702297925949097, + -0.005778416525572538, + -0.11705348640680313, + 0.02595837228000164, + -0.016927530989050865, + -0.022144978865981102, + -0.05041462555527687, + -0.017440833151340485, + -0.027607256546616554, + 0.03603888303041458, + -0.04721762239933014, + 0.02896770089864731, + -0.006369811482727528, + -0.036167919635772705, + 0.057665903121232986, + 9.095973655348644e-05, + -0.009407131932675838, + -0.03700367361307144, + -0.0644160583615303, + -0.08263355493545532, + 0.008701367303729057, + 0.0009398091351613402, + 0.014530647546052933, + -0.03634973615407944, + 0.003346204524859786, + -0.0006462776218540967, + 0.032704293727874756, + 0.0161456111818552, + -0.00028890898101963103, + -0.06662865728139877, + 0.03296376019716263, + -0.016792813315987587, + -0.0010032691061496735, + -0.03664974868297577, + -0.010196281597018242, + 0.03836202248930931, + -0.05849860981106758, + 0.028268223628401756, + -6.622566434089094e-05, + -0.03367390111088753, + 0.038983963429927826, + 0.043170321732759476, + 0.026073670014739037, + 0.04131770506501198, + -0.04990800470113754, + -0.0025443099439144135, + 0.053306736052036285, + -0.018481558188796043, + -0.019997280091047287, + -0.018437525257468224, + -0.007691174279898405, + 0.008075995370745659, + -0.036039821803569794, + -0.030649438500404358, + 0.013487927615642548, + 0.0053450316190719604, + -0.05061773210763931, + -0.01067877747118473, + 0.022897794842720032, + -0.042341750115156174, + -0.06748853623867035, + -0.013948306441307068, + -0.025673767551779747, + -0.011104961857199669, + 0.07296892255544662, + -0.03854566439986229, + 0.0017651577945798635, + -0.013777931220829487, + 0.0027797608636319637, + -0.010114436969161034, + -0.05584628880023956, + 0.006532310042530298, + 0.01076505146920681, + -0.012933173216879368, + 0.01499358844012022, + 0.013791518285870552, + -0.04939475655555725, + 0.051096051931381226, + -0.0023650117218494415, + -0.01598621904850006, + 0.019207829609513283, + -0.009322927333414555, + -0.01364483404904604, + 0.019231827929615974, + 0.07110034674406052, + 0.035703472793102264, + -0.010934578254818916, + -0.003371231956407428, + 0.020088812336325645, + 0.024535128846764565, + 0.005353683140128851, + 0.0028991771396249533, + 0.016989586874842644, + 0.04123520478606224, + -0.003960795234888792, + -0.018088648095726967, + -0.012116034515202045, + -0.0046913945116102695, + -0.011855445802211761, + 0.01270426344126463, + -0.018193930387496948, + -0.022498611360788345, + 0.009777618572115898, + 0.0542585551738739, + 0.07259607315063477, + -0.025488927960395813, + 0.0001427100069122389, + 0.014896473847329617, + 0.02172863483428955, + -0.008270936086773872, + -0.008930320851504803, + -0.01432991772890091, + 0.01780392974615097, + -0.04032530635595322, + -0.024303356185555458, + 0.04418623074889183, + -0.006677514873445034, + 0.0048333583399653435, + 0.018065882846713066, + 0.04655887559056282, + 0.0031507827807217836, + 0.030338820070028305, + -0.0006976901786401868, + 0.03662627190351486, + 0.01582815870642662, + -0.04998192563652992, + -0.009301740676164627, + 0.014992296695709229, + -0.003262474201619625, + 0.010828743688762188, + -0.01382720097899437, + 0.013113141059875488, + -0.01792728900909424, + 0.010751125402748585, + -0.029379643499851227, + -0.008462515659630299, + -0.02914920635521412, + 0.01827831193804741, + 0.0034503971692174673, + -0.031008144840598106, + -0.003977058455348015, + -0.003509324276819825, + -0.002445754362270236, + 0.017948782071471214, + -0.007046867161989212, + 0.007067305967211723, + 0.02211698144674301, + -0.0022993164602667093, + -0.013809033669531345, + -0.01214100793004036, + -0.021906087175011635, + 0.0067096371203660965, + -0.022061370313167572, + -0.014415848068892956, + 0.0020036594942212105, + -0.02760852873325348, + 0.019821494817733765, + 0.01924886181950569, + 0.011627775616943836, + 0.022107049822807312, + -0.016712697222828865, + -0.003786312183365226, + -0.010286679491400719, + -0.014319108799099922, + 0.04280969500541687, + 0.028927210718393326, + -0.023618217557668686, + 0.004556648898869753, + -0.006167080253362656, + -0.014734990894794464, + 0.01217103935778141, + 0.029304008930921555, + -0.03763218969106674, + 0.02061067335307598, + 0.0206950344145298, + -0.014781965874135494, + 0.03738921880722046, + -0.05481090024113655, + 0.02638804353773594, + 0.006770947016775608, + 0.012111487798392773, + 0.0069294273853302, + 0.025673769414424896, + -0.00571051798760891, + 0.04068508371710777, + -0.0017934684874489903, + -0.04062473028898239, + -0.021145572885870934, + -0.06025077775120735, + -0.0201755091547966, + -0.02388538047671318, + 0.00020702950132545084, + -0.0021924665197730064, + -0.0151832839474082, + -0.05012743920087814, + -0.025810308754444122, + -0.03306945040822029, + -0.008297150023281574, + 0.006911422125995159, + -0.03291044384241104, + 0.03181012347340584, + 0.008853181265294552, + -0.011120923794806004, + 0.0024987547658383846, + -0.009864688850939274, + 0.018768493086099625, + 0.001341163064353168, + -0.02162766642868519, + 0.011679728515446186, + -0.04337935894727707, + -0.013488821685314178, + -0.035582561045885086, + -0.013254338875412941, + -0.0067546796053647995, + 0.03488526493310928, + -0.02539818175137043, + 0.03518165275454521, + -0.014178321696817875, + 0.033839814364910126, + 0.011548771522939205, + 0.031686268746852875, + 0.006877246778458357, + 0.01649574376642704, + 0.07342720031738281, + -0.0016871709376573563, + -0.003292431589215994, + -0.04703488573431969, + -0.029750509187579155, + 0.012093073688447475, + 0.038690272718667984, + -0.060396239161491394, + -0.014388705603778362, + 0.03366939723491669, + 0.022621579468250275, + 0.02481396496295929, + 0.0023688040673732758, + 0.02846335992217064, + 0.059023384004831314, + 0.042440157383680344, + 0.007337686140090227, + -0.006842497736215591, + 0.0016136753838509321, + 0.01276759896427393, + -0.0141750518232584, + 0.018646731972694397, + 0.0239590872079134, + 0.031214457005262375, + 0.004229970276355743, + 0.03492432460188866, + 0.07572473585605621, + -0.032730359584093094, + -0.00975917000323534, + -0.006916907150298357, + 0.0020229280926287174, + 0.005163209978491068, + -0.0061474572867155075, + 0.0050146570429205894, + -4.897516191704199e-05, + 0.001295482856221497, + -0.03476233407855034, + -0.02893306314945221, + -0.033086806535720825, + 0.00594922574236989, + 0.01070003304630518, + 0.02176102250814438, + -0.026149265468120575, + -0.014089569449424744, + -0.02720622532069683, + -0.002328805858269334, + -0.04348120465874672, + 0.018093466758728027, + 0.0069096568040549755, + 0.03227591887116432, + 0.024023395031690598, + 0.0008560290443710983, + -0.007366178557276726, + -0.006696709431707859, + -0.013732872903347015, + 0.01529407873749733, + -0.023805277422070503, + -0.011981228366494179, + -0.025850392878055573, + 0.04147129878401756, + -0.002672226168215275, + 0.02377728559076786, + 0.0026913536712527275, + 0.021721797063946724, + 0.011627526953816414, + 0.0010345207992941141, + -0.0084378058090806, + 0.03905016556382179, + -0.052949462085962296, + -0.013625509105622768, + 0.004900588188320398, + 0.018674544990062714, + 0.029462764039635658, + -0.037209153175354004, + 0.015919184312224388, + 0.01791474223136902, + 0.007817814126610756, + 0.041307203471660614, + 0.010542884469032288, + -0.03638396039605141, + -0.024197585880756378, + 0.023897666484117508, + 0.06539792567491531, + -0.035105228424072266, + 0.061929963529109955, + 0.014304467476904392, + 0.08282966911792755, + 0.005712715908885002, + 0.005822551902383566, + -0.049374647438526154, + 0.007388534024357796, + 0.027227671816945076, + 0.07179196923971176, + -0.02199569158256054, + -0.004036757629364729, + 0.0016589644365012646, + -0.0030866707675158978, + 0.03939424082636833, + -0.02424478344619274, + -0.04810706526041031, + 0.012209165841341019, + 0.037815771996974945, + 0.06282585114240646, + 0.049096859991550446, + -0.006652717012912035, + -0.04878832772374153, + -0.019013773649930954, + 0.018194586038589478, + 0.014903116039931774, + 0.024510638788342476, + 0.002275067148730159, + 0.012350569479167461, + -0.07123915106058121, + 0.029183926060795784, + -0.048655666410923004, + 0.003286232240498066, + 0.009528343565762043, + -0.004595298785716295, + 0.010911274701356888, + -0.07732129842042923, + -0.00554331811144948, + -0.03105791099369526, + -0.05791192129254341, + 0.0043692938052117825, + 0.05379090458154678, + 0.00040960684418678284, + -0.09967926144599915, + -0.03294001519680023, + -0.03586486726999283, + 0.010171059519052505, + -0.019887087866663933, + -0.007884681224822998, + -0.009317534044384956, + 0.004794712644070387, + -0.006560747977346182, + -1.7747510355548002e-05, + 0.04237499460577965, + 0.005873582791537046, + -0.04209424555301666, + 0.003256462747231126, + -0.01389961875975132, + 0.03982313722372055, + -0.06684522330760956, + -0.08722668141126633, + 0.07772749662399292, + -0.040714699774980545, + -0.06738559901714325, + -0.0029431076254695654, + -0.028359761461615562, + 0.03212957829236984, + 0.056221649050712585, + 0.038521766662597656, + 0.06888601183891296, + 0.019626617431640625, + -0.0032453935127705336, + 0.07615747302770615, + 0.062128808349370956, + 0.01520297396928072, + 0.0013961477670818567, + -0.0032577996607869864, + 0.022366316989064217, + 0.031277600675821304, + -0.004806507378816605, + -0.0447455570101738, + 0.02281748689711094, + -0.027549337595701218, + 0.013311102986335754, + -0.015420312993228436, + -0.0127330357208848, + -0.020697686821222305, + 0.008448207750916481, + 0.02718806080520153, + -0.024761537089943886, + -0.04433141276240349, + -0.0020785066299140453, + 0.04354014992713928, + -0.039678171277046204, + -0.017593618482351303, + -0.03125137463212013, + -0.005390369798988104, + 0.049737896770238876, + 0.022200217470526695, + -0.028084060177206993, + -0.04195590317249298, + 0.013250617310404778, + -0.02264290861785412, + 0.04699375480413437, + 0.004430191125720739, + -0.00207335501909256, + 0.010157323442399502, + -0.021908389404416084, + -0.01357549149543047, + 0.01896967925131321, + 0.019672926515340805, + -0.041956786066293716, + -0.0011555212549865246, + -0.0734541267156601, + 0.034635525196790695, + -0.05769430473446846, + 0.0031693319324404, + -0.008542930707335472, + 0.005970243830233812, + 0.016868824139237404, + -0.030409803614020348, + 0.01918068528175354, + 0.02408020570874214, + 0.03700592741370201, + 0.0006444259197451174, + 0.03963907063007355, + 0.02336098439991474, + -0.0042085908353328705, + 0.0028241800609976053, + 0.02503659762442112, + 0.04683324322104454, + 0.0031834524124860764, + -0.017522720620036125, + -0.004995927680283785, + -0.03945867717266083, + 0.010939639061689377, + -0.04012720659375191, + 0.003847199259325862, + -0.00399126997217536, + -0.009853571653366089, + 0.03416085243225098, + -0.026163091883063316, + -0.014663072302937508, + 0.04020652174949646, + -0.020853538066148758, + 0.03528650477528572, + 0.05620232969522476, + -0.028547829017043114, + -0.012608944438397884, + 0.008540034294128418, + -0.029767902567982674, + 0.03903069347143173, + 0.012664065696299076, + 0.030163835734128952, + 0.08008860051631927, + 0.01840798184275627, + -0.004728314932435751, + -0.0703369751572609, + 0.04017453268170357, + 0.01292532030493021, + 0.0176218394190073, + 0.02983037754893303, + 0.05503646656870842, + 0.0362902507185936, + -0.002379026962444186, + 0.009912345558404922, + -0.03848710283637047, + -0.040746934711933136, + 0.048245541751384735, + -0.006257893983274698, + -0.027378106489777565, + -0.007857727818191051, + -0.013331442140042782, + -0.032304126769304276, + -0.003172712866216898, + 0.0002407341089565307, + -0.06385013461112976, + 0.09842446446418762, + 3.632737571024336e-05, + -0.04388359934091568, + 0.001577831688337028, + -0.06529220938682556, + -0.03648768365383148, + -0.06806443631649017, + 0.0015272836899384856, + -0.02331027016043663, + -0.001457458478398621, + 0.014681102707982063, + 0.03801262751221657, + -0.02342749759554863, + -0.01042499765753746, + -0.06487682461738586, + -0.011741223745048046, + -0.017275139689445496, + -0.03041197918355465, + 0.02532779984176159, + 0.022722529247403145, + 0.02442220225930214, + -0.0053571914322674274, + 0.04773219674825668, + -0.06332051753997803, + 0.02709069289267063, + 0.010752467438578606, + 0.008003157563507557, + -0.009035204537212849, + 0.05580794811248779, + -0.0381644181907177, + -9.077602589968592e-05, + -0.0157557874917984, + 0.03337613865733147, + -0.0003153005673084408, + 0.016951585188508034, + 0.03161962702870369, + -0.001715287333354354, + 0.045233841985464096, + 0.025269417092204094, + 0.004676324315369129, + 0.002052739728242159, + 0.04011216759681702, + 0.03734893351793289, + 0.02678843028843403, + 0.07511188089847565, + 0.004681787919253111, + -0.006286351941525936, + -0.04103464633226395, + -0.005523103289306164, + 0.02025618962943554, + 0.061390470713377, + -0.0004907652619294822, + 0.0008337332401424646, + 0.07370168715715408, + 0.02129986509680748, + -0.013700839132070541, + -0.043009866029024124, + -0.0077196452766656876, + -0.03865218162536621, + 0.025946224108338356, + 0.03472476452589035, + -0.03425677865743637, + -0.07071980088949203, + 0.028925755992531776, + -0.003985192161053419, + 0.03449147939682007, + -0.04486549273133278, + -0.03315255045890808, + 0.03459792211651802, + -0.01339807454496622, + -0.017094409093260765, + 0.0011392429005354643, + 0.09366200119256973, + 0.03565433993935585, + 0.02817506715655327, + -0.04291186109185219, + 0.01138998381793499, + -0.05481437221169472, + -0.025585336610674858, + -0.04282032698392868, + -0.035071585327386856, + -0.06364839524030685, + 0.021662572398781776, + 0.05540471524000168, + -0.012971755117177963, + -0.0010752108646556735, + 0.0036123613826930523, + -0.016359852626919746, + -0.08028624206781387, + 0.029080426320433617, + -0.024677274748682976, + -0.009932073764503002, + -0.027400856837630272, + 0.06931398808956146, + -0.02967740222811699, + -0.010102719999849796, + 0.004172071348875761, + 0.0070609888061881065, + 0.039371736347675323, + 0.016779953613877296, + 0.01674838736653328, + -0.02333803102374077, + -0.00526986550539732, + -0.028224943205714226, + 0.04623965919017792, + -0.013530931435525417, + -0.0031347034964710474, + 0.042862214148044586, + 0.03998217731714249, + 0.0009607910760678351, + 0.09322396665811539, + 0.015838414430618286, + -0.013463610783219337, + -0.011382858268916607, + -0.0283989105373621, + 0.012243411503732204, + 0.0007706453907303512, + 0.011233563534915447, + 0.01767529919743538, + 0.0113500552251935, + -0.029368219897150993, + 0.0019983872771263123, + -0.01797228306531906, + 0.0033423639833927155, + -0.023482637479901314, + -0.013922680169343948, + -0.04840146005153656, + 0.03556519001722336, + 0.019943619146943092, + 0.02086508646607399, + 0.01470272894948721, + -0.021430011838674545, + -0.01191784255206585, + 0.0641307383775711, + -0.023615241050720215, + -0.036686111241579056, + 0.029640501365065575, + -0.04512074217200279, + 0.010967723093926907, + 0.08562327176332474, + -0.0009949920931831002, + 0.05174843966960907, + -0.029709121212363243, + 0.02649231068789959, + -0.02212725207209587, + 0.027366753667593002, + -0.004201177041977644, + -0.03254914656281471, + -0.006978303659707308, + 0.008021971210837364, + -0.006280569359660149, + 0.0028309624176472425, + -0.005731359124183655, + 0.01211040560156107, + 0.0016701706917956471, + -0.034458909183740616, + -0.01531936600804329, + 0.028066212311387062, + 0.0004422434139996767, + -0.009901480749249458, + 0.029537394642829895, + -0.01661398820579052, + -0.03151516243815422, + -0.0020509040914475918, + 0.03923911601305008, + -0.007948687300086021, + 0.05752968415617943, + -0.010277698747813702, + -0.011361714452505112, + 0.08678341656923294, + -0.012681577354669571, + 0.03264232724905014, + -0.00164758728351444, + 0.029371272772550583, + -0.006357237696647644, + -0.019749311730265617, + 0.017918948084115982, + -0.01667466200888157, + -0.005342088174074888, + -0.05516635254025459, + -0.0033662039786577225, + 0.004534069914370775, + 0.018622128292918205, + 0.033040303736925125, + -0.025602294132113457, + -0.04138560965657234, + 0.004895031917840242, + 0.014672591350972652, + -0.04779564216732979, + 0.07521487027406693, + -0.014838526956737041, + -0.00021579167514573783, + 0.045778363943099976, + -0.0248172115534544, + 0.0408562496304512, + 0.003212363924831152, + 0.0020137683022767305, + -0.015248715877532959, + 0.03483959659934044, + -0.05783604085445404, + 0.009302460588514805, + 0.006016069557517767, + -0.10407322645187378, + -0.08304186910390854, + 0.011774210259318352, + -0.009461295790970325, + -0.014299087226390839, + -0.06863554567098618, + 0.019776854664087296, + -0.01592581905424595, + -0.025403212755918503, + -0.032444924116134644, + -0.00264338543638587, + 0.0463918037712574, + -0.059624601155519485, + -0.016819102689623833, + 0.002790848258882761, + 0.011865334585309029, + 0.02046254649758339, + -0.02463182620704174, + -0.006402908358722925, + 0.0008808688726276159, + -0.04015045613050461, + -0.03561330959200859, + -0.004137404263019562, + -0.009702008217573166, + -0.002484203316271305, + 0.06868773698806763, + -0.003909643739461899, + -0.0016235740622505546, + 0.02173570543527603, + 0.03100057691335678, + 0.0007366203935816884, + -0.06184691563248634, + -0.02431003749370575, + 0.0904449075460434, + 0.06223437190055847, + -0.11591865122318268, + 0.03474956005811691, + 0.05552440881729126, + 0.02652018703520298, + -0.021342908963561058, + 0.04637082666158676, + 0.005940984934568405, + 0.0394955575466156, + 0.005997602827847004, + 0.0141960009932518, + -0.00385212991386652, + -0.01942712999880314, + -0.018265988677740097, + 0.0014492761110886931, + -0.011764694936573505, + 0.0638231635093689, + 0.0068611884489655495, + -0.028130581602454185, + 0.009805159643292427, + 0.01838497631251812, + 0.022127928212285042, + -0.025754215195775032, + -0.005440930835902691, + -0.023070955649018288, + 0.025362683460116386, + -0.01752742938697338, + 0.040052324533462524, + 4.0925093344412744e-05, + 0.002433975227177143, + 0.05331319570541382, + -0.01846626028418541, + 0.03575451299548149, + -0.028463125228881836, + 0.006306342780590057, + -0.005515497177839279, + -0.014752000570297241, + 0.05222560465335846, + -0.016127264127135277, + 0.0404888316988945, + 0.003747704206034541, + 0.05266744643449783, + -0.022872399538755417, + -0.012416992336511612, + 0.045407675206661224, + -0.02494785748422146, + 0.048440154641866684, + 0.0050839148461818695, + -0.015067219734191895, + -0.01396824698895216, + -0.01634274236857891, + -0.022092999890446663, + 0.0029817901086062193, + -0.02064027637243271, + 0.004600173328071833, + -0.0180724635720253, + -0.017340848222374916, + -0.0016466894885525107, + 0.003105363342911005, + 0.004852163605391979, + 0.05592796206474304, + -0.08706687390804291, + 0.014356566593050957, + 0.002866275142878294, + 0.021786805242300034, + -0.004971167538315058, + -0.0035021002404391766, + -0.016950489953160286, + 0.0368945375084877, + 0.0020972169004380703, + 0.015111414715647697, + 0.0159761942923069, + 0.016601955518126488, + -0.0230549406260252, + 0.02370896004140377, + 0.022852417081594467, + 0.012101961299777031, + 0.02312609925866127, + -0.009796208702027798, + 0.0038354939315468073, + -0.021892709657549858, + -0.030428927391767502, + 0.007698681205511093, + 0.014128162525594234, + -0.017164960503578186, + 0.027638716623187065, + -0.0047382027842104435, + -0.004934859927743673, + -0.06868703663349152, + -0.016702884808182716, + -0.012264998629689217, + -0.005458140280097723, + 0.05251770466566086, + -0.017820334061980247, + -0.038237832486629486, + 0.00875903945416212, + 0.035781752318143845, + 0.013769342564046383, + -0.03250790759921074, + 0.06394556909799576, + 0.011247989721596241, + -0.007032226305454969, + -0.009043258614838123, + -0.0030349844601005316, + -0.014958995394408703, + 0.0002036876103375107, + 0.04076778143644333, + -0.013739585876464844, + -0.03196922317147255, + -0.012419152073562145, + -0.021720312535762787, + -0.008233139291405678, + 0.04063061624765396, + -0.013527795672416687, + 0.03839566931128502, + -0.00571912107989192, + 0.0052390992641448975, + -0.0026397635228931904, + 0.018327053636312485, + 0.019376035779714584, + 0.015908991917967796, + 0.004159614909440279, + -0.06625618785619736, + 0.04496172070503235, + -0.03508239984512329, + -0.02140495926141739, + -0.031183699145913124, + 0.011492559686303139, + -0.018577909097075462, + 0.0377877838909626, + -0.004036215133965015, + 0.03143380582332611, + -0.07058568298816681, + -0.017441457137465477, + -0.005333734210580587, + 0.0763327106833458, + -0.011068292893469334, + -0.030141765251755714, + -0.07728441059589386, + 0.025064749643206596, + -0.03133202716708183, + -0.024323845282197, + -0.04825977608561516, + -0.012042725458741188, + 0.002485554199665785, + 0.03474901616573334, + -0.04157336428761482, + -0.028138089925050735, + -0.03123592399060726, + 0.050581641495227814, + 0.014266826212406158, + 0.02618478238582611, + 0.030849944800138474, + 0.013131559826433659, + 0.026226701214909554, + -0.015433140099048615, + -0.0013917546020820737, + 0.014542143791913986, + -0.011720968410372734, + -0.003492464078590274, + 0.000798186520114541, + 0.009268836118280888, + -0.02994374930858612, + 0.019182614982128143, + 0.020107746124267578, + 0.0825103372335434, + 0.02198340930044651, + -0.03476922959089279, + -0.02981731668114662, + -0.00954620260745287, + 0.024876810610294342, + -0.02114270068705082, + -0.0014624977484345436, + 0.021158810704946518, + -0.06797508150339127, + 0.015670550987124443, + 0.0073747048154473305, + -0.02266504243016243, + 0.03231023624539375, + 0.0012672323500737548, + 0.06841211020946503, + -0.017522573471069336, + 0.010588879697024822, + -0.007217737380415201, + 0.044753801077604294, + 0.018953382968902588, + 0.04282539710402489, + 0.030349677428603172, + -0.01362029928714037, + 0.00558813801035285, + 0.04269174486398697, + -0.015704428777098656, + 0.017628638073801994, + -0.06111128628253937, + 0.007546895649284124, + 0.020451121032238007, + 0.0061771138571202755, + 0.021284379065036774, + 0.032310955226421356, + -0.04217764362692833, + -0.041548311710357666, + -0.014241164550185204, + 0.03492709621787071, + -0.012614279985427856, + 0.013822895474731922, + 0.03317886218428612, + -0.0019432302797213197, + -0.05215240269899368, + 0.020697414875030518, + -0.012431067414581776, + 0.03383611515164375, + 0.005924241617321968, + 0.040212880820035934, + 0.02388858236372471, + 0.04024703428149223, + -0.0094196991994977, + 0.014685987494885921, + 0.0006384921725839376, + -0.005526793655008078, + -0.0157998725771904, + 0.0376567542552948, + -0.031015142798423767, + 0.024330276995897293, + 0.041997481137514114, + -0.013430851511657238, + -0.0031441806349903345, + -0.005491333547979593, + -0.011730236932635307, + -0.019871341064572334, + -0.010529366321861744, + 0.010383986867964268, + -0.016930412501096725, + 0.029766643419861794, + -0.01757819764316082, + -0.012747617438435555, + -0.0537530891597271, + -0.03593120351433754, + 0.013127814047038555, + -0.015913255512714386, + 0.024176042526960373, + -0.021713275462388992, + -0.038662269711494446, + 0.04938376322388649, + 0.012363375164568424, + -0.0165792778134346, + -0.04519736021757126, + -0.03191588819026947, + -0.0066885449923574924, + 0.006344589404761791, + -0.015356761403381824, + 0.031053805723786354, + 0.03249761089682579, + 0.015126945450901985, + 0.01247471384704113, + 0.014544844627380371, + 0.018132146447896957, + -0.0018534971168264747, + 0.041458338499069214, + 0.027328476309776306, + -0.027626071125268936, + 0.008470239117741585, + 0.0029168440960347652, + 0.005478392355144024, + 0.003241744125261903, + 0.04881543293595314, + -0.009672041982412338, + -0.018254254013299942, + -0.006973976735025644, + 0.010228619910776615, + -0.04126352816820145, + -0.007401158567517996, + -0.02830483578145504, + 0.04486078768968582, + 0.015166754834353924, + 0.025864312425255775, + 0.03740810230374336, + 0.005596134811639786, + 0.0008850054000504315, + 0.024019500240683556, + -0.026319174095988274, + 0.03928745910525322, + 0.04771985486149788, + 0.014312317594885826, + -0.007183150853961706, + 0.02579641342163086, + -0.014065849594771862, + 0.01043615024536848, + 0.019041582942008972, + -0.016522163525223732, + -0.01296989805996418, + 0.025019897148013115, + 0.021964287385344505, + -0.0038076485507190228, + 0.0405433252453804, + 0.0298738032579422, + -0.03754543513059616, + 0.00031151066650636494, + -0.018301425501704216, + -0.0038318822626024485, + -0.04286682978272438, + -0.0064544337801635265, + -0.027087481692433357, + -0.0048889173194766045, + -0.03746183216571808 + ], + "start_index": 33114, + "end_index": 33317, + "token_count": 50, + "file": "avap.md" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "7306d634-12d9-59e7-931d-c9d0de055323", + "_source": { + "text": "addParam(\"client_id\", id_interno)\naddResult(id_interno)", + "embedding": [ + -0.008548670448362827, + -0.027570871636271477, + -0.012489317916333675, + -0.05047863349318504, + -0.019768126308918, + -0.07564985007047653, + -0.009984406642615795, + 0.02961793728172779, + 0.011297917924821377, + -0.00034505577059462667, + 0.049937374889850616, + -0.0005081511335447431, + -0.009984949603676796, + -0.011035876348614693, + -0.06124377250671387, + 0.032069701701402664, + -0.0070836590602993965, + 0.006027076859027147, + -0.03499941900372505, + 0.039616554975509644, + -0.009108868427574635, + 0.03871796280145645, + -0.053268857300281525, + -0.012629344128072262, + 0.038656145334243774, + 0.006144012790173292, + -0.015026581473648548, + 0.10614432394504547, + 0.055552687495946884, + -0.031155504286289215, + 0.047040410339832306, + 0.051676325500011444, + -0.03474108502268791, + 8.451240137219429e-05, + 0.003507346147671342, + -0.015267724171280861, + -0.023772628977894783, + -0.03107740916311741, + -0.037676677107810974, + 0.07519785314798355, + 0.015489710494875908, + -0.05247121676802635, + 0.07553528994321823, + -0.030610671266913414, + 0.03648991510272026, + -0.00419166125357151, + 0.002690630266442895, + 0.010111186653375626, + 0.037002887576818466, + 0.03783698379993439, + -0.05161631479859352, + -0.002057759091258049, + -0.006381835322827101, + 0.004569842014461756, + 0.009559905156493187, + -0.030414633452892303, + 0.018511150032281876, + -0.0005003586993552744, + -0.021968604996800423, + -0.01777280494570732, + -0.048250652849674225, + 0.03145104646682739, + -0.003479248145595193, + -0.0016789952060207725, + -0.01735107973217964, + 0.018422381952404976, + 0.008099636062979698, + -0.024615231901407242, + -0.05527521297335625, + -0.0024896336253732443, + -0.002955380827188492, + -0.05650583282113075, + -0.04455798119306564, + 0.048615261912345886, + 0.0016527671832591295, + -0.010768498294055462, + -0.011678656563162804, + 0.03227638825774193, + 0.006688212044537067, + -0.04479573667049408, + -0.009217284619808197, + 0.044108640402555466, + 0.02150099165737629, + 0.014914345927536488, + 0.005752174649387598, + 0.004065340384840965, + 0.01589377596974373, + 0.05806265398859978, + 0.0019272473873570561, + 0.006647891364991665, + -0.0015470113139599562, + 0.0562603734433651, + -0.04997558891773224, + 0.029199011623859406, + -0.010033066384494305, + 0.04199569299817085, + -0.013697175309062004, + 0.05575750023126602, + -0.034007761627435684, + 0.011769444681704044, + -0.024841412901878357, + 0.023434439674019814, + -0.059725962579250336, + -0.0068417880684137344, + 0.014137615449726582, + 0.04870253801345825, + -0.1115368977189064, + -0.004041085951030254, + -0.04698623716831207, + -0.014392705634236336, + -0.03620661050081253, + 0.04263852909207344, + 0.0004556444473564625, + 0.031454239040613174, + 0.02854827418923378, + 0.05192333087325096, + 0.005307098384946585, + -0.012487372383475304, + 0.02387983538210392, + -0.036724429577589035, + 0.012042895890772343, + -0.005677049979567528, + -0.02079176902770996, + -0.03961764648556709, + -0.02528887800872326, + 0.0032305268105119467, + -0.028586188331246376, + -0.015570471994578838, + 0.008106978610157967, + 0.0041575925424695015, + 0.02053348906338215, + 0.007647754158824682, + -0.04003855586051941, + -0.005495048128068447, + -0.011201601475477219, + 0.016810517758131027, + -0.04163927957415581, + -0.014204607345163822, + 0.03243345767259598, + -0.007200147490948439, + -0.03600915148854256, + -0.036633264273405075, + -0.0027157473377883434, + -0.024519124999642372, + 0.04155726730823517, + 0.016497891396284103, + -0.020371492952108383, + -0.0011635739356279373, + -0.0022665332071483135, + 0.014426639303565025, + 0.022157860919833183, + 0.025870444253087044, + 0.024912038818001747, + -0.03063737228512764, + -0.01576763018965721, + 0.0035950744058936834, + 0.010515549220144749, + -0.022900348529219627, + 0.057493481785058975, + 0.0219261534512043, + 0.013201656751334667, + -0.014525358565151691, + 0.0112945307046175, + -0.04273488000035286, + -0.05458727851510048, + 0.005890200845897198, + -0.00292879156768322, + -0.02862483635544777, + -0.005186426918953657, + 0.029866071417927742, + 0.013952110894024372, + 0.001266404869966209, + 0.004735656548291445, + -0.0020197343546897173, + -0.000803229515440762, + -0.0299837589263916, + -0.02087242528796196, + -0.02932381071150303, + 0.00443031033501029, + -0.010578298941254616, + 0.009918499737977982, + 0.0033481356222182512, + 0.009280996397137642, + 0.006212346255779266, + -0.018485045060515404, + 0.08227428048849106, + 0.007743853610008955, + 0.009578762575984001, + -0.0242041926831007, + -0.0038919115904718637, + 0.0013325714971870184, + -0.029381725937128067, + -0.015046637505292892, + -0.00023207472986541688, + 0.012742745690047741, + -0.02685667760670185, + -0.004569689277559519, + -0.012189971283078194, + 0.019579613581299782, + -0.008569158613681793, + -0.021721096709370613, + -0.031621046364307404, + 0.02622329443693161, + 0.028289534151554108, + -0.019735300913453102, + -0.025342628359794617, + 0.0220296923071146, + 0.003318921197205782, + -0.01619049534201622, + -0.01648322492837906, + -0.018638022243976593, + 0.04412741959095001, + -0.00035450098221190274, + -0.012702465057373047, + 0.0012447121553122997, + -0.00034610513830557466, + 0.014044508337974548, + 0.014976431615650654, + 0.0008865877753123641, + 0.02802657149732113, + 0.01087960135191679, + 0.025733215734362602, + 0.012053747661411762, + 0.03221224248409271, + -0.07835952192544937, + -0.04860707372426987, + 0.015161772258579731, + -0.009262178093194962, + 0.029484713450074196, + -0.006872168276458979, + 0.013783322647213936, + -0.01986624486744404, + 0.03621695563197136, + 0.04534577578306198, + 0.04549660161137581, + -0.03535910323262215, + 0.005595928989350796, + -0.0017959061078727245, + 0.01730666682124138, + -0.009420839138329029, + -0.004947743844240904, + -0.023662757128477097, + 0.013608924113214016, + 0.02453249879181385, + -0.010104170069098473, + 0.002615559846162796, + -0.03303685784339905, + 0.03052666038274765, + -0.0389595665037632, + -0.024633707478642464, + 0.04051912948489189, + -0.0019060078775510192, + 0.006035803351551294, + 0.05643986165523529, + 0.02680506557226181, + 0.009497406892478466, + 0.023397712036967278, + -0.04896921664476395, + 0.01490198727697134, + 0.01896907016634941, + 0.010394415818154812, + -0.031206833198666573, + -0.031647492200136185, + 0.015638135373592377, + -0.017635460942983627, + -0.004987632390111685, + -0.03374863415956497, + -0.02082129381597042, + -0.020929647609591484, + 0.0061674341559410095, + -0.012815785594284534, + 0.028303932398557663, + 0.011645616963505745, + 0.0009627481922507286, + 0.0047788615338504314, + 0.011181514710187912, + -0.0008815763285383582, + -0.08881479501724243, + 0.0218241885304451, + -0.0015384384896606207, + -0.03876854479312897, + 0.015243776142597198, + -0.04268020763993263, + 0.042636506259441376, + 0.015680452808737755, + 0.039103586226701736, + 0.031883303076028824, + 0.044059086591005325, + 0.012022780254483223, + 0.01457126159220934, + 0.0014542348217219114, + -0.009140778332948685, + -0.04248577728867531, + 0.009976685978472233, + 0.007209728006273508, + -0.012036922387778759, + 0.007549623027443886, + 0.030639369040727615, + 0.030630243942141533, + -0.014575017616152763, + 0.011371782049536705, + -0.023014100268483162, + -0.021489998325705528, + -0.03888745233416557, + 0.028312688693404198, + -0.021257422864437103, + 0.021697495132684708, + -0.019073834642767906, + 0.009665564633905888, + -0.0007526883855462074, + 0.0881042554974556, + -0.0035270629450678825, + 0.002050484996289015, + -0.03637847304344177, + 0.005276352632790804, + 0.024350164458155632, + -0.0691661536693573, + 0.017002979293465614, + 0.034160315990448, + 0.014699382707476616, + 0.028744030743837357, + -0.013559006154537201, + -0.0024028716143220663, + -0.0032278564758598804, + 0.014793138019740582, + 0.004461809992790222, + 0.028933687135577202, + 0.03998291492462158, + 0.032353002578020096, + 0.04867630451917648, + 0.06044255942106247, + 0.02319611981511116, + 0.017142172902822495, + -0.02896813489496708, + -0.02118688076734543, + -0.002029183553531766, + 0.034261323511600494, + 0.02446373738348484, + -0.009732098318636417, + -0.05407854542136192, + 0.018739383667707443, + 0.005593172740191221, + -0.029665915295481682, + -0.029357897117733955, + -0.022793937474489212, + -0.008897495456039906, + -0.002968252170830965, + 0.005264888051897287, + 0.04817599430680275, + -0.04538663104176521, + 0.054603222757577896, + 0.04210112243890762, + 0.01939311809837818, + -0.017223602160811424, + 0.009544317610561848, + 0.012549892999231815, + 0.00202323985286057, + 0.010375356301665306, + -0.020063241943717003, + 0.0022948156110942364, + -0.021570811048150063, + -0.019283391535282135, + -0.0011920881224796176, + 0.007389168720692396, + -0.021292850375175476, + -0.04663705453276634, + 0.00028283405117690563, + -0.033807720988988876, + 0.03272737190127373, + -0.03744271770119667, + -0.05009090527892113, + 0.05652104318141937, + 0.003709488082677126, + -0.009172293357551098, + 0.02763376012444496, + -0.01988808996975422, + 0.04569057747721672, + -0.0421854704618454, + -0.04439053311944008, + 0.015941312536597252, + 0.017853641882538795, + -0.019039925187826157, + -0.05797652527689934, + -0.039120420813560486, + -0.01991746574640274, + -0.020573165267705917, + 0.017075316980481148, + -0.04816573113203049, + 0.023656660690903664, + -0.03962947800755501, + 0.038709163665771484, + -0.005391257349401712, + 0.04111534357070923, + 0.01283325906842947, + 0.023230038583278656, + -0.009883138351142406, + -0.06333038210868835, + 0.05046534910798073, + -0.0025384777691215277, + 0.045323070138692856, + 0.017421161755919456, + -0.004987852182239294, + -0.056073952466249466, + 0.024011094123125076, + 0.014742682687938213, + -0.0020429641008377075, + 0.018608735874295235, + 0.034142326563596725, + 0.05445246025919914, + 0.02820807322859764, + 0.06999301165342331, + -0.0010943685192614794, + -0.006068813148885965, + 0.033259764313697815, + -0.0030395486392080784, + -0.028314782306551933, + 0.035874079912900925, + 0.01773090288043022, + 0.04162311181426048, + -0.002025753725320101, + 0.05244970694184303, + -0.030373364686965942, + -0.01981416717171669, + -0.05065904185175896, + -0.021333452314138412, + 0.013330052606761456, + -0.0231312345713377, + -0.06915044039487839, + -0.03965393453836441, + 0.0685761570930481, + 0.030901258811354637, + -0.0006166815874166787, + 0.0847746804356575, + -0.017018960788846016, + -0.056967977434396744, + 0.046307049691677094, + 0.027287879958748817, + 0.045027606189250946, + 0.07091542333364487, + -0.00839994102716446, + -0.013214053586125374, + 0.0886969193816185, + -0.0015321247046813369, + -0.02410695143043995, + -0.03754589334130287, + -0.015968075022101402, + 0.002740055089816451, + -0.022954626008868217, + -0.0014422115636989474, + -0.003763688262552023, + 0.011872340925037861, + -0.03758823126554489, + -0.024254562333226204, + 0.018398446962237358, + -0.009013543836772442, + -0.031621579080820084, + -0.04547761753201485, + 0.02359262853860855, + 0.022814128547906876, + -0.01955280639231205, + 0.032596830278635025, + 0.042794786393642426, + -0.0005652760737575591, + 0.04687880724668503, + 0.008130650036036968, + 0.019557872787117958, + 0.025537846609950066, + 0.019351214170455933, + 0.02985546737909317, + -0.05445947125554085, + 0.0482497364282608, + -0.0007990571320988238, + -0.0024012390058487654, + -0.023492151871323586, + 0.05430912971496582, + -0.0064662001095712185, + -0.018100865185260773, + -0.0032748777884989977, + -0.009260939434170723, + 0.018862105906009674, + -0.028221096843481064, + -0.007005673833191395, + -0.004391964990645647, + -0.05554119125008583, + 0.09608501195907593, + -0.01536063477396965, + 0.02248593606054783, + 0.014008897356688976, + 0.017628947272896767, + -0.013108521699905396, + 0.003909653052687645, + 0.0954594612121582, + 0.018508652225136757, + -0.02558722160756588, + 0.026455048471689224, + -0.05115436762571335, + -0.03275344520807266, + -0.03682897612452507, + -0.006982855033129454, + 0.0020187143236398697, + 0.0004844256618525833, + -0.004162143915891647, + 0.03844635188579559, + 0.01565038599073887, + -0.037767261266708374, + -0.011342426761984825, + -0.019562795758247375, + -0.037849560379981995, + 0.021788226440548897, + -0.017936890944838524, + 0.02712804451584816, + -0.01010840479284525, + -0.03043524920940399, + 0.012505105696618557, + -0.06603888422250748, + 0.03727538138628006, + 0.005237595643848181, + 0.0068645174615085125, + -0.05049420893192291, + 0.022427039220929146, + 0.006587398704141378, + -0.029874522238969803, + 0.023356415331363678, + -0.05356292426586151, + 0.03420809656381607, + 0.025539273396134377, + -0.016309671103954315, + 0.02609676495194435, + -0.011889026500284672, + 0.02948864921927452, + 0.03169593960046768, + 0.056168921291828156, + -0.0013916169991716743, + 0.0032776976004242897, + -0.038439273834228516, + -0.02011997438967228, + -0.011600354686379433, + -0.01077305804938078, + 0.0031759757548570633, + 0.026430154219269753, + 0.013801849447190762, + -0.041524797677993774, + -0.04944709315896034, + -0.019494088366627693, + -0.022425537928938866, + -0.008444258011877537, + 0.0011659304145723581, + -0.009404701180756092, + 0.044109974056482315, + -0.013377909548580647, + 0.05869091674685478, + 0.0361609011888504, + 0.036948010325431824, + -0.04012530297040939, + 0.028062742203474045, + -0.04384983703494072, + 0.018732137978076935, + 0.08185789734125137, + 0.03359527885913849, + -0.02403792180120945, + 0.015212743543088436, + 0.01011584885418415, + -0.01589048095047474, + 0.01742963306605816, + 0.06132389232516289, + -0.00619099335744977, + 0.006031552795320749, + -0.011689337901771069, + 0.044432081282138824, + -0.008082481101155281, + 0.04806644469499588, + -0.0020608699414879084, + -0.002576093655079603, + -0.00420320313423872, + 0.03199578821659088, + -0.056999970227479935, + -0.03130701184272766, + 0.04196738824248314, + 0.027741776779294014, + -0.02736332081258297, + 0.037336189299821854, + 0.030745316296815872, + -0.003637573914602399, + 0.017531123012304306, + -0.0003336210211273283, + -0.017599457874894142, + -0.02451084554195404, + 0.03463807702064514, + -0.018165679648518562, + -0.05165858939290047, + 0.014808197505772114, + -0.04718749225139618, + 0.03569512441754341, + 0.006163629703223705, + 0.08022543042898178, + 0.018252817913889885, + -0.0814034566283226, + 0.03141790255904198, + 0.02368008717894554, + -0.014038153924047947, + 0.046615246683359146, + 0.03721361607313156, + -0.0032472298480570316, + -0.015254450961947441, + -0.02262115478515625, + 0.01898990198969841, + -0.0033195074647665024, + 0.05195801332592964, + 0.019770165905356407, + 0.036820411682128906, + -0.021948566660284996, + -0.0004671532951761037, + -0.03818389028310776, + -0.01190024521201849, + -0.01558908261358738, + -0.012689082883298397, + -0.03516227751970291, + 0.016657039523124695, + -0.053527358919382095, + -0.028429977595806122, + -0.02668137475848198, + -0.05491308122873306, + 0.001877248054370284, + 0.05844765156507492, + -0.016797605901956558, + 3.180378917022608e-05, + 0.011192763224244118, + 0.0002492616476956755, + -0.02309197001159191, + -0.004542678128927946, + -0.041424453258514404, + -0.040703218430280685, + -0.041207682341337204, + -0.012324504554271698, + 0.012270307168364525, + 0.004989171400666237, + -0.02017275057733059, + -0.01692105084657669, + -0.02843629941344261, + -0.040275562554597855, + 0.026029232889413834, + -0.013281823135912418, + 0.06546440720558167, + -0.006100194528698921, + -0.028756238520145416, + 0.017286863178014755, + 0.02774573303759098, + 0.016637641936540604, + 0.026530956849455833, + 0.004593751858919859, + 0.04816175624728203, + -0.010264384560286999, + 0.032489825040102005, + 0.03729899972677231, + 0.002873410703614354, + 0.054532747715711594, + -0.020586742088198662, + 0.05790899321436882, + -0.0026392736472189426, + 0.012562422081828117, + -0.023265883326530457, + -0.05843702703714371, + 0.056097935885190964, + -0.03425529971718788, + -0.05291672796010971, + -0.03730812668800354, + -0.00018159393221139908, + 0.02028237096965313, + 0.05662374943494797, + 0.014915014617145061, + -0.013547539710998535, + -0.0585193894803524, + -0.02246338501572609, + 0.027119871228933334, + -0.045776091516017914, + 0.011389967054128647, + -0.027028964832425117, + -0.014112616889178753, + 0.025568794459104538, + -0.016689235344529152, + -0.021477287635207176, + -0.0021762740798294544, + 0.019350161775946617, + -0.007832864299416542, + 0.014061791822314262, + -0.029265347868204117, + -0.023307131603360176, + 0.041300732642412186, + -0.009828992187976837, + -0.004436396062374115, + -0.011073213070631027, + -0.05046961456537247, + 0.02428843267261982, + -0.01178208738565445, + 0.06856124103069305, + 0.012063566595315933, + 0.02445831522345543, + 0.02835565246641636, + -0.007726000156253576, + 0.019761277362704277, + 0.0174605343490839, + 0.02085084095597267, + 0.021067922934889793, + -0.01936706341803074, + -0.007216238416731358, + -0.029163310304284096, + -0.04807696118950844, + -0.012739613652229309, + -0.023664021864533424, + -0.029438462108373642, + 0.02540026232600212, + -0.003191615454852581, + -0.03717673569917679, + -0.021909253671765327, + 0.03941868990659714, + 0.00910218432545662, + -0.017582695931196213, + 0.025265779346227646, + 0.03477563336491585, + -0.012694683857262135, + -0.009028422646224499, + -0.04620906710624695, + 0.008708322420716286, + 0.019472718238830566, + 0.007732158526778221, + -0.02910267934203148, + 0.04153968021273613, + 0.027003979310393333, + 0.0354558564722538, + 0.027785997837781906, + -0.0032812056597322226, + 0.012488655745983124, + -0.00807518046349287, + -0.02043916843831539, + 0.014196113683283329, + -0.028527596965432167, + 0.06167125329375267, + -0.0034425293561071157, + 0.015832629054784775, + -0.0099160335958004, + 0.04361046850681305, + -0.006964126136153936, + -0.022762317210435867, + -0.0472990907728672, + 0.01712658442556858, + 0.011502627283334732, + -0.016486087813973427, + -0.008181956596672535, + -0.010696721263229847, + -0.04576265439391136, + 0.0014269539387896657, + -0.04909966140985489, + 0.0011245739879086614, + 0.05769054964184761, + 0.02644183486700058, + -0.024369006976485252, + -0.035267677158117294, + 0.05083594471216202, + -0.04677360877394676, + 0.062448304146528244, + -0.009771078824996948, + -0.014799926429986954, + 0.012233681045472622, + 0.034778397530317307, + 0.018622741103172302, + 0.002549137454479933, + 0.030917244032025337, + -0.02764067053794861, + -0.03380772843956947, + -0.022360196337103844, + 0.017762675881385803, + -0.04308241233229637, + -0.01858915202319622, + 0.046386294066905975, + -0.016701562330126762, + -0.01523145567625761, + 0.005530410446226597, + -0.050306741148233414, + -0.05596175417304039, + 0.01679467223584652, + -0.0029233847744762897, + -0.02636854164302349, + 0.015806222334504128, + 0.034385841339826584, + -0.018152466043829918, + 0.04217030107975006, + 0.026857366785407066, + 0.014626638032495975, + 0.020633326843380928, + 0.019272197037935257, + 0.0046296678483486176, + 0.0029725192580372095, + -0.022979844361543655, + 0.0629740059375763, + 0.002030884614214301, + 0.011009053327143192, + -0.01291973702609539, + 0.049179669469594955, + -0.05828407034277916, + 0.0012540628667920828, + -0.010787648148834705, + 0.06770005077123642, + -0.0048115914687514305, + -0.043688736855983734, + 0.10803165286779404, + -0.011903930455446243, + -0.03205437213182449, + -0.0053927660919725895, + -0.043971095234155655, + -0.016209883615374565, + 0.022318772971630096, + 0.018318528309464455, + -0.03941825032234192, + 0.011673709377646446, + 0.011456337757408619, + 0.07402218878269196, + -0.03376122936606407, + 0.01573267951607704, + -0.06683817505836487, + 0.011487250216305256, + 0.016829347237944603, + 0.05149082466959953, + 0.013376405462622643, + -0.011106197722256184, + 0.0022346682380884886, + 0.062397025525569916, + 0.014770257286727428, + 0.018577493727207184, + -0.0687897801399231, + 0.03243623673915863, + -0.001879796851426363, + 0.006286239717155695, + -0.0058180843479931355, + 0.013585856184363365, + 0.04388151690363884, + -0.04993681237101555, + 0.009137164801359177, + -0.0016032931162044406, + -0.01337154395878315, + 0.034657057374715805, + 0.04086584970355034, + -0.020453691482543945, + 0.006557000335305929, + -0.029664011672139168, + -0.01979139633476734, + 0.01532896887511015, + 0.012340872548520565, + 0.00537021504715085, + 0.018732888624072075, + -0.010014909319579601, + -0.0027369761373847723, + 0.05396023020148277, + -0.0005536242388188839, + -0.003153778612613678, + -0.027017343789339066, + 0.018034067004919052, + 0.014989670366048813, + 0.033299654722213745, + -0.05034361034631729, + 0.03882922604680061, + 0.020492328330874443, + -0.023455437272787094, + -0.04009360820055008, + -0.026887910440564156, + -0.04196484759449959, + 0.07788825780153275, + -0.010853365063667297, + 0.002726269420236349, + 0.003300552489235997, + -0.007850995287299156, + 0.048299890011548996, + -0.004713495261967182, + -0.03655717521905899, + 0.04004369303584099, + -0.045743945986032486, + 0.0349944643676281, + -0.07484427839517593, + 0.010924444533884525, + 0.015206563286483288, + 0.056298062205314636, + -0.014447048306465149, + 0.04301154240965843, + 0.0032506759744137526, + 0.01093369536101818, + -0.02040167711675167, + 0.03401416540145874, + 0.004427339415997267, + 0.02984624356031418, + -0.023325655609369278, + -0.05613595247268677, + 0.02342846803367138, + -0.042002640664577484, + -0.019501257687807083, + -0.015181578695774078, + -0.0578947588801384, + -0.0218910351395607, + 0.030133625492453575, + 0.013003085739910603, + 0.012513087131083012, + 0.016592495143413544, + 0.019686376675963402, + 0.0031834992114454508, + 0.01074571255594492, + -0.02615373581647873, + 0.008604854345321655, + -0.04607595130801201, + 0.053289223462343216, + -0.0032212038058787584, + 0.028981342911720276, + 0.009025225415825844, + -0.07147723436355591, + 0.03966674953699112, + 0.05915224179625511, + -0.011459543369710445, + -0.0007614298374392092, + -0.02791639417409897, + -0.0544247105717659, + -0.02594936266541481, + -0.032797567546367645, + -0.006087469402700663, + -0.00019539824279490858, + -0.011915409006178379, + -0.0096668042242527, + 0.016942957416176796, + -0.019203485921025276, + -0.044946666806936264, + -0.03916533291339874, + 0.0172561164945364, + 0.014129796996712685, + 0.036533866077661514, + 0.033206403255462646, + 0.05319960042834282, + 0.03687626123428345, + 0.06454095989465714, + 0.0026608817279338837, + -0.04888228327035904, + 0.045954495668411255, + -0.004584525246173143, + 0.014171411283314228, + -0.013902455568313599, + -0.011760196648538113, + -0.06611914932727814, + 0.023042678833007812, + -0.010713244788348675, + -0.008920853957533836, + 0.012939725071191788, + 0.002410121960565448, + -0.040782246738672256, + 0.03127748891711235, + 0.047572169452905655, + -0.0012816464295610785, + 2.2223981432034634e-05, + 0.01531079038977623, + 0.0012471043737605214, + 0.0051429602317512035, + -0.013797019608318806, + 0.0033029154874384403, + 0.05126257240772247, + -0.027969539165496826, + -0.04884281009435654, + -0.0027129435911774635, + -0.0044188713654875755, + 0.006793513894081116, + -0.0005147074698470533, + 0.10532651841640472, + -0.012165031395852566, + -0.037028539925813675, + -0.013646455481648445, + -0.022867605090141296, + -0.0028449855744838715, + -0.0060455393977463245, + -0.025735972449183464, + -0.038771647959947586, + 0.010427990928292274, + 0.03379128500819206, + 0.06303096562623978, + -0.01796705834567547, + -0.006036730483174324, + 0.017695695161819458, + 0.03599008917808533, + -0.04650038108229637, + 0.02383039891719818, + 0.06894875317811966, + 0.02421841397881508, + -0.03263310715556145, + -0.003266980405896902, + 0.03954791650176048, + -0.0038654569070786238, + -0.04672998562455177, + -0.02402183786034584, + 0.007181101478636265, + -0.0001732330274535343, + 0.018326958641409874, + -0.04143456742167473, + 0.019979605451226234, + 0.06417424976825714, + -0.027744518592953682, + 0.03533937782049179, + 0.02036808244884014, + -0.002308684168383479, + -0.00463565019890666, + -0.018306734040379524, + -0.01751329004764557, + -0.02099647745490074, + -0.013421631418168545, + 0.015227456577122211, + 0.014249630272388458, + -0.030368756502866745, + -0.039183929562568665, + -0.002634401200339198, + 0.005126998759806156, + -0.016774846240878105, + 0.02389681711792946, + 0.014326137490570545, + 0.05001438409090042, + -0.009989899583160877, + -0.030958030372858047, + -0.02847878448665142, + 0.0420646071434021, + -0.0364830419421196, + -0.017068292945623398, + -0.022738898172974586, + 0.04010419547557831, + -0.0225907564163208 + ], + "start_index": 0, + "end_index": 55, + "token_count": 16, + "file": "captura_de_id.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "6d3fa42f-5ae0-5366-bbb7-87ca9d47ef86", + "_source": { + "text": "ormCheckTable(tabla_pruebas,resultado_comprobacion)\nif(resultado_comprobacion,False,'==')\n ormCreateTable(\"username,age\",'VARCHAR,INTEGER',tabla_pruebas,resultado_creacion)\nend()\naddResult(resultado_comprobacion)\naddResult(resultado_creacion)", + "embedding": [ + -0.01738756336271763, + -0.05243506655097008, + -0.010464324615895748, + -0.022680481895804405, + 0.02250060997903347, + 0.03926528990268707, + 0.010027088224887848, + 0.02079734019935131, + -0.013715744018554688, + -0.012813826091587543, + -0.04994118958711624, + -0.07606396079063416, + 0.07462742924690247, + -0.009110445156693459, + -0.02628037892282009, + 0.06547093391418457, + -0.018017137423157692, + -0.012040731497108936, + 0.00798589363694191, + 0.02115560509264469, + 0.02900080569088459, + 0.026083139702677727, + 0.02233053557574749, + 0.012643299996852875, + 0.022149451076984406, + -0.008934632875025272, + -0.0762937068939209, + 0.047538820654153824, + -0.0012173191644251347, + -0.046730801463127136, + 0.030924184247851372, + 0.005357333458960056, + -0.0707341656088829, + -0.058593615889549255, + 0.03513633832335472, + -0.012063886970281601, + -0.04159965738654137, + -0.016333410516381264, + -0.006009599193930626, + -0.015329167246818542, + 0.02800174057483673, + 0.027986276894807816, + 0.0492234081029892, + -0.00509269256144762, + 0.03069460578262806, + 0.008146451786160469, + 0.07206559926271439, + -0.011638370342552662, + 0.04128921404480934, + 0.008115754462778568, + -0.013311777263879776, + 0.06433698534965515, + -0.03813368082046509, + 0.044916048645973206, + -0.016544297337532043, + -0.026995716616511345, + 0.05467693880200386, + -0.046072497963905334, + 0.004224947188049555, + 0.009556058794260025, + -0.02194846421480179, + 0.018394706770777702, + 0.04658373445272446, + -0.03734713792800903, + -0.01723572611808777, + -0.020104529336094856, + 0.022340886294841766, + -0.03839413821697235, + -0.08405227959156036, + -0.01322177890688181, + 0.016898801550269127, + -0.02596832625567913, + -0.02541978843510151, + 0.005367843899875879, + -0.01855916529893875, + 0.05973516032099724, + 0.019771629944443703, + -0.03161265701055527, + -0.0056061092764139175, + 0.00812037568539381, + -0.009850161150097847, + -0.01691809855401516, + 0.007970071397721767, + -0.04117611050605774, + 0.02443350851535797, + 0.021803291514515877, + -0.034786157310009, + -0.016837775707244873, + 0.007760103791952133, + -0.0013498514890670776, + -0.028562914580106735, + 0.011886406689882278, + -0.0702347606420517, + 0.02502921037375927, + 0.015249071642756462, + -0.005234094336628914, + 0.018803276121616364, + 0.0065898955799639225, + -0.018700234591960907, + 0.004666501190513372, + -0.04449881985783577, + -0.02413690648972988, + 0.05187029764056206, + 0.017148807644844055, + -0.02041441574692726, + 0.018128814175724983, + -0.05470043793320656, + 0.03421466425061226, + 0.024885814636945724, + -0.03990798071026802, + 0.041693348437547684, + 0.01888102851808071, + -0.019822556525468826, + 0.030958309769630432, + -0.022239618003368378, + 0.014443165622651577, + -0.03200003504753113, + 0.01268079038709402, + -0.005949143320322037, + 0.006616476457566023, + -0.03375094756484032, + 0.0014784673694521189, + -0.02460765838623047, + -0.023388536646962166, + -0.015458617359399796, + 0.013044798746705055, + -0.02069500833749771, + 0.022663433104753494, + -0.010948716662824154, + -0.024731114506721497, + 0.022025562822818756, + 0.037838760763406754, + -0.036132700741291046, + 0.054613929241895676, + 0.022536858916282654, + 0.013465196825563908, + -0.019312240183353424, + 0.005177805665880442, + 0.0322367362678051, + 0.005109249614179134, + 0.035762421786785126, + -0.010695979930460453, + 0.03879508003592491, + -0.004705175757408142, + 0.0002837248030118644, + 0.03076300583779812, + -0.005309987347573042, + 0.006440488155931234, + -0.004251334350556135, + -0.02079773135483265, + -0.0047431825660169125, + -0.0245130006223917, + 0.010532437823712826, + -0.012668364681303501, + 0.004590759985148907, + 0.03770298510789871, + 0.01386524923145771, + -0.005433301441371441, + 0.009595246985554695, + 0.01733732782304287, + -0.00490050483494997, + -0.02428380399942398, + 0.016698481515049934, + -0.028777576982975006, + -0.006825375836342573, + -0.025835687294602394, + -0.018347391858696938, + -0.07205170392990112, + -0.03647344559431076, + -0.03493267297744751, + 0.017075955867767334, + 0.007389137987047434, + -0.0024355598725378513, + 0.025282813236117363, + -0.013429127633571625, + -0.017090734094381332, + -0.012107377871870995, + -0.03512512892484665, + -0.005142026115208864, + -0.014061346650123596, + 0.01503799669444561, + -0.013468137942254543, + -0.009211615659296513, + 0.03450325131416321, + -0.0005634671542793512, + 0.07148837298154831, + 0.003117047483101487, + -0.0142933065071702, + -0.031254980713129044, + -0.061649587005376816, + 0.027763744816184044, + 0.0222898218780756, + -0.022080300375819206, + 0.011728931218385696, + -0.021751904860138893, + -0.023699097335338593, + 0.03992407023906708, + -0.013106622733175755, + -0.0016120593063533306, + 0.017987864091992378, + 0.019209034740924835, + -0.03632692992687225, + -0.024845736101269722, + 0.029224487021565437, + 0.013226039707660675, + 0.021605227142572403, + 0.02045043185353279, + 0.00528462789952755, + -0.0129875298589468, + -0.021719973534345627, + -0.0009674577740952373, + 0.03545614704489708, + 0.018431376665830612, + -0.04222088307142258, + -0.006681833416223526, + -0.020068135112524033, + 0.009818156249821186, + -0.004471811465919018, + -0.02025592140853405, + -0.0071684494614601135, + 0.038199540227651596, + 0.022951487451791763, + -0.0735662505030632, + 0.005223761312663555, + -0.05871576443314552, + -0.030787542462348938, + -0.007785052992403507, + -0.007785158231854439, + -0.00908337626606226, + 0.027906566858291626, + 0.021510479971766472, + 0.01197430957108736, + -0.034174151718616486, + -0.024223340675234795, + 0.01311482209712267, + -0.02087198942899704, + -0.0005797481280751526, + 0.03587821498513222, + 0.04649655148386955, + 0.04549076780676842, + 0.005179266911000013, + 0.011951254680752754, + 0.03175368532538414, + 0.007416632492095232, + -0.0413503535091877, + 0.01688319258391857, + -0.012844648212194443, + 0.03316766768693924, + -0.0033093770034611225, + 0.012455000542104244, + -0.026419514790177345, + -0.005074324551969767, + 0.0014407866401597857, + 0.10691585391759872, + 0.04017520323395729, + -0.03928754851222038, + -0.0019056984456256032, + -0.010140877217054367, + 0.006251454818993807, + 0.004013179801404476, + -0.002654313575476408, + -0.032189253717660904, + -0.035301096737384796, + 0.012386039830744267, + -0.002377554541453719, + -0.008303950540721416, + -0.015906745567917824, + -0.024238567799329758, + -0.003135447856038809, + -0.032915618270635605, + -0.008523855358362198, + 0.0009019100689329207, + -0.02293200045824051, + -0.028206810355186462, + -0.020223567262291908, + -0.031027987599372864, + 0.007989905774593353, + -0.039072487503290176, + 0.018371369689702988, + -0.028925849124789238, + 0.031957145780324936, + 0.01778414286673069, + -0.040993791073560715, + -0.0986284613609314, + -0.012033501639962196, + 0.022189419716596603, + 0.016719983890652657, + 0.0062357583083212376, + -0.006233687046915293, + 0.02211325243115425, + -0.010475991293787956, + 0.03802432864904404, + -0.05437976121902466, + 0.08039611577987671, + -0.023491812869906425, + -0.027951456606388092, + -0.048692043870687485, + 0.019133923575282097, + -0.030750904232263565, + -0.0077040595933794975, + 0.038345757871866226, + 0.0023275958374142647, + 0.03261326253414154, + -0.01592964306473732, + -0.054739173501729965, + 0.004646657034754753, + 0.02230403572320938, + 0.0018978487933054566, + -0.00022563319362234324, + -0.018376773223280907, + -0.0008433341863565147, + 0.011910784058272839, + -0.002611916046589613, + -0.008472277782857418, + -0.007844289764761925, + -0.025841766968369484, + -0.06045660004019737, + 0.016579274088144302, + 0.05188645422458649, + 0.07002723217010498, + 0.006049991585314274, + -0.0007943990058265626, + -0.010824558325111866, + 0.01570199802517891, + 0.025469403713941574, + 0.006990187801420689, + -0.0410873219370842, + 0.028209280222654343, + -0.026444436982274055, + 0.03442419320344925, + 0.0471053384244442, + 0.04146333783864975, + 0.09125533699989319, + 0.0006656877230852842, + -0.03579268977046013, + 0.04083073511719704, + -0.05904930830001831, + 0.033000648021698, + 0.009761354885995388, + 0.02242851071059704, + 0.039858780801296234, + -0.006900566630065441, + -0.006689577829092741, + 0.04884378984570503, + -0.020385900512337685, + -0.011359073221683502, + -0.03902839124202728, + -0.00972852110862732, + -0.014046653173863888, + 0.03910773620009422, + 0.031058872118592262, + 0.03961636498570442, + -0.0020593993831425905, + -0.026427410542964935, + -0.006765906699001789, + 0.020228391513228416, + 0.0021042937878519297, + 0.010149874724447727, + -0.004360576160252094, + 0.006861160043627024, + -0.05744354799389839, + 0.0010114951292052865, + 0.08555792272090912, + -0.03273846209049225, + -0.02787056937813759, + -0.04842563346028328, + -0.013785297982394695, + -0.058193281292915344, + -0.0010817729635164142, + -0.036104749888181686, + -0.09310614317655563, + -0.08465353399515152, + -0.01861993968486786, + 0.02014002948999405, + 0.030765488743782043, + 0.04680931940674782, + 0.035563305020332336, + 0.052197858691215515, + -0.01236809603869915, + 0.02513548918068409, + 0.019338170066475868, + 0.049979597330093384, + -0.06110382080078125, + -0.018222570419311523, + -0.049175359308719635, + -0.023520464077591896, + 0.01233450323343277, + -0.08600036799907684, + 0.0003382328723091632, + 0.01581611856818199, + 0.022663025185465813, + 0.014310885220766068, + 0.001807053224183619, + 0.02177243120968342, + 0.05330337584018707, + 0.03246597200632095, + -0.04793219640851021, + 0.02410547062754631, + -0.022783054038882256, + 0.032257795333862305, + -0.007241324987262487, + 0.028078408911824226, + -0.010339569300413132, + 0.002770736115053296, + -0.009345022961497307, + -0.026351677253842354, + -0.00043308603926561773, + -0.01959117501974106, + 0.025273453444242477, + 0.030577795580029488, + 0.06476426124572754, + 0.010239931754767895, + -0.010295878164470196, + -0.006948154419660568, + -0.007079066708683968, + 0.009148135781288147, + 0.04124300554394722, + -0.05045532062649727, + 0.002082018880173564, + -0.04062797501683235, + -0.02144845947623253, + 0.022154822945594788, + -0.0421602725982666, + -0.07183452695608139, + -0.009250471368432045, + -0.010587970726191998, + -0.02860611490905285, + -0.04544932767748833, + 0.0259072445333004, + 0.05634672939777374, + -0.011814659461379051, + -0.03220685198903084, + 0.018083766102790833, + 0.03238821402192116, + 0.0023992767091840506, + 0.026855135336518288, + 0.03062467835843563, + 0.028137316927313805, + -0.02057657390832901, + -0.018982049077749252, + -0.020243218168616295, + 0.0031533031724393368, + 0.029784537851810455, + 0.0045367395505309105, + -0.027861839160323143, + 0.01031266339123249, + -0.05791202187538147, + -0.021389935165643692, + 0.0065115271136164665, + -0.04009443521499634, + -0.062181420624256134, + -0.022978007793426514, + -0.013840709812939167, + -0.013410469517111778, + -0.023374879732728004, + 0.0007434876170009375, + -0.011059718206524849, + 0.025430044159293175, + 0.012000932358205318, + -0.0021432063076645136, + 0.02080432139337063, + 0.03435102850198746, + 0.06221526861190796, + -0.000543668051250279, + 0.004984651226550341, + 0.00658359844237566, + -0.004486875608563423, + -0.008957345969974995, + 0.009509026072919369, + -0.0003339533577673137, + 0.03375483304262161, + 0.029776306822896004, + -0.016763346269726753, + -0.011986415833234787, + 0.010307895950973034, + 0.02511034905910492, + -0.06854810565710068, + -0.08645717054605484, + -0.04844258725643158, + 0.03093189187347889, + 0.018068252131342888, + 0.006297636777162552, + -0.028884954750537872, + -0.007383266929537058, + 0.03673228621482849, + -0.029061151668429375, + -0.048078179359436035, + 0.02190486341714859, + 0.008770646527409554, + 0.045156653970479965, + 0.03785013407468796, + 0.05730164423584938, + -0.02749236673116684, + -0.0666271522641182, + -0.009637854062020779, + -0.048798151314258575, + 0.006852980237454176, + -0.07543051242828369, + -0.03779981657862663, + 0.01689535565674305, + 0.06498398631811142, + 0.060358643531799316, + 0.012448797933757305, + -0.0005666069337166846, + 0.002457291353493929, + 0.004843434784561396, + -0.007484822068363428, + -0.07074440270662308, + -0.018795279785990715, + 0.020299984142184258, + 0.017793908715248108, + 0.023432297632098198, + 0.02737954817712307, + -0.008663253858685493, + -0.03294725716114044, + 0.005487808492034674, + 0.015860410407185555, + -0.026542184874415398, + -0.03789333254098892, + 0.05367632582783699, + 0.033992085605859756, + 0.04039410129189491, + -0.0002631563984323293, + 0.0022586507257074118, + 0.01843998022377491, + -0.032873522490262985, + 0.03399401903152466, + -0.03610607981681824, + -0.057825274765491486, + 0.020788781344890594, + 0.0011109363986179233, + -0.010214591398835182, + -0.0180786345154047, + 0.010772709734737873, + 0.020343372598290443, + 0.03142894431948662, + -0.039737604558467865, + -0.04577450081706047, + 0.00041183785651810467, + 0.03759231045842171, + 0.00928892195224762, + 0.00409123208373785, + -0.025580845773220062, + -0.006910649128258228, + 0.0007482018554583192, + 0.03929834067821503, + 0.0026225277688354254, + 0.013476596213877201, + -0.018956486135721207, + 0.009643533267080784, + 0.03457469120621681, + -0.046762626618146896, + 0.06116325408220291, + -0.00660917442291975, + 0.004596719518303871, + -0.04528481885790825, + -0.023938467726111412, + 0.05172204226255417, + 0.07949350774288177, + -0.02190648950636387, + 0.05381271243095398, + 0.007495727390050888, + -0.020698588341474533, + -0.02853390760719776, + 0.04734412580728531, + -0.01140245608985424, + 0.010748730972409248, + -0.022201139479875565, + 0.03858249634504318, + -0.02638408914208412, + 0.017042579129338264, + -0.008552118204534054, + 0.052983608096838, + 0.033052168786525726, + -0.04370139539241791, + -0.026213759556412697, + -0.04016553983092308, + -0.0057665198110044, + 0.018857985734939575, + -0.008904755115509033, + 0.04120466858148575, + 0.014276000671088696, + -0.03049340657889843, + 0.011594663374125957, + 0.004827966447919607, + 0.02777239866554737, + 0.03223268687725067, + -0.003688013879582286, + -0.015756815671920776, + 0.018484167754650116, + -0.03519010916352272, + -0.029670527204871178, + -0.011758587323129177, + -0.008602213114500046, + 0.0569286048412323, + -0.02955239824950695, + -0.021724240854382515, + -0.0030211694538593292, + -0.005352397914975882, + -0.056887757033109665, + 0.026987314224243164, + 0.05335129424929619, + 0.0024418525863438845, + 0.01823897287249565, + -0.023292962461709976, + -0.01455475203692913, + -0.028798051178455353, + 0.028181126341223717, + 0.018521679565310478, + 0.029254745692014694, + -0.01267845556139946, + 0.051781538873910904, + -0.012771174311637878, + 0.022706519812345505, + 0.036251019686460495, + -0.034992631524801254, + -0.027149220928549767, + -0.03126782923936844, + 0.035560447722673416, + -0.036300670355558395, + -0.02684062346816063, + 0.004508433397859335, + -0.03244590014219284, + 0.04208763316273689, + -0.03722744435071945, + 0.0673416405916214, + 0.014266390353441238, + -0.05998245254158974, + -0.055194273591041565, + -0.04779598489403725, + -0.01923605240881443, + -0.005603749770671129, + -0.00470864400267601, + -0.016756592318415642, + 0.020608898252248764, + 0.04885420948266983, + -0.04179538041353226, + -0.023473704233765602, + 0.0012299958616495132, + -0.020893288776278496, + 0.010090178810060024, + -0.0314481183886528, + 0.02164013683795929, + -0.013236705213785172, + 0.03844998776912689, + -0.024974239990115166, + 0.029861116781830788, + 0.033000219613313675, + 0.03855999559164047, + -0.014977805316448212, + 0.024518810212612152, + -0.01582006923854351, + 0.052577871829271317, + 0.035849619656801224, + 0.010993476957082748, + -0.015667516738176346, + 0.039013683795928955, + 0.00693791126832366, + -0.008188369683921337, + 0.004165512975305319, + 0.010387701913714409, + -0.023184139281511307, + -0.025957999750971794, + -0.048149168491363525, + -0.060643404722213745, + 0.007142737042158842, + 0.07441069185733795, + -0.01370250154286623, + -0.01273786835372448, + -0.03778163343667984, + -0.03850700333714485, + -0.003347415244206786, + -0.013643338344991207, + 0.011872143484652042, + 0.019501984119415283, + 0.01691039651632309, + 0.05966484546661377, + -0.0035618762485682964, + -0.05399753525853157, + -0.042275868356227875, + -0.027999714016914368, + -0.000732906861230731, + -0.026220474392175674, + -0.009175884537398815, + -0.039941124618053436, + 0.038431327790021896, + -0.057638607919216156, + -0.006442893296480179, + 0.028525356203317642, + -0.03687603399157524, + 0.01781858317553997, + -0.018257873132824898, + 0.010694744065403938, + -0.009419689886271954, + 0.001524776453152299, + -0.008980592712759972, + -0.014237772673368454, + -0.013661650940775871, + -0.0012504563201218843, + 0.015904953703284264, + -0.03680400177836418, + 0.017318163067102432, + -0.03713778406381607, + 0.02500196360051632, + -0.01013985462486744, + -0.025065317749977112, + 0.0006713812472298741, + 0.02676568180322647, + -0.030176673084497452, + -0.032359156757593155, + -0.03279605135321617, + 0.037964604794979095, + -0.0005901044351048768, + -0.02132863737642765, + -0.026671795174479485, + 0.010406045243144035, + 0.006156640592962503, + 0.0083580007776618, + -0.017729168757796288, + 0.0002550362260080874, + -0.01933753862977028, + -0.08246030658483505, + 0.008310874924063683, + 0.01120303850620985, + -0.05407630652189255, + -0.023264437913894653, + 0.0068490696139633656, + -0.020857321098446846, + 0.0276101753115654, + -0.020042214542627335, + 0.01123903039842844, + -0.020660564303398132, + 0.02233465388417244, + 0.006234700325876474, + 0.056152306497097015, + -0.017758168280124664, + 0.04499867558479309, + 0.0002696251613087952, + -0.03500379994511604, + -0.02238330990076065, + 0.05017611384391785, + -0.05747446045279503, + -0.01141944620758295, + 0.009988164529204369, + -0.004763017408549786, + -0.011031105183064938, + -0.04470786452293396, + 0.02562764100730419, + -0.003150144126266241, + -0.04507766291499138, + -0.028806105256080627, + -0.04156195744872093, + -0.0051493337377905846, + -0.008715059608221054, + -0.03558817878365517, + -0.0274511706084013, + -0.018601069226861, + 0.04392028972506523, + -0.013773137703537941, + 0.027964547276496887, + 0.016472216695547104, + 0.017635200172662735, + -0.06209771707653999, + -0.02170555107295513, + 0.01604403741657734, + -0.03510528802871704, + 0.047185659408569336, + -0.031613294035196304, + 0.05223473161458969, + -0.012364959344267845, + 0.021444158628582954, + 0.004443841520696878, + -0.037537913769483566, + 0.07877214252948761, + 0.03054301254451275, + 0.02313670702278614, + 0.0017687776125967503, + 0.013797961175441742, + 0.029543185606598854, + 0.010417614132165909, + 0.027534153312444687, + -0.02357497811317444, + 0.04953174665570259, + -0.004116690251976252, + -0.03706691414117813, + 0.06540129333734512, + 0.03555012866854668, + -0.019452698528766632, + 0.04175577312707901, + 0.025011258199810982, + -0.03361845389008522, + 0.003399334382265806, + -0.026487555354833603, + -0.013997817412018776, + -0.03327663242816925, + -0.0045593371614813805, + -0.03643742576241493, + 0.040836408734321594, + -0.027942746877670288, + 0.010493920184671879, + -0.04437727481126785, + 0.06134992092847824, + -0.010216581635177135, + 0.014293361455202103, + 0.07392444461584091, + 0.03707252815365791, + 0.01993284747004509, + -0.0037625052500516176, + -0.047769978642463684, + -0.0335138738155365, + 0.007238919381052256, + 0.0428696870803833, + -0.016976943239569664, + 0.022759145125746727, + 0.016110291704535484, + 0.0336066335439682, + -0.006265447475016117, + -0.04665007069706917, + 0.010393927805125713, + -0.03589974716305733, + -0.030989769846200943, + 0.027815988287329674, + 0.0016656754305586219, + 0.0089578153565526, + 0.009726126678287983, + -0.010847770608961582, + 0.008671335875988007, + 0.0013338633580133319, + -0.07059475779533386, + -0.031233232468366623, + -0.021618666127324104, + -0.03467351943254471, + -0.0060943313874304295, + -0.025164879858493805, + -0.022076688706874847, + 0.03756691887974739, + 0.0010018600150942802, + -0.0454060435295105, + -0.0014161495491862297, + 0.044350117444992065, + 0.057678792625665665, + 0.009417636319994926, + -0.013081547804176807, + 0.0145966075360775, + 0.024548931047320366, + 0.008996277116239071, + 0.038951143622398376, + 0.012694470584392548, + 0.030144009739160538, + 0.019902728497982025, + -0.033707424998283386, + 0.03512588515877724, + -0.033136386424303055, + -0.023634126409888268, + -0.038180846720933914, + 0.03215855732560158, + 0.006422301754355431, + 0.025532880797982216, + -0.04773591086268425, + 0.007946880534291267, + -0.023294638842344284, + -0.03156077489256859, + -0.02448645792901516, + -0.010206231847405434, + -0.001005835714749992, + 0.0625242218375206, + -0.037662532180547714, + 0.0009489472722634673, + 0.03737828508019447, + -0.021440539509058, + -0.038244958966970444, + -0.0011719402391463518, + 0.025282517075538635, + 0.0437249094247818, + -0.00961657240986824, + -0.017370793968439102, + -0.011704547330737114, + -0.008964337408542633, + 0.005090394988656044, + 0.0012154200812801719, + -0.03811260685324669, + 0.029632294550538063, + -0.025953950360417366, + 0.004430703818798065, + -0.016641750931739807, + -0.04561012610793114, + 0.008509337902069092, + 0.02362336590886116, + 0.04278844594955444, + -0.010360447689890862, + -0.02969980798661709, + -0.053635984659194946, + -0.039733171463012695, + -0.029079986736178398, + -0.10258795320987701, + -0.005187285598367453, + 0.0234040766954422, + 0.0614541657269001, + 0.01940598152577877, + 0.0002608878130558878, + 0.04144963249564171, + -0.009860574267804623, + 0.004127171356230974, + -0.036639995872974396, + -0.039589978754520416, + -0.003342823125422001, + 0.03681144490838051, + 0.03852595016360283, + 0.01741439290344715, + 0.010439024306833744, + -0.027087029069662094, + -0.014249715954065323, + 0.04572821781039238, + 0.005341617856174707, + -0.05680890753865242, + 0.006944719236344099, + -0.035809166729450226, + -0.00226055970415473, + -0.017133427783846855, + -0.025897324085235596, + -0.0015922451857477427, + 0.008397245779633522, + -0.01665891520678997, + 0.004841561429202557, + -0.03231057897210121, + -0.037332914769649506, + 0.04345082491636276, + -0.009021132253110409, + 0.05813675373792648, + 0.021184030920267105, + 0.0022998277563601732, + 0.04185018688440323, + 0.008374576456844807, + 0.017824016511440277, + -0.015153767541050911, + 0.01837042346596718, + -0.037664685398340225, + -0.02270364947617054, + 0.04392939805984497, + 0.01761341281235218, + 0.01475401408970356, + -0.02777126245200634, + 0.058744803071022034, + -0.013228943571448326, + 0.037272658199071884, + -0.011927233077585697, + 0.01609722338616848, + 0.05681345984339714, + 0.048232898116111755, + 0.0031223336700350046, + -0.04180251061916351, + -0.053403861820697784, + -0.016207370907068253, + -0.030328089371323586, + -0.007197266444563866, + -0.02475418709218502, + -0.013431607745587826, + 0.022091437131166458, + 0.0008743787766434252, + -0.035929881036281586, + -0.045546967536211014, + -0.02374628745019436, + 0.025074459612369537, + 0.06382554769515991, + 0.032473936676979065, + -0.02232835628092289, + -0.03637334331870079, + -0.010307146236300468, + 0.004787783604115248, + -0.01187936868518591, + 0.05670226365327835, + 0.0035737724974751472, + -0.013297774828970432, + 0.01380095724016428, + 0.029348669573664665, + -0.020667389035224915, + 0.009262897074222565, + 0.03054605796933174, + 0.022722311317920685, + -0.020149879157543182, + -0.005550631787627935, + -0.017102286219596863, + 0.01998964324593544, + 0.01880827732384205, + -0.041384756565093994, + -0.014173106290400028, + 0.018045522272586823, + 0.02022012136876583, + 0.04413636028766632, + 0.013116590678691864, + 0.05544105917215347, + 0.011681104078888893, + 0.0031312466599047184, + 0.00037526784581132233, + -0.01107330434024334, + 0.040141262114048004, + -0.035422708839178085, + 2.2490075934911147e-05, + -0.012933619320392609, + -0.038328055292367935, + -0.013308361172676086, + -0.07857983559370041, + -0.009016367606818676, + 0.03577353432774544, + -0.03583133965730667, + -0.022002732381224632, + -0.03883673995733261, + 0.0009449991630390286, + -0.03107871115207672, + 0.06519295275211334, + -0.0010827133664861321, + -0.021757885813713074, + 0.04279981926083565, + -0.033304229378700256, + 0.01017694640904665, + 0.00656021386384964, + -0.033429842442274094, + 0.030358806252479553, + -0.005502001848071814, + -0.059662215411663055, + -0.012632251717150211, + 0.02787056192755699, + 0.04588724672794342, + -0.02915492281317711 + ], + "start_index": 0, + "end_index": 245, + "token_count": 58, + "file": "ormAccessCreate.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "c4521113-b23b-5404-8823-92780b043417", + "_source": { + "text": "getDateTime(\"\", 0, \"UTC\", ahora)\naddResult(ahora)", + "embedding": [ + -0.003802136518061161, + 0.04725433140993118, + -0.011732338927686214, + -0.08926280587911606, + 0.06440171599388123, + -0.024593614041805267, + -0.006843600422143936, + 0.012916148640215397, + -0.045175936073064804, + -0.05665334314107895, + -0.01771465130150318, + 0.008255871944129467, + 0.03138642758131027, + -0.01135772280395031, + -0.05619950592517853, + 0.0798899456858635, + -0.005132254213094711, + 0.02126072533428669, + 0.056994322687387466, + -0.001676432671956718, + 0.03821264207363129, + 0.026410648599267006, + 0.009999889880418777, + 0.03726545721292496, + 0.04711040481925011, + 0.03910283371806145, + -0.039218828082084656, + 0.12700919806957245, + 0.020015599206089973, + -0.0025900541804730892, + 0.02544276788830757, + 0.026991330087184906, + -0.011943367309868336, + 0.008046716451644897, + 0.013497910462319851, + -0.016558542847633362, + 0.040888939052820206, + -0.040435418486595154, + 0.007631440181285143, + 0.023155968636274338, + 0.0031270794570446014, + -0.03329763188958168, + 0.029827959835529327, + 0.00724965101107955, + -0.02720525860786438, + -0.00887489877641201, + 0.021293969824910164, + -0.02353660762310028, + 0.0063274698331952095, + -0.003762745764106512, + -0.001353439874947071, + 0.023188190534710884, + 0.008078944869339466, + 0.015327532775700092, + -0.025151757523417473, + -0.036484066396951675, + -0.00020994103397242725, + -0.016380002722144127, + 0.025415930896997452, + -0.011369210667908192, + -0.10037697851657867, + 0.0024949798826128244, + 0.023822274059057236, + -0.01685950718820095, + 0.006965929176658392, + 0.03735877200961113, + 0.015444071032106876, + -0.03349870815873146, + -0.09788911044597626, + 0.03372517228126526, + 0.026400545611977577, + -0.0066361804492771626, + -0.007842227816581726, + 0.04227194935083389, + -0.013969143852591515, + 0.05678562447428703, + 0.018486449494957924, + -0.01428921613842249, + 0.022348452359437943, + -0.029233166947960854, + 0.005676371976733208, + 0.03222876787185669, + 0.018453160300850868, + 0.017674880102276802, + -0.02542171999812126, + 0.0160414706915617, + -0.044868018478155136, + 0.002115289680659771, + -0.02715938724577427, + -0.003912636544555426, + 0.007384775206446648, + 0.04505029320716858, + -0.0627211257815361, + -0.01559317298233509, + -0.011592511087656021, + -0.0019028318347409368, + -0.03369677811861038, + 0.05585339665412903, + -0.022782016545534134, + 0.0035287148784846067, + -0.05425797775387764, + -0.03487999364733696, + -0.0005712758284062147, + -0.008528770878911018, + -0.03705389425158501, + 0.049968283623456955, + -0.07606209069490433, + -0.01342853158712387, + -0.0440865084528923, + -0.03644043579697609, + 0.0009509713272564113, + 0.025384802371263504, + 0.016048526391386986, + 0.04924796521663666, + -0.0398406907916069, + -0.0016046474920585752, + -0.008736747317016125, + 0.02938653528690338, + 0.01514714676886797, + -0.03152268007397652, + -0.01977606676518917, + 0.02650303952395916, + -0.006969744805246592, + -0.03374354541301727, + -0.01246157567948103, + 0.010424899868667126, + -0.04197283461689949, + -1.989459451579023e-05, + 0.01033549290150404, + -0.029105357825756073, + 0.01042842585593462, + -0.0055756778456270695, + -0.020352350547909737, + -0.1024797335267067, + 0.01052709948271513, + -0.0026940025854855776, + -0.004162083379924297, + -0.010469036176800728, + 0.041960056871175766, + -0.019946027547121048, + -0.04883883520960808, + -0.020358175039291382, + -0.013781837187707424, + -0.03532717004418373, + -0.0035803404171019793, + 0.025376100093126297, + -0.0011104628210887313, + 0.002441365970298648, + 0.011165398173034191, + 0.0479072704911232, + -0.013058613985776901, + -0.00385686126537621, + -0.03440415486693382, + -0.008607127703726292, + -0.006958423648029566, + 0.05166603997349739, + 0.00415200786665082, + -0.011071224696934223, + 0.02356632798910141, + 0.038832370191812515, + 0.01128385215997696, + -0.030060602352023125, + 0.002366705797612667, + -0.042347900569438934, + -0.023213865235447884, + 0.04784004017710686, + 0.00362263061106205, + -0.03365122899413109, + -0.0269001517444849, + 0.016897151246666908, + -0.005110579542815685, + -6.706874501105631e-06, + -0.01043412834405899, + -0.006694433744996786, + 0.018905604258179665, + -0.03877471387386322, + -0.023777669295668602, + -0.05603661760687828, + -0.026372680440545082, + -0.04430148005485535, + 0.0004500904760789126, + -0.018461694940924644, + 0.010125262662768364, + 0.01576538011431694, + 0.006962032988667488, + 0.020430022850632668, + 0.0040114689618349075, + -0.008778991177678108, + -0.016330145299434662, + 0.0014179112622514367, + 0.00638571148738265, + -0.00803752988576889, + -0.014063509181141853, + -0.004907140973955393, + -0.010271633043885231, + -0.03984924405813217, + 0.017168233171105385, + -0.008032385259866714, + -0.017605774104595184, + 0.006898748222738504, + 0.004826902877539396, + -0.03040238283574581, + -0.0018795382929965854, + 0.02492075227200985, + -0.014706139452755451, + 0.004080344457179308, + 0.03824930265545845, + 0.013940582051873207, + -0.019405754283070564, + 0.0011355802416801453, + 0.008395467884838581, + -0.0031884037889540195, + -0.014704249799251556, + -0.001556062838062644, + -0.01584719680249691, + 0.005894719157367945, + 0.005490817595273256, + 0.007211336400359869, + 0.007521302439272404, + 0.04045798256993294, + 0.01572728529572487, + 0.024291522800922394, + -0.020517269149422646, + 0.00690314220264554, + 0.019964151084423065, + -0.03936563804745674, + 0.012214097194373608, + 0.015056174248456955, + 0.013636186718940735, + -0.0002898180391639471, + -0.009107864461839199, + 0.011830278672277927, + -0.028697192668914795, + -0.00845245085656643, + 0.07041575014591217, + -0.0012332327896729112, + 0.00661840895190835, + 0.02779407985508442, + 0.03142832964658737, + 0.004799709655344486, + 0.0035234398674219847, + 0.00010564522381173447, + -0.013573178090155125, + 0.026436248794198036, + -0.05615878105163574, + 0.037021808326244354, + 0.007572620641440153, + 0.017352169379591942, + -0.03299607336521149, + 0.0018756957724690437, + 0.019640330225229263, + 0.04064836725592613, + -0.024804186075925827, + -0.02341233193874359, + 0.02249043621122837, + -0.0032079359516501427, + -0.00974553357809782, + 0.019738048315048218, + -0.0011824262328445911, + 0.006093574687838554, + 0.0038677072152495384, + -0.056977856904268265, + -0.046407345682382584, + -0.018130259588360786, + 0.03985263407230377, + 0.020439548417925835, + -0.024123257026076317, + -0.02446071244776249, + -0.024601764976978302, + -0.013293241150677204, + 0.009379829280078411, + 0.0024967174977064133, + -0.02547462470829487, + -0.020368142053484917, + 0.010814294219017029, + 0.04142500460147858, + 0.00014968471077736467, + -0.10627918690443039, + 0.023694612085819244, + 0.04843631386756897, + 0.061977095901966095, + -0.0082657216116786, + -0.03073090873658657, + -0.021882640197873116, + 0.034060366451740265, + 0.038132842630147934, + 0.02982005476951599, + 0.033209577202796936, + 0.011552087031304836, + 0.00460807466879487, + 0.02710207924246788, + -0.01686706580221653, + -0.040994759649038315, + 0.030587034299969673, + -0.01979975402355194, + 0.0015014243545010686, + -0.006045741960406303, + 0.0797487422823906, + 0.029377100989222527, + -0.008936658501625061, + 0.0027974199037998915, + 0.006482409778982401, + 0.004445461556315422, + -0.013401498086750507, + 0.03508812189102173, + -0.0014285821234807372, + 0.0379541851580143, + -0.0035579216200858355, + -0.021846860647201538, + -0.010593893006443977, + 0.06679835915565491, + -0.014617525041103363, + 0.0011792528675869107, + -0.01962103508412838, + -0.028666693717241287, + -0.002948169596493244, + -0.028136830776929855, + 0.02944766916334629, + -0.0018626651726663113, + -0.040544427931308746, + -0.03936684876680374, + -0.055624425411224365, + 0.02854062430560589, + 0.028269149363040924, + 0.013280309736728668, + 0.03279945254325867, + -0.009725012816488743, + 0.014924603514373302, + 0.04206279665231705, + 0.009330704808235168, + 0.03130258247256279, + 0.02282065898180008, + 0.041363392025232315, + 0.01606435887515545, + 0.01721571572124958, + 0.04920487478375435, + 0.02628811076283455, + 0.0016151737654581666, + 0.0016213017515838146, + 0.0017915504286065698, + 0.019073225557804108, + 0.005180087871849537, + -0.05242617800831795, + 0.03421289473772049, + 0.02360137738287449, + 0.046162351965904236, + -0.029349150136113167, + -0.0027447810862213373, + 0.017338303849101067, + 0.007048492319881916, + -0.034434787929058075, + -0.0006705962587147951, + -0.004845629446208477, + -0.01575697585940361, + -0.029812641441822052, + -0.008511905558407307, + -0.002005651593208313, + 0.009870937094092369, + -0.034628041088581085, + -0.03748875483870506, + -0.06253831088542938, + -0.020139150321483612, + 0.012291807681322098, + -0.0062437765300273895, + -0.008312083780765533, + -0.0203184112906456, + -0.004093284718692303, + -0.024979805573821068, + 0.0664265975356102, + -0.06499303132295609, + -0.10762972384691238, + -0.0158590879291296, + 0.009696402586996555, + 0.006791101302951574, + 0.0314902700483799, + 0.0241974089294672, + 0.03469506651163101, + -0.04859357699751854, + -0.006417284719645977, + 0.053937576711177826, + 0.014477779157459736, + 0.005148238968104124, + -0.012337188236415386, + 0.002010198775678873, + -0.022803587839007378, + -0.05930686742067337, + 0.06079300865530968, + -0.03987012803554535, + 0.01305949967354536, + -0.026752056553959846, + -0.00631333515048027, + 0.03005075640976429, + -0.02199108526110649, + -0.010772972367703915, + 0.01752999797463417, + 0.023568538948893547, + -0.06023843213915825, + 0.012065231800079346, + -0.05543874576687813, + 0.006261914968490601, + 0.03685287758708, + 0.044119298458099365, + -0.016899041831493378, + -0.02781069651246071, + -0.016415197402238846, + -0.0008428945438936353, + -0.01795109733939171, + 0.0006532082334160805, + 0.026242123916745186, + 0.005150879733264446, + 0.02737106941640377, + 0.04169373959302902, + 0.020825093612074852, + 0.029375983402132988, + 0.06422343105077744, + -0.006114304065704346, + 0.04194500297307968, + -0.03883888199925423, + 0.010170960798859596, + 0.022138137370347977, + 0.008173709735274315, + 0.10705123096704483, + -0.04416230320930481, + 0.007407287135720253, + 0.010496625676751137, + -0.030219275504350662, + -0.040973640978336334, + -0.06769515573978424, + -0.02202802710235119, + 0.1443735659122467, + 0.004931394476443529, + -0.032141946256160736, + 0.018355170264840126, + 0.019084803760051727, + 0.03225918486714363, + 0.006891882978379726, + 0.022241540253162384, + 0.001845229766331613, + 0.011027351021766663, + -0.05086793750524521, + -0.010234043933451176, + 0.07107368111610413, + -0.026077643036842346, + -0.03413808345794678, + -0.011315224692225456, + -0.027738120406866074, + 0.018744710832834244, + -0.009806185029447079, + -0.012078426778316498, + -0.002336811972782016, + -0.03186009079217911, + -0.0389484241604805, + -0.02092580683529377, + -0.0011314749717712402, + 0.045889388769865036, + -0.05709769204258919, + 0.02630707435309887, + 0.0025275875814259052, + -0.005186838563531637, + -0.002453102497383952, + 0.01135226059705019, + 0.06583088636398315, + -0.009235351346433163, + 0.0053861127234995365, + -0.00026940074167214334, + 0.0922871008515358, + 0.054045699536800385, + -0.014028243720531464, + 0.00591087993234396, + -0.0447423979640007, + -0.028576159849762917, + 0.050603706389665604, + -0.01863867975771427, + -0.0030323632527142763, + 0.023633470758795738, + -0.03402526676654816, + -0.02916022576391697, + -0.001285144709981978, + 0.016102934256196022, + 0.004428757354617119, + -0.02087758481502533, + -0.06604746729135513, + 0.037459373474121094, + -0.055374596267938614, + 0.0841454565525055, + -0.01574481651186943, + 0.011769583448767662, + 0.02677932195365429, + -0.003700611414387822, + -0.010828230530023575, + -0.009345339611172676, + 0.10000533610582352, + -0.007558451499789953, + -0.04546760022640228, + -0.026472024619579315, + 0.024139655753970146, + -0.023388128727674484, + -0.05432186648249626, + -0.08920068293809891, + 0.014827154576778412, + -0.022291216999292374, + -0.014244455844163895, + -0.04620330408215523, + -0.030766433104872704, + 0.002292138757184148, + -0.028627347201108932, + 0.030717235058546066, + -0.01092434860765934, + -0.0006077997968532145, + 0.04336973652243614, + -0.011129274033010006, + -0.051365483552217484, + 0.0062522292137146, + 0.03879932686686516, + -0.027473583817481995, + -0.00859528686851263, + 0.03227268159389496, + 0.021301379427313805, + -0.07347422093153, + 0.035928405821323395, + -0.03369970619678497, + -0.022256644442677498, + 0.02965894155204296, + 0.020917553454637527, + -0.027750732377171516, + 0.0002796758490148932, + 0.009739006869494915, + -0.009609770961105824, + -0.030406402423977852, + 0.017964402213692665, + 0.024891674518585205, + -0.04379808157682419, + -0.04135441407561302, + 0.03881563991308212, + -0.0013784391339868307, + -0.00018629926489666104, + -0.028914861381053925, + -0.02381354384124279, + -0.013527282513678074, + 0.031030068174004555, + 0.024208983406424522, + 0.02361578308045864, + -0.0038084955886006355, + -0.011140458285808563, + 0.0492929071187973, + -0.027369065210223198, + 0.00895625725388527, + 0.007712411694228649, + -0.008631330914795399, + 0.01914065331220627, + 0.001399918575771153, + 0.008121049031615257, + 0.03167551010847092, + 0.025694772601127625, + 0.03885947912931442, + 0.010099618695676327, + 0.034256353974342346, + 0.018374595791101456, + 0.03918133303523064, + -0.0602780319750309, + -0.020077822729945183, + -0.012708612717688084, + 0.03940500691533089, + -0.004169609397649765, + 0.016800394281744957, + 0.012664123438298702, + 0.018002865836024284, + -0.013626396656036377, + 0.045838624238967896, + -0.024806547909975052, + 0.05688056722283363, + -0.02242753468453884, + -0.005264208652079105, + 0.04382893815636635, + 0.02766718715429306, + -0.058550816029310226, + 0.01919153332710266, + 0.04554394260048866, + 0.03956402465701103, + -0.03343285620212555, + -0.003390624187886715, + 0.03852003067731857, + 0.01437442284077406, + 0.01823076792061329, + -0.048147983849048615, + 0.010515260510146618, + 0.08206409960985184, + -0.042086776345968246, + 0.014041339978575706, + -0.02333030290901661, + 0.009543109685182571, + -0.06761833280324936, + -0.008442705497145653, + -0.026983845978975296, + 0.05470580607652664, + -0.03399093449115753, + -0.038108941167593, + -0.017120279371738434, + -0.04843756556510925, + 0.006946614012122154, + 0.002271304139867425, + -0.0056969476863741875, + 0.01270547229796648, + 0.012783600948750973, + -0.04720573499798775, + 0.009873759001493454, + -0.01474122703075409, + 0.0362420491874218, + -0.020523158833384514, + 0.010713269002735615, + -0.03207860887050629, + 0.025867750868201256, + -0.055197373032569885, + -0.020636143162846565, + 0.025687912479043007, + -0.027218345552682877, + -0.016261393204331398, + -3.785331136896275e-05, + -0.006967469584196806, + -0.04401256516575813, + 0.0335831455886364, + 0.05492153391242027, + 0.017109617590904236, + 0.0966428816318512, + -0.018456896767020226, + 0.014753024093806744, + -0.04469791427254677, + -0.0588475838303566, + 0.019074296578764915, + -0.017482763156294823, + -0.03540848568081856, + 0.023835616186261177, + -0.024216171354055405, + -0.014394519850611687, + 0.010505796410143375, + 0.019175278022885323, + 0.008056138642132282, + -0.030755970627069473, + -0.007015483919531107, + -0.01998279057443142, + -0.008736051619052887, + -0.0005183345638215542, + 0.0056069339625537395, + -0.025039371103048325, + 0.03239303082227707, + 0.00018377293599769473, + 0.006073706783354282, + 0.014446623623371124, + 0.0440233089029789, + -0.007411993108689785, + 0.02350153960287571, + 0.013671351596713066, + 0.02559869922697544, + 0.014036555774509907, + -0.051928840577602386, + 0.021636633202433586, + -0.04006766155362129, + 0.042053524404764175, + -0.009971634484827518, + -0.06816153228282928, + 0.00950118713080883, + -0.04745148494839668, + 0.047263890504837036, + -0.0880332812666893, + -0.051826026290655136, + -0.04379483312368393, + 0.050559576600790024, + 0.013107373379170895, + -0.00717903021723032, + -0.033695388585329056, + -0.03740427643060684, + 0.0058112237602472305, + 0.020609453320503235, + 0.008106831461191177, + 0.018791498616337776, + -0.03553491085767746, + -0.049501366913318634, + 0.015519371256232262, + -0.04017667472362518, + 0.002003048313781619, + -0.0335540771484375, + -0.02474876679480076, + 0.014699948020279408, + -0.03920939564704895, + -0.00693522347137332, + -0.04446432739496231, + -0.05586400255560875, + -0.0317397303879261, + 0.01571793295443058, + -0.008782126940786839, + -0.005728821735829115, + -0.020702876150608063, + -0.007665219251066446, + -0.002675553783774376, + -0.03677782043814659, + 0.026999281719326973, + 0.04140467196702957, + -0.021196963265538216, + 0.007508439943194389, + 0.03379776328802109, + 0.04870635271072388, + -0.02272392436861992, + -0.040954142808914185, + 0.017417320981621742, + -0.0036254676524549723, + -0.040025509893894196, + -0.0888296440243721, + 0.018084894865751266, + -0.0024600746110081673, + -0.025736436247825623, + 0.013479741290211678, + -0.012718585319817066, + -0.01469841692596674, + -0.028482986614108086, + 0.012062343768775463, + -0.006763588171452284, + -0.022032082080841064, + -0.012163931503891945, + -0.04006388783454895, + -0.05034596100449562, + 0.010171492584049702, + -0.10291767865419388, + 0.043988827615976334, + 0.029814058914780617, + 0.0014980144333094358, + 0.0034014992415905, + 0.01383151300251484, + 0.04732344299554825, + -0.0005605531041510403, + 0.018437108024954796, + 0.031216934323310852, + -0.03708573430776596, + 0.058494530618190765, + -0.03250005096197128, + -0.008064329624176025, + 0.007513168267905712, + 0.021332597360014915, + -0.002813938306644559, + -0.021475903689861298, + 0.002070873975753784, + 0.03160879760980606, + -0.01425929181277752, + 0.0037969574332237244, + 0.007932216860353947, + 0.006998512893915176, + -0.01651192642748356, + -0.008961421437561512, + -0.01898733526468277, + 0.036771509796381, + 0.018630683422088623, + 0.01605214551091194, + -0.04586182162165642, + -0.012523345649242401, + 0.05432457849383354, + 0.004021129570901394, + -0.016545113176107407, + -0.016624365001916885, + 0.04121474176645279, + 0.03358179330825806, + 0.023560943081974983, + -0.02304878830909729, + -0.02980521135032177, + 0.0013945243554189801, + 0.04844855144619942, + 0.03957214951515198, + 0.012761524878442287, + -0.005181566346436739, + -0.035331226885318756, + -0.03435015678405762, + -0.021900780498981476, + -0.0027354711201041937, + -0.05925654247403145, + -0.04497702419757843, + 0.04875508323311806, + 0.024213435128331184, + -0.035620033740997314, + 0.023617494851350784, + -0.0031050830148160458, + -0.03593013808131218, + 0.004970768932253122, + 0.0024122740142047405, + 0.010509822517633438, + -0.010942033492028713, + 0.015183682553470135, + -0.04763941094279289, + 0.017466193065047264, + 0.049798984080553055, + 0.0037953564897179604, + 0.009664427489042282, + 0.022491974756121635, + 0.008640504442155361, + -0.002281064400449395, + 0.022540347650647163, + 0.016826041042804718, + 0.007683812640607357, + 0.02947126142680645, + -0.002676726318895817, + 0.026272527873516083, + -0.04486851394176483, + 0.021798713132739067, + -0.01841817796230316, + 0.009674171917140484, + -0.00123368832282722, + 0.006970446556806564, + 0.0900774747133255, + -0.011803358793258667, + -0.0387328639626503, + 0.010691314935684204, + -0.01693320833146572, + -0.013076390139758587, + 0.048383988440036774, + 0.034276463091373444, + -0.026370327919721603, + 0.013437683694064617, + -0.00375355570577085, + 0.038083259016275406, + -0.04295767471194267, + 0.00417147995904088, + -0.041204389184713364, + 0.016696492210030556, + -0.03551022708415985, + -0.007115437649190426, + 0.0004192181513644755, + 0.022213341668248177, + -0.07131760567426682, + 0.018568964675068855, + 0.04166712611913681, + -0.0003822601865977049, + -0.014402608387172222, + 0.027259526774287224, + 0.008670469745993614, + -0.0247033778578043, + -0.0154972979798913, + 0.008119788952171803, + 0.04407702013850212, + 0.051219642162323, + -0.022595521062612534, + 0.016541926190257072, + 0.020252002403140068, + 0.060891054570674896, + 0.058724697679281235, + 0.025012290105223656, + 0.025457952171564102, + 0.0644940584897995, + 0.0025683387648314238, + -0.018050778657197952, + -0.021153179928660393, + 0.009487245231866837, + 0.0359172523021698, + 0.025342462584376335, + -0.0017451904714107513, + 0.0010064085945487022, + 0.018943151459097862, + -0.007441992871463299, + -0.06940051913261414, + 0.01701291836798191, + -0.011838830076158047, + 0.03826158121228218, + -0.029361873865127563, + 0.01902483031153679, + -0.034161195158958435, + -0.005501573905348778, + -0.015936478972434998, + -0.05372081696987152, + -0.03202701359987259, + -0.013701698742806911, + -0.010794241912662983, + 0.01681051403284073, + -0.013293534517288208, + -0.0012439282145351171, + 0.0046264370903372765, + -0.03061492368578911, + 0.019981062039732933, + 0.012659966014325619, + -0.016814231872558594, + 0.0291217640042305, + -0.019116733223199844, + 0.04933945834636688, + 0.010649259202182293, + 0.04274545609951019, + -0.05897098407149315, + 0.008939330466091633, + 0.015618856996297836, + -0.0042733969166874886, + -0.009042000398039818, + 0.020849939435720444, + -0.028776630759239197, + -0.0011990577913820744, + -0.016236457973718643, + -0.029924223199486732, + -0.028026476502418518, + 0.013576949015259743, + -0.018801935017108917, + 0.012122583575546741, + -0.07765183597803116, + -0.004075555596500635, + 0.023819170892238617, + -0.03469312563538551, + -0.013988825492560863, + -0.027479344978928566, + -0.008838926441967487, + 0.022455886006355286, + 0.004021096043288708, + 0.03270403668284416, + -0.003947222139686346, + -0.011206836439669132, + 0.03458668291568756, + 0.044400203973054886, + -0.011074227280914783, + 0.0071604326367378235, + -0.0457671694457531, + 0.04551015421748161, + -0.002374261850491166, + 0.00035030560684390366, + -0.06969863176345825, + 0.033477235585451126, + -0.02360360138118267, + 0.010241915471851826, + -0.03205660730600357, + -0.05019555613398552, + -0.010645447298884392, + 0.03258952870965004, + -0.010404945351183414, + -0.004399548750370741, + -0.0530930832028389, + -0.02632983960211277, + -0.0016238752286881208, + 0.013722363859415054, + 0.018507439643144608, + 0.0023867664858698845, + 0.024008041247725487, + 0.0006950183305889368, + 0.06838022172451019, + 0.011402037926018238, + 0.005670658312737942, + -0.0246192067861557, + 0.013941550627350807, + -0.026887020096182823, + 0.019076641649007797, + -0.044368695467710495, + -0.027278756722807884, + -0.03957655653357506, + 0.038897935301065445, + -0.01004763599485159, + 0.07106886804103851, + -0.014772550202906132, + 0.028098562732338905, + 0.01812691055238247, + 0.0074682352133095264, + 0.04853936657309532, + 0.005541193298995495, + 0.02263295277953148, + 0.00857795961201191, + -0.029075130820274353, + -0.035473234951496124, + -0.06540030241012573, + -0.03455701097846031, + 0.009261304512619972, + 0.0061750453896820545, + 0.023248611018061638, + 0.035043518990278244, + -0.004267023876309395, + -0.024051256477832794, + 0.03890479728579521, + 0.029860105365514755, + -0.0005081769195385277, + -0.04163087159395218, + -0.006479616742581129, + -0.007344780024141073, + -0.03064028173685074, + 0.04480317607522011, + -0.026393085718154907, + -0.009537103585898876, + 0.006966018117964268, + -0.02537396177649498, + 0.02835320495069027, + -0.010640106163918972, + -0.01747758872807026, + 0.0016485375817865133, + -0.05632978677749634, + -0.06463128328323364, + 0.03825993463397026, + 0.022556699812412262, + 0.033555127680301666, + 0.023354925215244293, + -0.05154680460691452, + 0.016551069915294647, + 0.030814917758107185, + 0.009585808962583542, + -0.004298459272831678, + 0.02254476770758629, + 9.826219320530072e-05, + 0.006839485373347998, + -0.022502809762954712, + -0.02780514769256115, + -0.00826516654342413, + 0.011455515399575233, + -0.012149758636951447, + 0.011396168731153011, + -0.003070981940254569, + -0.015018592588603497, + -0.015593654476106167, + -0.00471968948841095, + -0.009131010621786118, + 0.012406706809997559, + -0.031165534630417824, + 0.002984840190038085, + 0.009372084401547909, + -0.010813307948410511, + 0.028796706348657608, + 0.021475663408637047, + 0.002304309280589223, + -0.010149513371288776, + -0.028246238827705383, + -0.006237762980163097, + 0.016891954466700554, + -0.010709738358855247, + -0.013483114540576935, + 0.02941346913576126, + -0.03482534736394882, + -0.050440773367881775, + -0.0024076246190816164, + 0.027221830561757088, + 0.015351006761193275 + ], + "start_index": 0, + "end_index": 49, + "token_count": 17, + "file": "obtencion_timestamp.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "4c40c450-0036-5fb8-b6ed-220a450bd99e", + "_source": { + "text": "randomString(\"[A-Z]\\d\", 32, token_seguridad)\naddResult(token_seguridad)", + "embedding": [ + 0.012884355150163174, + -0.03817671537399292, + -0.011473722755908966, + -0.04654691368341446, + 0.028030037879943848, + -0.03538672626018524, + -0.042279694229364395, + 0.04398880526423454, + -0.016403263434767723, + -0.043280623853206635, + -0.005866788327693939, + -0.027683937922120094, + 0.015520082786679268, + -0.010911996476352215, + -0.04042825847864151, + 0.0803014263510704, + 0.017102329060435295, + 0.002585357753559947, + -0.03621186688542366, + 0.03954259678721428, + 0.04300558194518089, + 0.06222034990787506, + 0.016484007239341736, + 0.03428371250629425, + 0.04869403690099716, + 0.035555630922317505, + -0.07065609097480774, + 0.06263632327318192, + 0.07804491370916367, + -0.017164088785648346, + 0.012611307203769684, + -0.05288948863744736, + -0.01243441179394722, + -0.049297042191028595, + 0.0035868328996002674, + -0.01582576148211956, + 0.04225385561585426, + 0.015979507938027382, + -0.006928300950676203, + -0.0011708146193996072, + 0.021832823753356934, + 0.018566647544503212, + 0.020678158849477768, + -0.02786986529827118, + 0.012567426078021526, + -0.07624036073684692, + 0.015461442060768604, + -0.022014493122696877, + 0.0448603592813015, + 0.0040390025824308395, + -0.02712741307914257, + 0.019761046394705772, + 0.03397063910961151, + 0.029047157615423203, + -0.01722036674618721, + -0.0029306767974048853, + 0.009602117352187634, + -0.0006153529975563288, + -0.012196006253361702, + 0.022285135462880135, + -0.06957333534955978, + -0.01213100180029869, + -0.03025048039853573, + 0.023746920749545097, + 0.007202309090644121, + 0.03180092200636864, + 0.028281737118959427, + -0.02333022654056549, + -0.043366361409425735, + -0.015417313203215599, + -0.001772991381585598, + -7.436195573973237e-06, + -0.024277444928884506, + 0.00692535936832428, + 0.003595342393964529, + 0.028261329978704453, + 0.037677470594644547, + -0.007585066370666027, + 0.01264292560517788, + 0.021382996812462807, + 0.014193937182426453, + 0.036400094628334045, + 0.04216388240456581, + -0.00863848440349102, + 0.0040328060276806355, + -0.003630328457802534, + -0.005892230663448572, + 0.010079838335514069, + -0.013284211978316307, + 0.01050968375056982, + 0.00044157850788906217, + 0.05506138876080513, + -0.005949673242866993, + 0.009874160401523113, + 0.018207211047410965, + 0.01954757422208786, + -0.011276263743638992, + 0.07182569801807404, + -0.040076423436403275, + 0.01808658055961132, + -0.02410917356610298, + -0.010045607574284077, + 0.006569971330463886, + -0.08084576576948166, + -0.027774730697274208, + 0.03378675505518913, + -0.049960412085056305, + 0.060946058481931686, + -0.056910306215286255, + -0.026585888117551804, + -0.01312642078846693, + 0.05339929834008217, + -0.032448697835206985, + 0.016700953245162964, + 0.013829530216753483, + -0.03571689873933792, + -0.02172076888382435, + -0.022800227627158165, + 0.008725807070732117, + -0.0178803950548172, + 0.024794185534119606, + -0.04761427640914917, + 0.005113332532346249, + -0.02758593112230301, + 0.04282029718160629, + 0.014066511765122414, + -0.02556200884282589, + -0.013311191461980343, + 0.004103081300854683, + -0.04222560673952103, + -0.03678923472762108, + -0.00495987618342042, + -0.004308194387704134, + 0.00011152864317409694, + -0.012713337317109108, + 0.00884130410850048, + -0.032264407724142075, + -0.03317086398601532, + 0.01663067750632763, + 0.00019358085410203785, + 0.001948909368366003, + 0.009865292347967625, + 0.0080834049731493, + -0.0007956157787702978, + 0.027364008128643036, + 0.014931607991456985, + -0.0077569191344082355, + -0.03331452235579491, + 0.038901302963495255, + 0.038589444011449814, + 0.016472673043608665, + 0.017371663823723793, + -0.0076153455302119255, + 0.015774736180901527, + -0.025592140853405, + -0.014997963793575764, + 0.0016179911326617002, + -0.011321534402668476, + 0.0010384657653048635, + 0.015733806416392326, + 0.010347588919103146, + -0.016611751168966293, + -0.02547108381986618, + -0.022826936095952988, + -0.023301037028431892, + 0.04956083372235298, + -0.02992054633796215, + -0.033055149018764496, + -0.03413492441177368, + 0.04873272031545639, + 0.0005793847958557308, + -0.01735730469226837, + -0.014687282033264637, + 0.004313604906201363, + -0.018229832872748375, + 0.005297068972140551, + -0.013481859117746353, + -0.017415501177310944, + 0.045196790248155594, + 0.029906541109085083, + 0.018206672742962837, + 0.01429574191570282, + 0.0009287208667956293, + -0.026826955378055573, + 0.011321017518639565, + 0.0744042843580246, + 0.030542641878128052, + -0.03614521771669388, + -0.026783805340528488, + -0.014227463863790035, + -0.045225150883197784, + 0.010465777479112148, + -0.08665397763252258, + -0.02147616259753704, + -0.0004646243469323963, + -0.015640832483768463, + 0.02238980121910572, + 0.002755233086645603, + -0.009476283565163612, + -0.01553423423320055, + 0.01570182293653488, + 0.004407943692058325, + 0.017509033903479576, + -0.01131016667932272, + -0.01263168640434742, + 0.0016195838106796145, + -0.021455323323607445, + -0.006800101138651371, + -0.020044606178998947, + -0.06905274093151093, + -0.024485833942890167, + 0.057330064475536346, + -0.026525216177105904, + -0.04344677925109863, + -0.009292942471802235, + 0.04886292666196823, + 0.010227369144558907, + 0.03169683367013931, + -0.003966687712818384, + 0.016415709629654884, + 0.014735544100403786, + -6.59584766253829e-05, + 0.0019124116515740752, + 0.03670298308134079, + -0.04751710593700409, + -0.006860150024294853, + -0.005838892888277769, + 0.029613537713885307, + 0.013767870143055916, + 0.04340409114956856, + -0.018075425177812576, + -0.01675603538751602, + 0.027160396799445152, + -0.04783276095986366, + 0.041968975216150284, + 0.0025723481085151434, + 0.01676039583981037, + -0.020480288192629814, + 0.03854823485016823, + -0.0019570421427488327, + -0.029650015756487846, + -0.003277875715866685, + 0.022732608020305634, + -0.004251950420439243, + -0.01910603605210781, + 0.030396562069654465, + -0.03039902076125145, + 0.018425622954964638, + -0.022650793194770813, + 0.00843424629420042, + 0.02306411974132061, + -0.007523487787693739, + 0.015687773004174232, + 0.06979741156101227, + -0.0008821609662845731, + -0.01964745670557022, + -0.00868939608335495, + 0.002073724055662751, + 0.0003349347389303148, + -0.05650246888399124, + 6.270228914218023e-05, + -0.028022050857543945, + -0.081922248005867, + 0.01836288534104824, + 0.002734510460868478, + 0.013383574783802032, + -0.00885982159525156, + 0.014400841668248177, + -0.016010724008083344, + -0.01734338514506817, + -0.009003175422549248, + 0.04655292257666588, + 0.01765480823814869, + -0.00018311338499188423, + 0.006705155596137047, + 0.006763783749192953, + 0.01771562360227108, + -0.09816324710845947, + 0.036904383450746536, + 0.010101537220180035, + -0.006288072559982538, + 0.02739189937710762, + -0.03607458621263504, + -0.02386249601840973, + 0.03472796827554703, + 0.045036423951387405, + 0.039698418229818344, + 0.036787249147892, + -0.02907721698284149, + -0.015180062502622604, + -0.01665964163839817, + 0.01811816543340683, + -0.038453493267297745, + 0.0375390462577343, + -0.03768493980169296, + 0.05087272450327873, + -0.053958047181367874, + 0.056534212082624435, + 0.005369069054722786, + -0.07574904710054398, + 0.0221351757645607, + -0.04743537679314613, + 0.005438296124339104, + -0.004283509682863951, + 0.04757055640220642, + -0.028724072501063347, + 0.00437868433073163, + -0.029056619852781296, + 0.03558764234185219, + 0.010786368511617184, + 0.03152746707201004, + -0.016407093033194542, + 0.026726150885224342, + -0.029977841302752495, + -0.0014955484075471759, + -0.015587104484438896, + -0.07016944140195847, + 0.04705723375082016, + -0.023985041305422783, + 0.0413997657597065, + 0.0049676052294671535, + -0.010774008929729462, + 0.01801825314760208, + -0.037636399269104004, + 0.0455753467977047, + -0.028706982731819153, + 0.03358577936887741, + 0.013638157397508621, + 0.025576166808605194, + 0.0700925812125206, + 0.041754137724637985, + 0.06066933274269104, + 0.054147399961948395, + 0.017423244193196297, + 0.01051567867398262, + -0.004654839169234037, + -0.015232518315315247, + 0.029016226530075073, + -0.022475119680166245, + -0.02487112395465374, + 0.029739253222942352, + -0.0791536495089531, + -0.02516964264214039, + -0.0030851929914206266, + -0.04528259113430977, + -0.004719520919024944, + 0.028209371492266655, + 0.02683892287313938, + -0.008417613804340363, + 0.010038751177489758, + -0.025797396898269653, + -0.009068263694643974, + 0.015571009367704391, + -0.030847696587443352, + 0.012090678326785564, + -0.058287058025598526, + -0.012391449883580208, + 0.033498674631118774, + -0.00023529674217570573, + -0.02956017665565014, + -0.018556663766503334, + -0.0014034295454621315, + 0.008461201563477516, + -0.016762755811214447, + 0.008415081538259983, + -0.02213313989341259, + -0.02665064111351967, + -0.029113644734025, + 0.038483697921037674, + -0.0004430749104358256, + -0.10724766552448273, + -0.031479544937610626, + 0.02727132849395275, + -0.04323241487145424, + 0.09692448377609253, + 0.03763660788536072, + 0.04838072136044502, + -0.005932989530265331, + -0.009394447319209576, + -0.0026480015367269516, + 0.02271238900721073, + -0.018549060449004173, + -0.030274512246251106, + -0.04715685546398163, + -0.00984568428248167, + -0.035999640822410583, + 0.0012321575777605176, + -0.055300548672676086, + -0.04674829915165901, + 0.009123405441641808, + 0.04960334673523903, + -0.011677117086946964, + 0.015842940658330917, + -0.03153356909751892, + 0.03405129164457321, + 0.03439803048968315, + -0.03562963381409645, + -0.0028167429845780134, + -0.02307523787021637, + 0.017395000904798508, + 0.012670264579355717, + -0.026360204443335533, + -0.04644975811243057, + -0.03659556433558464, + 0.01505358051508665, + -0.008472351357340813, + -0.004541307687759399, + 0.01061875931918621, + 0.008118848316371441, + 0.015323909930884838, + 0.05941547080874443, + 0.0024468216579407454, + 0.005855093244463205, + -0.04134523123502731, + 0.017286619171500206, + -0.01308496668934822, + 0.031056789681315422, + -0.03817569464445114, + 0.07615208625793457, + -0.023624291643500328, + 0.01779353991150856, + 0.042062174528837204, + -0.044951390475034714, + 0.051025088876485825, + 0.008742260746657848, + -0.003377594519406557, + -0.05405804142355919, + -0.09990048408508301, + -0.009158807806670666, + 0.0657455325126648, + 0.01816759631037712, + -0.06534121930599213, + 0.03476519137620926, + -0.0237482450902462, + -0.04440219700336456, + 0.05635480582714081, + 0.08234480768442154, + 0.04821055755019188, + 0.018174754455685616, + 0.02388688176870346, + 0.014355050399899483, + 0.04207655414938927, + 0.012395530007779598, + 0.0323500894010067, + -0.021475085988640785, + -0.024572042748332024, + -0.0018998165614902973, + -0.0433586910367012, + 0.015051486901938915, + -0.02482198365032673, + -0.0027911586221307516, + 0.007815036922693253, + 0.022659553214907646, + 0.0011623611208051443, + 0.018457060679793358, + -0.05231824517250061, + -0.028498653322458267, + -0.01218144316226244, + 0.024937864392995834, + 0.05126425251364708, + -0.015154819004237652, + 0.02599090151488781, + 0.019441500306129456, + -0.04518412426114082, + -0.07103539258241653, + 0.06897186487913132, + 0.03358371555805206, + 0.018052732571959496, + 0.011858738027513027, + -0.027544938027858734, + -0.017030175775289536, + -0.029640771448612213, + 0.012741896323859692, + -0.05430241674184799, + -0.012107828631997108, + 0.07610409706830978, + 0.020722659304738045, + -0.021577507257461548, + -0.04660802707076073, + -0.030320297926664352, + 0.020100252702832222, + -0.007697674911469221, + 0.013212654739618301, + -0.061415255069732666, + 0.03526880964636803, + 0.020304396748542786, + -0.02844948135316372, + -0.01411045528948307, + -0.030075427144765854, + 0.0009816340170800686, + 0.004710447508841753, + 0.05299421772360802, + -0.025840897113084793, + -0.02614866942167282, + -0.01976059377193451, + 0.03076314739882946, + 0.011416450142860413, + -0.0240377988666296, + -0.09175632894039154, + 0.016469035297632217, + 0.01630367338657379, + 0.03423710912466049, + -0.02187974937260151, + -0.02642698585987091, + 0.010049955919384956, + 0.004921173211187124, + -0.0014642949681729078, + -0.086187943816185, + 0.024402007460594177, + 0.015474487096071243, + -0.010051900520920753, + -0.0156025355681777, + 0.004608496092259884, + 0.029869940131902695, + -0.011754023842513561, + 0.0028968711849302053, + 0.022338692098855972, + -0.02174052596092224, + -0.05778937041759491, + 0.03684462979435921, + 0.04348263144493103, + -0.002181663177907467, + 0.047768622636795044, + 0.003091072430834174, + -0.00786109734326601, + 0.05132605507969856, + -0.04295963793992996, + -0.006567465141415596, + -0.027290577068924904, + -0.031149746850132942, + 0.02192067913711071, + -0.028296373784542084, + 0.007965151220560074, + 0.03484947979450226, + -0.051070164889097214, + 0.020672645419836044, + -0.015332349576056004, + -0.00547580374404788, + 0.00514626270160079, + -0.009563546627759933, + 0.01617950014770031, + 0.010416887700557709, + -0.013225377537310123, + -0.039477139711380005, + 0.06299310177564621, + -0.0027992036193609238, + 0.008086498826742172, + 0.0006977288285270333, + 0.016162516549229622, + 0.04090427607297897, + 0.030881179496645927, + 0.016042370349168777, + 0.0239651370793581, + -0.009396979585289955, + -0.012861109338700771, + -0.019678348675370216, + 0.025584187358617783, + -0.026620926335453987, + 0.061530180275440216, + -0.03611510246992111, + -0.06564945727586746, + -0.013321960344910622, + 0.010769391432404518, + -0.015560325235128403, + 0.011707831174135208, + 0.02526620216667652, + -0.031498365104198456, + -0.006560848094522953, + -0.01400673110038042, + 0.024845197796821594, + 0.05904271826148033, + -0.024008488282561302, + 0.019076714292168617, + 0.013246679678559303, + 0.043800655752420425, + -0.07308313250541687, + -0.043158337473869324, + 0.017188090831041336, + 0.026751821860671043, + -0.02802393026649952, + 0.034203775227069855, + 0.01995595544576645, + 0.06736142188310623, + -0.012771391309797764, + 0.01847008801996708, + -0.03147205710411072, + -0.013600396923720837, + -0.04977330192923546, + 0.00790475495159626, + 0.015224957838654518, + -0.034676358103752136, + -0.055025842040777206, + -0.02640628069639206, + -0.00406633922830224, + 0.018894752487540245, + 0.005611352156847715, + -0.05655137822031975, + 0.02870115265250206, + -0.051684364676475525, + -0.03722250461578369, + 0.009374900721013546, + -0.00030823645647615194, + 0.02729996293783188, + 0.04775851592421532, + -0.011055147275328636, + -0.030126914381980896, + -0.00024527456844225526, + 0.022435259073972702, + -0.01873290166258812, + 0.0175140593200922, + 0.029687725007534027, + 0.01744377426803112, + -0.03281025588512421, + -0.014716302044689655, + -0.018102560192346573, + -0.02642701007425785, + -0.0055200099013745785, + 0.04814523085951805, + -0.04298274591565132, + -0.03430352360010147, + -0.029555538669228554, + 0.01020720787346363, + 0.0029887096025049686, + 0.12624377012252808, + -0.03812342882156372, + 0.009101578034460545, + 0.03284936770796776, + -0.008506988175213337, + 0.029961271211504936, + -0.030003242194652557, + -0.012261811643838882, + 0.003110036486759782, + -0.04908335581421852, + 0.0008396655321121216, + 0.03231452405452728, + -0.014469143934547901, + 0.016283130273222923, + 0.016192512586712837, + -0.003414260223507881, + 0.0068420846946537495, + 0.002651373390108347, + -0.013484803959727287, + 0.05744579806923866, + 0.012874867767095566, + 0.03155636787414551, + -0.037146832793951035, + -0.016485393047332764, + 0.035702675580978394, + 0.01734934002161026, + -0.021663516759872437, + 0.03813808038830757, + -0.03175060451030731, + 0.06258682906627655, + 0.001307126833125949, + -0.017930803820490837, + -0.011066115461289883, + 0.024831822142004967, + 0.04145865514874458, + -0.009222348220646381, + -0.02103717252612114, + -0.016797594726085663, + -0.04036910831928253, + 0.0611107237637043, + -0.07678787410259247, + -0.028110066428780556, + -0.02037307247519493, + 0.014945121482014656, + 0.006457353942096233, + 0.03711402416229248, + -0.026021508499979973, + -0.020490573719143867, + -0.06240897625684738, + 0.014395667240023613, + -0.03153672814369202, + -0.012246480211615562, + -0.003497783560305834, + -0.027779674157500267, + 0.04457283765077591, + 0.017800239846110344, + -0.02452094852924347, + -0.03564644232392311, + -0.03633608669042587, + -0.007339500356465578, + -0.0247520599514246, + 0.009662698954343796, + -0.0459660105407238, + -0.020211568102240562, + 0.02365299127995968, + 0.014307361096143723, + 0.02883257530629635, + -0.05931928753852844, + -0.010650056414306164, + 0.035738781094551086, + -0.02462098002433777, + 0.017153026536107063, + 0.0005056817317381501, + -0.0023083167616277933, + -0.024194510653614998, + 0.01826576702296734, + 0.02492855302989483, + 0.06521490216255188, + 0.017726320773363113, + -0.05916542932391167, + 0.0259372778236866, + 0.00525796739384532, + -0.026201525703072548, + -0.014868632890284061, + 0.0034567720722407103, + -0.04047456383705139, + -0.007099918555468321, + -0.023468850180506706, + 0.04352184385061264, + -0.015513081103563309, + -0.016504012048244476, + 0.013952026143670082, + -0.012241053394973278, + -0.03130408748984337, + 0.01627759076654911, + -0.020099183544516563, + 0.0026545387227088213, + 0.00031588823185302317, + -0.028829263523221016, + 0.0043939026072621346, + 0.05183462053537369, + -0.06461194902658463, + -0.03525065258145332, + -0.010334271937608719, + 0.012304386124014854, + 0.023246297612786293, + 0.0023249220103025436, + 0.020476192235946655, + -0.030078629031777382, + 0.007617781404405832, + -0.03139464557170868, + -0.001174562145024538, + -0.007739501539617777, + -0.00522627355530858, + 0.024488069117069244, + -0.026800008490681648, + -0.0017730770632624626, + 0.021121811121702194, + -0.01538271363824606, + -0.01960565336048603, + -0.002721231896430254, + 0.008166627958416939, + -0.0003574070578906685, + -0.0419563464820385, + -0.008748503401875496, + 0.019962413236498833, + 0.001773564494214952, + 0.04967193305492401, + -0.013579009100794792, + 0.018831009045243263, + 0.047093357890844345, + -0.03471086546778679, + -0.055422067642211914, + 0.0041338009759783745, + 0.06482958048582077, + -0.02147316001355648, + -0.02361578866839409, + 0.0006455298280343413, + -0.019189614802598953, + 0.0003456845006439835, + 0.0202043354511261, + 0.012420323677361012, + -0.05078019201755524, + 0.030178159475326538, + -0.044160351157188416, + 0.017476657405495644, + -0.05090245231986046, + 0.0063171000219881535, + -0.041182901710271835, + -0.0067666261456906796, + 0.06999948620796204, + -0.03163989260792732, + -0.0250703115016222, + 0.02974857948720455, + -0.023816829547286034, + -0.030656080693006516, + -0.021100232377648354, + -0.012395829893648624, + -0.04406260699033737, + 0.0005536966491490602, + -0.037897638976573944, + -0.023577241227030754, + 0.03655372932553291, + -0.01288585178554058, + 0.025750940665602684, + 0.04154723882675171, + 0.05987703800201416, + -0.016008228063583374, + 0.024640116840600967, + -0.03653866797685623, + 0.016319962218403816, + -0.016781648620963097, + -0.019869189709424973, + -0.006710518151521683, + 0.0239817276597023, + -0.02577611245214939, + 0.029149215668439865, + -0.03673934191465378, + 0.014952855184674263, + 0.005329831503331661, + -0.009192747063934803, + 0.07017062604427338, + 0.00828463677316904, + -0.038333747535943985, + 0.04897013679146767, + -0.02953990176320076, + -0.014814166352152824, + 0.05432938411831856, + 0.0691300705075264, + 0.024120649322867393, + 0.007150575052946806, + -0.0014669670490548015, + 0.07294923067092896, + -0.033604979515075684, + -0.02838718332350254, + -0.012571423314511776, + 0.0165399182587862, + -0.023476293310523033, + 0.015216968953609467, + -0.021659640595316887, + -0.045612215995788574, + -0.009059453383088112, + 0.05447493866086006, + 0.034875329583883286, + 0.02443251572549343, + 0.017693810164928436, + -0.02783861942589283, + 0.014995681121945381, + 0.01800769381225109, + 0.03430602326989174, + -0.013632501475512981, + 0.04489874467253685, + -0.0023219783324748278, + -0.01662576198577881, + -0.020880524069070816, + 0.015307924710214138, + 0.06448159366846085, + -0.015355592593550682, + -0.01848028600215912, + 0.001656804932281375, + 0.013662763871252537, + 0.011046744883060455, + 0.02337956801056862, + -0.05558337643742561, + -0.06345008313655853, + 0.022659922018647194, + 0.025702307000756264, + 0.0005823004757985473, + 0.025715934112668037, + -0.03203285485506058, + 0.010746524669229984, + -0.03520074114203453, + 0.03368816524744034, + 0.017238525673747063, + 0.041483163833618164, + 0.011266035959124565, + 0.04120425879955292, + -0.012906137853860855, + 0.01591806858778, + 0.00604229187592864, + 0.005589002277702093, + -0.01815028302371502, + 0.050072524696588516, + 0.035335198044776917, + 0.058938317000865936, + 0.026264015585184097, + -0.025995811447501183, + 0.011583670042455196, + 0.0055439225398004055, + 0.005623432341963053, + 0.04431910812854767, + 0.012821544893085957, + -0.02085009217262268, + -0.048387311398983, + 0.04034425690770149, + 0.030886460095643997, + 0.06998736411333084, + -0.00838262215256691, + 0.0360458679497242, + -0.018667425960302353, + 0.04809989780187607, + -0.02142365463078022, + -0.031704507768154144, + 0.008313233964145184, + -0.0021595291327685118, + -0.004945941269397736, + -0.018991615623235703, + 0.017643319442868233, + -0.009019716642796993, + -0.01957007125020027, + 0.047547634690999985, + -0.05574554204940796, + -0.0338800847530365, + 0.006640283856540918, + -0.014119847677648067, + -0.014010140672326088, + 0.030787141993641853, + 0.007004112936556339, + 0.0038476393092423677, + -0.0008765138918533921, + 0.004022468347102404, + -0.03070143237709999, + -0.036907926201820374, + 0.00282732374034822, + -0.0261483583599329, + 0.0406532846391201, + 0.038969799876213074, + -0.05139870196580887, + 0.029892917722463608, + -0.014565153047442436, + 0.026776418089866638, + -0.04024055600166321, + 0.02328810840845108, + -0.07073021680116653, + -0.0024484521709382534, + -0.0410705991089344, + 0.0029627878684550524, + -0.023167772218585014, + -0.014752610586583614, + -0.01577037014067173, + 0.03552497178316116, + -0.007384688593447208, + -0.02424142323434353, + -0.023323340341448784, + 0.010235020890831947, + -0.022886894643306732, + 0.0011422325624153018, + 0.014718148857355118, + 0.05509161576628685, + 0.03703847527503967, + -0.0029713830444961786, + -0.0333167240023613, + -0.0355193205177784, + -0.031602054834365845, + -0.04693380370736122, + 0.023505913093686104, + -0.0021039957646280527, + 0.015040487982332706, + -0.018299032002687454, + 0.016278717666864395, + -0.000153046305058524, + 0.028833653777837753, + 0.010118424892425537, + 0.006174151320010424, + -0.023373786360025406, + 0.0539090521633625, + -0.01147932093590498, + 0.014883499592542648, + -0.030296064913272858, + -0.008769168518483639, + -0.02190382033586502, + 0.01931932009756565, + -0.003545305924490094, + -0.01945066638290882, + 0.01252769771963358, + 0.012983005493879318, + 0.015690863132476807, + -0.017807159572839737, + 0.0016606379067525268, + 0.03253328427672386, + -0.018027838319540024, + 0.06140418350696564, + -0.02906525507569313, + 0.012569825164973736, + 0.04115666449069977, + 0.020907128229737282, + -0.00029863297822885215, + -0.0026221475563943386, + 0.019749566912651062, + -0.013241286389529705, + 0.011072039604187012, + 0.013515644706785679, + 0.04420889914035797, + 0.011221754364669323, + 0.010798945091664791, + -0.01119303423911333, + 0.013364925980567932, + -0.06206408888101578, + 0.004755513742566109, + 0.01242781151086092, + 0.08704725652933121, + -0.05138116329908371, + -0.023512445390224457, + -0.006274280603975058, + -0.018830375745892525, + 0.027292389422655106, + 0.00021554015984293073, + 0.022163227200508118, + 0.0015836615348234773, + -0.014775094576179981, + -0.034191813319921494, + 0.029470713809132576, + -0.0004800090682692826, + 0.029993724077939987, + -0.009175746701657772, + -0.028728945180773735, + -0.018898798152804375, + -0.010677180252969265, + 0.007886999286711216, + 0.0178427305072546, + -0.045162566006183624, + 0.0030216400045901537, + -0.04009537771344185, + 0.0036567957140505314, + 0.0008516819798387587, + -0.0360279381275177, + 0.045995086431503296, + -0.010327656753361225, + -0.006360900122672319, + 0.020565850660204887, + 0.003452559234574437, + 0.02943495661020279, + -0.025143790990114212, + -0.009794474579393864, + 0.0040171099826693535, + 0.018774958327412605, + -0.018831713125109673, + -0.006011979654431343, + -0.0202956460416317, + 0.054454561322927475, + 0.00354192778468132 + ], + "start_index": 0, + "end_index": 71, + "token_count": 22, + "file": "generador_de_tokens_aleatorios.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "23460de8-22b0-5954-b118-84427ca2fb86", + "_source": { + "text": "addParam(\"Alberto\",name)\nresult = \"Hello,\" + name\naddResult(result)", + "embedding": [ + -0.03565523400902748, + -0.019879156723618507, + -0.005241290666162968, + -0.028077252209186554, + -0.10496500879526138, + -0.02404443919658661, + -0.00957255344837904, + 0.022975845262408257, + -0.02314150333404541, + -0.032789625227451324, + 0.008453141897916794, + -0.06666231900453568, + -0.03219674155116081, + -0.005719786509871483, + -0.030956529080867767, + 0.04628513380885124, + -0.03804466500878334, + 0.019057517871260643, + 0.028495224192738533, + -0.005894247442483902, + -0.03128219395875931, + 0.025547638535499573, + -0.0019900996703654528, + 0.01350629422813654, + 0.011252681724727154, + -0.02054421603679657, + -0.057967960834503174, + 0.07674677670001984, + 0.024159839376807213, + -0.06181814521551132, + 0.00393270468339324, + -0.023337142542004585, + -0.06723304837942123, + 0.029277998954057693, + 0.017745573073625565, + -0.009302027523517609, + 0.003899131203070283, + -0.051267996430397034, + -0.017551859840750694, + 0.045422881841659546, + 0.05647224560379982, + -0.0067634317092597485, + 0.06671391427516937, + -0.007311685476452112, + 0.0028964963275939226, + 0.05962609127163887, + -0.0019008610397577286, + -0.0034785231109708548, + 0.0118839917704463, + 0.017671599984169006, + 0.0113662239164114, + 0.005691001657396555, + 0.02061537280678749, + 0.015171678736805916, + -0.00372704048641026, + -0.06765270233154297, + 0.03791869804263115, + 0.037602510303258896, + 0.01320986170321703, + -0.005801711231470108, + -0.030271116644144058, + 0.06876514852046967, + 0.025722792372107506, + -0.009893552400171757, + 0.026003718376159668, + -0.007939311675727367, + 0.015130181796848774, + 0.035128358751535416, + -0.07902806997299194, + 0.012254155240952969, + -0.019540881738066673, + -0.08133148401975632, + -0.026650285348296165, + 0.023121770471334457, + 0.009998742491006851, + 0.02643568441271782, + 0.03440888598561287, + -0.02234627865254879, + 0.018624471500515938, + -0.04139668121933937, + -0.009683435782790184, + 0.0209602452814579, + 0.04575572907924652, + -0.036471832543611526, + 0.03190763667225838, + 0.035842474550008774, + -0.014434227719902992, + -0.04987332969903946, + -0.058908313512802124, + -0.02182498760521412, + -0.005625630263239145, + 0.07169844210147858, + -0.02783038467168808, + -0.002867873990908265, + -0.017064020037651062, + -0.011858513578772545, + -0.023260483518242836, + 0.0807243138551712, + -0.008864853531122208, + 0.016488531604409218, + -0.04492457956075668, + -0.007491078693419695, + 0.019509728997945786, + 0.004436316899955273, + 0.05072423070669174, + 0.00045973414671607316, + -0.04977282136678696, + 0.019733691588044167, + -0.023546947166323662, + -0.01809551566839218, + 0.004878009669482708, + 0.026680175215005875, + 0.0190682802349329, + -0.016887927427887917, + 0.0032570003531873226, + -0.0198458731174469, + 0.06397635489702225, + -0.0039055226370692253, + -0.0027149950619786978, + -0.028533082455396652, + -0.01381759624928236, + -0.0364655964076519, + -0.0012503491016104817, + 0.005831397604197264, + -0.002825302304700017, + 0.0007325882324948907, + -0.018827034160494804, + -0.003657430177554488, + -0.0037272311747074127, + -0.023334486410021782, + 0.02481847256422043, + 0.04604501649737358, + -0.03451530262827873, + 0.023638220503926277, + 0.01859550178050995, + 0.018422508612275124, + 0.010332923382520676, + -0.014727256260812283, + 0.012945902533829212, + -0.005519495345652103, + -0.041818901896476746, + -0.003059351583942771, + 0.013071986846625805, + -0.0011673416011035442, + -0.002817146247252822, + 0.009964183904230595, + -0.009849305264651775, + 0.03338465839624405, + -0.001517997239716351, + 0.0060347034595906734, + 0.015678243711590767, + -0.01418099831789732, + 0.011728083714842796, + -0.020740674808621407, + -0.013766276650130749, + 0.054862622171640396, + 0.003263404592871666, + -0.02284403331577778, + -0.002508385805413127, + 0.003569594817236066, + 0.00950920581817627, + 0.008064408786594868, + -0.012106092646718025, + -0.03647565841674805, + -0.017624346539378166, + 0.027517905458807945, + -0.06159432232379913, + -0.017859449610114098, + -0.016151094809174538, + 0.022751744836568832, + 0.03159746900200844, + 0.019391175359487534, + -0.03538243845105171, + 0.01211162656545639, + -0.005682243034243584, + -0.004082379397004843, + -0.03267820179462433, + 0.006499821320176125, + 0.0271732397377491, + -0.01311801839619875, + -0.013952679000794888, + -0.025783812627196312, + -0.0029936591163277626, + 0.004741130396723747, + -0.00774369714781642, + 0.06646007299423218, + 0.0006130253314040601, + 0.030024152249097824, + 0.012947086244821548, + -0.022829808294773102, + -0.02209279127418995, + 0.006851179525256157, + -0.022000951692461967, + 0.006353422999382019, + -0.03424643352627754, + -0.014877383597195148, + 0.03676574304699898, + -0.00558682344853878, + -0.007097169756889343, + -0.007082479540258646, + -0.017489643767476082, + -0.005377332679927349, + 0.03221631050109863, + -0.004327359609305859, + -0.020476318895816803, + 0.013729275204241276, + 0.00353135890327394, + 0.00993065070360899, + -0.016269544139504433, + 0.01395678985863924, + 0.008436201140284538, + 0.012508763931691647, + 0.010954639874398708, + -0.03997939079999924, + -0.0035324948839843273, + 0.018731947988271713, + -0.0345199815928936, + 0.005571889691054821, + 0.011990640312433243, + 0.05502729490399361, + 0.0026583154685795307, + 0.0072674681432545185, + -0.009819217957556248, + 0.016254080459475517, + -0.004672300536185503, + -0.05524056777358055, + 0.005657622590661049, + -0.022374043241143227, + 0.02249203436076641, + 0.006527976132929325, + -0.01830979622900486, + 0.028011566027998924, + 0.0421147346496582, + -0.006672310642898083, + 0.01692149043083191, + -0.0023581734858453274, + 0.009620162658393383, + -0.006159566808491945, + 0.01965903863310814, + 0.019435832276940346, + -0.006696167401969433, + 0.015000293031334877, + 0.0028323831502348185, + -0.01856132782995701, + -0.02195398136973381, + -0.028436528518795967, + -0.03900085389614105, + 0.05276364088058472, + 0.013569562695920467, + -0.014624527655541897, + -0.01005455944687128, + -0.02059091068804264, + -0.03241334110498428, + 0.006244158837944269, + 0.04490109160542488, + -0.0008184140315279365, + 0.035648979246616364, + -0.03370123356580734, + 0.03172677755355835, + -0.021371567621827126, + -0.015310400165617466, + -0.029429713264107704, + 0.02419854700565338, + 0.03691690415143967, + 0.01884474977850914, + 0.008155662566423416, + 0.013284868560731411, + 0.014785116538405418, + -0.00040831364458426833, + -0.0026134266518056393, + -0.0022745071910321712, + 0.014163213782012463, + -0.015264447778463364, + -0.05229669436812401, + 0.005973277613520622, + -0.008532191626727581, + 0.005102813243865967, + -0.060953907668590546, + 0.03398633003234863, + 0.0014677955769002438, + 0.041281234472990036, + 0.003148701973259449, + -0.04068749025464058, + -0.009333763271570206, + 0.008718733675777912, + 0.00913484487682581, + 0.04713158681988716, + -0.014625273644924164, + 0.058790624141693115, + 0.015616479329764843, + -0.00883890874683857, + 0.008623149245977402, + 0.020715920254588127, + 0.046208690851926804, + 0.035593364387750626, + -0.03936057165265083, + -0.005844990722835064, + 0.03814586624503136, + 0.06312788277864456, + -0.013856075704097748, + 0.01816476695239544, + -0.029346661642193794, + 0.04122232273221016, + -0.03021053969860077, + -0.005800195969641209, + -0.004225998651236296, + 0.0537857711315155, + -0.009599067270755768, + 0.0042860545217990875, + -0.0026562276761978865, + 0.041593849658966064, + 0.016530394554138184, + -0.0013127382844686508, + -0.02972130849957466, + -0.030857477337121964, + 0.0013219567481428385, + -0.08457885682582855, + 0.0289418026804924, + 0.022047055885195732, + 0.018672965466976166, + 0.01434644777327776, + -0.008328821510076523, + 0.0028283146675676107, + -0.07130279392004013, + 0.017176393419504166, + 0.052768558263778687, + -0.07337507605552673, + -0.03113117814064026, + -0.014306784607470036, + -0.010835172608494759, + -0.009414758533239365, + 0.008374525234103203, + 0.025398369878530502, + -0.039201050996780396, + -0.008613456971943378, + 0.005455954931676388, + 0.04746994003653526, + 0.020212996751070023, + 0.017116645351052284, + -0.01186331920325756, + 0.019190214574337006, + 0.009383708238601685, + -0.004751178901642561, + 0.015398037619888783, + 0.04458191245794296, + -0.03909273445606232, + -0.03055356815457344, + -0.05073121190071106, + -0.03386344760656357, + -0.024454502388834953, + -0.033118393272161484, + 0.03839488700032234, + 0.028073107823729515, + -0.03594140335917473, + -0.0258712787181139, + 0.04608293995261192, + 0.0022362079471349716, + 0.00035202421713620424, + -0.03279917687177658, + 0.03893067687749863, + -0.008441475220024586, + -0.05068075284361839, + 0.01750929467380047, + -0.009216412901878357, + -0.027951311320066452, + 0.018714768812060356, + -0.04232129454612732, + 0.005183620844036341, + 0.04699146747589111, + -0.007241725455969572, + -0.049091823399066925, + -0.03737649321556091, + 0.01501860748976469, + -0.010368519462645054, + 0.03381050005555153, + 0.016419116407632828, + 0.009508451446890831, + 0.00376067659817636, + 0.013737896457314491, + 0.0506124310195446, + -0.0056220293045043945, + -0.0305797066539526, + -0.03357010707259178, + -0.04616242274641991, + 0.010472250171005726, + -0.022975267842411995, + 0.004528596997261047, + -0.049409616738557816, + 0.02334767021238804, + 0.005100473295897245, + 0.01872815191745758, + -0.00558235589414835, + 0.014341626316308975, + -0.022112103179097176, + 0.03185085952281952, + 0.013274132274091244, + -0.03408009931445122, + -0.023544540628790855, + 0.023483850061893463, + 0.037421438843011856, + 0.040419917553663254, + 0.007667989935725927, + -0.0013763981405645609, + 0.06251200288534164, + 0.029713327065110207, + 0.008056366816163063, + -0.018639253452420235, + -0.006760459393262863, + 0.06263250857591629, + 0.031991977244615555, + 0.09419382363557816, + 0.0120596494525671, + -0.03761672601103783, + -0.012202383019030094, + 0.03939441591501236, + -0.0033925275783985853, + 0.05676685646176338, + -0.04873835667967796, + 0.02997094765305519, + -0.02424570545554161, + 0.03020898438990116, + 0.01741546019911766, + 0.01872960850596428, + 0.0036594721022993326, + -0.03334655612707138, + -0.002542430767789483, + -0.05936860665678978, + -0.04539567232131958, + -0.015802407637238503, + 0.09095634520053864, + 0.021215761080384254, + -0.011326408013701439, + 0.028227491304278374, + 0.010672042146325111, + -0.012448199093341827, + 0.02435922436416149, + -0.003634757362306118, + 0.021359898149967194, + 0.03145131468772888, + -0.02888798527419567, + -0.029511572793126106, + 0.09118811786174774, + -0.007078786380589008, + 0.02660762518644333, + -0.05985436215996742, + -0.013879646547138691, + -0.027080204337835312, + 0.03670087456703186, + -0.0029021750669926405, + -0.03492148220539093, + -0.029464133083820343, + -0.007123890798538923, + 0.024852603673934937, + 0.04182935133576393, + 0.042092278599739075, + -0.06829152256250381, + -0.013066042214632034, + 0.01981436274945736, + 0.06106128916144371, + 0.004742112010717392, + 0.04727959260344505, + 0.023822739720344543, + 0.02425471693277359, + 0.0759749561548233, + -0.05249697342514992, + 0.011288108304142952, + 0.055750396102666855, + 0.012856279499828815, + -0.02053876966238022, + 0.017344573512673378, + 0.025711052119731903, + -0.018311960622668266, + 0.015766875818371773, + -0.009792618453502655, + 0.0463145412504673, + 0.008213439956307411, + -0.006882977671921253, + -0.05906069651246071, + 0.051958102732896805, + -0.01959454081952572, + -0.03039548173546791, + 0.03349560499191284, + 0.007985793054103851, + -0.0002612393582239747, + 0.03821694850921631, + -0.045447345823049545, + -0.030635787174105644, + -0.0216183103621006, + -0.03051465004682541, + 0.02872745878994465, + 0.018526574596762657, + 0.05211126059293747, + 0.016067005693912506, + -0.03389734774827957, + 0.016896288841962814, + -0.06744804233312607, + 0.01553631667047739, + -0.0708082914352417, + -0.052744634449481964, + 0.030475949868559837, + -0.07090707123279572, + -0.011257220059633255, + 0.03306788206100464, + 0.09895269572734833, + -0.024755168706178665, + -0.01758776232600212, + -0.03268866613507271, + -0.07000862807035446, + 0.03166448324918747, + 0.035123310983181, + -0.0165164303034544, + -0.015052040107548237, + 0.028343185782432556, + 0.006611469201743603, + 0.021895674988627434, + 0.03186619281768799, + 0.04594003036618233, + 0.010690638795495033, + -0.019230622798204422, + 0.00842222012579441, + -0.0026687101926654577, + 0.008593972772359848, + 0.022736912593245506, + 0.04052981361746788, + 0.01084520947188139, + -0.03499121591448784, + -0.004914742428809404, + -0.02667737565934658, + 0.062490832060575485, + 0.03432929515838623, + 0.013247539289295673, + -0.025044819340109825, + 0.011615512892603874, + -0.035622864961624146, + 0.028365204110741615, + -0.006725400686264038, + -0.007474100217223167, + -0.010042338632047176, + -0.021152054890990257, + 0.07324105501174927, + -0.00022264625295065343, + -0.07489316910505295, + -0.008771958760917187, + -0.015102687291800976, + -0.0022398289293050766, + -0.010312027297914028, + 0.007020107936114073, + 0.059053536504507065, + -0.050573643296957016, + 0.017718959599733353, + 0.033308181911706924, + 0.020162494853138924, + 0.033923011273145676, + 0.002489742822945118, + 0.03310288488864899, + 0.006457061041146517, + -0.00901960488408804, + 8.986108150565997e-05, + 0.012407921254634857, + -0.009061859920620918, + -0.04535462334752083, + -0.003548706416040659, + -0.01990048959851265, + 0.008654790930449963, + 0.02546394243836403, + -0.056115079671144485, + -0.028411071747541428, + -0.0046187774278223515, + 0.032240793108940125, + 0.038838308304548264, + 0.014648779295384884, + -0.004431069828569889, + 0.03010537661612034, + -0.023046892136335373, + -0.021912936121225357, + -0.0520649254322052, + 0.0199519582092762, + 0.03343067318201065, + -0.0006678666104562581, + -0.011221528984606266, + -0.0062639592215418816, + -0.023753559216856956, + -0.010810154490172863, + -0.012224910780787468, + -0.07271191477775574, + 0.0023485065903514624, + 0.028296230360865593, + 0.014023634605109692, + -0.0048003713600337505, + -0.03638897091150284, + -0.06557292491197586, + -0.028947265818715096, + 0.015139325521886349, + -0.007479929830878973, + 0.015954498201608658, + -0.010873932391405106, + -0.029598239809274673, + 0.010176832787692547, + 0.012778110802173615, + 0.013706152327358723, + 0.019669143483042717, + 0.030863629654049873, + 0.01816779375076294, + 0.030991893261671066, + -0.007404687814414501, + 0.0362091138958931, + -0.01899721659719944, + -0.04359898343682289, + -0.010252205654978752, + 0.04798120632767677, + 0.011143144220113754, + 0.0017724912613630295, + -0.00015586386143695563, + 0.009432842023670673, + -0.02012169361114502, + 0.003871377557516098, + -0.039876267313957214, + 0.00010033641592599452, + 0.01394406147301197, + -0.016138888895511627, + -0.016571443527936935, + -0.017655517905950546, + -0.0076734088361263275, + 0.05804978311061859, + 0.0037956759333610535, + -0.005764063913375139, + -0.05098700150847435, + 0.024851728230714798, + -0.0041426317766308784, + -0.03506527096033096, + 0.015207435004413128, + -0.04671841859817505, + -0.09230697154998779, + -0.0007383853080682456, + 0.010143854655325413, + 0.06392791122198105, + 0.01582241617143154, + -0.03423767164349556, + 0.000518936722073704, + -0.03470785915851593, + 0.0005151759833097458, + -0.05196636542677879, + 0.008422475308179855, + 0.004040079656988382, + -0.044799648225307465, + 0.02364014834165573, + 0.04984152689576149, + -0.03447427228093147, + 0.03640652447938919, + -0.020082395523786545, + -0.015411272644996643, + -0.017206819728016853, + 0.009158956818282604, + -0.024422284215688705, + -0.0328168161213398, + 0.017277082428336143, + -0.04029912129044533, + 0.0011538563994690776, + 0.023524431511759758, + 0.026386413723230362, + -0.011372050270438194, + -0.030848428606987, + 0.04388728737831116, + -0.05046909302473068, + -0.05551214516162872, + -0.012286468409001827, + 0.0911521315574646, + 0.024512331932783127, + 0.018213095143437386, + -0.04103130102157593, + -0.013691511005163193, + -0.08119340986013412, + 0.0011387817794457078, + -0.04008329659700394, + 0.006618096958845854, + 0.0039046641904860735, + -0.019184362143278122, + 0.017050376161932945, + -0.04319872334599495, + 0.019353875890374184, + -0.031176837161183357, + -0.013698129914700985, + 0.009469455108046532, + -0.013276208192110062, + -0.05479662865400314, + 0.009829260408878326, + -0.010640153661370277, + 0.05995313823223114, + -0.03781929984688759, + -0.02285808138549328, + 0.015456296503543854, + -0.03281940892338753, + 0.015102514997124672, + 0.016198772937059402, + 0.012933594174683094, + 0.022341081872582436, + -0.013334222137928009, + 0.040295861661434174, + -0.024958889931440353, + 0.03711319714784622, + 0.0008898708038032055, + -0.014889783225953579, + 0.02725982666015625, + -0.029117412865161896, + 0.007078461814671755, + 0.025177577510476112, + -0.010506193153560162, + 0.017056306824088097, + -0.005676820874214172, + -0.01831202395260334, + 0.007289200555533171, + -0.01694081351161003, + -0.07065201550722122, + -0.012163951061666012, + 0.028509706258773804, + -0.0040754214860498905, + -0.03986428678035736, + -0.023516276851296425, + 0.006690172478556633, + -0.014298303984105587, + -0.018118375912308693, + 0.005463534966111183, + 0.0045194183476269245, + 0.02210092358291149, + -0.029434742406010628, + -0.040137726813554764, + 0.0259998831897974, + -0.0033857368398457766, + 0.04637499153614044, + 0.03576209768652916, + 0.0232625063508749, + -0.02574845217168331, + 0.009918028488755226, + 0.010161338374018669, + 0.054057035595178604, + -0.010953355580568314, + 0.024410530924797058, + -0.04760706424713135, + -0.018595736473798752, + 0.003775202203541994, + -0.0038197492249310017, + 0.031411923468112946, + 0.010298119857907295, + -0.030979854986071587, + 0.0036997045390307903, + 0.04056548699736595, + -0.00820501334965229, + -0.03703935444355011, + 0.010049254633486271, + -0.044644780457019806, + 0.0017333965515717864, + -0.027106674388051033, + -0.03045005351305008, + -0.00795802753418684, + 0.024857351556420326, + -0.04018201306462288, + 0.036156896501779556, + 0.055513378232717514, + 0.0012096274876967072, + -0.0011210031807422638, + -0.035165224224328995, + -0.004113086964935064, + 0.034792039543390274, + -0.0250463355332613, + 0.08289100974798203, + -0.006803124211728573, + 0.07227891683578491, + -0.03705266863107681, + -0.02828035317361355, + 0.019576814025640488, + 0.006772638764232397, + -0.0022167591378092766, + -0.026282068341970444, + 0.017841065302491188, + -0.012772000394761562, + -0.03652562201023102, + -0.02479192242026329, + 0.03423303738236427, + -0.037129614502191544, + 0.03819585591554642, + -0.031139306724071503, + 0.005604134872555733, + 0.04880483075976372, + -0.012287839315831661, + 0.01510690338909626, + 0.027717286720871925, + 0.01259283535182476, + 0.009164579212665558, + 0.010554835200309753, + 0.05502531677484512, + 0.007475200574845076, + 0.019544493407011032, + -0.03494313359260559, + 0.03150947764515877, + 0.01239998359233141, + 0.06189572438597679, + 0.004399634897708893, + 0.05504411458969116, + 0.004300315398722887, + 0.010456154122948647, + -0.03220812976360321, + 0.03620362654328346, + 0.009325454942882061, + -0.01339518278837204, + 0.055290691554546356, + -0.010211807675659657, + -0.015741858631372452, + 0.006638041231781244, + -0.04206514358520508, + 0.0023423931561410427, + 0.0041273897513747215, + 0.041452810168266296, + -0.04219220206141472, + 0.011642499826848507, + -0.009309401735663414, + 0.006656582932919264, + -0.05190150439739227, + -0.055429477244615555, + -0.009638670831918716, + 0.012929278425872326, + -0.06642786413431168, + 0.03558572381734848, + 0.05326993763446808, + -0.017398269847035408, + -0.02165033668279648, + 0.020308807492256165, + 0.028445463627576828, + 0.02360779605805874, + -0.02957349270582199, + 0.033649858087301254, + -0.008386539295315742, + -0.0309897493571043, + 0.0152821633964777, + -0.02939409762620926, + 0.06478484719991684, + -0.049588095396757126, + 0.04024352878332138, + 0.018238253891468048, + 0.015106192789971828, + 0.06745734810829163, + 0.0005249361274763942, + 0.01957857795059681, + -0.00261198403313756, + 0.005278229713439941, + 0.044552017003297806, + 0.061853766441345215, + 0.010874740779399872, + -0.028211655095219612, + 0.028247613459825516, + 0.050134316086769104, + -0.04495609551668167, + -0.01858225092291832, + -0.019598517566919327, + -0.012233011424541473, + -0.026483852416276932, + -0.0008148004417307675, + 0.006826578639447689, + 0.020712953060865402, + -0.10522312670946121, + 0.02906639315187931, + -0.007482196670025587, + 0.002243582159280777, + -0.046766601502895355, + -0.058059465140104294, + 0.0011847714195027947, + 0.05973602831363678, + -0.0636804848909378, + 0.011476774699985981, + 0.028083181008696556, + -0.009015146642923355, + -0.028939366340637207, + -0.008961925283074379, + -0.006346690934151411, + 0.043521489948034286, + 0.017481930553913116, + -0.010694310069084167, + -0.02084607444703579, + 0.01661715656518936, + -0.009050488471984863, + -0.00879946630448103, + 0.018693970516324043, + 0.014197724871337414, + 0.005634691100567579, + 0.023704027757048607, + -0.04502534121274948, + 0.014041375368833542, + -0.0345395989716053, + 0.03743981942534447, + -0.001981200650334358, + -0.034806642681360245, + -0.024116290733218193, + -0.012981251813471317, + 0.0005053342902101576, + 0.01646837219595909, + -0.07312124222517014, + -0.03355671837925911, + 0.036830127239227295, + 0.0179771538823843, + 0.0019200644455850124, + 0.03032708913087845, + 0.004632764495909214, + -0.06220463290810585, + 0.02076004445552826, + -0.04169816896319389, + 0.013683316297829151, + -0.037291619926691055, + 0.07578977197408676, + -0.044638894498348236, + 0.020029982551932335, + 0.037860941141843796, + -0.05628928169608116, + 0.0014617142733186483, + 0.04375716671347618, + -0.021740002557635307, + 0.002233444945886731, + 0.008826937526464462, + -0.021289387717843056, + -0.016042644158005714, + -0.02080131135880947, + 0.04162582755088806, + 0.014478117227554321, + -0.05966096743941307, + -0.013519350439310074, + 0.017167169600725174, + 0.015406828373670578, + -0.05845582112669945, + 0.021011998876929283, + 0.032892338931560516, + 0.01849234662950039, + 0.02388194389641285, + -0.00627856096252799, + 0.06489473581314087, + 0.08370374888181686, + -0.011088645085692406, + -0.015581674873828888, + -0.0013375631533563137, + 0.0029987827874720097, + 0.005349344573915005, + -0.010467302054166794, + 0.012319368310272694, + -0.01107600424438715, + -0.01456337422132492, + -0.008027513511478901, + 0.013495384715497494, + 0.008183035999536514, + -0.009989649057388306, + 0.030637305229902267, + 0.025145728141069412, + -0.035876233130693436, + -0.0189382154494524, + -0.0025130007416009903, + 0.001629119971767068, + 0.009081331081688404, + 0.044154249131679535, + -0.00435815891250968, + -0.08353246748447418, + -0.05075368285179138, + 0.02288481779396534, + -0.02481689676642418, + -0.0156005984172225, + 0.0025941606145352125, + -0.008494769223034382, + -0.017673486843705177, + 0.040980760008096695, + 0.07126618921756744, + -0.04320302978157997, + -0.06917901337146759, + -0.023695863783359528, + -0.009970523416996002, + 0.003200795967131853, + 0.0018068394856527448, + 0.03662898391485214, + 0.023472145199775696, + -0.049944572150707245, + 0.02766682766377926, + 0.022543953731656075, + 0.0033214185386896133, + 0.009540603496134281, + -0.0010416118893772364, + -0.032207537442445755, + -0.035973258316516876, + -0.007810788694769144, + 0.054337456822395325, + -0.018579768016934395, + -0.06659844517707825, + -0.06180204451084137, + 0.0303506962954998, + -0.01875322312116623, + -0.04916909337043762, + -0.00327118206769228, + 0.019353333860635757, + 0.00812510959804058, + -0.006855576299130917, + -0.04597276449203491, + -0.053905852138996124, + 0.06301086395978928, + -0.017288297414779663, + 0.021406706422567368, + -0.008150340057909489, + -0.04045494273304939, + -0.015038318932056427, + 0.022418880835175514, + 0.008033914491534233, + 0.03465437889099121, + -0.007535189390182495, + 0.018917735666036606, + -0.04171368107199669, + 0.023412035778164864, + -0.04839084669947624, + -0.027288289740681648, + 0.005587130319327116, + 0.013947718776762486, + -0.005929876118898392, + -0.028555400669574738, + -0.003766426583752036, + -0.02624303475022316, + -0.0030522390734404325, + 0.006455759983509779, + 0.029528269544243813, + -0.036434367299079895, + -0.04803615063428879, + -0.022616902366280556, + 0.03107261285185814, + -0.008207334205508232 + ], + "start_index": 0, + "end_index": 67, + "token_count": 20, + "file": "hello_world.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "8aa0575d-9f49-546a-a793-412db2c2fdc5", + "_source": { + "text": "function suma(a, b){\n total = a + b\n return(total)\n }\nresultado = suma(10, 20)\naddResult(resultado)", + "embedding": [ + -0.01050086971372366, + -0.01967274770140648, + -0.00674370676279068, + -0.07287387549877167, + -0.008934064768254757, + 0.050190381705760956, + 0.000927175278775394, + -0.016080709174275398, + 0.015886329114437103, + -0.006495725363492966, + -0.019966227933764458, + -0.03054765798151493, + 0.019615691155195236, + -0.006830597762018442, + -0.013789786957204342, + 0.03060508333146572, + -0.035066157579422, + -0.006122494116425514, + 0.012720037251710892, + 0.02749493345618248, + -0.06905727833509445, + -3.5616019886219874e-05, + -0.002668716013431549, + 0.0013547748094424605, + -0.0037897848524153233, + 0.0343593955039978, + -0.03395983204245567, + 0.06665730476379395, + 0.024683473631739616, + -0.04121216759085655, + 0.012577959336340427, + -0.011983913369476795, + -0.05591597408056259, + -0.0216569472104311, + 0.01947852037847042, + -0.010732169263064861, + 0.07330849021673203, + -0.04805910959839821, + 0.009031101129949093, + -0.004952274262905121, + 0.0030570565722882748, + 0.046419065445661545, + 0.031461622565984726, + -0.01841738447546959, + 0.03071969375014305, + -0.02372559905052185, + 0.030088791623711586, + -0.0313640795648098, + 0.07793876528739929, + -0.006549421232193708, + -0.011562181636691093, + 0.007063962984830141, + 0.033892955631017685, + -0.008415204472839832, + -0.005442886613309383, + -0.016260715201497078, + 0.028854962438344955, + 0.0017838227795436978, + 0.015705101191997528, + -0.006826555822044611, + -0.0407266728579998, + 0.004780404735356569, + -0.03338583558797836, + -0.011590901762247086, + 0.021379990503191948, + 0.0007458398467861116, + -0.031033199280500412, + 0.016125276684761047, + -0.0973639115691185, + -0.027375247329473495, + -0.01779131218791008, + -0.0650687888264656, + -0.04798762872815132, + -0.0016377553110942245, + 0.012357755564153194, + 0.034004587680101395, + 0.05497941002249718, + -0.05866743251681328, + 0.015495347790420055, + -0.04665607959032059, + 0.01903313212096691, + 0.008259410038590431, + 0.018151791766285896, + 0.02046317048370838, + -0.012379676103591919, + 0.06116574630141258, + -0.039358947426080704, + -0.009008276276290417, + 0.01101663988083601, + -0.015572642907500267, + -0.012175390496850014, + 0.0675867423415184, + -0.07825572043657303, + 0.02521689608693123, + -0.0035534838680177927, + -0.012277470901608467, + 0.019871359691023827, + 0.06069372594356537, + -0.014619407244026661, + 0.018178239464759827, + -0.030805939808487892, + -0.0024252121802419424, + -0.017230072990059853, + -0.019899535924196243, + 0.0006728980224579573, + 0.01985229179263115, + -0.08581887185573578, + 0.03130089119076729, + -0.02762291207909584, + -0.023951618000864983, + -0.0013880768092349172, + -0.0015405858866870403, + -0.03803066164255142, + 0.013554228469729424, + -0.021070579066872597, + -0.012990272603929043, + 0.04962838813662529, + 0.027897991240024567, + 0.027746601030230522, + 0.010692935436964035, + 0.027825161814689636, + -0.049246519804000854, + 0.006856448482722044, + -0.002135567832738161, + -0.07367676496505737, + 0.010488513857126236, + -0.032058797776699066, + 0.006980468053370714, + 0.019874466583132744, + -0.017170175909996033, + -0.015852030366659164, + -0.004783615004271269, + -0.008784893900156021, + 0.001964195165783167, + -0.0002830872545018792, + 0.017875732854008675, + -0.04113951325416565, + -0.007026451639831066, + 0.041203562170267105, + 0.020718665793538094, + 0.002761425217613578, + 0.0012414241209626198, + 0.013459195382893085, + -0.010735760442912579, + 0.014715131372213364, + -0.002105716383084655, + 0.0080310283228755, + 0.03718836233019829, + -0.00994513276964426, + 0.047471046447753906, + 0.00016982504166662693, + 5.7637429563328624e-05, + 0.037743330001831055, + -0.005979188717901707, + -0.04026799649000168, + 0.022697964683175087, + 0.01906909979879856, + -0.00464106909930706, + -0.002558344742283225, + 0.030784599483013153, + -0.005751944612711668, + 0.008931267075240612, + 0.002484869910404086, + -0.013223257847130299, + -0.018322959542274475, + 0.04559601843357086, + -0.04180392995476723, + -0.0246841162443161, + -0.07355311512947083, + -0.03400104492902756, + 0.013014701195061207, + -0.004635667894035578, + -0.025788623839616776, + 0.027059532701969147, + 0.005046089645475149, + -0.043978285044431686, + -0.019157562404870987, + -0.035451047122478485, + 0.0059777782298624516, + -0.023180032148957253, + 0.012872595340013504, + 0.011724657379090786, + 0.006543597672134638, + 0.02598792128264904, + 0.0012680887011811137, + 0.0823010578751564, + 0.02131439559161663, + -0.0024214095901697874, + -0.03219718486070633, + -0.006339686457067728, + 0.016476323828101158, + 0.011037485674023628, + -0.02655770629644394, + -0.00940930936485529, + -0.021724499762058258, + -0.04039067029953003, + -0.02894062176346779, + -9.705557022243738e-05, + 0.00014248452498577535, + 0.0008927264134399593, + -0.01711735501885414, + -0.027678247541189194, + 0.014885629527270794, + 0.015999875962734222, + -0.016428012400865555, + -0.008764117024838924, + 0.03294039145112038, + 0.04465462639927864, + -0.017619477584958076, + 0.013074581511318684, + -0.016279712319374084, + -0.009371157735586166, + -0.025667762383818626, + -0.07422328740358353, + 0.002276596613228321, + -0.01853351481258869, + -0.02031802013516426, + 0.02871721424162388, + -0.005750636104494333, + 0.007153581827878952, + 0.03538268059492111, + 0.035625677555799484, + -0.05317343771457672, + 0.02364305406808853, + 0.04892943799495697, + -0.045666683465242386, + 0.017310816794633865, + -0.028542891144752502, + 0.002516410546377301, + 0.005183407571166754, + 0.05045131593942642, + -0.06792033463716507, + 0.02301388792693615, + 0.01573818176984787, + 0.03520575165748596, + 0.021869931370019913, + -0.013643148355185986, + -0.008028820157051086, + 0.05106274411082268, + -0.002188084414228797, + -0.0035178340040147305, + -0.005976946093142033, + 0.004022491630166769, + 0.013975705951452255, + -0.016802530735731125, + 0.0024654085282236338, + -0.017985006794333458, + 0.030592910945415497, + -0.014201910234987736, + 0.009414262138307095, + 0.03648459166288376, + 0.04287189245223999, + -0.053930141031742096, + 0.04135218635201454, + 0.02685241773724556, + -0.024156438186764717, + 0.00843760184943676, + 0.00952721107751131, + 0.0031636382918804884, + -0.025833267718553543, + 0.008653055876493454, + -0.015265525318682194, + -0.009305514395236969, + 0.0006620316416956484, + 0.05349034443497658, + -0.0034453487023711205, + -0.006838199216872454, + -0.03128977119922638, + 0.01211392693221569, + -0.022284764796495438, + 0.019763514399528503, + 0.021755581721663475, + -0.0074930270202457905, + -0.03559929132461548, + 0.006908223498612642, + 0.03182698413729668, + 0.018146680667996407, + -0.04283222183585167, + 0.003512401832267642, + -0.058580752462148666, + -0.006159338168799877, + -0.026971232146024704, + 0.01479161437600851, + 0.011210269294679165, + 0.019412469118833542, + 0.021459877490997314, + 0.015035462565720081, + 0.00532580865547061, + -0.005103823263198137, + 0.032761212438344955, + 0.03665805235505104, + 0.04822803661227226, + -0.020426729694008827, + 0.02879985421895981, + -0.002917082281783223, + 0.04734519496560097, + 0.0042737568728625774, + 0.04126589372754097, + 0.017657414078712463, + -0.040430374443531036, + 0.027517950162291527, + -0.004931856412440538, + -0.011123710311949253, + -0.004378830548375845, + 0.004718586336821318, + -0.014497610740363598, + 0.03608240559697151, + 0.007486528716981411, + -0.001629306934773922, + -0.027124574407935143, + 0.048924632370471954, + -0.01129227690398693, + -0.01657143607735634, + -0.05218790844082832, + 0.008027722127735615, + 0.007252871058881283, + -0.03950272127985954, + 0.030338400974869728, + 0.03916682302951813, + -0.028697140514850616, + 0.0064126551151275635, + -0.027424795553088188, + 0.015795636922121048, + -0.023038599640130997, + 0.06577667593955994, + -0.017824722453951836, + -0.06595489382743835, + 0.04996925964951515, + 0.01747175306081772, + -0.0548010990023613, + 0.03024919703602791, + 0.02452673390507698, + 0.06401483714580536, + -0.020538466051220894, + -0.01568637602031231, + -0.0036434049252420664, + 0.021268755197525024, + 0.001315204775892198, + 0.029862338677048683, + 0.022097215056419373, + 0.023347297683358192, + 0.025238001719117165, + -0.06335670500993729, + -8.265867654699832e-05, + -0.0021388574969023466, + -0.011869888752698898, + -0.02887803129851818, + -0.0776122584939003, + 0.027071034535765648, + 0.021775299683213234, + -0.05806143581867218, + -0.029107140377163887, + 0.024897968396544456, + -0.030300190672278404, + -0.017062703147530556, + -0.01283798087388277, + 0.02118799090385437, + 0.008256404660642147, + -0.0013584879925474524, + -0.0008296908345073462, + 0.006086576730012894, + -0.0018033605301752687, + 0.0233614519238472, + -0.0010843300260603428, + -0.030849609524011612, + 0.06487832218408585, + -0.017847049981355667, + -0.05497683212161064, + 0.04266642406582832, + -0.07193459570407867, + -0.10271261632442474, + -0.016907956451177597, + 0.042423147708177567, + 0.05396341532468796, + 0.1064685806632042, + 0.0012413648655638099, + 0.013853184878826141, + 0.05656826123595238, + -0.009273715317249298, + 0.10069311410188675, + 0.007549741305410862, + 0.0030587217770516872, + -0.010201958939433098, + -0.015223684720695019, + -0.029349252581596375, + 0.042129337787628174, + -0.013508356176316738, + -0.051589902490377426, + 0.027770988643169403, + -0.00884629413485527, + 0.024658963084220886, + -0.022185882553458214, + 0.010336985811591148, + -0.027553195133805275, + 0.034829091280698776, + 0.00461091473698616, + -0.035634614527225494, + 0.0022069495171308517, + -0.03173959627747536, + 0.017014101147651672, + 0.014966819435358047, + 0.025110986083745956, + -0.03287568315863609, + 0.025635946542024612, + -0.010527336038649082, + 0.0055578602477908134, + -0.06259085237979889, + -0.019237428903579712, + 7.014448783593252e-05, + -0.009055706672370434, + 0.08901013433933258, + -0.02724619209766388, + 0.026141107082366943, + 0.00037378445267677307, + 0.013675762340426445, + 0.019110871478915215, + 0.02760390006005764, + -0.0643257275223732, + -0.018422527238726616, + -0.04377521574497223, + -0.0341421477496624, + 0.04789183288812637, + -0.062124382704496384, + 0.02496998757123947, + -0.05212175101041794, + 0.024983571842312813, + -0.060344453901052475, + -0.051796749234199524, + -0.020219210535287857, + 0.09669140726327896, + -0.01513761468231678, + -0.056301187723875046, + 0.04668690264225006, + -0.041619960218667984, + -0.035201579332351685, + 0.005304374732077122, + -0.007194008678197861, + 0.027314776554703712, + 0.0003783609136007726, + -0.01314772292971611, + 0.020211514085531235, + 0.0446169488132, + 0.01214909739792347, + 0.0008555515087209642, + -0.04746822640299797, + -0.0393904373049736, + -0.023447850719094276, + 0.03880567103624344, + 0.021503567695617676, + -0.05252334102988243, + -0.01168710645288229, + 0.025161774829030037, + -0.0020158258266747, + 0.04159495234489441, + -0.02143651619553566, + -0.04569251835346222, + -0.02031840570271015, + -0.015890154987573624, + 0.040271878242492676, + 0.00277533452026546, + 0.03862755000591278, + 0.006279739551246166, + -0.02608557604253292, + -0.0073722549714148045, + -0.06048686429858208, + 0.018048403784632683, + -0.027480488643050194, + -0.0023229760117828846, + -0.019773531705141068, + -0.026731174439191818, + 0.06627432256937027, + -0.001335923676379025, + -0.008788722567260265, + -0.05704382434487343, + 0.0002555685641709715, + -0.003518009092658758, + -0.04792002588510513, + 0.034123312681913376, + -0.03535504639148712, + 0.021426647901535034, + -0.054073769599199295, + -0.0305043775588274, + -0.006054690573364496, + -0.01701914519071579, + 0.0711226612329483, + -0.04067329689860344, + -0.019738251343369484, + -0.033901944756507874, + -0.008208289742469788, + -0.02716299146413803, + -0.01811191253364086, + 0.015339839272201061, + -0.015903549268841743, + 0.002932653296738863, + 0.007038939278572798, + -0.06762871891260147, + -0.010081939399242401, + -0.0200008787214756, + -0.0872839093208313, + 0.001107498537749052, + -0.032491616904735565, + -0.027376199141144753, + 0.018255071714520454, + 0.06000278890132904, + 0.017065852880477905, + -0.021494535729289055, + -0.04281828552484512, + -0.016343854367733, + 0.02418512850999832, + -0.006652443204075098, + 0.01556319184601307, + 0.0020201262086629868, + -0.011672078631818295, + 0.02343975007534027, + -0.05744455009698868, + -0.024176495149731636, + 0.009678064845502377, + -0.02566765807569027, + 0.01645698957145214, + 0.062154896557331085, + 0.02440069243311882, + 0.03282998874783516, + 0.07306140661239624, + 0.019894404336810112, + -0.0016213824274018407, + -0.014272195287048817, + 0.023326190188527107, + -0.014361881650984287, + 0.012718163430690765, + 0.01713448576629162, + -0.018532203510403633, + 0.010929685086011887, + 0.007397485896945, + -0.008802737109363079, + 0.07910227030515671, + -0.003222821978852153, + -0.041631296277046204, + -0.017497362568974495, + 0.015777919441461563, + 0.06263940036296844, + -0.027102030813694, + -0.020946230739355087, + -0.019909542053937912, + -0.040375616401433945, + -0.005178859457373619, + 0.003995895851403475, + -0.03149569407105446, + 0.02713155373930931, + -0.048494841903448105, + 0.04981213063001633, + -0.029377367347478867, + -0.03196187689900398, + 0.07031767070293427, + 0.0010877897730097175, + 0.02933143824338913, + 0.007725992240011692, + 0.03650519624352455, + 0.03562162443995476, + 0.07188636064529419, + -0.033707547932863235, + 0.03450954705476761, + -0.0013277139514684677, + -0.002660035155713558, + -0.02001870982348919, + 0.025831634178757668, + -0.019339939579367638, + 0.03014940582215786, + 0.031365107744932175, + -0.008807449601590633, + 0.039085160940885544, + 0.03807983174920082, + -0.010107249952852726, + 0.018627280369400978, + 0.023570647463202477, + 0.026699870824813843, + -0.03531550243496895, + -0.014177922159433365, + 0.007414610590785742, + -0.009081856347620487, + -0.00471469946205616, + 0.04629804193973541, + 0.015074780210852623, + 0.004682222381234169, + 0.005710477940738201, + -0.08236104249954224, + -0.0029502075631171465, + -0.002639769809320569, + 0.00010781635501189157, + -0.007506976369768381, + -0.024339303374290466, + -0.029347548261284828, + -0.040092602372169495, + 0.01426619477570057, + -0.010833501815795898, + 0.055922094732522964, + -0.032458990812301636, + -0.009575272910296917, + 0.04054241627454758, + -0.00597107270732522, + -0.02304178662598133, + 0.021532291546463966, + 0.023457249626517296, + -0.00326342205516994, + 0.024297786876559258, + -0.026479560881853104, + -0.005476341117173433, + -0.0026828551199287176, + 0.011973041109740734, + 0.019888056442141533, + 0.026880599558353424, + -0.02386654168367386, + -0.004772396292537451, + 0.0003977780870627612, + 0.03863129764795303, + -0.005674018524587154, + -0.00692310556769371, + -0.024609776213765144, + 0.01729370839893818, + -0.033215880393981934, + -0.008250915445387363, + 0.03654452785849571, + 0.03543991222977638, + 0.016999905928969383, + 0.06493225693702698, + -0.044592827558517456, + 0.021377183496952057, + 0.03368792682886124, + -0.03715808317065239, + -0.02929612249135971, + 0.008411995135247707, + 0.016026154160499573, + -0.02310187742114067, + -0.14337258040905, + -0.04486001655459404, + 0.01952730119228363, + 0.04902701452374458, + -0.003623369848355651, + -0.02212425135076046, + 0.00834126491099596, + 0.021672137081623077, + -0.027806289494037628, + -0.020821209996938705, + -0.0127391517162323, + 0.05513208732008934, + -0.03698834776878357, + 0.04649185389280319, + 0.03948657587170601, + -0.0014456077478826046, + 0.07185234874486923, + -0.013883339241147041, + 0.0353190153837204, + 0.022376256063580513, + 0.009911014698445797, + 0.036180902272462845, + -0.00020814970775973052, + 0.03942791000008583, + -0.017608486115932465, + 0.03496674820780754, + 0.008478506468236446, + -0.03616320341825485, + -0.00815449096262455, + -0.053912658244371414, + 0.07620423287153244, + -0.07301479578018188, + -0.04852747544646263, + -0.02808946557343006, + 0.059699896723032, + -0.0207737535238266, + 0.03850121796131134, + -0.02998654544353485, + 0.01901351660490036, + -0.05392203852534294, + 0.023703426122665405, + -0.018841778859496117, + 0.048944808542728424, + -0.00844690203666687, + -0.003714185208082199, + -0.002749835141003132, + -0.02992227114737034, + 0.014337512664496899, + 0.026057718321681023, + -0.019137905910611153, + -0.03063759207725525, + -0.015736741945147514, + -0.015123242512345314, + 0.0019058455945923924, + -0.05227256938815117, + 0.04686247184872627, + 0.0066797323524951935, + -0.05152912437915802, + -0.06104687973856926, + -0.014501780271530151, + -0.026475250720977783, + 0.0051283203065395355, + -0.015703117474913597, + 0.014914707280695438, + 0.00031228261650539935, + 0.023386454209685326, + -0.029365841299295425, + -0.0024367680307477713, + 0.02636217139661312, + 0.008577318862080574, + 0.005920544266700745, + 0.026896413415670395, + 0.0025860117748379707, + -0.01713990420103073, + -0.05447862297296524, + -0.0023830316495150328, + -0.024133412167429924, + -0.03095635399222374, + 0.003560465294867754, + 0.0022788187488913536, + -0.03674481809139252, + -0.027038557454943657, + -0.010293406434357166, + 0.0008541361312381923, + -0.02134491130709648, + -0.04971019923686981, + 0.010381851345300674, + -0.030517129227519035, + 0.04791652783751488, + -0.0695040300488472, + 0.02481837570667267, + -0.0035938224755227566, + 0.03245547413825989, + 0.011543959379196167, + 0.004406603053212166, + -0.04279763996601105, + 0.02659747377038002, + 0.0016522598452866077, + 0.0165546964854002, + -0.01783093251287937, + 0.022656548768281937, + 0.004102651495486498, + -0.01912963017821312, + 0.03800775855779648, + 0.04455947130918503, + -0.023540981113910675, + -0.02260047011077404, + -0.00044743940816260874, + -0.014939992688596249, + 0.004989746492356062, + -0.02521822787821293, + -0.03653998672962189, + 0.002214239677414298, + -0.029684124514460564, + -0.04237152263522148, + -0.03027500957250595, + 0.044371552765369415, + -0.007408970966935158, + 0.05908709764480591, + -0.006349193397909403, + -0.03878669813275337, + 0.034276556223630905, + -0.00496952747926116, + -0.00035091108293272555, + 0.02905002050101757, + 0.028852857649326324, + 0.006009947508573532, + 0.04240090027451515, + 0.014305575750768185, + -0.02193881757557392, + 0.019634952768683434, + -0.05851946771144867, + 0.005627013277262449, + -0.0007716405671089888, + 0.015262234956026077, + -0.008155900985002518, + 0.033222392201423645, + -0.01319482084363699, + 0.017209261655807495, + -0.005403491668403149, + -0.03869950771331787, + 0.056650757789611816, + 0.03434537723660469, + -0.015635376796126366, + 0.015596164390444756, + 0.03383032605051994, + -0.0012509553926065564, + 0.0022823596373200417, + 0.0020726777147501707, + 0.005221872590482235, + 0.008598269894719124, + -0.023822693154215813, + 0.01953268051147461, + 0.05710164085030556, + -0.013140899129211903, + -0.002186595695093274, + 0.0074193356558680534, + 0.05773309990763664, + 0.009363176301121712, + 0.02901734597980976, + -0.019780859351158142, + 0.030573032796382904, + -0.03233615309000015, + 0.004419083707034588, + 0.005547861102968454, + 0.035966116935014725, + -0.015204542316496372, + -0.0009044777252711356, + 0.0056420606561005116, + 0.0019099559867754579, + 0.022026948630809784, + -0.002783468458801508, + 0.03951818495988846, + 0.015979532152414322, + -0.042883988469839096, + 0.019333766773343086, + -0.044774387031793594, + -0.021504582837224007, + -0.0318807028234005, + 0.01214470062404871, + 0.015748172998428345, + 0.02861141599714756, + 0.0033001143019646406, + 0.018883800134062767, + 0.016631925478577614, + -0.01848270371556282, + -0.06503523141145706, + 0.007191220298409462, + -0.013083288446068764, + 0.0034059174358844757, + 0.00498898746445775, + -0.03244797885417938, + -0.05118056759238243, + -0.0017092423513531685, + 0.03983094543218613, + 0.024913601577281952, + -0.03513861447572708, + 0.027515124529600143, + 0.015697743743658066, + 0.00463597709313035, + -0.014066684991121292, + -0.006864400114864111, + 0.05449885502457619, + 0.05092599615454674, + 0.007738522253930569, + -0.009933295659720898, + 0.011562536470592022, + 0.029101118445396423, + -0.02517358772456646, + 0.019705189391970634, + -0.0351996086537838, + 0.027466151863336563, + 0.013356099836528301, + 0.04981187731027603, + -0.0026455800980329514, + 0.024727322161197662, + 0.025986671447753906, + -0.0006489249062724411, + -0.030133040621876717, + 0.024045785889029503, + -0.011406841687858105, + -0.01414333377033472, + -0.017883555963635445, + 0.02554943598806858, + -0.009388339705765247, + -0.01587522402405739, + -0.04080541804432869, + 0.012343106791377068, + -0.0013059144839644432, + -0.009303253144025803, + -0.046194400638341904, + -0.004454962909221649, + 0.006618374027311802, + 0.06001734361052513, + -0.036802005022764206, + 0.0109329242259264, + -0.0018407715251669288, + -0.02929113060235977, + -0.05263405665755272, + -0.010098465718328953, + 0.04536151885986328, + 0.03440110757946968, + -0.005000344477593899, + -0.017536787316203117, + -0.011942790821194649, + 0.05386166647076607, + 0.018014676868915558, + 0.005662465002387762, + -0.01853424683213234, + 0.017281536012887955, + 0.0035678439307957888, + -0.0023072194308042526, + -0.019186673685908318, + -0.018523652106523514, + -0.008741348050534725, + 0.002696773037314415, + 0.007839416153728962, + -0.028261616826057434, + -0.03257719799876213, + -0.0004159420495852828, + -0.011123375967144966, + 0.03925912827253342, + -0.06841970235109329, + 0.02327762171626091, + 0.04503735154867172, + 0.028266124427318573, + -0.029136938974261284, + 0.019269736483693123, + 0.008726482279598713, + -0.02229018323123455, + 0.007551549002528191, + -0.030578384175896645, + -0.030224338173866272, + -0.044014669954776764, + 0.04055096581578255, + 0.018053295090794563, + 0.020109377801418304, + 0.019619422033429146, + -0.04085375741124153, + 0.026689156889915466, + -0.015444770455360413, + -0.014786825515329838, + -0.027095777913928032, + 0.02158759906888008, + -0.03281877562403679, + -0.06503908336162567, + -0.020126665011048317, + -0.032828230410814285, + 0.03752148151397705, + -0.041645314544439316, + 0.017869699746370316, + -0.013611022382974625, + 0.012070405296981335, + -0.022416597232222557, + -0.018533488735556602, + 0.05201124772429466, + 0.030302036553621292, + -0.0005102648283354938, + 0.0027634960133582354, + 0.05983394756913185, + 0.021519236266613007, + 0.018585205078125, + 0.023681167513132095, + -0.02775328792631626, + -0.020815903320908546, + -0.02928919531404972, + 0.004287801682949066, + -0.016775600612163544, + -0.027917249128222466, + -0.05337662994861603, + 0.04369163140654564, + 0.016458017751574516, + 0.05942683294415474, + -0.012442288920283318, + -0.036922696977853775, + -0.028646918013691902, + -0.008121421560645103, + -0.027754517272114754, + 0.03675442188978195, + -0.015538202598690987, + -0.012920689769089222, + 0.025411443784832954, + -0.02545023523271084, + -0.06280741840600967, + -0.04013460874557495, + 0.04357718676328659, + -0.0052993991412222385, + -0.016638198867440224, + 0.03513322025537491, + 0.0025863240007311106, + -0.02342657558619976, + 0.0020107757300138474, + 0.044302210211753845, + -0.059363096952438354, + -0.01667204312980175, + -0.01322711631655693, + -0.005224025342613459, + 9.945200145011768e-05, + 0.00433323485776782, + 0.0657188668847084, + 0.003109244629740715, + 0.012656811624765396, + 0.06758077442646027, + -0.022190723568201065, + -0.018972935155034065, + 0.021791184321045876, + 0.05832717567682266, + -0.0359908789396286, + -0.0002189265505876392, + -0.04128115251660347, + 0.03276689350605011, + -0.033211156725883484, + 0.032290488481521606, + -0.024677205830812454, + -0.01785106211900711, + 0.04262169450521469, + 0.01738068088889122, + -0.03826892375946045, + 0.01600179821252823, + -0.004378489218652248, + 0.029465073719620705, + 0.043707605451345444, + -0.0055183838121593, + 0.07338742166757584, + -0.028097335249185562, + 0.017111536115407944, + 0.009141105227172375, + -0.016501080244779587, + 0.019546670839190483, + -0.00740989251062274, + 0.02229221910238266, + -0.009373174048960209, + 0.026375601068139076, + 0.016913000494241714, + 0.03889404237270355, + 0.01036018691956997, + -0.05306420847773552, + 0.03189578652381897, + 0.06236712634563446, + 0.002414492191746831, + 0.02831738442182541, + -0.028263987973332405, + -0.0191964078694582, + -0.01398493442684412, + 0.002950487192720175, + 0.02773655392229557, + 0.05015750601887703, + -0.029690274968743324, + -0.016367847099900246, + 0.011108550243079662, + 0.03190794959664345, + -0.0014280031900852919 + ], + "start_index": 0, + "end_index": 116, + "token_count": 34, + "file": "funcion_de_suma.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "99fc9ede-93d0-5cd9-8fd3-40bc291353c4", + "_source": { + "text": "addParam(password,pass_nueva)\npass_antigua = \"password\"\nif(pass_nueva, pass_antigua, \"!=\")\n addVar(cambio, \"Contraseña actualizada\")\nend()\naddResult(cambio)", + "embedding": [ + -0.022196363657712936, + -0.024785369634628296, + -0.006511981599032879, + -0.007945993915200233, + 0.014626720920205116, + -0.03863435983657837, + 0.016531484201550484, + 0.019258545711636543, + 0.0003655141917988658, + 0.003787930589169264, + -0.042458437383174896, + -0.06751898676156998, + -0.012195860967040062, + -0.006582494359463453, + -0.04316803812980652, + 0.02592664770781994, + 0.03275565430521965, + -0.007778072264045477, + -0.011346886865794659, + 0.011273184791207314, + -0.018826507031917572, + 0.014739003963768482, + 0.05423451587557793, + 0.05528024956583977, + 0.10634439438581467, + -0.021082205697894096, + -0.020925719290971756, + 0.04505152255296707, + 0.02873946540057659, + -0.008851403370499611, + 0.045733872801065445, + -0.10826832056045532, + -0.05243224650621414, + -0.019160768017172813, + 0.04139375686645508, + -0.007862645201385021, + -0.024091335013508797, + 0.0029561021365225315, + -0.017837155610322952, + 0.009764818474650383, + 0.06097792461514473, + -0.02774125151336193, + 0.016500940546393394, + -0.006560733076184988, + -0.030043406412005424, + 0.01309569925069809, + 0.04797034338116646, + -0.035210803151130676, + -0.020408617332577705, + 0.003360235597938299, + -0.013156265020370483, + 0.031670864671468735, + 0.010798548348248005, + -0.0124599514529109, + -0.0349142961204052, + -0.03626663610339165, + 0.024583637714385986, + -0.014507650397717953, + -0.023540137335658073, + 0.025073407217860222, + -0.08268323540687561, + -0.01600714772939682, + -0.0005033919005654752, + -0.008924548514187336, + 0.01797337271273136, + -0.0006911655655130744, + 0.027652835473418236, + 0.05228951945900917, + -0.10239863395690918, + -0.02428193762898445, + 0.012802191078662872, + -0.013382364064455032, + -0.030797302722930908, + -0.012832975015044212, + -0.016615256667137146, + 0.04902995377779007, + 0.02354746125638485, + 0.005218776874244213, + 0.043332044035196304, + -0.015168420039117336, + 0.008549615740776062, + -0.01596187613904476, + 0.010552767664194107, + -0.010583464987576008, + 0.022723140195012093, + 0.03719909489154816, + -0.04651849716901779, + 0.018337558954954147, + 0.026110300794243813, + 0.005087603349238634, + 0.006034357473254204, + 0.051349226385354996, + -0.023024719208478928, + 0.07803881913423538, + -0.007721774745732546, + -0.013897375203669071, + 0.012598244473338127, + 0.03041217476129532, + -0.00823886226862669, + -0.006931799929589033, + -0.016494279727339745, + 0.00815428514033556, + 0.014551078900694847, + -0.01722426526248455, + 0.03143416717648506, + 0.024506228044629097, + -0.0714547261595726, + 0.020983170717954636, + -0.040903497487306595, + -0.01164859626442194, + -0.031690601259469986, + 0.018559446558356285, + -0.01156499981880188, + 0.05888346955180168, + -0.0040001594461500645, + 0.06765253841876984, + 0.011537250131368637, + -0.0011073079658672214, + -0.018591435626149178, + -0.02252977527678013, + 0.05015069991350174, + 0.019481966271996498, + -0.029328057542443275, + -0.022204387933015823, + 0.003618576331064105, + -0.014087271876633167, + -0.006291067227721214, + 0.011704026721417904, + -0.011240707710385323, + -0.02116933837532997, + -0.012260078452527523, + 0.01909191720187664, + -0.013090579770505428, + 0.035146165639162064, + 0.006049151998013258, + 0.023348845541477203, + 0.009800458326935768, + 0.015218851156532764, + 0.02396366186439991, + 0.013254841789603233, + 0.010927078314125538, + -0.005977998487651348, + 0.042142875492572784, + -0.022455746307969093, + -0.0014564235461875796, + 0.042790647596120834, + -0.012270507402718067, + -0.0010728902416303754, + 0.005023271311074495, + -0.038483623415231705, + 0.0037800930440425873, + -0.008517557755112648, + -0.018405774608254433, + -0.012202761135995388, + -0.003197138197720051, + 0.025732358917593956, + -0.01943519525229931, + 0.008731691166758537, + 0.029814070090651512, + 0.016571789979934692, + -0.008027646690607071, + 0.0008477872470393777, + 0.01436799019575119, + -0.049180060625076294, + -0.023595958948135376, + 0.015996020287275314, + -0.03997841104865074, + -0.050710976123809814, + -0.04339537024497986, + 0.02739831805229187, + -0.000547301082406193, + 0.0036793281324207783, + -0.008843586780130863, + -0.035265155136585236, + -0.03944683074951172, + -0.0053953626193106174, + 0.007426986005157232, + 0.017591480165719986, + -0.03025517612695694, + 0.021950233727693558, + -0.005685965530574322, + 0.017574898898601532, + 0.013253343291580677, + 0.012234051711857319, + 0.0166543610394001, + 0.003927843179553747, + -0.008379215374588966, + -0.02875744178891182, + -0.03291195631027222, + -0.05660046637058258, + -0.003951705060899258, + 0.038736678659915924, + 0.014560398645699024, + -0.007567329797893763, + -0.031746190041303635, + -0.020419558510184288, + 0.014651590026915073, + 0.03097141534090042, + -0.009113989770412445, + 0.0021248774137347937, + -0.015882583335042, + -0.006152049172669649, + -0.010608560405671597, + 0.014320576563477516, + -0.00854727067053318, + -0.006178842857480049, + -0.02135995775461197, + -0.006354727782309055, + -0.010953524149954319, + -0.0264281053096056, + 0.02870151214301586, + 0.04991845041513443, + 0.020545653998851776, + -0.00842246226966381, + 0.0060652452521026134, + -0.0434156209230423, + -0.006879252381622791, + 0.0032118589151650667, + 0.020582953467965126, + 0.028023160994052887, + 0.006020854227244854, + 0.014075223356485367, + 0.012134899385273457, + 0.005798872094601393, + -0.0016326336190104485, + -0.007492497097700834, + 0.002073284238576889, + 0.009521964937448502, + -0.01319203246384859, + 0.01970810443162918, + -0.008760337717831135, + -0.013015558943152428, + -0.04992407560348511, + -0.04499245062470436, + 0.007883772253990173, + 0.012866999953985214, + 0.0004405933141242713, + -0.008243794552981853, + 0.014002772979438305, + 0.050700027495622635, + -0.01901383511722088, + -0.005354515742510557, + 0.00716277863830328, + 0.022523706778883934, + -0.042040348052978516, + 0.007660187315195799, + -0.0075472015887498856, + 0.035101864486932755, + 0.010863362811505795, + 0.04413261637091637, + -0.01801307313144207, + -0.05648064985871315, + -0.028331030160188675, + -0.030662918463349342, + 0.024584298953413963, + 0.011267583817243576, + 0.011941363103687763, + -0.004995863884687424, + 0.006608390714973211, + -0.021617433056235313, + 0.017186496406793594, + -0.02987511456012726, + -0.019003864377737045, + 0.0006194078014232218, + 0.035979416221380234, + 0.001578671857714653, + -0.019393490627408028, + 0.041946928948163986, + -0.01978815346956253, + -0.018907994031906128, + -0.046192824840545654, + 0.02194603532552719, + -0.01215902529656887, + -0.011321188881993294, + -0.012107191607356071, + -0.008405881002545357, + -0.014057319611310959, + -0.07632973790168762, + 0.050984859466552734, + -0.016774943098425865, + -0.010114750824868679, + 0.05454216152429581, + -0.008661721833050251, + -0.04802066832780838, + 0.00925851333886385, + 0.02869962342083454, + 0.013912215828895569, + -0.018971769139170647, + -0.004586361348628998, + -0.026531506329774857, + 0.016832804307341576, + 0.03416245058178902, + -0.02276001311838627, + -0.007554309442639351, + 0.0034183936659246683, + 0.023268837481737137, + -0.055045489221811295, + 0.06748171895742416, + -0.009360403753817081, + -0.031758032739162445, + 0.013900022953748703, + -0.07751499861478806, + 0.006889942567795515, + 0.013419401831924915, + -0.032170478254556656, + -0.008024913258850574, + 0.04228521138429642, + 0.037486471235752106, + -0.02138618938624859, + 0.022729499265551567, + 0.031696803867816925, + -0.023100057616829872, + 0.04275558516383171, + 0.004226204473525286, + 0.014468160457909107, + -0.035343728959560394, + -0.05555478855967522, + 0.059828124940395355, + 0.024732470512390137, + 0.005777718499302864, + 0.055629912763834, + -0.0497421994805336, + 0.03598351031541824, + -0.04740239679813385, + 0.009386121295392513, + 0.007074205204844475, + -0.0007050185813568532, + 0.02417045272886753, + -0.011014669202268124, + -0.029136359691619873, + 0.04470741003751755, + 0.004747573286294937, + 0.01915368065237999, + -0.029582737013697624, + -0.0530780591070652, + 0.07232869416475296, + -0.02759944461286068, + -0.023577529937028885, + 0.03264927119016647, + 0.004968040622770786, + 0.016550663858652115, + -0.036489252001047134, + -0.01858498342335224, + 0.0734727755188942, + -0.02101844921708107, + -0.044029321521520615, + 0.004473114386200905, + 0.06580279767513275, + -0.008973592892289162, + -0.008201959542930126, + -0.07385290414094925, + -0.004944372922182083, + 0.007271869108080864, + -0.036904606968164444, + -0.016528526321053505, + -0.001266820472665131, + -0.012338983826339245, + 0.04753276705741882, + -0.05430477112531662, + -0.010310501791536808, + -0.011221690103411674, + -0.020833799615502357, + 0.06336016207933426, + 0.016118068248033524, + -0.04155130311846733, + -0.005004606209695339, + -0.035066090524196625, + 0.02248680777847767, + 0.019867906346917152, + -0.012162327766418457, + -0.0754769816994667, + -0.03508073836565018, + 0.010379241779446602, + -0.015293093398213387, + 0.0456942580640316, + -0.03180312737822533, + 0.04941638559103012, + -0.029629645869135857, + -0.039265964180231094, + -0.06318746507167816, + -0.019605202600359917, + 0.016461485996842384, + -0.07282501459121704, + -0.018882114440202713, + -0.05083821341395378, + -0.02955147996544838, + 0.018564816564321518, + -0.027772022411227226, + 0.016248365864157677, + 0.008465120568871498, + 0.03878900036215782, + 0.06569389253854752, + -0.026056991890072823, + 0.04731045663356781, + -0.0029655371326953173, + 0.027778012678027153, + -0.016404617577791214, + -0.010451403446495533, + -0.0021043529268354177, + -0.011503800749778748, + -0.004990036599338055, + 0.0073102917522192, + -0.010313826613128185, + -0.02308938093483448, + 0.04824220389127731, + -0.022886972874403, + 0.02125559188425541, + -0.045659828931093216, + 0.06058630347251892, + 0.014436408877372742, + 0.040319349616765976, + -0.029180161654949188, + -0.005849593784660101, + -0.004737755283713341, + 0.014763282611966133, + 0.007262589875608683, + 0.0013894237345084548, + 0.02185666374862194, + -0.009438966400921345, + -0.032312847673892975, + -0.017642658203840256, + 0.01909124106168747, + -0.03847493231296539, + -0.024440743029117584, + 0.03607169911265373, + -0.006183897145092487, + -0.03826124221086502, + -0.09840687364339828, + 0.052440397441387177, + 0.06755924224853516, + -0.027639217674732208, + -0.030492765828967094, + 0.07681241631507874, + 0.038150936365127563, + -0.029185548424720764, + 0.021614111959934235, + 0.05678268149495125, + 0.018081221729516983, + -0.010032587684690952, + -0.009309988468885422, + 0.018320290371775627, + 0.014579233713448048, + 0.011438123881816864, + -0.01634223386645317, + -0.019035477191209793, + 0.03003501333296299, + -0.04795823246240616, + -0.04693502187728882, + 0.009535826742649078, + -0.021995792165398598, + -0.06615358591079712, + -0.005128373391926289, + -0.0331965833902359, + 0.06361770629882812, + 0.014551485888659954, + -0.04042452573776245, + -0.03261899948120117, + 0.014193740673363209, + -0.0038989803288131952, + 0.02597797103226185, + -0.002946363063529134, + 0.01686890795826912, + 0.04611640423536301, + 0.036334674805402756, + -0.01218901015818119, + 0.056372158229351044, + 0.008879179134964943, + -0.0467887744307518, + 0.005590465851128101, + -0.022097934037446976, + -0.0022188378497958183, + -0.011400390416383743, + 0.026693696156144142, + -0.005070105195045471, + 0.001924387295730412, + 0.0019438826711848378, + -0.04370420053601265, + -0.0818975493311882, + -0.016920948401093483, + -0.02732136659324169, + 0.007770638447254896, + 0.04296920821070671, + -0.01971958950161934, + -0.021197974681854248, + 0.03399891033768654, + -0.007952634245157242, + -0.020584993064403534, + 0.01405427884310484, + 0.020876048132777214, + -0.04415476322174072, + 0.0006870673387311399, + 0.08011581003665924, + 0.00575227802619338, + -0.03924381360411644, + 0.011598773300647736, + 0.02666269987821579, + -0.008763971738517284, + -0.07891025394201279, + -0.07252459973096848, + 0.037175253033638, + -0.003987888805568218, + 0.028259357437491417, + 0.009591908194124699, + 0.04172280430793762, + 0.013160588219761848, + -0.009001747705042362, + 0.012291762046515942, + -0.10601402074098587, + 0.0296370480209589, + 0.039299238473176956, + 0.0009636910981498659, + 0.003560404060408473, + 0.018794970586895943, + 0.03101888857781887, + 0.028947332873940468, + 0.020319659262895584, + -0.016349246725440025, + -0.02254059538245201, + -0.05041035637259483, + -0.01919577084481716, + -0.03236337751150131, + -0.01985534094274044, + 0.03946620970964432, + -0.02193352021276951, + 0.010863367468118668, + 0.0286087729036808, + 0.0181423369795084, + -0.03953590989112854, + -0.04112633317708969, + 0.014411604963243008, + -0.01661464385688305, + -0.011591281741857529, + 0.030789779499173164, + -0.004541509319096804, + 0.009625761769711971, + 0.020905060693621635, + -0.00864378921687603, + 0.041536517441272736, + -0.017751723527908325, + 0.004537720233201981, + 0.031488336622714996, + -0.0076639410108327866, + 0.005182676017284393, + 0.026691535487771034, + 0.05250569432973862, + 0.05873360112309456, + -0.018481353297829628, + 0.05216927081346512, + 0.011807846836745739, + 0.06952447444200516, + 0.023355990648269653, + 0.01678585447371006, + 0.015187634155154228, + -0.019634488970041275, + -0.03966188803315163, + -0.006689552217721939, + 0.03440936282277107, + 0.016199953854084015, + 0.08623125404119492, + -0.0039050683844834566, + -0.028406837955117226, + 0.04698957875370979, + -0.0031286729499697685, + -0.03385046496987343, + 0.04839741811156273, + 0.015618947334587574, + -0.03847518563270569, + -0.023216936737298965, + 0.015600026585161686, + -0.01100597158074379, + 0.007432850077748299, + 0.006877506617456675, + 0.03700307384133339, + 0.034065958112478256, + -0.04272550716996193, + -0.07703756541013718, + 0.007965408265590668, + 0.057264309376478195, + 0.04915131255984306, + 0.06253274530172348, + 0.07122289389371872, + 0.017994627356529236, + 0.017852574586868286, + 0.030040692538022995, + 0.01448045950382948, + 0.030039111152291298, + -0.004634154960513115, + 0.010804405435919762, + 0.007841656915843487, + 0.001449443632736802, + -0.009569059126079082, + -0.03927592933177948, + -0.019984113052487373, + -0.004351364448666573, + 0.04936587065458298, + 0.046320702880620956, + -0.038425542414188385, + 0.028309769928455353, + 0.02138267457485199, + -0.025361008942127228, + 0.019886616617441177, + 0.03372075781226158, + 0.023651929572224617, + 0.010384188033640385, + 0.030248835682868958, + -0.00245550530962646, + 0.01949656940996647, + 0.06137832626700401, + -0.05337706208229065, + -0.021025938913226128, + 0.032284241169691086, + 0.021608470007777214, + -0.06048138812184334, + 0.0027819646056741476, + -0.07847916334867477, + 0.019887324422597885, + -0.002141088480129838, + 0.05406481772661209, + -0.012250401079654694, + -0.06892769783735275, + -0.044834036380052567, + 0.027876265347003937, + 0.02993493527173996, + 0.09521812200546265, + -0.04394911974668503, + 0.010309952311217785, + -0.0036957256961613894, + -0.025157589465379715, + -0.01966778375208378, + -0.030604537576436996, + -0.05771734565496445, + -0.019734861329197884, + -0.01899450644850731, + 0.011395794339478016, + 0.03260958939790726, + 0.0257839597761631, + -0.021890802308917046, + -0.019238343462347984, + -0.03193318098783493, + -0.01521784346550703, + 0.021316414698958397, + -0.051765356212854385, + 0.06846990436315536, + -0.01079699955880642, + 0.03154003620147705, + 0.010148531757295132, + 0.08823516219854355, + -0.03871768340468407, + 0.011781508103013039, + -0.031922947615385056, + 0.004427324514836073, + -0.04249102622270584, + 0.06144977733492851, + -0.034944918006658554, + -0.032979950308799744, + 0.006317181047052145, + -0.018292058259248734, + 0.033874209970235825, + -0.015194522216916084, + 0.04241812974214554, + -0.043564751744270325, + 0.0016396098071709275, + -0.009736010804772377, + -0.057373855262994766, + -0.07236404716968536, + -0.022285614162683487, + 0.03157487139105797, + 0.026314280927181244, + 0.03009508177638054, + -0.0043574669398367405, + -0.015904927626252174, + -0.041800886392593384, + 0.04123593494296074, + -0.028905369341373444, + 0.018483702093362808, + -0.006907999981194735, + -0.010845715180039406, + -0.020594071596860886, + -0.005887959152460098, + -0.024133950471878052, + -0.02755131386220455, + -0.005702291149646044, + -0.01405319757759571, + -0.0310076791793108, + -0.007536228746175766, + -0.00010069007839774713, + -0.07572035491466522, + 0.016949502751231194, + 0.048423945903778076, + -0.019491365179419518, + 0.0007861257763579488, + -0.045726895332336426, + -0.012966528534889221, + -0.014772659167647362, + 0.024278637021780014, + 0.00025674953940324485, + 0.011163276620209217, + 0.014782312326133251, + -0.011648908257484436, + 0.04300593584775925, + -0.029542023316025734, + 0.010677056387066841, + -0.011954023502767086, + 0.005365017801523209, + 0.050864800810813904, + 0.00970226339995861, + -0.037782587110996246, + -0.056899987161159515, + 0.005170350894331932, + 0.01705201528966427, + 0.04298102855682373, + -0.04761543869972229, + -0.020090792328119278, + -0.02196928672492504, + 0.03445835039019585, + 0.006691816262900829, + -0.014223212376236916, + 0.04210779443383217, + -0.012283343821763992, + -0.029678354039788246, + -0.027414966374635696, + -0.013338632881641388, + 0.006117264740169048, + 0.014925098977982998, + -0.03568887338042259, + -0.022924229502677917, + 0.02824009582400322, + -0.001612887717783451, + -0.010262121446430683, + 0.0236447062343359, + 0.03024139627814293, + -0.018726015463471413, + -0.006446706131100655, + 0.014269487001001835, + 0.03667961806058884, + 0.010286889970302582, + 0.0014363722875714302, + 0.0006705103442072868, + -0.015171910636126995, + 0.028063347563147545, + 0.01221020333468914, + -0.022146932780742645, + -0.00820139143615961, + -0.049880627542734146, + -0.024014802649617195, + 0.0390942245721817, + 0.0042056436650455, + 0.0187400933355093, + 0.009046086110174656, + -0.011093189008533955, + -0.01775573007762432, + -0.0292288139462471, + -0.04260237514972687, + 0.006875139195472002, + 0.0036713620647788048, + -0.04086592048406601, + -0.008272855542600155, + 0.06891491264104843, + -0.013130126520991325, + -0.005387166980654001, + 0.01607217825949192, + -0.007790003903210163, + 0.03766075521707535, + -0.02913062274456024, + 0.029948538169264793, + -0.020429454743862152, + 0.061474915593862534, + -0.013668766245245934, + 0.0003295000351499766, + -0.013113131746649742, + 0.04068215936422348, + -0.03128654882311821, + -0.013757377862930298, + 0.0571281723678112, + 0.03021169640123844, + -0.026674725115299225, + 0.001745582208968699, + -0.021774794906377792, + 0.002516644075512886, + -0.0301384124904871, + 0.0126226507127285, + 0.0017332134302705526, + -0.005928584840148687, + -0.006142080761492252, + -0.026204638183116913, + 0.026474885642528534, + 0.0022831293754279613, + 0.025240447372198105, + 0.040387433022260666, + 0.04112149402499199, + -0.00737793231382966, + 0.035037245601415634, + 0.04037826880812645, + 0.016801225021481514, + 0.029889265075325966, + -0.011994860135018826, + -0.007831594906747341, + 0.0444675050675869, + 0.008253343403339386, + 0.011656317859888077, + -0.012096750549972057, + 0.04224801063537598, + -0.012166487984359264, + 0.012812496162950993, + 0.07391183823347092, + -0.032221242785453796, + -0.057652346789836884, + 0.009389325976371765, + -0.07230717688798904, + -0.005877411458641291, + 0.041229892522096634, + 0.039932981133461, + -0.02703019231557846, + 0.01564236357808113, + -0.01668034866452217, + 0.030323578044772148, + -0.047904353588819504, + -0.01035915408283472, + -0.03553975746035576, + -0.0027901509311050177, + -0.051650382578372955, + 0.006745652295649052, + -0.004163247067481279, + 0.0256549920886755, + -0.040991831570863724, + 0.008003699593245983, + 0.05490821227431297, + 0.012423358857631683, + -0.01888970099389553, + -0.03261593356728554, + 0.017416169866919518, + 0.023431379348039627, + 0.03452727198600769, + -0.014346841722726822, + 0.06381838768720627, + -0.0030194364953786135, + 0.03162064403295517, + 0.008241941221058369, + 4.781586540048011e-06, + 0.05373555049300194, + 0.05218106508255005, + 0.06038856506347656, + 0.004457302391529083, + 0.00923510268330574, + -0.007395853288471699, + 0.02536952495574951, + -0.026694685220718384, + -0.008706060238182545, + 0.08806238323450089, + -0.027706008404493332, + 0.005097062326967716, + 0.020089175552129745, + 0.01745077408850193, + -0.001292642205953598, + -0.036320365965366364, + 0.012238823808729649, + 0.0027360289823263884, + 0.00041151136974804103, + -0.036414653062820435, + 0.05274488404393196, + -0.03001815266907215, + -0.02260986715555191, + -0.00222127977758646, + -0.039487142115831375, + -0.017905307933688164, + 0.06796970218420029, + -0.02431749738752842, + -0.01249131839722395, + 0.019792217761278152, + 0.029990004375576973, + -0.024020621553063393, + 0.04653739184141159, + 0.009291563183069229, + 0.0034616945777088404, + 0.0022872069384902716, + -0.035285357385873795, + -0.0345049723982811, + 0.006656288169324398, + 0.025996433570981026, + 0.006295325234532356, + 0.012984886765480042, + 0.020282909274101257, + 0.017896292731165886, + 0.014308080077171326, + -0.007279809098690748, + 0.017299767583608627, + 0.037439122796058655, + 0.0317499078810215, + 0.051996324211359024, + -0.032108124345541, + -0.011141004040837288, + -0.003582796547561884, + -0.03844836354255676, + 0.027549518272280693, + -0.05147731304168701, + -0.03256068751215935, + 0.018299808725714684, + 0.05744992196559906, + -0.03849833086133003, + 0.018707534298300743, + 0.0384325236082077, + 0.018703075125813484, + 0.013736797496676445, + -0.018462058156728745, + -0.007399848662316799, + -0.023374173790216446, + 0.04707947373390198, + -0.007625504396855831, + 0.05463718622922897, + -0.003585674101486802, + -0.049966000020504, + 0.05155425891280174, + -0.0006373653304763138, + -0.009104986675083637, + -0.06991969048976898, + -0.00556952552869916, + 0.006317630875855684, + -0.06586356461048126, + -0.03257135674357414, + 0.0064117093570530415, + -0.0065688565373420715, + -0.022048592567443848, + -0.028853764757514, + -0.005456399172544479, + 0.024760227650403976, + -0.03845107927918434, + -0.011667625047266483, + 0.05623052269220352, + 0.005845986772328615, + 0.0475291982293129, + 0.026966748759150505, + 0.028960159048438072, + 0.044193413108587265, + 0.027743199840188026, + -0.0527791902422905, + 0.03167455270886421, + -0.014378877356648445, + -0.005052685271948576, + 0.032376717776060104, + -0.005150977522134781, + -0.01598360203206539, + -0.01070883497595787, + -0.03164141997694969, + -0.018468737602233887, + -0.003742333734408021, + -0.017582019791007042, + -0.020207436755299568, + -0.021850114688277245, + 0.015930114313960075, + -0.026793072000145912, + -0.02791328728199005, + 0.0013927228283137083, + -0.008132457733154297, + 0.006858040578663349, + 0.009600658901035786, + -0.052164025604724884, + -0.0024138938169926405, + 0.021222274750471115, + -0.001109669334255159, + -0.04522981494665146, + -0.0074830553494393826, + -0.004494486842304468, + 2.8038115488016047e-05, + 0.018837640061974525, + 0.02541262097656727, + -0.015008351765573025, + -0.0166731309145689, + -0.005282699596136808, + -0.020489897578954697, + 0.008050358854234219, + 0.01540372520685196, + 0.016555778682231903, + 0.04357905313372612, + -0.007688251323997974, + 0.013226373121142387, + -0.002185784513130784, + -0.0008826011908240616, + -0.02078983001410961, + 0.03821124881505966, + 0.04517997428774834, + -0.0051351250149309635, + -0.014190557412803173, + 0.06123095750808716, + -0.0058443243615329266, + -0.007592650130391121, + -0.028309078887104988, + 0.039911117404699326, + -0.007649227976799011, + -0.011039421893656254, + -0.017702432349324226, + 0.00668305391445756, + 0.01913127675652504, + 0.04330454021692276, + -0.004077945835888386, + -0.003851120825856924, + 0.05810147151350975, + 0.03332280367612839, + 0.0034645393025130033, + -0.05534786358475685, + -0.03812802955508232, + 0.009013202972710133, + -0.03364304080605507, + 0.015091647394001484, + 0.06240537390112877, + -0.007497129030525684, + 0.014688147231936455, + 0.02269783616065979, + -0.016500813886523247, + -0.04325086623430252, + -0.004827606491744518, + 0.004741545766592026, + -0.016547787934541702, + 0.0482880100607872, + -0.03939155861735344, + 0.00031953040161170065, + 0.018835419788956642, + -0.024981152266263962, + 0.048114851117134094, + 0.022868527099490166, + -0.024454805999994278, + -0.009127549827098846, + -0.032592374831438065, + 0.022145023569464684, + -0.03472503274679184 + ], + "start_index": 0, + "end_index": 163, + "token_count": 46, + "file": "if_desigualdad.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "822e5fcc-3f6c-51eb-860f-d78d6b90f87e", + "_source": { + "text": "addParam(\"api_key\", key)\nif(key, None, \"==\")\n addVar(_status, 403)\n addVar(error, \"Acceso denegado: falta API KEY\")\n addResult(error)\nend()", + "embedding": [ + 0.030329115688800812, + 0.009379844181239605, + -0.009481213986873627, + -0.02848290465772152, + -0.04510504752397537, + -0.09173154085874557, + -0.0013412232510745525, + 0.05125821754336357, + -0.012606843374669552, + -0.019143877550959587, + 0.009745527058839798, + -0.04109463468194008, + -0.06259637326002121, + -0.008119285106658936, + -0.03730941191315651, + 0.05854516476392746, + -0.011795350350439548, + -0.03445490077137947, + 0.014189550653100014, + -0.0035164218861609697, + -0.0030111621599644423, + -0.0028467830270528793, + -0.011247217655181885, + 0.029254980385303497, + 0.00992661900818348, + -0.011938790790736675, + -0.0038819070905447006, + 0.04451929032802582, + 0.038245633244514465, + -0.07336125522851944, + 0.03727483004331589, + 0.04421697556972504, + -0.009210474789142609, + -0.007895022630691528, + -0.02918802946805954, + -0.010478713549673557, + 0.010942818596959114, + 0.0062747313641011715, + 0.0035216708201915026, + 0.02996695041656494, + 0.0036299903877079487, + -0.028511125594377518, + 0.07281118631362915, + 0.034244291484355927, + 0.0020379223860800266, + 0.018978005275130272, + 0.05254471302032471, + -0.03380534425377846, + -0.0352572463452816, + 0.012673698365688324, + -0.00020344786753412336, + -0.00699647469446063, + 0.001998788909986615, + 0.013671130873262882, + 0.003580366959795356, + -0.02631504088640213, + 0.02182541787624359, + 0.024901820346713066, + -0.017566431313753128, + 0.011827121488749981, + -0.09808270633220673, + 0.052659954875707626, + -0.04578118771314621, + -0.04293065518140793, + -0.0019154625479131937, + 0.018226679414510727, + 0.011339826509356499, + 0.04587703198194504, + -0.03363970294594765, + -0.014928204007446766, + -5.5033451644703746e-05, + -0.04620395973324776, + -0.027298539876937866, + 0.03145315498113632, + -0.010756284929811954, + -0.009830448776483536, + 0.0033156475983560085, + 0.006114506628364325, + 0.0307130366563797, + -0.010811562649905682, + -0.01719754934310913, + 0.03662443161010742, + 0.04483884200453758, + 0.03306806832551956, + -0.011318075470626354, + 0.010668900795280933, + -0.057369254529476166, + 0.01651875115931034, + 0.024326039478182793, + -0.005060279741883278, + 0.017828132957220078, + 0.07418996840715408, + -0.029940910637378693, + 0.02203892171382904, + 0.03152492642402649, + 0.003057241439819336, + -0.048962268978357315, + 0.05537989363074303, + -0.01462315209209919, + -0.0012966744834557176, + 0.027203867211937904, + 0.04527337849140167, + 0.015069644898176193, + -0.04100317880511284, + 0.042005907744169235, + 0.0024353349581360817, + 0.0029284670017659664, + 0.026597987860441208, + -0.008413176983594894, + -0.05666935071349144, + 0.0021035608369857073, + 0.02305429056286812, + 0.002768997335806489, + 0.021059582009911537, + 0.016098150983452797, + 0.033125847578048706, + 0.04597622528672218, + -0.013943803496658802, + -0.016012703999876976, + 0.0034961423370987177, + 0.003935087937861681, + -0.00930174719542265, + -0.009741605259478092, + -0.01782146841287613, + 0.058248236775398254, + 0.007032387424260378, + -0.0009295460768043995, + 0.009104300290346146, + 0.03941778838634491, + -0.013669795356690884, + 0.00487762875854969, + 0.01018323004245758, + -0.022129857912659645, + 0.031039658933877945, + 0.02028542384505272, + 0.0596628412604332, + 0.05219579115509987, + 0.006325684022158384, + -0.008938576094806194, + 0.010633543133735657, + -0.004984743427485228, + 0.010157473385334015, + -0.0071386247873306274, + -0.03185129910707474, + 0.009566222317516804, + 0.014972694218158722, + -0.019107291474938393, + -0.009072903543710709, + 0.013479269109666348, + -0.000523364869877696, + 0.0016122269444167614, + 0.01662280410528183, + -0.043465230613946915, + -0.02632017247378826, + -0.01805873215198517, + 0.01600470580160618, + -0.0035611398052424192, + -0.015706466510891914, + -0.024796221405267715, + -0.0024892394430935383, + 0.0020309104584157467, + -0.01022077351808548, + -0.003545104991644621, + -0.014689981006085873, + -0.03544409200549126, + 0.07700269669294357, + 0.01176773477345705, + -0.0007091375300660729, + -0.08845619857311249, + 0.01692778617143631, + 0.022261835634708405, + -0.0009157317690551281, + -0.010262832045555115, + -0.002158182207494974, + -0.020210331305861473, + -0.017555152997374535, + -0.015373801812529564, + -0.07030006498098373, + -0.01608405075967312, + -0.00700587360188365, + 0.026341989636421204, + 0.0033904530573636293, + 0.002287890762090683, + 0.014069154858589172, + 0.01845916360616684, + 0.0065827686339616776, + 0.008257531560957432, + -0.004254506900906563, + -0.008775209076702595, + -0.034405436366796494, + -0.02328433096408844, + -0.032631341367959976, + -0.008006345480680466, + -0.00977503415197134, + -0.007206968031823635, + -0.040960926562547684, + 0.007210044655948877, + 0.017501316964626312, + 0.008098266087472439, + 0.0010099444771185517, + -0.04008428007364273, + 0.036456577479839325, + 0.051519665867090225, + 0.013564690947532654, + 0.025031153112649918, + -0.021676449105143547, + 0.04051171988248825, + -0.012835312634706497, + -0.0014145902823656797, + -0.029291972517967224, + -0.015806782990694046, + -0.00850488431751728, + 0.038977671414613724, + 0.022940440103411674, + -0.00819406472146511, + 0.020123803988099098, + 0.0030463363509625196, + 0.02603679895401001, + -0.0011356231989338994, + 0.012870033271610737, + 0.026837168261408806, + 0.0047696297988295555, + -0.03118785098195076, + 0.01389329880475998, + 0.03530028089880943, + 0.01165902242064476, + 0.01471337117254734, + 0.023028608411550522, + 0.048666585236787796, + 0.003697287291288376, + -0.05459513142704964, + -0.00980462972074747, + 0.0383625291287899, + -0.0055619883351027966, + 0.026148874312639236, + -0.033928703516721725, + 0.011955502443015575, + 0.029536254703998566, + -0.018354259431362152, + 0.017635030671954155, + 0.023804888129234314, + 0.0005427833530120552, + 0.005791467148810625, + 0.005740889813750982, + -0.014078585430979729, + -0.0056145526468753815, + -0.019688734784722328, + 0.06118463724851608, + -0.016622772440314293, + -0.0070378282107412815, + 0.02972942590713501, + -0.02523822896182537, + -0.00010133014438906685, + -0.07226472347974777, + 0.013990755192935467, + 0.014680967666208744, + 0.010792944580316544, + -0.0507788248360157, + 0.031096147373318672, + 0.02924817055463791, + -0.006646905560046434, + -0.01958923041820526, + -0.027152247726917267, + 0.029715903103351593, + 0.019047508016228676, + -0.0072375331073999405, + -0.0033381376415491104, + -0.00831020250916481, + -0.033011019229888916, + -0.009408578276634216, + 0.02223585546016693, + 0.03538721799850464, + 0.049200188368558884, + -0.007136813830584288, + -0.0004996626521460712, + -0.03456632420420647, + -0.023987960070371628, + -0.06342688947916031, + 0.04841934144496918, + -0.006132532376796007, + -0.022799456492066383, + 0.042573682963848114, + -0.019388705492019653, + -0.023077212274074554, + -0.017385443672537804, + 0.010631074197590351, + 0.03529837727546692, + 0.037499602884054184, + 0.004014048725366592, + 0.01614125818014145, + 0.020770955830812454, + -0.009810619056224823, + -0.018143974244594574, + 0.03757983818650246, + -0.021148962900042534, + 0.0015920896548777819, + -0.018388543277978897, + 0.037376582622528076, + 0.02234581857919693, + -0.010101685300469398, + -0.01726348139345646, + -0.033738840371370316, + 0.02181374467909336, + 0.01019872073084116, + 0.005391507875174284, + -0.008483698591589928, + 0.05282885581254959, + 0.006971802096813917, + 0.02013286016881466, + 0.03439273312687874, + 0.040292542427778244, + -0.04056316614151001, + 0.02010194957256317, + -0.0037097767926752567, + 0.009917275980114937, + 0.014024937525391579, + -0.020420894026756287, + 0.0025933922734111547, + 0.024648794904351234, + 0.02406267076730728, + -0.026576682925224304, + -0.01622987911105156, + 0.028116384521126747, + -0.04821109399199486, + 0.040569160133600235, + -0.0005612304084934294, + -0.008408819325268269, + 0.041468266397714615, + 0.00040819545392878354, + 0.0389464795589447, + 0.00976145826280117, + 0.05828846991062164, + -0.007898309268057346, + -0.03458300605416298, + 0.019147489219903946, + 0.03037305362522602, + -0.026069320738315582, + 0.007132830563932657, + -0.01428466010838747, + -0.02356378547847271, + 0.05968433618545532, + -0.009618965908885002, + -0.014187741093337536, + 0.01821528561413288, + -0.0674217939376831, + -0.024105539545416832, + -0.04579904302954674, + -0.011912504211068153, + -0.018080461770296097, + -0.027169249951839447, + 0.008698663674294949, + -0.037497129291296005, + -0.003965832758694887, + 0.01035856083035469, + -0.002693727845326066, + -0.010462851263582706, + -0.008901702240109444, + -0.023376083001494408, + -0.003747596638277173, + 0.026812607422471046, + -0.03155749291181564, + -0.041572205722332, + 0.03406093642115593, + -0.030929021537303925, + -0.020087772980332375, + 0.025539787486195564, + -5.756130485679023e-05, + -0.05321037024259567, + 0.039082858711481094, + -0.033297959715127945, + -0.0645277202129364, + 0.0008547939360141754, + 0.0110769746825099, + -0.006029486656188965, + -0.0011024787090718746, + 0.001945964526385069, + -0.013558958657085896, + -0.0022337452974170446, + -0.03006560541689396, + 0.008577754721045494, + -0.00518315564841032, + 0.009920909069478512, + -0.0193793848156929, + -0.006615455728024244, + -0.09051744639873505, + -0.05218816548585892, + 0.03428138047456741, + -0.01402720995247364, + 0.02506183832883835, + -0.026576051488518715, + -0.014740743674337864, + -0.0006292150937952101, + -0.01634884811937809, + -0.015596477314829826, + 0.03010023757815361, + 0.04313404858112335, + -0.010386969894170761, + -0.022044189274311066, + 0.025537434965372086, + 0.015551477670669556, + -0.021516229957342148, + -0.04073227196931839, + -0.0712350383400917, + 0.04957444593310356, + -0.03259217366576195, + -0.026060501113533974, + 0.05160840228199959, + 0.03014942817389965, + 0.0831141248345375, + 0.015894174575805664, + 0.03151257708668709, + 0.019231824204325676, + 0.04819793999195099, + -0.019771048799157143, + 0.00025546070537529886, + -0.013071876019239426, + 0.019064385443925858, + -0.006883110851049423, + 0.022737618535757065, + -0.03871071711182594, + 0.02711287885904312, + 0.020333997905254364, + 0.01698768325150013, + -0.02529267594218254, + 0.004701379220932722, + 0.023937096819281578, + -0.02666327729821205, + -0.07868824899196625, + -0.018359694629907608, + 0.04889674484729767, + 0.012307913042604923, + -0.019055530428886414, + -0.0026535075157880783, + 0.037934884428977966, + -0.04201703146100044, + 0.012353862635791302, + 0.03348984941840172, + 0.028766047209501266, + 0.0451887771487236, + -0.04219503700733185, + -0.0028494501020759344, + 0.051710326224565506, + -0.059878841042518616, + -0.047923363745212555, + -0.09417320787906647, + 0.010023456998169422, + -0.018985304981470108, + 0.01678113080561161, + -0.015710005536675453, + -0.011241411790251732, + -0.015371079556643963, + 0.065037302672863, + 0.012924996204674244, + 0.00283895549364388, + 0.007026128936558962, + -0.0503261424601078, + -0.022191490978002548, + -0.016579240560531616, + 0.0287052970379591, + 0.03207368031144142, + 0.04979958385229111, + 0.026142224669456482, + -0.004192279651761055, + -0.013559306040406227, + -0.0330243743956089, + -0.030067702755331993, + 0.04732412472367287, + -0.00475398451089859, + 0.0424376018345356, + 0.00940350815653801, + 0.06357931345701218, + -0.022686703130602837, + -0.05666651949286461, + -0.046308375895023346, + 0.09230101108551025, + -0.036302074790000916, + -0.0703364834189415, + 0.0007969724829308689, + 0.007768722251057625, + -0.0412319041788578, + 0.03956594318151474, + -0.021140046417713165, + -0.05165213719010353, + -0.049309805035591125, + 0.061043933033943176, + 0.023556001484394073, + 0.035367999225854874, + -0.016944993287324905, + -0.017269250005483627, + 0.002558455802500248, + 0.049697503447532654, + 0.03633037582039833, + 0.06667023152112961, + -0.05224020406603813, + 0.005677271168678999, + -0.025635648518800735, + -0.003993611317127943, + -0.06432372331619263, + -0.05167493224143982, + 0.04436229169368744, + -0.0015661773504689336, + -0.0021542797330766916, + -0.007980785332620144, + 0.0669230967760086, + -0.009171387180685997, + 0.0066601186990737915, + -0.007582539692521095, + -0.00856868177652359, + 0.03033488802611828, + 0.051672469824552536, + 0.012652123346924782, + -0.037681855261325836, + -0.005472215358167887, + 0.013961341232061386, + -0.1121445819735527, + 0.03329065442085266, + 0.041255589574575424, + 0.005327888764441013, + -0.017590953037142754, + 0.038239654153585434, + -0.00727887311950326, + -0.03888043388724327, + 0.01178019493818283, + -0.03787372261285782, + 0.016489041969180107, + 0.028160590678453445, + 0.04411051422357559, + -0.02184840850532055, + 0.034466687589883804, + 0.04093942046165466, + 0.018063081428408623, + 0.06167028471827507, + -0.00585466343909502, + -0.036411795765161514, + 0.035589758306741714, + -0.018236011266708374, + -0.0034215536434203386, + -0.027012379840016365, + -0.013537253253161907, + 0.058700431138277054, + 0.044345103204250336, + 0.023108510300517082, + -0.024506790563464165, + 0.019566787406802177, + -0.0022498227190226316, + -0.011026936583220959, + -0.0012043531751260161, + 0.04424626752734184, + 0.027133747935295105, + 0.0034187298733741045, + 0.04291598126292229, + 0.030761511996388435, + 0.03968367725610733, + -0.01785852760076523, + -0.011978281661868095, + 0.006207175087183714, + 0.001375947380438447, + -0.009618530049920082, + 0.05104316771030426, + 0.013098984025418758, + -0.008836687542498112, + -0.005117292515933514, + -0.0081458305940032, + 0.03710215538740158, + 0.001031806692481041, + -0.0036040591076016426, + -0.08229615539312363, + 0.019983643665909767, + 0.02282564342021942, + 0.04516692832112312, + -0.0028442766051739454, + 0.054709501564502716, + -0.02016967348754406, + -0.008108025416731834, + 0.030722936615347862, + -0.05908924713730812, + 0.012408949434757233, + 0.01963461935520172, + 0.027001282200217247, + 0.023646583780646324, + 0.023204682394862175, + 0.04191979393362999, + 0.009963048622012138, + 0.026409195736050606, + 0.006736210081726313, + 0.0011512833880260587, + 0.028454521670937538, + 0.0035849008709192276, + -0.03573376312851906, + 0.004553370177745819, + 0.01010074932128191, + -0.0179092176258564, + 0.0011787493713200092, + -0.036778584122657776, + 0.0035532342735677958, + 0.0010713880183175206, + -0.05931888148188591, + 0.022533318027853966, + -0.030590247362852097, + -0.007622258737683296, + 0.07106471806764603, + 0.011503812856972218, + -0.0365155003964901, + -0.01483494695276022, + -0.01166005153208971, + -0.017911413684487343, + -0.028616899624466896, + 0.007213990204036236, + -0.012087821029126644, + 0.0002970946370624006, + -0.02464522421360016, + 0.0006407052860595286, + -0.0074813757091760635, + -0.007707428187131882, + -0.044743381440639496, + -0.017991404980421066, + -0.03757329657673836, + 0.013438211753964424, + 0.018103504553437233, + -0.04790224879980087, + -0.03525468334555626, + -0.03580418601632118, + 0.012994267977774143, + 0.05097176134586334, + -0.02368716150522232, + 0.03209833800792694, + 0.0010609776945784688, + 0.015336963348090649, + -0.018068311735987663, + -0.02294059656560421, + -0.030367469415068626, + -0.0038409477565437555, + -0.006732462905347347, + -0.01821850799024105, + -0.02221660688519478, + 0.012688840739428997, + -0.05819541588425636, + -0.0015469806967303157, + -0.02947171963751316, + -0.019244644790887833, + 0.02921462245285511, + -0.024739984422922134, + -0.006618167739361525, + 0.007314834278076887, + -0.0009522692998871207, + 0.03682732209563255, + 0.021302837878465652, + -0.02430766634643078, + -0.017041930928826332, + -0.044536568224430084, + 0.07207778841257095, + -0.02117607742547989, + 0.005498616490513086, + -0.025684522464871407, + -0.026032477617263794, + 0.005640557035803795, + -0.03358059749007225, + 0.025083843618631363, + -0.0024080949369817972, + 0.0031891202088445425, + -0.01470604445785284, + -0.02214088663458824, + 0.0518830381333828, + -0.011132143437862396, + -0.10625926405191422, + 0.02900395728647709, + 0.0023072485346347094, + -0.003469831310212612, + 0.042153261601924896, + 0.03446829691529274, + -0.08398211747407913, + -0.05485866591334343, + -0.016147799789905548, + -0.03622201830148697, + -0.015458772890269756, + 0.014641853049397469, + 0.002637575613334775, + 0.02049383893609047, + -0.055813390761613846, + -0.06765937060117722, + -0.05681043490767479, + -0.053187157958745956, + -0.0068630496971309185, + -0.02721227891743183, + 0.02327108010649681, + 0.016904694959521294, + -0.06181827187538147, + -0.014645367860794067, + 0.03819408640265465, + -0.007193267811089754, + -0.0495583638548851, + -0.015740007162094116, + 0.062318552285432816, + -0.0031030841637402773, + -0.003349452745169401, + -0.012322709895670414, + -0.029585715383291245, + 0.05063403397798538, + -0.02364649623632431, + -0.02226910926401615, + -0.01612396165728569, + 0.011829083785414696, + -0.02923862263560295, + 0.01685769110918045, + -0.015747906640172005, + 0.00642742495983839, + 0.0022591296583414078, + -0.028957275673747063, + -0.03333321586251259, + 0.0034248430747538805, + -0.009154954925179482, + -0.03714144602417946, + -0.01202900055795908, + -0.04347093403339386, + 0.011007403954863548, + -0.007829703390598297, + -0.048466719686985016, + 0.029948055744171143, + -0.03546614199876785, + -0.05095713213086128, + -0.023848814889788628, + 0.00651136226952076, + 0.020473357290029526, + -0.0023675146512687206, + -0.059706415981054306, + -0.02801596373319626, + 0.029405241832137108, + 0.013323205523192883, + -0.018136171624064445, + -0.011522973887622356, + 0.049984995275735855, + -0.02678438276052475, + 0.010432803072035313, + -0.03666016086935997, + -0.004160684533417225, + -0.009714242070913315, + 0.07757626473903656, + -0.042746733874082565, + -0.014036543667316437, + -0.01275725569576025, + 0.05214856192469597, + -0.05947292596101761, + 0.01571165956556797, + -0.02200970984995365, + -0.014804696664214134, + 0.01666567288339138, + 0.0037589443381875753, + -0.03774726018309593, + 0.0016917979810386896, + -0.022990576922893524, + -0.022934427484869957, + 0.0017678834265097976, + -0.04143761843442917, + 0.04913511127233505, + 0.016907086595892906, + -0.009442420676350594, + 0.006250467617064714, + 0.06551845371723175, + 0.036670830100774765, + 0.011055437847971916, + 0.01815374381840229, + -0.005133647937327623, + -0.009810264222323895, + 0.0048742713406682014, + 0.0298499446362257, + -0.023785574361681938, + 0.0701172947883606, + -0.04212629050016403, + 0.034552887082099915, + 0.00953731220215559, + -0.00027321415836922824, + -0.046087756752967834, + -0.008887643925845623, + 0.0250337366014719, + 0.04724905267357826, + -0.018891869112849236, + -0.010464495047926903, + -0.03470578417181969, + -0.01742028445005417, + -0.03684952110052109, + 0.053699884563684464, + -0.036241207271814346, + 0.005054497625678778, + -0.0292495209723711, + 0.006408920977264643, + 0.02192874625325203, + -0.0023110928013920784, + 0.007483123801648617, + 0.0320538729429245, + 0.02886272966861725, + 0.028080033138394356, + -0.031027385964989662, + 0.025633366778492928, + 0.048928502947092056, + -0.02285626530647278, + -0.02604442648589611, + -0.04274943470954895, + 0.03417741507291794, + -0.031952209770679474, + 0.01446229312568903, + -0.0035124134737998247, + -0.016582440584897995, + -0.0037576379254460335, + 0.018375683575868607, + 0.003327776910737157, + -0.043946586549282074, + 0.028387414291501045, + 0.011570142582058907, + 0.004873237572610378, + 0.017977412790060043, + 0.03476506099104881, + 0.04549312964081764, + 0.013312887400388718, + 0.03112991340458393, + 0.0019930782727897167, + 0.0695534348487854, + -0.05539358779788017, + -0.02159566804766655, + -0.03376356512308121, + 0.018775733187794685, + -0.014850872568786144, + 0.013147084973752499, + 0.0326228067278862, + -0.04241480678319931, + -0.03676345571875572, + -0.008219008333981037, + 0.07237130403518677, + -0.0010557491332292557, + 0.011594678275287151, + -0.021201254799962044, + -0.026251766830682755, + -0.0185804832726717, + 0.01499753724783659, + -0.0010257484391331673, + 0.06057565286755562, + -0.04404813423752785, + -0.0289160069078207, + -0.012382548302412033, + -0.018167385831475258, + 0.00895823072642088, + 0.025571592152118683, + 0.009124827571213245, + -0.023016823455691338, + -0.014378129504621029, + 0.03825696185231209, + 0.09698491543531418, + -0.0075493063777685165, + 0.03141796961426735, + 0.048990391194820404, + 0.011570454575121403, + 0.023752344772219658, + 0.0009654669556766748, + 0.0035878217313438654, + 0.009542055428028107, + -0.050989456474781036, + 0.05851765349507332, + 0.022218147292733192, + 0.0492534264922142, + -0.06914696842432022, + -0.00651159742847085, + -0.055014535784721375, + 0.00875857099890709, + 0.04143694043159485, + -0.025849008932709694, + 0.008503329008817673, + 0.10210081934928894, + -0.026381023228168488, + -0.014310821890830994, + 0.01699201762676239, + -0.005391738843172789, + 0.034330666065216064, + -0.00860603991895914, + -0.0028468878008425236, + 0.00770796462893486, + -0.04533427208662033, + 0.04714197665452957, + -0.03378909081220627, + 0.0077666668221354485, + 0.04758070781826973, + -0.004706148523837328, + -0.024999873712658882, + -0.029861614108085632, + -0.006992660462856293, + 0.05098626762628555, + -0.03202405944466591, + -0.02886180952191353, + -0.00732022849842906, + 0.039595019072294235, + -0.020713452249765396, + -0.03240777552127838, + -0.020843641832470894, + -0.004039295017719269, + 0.006542243529111147, + -0.0420752577483654, + -0.006750067230314016, + -0.008587644435465336, + 0.034396685659885406, + -0.0019404313061386347, + 0.005193726159632206, + 0.016967924311757088, + 0.03358510136604309, + -0.010389397852122784, + -0.01166505552828312, + 0.03453696519136429, + -0.010099061764776707, + -0.02143455669283867, + 0.0591793917119503, + -0.027040060609579086, + 0.014540397562086582, + 0.01983839087188244, + -0.022977735847234726, + 0.014876017346978188, + -0.06287448108196259, + 0.03032970242202282, + 0.034239985048770905, + 0.011631177738308907, + 0.02321452833712101, + -0.012773022055625916, + -0.02732360176742077, + 0.06984701752662659, + -0.025982005521655083, + -0.049553994089365005, + -0.027930665761232376, + -0.01886027492582798, + 0.01913638412952423, + -0.02498384565114975, + -0.0033320749644190073, + 0.024851279333233833, + -0.009351304732263088, + 0.010011721402406693, + 0.015505150891840458, + 0.03372569754719734, + 0.09179609268903732, + 0.04576568305492401, + -0.042732302099466324, + 0.01452877838164568, + 0.0029419325292110443, + -0.02029462903738022, + -0.01920906826853752, + -0.010197404772043228, + -0.02100733108818531, + 0.01849108748137951, + -0.026971599087119102, + 0.043903931975364685, + 0.001340098911896348, + -0.016743803396821022, + 0.06412400305271149, + -0.03665059432387352, + 0.06493441760540009, + 0.04806041345000267, + 0.023285767063498497, + 0.008697799406945705, + -0.01726713217794895, + 0.03542160987854004, + 0.010151120834052563, + -0.0023026815615594387, + 0.0025035578291863203, + 0.04299122467637062, + 0.044677022844552994, + -0.06046196073293686, + 0.012043468654155731, + -0.018803374841809273, + -0.009796268306672573, + 0.03378073126077652, + 0.04543384537100792, + -0.028448142111301422, + 0.004052708391100168, + 0.05586183816194534, + 0.019103175029158592, + 0.006273757200688124, + -0.008873404003679752, + 0.015723999589681625, + 0.0012217963812872767, + 0.027978038415312767, + 0.046196967363357544, + 0.054983820766210556, + 0.016372671350836754, + -0.007448043208569288, + -0.015635350719094276, + -0.008715597912669182, + -0.04723328351974487, + 0.009898056276142597, + 0.0542379766702652, + 0.006928885821253061, + -0.015425639227032661, + 0.03575075417757034, + 0.027170173823833466, + 0.01186747569590807, + -0.035133060067892075, + -0.04124859720468521, + 0.012614946812391281, + 0.046144235879182816, + 0.0200656708329916, + -0.0018826848827302456, + 0.03501181676983833, + 0.054172810167074203, + -0.02191525511443615, + 0.009097244590520859, + -0.03691376373171806, + 0.01890660636126995, + -0.008653849363327026, + -0.007914324291050434, + 0.03241175413131714, + 0.04282509163022041, + 0.009287536144256592, + 0.005570847075432539, + 0.03296900913119316, + -0.03260079026222229, + -0.040103476494550705, + 0.0054902913980185986, + 0.01848364807665348, + -0.04943273589015007, + 0.018987908959388733, + -0.018059823662042618, + 0.006181312259286642, + -0.044353656470775604, + 0.006672081537544727, + -0.03261524438858032, + -0.05882332846522331, + -0.03259574994444847, + -0.02602759748697281, + -0.03332644701004028, + 0.04666878283023834, + -0.008528861217200756 + ], + "start_index": 0, + "end_index": 148, + "token_count": 49, + "file": "validacion_de_nulo.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "53808be6-cd17-5104-8353-63c6bf22fd69", + "_source": { + "text": "try()\n ormDirect(\"UPDATE table_inexistente SET a=1\", res)\nexception(e)\n addVar(_status,500)\n addResult(\"Error de base de datos\")", + "embedding": [ + -0.014763704501092434, + -0.01252046413719654, + -0.007438133470714092, + -0.04922172427177429, + 0.017127877101302147, + 0.0026066775899380445, + 0.020218169316649437, + -0.023325057700276375, + 0.013253622688353062, + 0.013184851966798306, + -0.0761708915233612, + -0.04526609182357788, + -0.04193541407585144, + -0.007598784752190113, + -0.03380393609404564, + 0.08743695914745331, + -0.01726512797176838, + -0.0434289388358593, + 0.007620552554726601, + 0.0320778526365757, + 0.036425452679395676, + -0.0034639015793800354, + 0.04845643788576126, + -0.029990576207637787, + 0.07401340454816818, + 0.011307883076369762, + -0.04081922769546509, + 0.07628333568572998, + 0.03865431249141693, + -0.026243658736348152, + 0.01189865730702877, + 0.03725085407495499, + 0.010620164684951305, + -0.03323880210518837, + 0.026005391031503677, + -0.01089537050575018, + -0.003674448700621724, + -0.028426608070731163, + -0.02804310992360115, + -0.003725856076925993, + 0.01911403052508831, + -0.001671882695518434, + 0.06735125184059143, + 0.0025040204636752605, + 0.015592234209179878, + -0.016893263906240463, + 0.048534005880355835, + -0.03453845530748367, + 0.03231987729668617, + 0.014925542287528515, + -0.028687087818980217, + 0.05198222026228905, + -0.044775787740945816, + 0.028993133455514908, + -0.005587748717516661, + -0.04585971683263779, + 0.02548055350780487, + -0.046556662768125534, + -0.061241742223501205, + 0.008982366882264614, + -0.036654163151979446, + -0.034878820180892944, + 0.037683017551898956, + -0.05396868288516998, + -0.02516757883131504, + 0.019644105806946754, + 0.011985961347818375, + 0.031713955104351044, + -0.06873103976249695, + -0.020950686186552048, + 0.03477761149406433, + -0.014110813848674297, + -0.007189031690359116, + 0.02553916722536087, + -0.016811136156320572, + 0.021371323615312576, + 0.05199659243226051, + -0.015134892426431179, + 0.026736732572317123, + 0.02185487560927868, + -0.018968690186738968, + -0.024302253499627113, + 0.015069473534822464, + 0.01685178652405739, + -0.004959516692906618, + 0.007338738534599543, + -0.017142942175269127, + -0.011457405984401703, + 0.03960886970162392, + -0.018961939960718155, + -0.03927002474665642, + 0.0821743756532669, + -0.02834068424999714, + -0.02874632179737091, + 0.03773631900548935, + -0.005514826159924269, + 0.034183308482170105, + 0.03356717526912689, + -0.015216119587421417, + -0.007747386582195759, + -0.03872569277882576, + -0.01469126995652914, + 0.009405098855495453, + -0.006094607524573803, + -0.04084722697734833, + 0.04151540249586105, + -0.05880236253142357, + 0.018692655488848686, + 0.04516105353832245, + -0.0495714470744133, + -0.02131420560181141, + -0.018361784517765045, + -0.05088157206773758, + 0.02955835498869419, + -0.05156024545431137, + 0.06071511283516884, + 0.03663983196020126, + 0.006212654057890177, + 0.0007075109169818461, + 0.0005897211376577616, + -0.029426369816064835, + 0.013649056665599346, + -0.011719388887286186, + -0.003473097225651145, + -0.005181191489100456, + 0.005171630531549454, + -0.018916308879852295, + -0.0013148850994184613, + 0.007114750798791647, + -0.03815942630171776, + 0.005795646924525499, + -0.0034632415045052767, + -0.029642682522535324, + 0.0009723316761665046, + 0.03170989081263542, + 0.005476153921335936, + -0.011761162430047989, + 0.0039834147319197655, + 0.035338763147592545, + 0.02480258047580719, + 0.011307819746434689, + -0.020481355488300323, + 0.023552775382995605, + -0.010111818090081215, + 0.003620251314714551, + 0.014172426424920559, + 0.01065188366919756, + -0.0174476969987154, + 0.011576397344470024, + -0.06398426741361618, + 0.022722464054822922, + -0.007427374832332134, + 0.00881210993975401, + -0.019619721919298172, + -0.03432515263557434, + 0.0132371224462986, + 0.037816643714904785, + -0.01601426489651203, + 0.013212695717811584, + 0.0360305979847908, + -0.013135083019733429, + -0.024014251306653023, + -0.013432569801807404, + -0.035713013261556625, + -0.03993520140647888, + 0.04467209056019783, + 0.005772944074124098, + -0.017269862815737724, + -0.0291004478931427, + -0.024532342329621315, + -0.009768825024366379, + 0.01767667941749096, + 0.004113433882594109, + 0.012839061208069324, + -0.022516677156090736, + -0.0011613322421908379, + -0.034516461193561554, + -0.05755484104156494, + -0.002180234994739294, + -0.023329703137278557, + 0.026952261105179787, + 0.025241326540708542, + -0.01272816676646471, + 0.05318702757358551, + 0.025733087211847305, + 0.0014532675268128514, + -0.003942990209907293, + -0.008054979145526886, + -0.027529364451766014, + -0.028791841119527817, + 0.00613443972542882, + 0.0025642900727689266, + -0.00271312752738595, + 0.0005474952631630003, + 0.0027339395601302385, + -0.026530969887971878, + -0.004768032114952803, + 0.02853810414671898, + -0.01001072209328413, + -0.0022931236308068037, + 0.03257385641336441, + -0.03162125125527382, + 0.03392037749290466, + 0.011828115209937096, + 0.022260596975684166, + 0.02460821345448494, + 0.01676204986870289, + -0.011354902759194374, + -0.008031757548451424, + 0.012824971228837967, + -0.01861986145377159, + -0.003966369200497866, + 0.031834084540605545, + -0.045526910573244095, + -0.002464151009917259, + -0.07934517413377762, + 0.01685236394405365, + -0.01508969347923994, + 0.019605718553066254, + -0.011409210972487926, + -0.01435719896107912, + 0.01579900272190571, + -0.10543903708457947, + 0.007349964696913958, + 0.00726578664034605, + -0.010153234004974365, + 0.011460407637059689, + -0.008678107522428036, + -0.013184756971895695, + 0.011316059157252312, + -0.016312213614583015, + -0.0221338402479887, + -0.018518175929784775, + -0.0016584750264883041, + 0.0363788902759552, + -0.02162216417491436, + 0.014717845246195793, + 0.03837341070175171, + 0.013470610603690147, + 0.030398143455386162, + 0.001406362047418952, + 0.02276637591421604, + 0.015146241523325443, + -0.0052210185676813126, + -0.03796963021159172, + 0.03306332975625992, + -0.004960791207849979, + -0.026185089722275734, + -0.02699737437069416, + 0.04122825339436531, + 0.026961850002408028, + -0.01663285307586193, + -0.028713814914226532, + 0.01734769716858864, + 0.004038156010210514, + -0.05517207086086273, + 0.017401933670043945, + 0.040220651775598526, + -0.0027321057859808207, + -0.008161727339029312, + -0.003957572393119335, + -0.017910277470946312, + -0.008649350143969059, + 0.028489401564002037, + 0.061074770987033844, + 0.0008814383181743324, + -0.0007927983533591032, + -0.0018838731339201331, + -0.028099780902266502, + -0.011743651703000069, + 0.002932306844741106, + 0.003523921826854348, + -0.05748138949275017, + 0.027300797402858734, + -0.016397256404161453, + -0.004155262373387814, + -0.013558600097894669, + -0.09638478606939316, + 0.038912367075681686, + -0.032616645097732544, + 0.024326924234628677, + 0.020330045372247696, + -0.034783992916345596, + -0.05131162330508232, + 0.006327314767986536, + -0.00284236716106534, + 0.0559624508023262, + 0.008516853675246239, + 0.041363321244716644, + 0.021201305091381073, + 0.011220986023545265, + -0.04587854444980621, + -0.019631659612059593, + 0.05536491796374321, + 0.03307632729411125, + -0.020866351202130318, + -0.007279513869434595, + 0.02168387733399868, + 0.06065937876701355, + 0.011590110138058662, + 0.01901654712855816, + -0.05413218215107918, + 0.002089283661916852, + -0.05450674518942833, + 0.0068013533018529415, + -0.004671953152865171, + 0.03878778591752052, + -0.01519685983657837, + -0.01554120797663927, + 0.023603543639183044, + -0.02053232677280903, + 5.026507551519899e-06, + 0.006474925205111504, + -0.017468899488449097, + 0.024264685809612274, + -0.015459506772458553, + -0.08766942471265793, + 0.014543651603162289, + -0.023075349628925323, + -0.01044220570474863, + -0.03624283894896507, + -0.0038442001678049564, + -0.010914091020822525, + 0.0480555035173893, + 0.008193601854145527, + -0.0070515782572329044, + -0.03774503245949745, + 0.05520779266953468, + 0.011197233572602272, + 0.01713491603732109, + 0.06638457626104355, + 0.009065641090273857, + 0.06475192308425903, + 0.01638004742562771, + -0.04209372401237488, + 0.044528085738420486, + -0.007096558343619108, + -0.007985260337591171, + 0.00036311623989604414, + 0.013846784830093384, + -0.0002308637194801122, + -0.027788549661636353, + -0.029542168602347374, + 0.00391120882704854, + -0.026847761124372482, + -0.049073245376348495, + -0.02437862753868103, + -0.04379379376769066, + -0.007611931301653385, + -0.015394282527267933, + -0.000793201383203268, + -0.043539486825466156, + -0.008737112395465374, + -0.0023357358295470476, + -0.03582214191555977, + 0.04827723652124405, + 0.019342832267284393, + -0.018461784347891808, + 0.00675177201628685, + 0.003021986922249198, + -0.029374772682785988, + 0.019440727308392525, + 0.06760771572589874, + 0.007129563484340906, + -0.0017016862984746695, + -0.039198361337184906, + -0.014711500145494938, + 0.021893708035349846, + 0.08219636231660843, + -0.0199426356703043, + -0.11097954213619232, + -0.049108635634183884, + -0.007229665294289589, + 0.042496390640735626, + 0.007020149379968643, + 0.006963890045881271, + 0.05089684575796127, + 0.05684802308678627, + -0.021198498085141182, + 0.011149854399263859, + -0.004306174349039793, + 0.008272338658571243, + -0.028727393597364426, + -0.05178019031882286, + -0.07134494930505753, + -0.025809578597545624, + 0.0022100110072642565, + -0.031397897750139236, + 0.0011937342351302505, + -0.03906478360295296, + -0.012970437295734882, + 0.04893116652965546, + -0.017489079385995865, + 0.0216674767434597, + 0.0020861616358160973, + 0.04974757507443428, + -0.0684722512960434, + -0.01254915539175272, + -0.016994211822748184, + 0.025672627612948418, + -0.022741302847862244, + 0.05244363099336624, + -0.016477856785058975, + 0.01936964876949787, + -0.022812198847532272, + -0.039146360009908676, + -0.007969634607434273, + 0.036235641688108444, + 0.05274050682783127, + 0.005625111050903797, + 0.015175395645201206, + 0.001126501359976828, + 0.036504779011011124, + 0.0008077631355263293, + -0.026957079768180847, + 0.0031845327466726303, + 0.013776098378002644, + -0.010665977373719215, + 0.006323304958641529, + -0.008662126027047634, + -0.07435978949069977, + 0.022290190681815147, + -0.03045368194580078, + -0.05905245617032051, + 0.00552957970649004, + -0.030990924686193466, + 0.002323796274140477, + -0.05192321911454201, + 0.0277944914996624, + 0.05612698942422867, + 0.01605699025094509, + -0.029725894331932068, + 0.0011067212326452136, + 0.06155845522880554, + -0.048296455293893814, + 0.05464749410748482, + 0.050162091851234436, + 0.03315957635641098, + 0.0023248072247952223, + -0.04431648552417755, + 0.0295720137655735, + 0.021259451285004616, + -0.01745654083788395, + 0.01740790158510208, + -0.061063192784786224, + -0.0445428267121315, + 0.002109171124175191, + -0.02064564824104309, + -0.030082417652010918, + -0.014025712385773659, + -0.03206395357847214, + -0.017660386860370636, + 0.006794116459786892, + 0.022008541971445084, + 0.023162376135587692, + 0.019580990076065063, + 0.019675981253385544, + 0.03568916767835617, + 0.022746412083506584, + 0.035296667367219925, + 0.0019185858545824885, + 0.008431683294475079, + 0.04472823813557625, + -0.00783389899879694, + 0.0023356967139989138, + 0.04699227586388588, + -0.011639268137514591, + -0.007276257965713739, + 0.012119385413825512, + -0.020189251750707626, + 0.02045472338795662, + 0.043814778327941895, + -0.009814414195716381, + -0.058395642787218094, + 0.0009549761889502406, + -0.01596864126622677, + -0.04123575612902641, + -0.03499244898557663, + -0.03588533028960228, + 0.05924931913614273, + -0.046185798943042755, + -0.015462590381503105, + -0.03296433761715889, + -0.0355645976960659, + 0.03568079695105553, + -0.02922956459224224, + -0.005632628686726093, + -0.023429904133081436, + 0.030615685507655144, + 0.004789652768522501, + 0.010586299933493137, + 0.03340501710772514, + 0.02986336313188076, + -0.047864411026239395, + -0.010992700234055519, + 0.005816582590341568, + -0.011944212950766087, + -0.06031389534473419, + -0.026240283623337746, + -0.005218729376792908, + 0.02592547796666622, + 0.004346582107245922, + -0.0290509182959795, + 0.03977102413773537, + -0.0037472746334969997, + 0.005507688038051128, + -0.06574825942516327, + 0.004339031409472227, + 0.05701553076505661, + 0.028346391394734383, + 0.010703125037252903, + 0.04406839609146118, + 0.029491707682609558, + 0.02442571334540844, + -0.018091445788741112, + -0.017880486324429512, + 0.03234529495239258, + 0.009496863931417465, + -0.027280036360025406, + 0.009053966961801052, + 0.001157191814854741, + -0.02572512812912464, + 0.04432037100195885, + -0.043451931327581406, + 0.0269212257117033, + 0.002425810322165489, + 0.010178756900131702, + -0.03440789878368378, + 0.017535099759697914, + -0.02760937251150608, + 0.04236709326505661, + 0.02137640491127968, + 0.0025739187840372324, + 0.019550863653421402, + 0.009953306056559086, + 0.0298025943338871, + -0.05308949202299118, + 0.010522804223001003, + -0.015496330335736275, + 0.0032183213625103235, + 0.005520689766854048, + 0.010781385935842991, + 0.027267321944236755, + 0.03866549953818321, + 0.015191711485385895, + 0.07890324294567108, + 0.03274946287274361, + 0.0555289164185524, + 0.014915785752236843, + -0.03417143598198891, + 0.029282057657837868, + 0.004298493266105652, + 0.04940853640437126, + 0.007999168708920479, + 0.06011060252785683, + -0.008956503123044968, + 0.005505021661520004, + -0.007515555713325739, + 0.0660034641623497, + 0.014859188348054886, + 0.030550843104720116, + -0.009423280134797096, + -0.00894533097743988, + -0.018449250608682632, + 0.025434214621782303, + -0.01405657920986414, + 0.00015675212489441037, + 0.042102519422769547, + 0.017273906618356705, + -0.010894172824919224, + 0.018691113218665123, + -0.006792730651795864, + -0.00827885139733553, + 0.0546288900077343, + 0.014438115991652012, + -0.038824986666440964, + -0.027243198826909065, + -0.023681217804551125, + 0.010068426840007305, + 0.04550088942050934, + 0.06888497620820999, + 0.03320005536079407, + -0.032115619629621506, + -0.0038014890160411596, + 0.026502903550863266, + 0.01588095724582672, + 0.061467159539461136, + -0.04020262882113457, + 0.0005455421633087099, + -0.02492005191743374, + -0.049740325659513474, + -0.04300011321902275, + 0.027217373251914978, + -0.01696041040122509, + 0.0546889454126358, + 0.006776685826480389, + -0.04576043412089348, + 0.060205020010471344, + 0.022359875962138176, + -0.033251307904720306, + 0.035808708518743515, + 0.015178129076957703, + -0.005155601073056459, + -0.008326959796249866, + -0.04674774408340454, + -0.010113048367202282, + -0.007334747817367315, + 0.0378137044608593, + 0.016368813812732697, + -0.00490908045321703, + -0.011358552612364292, + -0.009184588678181171, + -0.03923419862985611, + -0.040320686995983124, + 0.02778879553079605, + -0.04536306858062744, + -0.014625230804085732, + 0.06565235555171967, + 0.008884366601705551, + -0.03139697015285492, + -0.01854930818080902, + -0.00984921958297491, + 0.024454589933156967, + 0.018856527283787727, + -0.019917869940400124, + 0.013666903600096703, + 0.02171381004154682, + -0.003288702806457877, + -0.023223519325256348, + -0.07686737924814224, + -0.013657253235578537, + 0.008564721792936325, + -0.07151289284229279, + -0.04152419790625572, + -0.006234120577573776, + 0.007150475401431322, + -0.04302220791578293, + 0.007729814387857914, + -0.01687566004693508, + -0.024297529831528664, + 0.016816679388284683, + -0.06783059984445572, + 0.0022653122432529926, + -0.01755172200500965, + 0.05188503488898277, + -0.026881877332925797, + 0.026134544983506203, + -0.014010492712259293, + 0.04414742439985275, + -0.044216372072696686, + 0.005828211084008217, + 0.010422175750136375, + 0.00864036101847887, + 0.01303502731025219, + -0.01625589281320572, + -0.030481597408652306, + -0.041749078780412674, + 0.09236136823892593, + -0.007752937264740467, + -0.024127395823597908, + 0.002348141511902213, + 0.005878181662410498, + 0.0002048472670139745, + -0.04870151728391647, + -0.012022281996905804, + -0.06054915860295296, + 0.031149975955486298, + 0.02633826620876789, + 0.006649990566074848, + 0.003096634289249778, + -0.019368836656212807, + -0.008818969130516052, + -0.03036702238023281, + 0.041835296899080276, + -0.01765516772866249, + 0.009730822406709194, + -0.05650554969906807, + -0.02448662929236889, + -0.05012592300772667, + -0.03181232511997223, + -0.028224701061844826, + -0.05340869724750519, + 0.00874218437820673, + -0.03850528597831726, + -0.019691957160830498, + -0.0072311717085540295, + -0.05233634263277054, + -0.010990679264068604, + 0.03152049705386162, + -0.04615554213523865, + 0.011504355818033218, + -0.030001863837242126, + 0.06489894539117813, + -0.009035513736307621, + -0.0020245190244168043, + 0.012155438773334026, + 0.034341491758823395, + 0.019266629591584206, + -0.02331482619047165, + 0.01423781830817461, + 0.0021395243238657713, + -0.031743861734867096, + 0.009127716533839703, + 0.004053138662129641, + 0.01623481698334217, + -0.014782252721488476, + -0.00026024034013971686, + -0.03566335514187813, + 0.02984825149178505, + -0.024689806625247, + -0.0007802858017385006, + -0.016725778579711914, + 0.017694860696792603, + -0.01415081974118948, + -0.0002013334451476112, + 0.0439826101064682, + 0.003508982015773654, + 0.02603873610496521, + -0.030404718592762947, + -0.0008180249715223908, + 0.012513508088886738, + -0.06702500581741333, + 0.027699189260601997, + -0.005918345879763365, + -0.0028326339088380337, + 0.00031629065051674843, + 0.007474223151803017, + 0.028461573645472527, + 0.014900467358529568, + 0.034861963242292404, + 0.02826777473092079, + 0.006517988629639149, + -0.01356381643563509, + -0.030344801023602486, + 0.008762136101722717, + -0.032348718494176865, + 0.08745482563972473, + 0.04418061673641205, + 0.014518186450004578, + -0.04389381781220436, + 0.0012614356819540262, + -0.05075353756546974, + 0.00741341570392251, + 0.02514212764799595, + -0.009476636536419392, + 0.03212223947048187, + 0.0035212787333875895, + 0.011389904655516148, + 0.037328314036130905, + -0.028301842510700226, + -0.028351521119475365, + -0.02494422346353531, + -0.010528327897191048, + 0.04462362825870514, + -0.0663556233048439, + -0.022949812933802605, + -0.020621389150619507, + 0.011273682117462158, + -0.0008899731910787523, + 0.026749812066555023, + -0.01406700350344181, + 0.0071948133409023285, + -0.019580096006393433, + -0.012468308210372925, + 0.03486299887299538, + -0.007280304562300444, + 0.06160577014088631, + -0.0014038454974070191, + 0.0542663149535656, + 0.007767430506646633, + -0.00546812079846859, + -0.011239774525165558, + -0.016966374590992928, + 0.059058379381895065, + -0.013670929707586765, + 0.014074733480811119, + 0.02463683672249317, + 0.011254777200520039, + 0.003064916003495455, + -0.03016481176018715, + -0.0014087575254961848, + -0.009535429067909718, + 0.022492144256830215, + -0.038598645478487015, + -0.03973361849784851, + 0.014255130663514137, + 0.03823775798082352, + 0.006357803009450436, + 0.0544242262840271, + -0.018719250336289406, + 0.02022675611078739, + 0.012866361998021603, + 0.022000283002853394, + 0.014112157747149467, + -0.026028629392385483, + 0.020926719531416893, + -0.03405164182186127, + 0.031944405287504196, + -0.055445458739995956, + 0.05348925665020943, + -0.030089588835835457, + 0.037541668862104416, + -0.046562474220991135, + 0.023941393941640854, + 0.06648332625627518, + 0.027308305725455284, + 0.009914495050907135, + 0.005900366697460413, + -0.029875224456191063, + -0.011844845488667488, + 0.02142755128443241, + 0.003772484604269266, + -0.016213176771998405, + 0.0030085472390055656, + 0.02838727831840515, + 0.05281524732708931, + -0.010160885751247406, + -0.01712297648191452, + -0.0493289940059185, + -0.026517247781157494, + -0.01982687972486019, + 0.01984081044793129, + -0.018237249925732613, + -0.02887127175927162, + -0.028719356283545494, + 0.016696574166417122, + -0.025553841143846512, + 0.0001475955214118585, + -0.04974517971277237, + -0.021573707461357117, + -0.006378239020705223, + 0.011627545580267906, + 0.011963311582803726, + -0.022166471928358078, + 0.03709949553012848, + -0.03185684606432915, + -0.020465409383177757, + -0.011978614144027233, + -0.012999873608350754, + 0.06547769904136658, + 0.04589618369936943, + 0.07284218072891235, + -0.018600573763251305, + 0.017174864187836647, + -0.031178278848528862, + 0.007188182324171066, + 0.016515513882040977, + -0.008524603210389614, + 0.025594167411327362, + 0.019898923113942146, + 0.0005289351684041321, + 0.0039681908674538136, + -0.03817449137568474, + 0.004786315839737654, + -0.09959437698125839, + -0.01204063929617405, + 0.02039712853729725, + -0.019409053027629852, + -0.022152062505483627, + -0.006597200408577919, + -0.05119607597589493, + 0.009004075080156326, + -0.03129548206925392, + 0.003168027848005295, + -0.008696561679244041, + 0.08846882730722427, + -0.024629294872283936, + 0.022068707272410393, + 0.05990329757332802, + -0.014351633377373219, + 0.024594342336058617, + -0.011529224924743176, + 0.05444489046931267, + 0.04893725365400314, + -0.022800978273153305, + -0.012872710824012756, + 0.025516491383314133, + 0.004653550684452057, + 0.06960514932870865, + -0.009145732037723064, + -0.007722756825387478, + 0.015138608403503895, + 0.022563286125659943, + 0.014734022319316864, + -0.02072180062532425, + -0.005412146914750338, + 0.032677099108695984, + 0.045707378536462784, + -0.008300715126097202, + -0.014165439642965794, + -0.006201993208378553, + -0.03365659341216087, + -0.04499420151114464, + -0.0021201937925070524, + -0.07009243965148926, + -0.042143095284700394, + 0.04322834685444832, + 0.0316469669342041, + -0.005831460002809763, + 0.015629548579454422, + 0.009474001824855804, + -0.012011579237878323, + 0.004074359778314829, + 0.038604736328125, + -0.011406599543988705, + -0.03957374766469002, + 0.069387286901474, + -0.023625463247299194, + -0.02590007893741131, + 0.016667911782860756, + -0.05451752990484238, + 0.03788445517420769, + 0.021171389147639275, + 0.0029724224004894495, + -0.038598693907260895, + 0.022477809339761734, + -0.011542707681655884, + -0.006511843763291836, + -0.03876858577132225, + -0.010672749020159245, + -0.03419850766658783, + -0.018207011744379997, + -0.01908247172832489, + -0.046395886689424515, + -0.04994091019034386, + 0.019996661692857742, + 0.007902690209448338, + 0.03396608307957649, + 0.034322839230298996, + 0.03688060864806175, + 0.0364142544567585, + -0.001216924749314785, + 0.04766501113772392, + 0.017770428210496902, + -0.03299788385629654, + -0.030468957498669624, + -0.012414088472723961, + -0.007736823987215757, + -0.00737732695415616, + 0.025497227907180786, + -0.01046009361743927, + -0.0075876605696976185, + 0.04650019854307175, + 0.04182031750679016, + 0.016071641817688942, + -0.06643617153167725, + 0.0028139848727732897, + 0.01595343090593815, + 0.06534422934055328, + 0.03962058573961258, + -0.02312804013490677, + 0.06917233765125275, + -0.02652014046907425, + -0.015639645978808403, + 0.01281653717160225, + -0.04603711888194084, + 0.013853085227310658, + 0.044468216598033905, + 0.02942458912730217, + -0.0323120653629303, + -9.313265763921663e-05, + -0.005308542400598526, + 0.010008676908910275, + 0.0018521768506616354, + 0.011388949118554592, + 0.028341174125671387, + 0.010962153784930706, + 0.02399468794465065, + -0.022896207869052887, + 0.009777363389730453, + 0.04158936068415642, + -0.03403233736753464, + 0.011607403866946697, + 0.027280528098344803, + 0.011450228281319141, + 0.028351793065667152, + -0.013225161470472813, + -0.016166120767593384, + 0.0168441254645586, + -0.0352364182472229, + 0.03625600039958954, + -0.005538659635931253, + 0.015163213945925236, + 0.01888396218419075, + 0.01709410361945629, + -0.04929409921169281, + 0.029810333624482155, + -0.01437271386384964, + 0.05341118946671486, + 0.020754516124725342, + 0.08522507548332214, + 0.009297782555222511, + 0.003810448804870248, + 0.031758226454257965, + -0.06556416302919388, + 0.04917120561003685, + -0.012940504588186741, + 0.013879619538784027, + 0.01786847971379757, + 0.01505369134247303, + -0.01995745860040188, + -0.02591051533818245, + 0.032316576689481735, + 0.06759536266326904, + 0.046518392860889435, + -0.024573110044002533, + 0.00897566881030798, + -0.02323949709534645, + -0.015173716470599174, + 0.033191557973623276, + 0.05603467673063278, + -0.0481836311519146, + 0.06392061710357666, + -0.016263891011476517, + -0.0030127859208732843, + -0.022621192038059235, + -0.0007683657458983362, + 0.011372312903404236, + -0.016488678753376007, + -0.021583957597613335, + -0.032528117299079895, + 0.019147023558616638, + 0.04106378182768822, + -0.026959514245390892 + ], + "start_index": 0, + "end_index": 137, + "token_count": 41, + "file": "manejo_error_sql_critico.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "b8affaec-ce22-5ff5-872d-1dd15837b9d4", + "_source": { + "text": "try()\n RequestGet(\"https://api.test.com/data\", 0, 0, respuesta)\nexception(e)\n addVar(error_trace, \"Fallo de conexión: %s\" % e)\n addResult(error_trace)\n", + "embedding": [ + 0.022039780393242836, + 0.08945833146572113, + -0.008586807176470757, + -0.02795277163386345, + 0.05698493495583534, + -0.04021473228931427, + -0.05958794057369232, + 0.022728508338332176, + -0.011184880509972572, + 0.010962307453155518, + -0.023251397535204887, + -0.0019273435464128852, + 0.009341822937130928, + -0.0055958363227546215, + -0.03158869221806526, + 0.08661133795976639, + -0.026161834597587585, + -0.03813404217362404, + 0.04412613809108734, + 0.017095264047384262, + -0.004875899292528629, + 0.06322098523378372, + 0.01470105443149805, + -0.00845368392765522, + 0.0012776561779901385, + -0.039865121245384216, + -0.011021253652870655, + 0.05083641782402992, + -0.03403043374419212, + -0.02890421822667122, + -0.040146518498659134, + 0.055817436426877975, + -0.02499939315021038, + -0.025418253615498543, + -0.047315146774053574, + -0.00762175302952528, + 0.012959249317646027, + -0.006498368922621012, + -0.009245303459465504, + -0.03448958322405815, + -0.042196497321128845, + 0.049916092306375504, + 0.045829903334379196, + -0.008135085925459862, + 0.10241375118494034, + -0.04531888663768768, + 0.04726863652467728, + -0.012452051043510437, + -0.02501749061048031, + -0.012275232933461666, + -0.023431338369846344, + -0.04276399686932564, + -0.019396085292100906, + -0.022378602996468544, + 0.0026770629920065403, + -0.030819091945886612, + 0.01786004565656185, + 0.025787852704524994, + -0.017667079344391823, + 0.009681419469416142, + -0.02460772730410099, + -0.07041982561349869, + -0.0563756488263607, + -0.02524767629802227, + -0.014598309993743896, + -0.04393898695707321, + 0.031352873891592026, + 0.01635821722447872, + -0.08857406675815582, + -0.020521467551589012, + -0.005348717328161001, + -0.06627412885427475, + -0.031511105597019196, + 0.06801502406597137, + -0.008178845047950745, + 0.05705862492322922, + 0.011669931001961231, + 0.03554510325193405, + 0.02246054820716381, + -0.020016757771372795, + -0.0010072003351524472, + 0.020402593538165092, + 0.008224059827625751, + -0.0015428236220031977, + -0.007719733752310276, + 0.010483910329639912, + -0.013822193257510662, + -0.0038665211759507656, + 0.008559849113225937, + -0.009918696247041225, + 0.0012676168698817492, + 0.0007694034138694406, + -0.026104388758540154, + -0.029247300699353218, + -0.00800449587404728, + 0.00646695401519537, + -0.02348902076482773, + 0.023453813046216965, + -0.018056603148579597, + -0.027320174500346184, + 0.011804724112153053, + 0.0024190882686525583, + 0.021743500605225563, + -0.04038519039750099, + -0.05649363249540329, + 0.008855503983795643, + -0.052672985941171646, + 0.04076706990599632, + 0.045363977551460266, + -0.0357796773314476, + -0.01763707585632801, + 0.02764923684298992, + 0.007219276856631041, + 0.08219212293624878, + -0.014436664991080761, + 0.0043848068453371525, + 0.020769638940691948, + 0.02606542780995369, + 0.03810302913188934, + 0.002786391880363226, + 0.024166101589798927, + 0.005783462431281805, + -0.009387752041220665, + -0.004417551681399345, + -0.0024243220686912537, + -0.002072789939120412, + -0.00951352808624506, + -0.023908954113721848, + 0.01852068305015564, + 0.0041957818903028965, + 0.03064713627099991, + -0.05602750554680824, + -0.016463851556181908, + -0.0246155746281147, + 0.02854842320084572, + 0.023398704826831818, + 0.03214557468891144, + -0.00831066258251667, + 0.03797965496778488, + 0.00679896492511034, + 0.020896535366773605, + -0.02017921395599842, + -0.012198396027088165, + 0.00954672321677208, + 0.0063551440834999084, + 0.024658476933836937, + -0.022414129227399826, + 0.0008288740064017475, + 0.00021665396343450993, + -0.0033836595248430967, + 0.03879265859723091, + 0.02484542317688465, + -0.01652577333152294, + -0.026306817308068275, + 0.017408933490514755, + 0.0230718906968832, + -0.036426886916160583, + -0.014352445490658283, + -0.005465747322887182, + -0.010677064768970013, + -0.0015172581188380718, + -0.024693429470062256, + 0.007857410237193108, + -0.007269586902111769, + -0.03579365462064743, + 0.010325731709599495, + -0.010844488628208637, + -0.018570411950349808, + -0.04602006450295448, + -0.036935675889253616, + 0.013703204691410065, + 0.010773524641990662, + 0.003837420605123043, + 0.006984885782003403, + -0.005183209665119648, + -0.0310232974588871, + 0.019705960527062416, + -0.03513737767934799, + 0.01815200410783291, + -0.017296548932790756, + -0.003705881303176284, + 0.008291946724057198, + 0.03282632306218147, + 0.030279191210865974, + 0.018359558656811714, + 0.004930807743221521, + -0.0027310040313750505, + -0.02284744381904602, + -0.023953191936016083, + -0.008610591292381287, + 0.04078564792871475, + -0.03552156314253807, + 0.004986373241990805, + -0.014888331294059753, + 0.020669616758823395, + -0.010421442799270153, + -0.0010459854966029525, + 0.01341464463621378, + -0.003371725557371974, + 0.012545131146907806, + 0.007119709625840187, + -0.017510468140244484, + 0.028173653408885002, + 0.010622208938002586, + -0.011938020586967468, + -0.006024570669978857, + 0.01303096767514944, + -0.0017022638348862529, + 0.003022154327481985, + 0.011579031124711037, + -0.031892165541648865, + -0.015683945268392563, + -0.010377663187682629, + -0.06989848613739014, + -0.020184462890028954, + -0.03273898735642433, + 0.015308142639696598, + -0.015760529786348343, + -0.01935018040239811, + 0.03225249797105789, + 0.005020030774176121, + 0.027816003188490868, + -0.0698733702301979, + -0.0011708486126735806, + 0.06256242841482162, + -0.01346916239708662, + 0.004611688666045666, + -0.005877356976270676, + 0.008208535611629486, + 0.005521166138350964, + -0.025316180661320686, + -0.02789822779595852, + 0.03219206631183624, + 0.028408972546458244, + 0.02734488807618618, + -0.013278098776936531, + -0.008376297540962696, + 0.003558720462024212, + 0.01635034754872322, + -0.014643742702901363, + -0.004103947430849075, + -0.02126905880868435, + 0.05363069102168083, + -0.0019100350327789783, + -0.04487000033259392, + 0.02959972433745861, + 0.006268780212849379, + 0.0019785084296017885, + -0.02701585367321968, + -0.0095831835642457, + 0.05143407732248306, + 0.01934981346130371, + -0.019695866852998734, + -0.013814330101013184, + 0.019808074459433556, + 0.034632567316293716, + -0.0018977451836690307, + 0.0331597663462162, + -0.004278331063687801, + -0.0007820633472874761, + 0.025960257276892662, + -0.0254565067589283, + -0.03651786595582962, + 0.012215018272399902, + 0.033269044011831284, + 0.013233443722128868, + -0.03212902694940567, + 0.004607978742569685, + -0.020498109981417656, + -0.018762152642011642, + 0.014275270514190197, + 0.005534638650715351, + 0.007148340344429016, + -0.01406778022646904, + -0.020225781947374344, + 0.018287403509020805, + -0.044481489807367325, + -0.10500093549489975, + 0.022336240857839584, + 0.02894500270485878, + -0.021883901208639145, + 0.0060417624190449715, + 0.0010819437447935343, + -0.025822412222623825, + 0.0036487323231995106, + 0.03152134269475937, + 0.03517766669392586, + 0.04277415946125984, + 0.07486078888177872, + 0.03018365427851677, + 0.026839636266231537, + -0.0392768569290638, + -0.014268803410232067, + 0.016431329771876335, + -0.007368355989456177, + 0.021402904763817787, + -0.06208064779639244, + 0.000787769618909806, + -0.007453708443790674, + -0.014482581056654453, + 0.021118391305208206, + -0.031948234885931015, + -0.04159544035792351, + -0.008966626599431038, + 0.014701810665428638, + 0.019652238115668297, + 0.04861634597182274, + -0.05287662148475647, + 0.02492477558553219, + -0.04942101240158081, + -0.03126966953277588, + -0.010201391763985157, + 0.028090305626392365, + -0.016864560544490814, + 0.0006380900740623474, + -0.006315239705145359, + -0.05896229296922684, + 0.0004698621924035251, + -0.003501296043395996, + -0.011421391740441322, + -0.055222783237695694, + 0.017759958282113075, + -0.006314628291875124, + 0.08555394411087036, + 0.03177577257156372, + -0.012915638275444508, + -0.04564516991376877, + 0.05338049679994583, + 0.030854448676109314, + -0.057183533906936646, + 0.01828388310968876, + 0.07173789292573929, + 0.007402083370834589, + 0.034719664603471756, + 0.0030373327899724245, + -0.021318914368748665, + -0.006980691105127335, + 0.022701537236571312, + -0.05651450902223587, + -0.0049078939482569695, + -0.02241508662700653, + -0.07060912251472473, + -0.008678007870912552, + -3.2729778467910364e-05, + -0.01059181708842516, + 0.015863077715039253, + -0.04627370089292526, + 0.02566867507994175, + 0.007552900351583958, + 0.03215480595827103, + 0.09355088323354721, + -0.003735826350748539, + -0.023115264251828194, + 0.012275229208171368, + -0.009928861632943153, + 0.03051515854895115, + -0.027858758345246315, + 0.03967151418328285, + 0.005351975094527006, + -0.009396717883646488, + 0.021627036854624748, + 0.024526037275791168, + 0.010573701933026314, + -0.04808395728468895, + -0.0384388193488121, + 0.07144305109977722, + -0.0041555846109986305, + 0.0013505936367437243, + 0.056338030844926834, + -0.017779098823666573, + -0.07405105233192444, + -0.010438213124871254, + 0.006696462631225586, + 0.02442697249352932, + -0.012993806041777134, + -0.010423979721963406, + 0.025741519406437874, + -0.015428010374307632, + -0.036677539348602295, + 0.0831272229552269, + 0.010054094716906548, + 0.004807084798812866, + -0.006277823820710182, + -0.011905059218406677, + -0.03398881107568741, + -0.02651522308588028, + 0.05121402069926262, + -0.07239528000354767, + -0.02008054591715336, + -0.05682535842061043, + 0.01117271464318037, + 0.009458551183342934, + -0.0143109280616045, + -0.0005391606246121228, + -0.0046625155955553055, + 0.020141521468758583, + -0.03459019958972931, + -0.008526516146957874, + -0.019932391121983528, + 0.01934204064309597, + -0.017046792432665825, + -0.017806096002459526, + -0.07022745907306671, + -0.008894801139831543, + -0.025537051260471344, + -0.005644552409648895, + -0.012139327824115753, + 0.02261120267212391, + 0.04147079586982727, + 0.06329435855150223, + 0.05332527309656143, + -0.002833939390257001, + 0.00824036542326212, + -0.04199399799108505, + -0.050686679780483246, + -0.02438325062394142, + 0.03446432203054428, + 0.01788828894495964, + -0.05864414572715759, + -0.0032163546420633793, + -0.04837244376540184, + -0.013880289159715176, + -0.01557760126888752, + -0.022320589050650597, + 0.02836628071963787, + 0.050087496638298035, + -0.02556641586124897, + -0.08149200677871704, + -0.03644788637757301, + 0.07954594492912292, + -0.06412453949451447, + -0.008882831782102585, + 0.004795397631824017, + 0.052920375019311905, + -0.06769382953643799, + 0.0011254043783992529, + 0.0584716759622097, + -0.003987492062151432, + 0.04722520709037781, + -0.03766762465238571, + 0.02592119388282299, + 0.005843533668667078, + -0.024218035861849785, + -0.021855635568499565, + -0.038381852209568024, + -0.0006907883216626942, + -0.001929473364725709, + -0.008544767275452614, + -0.021538008004426956, + -0.03328529745340347, + 0.025491828098893166, + 0.012603254057466984, + 0.04697754234075546, + 0.014733459800481796, + -0.0008766938699409366, + -0.009255639277398586, + 0.035371724516153336, + -0.019148392602801323, + -0.015305707231163979, + 0.057257287204265594, + -0.01927778869867325, + 0.07855617254972458, + -0.012959450483322144, + 0.003945131786167622, + -0.022151010110974312, + -0.005065035540610552, + -0.03380488604307175, + 0.01665702648460865, + 0.03186611831188202, + 0.001169644994661212, + 0.018457189202308655, + 0.011440427042543888, + -0.039661288261413574, + 0.01479057315737009, + 0.01571943610906601, + -0.018007852137088776, + -0.04935845360159874, + 0.020046435296535492, + 0.004458513576537371, + 0.016789570450782776, + 0.02935086190700531, + -0.06034703925251961, + -0.04158824682235718, + -0.017839530482888222, + 0.03594972938299179, + -0.009177870117127895, + 0.02409210614860058, + -0.0018460247665643692, + 0.023518435657024384, + 0.03636636212468147, + -0.006744967307895422, + 0.005933035165071487, + -0.03381484001874924, + -0.04081590846180916, + 0.018472924828529358, + -0.06208370253443718, + -0.03157518059015274, + -0.018918627873063087, + -0.07806749641895294, + 0.005101260729134083, + 0.008122507482767105, + 0.032191842794418335, + -0.01964508183300495, + -0.0013235133374109864, + -0.018076974898576736, + 0.01556458231061697, + 0.023269684985280037, + 0.03043118119239807, + 0.04773000255227089, + 0.03263452649116516, + 0.027485130354762077, + -0.028752969577908516, + -0.014527619816362858, + -0.008523348718881607, + -0.03583730012178421, + -0.012710080482065678, + 0.0744883269071579, + 0.025556426495313644, + -0.015566435642540455, + 0.060927536338567734, + -0.021312406286597252, + -0.008406026288866997, + 0.010640384629368782, + -0.0266285240650177, + 0.08013198524713516, + -0.02924935147166252, + 0.0031777387484908104, + 0.024013478308916092, + 0.006851626560091972, + -0.008164197206497192, + 0.06457450985908508, + 0.05434226617217064, + -0.03859127312898636, + 0.008371018804609776, + 0.006984700448811054, + 0.010460542514920235, + 0.020527485758066177, + 0.03763791546225548, + 0.002724866382777691, + 0.04113521799445152, + -0.009393888525664806, + 0.02836686372756958, + 0.0016425763024017215, + 0.028063349425792694, + 0.012523316778242588, + 0.05981552600860596, + 0.005422864109277725, + 0.02147625759243965, + -0.02387937344610691, + 0.013222793117165565, + 0.04672641679644585, + 0.014349124394357204, + 0.02073272317647934, + -0.03891931474208832, + 0.05480552464723587, + -0.0024059375282377005, + -0.022807780653238297, + 0.07156813889741898, + 0.03456917032599449, + -0.0737229660153389, + -0.020043157041072845, + -0.026231756433844566, + 0.055728863924741745, + -0.00851447880268097, + 0.02388603985309601, + -0.00043372277286835015, + 0.007796429563313723, + 0.011038217693567276, + 0.0032087077852338552, + 0.015585342422127724, + 0.038017723709344864, + -0.013633777387440205, + 0.0023112173657864332, + 0.02054590918123722, + 0.03818686306476593, + -0.04165828227996826, + -0.02582745999097824, + -0.03161805868148804, + 0.0013475915184244514, + -0.0022628449369221926, + 0.04758869484066963, + 0.02840280346572399, + 0.03283988684415817, + -0.002214500680565834, + -0.025863004848361015, + 0.013980456627905369, + 0.05872083082795143, + -0.07550825923681259, + 0.02122228592634201, + 0.022219955921173096, + -0.048435028642416, + -0.017963454127311707, + 0.006088522728532553, + 0.022721316665410995, + 0.0471385233104229, + 0.020192325115203857, + -0.002199377166107297, + 0.04585942625999451, + 0.0666276216506958, + -0.06340736895799637, + 0.027278894558548927, + 0.02443348616361618, + 0.00986221618950367, + -0.03768406808376312, + -0.03322398290038109, + 0.014559903182089329, + 0.00402617733925581, + 0.08296707272529602, + 0.018579691648483276, + 0.02766774594783783, + -0.011419839225709438, + -0.010934286750853062, + -0.052748020738363266, + -0.0008890010067261755, + 0.041519645601511, + -0.04523427039384842, + -0.0716157779097557, + -0.03574269264936447, + 0.01859375461935997, + -0.03989842161536217, + -0.007281338796019554, + -0.023540114983916283, + -0.008911484852433205, + 0.06408509612083435, + 0.02022087387740612, + 0.026774775236845016, + 0.0026186886243522167, + -0.019785644486546516, + -0.06827587634325027, + -0.00856844987720251, + -0.018003400415182114, + 0.012909607961773872, + -0.01171804778277874, + -0.03217853978276253, + -0.047315239906311035, + -0.012071478180587292, + -0.007799434009939432, + 0.00032094481866806746, + -0.078443244099617, + -0.020563671365380287, + 0.007473265286535025, + -0.01886209100484848, + -0.03680361807346344, + 0.015345706604421139, + 0.013660908676683903, + 0.006362457759678364, + -0.009467510506510735, + -0.023810770362615585, + 0.027388431131839752, + 0.0037776289973407984, + 0.014529502019286156, + 0.07457289844751358, + -0.019336044788360596, + 0.04224352911114693, + -0.036690063774585724, + -0.026842733845114708, + -0.010076013393700123, + 0.015583565458655357, + -0.007938276045024395, + 0.01499243639409542, + -0.04702753573656082, + -0.04567717760801315, + -0.025297095999121666, + -0.02172813005745411, + 0.004102868493646383, + 0.013741280883550644, + 0.0018813121132552624, + 0.03965546563267708, + -0.013981394469738007, + -0.012396840378642082, + -0.015837762504816055, + 0.047224923968315125, + -0.04476696252822876, + 0.039742596447467804, + -0.022552520036697388, + -0.019552843645215034, + -0.006122496444731951, + 0.013192589394748211, + -0.03731328621506691, + 0.00849963165819645, + 0.000436073838500306, + -0.0011217696592211723, + -0.00817433837801218, + -0.04546113684773445, + -0.008258670568466187, + -0.04123556986451149, + -0.009237786754965782, + -0.016139531508088112, + -0.0021750163286924362, + 0.000918268458917737, + 0.005170268937945366, + -0.026256166398525238, + 0.007162848953157663, + -0.043302733451128006, + -0.00878501683473587, + 0.00549981277436018, + 0.012424996122717857, + 0.03667668625712395, + -0.014136074110865593, + -0.02957519330084324, + 0.011050366796553135, + -0.0007176448707468808, + 0.008864819072186947, + -0.011373304761946201, + 0.025919301435351372, + -0.03600480780005455, + -0.008517966605722904, + 0.01332105789333582, + -0.023786133155226707, + -0.0870823860168457, + -0.009480152279138565, + -0.006649226415902376, + 0.007907168008387089, + -0.01619040034711361, + -0.05882687121629715, + 0.026232058182358742, + -0.049651142209768295, + 0.010519863106310368, + 0.007273228373378515, + -0.018984943628311157, + 0.045028068125247955, + -0.09345962107181549, + 0.008085595443844795, + 0.003072513733059168, + -0.005351006053388119, + -0.015218054875731468, + 0.02014351822435856, + 0.02510935068130493, + -0.007977302186191082, + 0.010494030080735683, + -0.014864782802760601, + -0.037325721234083176, + -0.010937733575701714, + -0.03311201557517052, + 0.055236153304576874, + 0.016751298680901527, + 0.1013089194893837, + -0.013730335980653763, + -0.011071115732192993, + 0.00844000093638897, + 0.004682667553424835, + -0.07944490015506744, + -0.020238030701875687, + 0.01604270562529564, + -0.021892288699746132, + 0.008181723766028881, + 0.037567511200904846, + 0.0038390501867979765, + 0.009100294671952724, + 0.017840450629591942, + 0.00904583279043436, + 0.039928436279296875, + -0.02120424434542656, + 0.0275109875947237, + -0.010120606981217861, + -0.051302265375852585, + 0.02656550705432892, + 0.04975393787026405, + 0.03135289251804352, + 0.02633628621697426, + 0.027899714186787605, + -0.002152064349502325, + -0.010206799954175949, + 0.01425966341048479, + 0.034679289907217026, + 0.003984418231993914, + 0.015362288802862167, + -0.010373903438448906, + 0.017911022529006004, + -0.00512356823310256, + 0.0071853273548185825, + -0.05588168650865555, + -0.007507498376071453, + 0.014331214129924774, + -0.012413478456437588, + 0.020384885370731354, + 0.019667137414216995, + -0.00123044743668288, + 0.030681466683745384, + 0.030574211850762367, + 0.009662595577538013, + -0.040820855647325516, + 0.023972386494278908, + 0.001389061100780964, + -0.03839772194623947, + 0.04999329522252083, + 0.006016826722770929, + -0.01533903181552887, + 0.03592488914728165, + 0.015170824714004993, + 0.008101948536932468, + -0.05185183510184288, + 0.02553052268922329, + -0.025979649275541306, + -0.004658603575080633, + 0.018144778907299042, + -0.02805781550705433, + 0.03101927973330021, + 0.03273852542042732, + 0.03751399740576744, + 0.0013152665924280882, + -0.012512383051216602, + -0.031178919598460197, + 0.0007016028976067901, + 0.04468879476189613, + -0.014315547421574593, + 0.0210062637925148, + 0.03614388033747673, + -0.01647168956696987, + -0.0290250051766634, + -0.02262934297323227, + -0.015924926847219467, + 0.010929633863270283, + 0.010621460154652596, + 0.03123384900391102, + 0.023960623890161514, + -0.015228814445436, + -0.02223319374024868, + 0.02658345364034176, + -0.030509943142533302, + -0.0043336437083780766, + 0.006164562422782183, + -0.030614065006375313, + -0.03287963569164276, + -0.002874714322388172, + 0.02143176831305027, + 0.03333144634962082, + 0.005861564539372921, + -0.07038417458534241, + 0.021837757900357246, + 0.021651092916727066, + -0.0006680796504952013, + 0.026936134323477745, + -0.004600559361279011, + 0.02611396461725235, + -0.012607580050826073, + -0.08024618774652481, + -0.004073911812156439, + -0.039445873349905014, + 0.013017440214753151, + 0.07639347016811371, + 0.02054489217698574, + -0.00635500717908144, + -0.023220224305987358, + -0.0016815843991935253, + 0.04096108675003052, + 0.0025020947214215994, + -0.0038196148816496134, + 0.03582243621349335, + 0.032129473984241486, + 0.0272079948335886, + -0.00022774338140152395, + -0.01959635317325592, + -0.009179078973829746, + -0.06148415058851242, + 0.04082661122083664, + 0.03148619458079338, + 0.006883305497467518, + -0.04138605296611786, + -0.031138978898525238, + -0.019138241186738014, + -0.04134851321578026, + -0.040772177278995514, + -0.044716473668813705, + -0.03576577082276344, + 0.06757846474647522, + -0.01559193804860115, + 0.039160169661045074, + -0.008245967328548431, + 0.00047352921683341265, + 0.04060448706150055, + -0.013335397467017174, + 0.03925985097885132, + 0.030865829437971115, + -0.003989345859736204, + 0.013939294964075089, + -0.009230106137692928, + 0.029926452785730362, + 0.014647314324975014, + -0.03656073287129402, + -0.014362427406013012, + 0.008489735424518585, + 0.01506863720715046, + 0.03230097517371178, + -0.008795407600700855, + -0.024804776534438133, + 0.006760668475180864, + -0.0015357522061094642, + 0.04142257198691368, + -0.010929085314273834, + -0.018641946837306023, + -0.009483806788921356, + 0.012988329865038395, + 0.036741893738508224, + -0.03350391983985901, + 0.01648462563753128, + 0.009172674268484116, + 0.003305140184238553, + -0.010897872038185596, + 0.011310365982353687, + 0.03318123146891594, + -0.0280133206397295, + 0.044743411242961884, + -0.010436654090881348, + -0.028133496642112732, + -0.025500085204839706, + 0.06184934824705124, + 0.014152204617857933, + -0.024226926267147064, + 0.017353959381580353, + -0.03657553344964981, + -0.004470482002943754, + 0.0008268646197393537, + -0.01642788015305996, + -0.014230477623641491, + 0.011478304862976074, + -0.020366892218589783, + 0.010641460306942463, + 0.003371718805283308, + -0.038722019642591476, + -0.02575637400150299, + -0.0114847207441926, + -0.00814355444163084, + -0.0774603933095932, + -0.026278726756572723, + -0.05427426099777222, + 0.015105558559298515, + 0.06379465013742447, + -0.01953708939254284, + 0.014262440614402294, + 0.018381474539637566, + 0.041280556470155716, + 0.037754908204078674, + 0.09431543946266174, + 0.0031293416395783424, + -0.031432680785655975, + 0.04226112738251686, + 0.03792457655072212, + 0.005709394812583923, + -0.027055995538830757, + -0.0001594759669387713, + 0.02678421139717102, + 0.016001291573047638, + 0.0010200971737504005, + 0.05371323600411415, + 0.0013295249082148075, + 0.013408763334155083, + -0.039850663393735886, + 0.03796212375164032, + -0.015060101635754108, + -0.030099906027317047, + 0.03213479742407799, + -0.00830291397869587, + -0.03436053916811943, + 0.0050109256990253925, + -0.026547441259026527, + -0.05952379107475281, + 0.029235489666461945, + 0.03772434592247009, + 0.02407069504261017, + 0.008697817102074623, + -0.023190347477793694, + 0.026675743982195854, + 0.032303616404533386, + -0.0008091432391665876, + 0.016388414427638054, + 0.03745869919657707, + 0.017458731308579445, + -0.02314489521086216, + 0.015998082235455513, + -0.014739681966602802, + -0.01382453367114067, + 0.05486426129937172, + 0.020462416112422943, + 0.040147632360458374, + 0.014444450847804546, + -0.0035526540596038103, + 0.00884643942117691, + -0.037991270422935486, + -0.06022060289978981, + -0.005550881382077932, + 0.015103209763765335, + 0.030888216570019722, + 0.017184076830744743, + 0.05617588385939598, + -0.020713577046990395, + 0.052686549723148346, + 0.018689054995775223, + 0.04530992731451988, + -0.004363244399428368, + 0.0284720566123724, + -0.014343748800456524, + -0.007252373732626438, + -0.07110797613859177, + -0.0014196715783327818, + 0.062154434621334076, + -0.02322341874241829, + -0.0010725430911406875, + -0.012259716168045998, + -0.019726209342479706, + -0.0014571703504770994, + -0.003738771192729473, + 0.025684168562293053, + 0.016137124970555305, + -0.007863935083150864, + 0.02262747287750244, + -0.012594243511557579, + 0.017647380009293556, + -0.028697915375232697, + 0.04672835022211075, + 0.06662759929895401, + -0.02559175342321396, + 0.037105072289705276, + -0.021835634484887123, + 0.03558386117219925, + -0.03887742757797241, + 0.0015980885364115238, + -0.03852982074022293, + 0.008196163922548294, + -0.037942804396152496, + -0.04167276248335838, + -0.048485662788152695, + -0.008121117949485779, + -0.04263349622488022 + ], + "start_index": 0, + "end_index": 160, + "token_count": 48, + "file": "try_catch_request.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "78aa8eb7-91eb-51db-abb3-7df268f2d13b", + "_source": { + "text": "addParam(\"data_list\", mi_lista)\ngetListLen(mi_lista, cantidad)\naddResult(cantidad)", + "embedding": [ + -0.029328560456633568, + -0.021120065823197365, + -0.012200573459267616, + -0.0630408227443695, + 0.017263654619455338, + -0.019202429801225662, + 0.013265672139823437, + -0.05583919584751129, + 0.04424052685499191, + 0.010671647265553474, + -0.006943143904209137, + -0.00950187910348177, + 0.02441653423011303, + -0.011570467613637447, + -0.03669394925236702, + 0.03779841214418411, + -0.043867722153663635, + 0.02146541327238083, + 0.011124471202492714, + 0.010106341913342476, + -0.047383617609739304, + 0.005638035014271736, + -0.0744607225060463, + 0.06399291753768921, + 0.06759069859981537, + -0.022146673873066902, + -0.014977514743804932, + 0.029551981016993523, + 0.07719934731721878, + -0.034382306039333344, + 0.028806740418076515, + 0.0024745746050029993, + 0.011477503925561905, + -0.08191143721342087, + -0.01839134469628334, + -0.013590587303042412, + 0.015727542340755463, + -0.039519455283880234, + -0.0010350184747949243, + -0.0031764055602252483, + 0.025779105722904205, + 0.014553233981132507, + -0.01562761701643467, + 0.01885882206261158, + -0.023150775581598282, + -0.03914160653948784, + 0.012311816215515137, + 0.00784971471875906, + 0.004221064038574696, + -0.011870233342051506, + -0.023700600489974022, + 0.009022453799843788, + -0.010398144833743572, + 0.01748623512685299, + 0.02049003727734089, + -0.0218656025826931, + 0.028037818148732185, + 0.010586731135845184, + -0.008942480199038982, + -0.01756885088980198, + -0.050118811428546906, + -0.027013879269361496, + -0.05788964033126831, + -0.02158830687403679, + 0.022077880799770355, + -0.06470219790935516, + 0.025445392355322838, + 0.03396046906709671, + -0.0980851873755455, + -0.005964599549770355, + -0.04159150272607803, + -0.026766330003738403, + -0.03916497901082039, + 0.009196579456329346, + -0.00872016791254282, + 0.0017363097285851836, + 0.006332494784146547, + -0.005695818457752466, + -0.013008959591388702, + -0.03228960186243057, + -0.0011552025098353624, + -0.027364131063222885, + 0.03508118912577629, + 0.04767763987183571, + -0.005746105685830116, + 0.0010082772932946682, + -0.027278516441583633, + 0.02938373200595379, + -0.027029186487197876, + -0.03632543608546257, + -0.03817468881607056, + 0.0044913324527442455, + -0.007370831910520792, + 0.00922730378806591, + 0.014196464791893959, + -0.021640591323375702, + 0.03807314112782478, + 0.044887520372867584, + -0.010420778766274452, + -0.006981666665524244, + -0.04101189225912094, + 0.02008684165775776, + -0.0014103675493970513, + 0.022549422457814217, + -0.06670138239860535, + -0.013634941540658474, + -0.058986712247133255, + 0.020181290805339813, + -0.03635520860552788, + -0.008933327160775661, + -0.0035616701934486628, + 0.05429447814822197, + 0.04638996720314026, + 0.028906047344207764, + -0.027237175032496452, + -0.0381290502846241, + 0.009863286279141903, + 0.002982876729220152, + 0.04621757194399834, + -0.0026521191466599703, + 0.013263869099318981, + 0.013689141720533371, + -0.009917371906340122, + 0.009567106142640114, + -0.001246894127689302, + -0.026967516168951988, + -0.03463440015912056, + 0.023100215941667557, + 0.011475407518446445, + -0.043162550777196884, + -0.036998599767684937, + -0.017010757699608803, + -0.0019096140749752522, + -0.006158740725368261, + 0.015389198437333107, + 0.01183285005390644, + 0.0347476601600647, + 0.03705362603068352, + 0.06335285305976868, + -0.012616989202797413, + -0.010630153119564056, + -0.01169639267027378, + 0.0015231793513521552, + -0.010436859913170338, + 0.028309805318713188, + -0.008525968529284, + -0.007016702555119991, + 0.0003903932520188391, + 0.00012732937466353178, + 0.05371149629354477, + -0.015284346416592598, + 0.001443012384697795, + -0.011069097556173801, + -0.06177309900522232, + -0.0036184003110975027, + 0.029885228723287582, + 0.025343777611851692, + -0.014062672853469849, + -0.02328570745885372, + 0.025544796139001846, + -0.0159564521163702, + -0.005678344517946243, + -0.010309603065252304, + -0.06451142579317093, + -0.03923742100596428, + 0.0014208037173375487, + -0.023555446416139603, + -0.021575529128313065, + -0.04793341085314751, + 0.007730050012469292, + -0.018930181860923767, + 0.0061047435738146305, + -0.016262391582131386, + -0.014903733506798744, + -0.012079257518053055, + -0.02525978721678257, + -0.03202912211418152, + -0.07382489740848541, + -0.01768735609948635, + -0.021659690886735916, + -0.018509283661842346, + 0.00014526683662552387, + 0.001822663121856749, + 0.028638795018196106, + 0.013063442893326283, + 0.05124528333544731, + 0.008636431768536568, + -0.0678572803735733, + -0.007760908454656601, + -0.006346647161990404, + 0.00824272446334362, + -0.0040613929741084576, + -0.08494480699300766, + -0.028645044192671776, + 0.013545181602239609, + -0.030961526557803154, + 0.02354464866220951, + 0.010777178220450878, + 0.014003724791109562, + -0.022039953619241714, + -0.007011557929217815, + 0.0018575838766992092, + -0.012899107299745083, + 0.012229779735207558, + -0.0035867684055119753, + 0.010243169032037258, + 0.025512386113405228, + 0.019609399139881134, + 0.0014631964731961489, + -0.01557821873575449, + -0.018717793747782707, + -0.014298206195235252, + -0.029529264196753502, + -0.018772035837173462, + -0.007370294537395239, + -0.007223311346024275, + 0.03130000829696655, + 0.02964683249592781, + 0.0231479462236166, + 0.008451418951153755, + 0.0022264141589403152, + 0.010237446054816246, + -0.02526255138218403, + 0.013514301739633083, + -0.020569922402501106, + 0.009449757635593414, + 0.031104179099202156, + 0.012911131605505943, + 0.022495314478874207, + 0.008136105723679066, + -0.0313803106546402, + -0.0023176001850515604, + 0.05051162466406822, + -0.03256716951727867, + 0.042692821472883224, + 0.00011722841736627743, + 0.004409130197018385, + 0.02745951898396015, + 0.009847261011600494, + -0.04774652048945427, + 0.01066264696419239, + -0.01700678840279579, + 0.03534551337361336, + 0.01985599845647812, + -0.014782391488552094, + 0.009043097496032715, + -0.0017209695652127266, + 0.011972215957939625, + -0.023347215726971626, + -0.04258932173252106, + 0.004738748073577881, + 0.03910544514656067, + -0.017551599070429802, + 0.03762226551771164, + 0.015421150252223015, + -0.005382871720939875, + -0.005789434537291527, + -0.02857900969684124, + 0.01056655216962099, + 0.013173261657357216, + -0.030543114989995956, + -0.03450074419379234, + -0.048814304172992706, + -0.004121984820812941, + -0.007320896256715059, + 0.03477627411484718, + -0.024164967238903046, + 0.040207330137491226, + -0.011063849553465843, + -0.01521978434175253, + -0.018078869208693504, + 0.022216228768229485, + -0.02404676005244255, + -0.022888677194714546, + 0.0007347157807089388, + -0.009120426140725613, + -0.010319571942090988, + -0.08803960680961609, + 0.03692109137773514, + -0.055122822523117065, + 0.012459076941013336, + 0.03525413200259209, + -0.008595723658800125, + -0.007019067648798227, + -0.0038824896328151226, + 0.02354857139289379, + 0.010885790921747684, + 0.0026428070850670338, + 0.005214954726397991, + 0.011299002915620804, + 0.016745423898100853, + -0.021198930218815804, + -0.03903661668300629, + 0.040680814534425735, + -0.02661113068461418, + 0.04749879613518715, + 0.011727137491106987, + 0.042317479848861694, + 0.006497287657111883, + -0.026551635935902596, + 0.04061059653759003, + 0.002730631735175848, + -0.010941209271550179, + -0.04691120982170105, + -0.015717605128884315, + -0.00555772939696908, + 0.07478884607553482, + -0.03284890577197075, + -0.005920642986893654, + -0.03866107761859894, + 0.0922950953245163, + -0.04653601720929146, + 0.027349086478352547, + -0.007516031619161367, + 0.004910401534289122, + -0.03860374540090561, + -0.057394012808799744, + -0.01607012376189232, + 0.05432146042585373, + -0.024978751316666603, + 0.0491039864718914, + -0.02358401007950306, + -0.012606012634932995, + -0.029838714748620987, + -0.027521593496203423, + 0.023924870416522026, + -0.02711440622806549, + -0.05859982594847679, + -0.032359007745981216, + -0.031841523945331573, + -0.003971198573708534, + -0.0052144285291433334, + 0.014204902574419975, + -0.012974079698324203, + 0.023180510848760605, + 9.486208000453189e-05, + 0.08377470076084137, + 0.0015879364218562841, + -0.0007300582947209477, + 0.0025998251512646675, + 0.00442524766549468, + 0.04161107540130615, + -0.004798533394932747, + 0.05589194595813751, + -0.01763448305428028, + -0.025862177833914757, + -0.06397267431020737, + 0.011255837045609951, + -0.011942845769226551, + -0.03562551736831665, + 0.008024674840271473, + -0.03880418837070465, + 0.014816147275269032, + 0.0004476846952456981, + -0.01933194324374199, + -0.005424279719591141, + 0.02958952635526657, + 0.01037824060767889, + -0.04672643169760704, + -0.017971588298678398, + -0.025406688451766968, + 0.0021994279231876135, + 0.02053787186741829, + -0.040034014731645584, + -0.05216475948691368, + -0.025266768410801888, + -0.024984057992696762, + 0.02322304993867874, + 0.03480689600110054, + -0.019384048879146576, + -0.11128860712051392, + 0.03362660855054855, + 0.024762434884905815, + 0.03740084916353226, + 0.03847324475646019, + -0.03036823309957981, + 0.020420104265213013, + -0.02799879014492035, + 0.03207212686538696, + 0.005514092743396759, + 0.03723808005452156, + 0.022913377732038498, + -0.03260108828544617, + -0.03892442211508751, + 0.017993561923503876, + -0.04137105867266655, + 0.01613258197903633, + -0.026994163170456886, + 0.015178618021309376, + -0.018718296661973, + 0.05517306551337242, + 0.032609544694423676, + 0.01467215083539486, + 0.005435563623905182, + 0.0031487748492509127, + -0.03755957633256912, + -0.06761421263217926, + 0.021661564707756042, + 0.0023615662939846516, + 0.023396408185362816, + 0.02853141911327839, + -0.002171037020161748, + -0.07449250668287277, + -0.02736777998507023, + -0.016027625650167465, + 0.004195688758045435, + 0.026453442871570587, + 0.06993916630744934, + 0.052291400730609894, + 0.023182859644293785, + 0.04324191063642502, + 0.005717040039598942, + -0.049629271030426025, + 0.011845385655760765, + 0.005803973414003849, + -0.0013470520498231053, + 0.053773246705532074, + -0.024281971156597137, + -0.032829608768224716, + -0.024866687133908272, + -0.0071177310310304165, + -0.00891160685569048, + -0.023891443386673927, + -0.029307115823030472, + 0.01245589554309845, + 0.0007693105726502836, + -0.010203707963228226, + -0.07977544516324997, + -0.01923857070505619, + 0.06570116430521011, + 0.020013900473713875, + -0.0027118565049022436, + 0.02450878731906414, + 0.009889787063002586, + -0.02714938297867775, + 0.026763804256916046, + 0.05473458394408226, + 0.03887271508574486, + 0.04178430512547493, + -0.03494725748896599, + -0.01733686402440071, + 0.0434381403028965, + -0.012942534871399403, + 0.03237474337220192, + -0.06169072911143303, + 0.008378572762012482, + 0.002145185600966215, + 0.016477880999445915, + -0.056242723017930984, + -0.0654899850487709, + 0.02913598343729973, + -0.007766042836010456, + -0.024488156661391258, + 0.020026234909892082, + -0.029912827536463737, + -0.06836270540952682, + 0.014324026182293892, + -0.007513583637773991, + -0.03164117783308029, + 0.03633446991443634, + 0.014000714756548405, + 0.03935546055436134, + -0.020589545369148254, + -0.029343828558921814, + 0.017386676743626595, + 0.0372314490377903, + -0.03421444818377495, + -0.02035081759095192, + 0.05823482200503349, + -0.027296029031276703, + 0.009230955503880978, + 0.0033577652648091316, + -0.04668281972408295, + -0.02472543902695179, + 0.0048263887874782085, + -0.039869144558906555, + -0.05735405161976814, + 0.05211854726076126, + -0.028194746002554893, + 0.037625957280397415, + -0.045286085456609726, + -0.014142164029181004, + 0.043578654527664185, + -0.03405137360095978, + 0.07777124643325806, + -0.053649917244911194, + 0.011172856204211712, + -0.027185561135411263, + -0.014603679068386555, + 0.015863196924328804, + 0.05941317230463028, + 0.05792148411273956, + -0.005759172607213259, + -0.06161900982260704, + 0.014564593322575092, + -0.07991524785757065, + -0.03579668328166008, + -0.02566276490688324, + -0.10411973297595978, + 0.010540061630308628, + 0.007879956625401974, + -0.03519679233431816, + -0.03149944171309471, + 0.03662174195051193, + -0.0036172503605484962, + -0.010257937014102936, + 0.02304415963590145, + -0.007268574554473162, + 0.00260013691149652, + 0.034984346479177475, + 0.01744493842124939, + -0.0068520111963152885, + -0.006273774895817041, + -0.044923268258571625, + -0.023845314979553223, + 0.030841011554002762, + -0.02304193004965782, + 0.04607711359858513, + -0.029876578599214554, + 0.06123406067490578, + 0.008872550912201405, + 0.022580331191420555, + 0.025633545592427254, + -0.0560586042702198, + 0.016909249126911163, + 0.03144760802388191, + -0.014889408834278584, + 0.03238213434815407, + 0.023496581241488457, + 0.023771867156028748, + -0.01391253899782896, + 0.01022204291075468, + -0.013486271724104881, + -0.04117610305547714, + -0.0027493415400385857, + -0.01006479375064373, + 0.02314801886677742, + -0.02147003822028637, + -0.07106337696313858, + 0.03862787038087845, + 0.021063726395368576, + -0.02299114316701889, + -0.022653700783848763, + 0.010150419548153877, + 0.01263116393238306, + 0.008392143063247204, + 0.036434851586818695, + 0.013223600573837757, + 0.01386715192347765, + 0.012322691269218922, + 0.023392146453261375, + -0.010047320276498795, + 0.02099267765879631, + -0.015380334109067917, + 0.033252350986003876, + -0.05095652863383293, + 0.014964775182306767, + 0.01334345992654562, + 0.0047789947129786015, + -0.025193072855472565, + -0.0007034598966129124, + 0.03624379634857178, + 0.017532113939523697, + 0.006826495286077261, + 0.0460551418364048, + 0.012516229413449764, + -0.01469107810407877, + -0.004336226731538773, + 0.016736159101128578, + -0.023557385429739952, + 0.05088287964463234, + 0.03407202288508415, + -0.014107981696724892, + 0.059485871344804764, + -0.01911042630672455, + -0.042566604912281036, + 0.02822830341756344, + 0.02314901165664196, + 0.01571277715265751, + -0.05325910821557045, + 0.04952950403094292, + 0.0022026391234248877, + 0.03405707702040672, + 0.02476816438138485, + -0.03487146273255348, + 0.010847204364836216, + 0.012036941014230251, + 0.0010180675890296698, + -0.007183907087892294, + -0.04049762338399887, + 0.005515625700354576, + -0.031224975362420082, + 0.029891036450862885, + -0.05957111343741417, + 0.0332137793302536, + 0.018129607662558556, + -0.047959104180336, + 0.023639962077140808, + 0.01568390242755413, + -0.018093930557370186, + 0.03627574071288109, + 0.05122271552681923, + 0.026655973866581917, + 0.004986318293958902, + -0.006596435327082872, + 0.028825895860791206, + 0.026976296678185463, + 0.0627405196428299, + -0.038217246532440186, + 0.007417762652039528, + -0.030829593539237976, + 0.01863863505423069, + -0.077684685587883, + -0.020663954317569733, + 0.015200420282781124, + 5.6388171287835576e-06, + -0.005654678214341402, + 0.019908195361495018, + 0.03533552587032318, + -0.03455717861652374, + -0.022509820759296417, + -0.0015718690119683743, + -0.02854289673268795, + 0.0657549649477005, + -0.0011808025883510709, + 0.018904609605669975, + -0.006006506737321615, + 0.03292948380112648, + -0.011818401515483856, + -0.029072385281324387, + -0.024515986442565918, + 0.024848731234669685, + -0.03154560178518295, + -0.033957697451114655, + -0.013739338144659996, + 0.012966320849955082, + -0.00042633965495042503, + -0.01397844310849905, + 0.0022780748549848795, + -0.01387281809002161, + 0.030794790014624596, + -0.051509369164705276, + -0.01097139436751604, + 0.016397815197706223, + -0.04165969416499138, + 0.034987468272447586, + -0.008988474495708942, + 0.025795836001634598, + 0.01699102483689785, + -0.020404446870088577, + 0.030095979571342468, + 0.045303698629140854, + 0.003947972785681486, + 0.010346547700464725, + 0.010581503622233868, + 0.027881737798452377, + -0.018489357084035873, + 0.03918706998229027, + -0.018821435049176216, + 0.015676219016313553, + -0.03432309255003929, + 0.012861252762377262, + 0.0507018119096756, + -0.04772006347775459, + -0.028160201385617256, + -0.03479212522506714, + 0.059006914496421814, + 0.006798882037401199, + 0.008379079401493073, + -0.023068873211741447, + -0.026754144579172134, + -0.0512995608150959, + 0.05569954216480255, + -0.0033638107124716043, + -0.021719081327319145, + -0.017097344622015953, + -0.04090610519051552, + -0.03558945655822754, + -0.0043802037835121155, + -0.01622706837952137, + -0.02911699190735817, + -0.016307100653648376, + 0.001238388940691948, + -0.01913994364440441, + -0.039486903697252274, + -0.0043475814163684845, + -0.0637403354048729, + -0.02072867751121521, + 0.06462564319372177, + -0.0255839005112648, + -0.016653405502438545, + -0.04645749554038048, + 0.026906458660960197, + -0.04396967217326164, + 0.03173704072833061, + 0.015267596580088139, + -0.015803279355168343, + -0.028959741815924644, + 0.005894627422094345, + 0.0018890674691647291, + 0.03411795571446419, + 0.00623706541955471, + 0.031113576143980026, + -0.024061134085059166, + 0.029253989458084106, + -0.03211009129881859, + -0.018169090151786804, + 0.027705345302820206, + 0.006991596892476082, + -0.03391316905617714, + -0.01730736345052719, + -0.058021362870931625, + 0.029364416375756264, + 0.018945932388305664, + 0.025085851550102234, + -0.06738889217376709, + -0.030383950099349022, + 0.01608022302389145, + -0.011410320177674294, + -0.01808955706655979, + -0.000722195312846452, + -0.07827647030353546, + 0.024059059098362923, + -0.01240500994026661, + 0.006728158798068762, + -0.04178380221128464, + 0.007912934757769108, + -0.051257647573947906, + -0.007575995288789272, + -0.022066259756684303, + -0.023741409182548523, + 0.0033136901911348104, + -0.013105472549796104, + -0.028438493609428406, + -0.008912024088203907, + -0.03828604146838188, + 0.02827410213649273, + 0.0047666458413004875, + 0.01033896952867508, + 0.04651976749300957, + -0.0007030371925793588, + -0.02040759101510048, + -0.023465517908334732, + -0.040574394166469574, + 0.0016547506675124168, + -0.003101091831922531, + -0.019286729395389557, + 0.04098902642726898, + 0.01151631772518158, + 0.005445109214633703, + 0.038248371332883835, + -0.003522351151332259, + -0.01632324606180191, + 0.04100434109568596, + -0.027156628668308258, + -0.024902796372771263, + -0.01065504364669323, + 0.04350036382675171, + 0.04703022539615631, + 0.03448585048317909, + -0.03830569237470627, + -0.023441743105649948, + 0.038717932999134064, + -0.0046209837310016155, + 0.005862313322722912, + -0.0029374174773693085, + 0.0066249980591237545, + 0.008747444488108158, + -0.03179124370217323, + 0.034972965717315674, + 0.025333378463983536, + -0.03241143748164177, + -0.0595792718231678, + 0.053425710648298264, + -0.022470524534583092, + -0.02003582753241062, + 0.04195413738489151, + -0.02084999904036522, + 0.016651947051286697, + -0.010231227613985538, + 0.009602558799088001, + -0.03193271532654762, + -0.026218131184577942, + 0.006606427486985922, + 0.015660244971513748, + 0.0326155461370945, + 0.0002180669252993539, + 0.026586825028061867, + 0.0027071936056017876, + 0.016366565600037575, + -0.008074947632849216, + 0.014221609570086002, + 0.038247887045145035, + -0.007380226626992226, + -0.0010589613812044263, + 0.011658870615065098, + -0.007457440253347158, + 0.07040946930646896, + 0.02025766298174858, + 0.007317314390093088, + 0.02626456320285797, + 0.04804692789912224, + 0.003959649708122015, + -0.010647675022482872, + 0.0850779339671135, + -0.06346944719552994, + -0.00904360692948103, + -0.025354841724038124, + -0.04461145028471947, + 0.010787636041641235, + -0.016319092363119125, + 0.023534415289759636, + 0.006061098072677851, + 0.006020307540893555, + -0.032492995262145996, + 0.027559589594602585, + -0.004043293185532093, + -0.08003978431224823, + 0.00525561673566699, + -0.01434533391147852, + -0.020523538812994957, + 0.011688095517456532, + -0.020492028445005417, + -0.02398265153169632, + -0.008493867702782154, + 0.021309375762939453, + -0.0007267410401254892, + 0.033532578498125076, + -0.03094589151442051, + 0.00027861041598953307, + -0.03596605360507965, + -0.012415261007845402, + -0.026007449254393578, + -0.023222485557198524, + 0.01760820858180523, + -0.06391225010156631, + -0.04673853889107704, + 0.008767558261752129, + -0.02323540858924389, + 0.01414946187287569, + 0.010914445854723454, + 0.002784728305414319, + 0.024923857301473618, + 0.003289497923105955, + 0.029298588633537292, + 0.05505174398422241, + 0.01676514372229576, + -0.012759853154420853, + 0.05113255977630615, + -0.038141388446092606, + 0.016469396650791168, + 0.02777368389070034, + -0.011604197323322296, + 0.0005198510480113328, + -0.0019177744397893548, + 0.012385201640427113, + -0.018681665882468224, + 0.02194293402135372, + -0.020772799849510193, + 0.01056048832833767, + -0.04558057710528374, + -0.0020074837375432253, + -0.0468992218375206, + -0.04653844237327576, + -0.06162930652499199, + 0.03855873644351959, + -0.012701539322733879, + 0.027123136445879936, + -0.04686148092150688, + 0.005173175595700741, + -0.014127232134342194, + -0.02518782764673233, + -0.016178196296095848, + 0.02530619129538536, + -0.09115704894065857, + 0.00980866514146328, + -0.04466259106993675, + 0.01934598758816719, + 0.01891597919166088, + 0.012476712465286255, + -0.029830530285835266, + -0.0021146342623978853, + 0.03556778281927109, + 0.055844832211732864, + -0.03710810840129852, + -0.0008185658953152597, + -0.007755962200462818, + -0.01167411357164383, + 0.04144209623336792, + -0.022180475294589996, + -0.009989148005843163, + 0.02180403098464012, + -0.006690143141895533, + 0.0598025806248188, + -0.07648066431283951, + -0.012868297286331654, + 0.04875185340642929, + 0.03202170133590698, + -0.01708230748772621, + -0.008575161918997765, + 0.046077072620391846, + -0.013948671519756317, + 0.011724001727998257, + -0.012120666913688183, + 0.0018256523180752993, + -0.04247073084115982, + 0.036957066506147385, + 0.006581694819033146, + -0.003195327939465642, + 0.04566238820552826, + -0.029532887041568756, + -0.006455873604863882, + -0.0328076146543026, + -0.00786620657891035, + -0.025321826338768005, + -0.058169007301330566, + -0.05193094164133072, + -0.006345944479107857, + -0.0208060834556818, + -0.012556063011288643, + -0.0189115758985281, + -0.0052573783323168755, + 0.001738554099574685, + -0.08137055486440659, + -0.01349758729338646, + -0.02635491080582142, + -0.004742069635540247, + 0.014016764238476753, + 0.008660679683089256, + 0.038498081266880035, + -0.01933925785124302, + -0.031018037348985672, + -0.0111551433801651, + 0.06626466661691666, + 0.03824203833937645, + -0.025091754272580147, + 0.07091448456048965, + -0.0584288090467453, + 0.006807702127844095, + -0.03826287016272545, + -0.014480527490377426, + 0.00519173126667738, + -0.0008334076846949756, + -0.0012296797940507531, + 0.049362003803253174, + 0.02497940883040428, + 0.0011138863628730178, + 0.024096615612506866, + 0.02074449323117733, + 0.04851974919438362, + -0.024614473804831505, + -0.038645628839731216, + -0.0010763799073174596, + -0.02011556178331375, + 0.042223818600177765, + -0.05160098150372505, + -0.07391311228275299, + 0.008907612413167953, + -0.022468803450465202, + -0.009376540780067444, + -0.011341561563313007, + 0.00865953043103218, + 0.03304949030280113, + 0.015236624516546726, + 0.009034264832735062, + -0.052586283534765244, + -0.014106565155088902, + -0.0018825948936864734, + 0.030505316331982613, + 0.0028342853765934706, + 0.023880403488874435, + -0.001072782906703651, + 0.03739645332098007, + 0.0064440760761499405, + -0.04530146345496178, + 0.00968839880079031, + 0.00011556351091712713, + 0.0032029813155531883, + -0.03132226690649986, + -0.08892622590065002, + -0.018907781690359116, + -0.0360625721514225, + 0.0163698922842741, + 0.03551052138209343, + -0.05234454572200775, + -0.060921795666217804, + 0.05227760225534439, + 0.025131411850452423, + 0.00924750603735447, + -0.011392844840884209, + 0.03811362758278847, + 0.04798080772161484, + -0.012288771569728851, + 0.007187160197645426, + 0.00795636884868145, + 0.045736197382211685, + -0.021408643573522568, + -0.02969941310584545, + -0.006455413531512022, + -0.0521126314997673, + 0.022904127836227417, + -0.009433005005121231, + 0.06210378557443619, + -0.020759211853146553, + 0.009272191673517227, + 0.04291526973247528, + 0.03829022869467735, + 0.017704641446471214, + 0.02309035323560238, + 0.04018862545490265, + 0.018702570348978043, + -0.0030099512077867985, + 0.04644039273262024, + -0.025222482159733772, + -0.009325217455625534, + 0.003723953850567341, + -0.03827224671840668, + -0.033580806106328964, + 0.020050154998898506, + -0.0583445243537426, + -0.044095076620578766, + 0.007277719676494598, + 0.029178889468312263, + -0.01740434020757675 + ], + "start_index": 0, + "end_index": 82, + "token_count": 21, + "file": "contador_de_parametros.avap" + } + }, + { + "_index": "avap-docs-test-v3", + "_id": "b6da061b-28ae-547f-a560-60838d12de24", + "_source": { + "text": "nivel = 5\nes_admin = nivel >= 10\naddResult(es_admin)", + "embedding": [ + 0.022215403616428375, + -0.05055094137787819, + -0.011733340099453926, + -0.02559596300125122, + 0.011629334650933743, + -0.06325136870145798, + 0.023905420675873756, + -0.012817049399018288, + 0.01917377859354019, + 0.0006754432688467205, + -0.035599712282419205, + -0.04333721846342087, + 0.0805380642414093, + -0.012625565752387047, + -0.04432651028037071, + 0.061852965503931046, + -0.053287573158741, + -0.006396246142685413, + 0.011288548819720745, + 0.007235791068524122, + -0.047323647886514664, + 0.0022767530754208565, + -0.02436811663210392, + 0.03034469485282898, + 0.07286670058965683, + 0.027996473014354706, + -0.03847682476043701, + 0.09484151750802994, + 0.07746976613998413, + -0.07234582304954529, + 0.05031445622444153, + 0.023471012711524963, + -0.030324507504701614, + -0.000433563778642565, + 0.017874624580144882, + -0.017738424241542816, + 0.025523852556943893, + 0.019982798025012016, + 0.012180265970528126, + 0.012719606049358845, + -0.0007845602231100202, + 0.0354020893573761, + 0.046483419835567474, + 0.007064154837280512, + 0.0071809785440564156, + -0.034928176552057266, + 0.012937198393046856, + 0.03294705972075462, + 0.023537583649158478, + 0.02273966744542122, + -0.024780893698334694, + 0.06419935077428818, + 0.0003999720502179116, + 0.007886073552072048, + -0.010818365961313248, + -0.04089278355240822, + 0.03412172943353653, + -0.015754174441099167, + 0.0019167433492839336, + 0.02288534864783287, + -0.08462940901517868, + 0.008304505608975887, + -0.0055233328603208065, + -0.05561348423361778, + -7.568962610093877e-05, + 0.004099715501070023, + -0.002233614679425955, + -0.03080718405544758, + -0.08439633995294571, + -0.005195144563913345, + -0.0021246455144137144, + -0.04785159230232239, + -0.021417740732431412, + 0.015256892889738083, + 0.007091130129992962, + -0.015402247197926044, + 0.020710328593850136, + -0.032332781702280045, + 0.015454837121069431, + -0.01408044807612896, + -0.0232013501226902, + 0.010848959907889366, + 0.019637607038021088, + -0.0052196430042386055, + -0.01941225491464138, + 0.016212964430451393, + 0.07002951204776764, + 0.01003902405500412, + 0.03228091076016426, + 0.055503085255622864, + -0.040718697011470795, + 0.01393948309123516, + -0.026217542588710785, + 0.009366990067064762, + 0.0018079385627061129, + -0.0013520640786737204, + 0.04676353558897972, + 0.021022439002990723, + 0.0025071995332837105, + -0.007705468684434891, + -0.014245259575545788, + -0.0035256065893918276, + 0.02790277637541294, + -0.018465470522642136, + 0.033508989959955215, + 0.04858936741948128, + -0.0710720345377922, + 0.02033391036093235, + -0.027328288182616234, + -0.05679754540324211, + 0.03191068395972252, + 0.016897214576601982, + -0.04820968955755234, + 0.03084668330848217, + -0.009638111107051373, + -0.02016322687268257, + -0.022567162290215492, + -0.036417849361896515, + -0.03173648566007614, + -0.024043843150138855, + -0.002770395018160343, + -0.02359156124293804, + -0.027747588232159615, + -0.0046639894135296345, + -0.038507457822561264, + -0.00026489837910048664, + -0.05062824860215187, + 0.005885183345526457, + 0.016125528141856194, + -0.03154784068465233, + -0.030177762731909752, + -0.027725357562303543, + -0.02490074746310711, + 0.017322318628430367, + 0.021903658285737038, + 0.024979447945952415, + -0.02676566317677498, + -0.0019369778456166387, + 0.02882896177470684, + 0.004451645538210869, + -0.032397352159023285, + 0.03637208044528961, + 0.026770899072289467, + -0.011382399126887321, + -0.0037848688662052155, + 0.017589563503861427, + -0.004507593810558319, + 0.01658765971660614, + -0.0026156941894441843, + 0.016301970928907394, + -0.007471359800547361, + -0.014517753385007381, + -0.06429075449705124, + 0.0034940645564347506, + -0.022106748074293137, + 0.06261765211820602, + 0.005968601908534765, + -0.013881475664675236, + 0.016883283853530884, + 0.012667380273342133, + -0.018795734271407127, + -0.00408573541790247, + 0.007778113707900047, + -0.07120220363140106, + -0.041669853031635284, + 0.01717337965965271, + 0.017769133672118187, + -0.06161748617887497, + -0.02085334062576294, + -0.012842406518757343, + -0.005533779971301556, + 0.023880278691649437, + -0.007514227647334337, + -0.0038726285565644503, + 0.013143401592969894, + 0.0012649623677134514, + -0.020096801221370697, + -0.06618862599134445, + -0.05223599448800087, + -0.01228726003319025, + 0.006244928576052189, + -0.03966348618268967, + -0.011215814389288425, + 0.007038833107799292, + 0.023356160148978233, + 0.020874982699751854, + 0.031150933355093002, + 0.01287565752863884, + 0.009974178858101368, + -0.01061856560409069, + 0.009469305165112019, + 0.021251577883958817, + -0.05444873869419098, + -0.004762350115925074, + -0.027060506865382195, + -0.02939251996576786, + 0.009820732288062572, + -0.011559119448065758, + -0.0021301282104104757, + -0.021254701539874077, + 0.011769065633416176, + -0.02103201299905777, + 0.007769566960632801, + -0.000804093258921057, + 0.00755151454359293, + 0.024756640195846558, + 0.03569537401199341, + -0.010983315296471119, + 0.0075510721653699875, + -0.015207664109766483, + -0.026972977444529533, + -0.01762901432812214, + 0.03524923324584961, + 0.040785785764455795, + 0.015572705306112766, + -0.051085710525512695, + -0.002496039727702737, + 0.017528023570775986, + 0.021808935329318047, + 0.0050447494722902775, + 0.02452094852924347, + 0.001254822127521038, + -0.013511271215975285, + 0.0022289424668997526, + -0.029800161719322205, + -0.0169612355530262, + 0.0049987370148301125, + -0.020978134125471115, + -0.007928671315312386, + 0.009103416465222836, + 0.012253250926733017, + -0.07846792042255402, + 0.014575989916920662, + 0.011004968546330929, + 0.029018033295869827, + 0.013790788128972054, + 0.01228270959109068, + 0.03326979652047157, + 0.01799209602177143, + 0.024023273959755898, + 0.041592761874198914, + 0.030953804031014442, + 0.026546848937869072, + 0.023241374641656876, + -0.04036298766732216, + -0.002375843934714794, + -0.018921930342912674, + 0.04878946393728256, + -0.0075085521675646305, + -0.018645213916897774, + 0.042016562074422836, + -0.011901255697011948, + -0.009163177572190762, + 0.02307143807411194, + 0.013592970557510853, + -0.030677681788802147, + 0.011907325126230717, + -0.014568604528903961, + -0.011454042978584766, + 0.020265299826860428, + -0.009369082748889923, + -0.02872292883694172, + -0.042288169264793396, + 0.03240811079740524, + 0.04415442422032356, + 0.009355227462947369, + -0.004861890338361263, + 0.01268596202135086, + -0.023191016167402267, + -0.020237859338521957, + 0.008503681980073452, + 0.01621050201356411, + -0.027641963213682175, + 0.017303550615906715, + -0.003721629036590457, + 0.01258158776909113, + 0.00047138481750153005, + -0.05201088637113571, + 0.03130674362182617, + -0.023251008242368698, + 0.03305157646536827, + 0.031053533777594566, + 0.015077393501996994, + -0.05101124942302704, + -0.024143671616911888, + 0.03257836028933525, + 0.011437254957854748, + 0.0488305538892746, + 0.05029161274433136, + 0.0021709203720092773, + 0.01952791027724743, + 0.029729582369327545, + -0.013068357482552528, + 0.049373824149370193, + -0.01916879042983055, + 0.016357693821191788, + 0.07688985764980316, + 0.05379362776875496, + -0.021316856145858765, + 0.005035601556301117, + -0.003112833946943283, + -0.05253472924232483, + 0.04080583527684212, + 0.018934424966573715, + -0.034927207976579666, + -0.014758973382413387, + 0.031970370560884476, + 0.021897530183196068, + 0.017956312745809555, + -0.06228966265916824, + 0.10759510844945908, + -0.012887389399111271, + -0.01391548477113247, + -0.04691893607378006, + -0.019850699231028557, + -0.01939992979168892, + -0.01690051704645157, + 0.0043428619392216206, + 0.029817519709467888, + -0.03756200894713402, + 0.053793348371982574, + 0.044210851192474365, + -0.0026490623131394386, + 0.010863996110856533, + -0.030387340113520622, + 0.04188297316431999, + 0.020576218143105507, + -0.014528733678162098, + -0.0012576141161844134, + 0.011495308019220829, + -0.009981018491089344, + 0.028342440724372864, + -0.0029803744982928038, + 0.0009571848786436021, + -0.005254301708191633, + 0.012643946334719658, + 0.011772872880101204, + -0.010556329973042011, + -0.07769779860973358, + 0.015271125361323357, + 0.014214159920811653, + -0.04059663414955139, + 0.0029553715139627457, + 0.0022123914677649736, + -0.05355948209762573, + 0.005172241944819689, + -0.10534871369600296, + -0.014119402505457401, + 0.022320901975035667, + -0.024874843657016754, + 0.03762819245457649, + 0.020613983273506165, + -0.0016866810619831085, + 0.0030430383048951626, + -0.016617469489574432, + -0.03092982806265354, + -0.007095803041011095, + -0.009737109765410423, + -0.06859911233186722, + 0.008808870799839497, + -0.05477753281593323, + -0.022954436019062996, + 0.019983800128102303, + -0.03743830695748329, + -0.03785021975636482, + 0.019095055758953094, + -0.019834326580166817, + 0.02832750789821148, + 0.06801342219114304, + 0.0132644297555089, + -0.10973849892616272, + -0.07170283049345016, + 0.0626855194568634, + 0.04489922150969505, + 0.07420487701892853, + 0.02119135670363903, + 0.027992242947220802, + 0.022599006071686745, + -0.028673632070422173, + 0.026462461799383163, + 0.009743945673108101, + 0.016864243894815445, + -0.04027533531188965, + -0.008421700447797775, + -0.0402916818857193, + -0.045677438378334045, + 0.055629536509513855, + -0.0257840845733881, + 0.002481782576069236, + 0.001910940045490861, + 0.002908932277932763, + 0.017928732559084892, + -0.0037063411436975002, + 0.002529978286474943, + 0.04569216072559357, + 0.05051906779408455, + -0.06943472474813461, + 0.04236513376235962, + 0.04071473330259323, + -0.007091126404702663, + 0.01373005285859108, + 0.01018767524510622, + -0.07466891407966614, + 0.0031628012657165527, + 0.01749512553215027, + -0.001522735576145351, + -0.0068754772655665874, + -0.019415803253650665, + -0.022738192230463028, + 0.011738699860870838, + 0.008945641107857227, + 0.020331066101789474, + 0.008107625879347324, + -0.038377802819013596, + -0.0076684607192873955, + -0.028437044471502304, + 0.06666090339422226, + -0.031558580696582794, + 0.04259612411260605, + 0.0015230693388730288, + 0.0024998013395816088, + 0.030991096049547195, + -0.07320603728294373, + -0.004619651008397341, + 0.003125077113509178, + -0.02102038450539112, + -0.015512419864535332, + -0.057428620755672455, + -0.019643563777208328, + 0.07816369086503983, + -0.0016592240426689386, + -0.006653049495071173, + 0.030033500865101814, + -0.008856028318405151, + -0.04320522025227547, + 0.04086790978908539, + 0.0699617862701416, + 0.03052004799246788, + 0.04448648542165756, + -0.052998095750808716, + 0.004065531771630049, + 0.02211013250052929, + 0.04402350261807442, + 0.02040509320795536, + -0.04610198736190796, + -0.008954787626862526, + -0.027096640318632126, + 0.033683955669403076, + -0.01467051263898611, + -0.030547555536031723, + -0.02195459045469761, + -0.0501088872551918, + -0.0006857225671410561, + 0.03903084248304367, + -0.042207252234220505, + -0.020948156714439392, + -0.029529191553592682, + -0.012497847899794579, + 0.04346137493848801, + 0.038380853831768036, + 0.00015039966092444956, + 0.029617629945278168, + 0.056650035083293915, + -0.04054011031985283, + -0.0337691605091095, + -0.007808235008269548, + -0.022738246247172356, + -0.010963190346956253, + -0.003992380108684301, + -0.04819225147366524, + 0.02089802734553814, + -0.03521726280450821, + -0.019989747554063797, + 0.004127768334001303, + 0.016439883038401604, + -0.029179895296692848, + -0.05265358090400696, + -0.030616672709584236, + -0.06692682951688766, + 0.016608988866209984, + -0.0018597682937979698, + 0.037324875593185425, + 0.01787530444562435, + -0.1016845628619194, + 0.09895505011081696, + -0.016853587701916695, + 0.02951170690357685, + -0.028542203828692436, + 0.03210899606347084, + 0.030724583193659782, + 0.016148781403899193, + -0.013245751149952412, + 0.03295964375138283, + -0.09065308421850204, + 0.015787022188305855, + -0.007524375803768635, + 0.01213863119482994, + -0.06292816251516342, + -0.04376482591032982, + 0.027337776497006416, + 0.010514846071600914, + 0.030817529186606407, + -0.00908287987112999, + 0.03761719539761543, + -0.020874693989753723, + -0.020110713317990303, + -0.011461851187050343, + 0.005308464169502258, + 0.013552071526646614, + -0.021474383771419525, + 0.02831430733203888, + -0.03751867637038231, + 0.024490291252732277, + 0.010600964538753033, + -0.01974504254758358, + 0.03433386608958244, + -0.004732383880764246, + -0.021506084129214287, + -0.007234605029225349, + 0.06161119416356087, + -0.010106530971825123, + 0.020035365596413612, + 0.04033473879098892, + -0.012235143221914768, + -0.0038824009243398905, + 0.03907490894198418, + 0.056063905358314514, + -0.03587088733911514, + 0.007227013818919659, + 0.023560643196105957, + 0.03546420484781265, + 0.041540201753377914, + -0.015416164882481098, + -0.008774072863161564, + 0.050488974899053574, + -0.007249530870467424, + -0.040182437747716904, + -0.0014995228266343474, + 0.037784382700920105, + 0.03419819846749306, + -0.018709782510995865, + -0.03139222040772438, + 0.00871132593601942, + 0.018111439421772957, + -0.03279334679245949, + -0.017326539382338524, + -0.002684367122128606, + 0.013108862563967705, + 0.018534816801548004, + 0.009736853651702404, + 0.01931728422641754, + -0.018042661249637604, + 0.0701819434762001, + 0.005783784668892622, + 0.03601893410086632, + -0.005869459826499224, + 0.030256008729338646, + 0.05413615331053734, + 0.05719001963734627, + -0.035316504538059235, + -0.0006938596488907933, + -0.007792543154209852, + 0.004166445229202509, + -0.05849004164338112, + 0.008362793363630772, + 0.00466017285361886, + 0.0008014483610168099, + 0.017227105796337128, + 0.010845509357750416, + -0.04258830100297928, + 0.02221102826297283, + -0.050125837326049805, + 0.05271293967962265, + 0.03692438453435898, + 0.00706532271578908, + -0.025392308831214905, + -0.03580772504210472, + 0.023827271535992622, + 0.009011324495077133, + -0.013718809001147747, + 0.04375854879617691, + 0.011138453148305416, + -0.013264267705380917, + 0.031315747648477554, + -0.035288985818624496, + -0.03435790166258812, + 0.023811323568224907, + 0.008738982491195202, + -0.03508170694112778, + -0.06414499133825302, + 0.0006628779228776693, + -0.05053774639964104, + 0.014148058369755745, + 0.029898131266236305, + 0.050702959299087524, + 0.025903718546032906, + -0.06010885164141655, + -0.031134016811847687, + -0.018558485433459282, + -0.005001500248908997, + 0.02376745268702507, + 0.045325327664613724, + 0.010845435783267021, + 0.030180588364601135, + -0.021854303777217865, + 0.01915370300412178, + -0.018109600991010666, + 0.014182645827531815, + -0.028338607400655746, + -0.0025291636120527983, + -0.006467066705226898, + 0.013876843266189098, + -0.05143124237656593, + 0.009356225840747356, + -0.003170356620103121, + -0.019234690815210342, + -0.033463720232248306, + 0.04432130604982376, + -0.010126255452632904, + -0.07441874593496323, + 0.014624265022575855, + -0.017183836549520493, + 0.012869498692452908, + 0.06731383502483368, + 0.021865906193852425, + 0.04414515569806099, + 0.03559194505214691, + -0.0013872834388166666, + 0.00746940029785037, + -0.008208013139665127, + -0.006898903753608465, + -0.0019733647350221872, + -0.011302701197564602, + 0.017655977979302406, + 0.00510571850463748, + -0.0341271311044693, + -0.023879630491137505, + -0.014849943108856678, + 0.0012050296645611525, + -0.029867039993405342, + 0.008941800333559513, + -0.02230732887983322, + -0.0018611920531839132, + 0.04067273437976837, + 0.04461247846484184, + -0.01605074852705002, + -0.03108811005949974, + 0.009431207552552223, + 0.08541732281446457, + -0.00195489963516593, + 0.004900838248431683, + 0.05881999805569649, + 0.011141554452478886, + 0.02812201902270317, + -0.01045855414122343, + 0.025147054344415665, + -0.010715587064623833, + 0.0058092521503567696, + -0.012786436825990677, + 0.005247293971478939, + -0.00392892025411129, + -0.025272075086832047, + 0.006488429848104715, + -0.0004043897788506001, + 0.004180270247161388, + -0.02625703625380993, + 0.04479368031024933, + 0.02808069810271263, + 0.042412057518959045, + -0.03423053398728371, + -0.013197679072618484, + -0.006861033383756876, + -0.025201663374900818, + 0.024165544658899307, + 0.02908167988061905, + -0.012756058014929295, + -0.03847598657011986, + -0.0017099702963605523, + -0.06863301992416382, + -0.03956999257206917, + -0.019026992842555046, + -0.044756047427654266, + -0.05431003123521805, + 0.0028406018391251564, + -0.020242666825652122, + -0.02480192855000496, + -0.047792673110961914, + 0.010121436789631844, + 0.010979237966239452, + -0.0023930370807647705, + -0.02500573918223381, + -0.01637030951678753, + 0.06148843094706535, + 0.014919857494533062, + -0.03685221076011658, + 0.051634155213832855, + 0.009101207368075848, + 0.025194037705659866, + -0.05086514353752136, + 0.03381246328353882, + 0.017065376043319702, + -0.021009674295783043, + 0.004580270498991013, + 0.03934985399246216, + -0.0256333127617836, + -0.0016055164160206914, + -0.00422362145036459, + 0.016073405742645264, + -0.03818187117576599, + -0.001546770567074418, + 0.004189288709312677, + 0.0365663506090641, + 0.014271356165409088, + -0.04835944250226021, + -0.01042806077748537, + -0.00657483097165823, + -0.020046105608344078, + -0.025539390742778778, + -0.04295681416988373, + -0.0063967215828597546, + -0.02088279090821743, + -0.0073347920551896095, + -0.005689973011612892, + -0.0055601163767278194, + -0.0126553475856781, + 0.010730075649917126, + 0.006399692967534065, + -0.0031002331525087357, + 0.028572754934430122, + -0.023832056671380997, + -0.011627293191850185, + -0.0211755633354187, + 0.024095118045806885, + 0.04423331469297409, + 0.027706770226359367, + -0.03378988057374954, + 0.08637091517448425, + 0.05750055983662605, + -0.031692031770944595, + 0.03423246741294861, + 0.020938340574502945, + 0.01041353214532137, + -0.04143969714641571, + -0.01361486129462719, + 0.01553164329379797, + 0.04587923735380173, + -0.0071807182393968105, + -0.041312482208013535, + -0.008376915007829666, + 0.054534681141376495, + 0.017307518050074577, + -0.03163466975092888, + -0.009152926504611969, + 0.04376222565770149, + -0.014690432697534561, + -0.03151658922433853, + -0.03381361439824104, + 0.006310491822659969, + 0.013557404279708862, + 0.03121596947312355, + -0.0025451784022152424, + -0.003995723556727171, + -0.012674640864133835, + 0.022255990654230118, + 0.022836312651634216, + -0.051065828651189804, + 0.05116866156458855, + -0.004796899855136871, + 0.018981149420142174, + 0.01676933467388153, + 0.00021218686015345156, + 0.017824867740273476, + 0.030132530257105827, + 0.04841625317931175, + 0.029541917145252228, + -0.0153280571103096, + 0.009025489911437035, + -0.0010755618568509817, + -0.01739620231091976, + -0.014947241172194481, + 0.005269343499094248, + -0.03695850446820259, + 0.029359102249145508, + 0.012882751412689686, + -0.010132051073014736, + 0.04294382035732269, + 0.04261641949415207, + 0.03053520992398262, + 0.08423867076635361, + 0.05328955128788948, + 0.002804822288453579, + 0.037734661251306534, + -0.02485230192542076, + 0.00929630920290947, + -0.039948660880327225, + 0.01610405184328556, + -0.04915202409029007, + 0.07228913903236389, + 0.0015998298767954111, + 0.04856516420841217, + 0.004656935576349497, + -0.01240078266710043, + 0.0035077494103461504, + 0.015620983205735683, + 0.04352814704179764, + -0.011830009520053864, + -0.04333949461579323, + 0.01976940408349037, + 0.0008118111873045564, + -0.03525453805923462, + 0.01951943151652813, + 0.03323264792561531, + 0.041690144687891006, + 0.022681711241602898, + -0.0038980524986982346, + 0.09061237424612045, + -0.03092498704791069, + -0.06569337099790573, + -0.029857367277145386, + 0.002821441041305661, + -0.020512660965323448, + 0.014606436714529991, + 0.005602529738098383, + -0.017235375940799713, + -0.038716793060302734, + -0.00581374391913414, + 0.011616311967372894, + 0.0068949367851018906, + -0.04563141614198685, + 0.014497341588139534, + 0.01832413487136364, + -0.007121618837118149, + -0.022577058523893356, + -0.017397386953234673, + 0.059719182550907135, + -0.015361255034804344, + -0.008703540079295635, + 0.025213660672307014, + -0.007567782886326313, + 0.07023255527019501, + 0.018940474838018417, + 0.040314238518476486, + -0.013609092682600021, + 0.013222317211329937, + -0.014727669768035412, + 0.011703315190970898, + -0.01617591083049774, + 0.01570572890341282, + -0.001902969554066658, + 0.03705320879817009, + 0.009510492905974388, + -0.011665470898151398, + -0.04894014447927475, + 0.028086567297577858, + -0.04318174347281456, + 0.021658746525645256, + 0.030460668727755547, + -0.0027715519536286592, + -0.056499235332012177, + 0.011045265942811966, + -0.05269499123096466, + -0.0020237891003489494, + -0.04193880409002304, + -0.03599702566862106, + 0.0039607142098248005, + 0.08908416330814362, + -0.054120324552059174, + 0.009580674581229687, + 0.021875416859984398, + -0.013994917273521423, + 0.0022072799038141966, + -0.0010817964794114232, + 0.022394055500626564, + 0.012047364376485348, + -0.0427587553858757, + -0.02639015205204487, + -0.012048733420670033, + 0.0015463425079360604, + 0.03633873909711838, + 0.011493813246488571, + 0.025646692141890526, + 0.0432664155960083, + -0.03695886954665184, + 0.02609640173614025, + 0.006249431986361742, + -0.004028391093015671, + 0.026478221639990807, + 0.007744960021227598, + -0.0193706676363945, + -0.026008320972323418, + 0.01797940582036972, + -0.00898190587759018, + 0.0024917281698435545, + 0.027154916897416115, + -0.07684102654457092, + -0.014240124262869358, + 0.03560543432831764, + 0.036166682839393616, + -0.0015987508231773973, + -0.004113109782338142, + 0.043702349066734314, + 0.0239575058221817, + -0.0002608514914754778, + -0.043577730655670166, + 0.005104797892272472, + 0.012986889109015465, + 0.044445641338825226, + -0.06318464130163193, + 0.004962793551385403, + 0.004696211777627468, + -0.0043811555951833725, + 0.05283909663558006, + -0.019128059968352318, + 0.021992478519678116, + 0.032441023737192154, + 0.011923357844352722, + -0.038361649960279465, + 0.019652409479022026, + -0.013391493819653988, + 0.018699465319514275, + -0.016103224828839302, + -0.021533988416194916, + 0.022709831595420837, + 0.03448190540075302, + -0.00429211650043726, + -0.017639977857470512, + 0.02122238464653492, + 0.04198598116636276, + 0.020315660163760185, + 0.0538543164730072, + 0.001383555238135159, + 0.016384389251470566, + 0.008042479865252972, + 0.023798713460564613, + -0.007988844998180866, + -0.018204161897301674, + -0.00349943689070642, + -0.04803672805428505, + 0.02308683842420578, + -0.027667129412293434, + -0.012078473344445229, + -0.045560941100120544, + 0.041788164526224136, + 0.016886970028281212, + 0.027459584176540375, + -0.02245071716606617, + 0.002415573224425316, + -0.028412848711013794, + 0.03024873696267605, + 0.004220596980303526, + 0.006644509267061949, + 0.04499142989516258, + 0.0036388742737472057, + -0.023725371807813644, + 0.028768377378582954, + -0.05104534327983856, + 0.021771006286144257, + 0.06090504303574562, + 0.027659453451633453, + -0.004583497531712055, + 0.006683106534183025, + 0.011251145973801613, + 0.0006531084654852748, + 0.005816095508635044, + 0.05753990635275841, + -0.0014090159675106406, + -0.035647016018629074, + -0.0009538452140986919, + -0.014640087261795998, + 0.013103453442454338, + 0.05469406768679619, + 0.01771724969148636, + 0.011792076751589775, + 0.018380528315901756, + -0.006808921694755554, + 0.007973612286150455, + -0.018529579043388367, + 0.029711132869124413, + 0.05534503236413002, + -0.01755421981215477, + 0.013241428881883621, + -0.016374412924051285, + 0.013771576806902885, + 0.007547700311988592, + 0.017368458211421967, + -0.006537857465445995, + 0.05832706764340401, + 0.002320523140951991, + 0.01941249892115593, + -0.058514371514320374, + 0.021458875387907028, + 0.02003415860235691, + 0.01004432700574398, + -0.044006891548633575, + 0.014113059267401695, + 0.0527237169444561, + 0.0012242964003235102, + 0.0007449142285622656, + -0.013029166497290134, + 0.0037648798897862434, + 0.02030019648373127, + -0.03272869437932968, + 0.03457451984286308, + 0.026516085490584373, + -0.0009577167220413685, + 0.018328901380300522, + -0.006322145462036133, + -0.0029613652732223272, + -0.013840701431035995, + -0.010982879437506199, + 0.013212950900197029, + -0.006877235136926174, + 0.042330723255872726, + -0.035073988139629364, + -0.0014929737662896514, + -0.0222993865609169, + 0.032238371670246124, + -0.018070966005325317, + -0.009335189126431942, + -0.03316206857562065, + -0.011001992039382458, + 0.025999723002314568, + 0.05257805064320564, + 0.005593844223767519 + ], + "start_index": 0, + "end_index": 52, + "token_count": 19, + "file": "asignacion_booleana.avap" + } + } +] \ No newline at end of file diff --git a/ingestion/docs/10.1_Expressions.txt b/ingestion/docs/10.1_Expressions.txt deleted file mode 100644 index aae42e4..0000000 --- a/ingestion/docs/10.1_Expressions.txt +++ /dev/null @@ -1,134 +0,0 @@ -6. Expressions in AVAP -This chapter explains the meaning of expression elements in AVAP. - -6.1. Arithmetic Conversions -When describing an arithmetic operator in AVAP and using the phrase "numeric arguments are converted to a common type," it means that the operator's implementation for built-in types works as follows: - -If either of the arguments is a complex number, the other is converted to complex. -Otherwise, if either of the arguments is a floating-point number, the other is converted to floating-point. -Otherwise, both must be integers, and no conversion is needed. -Additional rules may apply for certain operators. - -6.2. Atoms -Atoms are the most basic elements of expressions in AVAP. The simplest atoms are identifiers or literals. Forms enclosed in parentheses, brackets, or braces are also syntactically categorized as atoms. The syntax for atoms is: - -atom ::= identifier | literal | enclosure -enclosure ::= parenth_form | list_display | dict_display | set_display | generator_expression -6.2.1. Identifiers (Names) -An identifier that appears as an atom is a name. When the name is bound to an object, evaluating the atom yields that object. When a name is not bound, an attempt to evaluate it raises a NameError exception. - -Private Name Mangling -When an identifier that occurs literally in a class definition begins with two or more underscores and does not end with two or more underscores, it is considered a private name of that class. Private names are transformed into a longer form before code is generated for them. The transformation inserts the class name, with the initial underscores removed and a single underscore inserted, in front of the name. - -6.2.2. Literals -AVAP supports string and bytes literals, as well as various numeric literals: - -literal ::= stringliteral | bytesliteral | integer | floatnumber | imagnumber -Evaluating a literal produces an object of the given type (string, bytes, integer, floating-point number, complex number) with the given value. All literals correspond to immutable data types. - -6.2.3. Parenthesized Forms -A parenthesized form is an optional list of expressions enclosed in parentheses: - -parenth_form ::= "(" [starred_expression] ")" -A parenthesized expression produces whatever the expression list produces: if the list contains at least one comma, it produces a tuple; otherwise, it produces the single expression that makes up the list of expressions. - -6.2.4. Comprehensions for Lists, Sets and Dictionaries -To construct a list, set, or dictionary, AVAP provides special syntax called "comprehension," each in two flavors: - -The contents of the container are listed explicitly. -They are computed using a set of loop and filtering instructions, called a "comprehension." -Common syntax elements for comprehensions are: - -comprehension ::= assignment_expression comp_for -comp_for ::= "for" target_list "in" or_test [comp_iter] -comp_iter ::= comp_for | comp_if -comp_if ::= "if" or_test [comp_iter] -A comprehension consists of a single expression followed by at least one for clause and zero or more for or if clauses. In this case, the elements of the new container are those produced by considering each for or if clause as a block, nested from left to right, and evaluating the expression to produce an element each time the innermost block is reached. - -6.2.5. List Displays -In AVAP, lists are generated and handled differently. To construct a list, the command variableToList(variable, list) is used, and an item from the list is retrieved with itemFromList(list, index, variable_to_store_item). To get the number of elements in the list, getListLen(list, var_to_store_list_length) is used. - -The syntax for list displays is: - -list_display ::= "[" [starred_list | comprehension] "]" -A list display produces a new list object, whose content is specified by a list of expressions or a comprehension. When a list of expressions is provided, its elements are evaluated from left to right and placed in the list object in that order. - -6.2.6. Set Displays -A set display is denoted by curly braces and is distinguished from dictionary displays by the absence of colon characters separating keys and values: - -set_display ::= "{" (starred_list | comprehension) "}" -A set display produces a new mutable set object, whose content is specified by a sequence of expressions or a comprehension. - -6.2.7. Dictionary Displays -In AVAP, objects are created and managed using specific commands. An object is created with AddvariableToJSON(key, value, object_variable), and a key from the object is retrieved with variableFromJSON(object_variable, key, var_to_store_key_value). - -The syntax for dictionary displays is: - -dict_display ::= "{" [dict_item_list | dict_comprehension] "}" -dict_item_list ::= dict_item ("," dict_item)* [","] -dict_item ::= expression ":" expression | "**" or_expr -dict_comprehension ::= expression ":" expression comp_for -A dictionary display produces a new dictionary object. If a comma-separated sequence of dictionary items is provided, they are evaluated from left to right to define the dictionary entries. - -Slices -A slice selects a range of elements in a sequence object (e.g., a string, tuple, or list). Slices can be used as expressions or as targets in assignments or statements. The syntax for a slice is as follows: - -slicing ::= primary "[" slice_list "]" -slice_list ::= slice_item ("," slice_item)* [","] -slice_item ::= expression | proper_slice -proper_slice ::= [lower_bound] ":" [upper_bound] [ ":" [stride] ] -lower_bound ::= expression -upper_bound ::= expression -stride ::= expression -There is ambiguity in the formal syntax here: anything that looks like a list expression also looks like a list slice, so any subscription might be interpreted as a slice. Instead of complicating the syntax further, this is disambiguated by defining that in this case, the interpretation as a subscription takes precedence over the interpretation as a slice (this is the case if the list slice does not contain a proper slice). - -The semantics for a slice are as follows. The primary is indexed (using the same __getitem__() method as in a normal subscription) with a key constructed from the slice list, as follows. If the slice list contains at least one comma, the key is a tuple that contains the conversion of the slice elements; otherwise, the conversion of the single slice element is the key. The conversion of a slice element that is an expression is that expression. The conversion of a proper slice is a slice object whose start, stop, and step attributes are the values of the expressions given as the lower bound, upper bound, and step, respectively, substituting None for missing expressions. - -Calls -A call invokes a callable object (e.g., a function) with a possibly empty series of arguments: - -call ::= primary "(" [argument_list [","] | comprehension] ")" -argument_list ::= positional_arguments ["," starred_and_keywords] - ["," keywords_arguments] - | starred_and_keywords ["," keywords_arguments] - | keywords_arguments -positional_arguments ::= positional_item ("," positional_item)* -positional_item ::= assignment_expression | "*" expression -starred_and_keywords ::= ("*" expression | keyword_item) - ("," "*" expression | "," keyword_item)* -keywords_arguments ::= (keyword_item | "**" expression) - ("," keyword_item | "," "**" expression)* -keyword_item ::= identifier "=" expression -An optional trailing comma may be present after positional and keyword arguments but does not affect the semantics. - -The primary must evaluate to a callable object (user-defined functions, built-in functions, built-in object methods, class objects, class instance methods, and any object with a __call__() method are callable). All argument expressions are evaluated before attempting the call. Please refer to the Function Definitions section for the syntax of formal parameter lists. - -If keyword arguments are present, they are first converted into positional arguments as follows. First, a list of unfilled slots is created for the formal parameters. If there are N positional arguments, they are placed in the first N slots. Then, for each keyword argument, the identifier is used to determine the corresponding slot. If the slot is already filled, a TypeError exception is raised. Otherwise, the argument is placed in the slot, filling it (even if the expression is None, it fills the slot). When all arguments have been processed, any slots that are still empty are filled with the default value from the function definition. If there are unfilled slots for which no default value is specified, a TypeError exception is raised. Otherwise, the list of filled slots is used as the argument list for the call. - -Implementation Details in AVAP -In AVAP, variables are stored as strings, and lists and objects are managed using specific commands: - -Lists: To generate a list, use variableToList(variable, list). To retrieve an item from the list, use itemFromList(list, index, variable_to_store_item). To get the number of items in the list, use getListLen(list, var_to_store_list_length). -Objects (dictionaries): An object is created with AddvariableToJSON(key, value, object_variable). To retrieve a key from the object, use variableFromJSON(object_variable, key, var_to_store_key_value). -Usage Example -Creation and management of lists: - -// Creating a list -variableToList("item1", "myList") -variableToList("item2", "myList") -variableToList("item3", "myList") - -// Retrieving an item from the list -itemFromList("myList", 1, "myVariable") - -// Getting the length of the list -getListLen("myList", "listLength") -Creation and management of objects (dictionaries): - -// Creating an object -AddvariableToJSON("key1", "value1", "myObject") -AddvariableToJSON("key2", "value2", "myObject") - -// Retrieving a value by key from the object -variableFromJSON("myObject", "key1", "myVariable") -In this way, lists and objects in AVAP can be manipulated using the specific functions provided for working with variables stored as strings. \ No newline at end of file diff --git a/ingestion/docs/10.2_Operations.txt b/ingestion/docs/10.2_Operations.txt deleted file mode 100644 index a55669d..0000000 --- a/ingestion/docs/10.2_Operations.txt +++ /dev/null @@ -1,84 +0,0 @@ -Binary Arithmetic Operations -Binary arithmetic operations have the conventional levels of precedence. Some of these operations also apply to certain non-numeric types. Aside from the exponentiation operator, there are two levels: one for multiplicative operators and another for additive ones: - -m_expr ::= u_expr | m_expr "*" u_expr | m_expr "@" m_expr | - m_expr "//" u_expr | m_expr "/" u_expr | - m_expr "%" u_expr -a_expr ::= m_expr | a_expr "+" m_expr | a_expr "-" m_expr -The * (multiplication) operator produces the product of its arguments. The arguments can both be numbers, or one argument must be an integer and the other a sequence. In the first case, the numbers are converted to a common type and then multiplied. In the second case, sequence repetition occurs; a negative repetition factor produces an empty sequence. - -The @ (matrix multiplication) operator is intended for matrix multiplication. No built-in type in Python implements this operator. - -The / (division) and // (floor division) operators produce the quotient of their arguments. Numeric arguments are converted to a common type. Division between integers produces a floating-point number, while floor division between integers results in an integer; the result is that of a mathematical division with the “floor” function applied to the result. Division by zero raises a ZeroDivisionError. - -The % (modulus) operator produces the remainder of the division of the first argument by the second. Numeric arguments are converted to a common type. A zero argument on the right raises a ZeroDivisionError. Arguments can be floating-point numbers, e.g., 3.14 % 0.7 is equal to 0.34 (since 3.14 is equal to 4 * 0.7 + 0.34). The modulus operator always produces a result with the same sign as its second operand (or zero); the absolute value of the result is strictly smaller than the absolute value of the second operand. - -The floor division and modulus operators are connected by the following identity: x == (x // y) * y + (x % y). Floor division and modulus are also connected by the built-in function divmod(): divmod(x, y) == (x // y, x % y). - -In addition to performing the modulus operation on numbers, the % operator is also overloaded by string objects for old-style string formatting (also known as interpolation). The syntax for string formatting is described in the Python Library Reference, section Old-Style String Formatting. - -The floor division operator, the modulus operator, and the divmod() function are not defined for complex numbers. Instead, convert to a floating-point number using the abs() function if appropriate. - -The + (addition) operator produces the sum of its arguments. The arguments must both be numbers or both be sequences of the same type. In the first case, the numbers are converted to a common type and then added. In the second case, the sequences are concatenated. - -The - (subtraction) operator produces the difference between its arguments. Numeric arguments are converted to a common type. - -Shift Operations -Shift operations have lower precedence than arithmetic operations: - -shift_expr ::= a_expr | shift_expr ("<<" | ">>") a_expr -These operators accept integers as arguments. They shift the first argument left or right by the number of bits specified by the second argument. - -A right shift by n bits is defined as an integer floor division by pow(2, n). A left shift by n bits is defined as a multiplication by pow(2, n). - -Binary Bitwise Operations -Each of the three binary bitwise operations has a different level of precedence: - -and_expr ::= shift_expr | and_expr "&" shift_expr -xor_expr ::= and_expr | xor_expr "^" and_expr -or_expr ::= xor_expr | or_expr "|" xor_expr -* The & operator produces the bitwise AND of its arguments, which must be integers. - -* The ^ operator produces the bitwise XOR (exclusive OR) of its arguments, which must be integers. - -* The | operator produces the bitwise OR (inclusive OR) of its arguments, which must be integers. - -Comparisons -Unlike C, all comparison operations in Python have the same priority, which is lower than any arithmetic, shift, or bitwise operation. Also, unlike C, expressions like a < b < c have the conventional mathematical interpretation: - -comparison ::= or_expr (comp_operator or_expr)* -comp_operator ::= "<" | ">" | "==" | ">=" | "<=" | "!=" - | "is" ["not"] | ["not"] "in" -Comparisons produce boolean values: True or False. - -Comparisons can be arbitrarily chained, e.g., x < y <= z is equivalent to x < y and y <= z, except that y is evaluated only once. - -Formally, if a, b, c, ..., y, z are expressions and op1, op2, ..., opN are comparison operators, then a op1 b op2 c ... y opN z is equivalent to a op1 b and b op2 c and ... y opN z, except that each expression is evaluated at most once. - -Note that a op1 b op2 c does not imply any comparison between a and c, so, for example, x < y > z is perfectly legal. - -Value Comparisons -The operators <, >, ==, >=, <=, and != compare the values of two objects. The objects do not need to be of the same type. - -The chapter Objects, Values, and Types states that objects have a value (in addition to type and identity). The value of an object is a rather abstract notion in Python: For example, there is no canonical method to access the value of an object. Furthermore, there is no requirement that the value of an object must be constructed in a particular way, e.g., composed of all its data attributes. Comparison operators implement a particular notion of what an object's value is. - -The default behavior for equality comparison (== and !=) is based on object identity. Therefore, comparison of instances with the same identity results in equality, and comparison of equality of instances with different identities results in inequality. - -No default comparison order (<, >, <=, >=) is provided; an attempt generates a TypeError. - -The following list describes the comparison behavior of the most important built-in types: - -Numbers: Built-in numeric types (int, float, complex) and types from the standard library (fractions.Fraction and decimal.Decimal) can be compared with themselves and among their types, with the restriction that complex numbers do not support order comparisons. Within the limits of the involved types, they are compared mathematically correctly without loss of precision. -None and NotImplemented: They are singletons. PEP 8 advises that comparisons for singletons should be done with is or is not, never with equality operators. -Binary Sequences: Instances of bytes or bytearray compare lexicographically using the numeric values of their elements. -Character Strings: Instances of str compare lexicographically using Unicode code points (the result of the built-in ord() function) or their characters. -Sequences: Instances of tuple, list, or range can only be compared within their types, with the restriction that ranges do not support order comparisons. Equality comparisons between these types result in inequality, and order comparisons between these types generate TypeError. They compare lexicographically using comparison of their corresponding elements. -Mappings: Instances of dict compare equal if and only if they have the same (key, value) pairs. -Sets: Instances of set or frozenset can be compared with each other and among their types. They define order comparison operators with the intention of checking subsets and supersets. -Other Built-in Types: Most other built-in types do not have comparison methods implemented, so they inherit the default comparison behavior. -User-defined classes that customize their comparison behavior should follow some consistency rules, if possible: - -Equality comparison should be reflexive. -Comparison should be symmetric. -Comparison should be transitive. -If any of these conditions are not met, the resulting behavior is undefined. \ No newline at end of file diff --git a/ingestion/docs/10.3_Statements.txt b/ingestion/docs/10.3_Statements.txt deleted file mode 100644 index 2e4c423..0000000 --- a/ingestion/docs/10.3_Statements.txt +++ /dev/null @@ -1,157 +0,0 @@ -Simple Statements -In AVAP, a simple statement consists of a single logical line. Multiple simple statements can be placed on a single line, separated by semicolons. The syntax for simple statements is: - -simple_stmt ::= expression_stmt | assert_stmt | assignment_stmt | augmented_assignment_stmt | annotated_assignment_stmt | pass_stmt | del_stmt | return_stmt | yield_stmt | raise_stmt | break_stmt | continue_stmt | import_stmt | future_stmt | global_stmt | nonlocal_stmt | type_stmt -Here’s a brief overview of each type of simple statement: - -Expression Statement (expression_stmt): Executes an expression, which can be used for operations or calling functions. -Assert Statement (assert_stmt): Used for debugging purposes to test conditions. -Assignment Statement (assignment_stmt): Assigns values to variables or data structures. -Augmented Assignment Statement (augmented_assignment_stmt): Performs an operation on a variable and assigns the result back to the variable (e.g., x += 1). -Annotated Assignment Statement (annotated_assignment_stmt): Used for assigning values with annotations (e.g., type hints). -Pass Statement (pass_stmt): A placeholder that does nothing; used for syntactic requirements. -Del Statement (del_stmt): Deletes variables, items, or attributes. -Return Statement (return_stmt): Exits a function and optionally returns a value. -Yield Statement (yield_stmt): Produces a value from a generator function. -Raise Statement (raise_stmt): Raises exceptions for error handling. -Break Statement (break_stmt): Exits the closest enclosing loop. -Continue Statement (continue_stmt): Skips the current iteration of the closest enclosing loop. -Import Statement (import_stmt): Imports modules or specific components from modules. -Future Statement (future_stmt): Enables features from future versions of Python. -Global Statement (global_stmt): Declares variables as global within a function. -Nonlocal Statement (nonlocal_stmt): Declares variables as non-local, affecting scope in nested functions. -Type Statement (type_stmt): Declares or checks types (e.g., type hints). -Each simple statement performs a specific task and contributes to the overall functionality of the AVAP program. - -Expression Statements -Expression statements are used (mostly interactively) to compute and write a value, or (usually) to call a method (a function that does not return a meaningful result; in Python, methods return the value None). Other uses of expression statements are allowed and occasionally useful. The syntax for an expression statement is: - -expression_stmt ::= starred_expression -An expression statement evaluates the list of expressions (which can be a single expression). - -In interactive mode, if the value is not None, it is converted to a string using the built-in function repr(), and the resulting string is written to the standard output on a line by itself (except if the result is None, in which case the called procedure produces no output). - -Assignment Statements -Assignment statements in AVAP are used to (re)assign names to values and to modify attributes or elements of mutable objects. Here is the syntax: - -assignment_stmt ::= (target_list "=")+ (starred_expression | yield_expression) target_list ::= target ("," target)* [","] target ::= identifier | "(" [target_list] ")" | "[" [target_list] "]" | attributeref | subscription | slicing | "*" target -Here's a breakdown of how assignment statements work: - -Assignment Operation: An assignment statement evaluates the list of expressions and assigns the single resulting object to each of the target lists, from left to right. -Recursive Definition: The assignment operation is defined recursively depending on the form of the target list. -Target List: If the target list is a single object without ending in a comma, the object is assigned to that target. If the list contains a target prefixed with an asterisk, the object must be iterable with at least as many elements as targets, minus one. Elements before the starred target are assigned to the respective targets, and the remaining elements are assigned to the starred target. -Single Target: If the target is an identifier (name), it is bound to the object in the current local namespace. For other targets, names are bound in the global or enclosing namespace, depending on `nonlocal`. -Attribute Reference: If the target is an attribute reference, the primary expression is evaluated. It must produce an object with assignable attributes. -Subscription: If the target is a subscription, the primary expression is evaluated to produce a mutable sequence or mapping object, which is then used to assign the value. -Slice: If the target is a slice, the primary expression is evaluated, and the sequence object is requested to replace the slice with the assigned sequence elements. -In summary, assignment statements in AVAP are crucial for assigning values to variables and modifying data structures effectively. - -Return Statement -The return statement in AVAP is used to return the value of a desired variable from a function. Here is the syntax: - -return(variable_to_return): -Here is an overview of how the return statement works: - -Function Context: The return statement can only occur within a function definition, not inside a nested class definition. -Variable Evaluation: If a variable is provided, it is evaluated. If no variable is specified, None is used by default. -Function Exit: The return statement exits the current function call and returns the specified value. -Interaction with try-finally: When the return statement is executed within a try statement that has a finally clause, the finally clause is executed before the function exits. -Generator Functions: In generator functions, the return statement indicates the end of the generator. It causes a StopIteration exception to be raised, with the returned value (if any) used to construct the StopIteration exception and set as the StopIteration.value attribute. -The return statement is a fundamental part of functions and generators, allowing for the output of values and proper function termination. - -Raise Statement -In AVAP, the raise statement is used to throw an exception. The syntax for the raise statement is as follows: - -raise [expression ["from" expression]] -If no expressions are present, raise re-raises the currently handled exception, also known as the active exception. If there is no active exception, a RuntimeError is raised indicating that it is an error. - -Otherwise, raise evaluates the first expression as the exception object. It must be a subclass or an instance of BaseException. If it is a class, the exception instance is obtained when needed by creating an instance of the class without arguments. - -The type of the exception is the instance of the exception class, and the value is the instance itself. - -The from clause is used for exception chaining: if provided, the second expression must be another class or instance of exception. If the second expression is an exception instance, it will be attached to the raised exception as the __cause__ attribute (which is modifiable). If the expression is an exception class, the class will be instantiated and the resulting exception instance will be attached to the raised exception as the __cause__ attribute. If the raised exception is not handled, both exceptions will be printed. - -startLoop() try: print(1 / 0) except Exception as exc: raise RuntimeError("Something went wrong") from exc endLoop() -A mechanism works implicitly if a new exception is raised while an exception is already being handled. An exception may be handled by an except or finally clause, or a with statement. The previous exception is then attached as the new exception’s __context__ attribute: - -startLoop() try: print(1 / 0) except: raise RuntimeError("Something went wrong") from None endLoop() -Exception chaining can be explicitly suppressed by specifying None in the from clause: - -startLoop() try: print(1 / 0) except: raise RuntimeError("Something went wrong") from None endLoop() -Break Statement -In AVAP, the break statement is used to terminate the closest enclosing loop. The syntax for the break statement is as follows: - -break -When a break statement is encountered, it causes the loop to exit immediately, regardless of the loop's condition or any remaining iterations. This effectively transfers control to the statement following the loop. - -The break statement is typically used within for or while loops to provide a way to exit the loop prematurely based on a certain condition. - -for i in range(10): if i == 5: break print(i) print("Loop ended") -In this example, the loop will terminate when i equals 5, and "Loop ended" will be printed. The numbers 0 through 4 will be printed before the loop is exited. - -Break Statement -The break statement in AVAP is used to terminate the closest enclosing loop. Here is an overview of its behavior: - -Usage Context: The break statement can only occur within a for or while loop. It cannot be nested within a function or class definition inside that loop. -Loop Termination: It terminates the closest enclosing loop and skips the optional else clause if the loop has one. -Loop Control Target: If a for loop is terminated by break, the loop control target retains its current value. -Interaction with try-finally: When break is executed within a try statement with a finally clause, the finally clause is executed before actually exiting the loop. -The break statement is essential for controlling loop execution, allowing for early exit from loops and proper handling of loop cleanup. - -Continue Statement -In AVAP, the continue statement is used to proceed with the next iteration of the closest enclosing loop. The syntax for the continue statement is as follows: - -continue -The continue statement can only syntactically occur nested within a for or while loop, but not within a function or class definition inside that loop. - -When continue is used within a loop that is also handling exceptions with a try statement containing a finally clause, the finally clause is executed before the next iteration of the loop begins. - -for i in range(10): try: if i % 2 == 0: continue print(i) finally: print("In finally clause") print("Loop ended") -In this example, the continue statement will skip the current iteration when i is even, but before moving to the next iteration, the finally clause will print "In finally clause." For odd numbers, the loop will print the number and then "In finally clause." After the loop finishes, "Loop ended" will be printed. - -Import Statement -In AVAP, the import statement is used to import an entire code file and define names in the local namespace. The syntax for the import statement is as follows: - -import file.avap -The import statement in AVAP imports an entire code file and makes it available in the local namespace. No alias is assigned to the imported file; the file is simply referred to by its name. - -For example: - -# In the 'module.avap' file example_variable = 10 # In the main file import module.avap print(module.avap.example_variable) # Will print 10 -In this example, the main file imports the module.avap file and can access the example_variable defined in that file using the module.avap syntax. - -Compound Statements -In AVAP, compound statements contain (groups of) other statements; these affect or control the execution of those other statements in some way. In general, compound statements span multiple lines, though in simpler representations a complete compound statement might be contained within a single line. - -if statements implement traditional flow control constructs. match specifies matching patterns for variable values. Function and class definitions are also syntactically compound statements. - -A compound statement consists of one or more "clauses." A clause consists of a header and a "suite." The clause headers of a particular compound statement are all at the same level of indentation. Each clause header begins with a uniquely identifying keyword and ends with a colon. A suite is a group of statements controlled by a clause. A suite can be one or more simple statements separated by semicolons on the same line as the header, following the colon of the header, or it can be one or more statements indented on subsequent lines. Only the latter form of a suite can contain nested compound statements. - -Control Flow Structures in AVAP -In AVAP, control flow structures include conditional statements and loops, which allow you to control the flow of execution based on conditions and iterate over a range of values. - -If Statements -The syntax for an if statement in AVAP is: - -if (variable, variableValue, comparator, expression): code to execute -This structure checks if the condition (variable compared to variableValue with the given comparator) is true, and if so, executes the block of code. - -Loops -The syntax for a loop in AVAP is: - -startLoop(variable, from, to) code to execute endLoop() -This structure initiates a loop where the variable iterates from the 'from' value to the 'to' value, executing the code block for each iteration. - -The if Statement -The if statement in AVAP is used for conditional execution. The syntax is as follows: - -if (variable, variableValue, comparator, expression): code to execute -This statement evaluates the condition specified by the variable, variableValue, comparator, and expression. It selects exactly one of the suites (blocks of code) by evaluating the expressions one by one until a true condition is found. The corresponding suite is then executed. If all conditions are false, no suites are executed. - -The try Statement -The try statement in AVAP specifies exception handlers and/or cleanup code for a block of statements. The syntax is as follows: - -try(): code to execute except(): code to execute -The try block contains code that might raise an exception. The except block contains code to handle exceptions raised by the try block. If an exception occurs, control is transferred to the except block. If no exception occurs, the except block is skipped. - -Additional information about exceptions can be found in the section Exceptions, and information about using the raise statement to throw exceptions can be found in the section The raise Statement. \ No newline at end of file diff --git a/ingestion/docs/10.4_Patterns.txt b/ingestion/docs/10.4_Patterns.txt deleted file mode 100644 index 566799f..0000000 --- a/ingestion/docs/10.4_Patterns.txt +++ /dev/null @@ -1,163 +0,0 @@ -Patterns in AVAP -In AVAP, patterns provide a powerful way to match and destructure values. Patterns can be used in match statements to perform complex value comparisons and deconstructions. Here is a description of the available patterns and how they are used: - -Literal Patterns: Match specific literal values such as numbers, strings, or booleans. For example: -match value: case 10: # Code to execute if value is 10 case "hello": # Code to execute if value is "hello" -Variable Patterns: Capture the value of a variable. This allows you to use the matched value in the corresponding case block: -match value: case x: # Code to execute, x will be assigned the value -Sequence Patterns: Match sequences like lists or tuples. You can also use the * operator to capture remaining elements: -match value: case [1, 2, *rest]: # Code to execute, rest will capture any additional elements -Mapping Patterns: Match dictionaries or similar mappings by specifying keys and their corresponding patterns: -match value: case "key": 42: # Code to execute if the dictionary has "key" with value 42 -Class Patterns: Match instances of classes. You can also match specific attributes within the instance: -match value: case MyClass(attr1=42): # Code to execute if value is an instance of MyClass with attr1 equal to 42 -Patterns in AVAP offer a flexible approach for handling different kinds of data structures and values, making it easier to write expressive and maintainable code. - -OR Patterns -An OR pattern in AVAP allows you to specify multiple patterns separated by vertical bars (|). The OR pattern attempts to match each of its subpatterns with the subject value in order. If any of the subpatterns match, the OR pattern is considered successful. If none of the subpatterns match, the OR pattern fails. - -or_pattern ::= "|".closed_pattern+ -Here's how you can use OR patterns in practice: - -match value: case 1 | 2 | 3: # Code to execute if value is 1, 2, or 3 case "hello" | "world": # Code to execute if value is "hello" or "world" case _: # Code to execute if value does not match any of the above -In this example: - -The first case will match if value is either 1, 2, or 3. -The second case will match if value is either "hello" or "world". -The last case is a catch-all pattern that will execute if none of the previous patterns match. -OR patterns provide a concise way to handle multiple possible values or types, simplifying pattern matching and making your code more readable. - -AS Patterns -An AS pattern in AVAP is used to bind an OR pattern to a name. This allows you to match a value with an OR pattern and simultaneously capture it under a specified name for further use. The syntax for an AS pattern is: - -as_pattern ::= or_pattern "as" capture_pattern -When an AS pattern is used, if the OR pattern succeeds, the subject is bound to the name specified by the capture pattern, and the AS pattern itself succeeds. - -Here's an example of how to use AS patterns: - -match value: case 1 | 2 | 3 as x: print(f"Matched a number: x") case "hello" | "world" as greeting: print(f"Matched a greeting: greeting") case _: print("No match") -In this example: - -The first case matches if value is 1, 2, or 3. The matched value is bound to the name x, which is then used in the print statement. -The second case matches if value is "hello" or "world". The matched value is bound to the name greeting, which is then used in the print statement. -The last case is a catch-all pattern that executes if none of the previous patterns match. -AS patterns are useful for capturing matched values under a name while using OR patterns, allowing for more flexible and readable pattern matching in your code. - -Literal Patterns -In AVAP, literal patterns are used to match specific literal values, such as numbers, strings, or boolean values. The syntax for a literal pattern is: - -literal_pattern ::= signed_number | strings | "None" | "True" | "False" -A literal pattern only succeeds if the value of the subject is equal to the specified literal value. - -Here are examples of literal patterns and their usage: - -match value: case 42: print("Matched the number 42") case "hello": print("Matched the string 'hello'") case None: print("Matched None") case True: print("Matched True") case False: print("Matched False") case _: print("No match") -In this example: - -case 42: matches if value is exactly 42. -case "hello": matches if value is the string "hello". -case None: matches if value is None. -case True: matches if value is True. -case False: matches if value is False. -case _: is a catch-all pattern that executes if none of the previous patterns match. -Literal patterns are useful for matching specific, known values and are a fundamental part of pattern matching in AVAP. - -Capture Patterns -In AVAP, capture patterns are used to bind the subject's value to a name. The syntax for a capture pattern is: - -capture_pattern ::= NAME -Capture patterns always succeed and bind the value of the subject to the specified name. - -Here’s how you might use capture patterns in AVAP: - -match value: case x: print(f"Captured value: x") -In this example: - -case x: captures whatever value is in value and binds it to the name x. The pattern always succeeds. -Capture patterns are useful when you want to extract and use the value of the subject within your code, regardless of what that value is. - -Wildcard Patterns -In AVAP, wildcard patterns are used to match any value without binding it to a name. The syntax for a wildcard pattern is: - -wildcard_pattern ::= '_' -Wildcard patterns always succeed and do not create any bindings. They are useful when you want to ignore the value of the subject and only care about whether it matches a certain pattern. - -Here’s how you might use wildcard patterns in AVAP: - -match value: case _: print("Matched any value") -In this example: - -case _: matches any value and does not bind it to a name. The pattern always succeeds, and the code within this case will be executed regardless of the value. -Wildcard patterns are particularly useful when you need to handle a broad range of possibilities and are only interested in whether a value fits a general condition, not in the value itself. - -Value Patterns -In AVAP, value patterns are used to match specific values. The syntax for a value pattern is: - -value_pattern ::= attr -Value patterns only succeed if the subject's value matches the specified value. They are useful when you want to perform actions based on an exact value. - -Here’s how you might use value patterns in AVAP: - -match value: case 42: print("Matched the value 42") case "hello": print("Matched the string 'hello'") case _: print("Matched something else") -In this example: - -case 42: matches the value 42 specifically. -case "hello": matches the string "hello" specifically. -case _: matches any other value not covered by the previous cases. -Value patterns are ideal for scenarios where you need to check for specific values and respond accordingly. They provide precise control over the matching process. - -Group Patterns -In AVAP, group patterns are used to group multiple patterns together. The syntax for a group pattern is: - -group_pattern ::= "(" pattern ")" -Group patterns are useful when you want to combine patterns or when patterns need to be evaluated together. They have the same effect as the pattern they contain but allow for more complex pattern structures. - -Here’s an example of how to use group patterns in AVAP: - -match value: case (42 | 43): print("Matched either 42 or 43") case (name, age) if age > 18: print(f" is an adult") case _: print("Matched something else") -In this example: - -case (42 | 43): uses a group pattern to match either the value 42 or 43. -case (name, age) if age > 18: uses a group pattern to match a tuple and includes an additional condition on the age. -case _: matches any other value not covered by the previous cases. -Group patterns are ideal for creating more complex matching scenarios where patterns need to be combined or grouped together. - -Sequence Patterns -In AVAP, sequence patterns are used to match elements within sequences like lists or tuples. The syntax for sequence patterns is: - -sequence_pattern ::= "[" [maybe_sequence_pattern] "]" | "(" [open_sequence_pattern] ")" -Sequence patterns can match elements of sequences based on specific rules. Here’s how they work: - -List Patterns: Use square brackets [ ] to match lists. You can include patterns for the elements within the list. -case [a, b, c]: print("Matched a list with three elements") -Tuple Patterns: Use parentheses ( ) to match tuples. Similarly, you can specify patterns for the tuple elements. -case (x, y): print("Matched a tuple with two elements") -Sequence patterns allow for flexible and powerful matching of sequence types. They can match sequences of various lengths and structures by defining the pattern for each element. - -Here’s an example of using sequence patterns in a match statement: - -match value: case [1, 2, 3]: print("Matched a list with elements 1, 2, 3") case (a, b, c) if a + b == c: print("Matched a tuple where a + b equals c") case _: print("Matched something else") -In this example: - -case [1, 2, 3]: matches a list with exactly the elements 1, 2, and 3. -case (a, b, c) if a + b == c: matches a tuple and includes a condition to check if a + b equals c. -case _: matches any other value not covered by the previous cases. -Mapping Patterns -In AVAP, mapping patterns are used to match mapping elements, such as dictionaries. Here is the syntax and behavior of mapping patterns: - -mapping_pattern ::= { [items_pattern] } -Mapping Patterns are designed to match elements within mappings, such as dictionaries. They use specific rules to determine if a pattern matches the given mapping. - -Syntax: Mapping patterns are enclosed in curly braces { ... }. The items_pattern specifies the pattern for the mapping items. -Matching Rules: The rules for matching mapping patterns include checking for key-value pairs in the mapping and ensuring they align with the specified pattern. -Usage: Mapping patterns are useful for destructuring dictionaries and other mapping types in a concise manner. -Mapping patterns enhance pattern matching capabilities by allowing for specific and flexible matching of dictionary elements. - -Class Patterns -In AVAP, class patterns are used to match instances of specific classes. Here is a detailed overview: - -class_pattern ::= name "(" [pattern_arguments ","?] ")" -Pattern Syntax: A class pattern specifies the class name followed by a parenthesized list of pattern_arguments. The pattern matches instances of the specified class. -Matching Instances: The pattern will match if the subject is an instance of the specified class and the pattern_arguments (if any) match according to the rules defined for the pattern. -Usage: Class patterns are useful for deconstructing objects based on their class and extracting values from them, enabling more precise pattern matching. -These patterns provide a way to work with objects based on their class type and structure, facilitating more sophisticated pattern matching and value extraction. \ No newline at end of file diff --git a/ingestion/docs/10_Execution_model_in_avap.txt b/ingestion/docs/10_Execution_model_in_avap.txt deleted file mode 100644 index 21f9a58..0000000 --- a/ingestion/docs/10_Execution_model_in_avap.txt +++ /dev/null @@ -1,108 +0,0 @@ -Execution Model in AVAP -4.1. Structure of a Program -A program in AVAP is built from code blocks that execute linearly. A block is a section of the AVAP program text that executes as a unit. Code blocks in AVAP include: - -A script file. -The body of a function. -An import statement for additional files. -Each line of code in AVAP is considered a block and executes sequentially. There is no interactive execution, deferred execution, or object classes. - -4.2. Names and Bindings -4.2.1. Name Binding -Names in AVAP refer to values and are introduced through name binding operations. The following constructs bind names: - -Formal parameters of functions. -Function definitions. -Assignment expressions. -Name binding is performed using the addVar(value, variable) function, which assigns the value to the specified variable. There are no class declarations or complex targets in AVAP. Only functions and direct assignments to variables are valid code blocks. - -4.2.2. Name Resolution -A scope defines the visibility of a name in a code block. In AVAP, if a variable is defined in a code block, its scope includes that block. The scope of a variable within a function extends to the entire function block. - -When a name is used in a code block, it is resolved using the nearest enclosing scope. If the name is not found in the current scope, a NameError exception is raised. - -If a name binding operation occurs anywhere within a code block, all uses of the name within that block are treated as references to the current block. This means that variables must be defined before their use within the same block. - -In AVAP, there are no global or nonlocal declarations. All names are resolved within the scope in which they are defined. There is no dynamic code execution with eval or exec, so all bindings must be static and known at code writing time. - -4.3. Importing Files -In AVAP, it is possible to import the contents of other code files. The import file.avap statement inserts the contents of the specified file at the exact point where the import statement appears. This process is linear and sequential, meaning that the imported content is executed as if it were part of the original file. - -It is crucial that the necessary functions are defined before they are called. If a function is not defined before its call, a NameError exception will be raised. - -Example of import usage: - -avap - -// Content of the file main.avap -addVar(10, x) -import functions.avap -myFunction(x) - -// Content of the file functions.avap -def myFunction(y): - addVar(y + 5, result) - print(result) -4.4. Exceptions -Exceptions in AVAP allow for the handling of errors or exceptional conditions. An exception is raised when an error is detected; it can be handled by the surrounding code block or by any code block that directly or indirectly invoked the block where the error occurred. - -The AVAP interpreter raises an exception when it detects a runtime error. An AVAP program can also explicitly raise an exception using the raise statement. Exception handlers are specified with the try ... except statement. - -Example of exception handling: - -try: - addVar(10 / 0, result) -except ZeroDivisionError: - print("Cannot divide by zero.") -In this example, if a division by zero occurs, a ZeroDivisionError exception is raised and handled by the except block. - -This structure ensures that AVAP programs execute in a sequential and predictable manner, without advanced dynamic or deferred execution features, maintaining simplicity and clarity in name binding and import handling. - -5. The Import System in AVAP -AVAP code in one file gains access to code in another file through the import process. The import statement is the only way to invoke the import machinery in AVAP. - -The import statement inserts the contents of the specified file at the exact point where the import statement appears in the original file. There are no other ways to invoke the import system in AVAP. - -When an import statement is executed, the contents of the imported file are processed as if they were part of the original file, ensuring that all functions and variables from the imported file are available in the context of the original file. If the specified file is not found, a FileNotFoundError is raised. - -Example of using the import statement in AVAP: - -Content of file main.avap -addVar(10, x) -import functions.avap -myFunction(x) - -Content of file functions.avap -def myFunction(y): - addVar(y + 5, result) - print(result) -In this example, the content of functions.avap is inserted into main.avap at the point of the import statement, ensuring that myFunction is defined before being called. - -5.1. Import Rules -Position of Import: The import statement must be placed at the exact location where the content of the imported file is to be included. The content of the imported file is executed linearly along with the original file. -Import Error: If the file specified in the import statement is not found, a FileNotFoundError is raised. -Scope of Imports: The functions and variables from the imported file are added to the local scope of the original file at the point of import. This means they can be accessed as if they were defined in the same file. -5.2. Limitations and Considerations -No Packages: Unlike other languages, AVAP does not have a hierarchical package system. Each file is imported independently and treated as an autonomous unit. -Sequential Execution: Execution in AVAP is sequential and does not allow lazy or deferred execution. Therefore, all functions and variables must be defined before use, and the content of imported files must be in the correct order. -No Conditional Import: The import statement in AVAP does not support conditions. The specified file will always be imported at the point of the statement, regardless of any conditions. -5.3. Advanced Example -Consider the following example where multiple files are imported: - -Content of the file main.avap -addVar(5, a) -import utilities.avap -import operations.avap - -addVar(utilities.increment(a), b) -addVar(operations.multiply(b, 2), c) -print(c) - -Content of the file utilities.avap -def increment(x): - return x + 1 - -Content of the file operations.avap -def multiply(x, y): - return x * y -In this example, utilities.avap and operations.avap are imported into main.avap at the specified points, allowing the increment and multiply functions to be used in main.avap. diff --git a/ingestion/docs/11_Conditional_statements.txt b/ingestion/docs/11_Conditional_statements.txt deleted file mode 100644 index d24ad22..0000000 --- a/ingestion/docs/11_Conditional_statements.txt +++ /dev/null @@ -1,39 +0,0 @@ -IF-THEN-ELSE Statement -The IF-THEN-ELSE statement in AVAP™ allows for decision-making based on specific conditions and executes different blocks of code depending on the outcome of those conditions. Below is a detailed explanation of its syntax and functionality. - -6.1 Syntax of the IF-THEN-ELSE Statement -The basic syntax of the IF-THEN-ELSE statement in AVAP™ is as follows: - -IF(condition, true_value, operator) - // Block of code if the condition is true ELSE - // Block of code if the condition is false END() -condition: This is an expression that evaluates to either true or false. -true_value: This is the value assigned if the condition is true. -operator: This is the operator used to compare the condition with the true value. -6.2 Functioning of the IF-THEN-ELSE Statement -The IF-THEN-ELSE statement evaluates the given condition and, if it is true, executes the block of code within the IF(). If the condition is false, it executes the block of code within the ELSE(). - -Below is the description of each part of the IF-THEN-ELSE statement using the provided example: - -// IF, ELSE and END Sample Use - addVar(selector,'yes') - IF(selector,'yes','=') - addVar(result,1) ELSE() - addVar(result,0) END() - addResult(result) -The variable selector is initialized with the value 'yes'. -The statement IF(selector,'yes','=') evaluates whether the value of selector is equal to 'yes'. In this case, the condition is true. -Inside the IF() block, addVar(result,1) is executed, which assigns the value 1 to the result variable. -Since the condition of the IF() is true, the code block inside the ELSE() is not executed. -The statement addResult(result) adds the value of the result variable to the API result. -6.3 Result -The result returned by the API after executing the above code is as follows: - -{ - status - , elapsed:0.008270740509033203, result: { result:1 } - } -This result indicates that the execution was successful (status:true) and that the value of result is 1. - -6.4 Conclusions -The IF-THEN-ELSE statement in AVAP™ provides an efficient way to make decisions based on specific conditions. Similar to other programming languages, it allows for executing different blocks of code based on the outcome of evaluating a condition. diff --git a/ingestion/docs/12_Loop_statement.txt b/ingestion/docs/12_Loop_statement.txt deleted file mode 100644 index 0fcd8e9..0000000 --- a/ingestion/docs/12_Loop_statement.txt +++ /dev/null @@ -1,42 +0,0 @@ -StartLoop() Statement -The loop statement in AVAP™ allows you to execute a block of code repeatedly until a specific condition is met. Below is a detailed explanation of its syntax and functionality. - -7.1 Syntax of the Loop Statement -The full syntax of the loop statement in AVAP™ is as follows: - -startLoop(control, start, end) // Code block to repeat endLoop() -This syntax consists of three main parts: - -control: This is the loop control variable used to track the progress of the loop. It is initialized with the starting value of the loop and is incremented with each iteration until it reaches the end value. -start: This is the starting value of the loop. The loop begins at this value. -end: This is the ending value of the loop. The loop terminates when the control variable reaches this value. -7.2 Functioning of the Loop Statement -The loop statement in AVAP™ follows this execution process: - -The control variable control is initialized with the starting value specified in start. -The loop condition is evaluated: while the value of control is less than or equal to the end value end, the code block within startLoop() is executed. If the value of control exceeds the end value, the loop terminates, and execution continues after endLoop(). -In each iteration of the loop, the code block within startLoop() is executed, and the control variable control is automatically incremented by one. -Once the control variable reaches or exceeds the end value end, the loop terminates, and execution continues after endLoop(). -7.3 Example of Use -Below is an example of using the loop statement in AVAP™, along with a detailed explanation of each part of the code: - -// Loop Sample Use - // Initialize the variable 'variable' with the value 5. - addVar(variable,5) - // Start the loop with the control variable 'control', ranging from 1 to 5. - startLoop(control,1,5) - // In each iteration of the loop, assign the current value of 'control' to the variable 'counter'. - addVar(counter,$control) - endLoop() - // Add the final value of 'counter' to the API result. - addResult(counter) -7.4 Result and Conclusions -After executing the above code, the result returned by the API is as follows: - -{ - status - , elapsed:0.01605510711669922, result: { counter:5 } - } -This result confirms that the execution was successful (status:true) and that the final value of counter is 5. - -In summary, the loop statement in AVAP™ provides an efficient way to execute a block of code repeatedly within a specified range. By automating tasks that require repetition, such as processing a list of items or generating sequential numbers, this statement becomes a fundamental tool for programming in AVAP™. diff --git a/ingestion/docs/13_Api_inbound_interface.txt b/ingestion/docs/13_Api_inbound_interface.txt deleted file mode 100644 index aa78de0..0000000 --- a/ingestion/docs/13_Api_inbound_interface.txt +++ /dev/null @@ -1,26 +0,0 @@ -Chapter 12: addParam() Function -Introduction -The addParam() function in AVAP™ is a powerful tool used to add parameters to an API call in the query string. This parameter is assigned to a variable and acts as a bridge between the API call and the API itself, allowing smooth and efficient communication between both. - -Usage of addParam -The addParam() function is used to add parameters to an API call in the query string. The basic syntax of this function is as follows: - -addParam(variable, value) -Where variable is the name of the variable to be used as a parameter in the API call, and value is the value assigned to this variable. - -Example Usage -Below is a practical example illustrating how to use the addParam() function in an API call: - -# API call with addParam() -addParam(user, "john_doe") -addParam(password, "password123") -In this example, two parameters, user and password, are being added to an API call. The value of user is set to "john_doe" and the value of password is set to "password123". - -Internal Operation -Internally, the addParam() function constructs the querystring for the API call by adding the specified parameters along with their corresponding values. This querystring is passed to the API, which uses it to process the request and return the appropriate response. - -Important Considerations -It is important to ensure that the parameters added with addParam() are valid and correctly formatted according to the requirements of the API being called. Additionally, it is the developer's responsibility to ensure that the values assigned to the parameters are secure and do not contain malicious data that could compromise system security. - -Conclusions -The addParam() function in AVAP™ is an essential tool for constructing and managing API calls, facilitating communication between the client and the server. By understanding how this function works and how it is used in the context of an API call, developers can create more robust and secure applications that make the most of web services' potential. diff --git a/ingestion/docs/14_Working_with_libraries.txt b/ingestion/docs/14_Working_with_libraries.txt deleted file mode 100644 index 54565b2..0000000 --- a/ingestion/docs/14_Working_with_libraries.txt +++ /dev/null @@ -1,42 +0,0 @@ -Function Libraries -Introduction -Includes are a fundamental feature in AVAP™ that allow for the efficient organization and reuse of code in software development projects. Just like in other programming languages, includes in AVAP™ enable the incorporation of functionalities from other files or libraries into the current file. This capability provides a number of significant advantages that make the development and maintenance of projects more efficient and effective. - -Purpose of Includes -The primary purpose of includes in AVAP™ is to promote modularity and code reuse. By dividing code into separate modules or files and then including them in main files as needed, developers can write and maintain code in a more organized and structured manner. This facilitates the management of large and complex projects, as well as collaboration between development teams. - -Advantages of Using Includes -Code Reuse: Includes allow for the reuse of functions, variables, and other code definitions in multiple parts of a project, reducing code duplication and promoting consistency and coherence in development. -Facilitates Maintainability: By dividing code into smaller, more specific modules, it is easier to identify, understand, and modify parts of the code without affecting other parts of the project. This eases software maintenance over time. -Promotes Modularity: The ability to include files selectively as needed encourages code modularity, which simplifies understanding and managing complex projects by breaking them down into smaller, manageable components. -Improves Readability and Organization: The use of includes helps organize code in a logical and structured manner, improving readability and facilitating navigation through different parts of the project. -Syntax of Includes -In AVAP™, the syntax for including a file is similar to that of other languages like C. The keyword include is used followed by the name of the file to be included. There are two main ways to include files in AVAP™: - -Local Include: Used to include project-specific files located in the same directory or in subdirectories relative to the current file. The file name is specified within quotes. Example: -include "file_name.avap" -System Include: Used to include standard or system library files located in predefined or configured paths on the system. The file or library name is specified between angle brackets (< and >). Example: -include -Operation -When an include is found in an AVAP™ file, the interpreter searches for the specified file and incorporates it into the current file at compile time. This means that all the code contained in the included file will be available for use in the current file. - -Common Uses -Including Standard Libraries: Standard libraries that provide common functions and utilities can be included to simplify application development. -Including Definition Files: Files containing definitions of variables, constants, or data structures used in multiple parts of the project can be included. -Including Specific Functionality Modules: Modules providing additional features for the project, such as file handling, text processing, or data manipulation, can be included. -Practical Example -Suppose we have a file named utils.avap that contains utility functions we want to use in our main project. We can include this file in our main project as follows: - -include "utils.avap" // We can now use the functions defined in utils.avap -With this understanding of the value and advantages of using includes in AVAP™, we will explore in detail their operation and practical application in project development. - -Practical Example -Suppose we have a file named utils.avap that contains utility functions we want to use in our main project. We can include this file in our main project as follows: - -include "utils.avap" // We can now use the functions defined in utils.avap -With this understanding of the value and advantages of using includes in AVAP™, we will explore in detail their operation and practical application in project development. - -Function Libraries Function Products -In AVAP™, there are a series of function libraries grouped by categories called Function Products that complement the base AVAP™ language and leverage the power of AVS servers for distribution. Through Function Products, developers can extend the functionality of AVAP™ by incorporating specialized libraries tailored to different needs and applications. - -Function Products provide a way to access advanced features and capabilities not available in the core language, offering a robust framework for building complex and scalable solutions. These libraries are designed to integrate seamlessly with AVAP™, enhancing the development process and enabling more efficient and effective project execution. diff --git a/ingestion/docs/15_Function_declaration.txt b/ingestion/docs/15_Function_declaration.txt deleted file mode 100644 index a788aa5..0000000 --- a/ingestion/docs/15_Function_declaration.txt +++ /dev/null @@ -1,34 +0,0 @@ -Function Declaration -Introduction -Functions in AVAP™ are reusable blocks of code that perform a specific task. Just like in Python, functions in AVAP™ allow for code modularization, improved readability, easier maintenance, and code reuse. - -Function Construction -In AVAP™, similar to Python, functions are defined using the keyword def, followed by the function name and its parameters in parentheses. The function definition ends with a colon (:), followed by the block of code that forms the function body, indented with four spaces. - -Defining a function in AVAP™ -def greet(name): - return "Hello, " + name + "!" -Calling the function -message = greet("World") - print(message) -Output -Hello, World! -Technical Features -Parameters: Functions can accept zero or more parameters that are used as inputs to the function. -Return Values: Functions can return a value using the return keyword. -Scope: Functions in AVAP™ have their own scope, meaning that variables defined within a function are only visible within that function unless declared as global variables. -Code Reusability: Functions allow for encapsulating and reusing blocks of code that perform specific tasks. -Practical Example -Below is a practical example illustrating the definition and invocation of a function in AVAP™: - -Definition of a Function to Calculate the Area of a Circle -def calculate_circle_area(radius): - return 3.14 * radius ** 2 -Calling the Function -circle_radius = 5 -area = calculate_circle_area(circle_radius) -print("The area of the circle is:", area) -Output: -The area of the circle is: 78.5 -Conclusions -Functions are a fundamental part of programming in AVAP™, allowing for effective organization and modularization of code. By understanding how to define, construct, and call functions in AVAP™, developers can write clearer, more concise, and maintainable code, facilitating the development and management of applications. diff --git a/ingestion/docs/16_Appendix.txt b/ingestion/docs/16_Appendix.txt deleted file mode 100644 index e7b1b57..0000000 --- a/ingestion/docs/16_Appendix.txt +++ /dev/null @@ -1,721 +0,0 @@ -Appendix -Function Glossary -randomString() -The randomString() command generates a random string based on a specified pattern and stores it in a target variable. It is especially useful when random strings are needed to conform to a specific format, such as passwords or identifiers. - -Parameters -Pattern -Type: var -Description: A regular expression (regex) pattern that defines the characters and structure of the string to be generated. It can be a direct value or a variable containing the pattern. For example, [a-zA-Z0-9] will generate a string that includes uppercase letters, lowercase letters, and numbers. -Length -Type: var -Description: An integer value specifying the length of the random string to be generated. It can be a direct value or a variable containing the desired length. This value determines how many characters the resulting string will have. -TargetVariable -Type: var -Description: The variable where the generated string will be stored. This variable should be used later in the program. Unlike the other parameters, this must be a variable and not a direct value. -Usage Example -// Direct call with values: - randomString('[a-zA-Z0-9]', 8, generatedPassword) - - // Call using variables: - pattern = '[a-zA-Z0-9]' - length = 8 - randomString(pattern, length, generatedPassword) -stampToDatetime() -The stampToDatetime() command converts a timestamp value to a date and time according to a specified format, applying a possible time difference, and stores the result in a target variable. It is useful for manipulating and formatting time values into different representations. - -Parameters -timestamp -Type: var -Description: A value representing a timestamp, which can be provided directly or through a variable. This value is the starting point for conversion to a date and time format. -Format -Type: var -Description: A format string that defines how the resulting date and time should be presented. This string follows the same conventions used in Python for formatting dates and times. Common symbols include: -%Y: Year with four digits (e.g., 2024) -%m: Month with two digits (01 to 12) -%d: Day of the month with two digits (01 to 31) -%H: Hour in 24-hour format (00 to 23) -%M: Minutes (00 to 59) -%S: Seconds (00 to 59) -For example, the format %Y-%m-%d %H:%M:%S converts a timestamp into a string like 2024-08-25 14:30:00. It can be a direct value or a variable containing the desired format. -TimeDelta -Type: var -Description: An optional value representing a time adjustment (positive or negative) applied to the timestamp before conversion. This value can be provided directly or through a variable and is expressed in seconds. -TargetVariable -Type: var -Description: The variable where the resulting date and time from the conversion will be stored. Unlike the other parameters, this must be a variable and not a direct value. -Usage Example -// Direct call with values: - stampToDatetime(1692966600, '%Y-%m-%d %H:%M:%S', 3600, convertedDatetime) - - // Call using variables: - timestamp = 1692966600 - format = '%Y-%m-%d %H:%M:%S' - adjustment = 3600 - stampToDatetime(timestamp, format, adjustment, convertedDatetime) -In the first example, a timestamp is converted to a date and time in the format "%Y-%m-%d %H:%M:%S", applying a 3600-second (1-hour) adjustment, and the result is stored in the variable convertedDatetime. In the second example, variables are used to define the timestamp, format, and adjustment. - -getTimeStamp() -The getTimeStamp() command converts a date and time string, given in a specific format, to a timestamp value. Additionally, it allows for an optional time adjustment before storing the result in a target variable. This command is useful for converting human-readable date and time representations to a numeric timestamp format, which can be used in calculations or time comparisons. - -Parameters -DateString -Type: var -Description: A string representing a date and time. This string must follow the format specified in the Format parameter. It can be a direct value or a variable containing the date string. -Format -Type: var -Description: A format string that defines how to interpret the date and time string (DateString). This string follows Python's conventions for formatting and parsing dates and times. Some common symbols include: -%Y: Year with four digits (e.g., 2024) -%m: Month with two digits (01 to 12) -%d: Day of the month with two digits (01 to 31) -%H: Hour in 24-hour format (00 to 23) -%M: Minutes (00 to 59) -%S: Seconds (00 to 59) -For example, to interpret the string "2024-08-25 14:30:00", the format %Y-%m-%d %H:%M:%S would be used. It can be a direct value or a variable containing the format. -TimeDelta -Type: var -Description: An optional value representing a time adjustment (positive or negative) applied to the timestamp after conversion. This value can be provided directly or through a variable and is expressed in seconds. -TargetVariable -Type: var -Description: The variable where the resulting timestamp from the conversion will be stored. Unlike the other parameters, this must be a variable and not a direct value. -Usage Example -// Direct call with values: - getTimeStamp('2024-08-25 14:30:00', '%Y-%m-%d %H:%M:%S', 3600, generatedTimestamp) - - // Call using variables: - date = '2024-08-25 14:30:00' - format = '%Y-%m-%d %H:%M:%S' - adjustment = 3600 - getTimeStamp(date, format, adjustment, generatedTimestamp) -In the first example, the date and time string "2024-08-25 14:30:00" is converted to a timestamp, applying a 3600-second (1-hour) adjustment, and the result is stored in the variable generatedTimestamp. In the second example, variables are used to define the date, format, and adjustment. - -getRegex() -The getRegex() command searches for matches in a source string using a regular expression (regex) pattern and stores the result in a target variable. This command is useful for extracting specific parts of a string that match a defined pattern, such as email addresses, phone numbers, or any other structure defined by a regex. - -Parameters -SourceVariable -Type: variable -Description: The variable containing the source string in which to search for regex pattern matches. This string is the text on which the regex search will be applied. -rePattern -Type: variable -Description: The variable containing the regular expression (regex) pattern that defines what to search for in the source string. This pattern should follow standard regex rules, allowing the specification of sequences of characters to identify in the source string. -TargetVariable -Type: variable -Description: The variable where the search result will be stored. Depending on the context and the pattern used, the result could be the first match found, all matches, or even specific groups within the match. -Usage Example -// Direct call with values: - sourceText = "Email: user@example.com and phone: 123-456-7890" - pattern = r"\b\d{3}-\d{3}-\d{4}\b" - getRegex(sourceText, pattern, phoneNumber) - - // Call using variables: - sourceText = "Visit our website at https://www.example.com for more information." - regexPattern = r"https?://\S+" - getRegex(sourceText, regexPattern, foundURL) -In the first example, a phone number in the format 123-456-7890 is searched in the sourceText string and the result is stored in the phoneNumber variable. In the second example, a URL is extracted from the sourceText string using a regex that identifies URL patterns, and the result is stored in the foundURL variable. - -getDateTime() -The getDateTime() command retrieves the current date and time, formats it according to a specified format, applies an optional time adjustment, and converts it to a specific time zone before storing the result in a target variable. It is useful for obtaining and manipulating the current date and time in different formats and time zones. - -Parameters -Format -Type: var -Description: A format string that defines how the resulting date and time should be presented. This string follows the date and time formatting conventions used in Python. Some of the most common symbols include: -%Y: Year with four digits (e.g., 2024) -%m: Month with two digits (01 to 12) -%d: Day of the month with two digits (01 to 31) -%H: Hour in 24-hour format (00 to 23) -%M: Minutes (00 to 59) -%S: Seconds (00 to 59) -For example, the format "%Y-%m-%d %H:%M:%S" will present the date and time as 2024-08-25 14:30:00. It can be a direct value or a variable containing the desired format. -TimeDelta -Type: var -Description: An optional value representing a time adjustment (positive or negative) applied to the current date and time before conversion. This value can be provided directly or through a variable and is expressed in seconds. -TimeZone -Type: var -Description: The time zone to which the date and time should be converted. This value can be a time zone identifier provided directly or through a variable. Some common time zones include: -"UTC": Coordinated Universal Time -"America/New_York": U.S. Eastern Time (EST/EDT) -"America/Los_Angeles": U.S. Pacific Time (PST/PDT) -"Europe/London": London Time (GMT/BST) -"Europe/Madrid": Madrid Time (CET/CEST) -"Asia/Tokyo": Tokyo Time (JST) -"Australia/Sydney": Sydney Time (AEST/AEDT) -You can use any time zone recognized by the pytz library in Python, which includes most time zones worldwide. -TargetVariable -Type: var -Description: The variable in which the resulting date and time from the operation will be stored. Unlike the other parameters, this must be a variable and not a direct value. -Usage Example -// Direct call with values: - getDateTime('%Y-%m-%d %H:%M:%S', 3600, 'UTC', currentTime) - - // Call using variables: - format = '%Y-%m-%d %H:%M:%S' - adjustment = 3600 - timeZone = 'America/New_York' - getDateTime(format, adjustment, timeZone, currentDateTime) -In the first example, the current date and time are retrieved, adjusted by 3600 seconds (1 hour), converted to UTC, and stored in the variable currentTime. In the second example, variables are used to define the format, time adjustment, and time zone, with the result stored in the currentDateTime variable. - -encodeMD5() -The encodeMD5() command generates an MD5 hash of the provided string and stores the result in a target variable. MD5 is a cryptographic hash function that produces a 128-bit value (32 hexadecimal characters), commonly used to verify data integrity. - -Parameters -SourceVariable -Type: var -Description: The variable containing the text string to be encoded in MD5. It can be a direct value or a variable storing the input string. -TargetVariable -Type: var -Description: The variable in which the resulting MD5 hash will be stored. Unlike the SourceVariable parameter, this must be a variable and not a direct value. -Usage Example -// Direct call with values: -encodeMD5('example_string', md5Hash) - -// Call using variables: -text = 'example_string' -hashVariable = 'md5Hash' -encodeMD5(text, hashVariable) -In the first example, an MD5 hash is generated from the string 'example_string' and stored in the md5Hash variable. In the second example, a variable text is used to define the input string and another variable hashVariable is used to store the resulting MD5 hash. - -encodeSHA256() -The encodeSHA256() command generates a SHA-256 hash of the provided string and stores the result in a target variable. SHA-256 is a cryptographic hash function that produces a 256-bit value (64 hexadecimal characters), offering greater security compared to MD5. - -Parameters -SourceVariable -Type: var -Description: The variable containing the text string to be encoded in SHA-256. It can be a direct value or a variable storing the input string. -TargetVariable -Type: var -Description: The variable in which the resulting SHA-256 hash will be stored. Unlike the SourceVariable parameter, this must be a variable and not a direct value. -Usage Example -// Direct call with values: -encodeSHA256('example_string', sha256Hash) - -// Call using variables: -text = 'example_string' -hashVariable = 'sha256Hash' -encodeSHA256(text, hashVariable) -In the first example, a SHA-256 hash is generated from the string 'example_string' and stored in the sha256Hash variable. In the second example, a variable text is used to define the input string, and another variable hashVariable is used to store the resulting SHA-256 hash. - -getQueryParamList() -The getQueryParamList() command extracts the query parameters from the current HTTP request and stores a list of these parameters in a target variable. This is useful for handling and processing query parameters in web applications. - -Parameters -TargetVariable -Type: var -Description: The variable in which the extracted query parameter list will be stored. This should be a variable where the command's result will be saved. -Command Flow -Parameter Extraction: Accesses the query parameters from the current HTTP request. -List Construction: Creates a list containing dictionaries, where each dictionary represents a query parameter and its associated value. -Result Storage: Saves the list of parameters in the variable specified by TargetVariable. -Usage Example -Suppose the HTTP query has the following parameters: ?user=alice&age=30. - -// Define the variable to store the result - queryParamsList = [] - - // Call the command to extract query parameters - getQueryParamList(queryParamsList) - - // Return the list of query parameters via addResult - addResult(queryParamsList) -Given the query string ?user=alice&age=30, the getQueryParamList() command will generate the following list of parameters: - -[ - {"user": "alice"}, - {"age": "30"} -] -getListLen() -The getListLen() command calculates the length of a list and stores the result in a target variable. This command is useful for determining the number of elements in a list. - -Parameters -SourceVariable -Type: var -Description: The variable containing the list whose length you want to calculate. It can be a variable that stores the list or a direct value representing the list. -TargetVariable -Type: var -Description: The variable where the result of the list length will be stored. This should be a variable that will receive the integer value representing the number of elements in the list. -Command Flow -Retrieve the List: Access the list stored in the SourceVariable. -Calculate the Length: Calculate the number of elements in the list. -Store the Result: Save the calculated length in the variable specified by TargetVariable. -Usage Example -Suppose the list in myList is ['apple', 'banana', 'cherry']. - -// Variable definitions -myList = ['apple', 'banana', 'cherry'] -listLength = 0 - -// Call the command to calculate the length of the list -getListLen(myList, listLength) - -// Return the list length through addResult -addResult(listLength) -Since the list myList has 3 elements, the getListLen() command will calculate that the length is 3. This value will be stored in the listLength variable and returned through addResult(listLength), resulting in the following output: - -3 -itemFromList() -The itemFromList() command extracts a specific element from a list based on a given index and stores the result in a target variable. This is useful for accessing individual elements within a list. - -Parameters -SourceVariable -Type: var -Description: The variable containing the list from which an element is to be extracted. It can be a variable that stores the list or a direct value representing the list. -index -Type: value -Description: The index of the element to be extracted from the list. It must be an integer value that indicates the position of the element within the list. -TargetVariable -Type: var -Description: The variable where the extracted element will be stored. It must be a variable that will receive the value of the element at the specified index position. -Command Flow -Access the List: Access the list stored in the SourceVariable. -Extract the Element: Retrieve the element at the position specified by the index. -Store the Result: Save the extracted element in the variable specified by TargetVariable. -Usage Example -Suppose the list in myList is ['apple', 'banana', 'cherry'] and you want to extract the element at index 1. - -// Variable definitions -myList = ['apple', 'banana', 'cherry'] -element = '' - -// Call the command to extract the element at index 1 -itemFromList(myList, 1, element) - -// Return the extracted element through addResult -addResult(element) -Since index 1 corresponds to the element 'banana' in the myList, the itemFromList() command will extract 'banana' and store it in the variable element. The element variable will be returned through addResult(element), resulting in the following output: - -"banana" -variableFromJSON() -The variableFromJSON() command extracts the value associated with a specific key from a JSON object and stores the result in a target variable. This command is useful for accessing values within a JSON object. - -Parameters -SourceVariable -Type: var -Description: The variable containing the JSON object from which a value is to be extracted. It can be a variable that stores the JSON object or a direct value representing the JSON object. -key -Type: value -Description: The key whose value is to be extracted from the JSON object. It must be a value that represents the key within the JSON object. -TargetVariable -Type: var -Description: The variable where the extracted value will be stored. It must be a variable that will receive the value associated with the specified key in the JSON object. -Command Flow -Access the JSON Object: Access the JSON object stored in the SourceVariable. -Extract the Value: Retrieve the value associated with the key within the JSON object. -Store the Result: Save the extracted value in the variable specified by TargetVariable. -Usage Example -Suppose the JSON object in jsonData is "name": "Alice", "age": 30 and you want to extract the value associated with the key "name". - -// Variable definitions -jsonData = {"name": "Alice", "age": 30} -nameValue = '' - -// Call the command to extract the value associated with the key "name" -variableFromJSON(jsonData, "name", nameValue) - -// Return the extracted value through addResult -addResult(nameValue) -Since the value associated with the key "name" in the JSON object jsonData is "Alice", the variableFromJSON() command will extract "Alice" and store it in the variable nameValue. The nameValue variable will be returned through addResult(nameValue), resulting in the following output: - -"Alice" -AddVariableToJSON() -The AddVariableToJSON() command adds a new key and its corresponding value to a JSON object and stores the result in a target variable. This command is useful for updating a JSON object with new key-value pairs. - -Parameters -Key -Type: variable -Description: The key to be added to the JSON object. It must be a variable that stores the key to be added. -Value -Type: variable -Description: The value associated with the key to be added to the JSON object. It must be a variable that stores the corresponding value. -TargetVariable -Type: variable -Description: The variable where the updated JSON object will be stored. It must be a variable that will receive the JSON object with the new key and its added value. -Command Flow -Access the JSON Object: Access the JSON object stored in the TargetVariable. -Add the Key and Value: Add the new key and its associated value to the JSON object. -Store the Result: Save the updated JSON object in the variable specified by TargetVariable. -Usage Example -Suppose the initial JSON object in jsonData is "name": "Alice", "age": 30, and you want to add a new key "email" with the value "alice@example.com". - -// Variable definitions -jsonData = {"name": "Alice", "age": 30} -newKey = "email" -newValue = "alice@example.com" - -// Call the command to add the new key and value to the JSON object -AddVariableToJSON(newKey, newValue, jsonData) - -// Return the updated JSON object through addResult -addResult(jsonData) -This updated JSON object will be stored in the variable jsonData and will be returned through addResult(jsonData), resulting in the following output: - -{ - "name": "Alice", - "age": 30, - "email": "alice@example.com" -} -variableToList() -The variableToList() command converts an element into a list that contains only that element and stores the resulting list in a target variable. This command is useful to ensure that a single value is handled as a list in subsequent processing. - -Parameters -element -Type: variable -Description: The variable that contains the element to be converted into a list. It can be any type of value that you want to include as the only item in the list. -TargetVariable -Type: variable -Description: The variable in which the resulting list will be stored. It must be a variable that will receive the list with the included element. -Command Flow -Access the Element: Access the element stored in the element variable. -Create the List: Create a list that contains only the provided element. -Store the Result: Save the resulting list in the variable specified by TargetVariable. -Usage Example -Suppose the element in myElement is "apple" and you want to convert it into a list. - -// Variable definitions -myElement = "apple" -myList = [] - -// Call the command to convert the element into a list -variableToList(myElement, myList) - -// Return the resulting list through addResult -addResult(myList) -Since myElement is "apple", the variableToList() command will convert this element into a list with a single item: ["apple"]. This list will be stored in the variable myList, and myList will be returned through addResult(myList), resulting in the following output: - -["apple"] -addParam() -The addParam() command retrieves the value associated with a specific key from the query string of the current request and assigns this value to a target variable. This command is useful for extracting values from query parameters in an HTTP request and storing them in variables for processing. - -Parameters -param -Type: value -Description: The key of the query string whose value you want to retrieve. It should be a value that represents the key in the query string. -variable -Type: var -Description: The variable in which the retrieved value from the query string will be stored. It must be a variable that will receive the value associated with the specified key. -Command Flow -Retrieve the Value: Access the value associated with the param key from the query string of the current request. -Assign the Value: Assign the retrieved value to the variable specified by variable. -Usage Example -Suppose the query string of the current request is ?user=alice&age=30, and you want to retrieve the value associated with the key "user". - -// Variable definitions -userName = '' - -// Call the command to retrieve the value for the "user" key and assign it to the variable -addParam("user", userName) - -// Return the retrieved value through addResult -addResult(userName) -Given the query string ?user=alice&age=30, the addParam() command will retrieve the value "alice" associated with the key "user" and store it in the userName variable. The userName variable will be returned through addResult(userName), resulting in the following output: - -"alice" -addResult() -The addResult() command is used to return the content of a variable as part of the command or function response. It is the way to present results or processed data from commands and operations performed in the language. - -Parameters -variable -Type: var -Description: The variable whose content is to be returned as the result. It should be a variable that contains the value or data you want to include in the response. -Command Flow -Access the Content: Access the content of the variable provided as a parameter. -Return the Result: Include the content of the variable in the final response. -Example Usage -Suppose we have performed an operation and want to return the result stored in the result variable. - -// Define the variable with the result of an operation -result = "Operation completed successfully." - -// Call the command to return the content of the variable -addResult(result) -In this example, the addResult(result) command will return the content of the result variable, which is "Operation completed successfully.". This content will be presented as part of the response. - -Note -The addResult() command is the primary mechanism for returning information and results in the language. Make sure that the variable passed to the command contains the desired data or result before calling addResult(). -RequestPost() -The RequestPost() command performs an HTTP POST request to a specified URL, sending a query string, headers, and a request body, and stores the result of the request in a destination variable. This command is useful for sending data to a server and handling the responses from the request. - -Parameters -url -Type: variable -Description: The URL to which the POST request will be sent. It should be a variable containing the address of the resource to which the request is to be made. -querystring -Type: variable -Description: The query string that will be appended to the URL. It should be a variable containing the query parameters in string format. -headers -Type: variable -Description: The HTTP headers that will be included in the POST request. It should be a variable containing a dictionary of headers and their values. -body -Type: variable -Description: The body of the POST request that will be sent to the server. It should be a variable containing the data to be sent in the request. -o_result -Type: variable -Description: The variable in which the result of the POST request will be stored. It should be a variable that will receive the server's response. -Command Flow -Build the Request: Uses the provided URL, query string, headers, and body to construct the POST request. -Send the Request: Sends the POST request to the specified server. -Store the Result: Saves the server's response in the variable specified by o_result. -Example Usage -Suppose you want to send a POST request to https://api.example.com/data, with a query string userId=123, headers including Content-Type: application/json, and a body with JSON data. - -// Define variables -url = "https://api.example.com/data" -querystring = "userId=123" -headers = {"Content-Type": "application/json"} -body = '{"name": "Alice", "age": 30}' -response = '' - -// Call the command to perform the POST request -RequestPost(url, querystring, headers, body, response) - -// Return the request result via addResult -addResult(response) -In this example, the RequestPost() command will send a POST request to https://api.example.com/data with the provided query string, headers, and body. The server's response will be stored in the response variable, and this variable will be returned via addResult(response). The result of the request will be included in the final response. - -ormCreateTable() -The ormCreateTable() command creates a new table in a database using the specified ORM (Object-Relational Mapping). This command defines the columns of the table and their data types, and stores a reference to the created table in a destination variable. - -Parameters -fields -Type: value -Description: A string containing the names of the table columns, separated by commas. Each column name should correspond to a field in the table. -fieldsType -Type: value -Description: A string containing the data types for each column, separated by commas. The data types should be in the same order as the column names in fields. -dbaseName -Type: value -Description: The name of the database where the table will be created. It should be a string indicating the target database. -varTarget -Type: variable -Description: The variable in which the reference to the created table will be stored. It should be a variable that will receive the reference to the new table. -Command Flow -Define the Table: Uses the column names (fields) and their data types (fieldsType) to define the structure of the new table. -Create the Table: Creates the table in the database specified by dbaseName using the provided definition. -Store the Result: Saves the reference to the created table in the variable specified by varTarget. -Example Usage -Suppose you want to create a table called users in a database called myDatabase, with two columns: username of type VARCHAR and age of type INTEGER. - -// Define variables -fields = "username,age" -fieldsType = "VARCHAR,INTEGER" -dbaseName = "myDatabase" -tableReference = '' - -// Call the command to create the table -ormCreateTable(fields, fieldsType, dbaseName, tableReference) - -// Return the reference to the created table via addResult -addResult(tableReference) -In this example, the ormCreateTable() command will create a table in the myDatabase database with the specified columns and data types. The reference to the new table will be stored in the tableReference variable, and this variable will be returned via addResult(tableReference). The output will include the reference to the created table. - -ormCheckTable() -The ormCheckTable() command checks for the existence of a table in a specific database and stores the result in a destination variable. This command is useful for verifying if a table already exists before attempting further operations on it. - -Parameters -dbaseName -Type: value -Description: The name of the database in which the table's existence should be checked. It should be a string indicating the database to check. -varTarget -Type: variable -Description: The variable in which the result of the check will be stored. It should be a variable that will receive a value indicating whether the table exists or not. -Command Flow -Check Existence: Accesses the database specified by dbaseName to verify if the requested table exists. -Store the Result: Saves the result of the check in the variable specified by varTarget. The stored value will indicate whether the table exists (True or False). -Example Usage -Suppose you want to check if a table called users exists in a database called myDatabase. - -// Define variables -dbaseName = "myDatabase" -tableExists = '' - -// Call the command to check the existence of the table -ormCheckTable(dbaseName, tableExists) - -// Return the result of the check via addResult -addResult(tableExists) -In this example, the ormCheckTable() command will check for the existence of the users table in the myDatabase database. The result of the check (whether the table exists or not) will be stored in the tableExists variable, and this variable will be returned via addResult(tableExists). The output will reflect whether the table exists (True) or not (False). - -ormAccessUpdate() -The ormAccessUpdate() command updates records in a database table based on the provided selection criteria. This command modifies the values of specified fields in a database using the corresponding values from variables. - -Parameters -fields -Type: variable -Description: A string containing the names of the fields to be updated. The field names should be separated by commas. -fieldsValuesVariables -Type: variable -Description: A string containing the names of the variables holding the new values for the specified fields. The variable names should be separated by commas, in the same order as the fields in fields. -dbase -Type: variable -Description: The name of the database where the table to be updated is located. It should be a variable containing the name of the database. -selector -Type: variable -Description: A condition to select the records to be updated. It should be a string specifying the selection criteria in SQL format, such as id = 1. -varTarget -Type: variable -Description: The variable in which the result of the update operation will be stored. It should be a variable that will receive a value indicating whether the update was successful or not. -Command Flow -Define Fields and Values: Uses the field names (fields) and the variables with the values to be updated (fieldsValuesVariables) to define which records should be modified and with what data. -Select Records: Uses the condition provided in selector to identify the records to be updated. -Update the Database: Performs the update in the database specified by dbase, applying the changes to the records that meet the selector condition. -Store the Result: Saves the result of the update operation in the variable specified by varTarget. The stored value will indicate whether the update was successful (True) or failed (False). -Example Usage -Suppose you want to update the age field to 31 for the user with id equal to 1 in a database called myDatabase. - -// Define variables -fields = "age" -fieldsValuesVariables = "newAge" -dbase = "myDatabase" -selector = "id = 1" -updateSuccess = '' - -// Define the variable holding the new value -newAge = 31 - -// Call the command to update the record -ormAccessUpdate(fields, fieldsValuesVariables, dbase, selector, updateSuccess) - -// Return the result of the update via addResult -addResult(updateSuccess) -In this example, the ormAccessUpdate() command will update the age field in the myDatabase database for the record where id = 1. The new value for age is 31, stored in the newAge variable. The updateSuccess variable will store the result of the operation (whether it was successful or not), and this variable will be returned via addResult(updateSuccess). - -ormAccessSelect() -The ormAccessSelect() command retrieves records from a table in a database based on the provided selection criteria. This command selects the desired fields and stores the results in a target variable. - -Parameters -fields -Type: variable -Description: A string containing the names of the fields to be retrieved. The field names should be separated by commas. -dbase -Type: variable -Description: The name of the database from which records should be retrieved. It must be a variable containing the name of the database. -selector -Type: variable -Description: A condition to select the records to be retrieved. It must be a string specifying the selection criteria in SQL format, such as id = 1. -varTarget -Type: variable -Description: The variable in which the query results will be stored. It must be a variable that will receive a list of dictionaries, each representing a retrieved record. -Command Flow -Defining the Fields: Use the field names (fields) to specify which data should be retrieved. -Selecting Records: Use the condition provided in selector to identify which records should be selected from the database. -Retrieving Data: Access the database specified by dbase and retrieve the records that meet the selector condition, including only the specified fields. -Storing the Result: Save the query results in the variable specified by varTarget. The stored value will be a list of dictionaries, where each dictionary represents a retrieved record with the requested fields. -Example Usage -Suppose you want to retrieve the username field for all users where age is greater than 25 from a database called myDatabase. - -// Define variables -fields = "username" -dbase = "myDatabase" -selector = "age > 25" -usersList = '' - -// Call the command to retrieve the records -ormAccessSelect(fields, dbase, selector, usersList) - -// Return the query results via addResult -addResult(usersList) -In this example, the ormAccessSelect() command will retrieve the username field for all users in the myDatabase database where age is greater than 25. The results will be stored in the usersList variable, and this variable will be returned via addResult(usersList). The output will be a list of dictionaries, each representing a user whose username has been retrieved. - -ormAccessInsert() -The ormAccessInsert() command inserts a new record into a database table using the provided values for the fields. This command defines the fields and their corresponding values, and stores the result of the operation in a target variable. - -Parameters -fields -Type: variable -Description: A string containing the names of the fields into which the values will be inserted. The field names should be separated by commas. -fieldsValuesVariables -Type: variable -Description: A string containing the names of the variables that hold the values to be inserted into the specified fields. The variable names should be separated by commas, in the same order as the fields in fields. -dbase -Type: variable -Description: The name of the database where the table into which the new record should be inserted is located. It must be a variable containing the name of the database. -varTarget -Type: variable -Description: The variable in which the result of the insertion operation will be stored. It must be a variable that will receive a value indicating whether the insertion was successful or not. -Command Flow -Defining the Fields and Values: Use the field names (fields) and the variables with the values to be inserted (fieldsValuesVariables) to define what data should be inserted. -Inserting into the Database: Perform the insertion of the new record into the database specified by dbase, using the provided values. -Storing the Result: Save the result of the insertion operation in the variable specified by varTarget. The stored value will indicate whether the insertion was successful (True) or failed (False). -Example Usage -Suppose you want to insert a new record into a table called users in a database called myDatabase, with values for username and age coming from the variables newUsername and newAge. - -// Define variables -fields = "username,age" -fieldsValuesVariables = "newUsername,newAge" -dbase = "myDatabase" -insertSuccess = '' - -// Define the variables with the new values -newUsername = "Alice" -newAge = 31 - -// Call the command to insert the new record -ormAccessInsert(fields, fieldsValuesVariables, dbase, insertSuccess) - -// Return the result of the insertion via addResult -addResult(insertSuccess) -In this example, the ormAccessInsert() command will insert a new record into the myDatabase database in the users table. The values for username and age are provided by the newUsername and newAge variables. The insertSuccess variable will store the result of the operation (whether it was successful or not), and this variable will be returned via addResult(insertSuccess). The output will reflect whether the insertion was successful (True) or failed (False). - -ormAI() -The ormAI() command uses an artificial intelligence model to convert a natural language query into an SQL statement, which is then executed against a database. This command processes a natural language query to generate an SQL statement that is executed on the table specified in the source parameter, and stores the result in a target variable. - -Parameters -prompt -Type: variable -Description: A string in natural language that describes the query to be made. For example, "get the value of the row with id 5". -source -Type: variable -Description: The name of the table on which the generated query should be executed. It must be a variable containing the name of the table in the database. -TargetVariable -Type: variable -Description: The variable in which the result of the query will be stored. It must be a variable that will receive the result of the generated and executed SQL query. -Command Flow -Generating SQL Query: Use the artificial intelligence model to convert the prompt into an SQL statement. For example, if the prompt is "get the value of the row with id 5", the AI will generate the SQL query SELECT * FROM source WHERE id = 5;. -Executing the Query: Execute the generated SQL statement on the table specified in source. -Storing the Result: Save the result of the query execution in the variable specified by TargetVariable. The result will be the dataset retrieved by the executed SQL statement. -Example Usage -Suppose you want to retrieve all the data from the row with id equal to 5 from a table called users. - -// Define variables -prompt = "get the value of the row with id 5" -source = "users" -queryResult = '' - -// Call the command to process the query -ormAI(prompt, source, queryResult) - -// Return the query result via addResult -addResult(queryResult) -In this example, the ormAI() command will convert the prompt into an SQL query: SELECT * FROM users WHERE id = 5;. This query will be executed on the users table, and the results will be stored in the queryResult variable. The queryResult variable will be returned via addResult(queryResult). The output will be the dataset retrieved by the executed SQL statement. - -functionAI() -The functionAI() command uses an artificial intelligence model to convert a natural language description of a function or process into a code implementation, which is then executed and returns the result. This command converts a description provided in prompt into a function that operates on the data of the table specified in source, and stores the result in a target variable. - -Parameters -prompt -Type: variable -Description: A string in natural language that describes the process or function to be executed. For example, "calculate the average of the salary column". -source -Type: variable -Description: The name of the table on which the generated function should be executed. It must be a variable containing the name of the table in the database. -TargetVariable -Type: variable -Description: The variable in which the result of the executed function or process will be stored. It must be a variable that will receive the result of the generated and executed code. -Command Flow -Generating Code: Use the artificial intelligence model to convert the prompt into a code implementation. For example, if the prompt is "calculate the average of the salary column", the AI will generate the code necessary to calculate the average of that column. -Executing the Code: Execute the generated code on the table specified in source. -Storing the Result: Save the result of the code execution in the variable specified by TargetVariable. The result will be the calculated value or the dataset produced by the executed code. -Example Usage -Suppose you want to calculate the average of the salary column in a table called employees. - -// Define variables -prompt = "calculate the average of the salary column" -source = "employees" -averageSalary = '' - -// Call the command to process the function -functionAI(prompt, source, averageSalary) - -// Return the result of the function via addResult -addResult(averageSalary) -In this example, the functionAI() command will convert the prompt into a code implementation to calculate the average of the salary column in the employees table. The result of the calculation will be stored in the averageSalary variable, and this variable will be returned via addResult(averageSalary). The output will be the calculated average of the salary column. diff --git a/ingestion/docs/17_Architecture_memory_foundations.txt b/ingestion/docs/17_Architecture_memory_foundations.txt deleted file mode 100644 index 91aef71..0000000 --- a/ingestion/docs/17_Architecture_memory_foundations.txt +++ /dev/null @@ -1,140 +0,0 @@ -SECTION I: Architecture, Memory, and Foundations - -This section establishes the foundations of how AVAP manages service logic and in-memory data manipulation. Unlike conventional interpreted languages, AVAP uses a hybrid evaluation engine that enables the combination of declarative commands with dynamic expressions. - -1.1 Endpoint Registration (registerEndpoint) - -The registerEndpoint command is the atomic configuration unit. It acts as the bridge between the network layer (HTTP) and the application code. - -Interface -registerEndpoint(path, method, middleware, description, handler, output) -Parameter Specification - -path (String): -Defines the URL route. Supports static routes and is designed for future implementations of route parameters (variable segments). - -method (String): -Specifies the allowed HTTP verb (GET, POST, PUT, DELETE). The server will automatically reject any request that does not match this method (Error 405). - -middleware (List): -A list of functions executed sequentially before the handler. Ideal for JWT token validation or maintenance checks. If any middleware function fails, execution stops before reaching the main business logic. - -description (String): -Metadata for automatic documentation generation (Swagger/OpenAPI). It does not affect execution but is critical in the development lifecycle. - -handler (Function): -The logical entry point. This is the name of the main function where the business logic resides. - -output (Variable): -Defines the “master” variable that the engine will automatically return at the end of execution, unless additional results are specified via addResult. - -1.2 The Variable Assignment Engine (Dynamic Assignment) - -AVAP allows direct assignment syntax using the = symbol, providing flexibility similar to languages such as Python, but under strict contextual control. - -Internal Mechanics: The eval Process - -When the interpreter encounters an instruction of the form variable = expression, it triggers a three-step process: - -Cleanup and Tokenization: -The engine determines whether the expression contains references to existing variables (using $), method calls, or literals. - -Expression Evaluation: -Operations are resolved in real time. This enables: - -Boolean Logic: -is_valid = (age > 18 and has_permission == True) - -Arithmetic: -tax = subtotal * 0.21 - -String Formatting: -query = "SELECT * FROM users WHERE id = %s" % retrieved_id - -Object and Property Resolution: -Allows deep access to complex structures returned by database connectors or APIs: -customer_email = user_list[0].profile.email - -Memory Impact - -Unlike addVar, dynamic assignment can transform the variable’s type at runtime (Mutable Type System). If a variable originally contained a number and is later assigned a string after evaluation, the engine automatically updates the variable’s metadata. - -1.3 State Initialization and References (addVar) - -addVar is the fundamental command for defining the global script state. - -Interface -addVar(targetVarName, varValue) -Advanced Behavior - -Intelligent Automatic Typing: -The engine inspects varValue. If it detects a numeric format (even if provided as a string from configuration), it internally converts it to int or float. It supports both commas and periods interchangeably, normalizing the value for mathematical operations. - -The $ Reference Prefix: -This is the dereferencing operator. - -addVar(copy, $original) - -Instructs the engine not to assign the literal string "$original", but instead to look up the current value of the variable original in the symbol table and copy it. - -Scope: -Variables created with addVar in the main body of the script are considered Request Session Variables. This means they persist throughout the lifecycle of that specific API call execution, but remain isolated from other concurrent requests to ensure data safety (thread-safety). - -Syntax Summary -Syntax Usage Description -name = "John" Direct Assignment Creates a simple string. -total = $price * 1.10 Dynamic Evaluation Uses the value of price in a calculation and stores the result. -addVar(status, 200) Initialization Explicit method to ensure creation in the global context. -data = res[0].info Object Access Extracts a specific property from a JSON object or DB result. - -Examples - -1. Hello World - -(State Initialization – Section 1.3) - -addVar(message, "Hello world from AVAP") -addResult(message) - -2. Mathematical Assignment - -(Dynamic Assignment & Arithmetic Evaluation – Section 1.2) - -subtotal = 150.50 -tax = subtotal * 0.21 -total = subtotal + tax -addResult(total) - -3. Dynamic String Concatenation - -(Expression Evaluation – String Formatting – Section 1.2) - -name = "System" -log = "Event registered by: %s" % name -addResult(log) - -4. Value Reference ($) - -(State Initialization & Dereferencing – Section 1.3) - -addVar(base, 1000) -addVar(copy, $base) // copy takes the value 1000, not the string "$base" -addResult(copy) - -5. Boolean Assignment - -(Boolean Expression Evaluation – Section 1.2) - -level = 5 -is_admin = level >= 10 -addResult(is_admin) // Returns False - -6. Multiple Response (JSON Construction) - -(Global State Initialization – Section 1.3) - -addVar(code, 200) -addVar(status, "Success") -addResult(code) -addResult(status) -// Result: {"code": 200, "status": "Success"} \ No newline at end of file diff --git a/ingestion/docs/18_Input_output_management.txt b/ingestion/docs/18_Input_output_management.txt deleted file mode 100644 index cbebdd4..0000000 --- a/ingestion/docs/18_Input_output_management.txt +++ /dev/null @@ -1,151 +0,0 @@ -SECTION II: Input and Output (I/O) Management - -This section describes the mechanisms AVAP uses for external data ingestion, parameter integrity validation, and construction of the response payload delivered to the final client. - -2.1 Intelligent Parameter Capture (addParam) - -The addParam command is responsible for extracting information from the incoming HTTP request. Its design is source-agnostic, simplifying development by not requiring the programmer to specify where the data originates. - -Interface -addParam(param_name, target_variable) -Priority Mechanism (Cascading Search) - -When addParam is invoked, the AVAP engine inspects the request in the following hierarchical order: - -Query Arguments: -Parameters present in the URL (e.g., ?id=123). - -JSON Body: -If the request includes Content-Type: application/json, the engine searches for the key inside the JSON object. - -Form Data / Body Arguments: -Data submitted via standard forms (x-www-form-urlencoded). - -Technical Behavior - -Automatic Decoding: -The engine attempts to decode values into ASCII/UTF-8 format, eliminating encoding inconsistencies. - -Null Handling: -If the requested parameter does not exist in any source, the target variable is initialized as None. This enables subsequent security checks using if blocks. - -2.2 Collection Validation and Counting (getListLen) - -To ensure API robustness, it is necessary to validate the volume of received information. getListLen acts as AVAP’s volume inspector. - -Interface -getListLen(source_variable, target_variable) -I/O Applications - -Parameter Validation: -Counts how many elements are contained in a variable populated by addParam or getQueryParamList. - -Loop Safety: -Before initiating a startLoop, it is recommended to use getListLen to define the upper bound of the iteration, preventing overflow errors. - -Database Results: -After a query, determines whether records were retrieved (length > 0) or if the result set is empty. - -2.3 Multiple List Capture (getQueryParamList) - -There are scenarios where the same parameter is sent multiple times (e.g., search filters such as ?color=red&color=blue). AVAP manages this through specialized list-based capture. - -Interface -getQueryParamList(param_name, target_list_variable) -Effect - -Transforms all occurrences of param_name into a structured list within target_list_variable. If only one value is present, a single-element list is created. This ensures downstream logic can always treat the data as a collection, preventing type errors. - -2.4 Response Construction (addResult) - -The addResult command registers which variables will be included in the response body. AVAP dynamically constructs an output JSON object based on calls to this command. - -Interface -addResult(source_variable) -Advanced Features - -Promise Handling: -If the variable passed to addResult is the result of an operation initiated with go_async, the engine automatically marks that field as "promised" in the response or returns the thread ID if synchronization has not completed. - -String Cleanup: -The engine detects redundant quotation marks (resulting from prior evaluations) and normalizes them to ensure the resulting JSON is valid and clean. - -Multi-Registration: -Multiple calls to addResult are allowed. Each call adds a new key to the output JSON object. By default, the JSON key matches the variable name, unless a custom key is defined in the engine. - -2.5 HTTP Status Control (_status) - -AVAP uses a reserved system variable to communicate with the underlying web server and define the success or error code of the transaction. - -Using _status - -By assigning a numeric value to the _status variable (using addVar or direct assignment), the programmer defines the HTTP response code. - -Code Common Usage in AVAP -200 Successful operation (default value). -201 Resource successfully created. -400 Parameter validation error (Bad Request). -401 Authentication failure. -500 Internal error caught inside an exception block. - -Integrated Example of Section II -// Capture input -addParam("user_id", id) - -// Validate presence -if(id, None, '==') - addVar(_status, 400) - addVar(error, "User ID is required") - addResult(error) - return() -end() - -// If execution reaches here, respond with success -addVar(_status, 200) -addResult(id) - -Examples - -1. ID Capture - -(Input Ingestion – Section 2.1) - -addParam("client_id", internal_id) -// If the client sends ?client_id=500, internal_id will be 500 -addResult(internal_id) - -2. Parameter Counter - -(Collection Validation – Section 2.2) - -addParam("data_list", my_list) -getListLen(my_list, count) -addResult(count) - -3. Null Validation - -(Input Validation & HTTP Status Control – Sections 2.1 & 2.5) - -addParam("api_key", key) -if(key, None, "==") - addVar(_status, 403) - addVar(error, "Access denied: missing API KEY") - addResult(error) -end() - -4. Multiple List Capture - -(Multi-Value Query Capture – Section 2.3) - -getQueryParamList("emails", email_list) -addResult(email_list) - -5. Multiple Response (JSON Construction) - -(Response Construction – Section 2.4) - -addVar(code, 200) -addVar(status, "Success") -addResult(code) -addResult(status) -// Result: {"code": 200, "status": "Success"} \ No newline at end of file diff --git a/ingestion/docs/19_Control_logic_decision_structures.txt b/ingestion/docs/19_Control_logic_decision_structures.txt deleted file mode 100644 index da98fe0..0000000 --- a/ingestion/docs/19_Control_logic_decision_structures.txt +++ /dev/null @@ -1,192 +0,0 @@ -SECTION III: Control Logic and Decision Structures - -This section details how AVAP manages execution flow. The language uses explicitly closed block structures that enable clear sequential reading, simplifying the debugging of complex APIs. - -3.1 The Conditional Block (if / else / end) - -The if structure in AVAP is a versatile tool that allows atomic comparisons or the evaluation of complex logical expressions processed by the dynamic evaluation engine. - -Standard Interface -if(variable_A, value_B, operator) -Available Operators -Operator Description Example -= Strict equality (or numeric equivalence). if(role, "admin", "=") -!= Inequality. if(status, 200, "!=") -> / < Numeric magnitude comparison. if(age, 18, ">") -in Checks whether an element belongs to a list or string. if(user, blacklist, "in") -Complex Expression Evaluation - -AVAP allows omission of comparison parameters to evaluate a complete logical expression directly in the third parameter. - -Example: - -if(None, None, "age >= 18 and balance > 100") -Block Closure Structure - -An if block may include an optional else() block and must always terminate with the end() command. - -3.2 Iterations and Loops (startLoop / endLoop) - -For collection processing (such as database rows or parameter lists), AVAP implements an index-controlled loop structure. - -Interface -startLoop(counter, start, end) -Execution Mechanics - -Initialization: -The engine creates the counter variable with the start value. - -Increment: -On each iteration, the counter automatically increases by 1. - -Exit Condition: -The loop terminates when the counter exceeds the end value. - -Practical Example: List Processing -// Retrieve the length of a list captured in Section II -getListLen(received_items, total) - -startLoop(i, 0, total) - current_item = received_items[i] - // Processing logic for each item... -endLoop() -3.3 Error Handling and Robustness (try / exception) - -AVAP is designed for production environments where external failures (database timeouts, third-party API outages) are expected realities. The try block allows capturing such events without stopping the server. - -Interface -try ... exception(error_variable) ... end() -Technical Operation - -try Block: -The engine attempts to execute the contained instructions. If a critical failure occurs, execution of that block stops immediately. - -exception Block: -If an error is detected, control passes to this block. The error_variable is automatically populated with a string describing the failure (simplified stack trace). - -end() Block: -Closes the structure and allows the script to continue normal execution after error handling. - -Connector Safety Example -try - // Attempt a query to an external connector (Section V) - result = db.query("SELECT * FROM payments") -exception(failure_detail) - // If it fails, log the error and notify - addVar(_status, 500) - addVar(message, "Persistence error: %s" % failure_detail) - addResult(message) -end() -3.4 Early Exit Control (return) - -The return() command is a control instruction that immediately terminates execution of the current context (either a function or the main script). - -If used inside a function, it returns control (and optionally a value) to the caller. - -If used in the main flow, it terminates API execution and triggers automatic delivery of the JSON response constructed up to that point. - -Examples - -1. Simple Comparison - -Code snippet - -addParam("lang", l) -if(l, "es", "=") - addVar(msg, "Hello") -end() -addResult(msg) - -2. Standard Else - -Code snippet - -if(balance, 0, ">") - allow = True -else() - allow = False -end() -addResult(allow) - -3. Complex Expression (Dynamic Evaluation) - -Code snippet - -if(None, None, "user_type == 'VIP' or purchases > 100") - addVar(discount, 0.20) -end() -addResult(discount) - -4. Loop from 1 to 10 (ID Generation) - -Code snippet - -startLoop(i, 1, 10) - AddvariableToJSON("item_${i}", "generated_value", my_json) -endLoop() -addResult(my_json) - -5. HTTP Request Try-Catch - -Code snippet - -try - RequestGet("https://api.test.com/data", 0, 0, response) -exception(e) - addVar(error_trace, "Connection failure: %s" % e) - addResult(error_trace) -end() - -6. Proper Loop Exit (Using Control Variable) - -Code snippet - -found = False -startLoop(i, 1, 10) - if(i, 5, "==") - found = True - // In AVAP, to exit you can force the index beyond the limit - i = 11 - end() -endLoop() -addResult(found) - -7. 'in' Validation (Membership Check) - -Code snippet - -addParam("role", r) -if(r, ["admin", "editor", "root"], "in") - access = True -end() -addResult(access) - -8. Loop Over Data Length - -Code snippet - -getListLen(records, total) -startLoop(idx, 0, total) - current = records[idx] - // processing logic -endLoop() - -9. Inequality If - -Code snippet - -if(new_password, old_password, "!=") - addVar(change, "Password updated") -end() -addResult(change) - -10. Critical SQL Error Handling - -Code snippet - -try - ormDirect("UPDATE nonexistent_table SET a=1", res) -exception(e) - addVar(_status, 500) - addResult("Database error") -end() \ No newline at end of file diff --git a/ingestion/docs/1_Introduction.txt b/ingestion/docs/1_Introduction.txt deleted file mode 100644 index 42bd52a..0000000 --- a/ingestion/docs/1_Introduction.txt +++ /dev/null @@ -1,48 +0,0 @@ -Introduction -Discovering a New Programming Language -Welcome to the AVAP book, where you will delve into the fascinating world of an innovative and powerful programming language: AVAP™. In these pages, we will explore together the fundamental concepts, syntax, and unique features of AVAP™, and prepare you to master this new language and harness its full potential in your software development projects. - -Discovering AVAP -AVAP™ is much more than just a programming language; it is a versatile tool designed to enhance creativity and efficiency in software development. With its clear and expressive syntax, AVAP™ allows developers to write code more quickly and concisely, without sacrificing the power and flexibility needed to create robust and scalable applications. - -What Makes AVAP Special? -AVAP™ stands out due to several distinctive features that make it unique in the programming world: - -Integrated Virtualization: AVAP™ is designed from the ground up with the concept of virtualization in mind. Every aspect of the language is optimized to work in virtual environments, allowing developers to create immersive and scalable experiences. -Powerful APIs: AVAP™ provides a comprehensive set of tools for interacting with external APIs and web services, making it easier to integrate advanced functionalities into your applications. -Enhanced Productivity: With an intuitive syntax and advanced abstraction features, AVAP™ allows you to write less code to achieve more, thereby increasing your productivity and accelerating development time. -What Will You Find in This Book? -In this book, we will guide you through the basic and advanced concepts of AVAP™, providing practical examples, useful tips, and challenging exercises to help you master the language and become an expert AVAP™ developer. From installing and configuring the development environment to creating complete applications, this book will accompany you every step of the way towards mastering AVAP™. - -Are You Ready to Get Started? -Then let’s not wait any longer! Dive into the pages of this book and get ready to embark on an exciting journey towards mastering AVAP™. Whether you are an experienced programmer looking for new tools or a curious beginner in the world of programming, this book has something for you. Let’s explore the fascinating world of AVAP™ together! - -The Virtuality Attribute in AVAP™ -AVAP™ (Advance Virtual API Programming) is a dynamic programming language distinguished by its virtuality attribute, which enables the development of virtual APIs in a dynamic and flexible manner. This attribute is based on the fact that the language specifications do not reside in the language interpreter, allowing the final code to be constructed in real-time by the language server. - -1.1 Virtuality Principle in AVAP -The principle of virtuality in AVAP™ is based on several key aspects: - -1.1.1 Language Specifications Decoupled from the Interpreter -In AVAP™, language specifications are not compiled into the core of the language nor do they reside in the interpreter. This means that the interpreter is not tied to a specific implementation of the language, providing great flexibility and adaptability in code interpretation. - -1.1.2 Dynamic Code Construction in Real-Time -Thanks to the virtuality attribute, AVAP™ allows for dynamic code construction in real-time. This means that the final code to be interpreted by the language server can vary and mutate according to current needs, without the need for recompilation or redistribution. - -1.1.3 Development of Dynamic Virtual APIs -The virtuality attribute in AVAP™ enables the development of virtual APIs in a dynamic manner. This allows APIs to evolve, improve, and adapt to new security or functional needs in real-time, without affecting the clients utilizing the API endpoint. - -1.2 Benefits of the Virtuality Attribute -Flexibility: The ability to construct code in real-time provides significant flexibility in API development and management. -Agility: The capacity to adapt and evolve without the need for precompilation or distributed updates allows for greater agility in software development. -Simplified Maintenance: The development of dynamic virtual APIs simplifies the maintenance process, as changes do not need to be made to clients consuming those APIs. -1.3 Interaction with Artificial Intelligence -One of the most innovative features of this language is its integration with artificial intelligence through OpenAI. This integration allows the language to automatically generate the necessary results through an interface with OpenAI once the programmer has a clear solution to a problem. This functionality not only speeds up development but also reduces the margin of error and improves efficiency. - -1.4 Access to Databases -The language also includes the capability to interact with databases using natural language, supported by artificial intelligence, currently version XXXXX through OpenAI. This feature allows for complex queries and data manipulation without deep knowledge of SQL, simplifying development and improving accessibility for programmers of all levels. - -With this guide, we hope to provide you with all the necessary information to make the most of this dynamic language's capabilities. From variable management to automated result generation and simplified database access, this language is designed to transform the way you develop APIs. - -1.5 Conclusions -The virtuality attribute in AVAP™ represents an innovative approach to virtual API development, allowing for greater flexibility, agility, and simplification in the software development and maintenance process. By decoupling language specifications from the interpreter and enabling dynamic code construction in real-time, AVAP™ offers a new paradigm in API design and management. diff --git a/ingestion/docs/20_Concurrency_asynchrony.txt b/ingestion/docs/20_Concurrency_asynchrony.txt deleted file mode 100644 index 4ef0dce..0000000 --- a/ingestion/docs/20_Concurrency_asynchrony.txt +++ /dev/null @@ -1,179 +0,0 @@ -SECTION IV: Concurrency and Asynchrony - -AVAP implements a thread-based concurrency model that enables fire-and-forget execution or parallel execution with later synchronization. This is essential for tasks such as email dispatching, log processing, or querying multiple external APIs simultaneously. - -4.1 Launching Background Processes (go_async) - -The go_async command extracts a block of code from the main sequential flow and places it into a parallel execution queue. - -Interface -go_async(thread_id) -Execution Mechanics - -Identification: -The programmer assigns a thread_id (a string or variable) to reference the process later. - -Forking: -When invoked, the AVAP engine creates a new native thread. The main flow immediately continues to the next instruction after the go_async block. - -Context Isolation: -The asynchronous thread inherits a snapshot copy of the variable state at the moment of invocation, allowing it to operate safely without interfering with the main thread. - -Example: Immediate Response with Long-Running Process -addParam("email", destination) - -go_async("email_dispatch") - // This block takes 5 seconds, but the API does not wait - mail_service.send(destination, "Welcome to AVAP") -end() - -addVar(msg, "Your email is being processed in the background") -addResult(msg) -// The client receives the response in milliseconds -4.2 Result Synchronization (gather) - -When the main flow requires data generated by an asynchronous thread to proceed, the gather synchronization mechanism is used. - -Interface -gather(thread_id, timeout) -Specifications - -thread_id: -The identifier used in the go_async command. - -timeout (Seconds): -Maximum time the main thread will wait. If the asynchronous thread does not finish within this period, AVAP raises an exception that can be caught (see Section III). - -Technical Behavior - -Controlled Blocking: -The main thread is suspended until the specified thread_id completes. - -State Recovery: -Once synchronized, any variables modified within the asynchronous thread are merged back into the main thread’s context. - -4.3 Optimized Parallel Execution (Fan-Out Pattern) - -AVAP allows launching multiple threads and then waiting for all of them, reducing total execution time to the duration of the slowest thread instead of the sum of all execution times. - -Example: Querying Multiple Databases -go_async("db_north") - data_north = north_connector.query("SELECT...") -end() - -go_async("db_south") - data_south = south_connector.query("SELECT...") -end() - -// Wait for both (Maximum 10 seconds) -gather("db_north", 10) -gather("db_south", 10) - -// Combine results using Section I mechanisms -total_result = data_north + data_south -addResult(total_result) -4.4 Promise State in Output - -As mentioned in Section II, if a variable that is still being processed in an asynchronous thread is passed to addResult, AVAP manages the response intelligently: - -If the thread is still running: -The output JSON will display "variable": "promised" or the thread ID. - -If the thread failed: -The error is logged internally and the variable is set to None. - -If gather was used before addResult: -The fully processed real value is returned in the response. - -Examples - -1. Background Process Fire-and-Forget - -Code snippet - -go_async("notification_thread") - // This block runs on its own - RequestPost("https://hooks.slack.com/...", {}, body, r) -end() - -2. Synchronization (Gather) - -Code snippet - -go_async("heavy_calc") - result = (500 * 250) / 3 -end() -gather("heavy_calc", 10) // Waits until it finishes -addResult(result) - -3. Connector Parallelism - -Code snippet - -go_async("db_1") - res1 = db1.query("SELECT...") -end() -go_async("db_2") - res2 = db2.query("SELECT...") -end() - -4. Gather with Safety Timeout - -Code snippet - -gather("external_process", 5) -// If it doesn't finish in 5s, the script continues or fails depending on config - -5. Using "Promised" State - -Code snippet - -go_async("long_task") - final = "Finished" -end() -addResult(final) // You will see "promised" in the JSON - -6. Validation After Gather - -Code snippet - -gather("data_thread", 2) -if(thread_data, None, "!=") - addResult(thread_data) -end() - -7. Multi-Threading for Auditing - -Code snippet - -go_async("audit_thread") - ormDirect("INSERT INTO audit...", r) -end() - -8. Dynamic Gather in a Loop - -Code snippet - -startLoop(h, 1, 3) - gather("thread_${h}", 1) -endLoop() - -9. Asynchronous Tax Calculation - -Code snippet - -go_async("tax_engine") - total_tax = total * 0.21 -end() - -10. Try-Except Inside an Async Thread - -Code snippet - -go_async("safe_thread") - try - // Task that may fail - exception(err) - // Log the error locally - end() -end() \ No newline at end of file diff --git a/ingestion/docs/21_Persistance_connectors_orm.txt b/ingestion/docs/21_Persistance_connectors_orm.txt deleted file mode 100644 index ef031ac..0000000 --- a/ingestion/docs/21_Persistance_connectors_orm.txt +++ /dev/null @@ -1,175 +0,0 @@ -SECTION V: Persistence, Connectors, and Native ORM - -AVAP is designed to be database-agnostic. It enables data manipulation through three layers: the universal connector, simplified ORM commands, and direct SQL execution. - -5.1 The Universal Connector (avapConnector) - -The avapConnector command is the entry point for any external integration. It uses a Connection Token system (Base64) that encapsulates configuration details (host, port, credentials, driver) to keep code clean and secure. - -Interface -connector_variable = avapConnector("BASE64_TOKEN") -Connector Object Capabilities - -Once instantiated, the variable behaves as an object with dynamic methods: - -Database Connectors: -Expose the .query(sql_string) method, which returns objects or lists depending on the result set. - -API Connectors (Twilio, Slack, etc.): -Expose native service methods (e.g., .send_sms()). - -Example: Dynamic Assignment with Connectors -// Instantiate the connection -db = avapConnector("REJfQ09OTkVDVE9SM...") - -// Execute query and use Section I dynamic evaluation -users = db.query("SELECT * FROM users") -first_admin = users[0].name if users[0].role == 'admin' else 'N/A' - -addResult(first_admin) -5.2 Native ORM Layer (ormCheckTable / ormDirect) - -For quick operations on the local or default database cluster, AVAP provides system-level commands that do not require prior instantiation. - -5.2.1 ormCheckTable - -Verifies the existence of a database structure. It is critical for installation scripts or automated migrations. - -Interface: -ormCheckTable(table_name, target_var) - -Response: -target_var receives the string values "True" or "False". - -5.2.2 ormDirect - -Executes SQL statements directly. Unlike .query(), it is optimized for statements that do not necessarily return rows (such as INSERT, UPDATE, or CREATE TABLE). - -Interface: -ormDirect(statement, target_var) - -Interpolation Usage Example: - -ormDirect("UPDATE users SET login = '%s' WHERE id = %s" % (now, id), result) -5.3 Data Access Abstraction (Implicit Commands) - -AVAP includes specialized commands for common CRUD operations, reducing the need to write manual SQL and mitigating injection risks. - -ormAccessSelect - -Performs filtered queries returning a list-of-objects structure. - -Syntax: -ormAccessSelect(table, filters, target) - -ormAccessInsert / ormAccessUpdate - -Manages data persistence. -If used on an object that already has an ID, Update synchronizes changes; otherwise, Insert creates the record. - -5.4 Dynamic Query Formatting (Injection Prevention) - -As detailed in Section I, the AVAP engine processes SQL strings before sending them to the database engine. The official recommendation is to always use interpolation with the % operator to ensure proper handling of data types (Strings vs Integers) by the driver. - -Recommended Secure Pattern -sql = "SELECT * FROM %s WHERE status = '%s'" % (table_name, recovered_status) -res = db.query(sql) -5.5 Cryptographic Security Integration (encodeSHA256) - -Within the persistence flow, AVAP provides native tools to secure sensitive data before it is written to disk. - -Interface -encodeSHA256(source_text, target_variable) -Complete Registration Flow (Final Example) - -This example integrates Sections I, II, III, and V: - -// II: Input capture -addParam("pass", p) -addParam("user", u) - -// I & V: Processing and security -encodeSHA256(p, secure_pass) - -// V: Insertion -sql = "INSERT INTO users (username, password) VALUES ('%s', '%s')" % (u, secure_pass) -ormDirect(sql, db_result) - -// III & II: Response -if(db_result, "Success", "=") - addVar(msg, "User created") - addResult(msg) -end() - -Examples - -1. Connector Instantiation - -Code snippet - -my_db = avapConnector("VE9LRU5fREVCX0RFU0FSUk9MTE8=") - -2. Record Retrieval - -Code snippet - -rows = my_db.query("SELECT id, name FROM users") -addResult(rows) - -3. Direct Command Execution - -Code snippet - -ormDirect("TRUNCATE TABLE temp_cache", status) - -4. Structure Verification - -Code snippet - -ormCheckTable("inventory", exists) -if(exists, "False", "==") - ormDirect("CREATE TABLE inventory...", r) -end() - -5. Secure Update (Interpolation) - -Code snippet - -sql = "UPDATE users SET login_count = %s WHERE email = '%s'" % (count, email) -ormDirect(sql, res) - -6. JSON/DB Object Navigation - -Code snippet - -found_id = query_result[0].id -addResult(found_id) - -7. ORM Select with Filter - -Code snippet - -ormAccessSelect("orders", {"status": "pending"}, list_result) -addResult(list_result) - -8. Processing Database Results - -Code snippet - -records = db.query("SELECT...") -startLoop(i, 0, len(records)) - name = records[i].name -endLoop() - -9. Cryptographic Persistence - -Code snippet - -encodeSHA256(password_raw, hashed) -ormDirect("INSERT INTO logins (hash) VALUES ('%s')" % hashed, r) - -10. Third-Party Connector (e.g., Slack) - -Code snippet - -slack_api = avapConnector("U0xBQ0tfQVBJX1RPS0VO") \ No newline at end of file diff --git a/ingestion/docs/22_System_utilities_transformation.txt b/ingestion/docs/22_System_utilities_transformation.txt deleted file mode 100644 index b1295f2..0000000 --- a/ingestion/docs/22_System_utilities_transformation.txt +++ /dev/null @@ -1,157 +0,0 @@ -SECTION VI: System Utilities and Transformation - -This section documents the native commands for advanced string manipulation, precise time handling, and dynamic data generation. - -6.1 Time and Date Management (getDateTime / stampToDatetime) - -AVAP handles time in two formats: - -Epoch/Timestamp (numeric): Ideal for calculations. - -Formatted Datetime (string): Ideal for human readability and database storage. - -6.1.1 getDateTime - -Generates the current time with high precision. - -Interface: - -getDateTime(format, timeDelta, timeZone, targetVar) -Parameters - -format: -Example: "%Y-%m-%d %H:%M:%S". -If left empty, returns the current Epoch timestamp. - -timeDelta: -Seconds to add (positive) or subtract (negative). -Particularly useful for calculating token expiration times. - -timeZone: -Time zone region (e.g., "Europe/Madrid"). - -6.1.2 stampToDatetime - -Converts a numeric value (Unix Timestamp) into a human-readable string. - -Interface: - -stampToDatetime(timestamp, format, offset, targetVar) - -Common Use Case: -Formatting dates retrieved from the database (Section V) before sending them to the client (Section II). - -6.2 Advanced String Manipulation (replace / randomString) -6.2.1 replace - -Allows text cleaning and transformation. Essential when receiving client data that requires sanitization. - -Interface: - -replace(sourceText, oldText, newText, targetVar) - -Example Use Case: -Removing spaces or unwanted characters from a username before executing a SQL query. - -6.2.2 randomString - -Generates secure random alphanumeric strings. - -Interface: - -randomString(length, targetVar) - -Applications: - -Temporary password generation - -Session ID creation - -Unique file name generation - -6.3 Security and Hash Operations (encodeSHA256) - -Although previously mentioned in the persistence section, this is fundamentally a data transformation utility. - -Mechanics - -Deterministic one-way function. - -AVAP uses an optimized implementation ensuring that the same input always produces the same hash. - -This enables secure login comparisons without storing or exposing the actual password. - -6.4 The Return Command (return) - -Within functions and execution flows, return not only stops execution but can also inject the result of a subroutine back into the main flow. - -Complete Utility Flow Example -// 1. Generate a temporary token -randomString(16, token_raw) - -// 2. Calculate expiration (within 1 hour = 3600 seconds) -getDateTime("%Y-%m-%d %H:%M:%S", 3600, "UTC", expiration_date) - -// 3. Format a system message using Section I -message = "Your token %s expires on %s" % (token_raw, expiration_date) - -// 4. Send to client (Section II) -addResult(message) -6.5 Common Format Tokens (Cheat Sheet) -Token Description Example -%Y Full year 2026 -%m Month (01–12) 02 -%d Day (01–31) 23 -%H Hour (00–23) 21 -%M Minute (00–59) 45 - -Examples - -1. Unix Timestamp Retrieval - -Code snippet - -getDateTime("", 0, "UTC", now) -addResult(now) - -2. Database-Formatted Date - -Code snippet - -getDateTime("%Y-%m-%d %H:%M:%S", 0, "Europe/Madrid", sql_date) -addResult(sql_date) - -3. Expiration Calculation (1 Day) - -Code snippet - -getDateTime("", 86400, "UTC", expires_at) -addResult(expires_at) - -4. Timestamp to Readable Conversion - -Code snippet - -stampToDatetime(1708726162, "%d/%m/%Y", 0, human_date) -addResult(human_date) - -5. String Cleaning (Replace) - -Code snippet - -replace("REF_1234_OLD", "OLD", "NEW", updated_ref) -addResult(updated_ref) - -6. Random Token Generator - -Code snippet - -randomString(32, security_token) -addResult(security_token) - -7. SHA256 Hash for Integrity - -Code snippet - -encodeSHA256("payload_data", checksum) -addResult(checksum) \ No newline at end of file diff --git a/ingestion/docs/23_Function_architecture_scopes.txt b/ingestion/docs/23_Function_architecture_scopes.txt deleted file mode 100644 index dee8bdc..0000000 --- a/ingestion/docs/23_Function_architecture_scopes.txt +++ /dev/null @@ -1,98 +0,0 @@ -SECTION VII: Function Architecture and Scopes - -This section explains how to encapsulate reusable logic and how AVAP manages isolated memory to prevent side effects across different parts of the program. - -7.1 Definition and Declaration (function) - -A function in AVAP is an independent block of code registered in the engine so it can be invoked at any time. - -Interface -function function_name(argument1, argument2, ...){ ... } -Technical Characteristics - -Local Scope (function_local_vars): -When entering a function, AVAP creates a new local variable dictionary. Variables created inside the function (e.g., temp = 10) do not exist outside of it, protecting the global state. - -Context Inheritance: -Functions can read global variables using the $ prefix, but any new assignment (=) remains in the local scope unless an explicit global persistence command is used. - -7.2 The Return Command (return) - -This is the mechanism used to terminate function execution and optionally send a value back to the caller. - -Interface -return(variable_or_value) -Behavior - -Termination: -Immediately stops function processing. - -Data Transfer: -The value passed to return is injected into the variable that invoked the function in the main flow. - -Cleanup: -Once return executes, the function’s local variable dictionary is destroyed to free memory. - -7.3 Invocation and Parameter Passing - -Functions are called by name followed by the required values or variables. - -Professional Implementation Example -// Function definition (Local Scope) -function calculate_discount(base_price, percentage){ - factor = percentage / 100 - discount = base_price * factor - total = base_price - discount - return(total) -} - -// Main Flow (Global Scope) -addVar(pvp, 150) - -// Function call passing a reference $ and a literal value -final_price = calculate_discount($pvp, 20) - -addResult(final_price) // Result: 120 -7.4 Functions as Middlewares - -In the registerEndpoint command (Section I), the middleware parameter accepts a list of functions. These functions have special behavior: - -If a middleware executes a return() without a value or with an error value, AVAP can be configured to abort the request before reaching the main handler. - -Ideal for guard tasks such as: - -API key verification - -Data schema validation - -Initial audit logging - -7.5 Recursion and Limits - -AVAP supports recursion (a function calling itself), but caution is recommended regarding stack depth, especially in asynchronous processes (Section IV). - -For processing large volumes of data, it is always preferable to use startLoop (Section III) instead of deep recursive calls. - -Examples - -1. Modular Sum Function - -Code snippet - -function sum(a, b){ - total = a + b - return(total) -} -result = sum(10, 20) - -2. Access Validation Function - -Code snippet - -function is_valid(token){ - if(token, "SECRET", "==") - return(True) - end() - return(False) -} -authorized = is_valid($input_token) diff --git a/ingestion/docs/24_Master_example.txt b/ingestion/docs/24_Master_example.txt deleted file mode 100644 index 6ff18a2..0000000 --- a/ingestion/docs/24_Master_example.txt +++ /dev/null @@ -1,33 +0,0 @@ -Master Example (Combining Sections) - -This example shows how a real flow uses almost all sections: - -// SECTION I & II: Registration and Input -registerEndpoint("/v1/user", "POST", [], "Create User", main, final_res) - -function main(){ - addParam("user", u) - addParam("pass", p) - - // SECTION III & VI: Validation and Security - if(u, None, "==") - addVar(_status, 400) - return("User is required") - end() - - encodeSHA256(p, pass_hash) - - // SECTION IV: Asynchrony (Audit log) - go_async("audit") - ormDirect("INSERT INTO audit (event) VALUES ('User creation attempt')", r) - end() - - // SECTION V: Persistence - db = avapConnector("TOKEN_DB") - res_db = db.query("INSERT INTO users (name, pass) VALUES ('%s', '%s')" % (u, pass_hash)) - - // SECTION II: Response - addVar(_status, 201) - addResult(res_db) - return(res_db) -} \ No newline at end of file diff --git a/ingestion/docs/2_Dynamic_Programming_Language.txt b/ingestion/docs/2_Dynamic_Programming_Language.txt deleted file mode 100644 index da501f5..0000000 --- a/ingestion/docs/2_Dynamic_Programming_Language.txt +++ /dev/null @@ -1,48 +0,0 @@ -Chapter 1: Dynamic Programming Language -In this chapter, we will introduce AVAP™ as a dynamic programming language. A dynamic language is one whose behavior can be modified during the runtime of the program. AVAP™ shares many characteristics with other dynamic languages, making it a powerful and versatile tool for application development. - -1.1 Features of AVAP™ as a Dynamic Language -AVAP™ is characterized by its dynamic nature, which means it offers various features that allow flexibility and adaptability in program development. Below, we will detail some of these features: - -1.1.1 Dynamic Typing -In AVAP™, variable typing is dynamic, which means it is not necessary to explicitly declare the type of a variable before assigning it a value. This allows greater flexibility in data handling and simplifies code writing. - -# Example of dynamic typing -x = 10 # x is an integer -x = "Hello" # x is now a string -1.1.2 Automatic Memory Management -AVAP™ uses an automatic garbage collector to manage memory dynamically. This means that developers do not have to worry about manually allocating and freeing memory, which simplifies the development process and reduces the likelihood of memory management-related errors. - -# Example of automatic memory management: -list = [1, 2, 3, 4, 5] -# There is no need to free the memory of the list after use -1.1.3 Runtime Interpreter: Dynamic Code Construction -AVAP™ uses a runtime interpreter that goes beyond simply executing code line by line. Instead, the AVAP™ runtime interpreter is characterized by its ability to dynamically construct code during runtime, adding an element of virtuality to the execution process. - -Dynamic code construction means that the AVAP™ runtime interpreter can generate and modify code as the program executes. This allows for greater flexibility and adaptability in data manipulation and operation execution. - -A fundamental aspect of virtuality in dynamic code construction is that the language specifications are completely isolated from the runtime interpreter. This means that the interpreter is not tied to a specific language implementation, facilitating code portability and allowing for the transparent integration of new features and functionalities. - -In summary, the AVAP™ runtime interpreter not only executes code line by line but also dynamically constructs code during runtime, adding an additional level of virtuality and flexibility to the program execution process. - -1.1.4 Flexibility in Programming -AVAP™ offers a wide range of features that promote flexibility in programming. This includes support for higher-order functions, dynamic exception handling, and the ability to manipulate objects at runtime, among others. - - -# Example of a higher-order function -def operation(func, a, b): - return func(a, b) -def add(x, y): - return x + y -result = operation(add, 3, 5) -# The add function is passed as an argument - -1.2 Advantages of AVAP™ as a Dynamic Language -As a dynamic programming language, AVAP™ offers several advantages, including: - -Greater flexibility and adaptability in program development. -Faster writing and execution of code. -Facilitates experimentation and exploration of solutions. -Allows for rapid feedback during development. -1.3 Summary -AVAP™ is a dynamic programming language that offers a wide range of features promoting flexibility, adaptability, and speed in application development. With its dynamic typing, automatic memory management, runtime interpreter, and programming flexibility, AVAP™ becomes a powerful and versatile tool for developers. diff --git a/ingestion/docs/3_Notation.txt b/ingestion/docs/3_Notation.txt deleted file mode 100644 index 68b4c38..0000000 --- a/ingestion/docs/3_Notation.txt +++ /dev/null @@ -1,78 +0,0 @@ -Chapter 2: Notation in AVAP™ -Introduction -Notation in AVAP™ refers to the conventions and rules used to write and format code in the AVAP™ programming language. Notation is essential to ensure code readability and comprehension, as well as to establish a coherent and consistent syntax across all projects. - -General Conventions -In AVAP™, several general notation conventions are followed, similar to those used in other programming languages like Python. Some of these conventions include: - -Indentation: Code is structured through indentation, using white spaces or tabs to indicate the hierarchy and structure of the code. It is recommended to use four spaces for each level of indentation. -Case Sensitivity: AVAP™ is case-sensitive, meaning that identifiers, variable names, and keywords must be consistently written using the same capitalization format throughout the code. -Comments: Comments are used to document the code and explain its functionality. Single-line comments begin with the // symbol, while multi-line comments start with /* and end with */. -Specific Notation Rules -In addition to general conventions, AVAP™ follows specific notation rules for different elements of the language, including: - -Variables: Variable names should be descriptive and meaningful, using lowercase letters and underscores to separate words if necessary for readability (e.g., variable_name). -Functions: Function names should follow the same conventions as variables, with the addition of parentheses to indicate function parameters (e.g., function_name(parameter1, parameter2)). -Constants: Constants are typically written in uppercase letters with underscores separating words (e.g., EXAMPLE_CONSTANT). -The descriptions of lexical analysis and syntax use a modified Backus–Naur form (BNF) grammar notation. This uses the following style of definition: - - ::= - ::= | - ::= | | - ::= "addVar(" "," ")" - ::= "=" - ::= """ """ - ::= | - ::= | - ::= | - ::= " " - ::= | - ::= | | - ::= | - ::= | - ::= "+" | "-" | "*" | "/" - ::= - ::= any character except `" ` and `\` - ::= "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "J" | "K" | "L" | "M" | "N" | "O" | "P" | "Q" | "R" | "S" | "T" | "U" | "V" | "W" | "X" | "Y" | "Z" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "_" - ::= "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" -Explanation: -: A program is a list of statements. -: A list of statements can be a single statement or a statement followed by another list of statements. -: A statement can be a global assignment, a local assignment, or a command. -: A global assignment follows the format addVar('value', variable_name). -: A local assignment follows the Python syntax variable_name = value. -: A string value is enclosed in double quotes and contains string content. -: The content of a string can be a string part or a string part followed by more string content. -: A string part can be literal text or a variable reference. -: Text is a series of characters. -: A variable reference follows the format $ variable . -: A variable name can be a letter or a combination of letters. -: A value can be a string value, a number, or an expression. -: A number can be a digit or a series of digits. -: An expression can be a value or a combination of two values with an operator. -: An operator can be +, -, *, or /. -: A command can be any valid command syntax. -: A character can be any character except double quotes and the backslash. -: A letter can be an alphabetical character, a digit, or an underscore. -: A digit is a number from 0 to 9. -This BNF notation covers the assignment of global and local variables, as well as variable substitution in strings. - -Practical Example - -// Definition of a variable -example_variable = 10 - -// Definition of a function -example_function(parameter): - // Function body - result = parameter * 2 - return result - -// Function call -result = example_function(example_variable) -In this example, notation conventions are used to define a variable, a function, and to call the function with a parameter. - -Conclusions -Notation in AVAP™ is a fundamental part of software development in the language. By following clear and consistent notation conventions, developers can write and maintain code more effectively, contributing to the readability, understanding, and maintainability of the code in projects of any size and complexity. - -With this understanding of notation in AVAP™, developers can write clean and structured code that is easy to understand and maintain over time. diff --git a/ingestion/docs/4_Lexics.txt b/ingestion/docs/4_Lexics.txt deleted file mode 100644 index a63407e..0000000 --- a/ingestion/docs/4_Lexics.txt +++ /dev/null @@ -1,74 +0,0 @@ -Introduction -Lexical analysis is the first step in the process of compiling or interpreting a program in AVAP™. It involves breaking down the source code into lexical components or "tokens," which are the smallest units of meaning in the language. These tokens include keywords, identifiers, operators, punctuation symbols, and literals. - -Lexical Components in AVAP™ -The lexical components in AVAP™ are similar to those in other programming languages like Python. Some of the most common lexical components in AVAP™ include: - -Keywords: These are reserved words that have a special meaning in the language and cannot be used as variable or function names. Examples of keywords in AVAP™ include if, else, for, while, return, among others. -Identifiers: These are names given to variables, functions, and other elements of the program by the programmer. Identifiers must follow certain formatting rules and cannot match keywords. For example, variable, example_function, result are examples of identifiers in AVAP™. -Operators: These are symbols used to perform operations in the program. Examples of operators in AVAP™ include +, -, *, /, =, ==, !=, among others. -Literals: These represent constant values in the program, such as integers, floating-point numbers, text strings, and boolean values. Examples of literals in AVAP™ include 10, 3.14, "text", True, False, among others. -Punctuation Symbols: These are special characters used to separate elements of the code and define the structure of the program. Examples of punctuation symbols in AVAP™ include (), , [], ,, :, ;, among others. -Lexical Analysis Process -The lexical analysis process in AVAP™ consists of several steps: - -Scanning: The source code is read sequentially, and the lexical components are identified. Regular expressions are used to recognize patterns corresponding to keywords, identifiers, operators, etc. -Tokenization: The identified lexical components are converted into tokens, which are objects representing each component with its associated type and value. -Token Generation: The generated tokens are passed to the next step of the compilation or interpretation process for syntactic and semantic analysis. -Keywords -Keywords in AVAP are reserved words that have specific meanings and cannot be used as identifiers. The keywords in AVAP are: - -randomString -ormAI -functionAI -stampToDatetime -getTimeStamp -getRegex -getDateTime -encodeMD5 -encodeSHA256 -getQueryParamList -getListLen -ormCheckTable -ormCreateTable -end -else -if -endLoop -startLoop -ormAccessInsert -ormAccessSelect -variableToList -RequestPost -RequestGet -addResult -AddvariableToJSON -addParam -variableFromJSON -itemFromList -addVar -function -return -Practical Example -Below is a practical example that illustrates lexical analysis in AVAP™: - - -// Function definition -function_example(parameter): - result = parameter * 2 - return result - -// Function call -value = function_example(10) - -In this example, the lexical analysis would identify the following tokens: - -function_example: Function identifier. -(, ): Punctuation symbols. -parameter, result, value: Variable identifiers. -=, *, 2: Operators. -10: Integer literal. -Conclusions -Lexical analysis is a crucial step in the compilation or interpretation of a program in AVAP™. By breaking down the source code into tokens, it lays the foundation for subsequent syntactic and semantic analysis, allowing the program to be correctly understood and executed by the interpreter or compiler. - -With a clear understanding of lexical analysis in AVAP™, developers can write clean and structured code, facilitating the software development process in the language. diff --git a/ingestion/docs/5_Data_Model.txt b/ingestion/docs/5_Data_Model.txt deleted file mode 100644 index 2ec0ede..0000000 --- a/ingestion/docs/5_Data_Model.txt +++ /dev/null @@ -1,48 +0,0 @@ -Introduction -The data model in AVAP™ defines how data is organized and manipulated within the language. Similar to Python, AVAP™ uses a flexible and dynamic data model that allows for working with a wide variety of data types and data structures. - -Data Types -In AVAP™, just like in Python, data types are categories that represent different kinds of values that can be stored and manipulated in a program. Some of the most common data types in AVAP™ include: - -Integers (int): Represent whole numbers, positive or negative, without a fractional part. -Floating-point numbers (float): Represent numbers with both integer and fractional parts. -Strings (str): Represent sequences of Unicode characters. -Booleans (bool): Represent truth values, either True or False. -Lists (list): Ordered and mutable collections of elements. -Tuples (tuple): Ordered and immutable collections of elements. -Dictionaries (dict): Unordered collections of key-value pairs. -Sets (set): Unordered collections of unique elements. -Data Structures -In addition to individual data types, AVAP™ provides various data structures that allow for more complex organization and manipulation of data: - -Lists: Created using square brackets [ ] and can contain any data type, including other lists. -Tuples: Created using parentheses ( ) and are immutable, meaning they cannot be modified once created. -Dictionaries: Created using curly braces and store key-value pairs, where each key is unique within the dictionary. -Sets: Created using curly braces and contain unique elements, meaning there are no duplicates in a set. -Data Structures -In addition to individual data types, AVAP™ provides various data structures that allow for more complex organization and manipulation of data: - -Lists: Created using square brackets [ ] and can contain any data type, including other lists. -Tuples: Created using parentheses ( ) and are immutable, meaning they cannot be modified once created. -Dictionaries: Created using curly braces and store key-value pairs, where each key is unique within the dictionary. -Sets: Created using curly braces and contain unique elements, meaning there are no duplicates in a set. -Practical Example -Below is a practical example that illustrates the use of the data model in AVAP™: - - -# Definition of a list -example_list = [1, 2, 3, 4, 5] - -# Accessing individual elements -print(example_list[0]) # Output: 1 - -# Slicing to get a sublist -sublist = example_list[2:4] -print(sublist) # Output: [3, 4] - -# List methods -example_list.append(6) -print(example_list) # Output: [1, 2, 3, 4, 5, 6] - -Conclusions -The data model in AVAP™ provides a flexible and dynamic structure for working with data in the language. By understanding the available data types, data structures, operations, and methods, developers can write efficient and effective code that manipulates and processes data effectively. diff --git a/ingestion/docs/6_Data_Types.txt b/ingestion/docs/6_Data_Types.txt deleted file mode 100644 index d5ecc40..0000000 --- a/ingestion/docs/6_Data_Types.txt +++ /dev/null @@ -1,62 +0,0 @@ -Chapter 5: Data Types -In this chapter, we will explore the data types available in AVAP™. Data types are fundamental in programming as they determine what kind of values can be stored in a variable and what operations can be performed with those values. Throughout this chapter, we will discuss the basic data types in AVAP™ and how they are used in program development. - -1.1 Basic Data Types -In AVAP™, like in Python, there are several basic data types: - -1.1.1 Integers (int) -Integers represent whole numbers without decimals. They can be positive, negative, or zero. In AVAP™, integers are defined using the int data type. - -integer_number = 10 -1.1.2 Floating-Point Numbers (float) -Floating-point numbers represent real numbers with decimals. In AVAP™, they are defined using the float data type. - -floating_number = 3.14 -1.1.3 Strings (str) -Strings represent text. In AVAP™, they are defined using the str data type. - -text_string = "Hello, world!" -1.1.4 Booleans (bool) -Booleans represent truth or falsehood values. In AVAP™, they are defined using the bool data type. - -true_value = True -false_value = False -1.2 Conversion Between Data Types -In AVAP™, just like in Python, it is possible to convert between different data types using specific functions. Some common examples include: - -1.2.1 Conversion to Integer -To convert a value to an integer, the int() function is used. - -text = "10" -number = int(text) -1.2.2 Conversion to Floating-Point -To convert a value to a floating-point number, the float() function is used. - -text = "3.14" -number = float(text) -1.2.3 Conversion to String -To convert a value to a string, the str() function is used. - -number = 10 -text = str(number) -1.3 Operations with Data Types -In AVAP™, just like in Python, it is possible to perform operations with different data types. For example: - -# Operations with integers -a = 10 -b = 5 -sum = a + b -difference = a - b - -# Operations with floating-point numbers -c = 3.5 -d = 2.0 -product = c * d -division = c / d - -# Operations with strings -text1 = "Hello" -text2 = "world" -concatenation = text1 + " " + text2 -1.4 Summary -Data types in AVAP™ are fundamental for program development. They allow for the storage and manipulation of different types of values, such as numbers, text, and truth values. With a solid understanding of data types and how they are used in program development, developers can create robust and functional applications in AVAP™. diff --git a/ingestion/docs/7_Working_With_Variables.txt b/ingestion/docs/7_Working_With_Variables.txt deleted file mode 100644 index e78de77..0000000 --- a/ingestion/docs/7_Working_With_Variables.txt +++ /dev/null @@ -1,44 +0,0 @@ -Working with Variables -In this chapter, we will explore in detail working with variables in AVAP™. Variables are fundamental elements in programming as they allow us to store and manipulate data within a program. Throughout this chapter, we will examine the importance of variables, the types of local and global variables, as well as the different ways to declare them in AVAP™. - -2.1 Importance of Variables -Variables play a crucial role in programming, as they allow us to store and manipulate data during the execution of a program. They enable the storage of temporary or permanent values, perform calculations, and facilitate communication between different parts of the program. - -2.2 Types of Variables in AVAP™ -In AVAP™, there are two main types of variables: local and global. - -2.2.1 Local Variables -Local variables are those that are declared within a function or block of code and are only available within that scope. They have a limited scope, and their lifespan is restricted to the execution time of the block in which they are declared. Local variables are used to store temporary or intermediate data needed to perform calculations or execute operations within a function. - -2.2.2 Global Variables -Global variables are those that are declared outside of any function or block of code and are available throughout the entire program. They have a global scope, and their lifespan lasts for the full duration of the program's execution. Global variables are used to store data that needs to be accessible from multiple parts of the program or that needs to retain its value over time. - -2.3 Declaration of Variables in AVAP™ -In AVAP™, variables can be declared in several ways: - -2.3.1 addVar() Function -The addVar() function is used to declare global variables within the scope of an API. Its syntax is as follows: - -addVar(variable_name, value) -Where: - -variable_name is the name of the variable to be declared. -value is the initial value to be assigned to the variable (optional). -2.3.2 Direct Declaration -Local and global variables can also be declared directly without using the global statement, simply by assigning a value: - -variable_name = value -Where: - -variable_name is the name of the variable to be declared. -value is the initial value to be assigned to the variable. -2.3.3 Direct Initialization -It is also possible to declare and initialize a global variable at the same time using the following syntax: - -global variable_name=value -Where: - -variable_name is the name of the variable to be declared. -value is the initial value to be assigned to the variable, which automatically defines the variable's type. -2.4 Summary -Working with variables in AVAP™ is essential for developing efficient and scalable applications. Variables allow for storing and manipulating data during program execution, which facilitates calculations and communication between different parts of the program. With a solid understanding of variable types and the different ways to declare them in AVAP™, developers can create robust and functional applications. diff --git a/ingestion/docs/8_How_to_work_with_comments.txt b/ingestion/docs/8_How_to_work_with_comments.txt deleted file mode 100644 index 86702de..0000000 --- a/ingestion/docs/8_How_to_work_with_comments.txt +++ /dev/null @@ -1,40 +0,0 @@ -How to Work with Comments -Comments are a fundamental tool in any programming language, as they allow you to document code, make it easier to understand, and help keep it organized. In the AVAP™ programming language, comments are an integral part of the syntax and are used to add additional information to the source code without affecting its execution. - -Comments serve several purposes: - -Documentation: Comments can be used to explain what specific parts of the code do, which can be helpful for anyone reading or maintaining the code in the future. -Clarification: They can clarify complex sections of code, making it easier for others (or yourself) to understand the logic and flow of the program. -Organization: Comments can help organize code by separating different sections or explaining the purpose of various code blocks. -Debugging: Comments can temporarily disable parts of code during debugging without deleting it, allowing you to test different scenarios. -In AVAP™, you can use different types of comments to suit your needs. They can be single-line comments or multi-line comments, depending on the level of detail and context required. - -By incorporating comments into your code, you make it more maintainable and easier for others to follow, which is essential for collaborative projects and long-term code management. - -3.1 Line Comments -Line comments in AVAP™ are used to add brief annotations or explanations to a specific line of code. These comments begin with the // symbol and continue until the end of the line. Everything following // is considered a comment and is ignored by the compiler. - -// This is a line comment in AVAP™ int x = 5; // You can also add comments at the end of a line of code -Line comments are useful for providing quick clarifications about the code and improving its readability. - -3.2 Block Comments -Block comments in AVAP™ are used to add comments that span multiple lines of code. These comments begin with /* and end with */. Everything between /* and */ is considered a comment and is ignored by the compiler. - -/* This is a block comment in AVAP™ that spans multiple lines of code. It is used to explain extensive sections of code or to temporarily disable entire blocks of code. */ -Block comments are ideal for providing detailed explanations about complex sections of code or for temporarily disabling entire blocks of code during debugging. - -3.3 Documentation Comments -AVAP™ also supports documentation comments, which are used to automatically generate documentation from the source code. These comments begin with /// and are used to describe the functionality of classes, methods, variables, and other elements of the source code. - -/// This function adds two integers and returns the result. /// \param a The first integer. /// \param b The second integer. /// \return The sum of the two numbers. int sum(int a, int b) return a + b; -Documentation comments are essential for maintaining up-to-date and detailed documentation of the code, which facilitates its understanding and use by other developers. - -3.4 Best Practices -When using comments in AVAP™, it is important to follow some best practices: - -Use comments moderately and only when necessary to clarify the code. -Keep comments updated as the code evolves. -Write clear and concise comments that are easy for other developers to understand. -Avoid redundant or unnecessary comments that do not provide useful information to the reader. -3.5 Summary -Comments in AVAP™ are an essential tool for improving the readability and maintainability of source code. With line comments, block comments, and documentation comments, developers can add explanations, clarifications, and useful documentation to the code, making it easier to understand and collaborate within development teams. diff --git a/ingestion/docs/9_Expressions_in_avap.txt b/ingestion/docs/9_Expressions_in_avap.txt deleted file mode 100644 index 6832836..0000000 --- a/ingestion/docs/9_Expressions_in_avap.txt +++ /dev/null @@ -1,53 +0,0 @@ -Expressions in AVAP™ -Introduction -Expressions in AVAP™ are combinations of values, variables, operators, and function calls that can be evaluated to produce a result. Just like in Python, expressions in AVAP™ can be simple or complex, and they can contain a variety of elements that manipulate and process data. - -Types of Expressions -In AVAP™, as in Python, there are several types of expressions that can be used to perform different operations and calculations. Some of the most common types of expressions include: - -Arithmetic: Perform mathematical operations such as addition, subtraction, multiplication, and division. -Logical: Evaluate logical conditions and return boolean values, such as True or False. -Comparative: Compare two values and return a result based on their relationship, such as equality, inequality, greater than, less than, etc. -Assignment: Assign a value to a variable. -Function Calls: Invoke functions and methods to perform specific tasks. -Operators -In AVAP™, as in Python, expressions can include a variety of operators that perform specific operations on data. Some of the most common operators include: - -Arithmetic: +, -, *, /, %, etc. -Logical: and, or, not. -Comparative: ==, !=, >, <, >=, <=, etc. -Assignment: =, +=, -=, *=, /=, etc. -Working with Lists -Lists are a very versatile data structure in AVAP™ that allows you to store collections of elements of different types. Expressions in AVAP™ can involve operations and manipulations of lists, such as accessing individual elements, concatenation, searching, deletion, and more. - -// Definition of a list -my_list = [1, 2, 3, 4, 5] - -// Accessing individual elements -first_element = my_list[0] // Output: 1 - -// Concatenation of lists -another_list = [6, 7, 8] -combined_list = my_list + another_list // Output: [1, 2, 3, 4, 5, 6, 7, 8] - -// Length of a list -length = len(my_list) // Output: 5 - -// Searching in a list -is_present = 5 in my_list // Output: True - -// Removing elements -my_list.remove(3) // Removes the element 3 from the list -Practical Example -Below is a practical example that illustrates the use of expressions in AVAP™ with lists: - -// Definition of a list of numbers -numbers = [1, 2, 3, 4, 5] - -// Calculation of the sum of the elements -total = sum(numbers) // Output: 15 - -// Checking if a number is present in the list -is_present = 6 in numbers // Output: False -Conclusions -Expressions in AVAP™ are a fundamental part of programming, allowing for a wide variety of data operations and manipulations. By understanding the different types of expressions and operators, as well as working with data structures such as lists, developers can write clear and effective code that meets the program's requirements. diff --git a/pyproject.toml b/pyproject.toml index fd6f881..d296bab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,11 +9,35 @@ dependencies = [ "grpcio-reflection>=1.78.0", "grpcio-tools>=1.78.0", "langchain>=1.2.10", + "langchain-aws>=1.3.1", "langchain-community>=0.4.1", "langchain-elasticsearch>=1.0.0", + "langchain-huggingface>=1.2.0", + "langchain-ollama>=1.0.1", "loguru>=0.7.3", + "nltk>=3.9.2", "numpy>=2.4.2", "pandas>=3.0.0", "python-dotenv>=1.2.1", + "rapidfuzz>=3.14.3", "tqdm>=4.67.3", ] + +[dependency-groups] +dev = [ + "beir>=2.2.0", + "boto3>=1.42.58", + "chonkie[elastic,semantic]>=1.6.0", + "evidently>=0.7.20", + "flatbuffers>=25.12.19", + "jupyter>=1.1.1", + "langfuse<3", + "litellm>=1.82.0", + "markdown>=3.10.2", + "mteb>=2.8.8", + "polars>=1.38.1", + "ragas>=0.4.3", + "ruff>=0.15.1", + "selenium>=4.41.0", + "tree-sitter-language-pack>=0.13.0", +] diff --git a/scratches/izapata/tst_elastic_seach.py b/scratches/izapata/tst_elastic_seach.py deleted file mode 100644 index 3a08c45..0000000 --- a/scratches/izapata/tst_elastic_seach.py +++ /dev/null @@ -1,19 +0,0 @@ -from langchain_elasticsearch import ElasticsearchStore -from langchain_community.llms import Ollama -from langchain_community.embeddings import OllamaEmbeddings - -es_url = "http://localhost:9200" - -base_url = "http://ollama-light-service:11434" -model_name = "qwen2.5:1.5b" - -print(f"Starting server") - -llm = Ollama(base_url=base_url, model=model_name) -embeddings = OllamaEmbeddings(base_url=base_url, model="nomic-embed-text") - - -vector_store = ElasticsearchStore( - es_url=es_url, index_name="avap_manuals", embedding=embeddings -) -print(vector_store) diff --git a/scratches/pseco/tst_elastic_seach.py b/scratches/pseco/tst_elastic_seach.py deleted file mode 100644 index a4b00ec..0000000 --- a/scratches/pseco/tst_elastic_seach.py +++ /dev/null @@ -1,5 +0,0 @@ -from langchain_elasticsearch import ElasticsearchStore -print("Hello world") - - - diff --git a/scripts/pipelines/flows/elasticsearch_ingestion.py b/scripts/pipelines/flows/elasticsearch_ingestion.py index 6227e7c..3c9f97e 100644 --- a/scripts/pipelines/flows/elasticsearch_ingestion.py +++ b/scripts/pipelines/flows/elasticsearch_ingestion.py @@ -1,115 +1,60 @@ -import re -import hashlib -from typing import Any -from enum import Enum import typer import logging -import os -from pathlib import Path -from elasticsearch import Elasticsearch -from langchain_core.documents import Document -from langchain_elasticsearch import ElasticsearchStore -from src.utils.emb_factory import create_embedding_model +from loguru import logger + +from scripts.pipelines.tasks.chunk import ( + fetch_documents, + process_documents, + export_documents, + ingest_documents +) -logger = logging.getLogger(__name__) app = typer.Typer() -ELASTICSEARCH_LOCAL_URL = os.getenv("ELASTICSEARCH_LOCAL_URL") -OLLAMA_LOCAL_URL = os.getenv("OLLAMA_LOCAL_URL") -ELASTICSEARCH_INDEX = os.getenv("ELASTICSEARCH_INDEX") -OLLAMA_URL = os.getenv("OLLAMA_URL") -OLLAMA_EMB_MODEL_NAME = os.getenv("OLLAMA_EMB_MODEL_NAME") - -class DistanceStrategy(str, Enum): - euclidean = "EUCLIDEAN_DISTANCE" - max_inner_product = "MAX_INNER_PRODUCT" - dot_product = "DOT_PRODUCT" - jaccard = "JACCARD" - cosine = "COSINE" - -def clean_text(text: str) -> str: - text = text.replace("\u00a0", " ") - text = re.sub(r"\s+", " ", text).strip() - return text - -def build_documents_from_folder( - folder_path: str, -) -> list[Document]: - - folder = Path(folder_path) - - if not folder.exists() or not folder.is_dir(): - raise ValueError(f"Invalid folder path: {folder_path}") - - all_documents: list[Document] = [] - - for file_path in folder.glob("*.txt"): - doc_text = file_path.read_text(encoding="utf-8") - - if not doc_text.strip(): - continue - - metadata: dict[str, Any] = { - "source": file_path.name, - } - - doc_text = clean_text(doc_text) - document = Document( - id=hashlib.md5(file_path.name.encode()).hexdigest(), - page_content=doc_text, - metadata={**metadata} - ) - - all_documents.append(document) - - return all_documents - @app.command() def elasticsearch_ingestion( - docs_folder_path: str = "ingestion/docs", + docs_folder_path: str = "docs/samples", + output_path: str = "ingestion/chunks.json", + docs_extension: list[str] = [".md", ".avap"], + es_index: str = "avap-docs-test-v3", es_request_timeout: int = 120, es_max_retries: int = 5, es_retry_on_timeout: bool = True, - distance_strategy: DistanceStrategy = DistanceStrategy.cosine, -): + delete_es_index: bool = True +) -> None: + """ + Pipeline to ingest documents into an Elasticsearch index. + The pipeline includes fetching documents from a specified folder, processing them into chunks, and then ingesting those chunks into the specified Elasticsearch index. + + Args: + docs_folder_path (str): Path to the folder containing documents to be ingested. Default is "docs/samples". + docs_extension (list[str]): List of file extensions to filter by (e.g., [".md", ".avap"]). Default is [".md", ".avap"]. + es_index (str): Name of the Elasticsearch index to ingest documents into. Default is "avap-docs-test-v3". + es_request_timeout (int): Timeout in seconds for Elasticsearch requests. Default is 120 seconds. + es_max_retries (int): Maximum number of retries for Elasticsearch requests in case of failure. Default is 5 retries. + es_retry_on_timeout (bool): Whether to retry Elasticsearch requests on timeout. Default is True. + delete_es_index (bool): Whether to delete the existing Elasticsearch index before ingestion. Default is True. + + Returns: + None + """ logger.info("Starting Elasticsearch ingestion pipeline...") - logger.info(f"Using docs folder path: {docs_folder_path}") - documents = build_documents_from_folder(folder_path=docs_folder_path) + logger.info(f"Fetching files from {docs_folder_path}...") + docs_path = fetch_documents(docs_folder_path, docs_extension) - logger.info("Connecting to Elasticsearch...") - try: - es = Elasticsearch( - ELASTICSEARCH_LOCAL_URL, - request_timeout=es_request_timeout, - max_retries=es_max_retries, - retry_on_timeout=es_retry_on_timeout, - ) - except: - logger.exception("Failed to connect to Elasticsearch.") - raise + logger.info("Processing docs...") + chunked_docs = process_documents(docs_path) - logger.info("Instantiating embeddings model...") - try: - embeddings = create_embedding_model( - provider="ollama", - model=OLLAMA_EMB_MODEL_NAME, - base_url=OLLAMA_LOCAL_URL, - ) - except: - logger.exception("Failed to instantiate embeddings model.") - raise + logger.info(f"Ingesting chunks in Elasticsearch index: {es_index}...") + elasticsearch_docs = ingest_documents(chunked_docs, es_index, es_request_timeout, es_max_retries, + es_retry_on_timeout, delete_es_index) + + logger.info(f"Exporting processed documents to {output_path}...") + export_documents(elasticsearch_docs, output_path) - logger.info(f"Uploading documents to index {ELASTICSEARCH_INDEX}...") - ElasticsearchStore.from_documents( - documents, - embeddings, - client=es, - index_name=ELASTICSEARCH_INDEX, - distance_strategy=distance_strategy.value, - ) - logger.info(f"Finished uploading documents to index {ELASTICSEARCH_INDEX}.") + logger.info(f"Finished ingesting in {es_index}.") if __name__ == "__main__": @@ -121,4 +66,4 @@ if __name__ == "__main__": app() except Exception as exc: logger.exception(exc) - raise + raise \ No newline at end of file diff --git a/scripts/pipelines/flows/generate_mbap.py b/scripts/pipelines/flows/generate_mbap.py new file mode 100644 index 0000000..a567d4d --- /dev/null +++ b/scripts/pipelines/flows/generate_mbap.py @@ -0,0 +1,352 @@ +#!/usr/bin/env python3 +""" +Use: + python generate_mbap.py + python generate_mbap.py --lrm path/to/avap.md + python generate_mbap.py --lrm avap.md --output output/mbpp_avap.json --problems 300 + +Requirements: + pip install anthropic + export ANTHROPIC_API_KEY=sk-ant-... +""" + +import argparse +import json +import os +import sys +import time +from pathlib import Path + +import anthropic + +CATEGORIES = [ + ("HTTP params / addParam / addResult / _status",10), + ("Variables y strings / addVar / replace / randomString",10), + ("Condicionales / if() Modo 1 y Modo 2 / else() / end()",10), + ("Bucles y listas / startLoop / itemFromList / getListLen",10), + ("JSON / variableFromJSON / AddVariableToJSON",10), + ("ORM / ormAccessSelect / ormAccessInsert / ormAccessUpdate",10), + ("Criptografía / encodeSHA256 / encodeMD5",10), + ("Fechas / getTimeStamp / getDateTime / stampToDatetime",10), + ("Conectores externos / avapConnector + métodos dinámicos",10), + ("Concurrencia / go + gather",10), + ("Funciones y scope / function / return()",10), + ("Manejo de errores / try() / exception()",10), + ("HTTP externo / RequestGet / RequestPost",10), + ("Modularidad / import / include + casos de uso complejos",10), +] + +TOTAL_PROBLEMS = sum(n for _, n in CATEGORIES) +PROBLEMS_PER_CALL = 10 + + +SYSTEM_PROMPT = """Eres un experto en el lenguaje AVAP. +Se te proporciona el Language Reference Manual (LRM) completo de AVAP. +Tu tarea es generar problemas de benchmark estilo MBPP para evaluar +modelos de lenguaje en su capacidad de generar código AVAP correcto. + +REGLAS ESTRICTAS para el código AVAP generado: +1. Una instrucción por línea. EOL es el terminador absoluto. +2. Sin indentación significativa (es solo decorativa). +3. Bloques de control: if()...else()...end(), startLoop()...endLoop(), try()...exception()...end() +4. Funciones: function name(args) { ... return(val) } +5. if() Modo 1: if(var_o_literal, var_o_literal, "operador") + — los argumentos NO pueden ser expresiones de acceso como dict['key']; + hay que extraer el valor a una variable propia primero. +6. if() Modo 2: if(None, None, `expresion_completa_como_string`) +7. _status se asigna con: addVar(_status, 404) +8. ormAccessSelect firma: ormAccessSelect(campos, "tabla", selector, varTarget) + — selector puede ser cadena vacía. +9. Acceso a campos de dict: val = dict['campo'] (línea propia, luego se usa val). +10. Genera ÚNICAMENTE código AVAP válido según el LRM. Sin Python, sin pseudocódigo. + +MODO DE EJECUCIÓN — MUY IMPORTANTE: +- El código se ejecuta DIRECTAMENTE, línea a línea, sin servidor ni registro de endpoints. +- NUNCA uses registerEndpoint(), NUNCA uses mainHandler(), NUNCA envuelvas el código en funciones solo para ejecutarlo. +- El código correcto es simplemente las instrucciones en línea, por ejemplo: + result = "Hello World" + addResult(result) +- Si el problema requiere una función auxiliar reutilizable, defínela con function...{} y llámala directamente después: + function double(n) { + return(n * 2) + } + addParam("n", n) + result = double(n) + addResult(result) +- NUNCA termines el código con registerEndpoint ni con ninguna llamada de registro. + +FORMATO DE SALIDA: responde ÚNICAMENTE con un array JSON válido. +Sin texto adicional, sin bloques de código markdown, sin explicaciones. +Estructura exacta de cada elemento: +{ + "task_id": , + "text": "", + "code": "", + "test_inputs": { "": , "": }, + "test_list": ["", ""] +} + +FORMATO DE test_inputs — MUY IMPORTANTE: +- Es un objeto JSON con un valor fijo para cada variable que el código recibe via addParam(). +- Los nombres de las claves deben coincidir EXACTAMENTE con el nombre de variable usado en addParam(). +- Los valores deben ser concretos y representativos del problema (no genéricos como "test" o 123). +- Si el código no tiene ningún addParam(), el campo test_inputs debe ser un objeto vacío: {} +- Estos valores son los que el evaluador inyectará en el stack antes de ejecutar el código, + de modo que las aserciones de test_list puedan validar las variables de salida resultantes. + +Ejemplo con addParam: + código: addParam("password", password)\\nencodeSHA256(password, hashed)\\naddResult(hashed) + test_inputs: { "password": "secret123" } + test_list: ["re.match(r'^[a-f0-9]{64}$', hashed)"] + +Ejemplo sin addParam: + código: randomString(16, token)\\naddResult(token) + test_inputs: {} + test_list: ["re.match(r'^[a-zA-Z0-9]{16}$', token)"] + +FORMATO DE test_list — MUY IMPORTANTE: +Cada aserción debe ser una expresión Python con re.match() +evaluable directamente sobre las variables del stack AVAP (disponibles como +variables Python locales). El módulo 're' está siempre disponible. +La expresión debe devolver un match object (truthy) si el test pasa. + +Reglas estrictas: +- USA ÚNICAMENTE re.match(r'', ) +- NO combines expresiones re.match en una aserción, cada asercion tiene que ser un unico re.match(r'', ) +- Convierte a string si es necesario: re.match(r'^\\d+$', str(result)) +- Puedes encadenar con 'and': re.match(r'^[a-zA-Z0-9]{32}$', token) and re.match(r'.{32}', token) +- Las variables referenciadas deben existir en el stack tras ejecutar el código. +- NUNCA uses comparaciones directas (==, !=, >, <). +- NUNCA uses isinstance(), len(), assert, ni texto descriptivo. +- NUNCA uses nada que no sea re.match(). + +Ejemplos correctos de test_list: + "re.match(r'^[a-f0-9]{64}$', hashed)" + "re.match(r'^[a-zA-Z0-9]{32}$', token)" + "re.match(r'^\\d{4}-\\d{2}-\\d{2}$', date_str)" + "re.match(r'^-?\\d+(\\.\\d+)?$', str(result))" + "re.match(r'^(par|impar)$', result)" + "re.match(r'^40[134]$', str(_status))" + "re.match(r'^\\d+$', str(length))" +""" + + +def build_user_prompt(lrm: str, category: str, count: int, start_id: int): + return f"""# LRM AVAP — Language Reference Manual + +{lrm} + +--- + +# TAREA + +Genera exactamente {count} problemas de benchmark MBPP-AVAP para la categoría: + +**{category}** + +Requisitos: +- Los task_id deben comenzar en {start_id} y ser consecutivos. +- Cada problema debe cubrir un aspecto distinto de la categoría. +- Dificultad variada: algunos simples, algunos intermedios, alguno avanzado. +- El código debe ser realista como endpoint de microservicio HTTP en AVAP. +- Incluye 2-3 aserciones descriptivas en test_list por problema. + +Responde ÚNICAMENTE con el array JSON. Sin texto antes ni después. +""" + + +def parse_response(raw: str): + text = raw.strip() + if text.startswith("```"): + lines = text.splitlines() + inner = lines[1:] + if inner and inner[-1].strip() == "```": + inner = inner[:-1] + text = "\n".join(inner).strip() + + problems = json.loads(text) + + if not isinstance(problems, list): + raise ValueError("response is not an JSON array") + + for p in problems: + for field in ("task_id", "text", "code", "test_list"): + if field not in p: + raise ValueError(f"Field missing '{field}' in task_id={p.get('task_id','?')}.") + if "test_inputs" not in p: + p["test_inputs"] = {} + if not isinstance(p["test_inputs"], dict): + raise ValueError(f"'test_inputs' must by a JSON Object (task_id={p.get('task_id','?')}).") + + return problems + + +def call_api( client: anthropic.Anthropic, lrm: str, category: str, count: int, start_id: int, retries: int = 3,): + + for attempt in range(1, retries + 1): + try: + message = client.messages.create( + model="claude-sonnet-4-20250514", + max_tokens=8000, + system=SYSTEM_PROMPT, + messages=[ + { + "role": "user", + "content": build_user_prompt(lrm, category, count, start_id), + } + ], + ) + raw = message.content[0].text + problems = parse_response(raw) + + for i, problem in enumerate(problems): + problem["task_id"] = start_id + i + + return problems + + except (json.JSONDecodeError, ValueError, KeyError) as e: + print(f"\n Attempt {attempt}/{retries} — parser error: {e}") + if attempt < retries: + time.sleep(2 ** attempt) + + except anthropic.RateLimitError: + wait = 30 * attempt + print(f"\n Rate limit. waiting {wait}s...") + time.sleep(wait) + + except anthropic.APIError as e: + print(f"\n API error at attempt {attempt}: {e}") + if attempt < retries: + time.sleep(5) + + raise RuntimeError( + f"Cant generate problems '{category}' since {retries} trys." + ) + + +def scale_categories(target: int): + base = TOTAL_PROBLEMS + scaled = [ + (cat, max(1, round(n * target / base))) + for cat, n in CATEGORIES + ] + + diff = target - sum(n for _, n in scaled) + if diff != 0: + last_cat, last_n = scaled[-1] + scaled[-1] = (last_cat, max(1, last_n + diff)) + return scaled + + +def main(): + parser = argparse.ArgumentParser( + description="Create a bunch of samples of code from an LRM." + ) + parser.add_argument( + "--lrm", + default="avap.md", + help="Path to AVAP LRM (default: avap.md)", + ) + parser.add_argument( + "--output", + default="output/mbpp_avap.json", + help="Output JSON file (default: output/mbpp_avap.json)", + ) + parser.add_argument( + "--problems", + type=int, + default=300, + help="Total problems number to generate (default: 300)", + ) + parser.add_argument( + "--api-key", + default=None, + help="Anthropic API key", + ) + args = parser.parse_args() + + api_key = args.api_key or os.environ.get("ANTHROPIC_API_KEY") + if not api_key: + sys.exit( + "ERROR: API key not found.\n" + " Export variable: export ANTHROPIC_API_KEY=sk-ant-...\n" + " Or indicate with: --api-key sk-ant-..." + ) + + lrm_path = Path(args.lrm) + if not lrm_path.exists(): + sys.exit( + f"ERROR: file '{lrm_path}' not found.\n" + f" Put avap.md in actual directory or use --lrm ." + ) + lrm = lrm_path.read_text(encoding="utf-8") + print(f" Source LRM: {lrm_path} ") + + output_path = Path(args.output) + output_path.parent.mkdir(parents=True, exist_ok=True) + + categories = scale_categories(args.problems) + total_calls = sum((n + PROBLEMS_PER_CALL - 1) // PROBLEMS_PER_CALL for _, n in categories) + + print(f" Problems : {args.problems}") + print(f" Output file : {output_path}\n") + print("────────────────────────────────────────────────────────────") + + client = anthropic.Anthropic(api_key=api_key) + all_problems: list[dict] = [] + task_id = 1 + call_count = 0 + + for cat_idx, (category, total_cat) in enumerate(categories, 1): + print(f"\n[{cat_idx:02d}/{len(categories)}] {category} ({total_cat} problems)") + + remaining = total_cat + batch_num = 0 + + while remaining > 0: + batch_size = min(PROBLEMS_PER_CALL, remaining) + batch_num += 1 + call_count += 1 + + print( + f" Batch {batch_num} | task_id {task_id}–{task_id + batch_size - 1} " + f"| API Call {call_count}/{total_calls} ... ", + end="", + flush=True, + ) + + try: + batch = call_api(client, lrm, category, batch_size, task_id) + except RuntimeError as e: + print(f"\n {e}") + if all_problems: + _save(all_problems, output_path, partial=True) + sys.exit(1) + + all_problems.extend(batch) + task_id += len(batch) + remaining -= len(batch) + print(f" {len(batch)} generated (total: {len(all_problems)})") + + if remaining > 0: + time.sleep(1.5) + + _save(all_problems, output_path, partial=False) + print(f" '- Save actual results.") + + print("\n" + "────────────────────────────────────────────────────────────") + print(f" Process completed") + print(f" Problems generated : {len(all_problems)}") + print(f" task_id range : {all_problems[0]['task_id']} – {all_problems[-1]['task_id']}") + print(f" Output file : {output_path}") + + +def _save(problems: list[dict], path: Path, partial: bool = False): + suffix = ".partial" if partial else "" + target = path.with_suffix(suffix + path.suffix) if partial else path + with open(target, "w", encoding="utf-8") as f: + json.dump(problems, f, ensure_ascii=False, indent=2) + + +if __name__ == "__main__": + main() diff --git a/scripts/pipelines/flows/translate_mbpp.py b/scripts/pipelines/flows/translate_mbpp.py new file mode 100644 index 0000000..f89497c --- /dev/null +++ b/scripts/pipelines/flows/translate_mbpp.py @@ -0,0 +1,136 @@ +import json +from enum import Enum +from datasets import load_dataset +import boto3 +import typer +from loguru import logger +from botocore.config import Config +from pathlib import Path +from langchain_core.messages import SystemMessage, HumanMessage +from src.utils.llm_factory import create_chat_model +from scripts.pipelines.tasks.prompts import get_prompt_mbpp + + +app = typer.Typer() + + +class Provider(str, Enum): + bedrock = "bedrock" + openai = "openai" + ollama = "ollama" + + +@app.command() +def generate_synthetic_dataset( + provider: Provider = Provider.bedrock, + model: str = "global.anthropic.claude-sonnet-4-6", + temperature: float = 0.0, + num_samples: int = 10, + seed: int = 42, + context_docs_path: str = "docs/avap.txt", + synthetic_output_path: str = "synthetic_datasets", +) -> None: + """Generate synthetic dataset using the specified LLM.""" + logger.info("🚀 Starting synthetic dataset generation pipeline") + logger.info( + f"Configuration - Provider: {provider}, Model: {model}, Temperature: {temperature}, Samples: {num_samples}, Seed: {seed}" + ) + + try: + config = Config( + connect_timeout=10, + read_timeout=600, + ) + client = boto3.client("bedrock-runtime", config=config) + logger.info("✓ Bedrock client initialized successfully") + + # Create LLM instance with specified parameters + logger.debug(f"Creating LLM instance with provider: {provider}") + llm = create_chat_model( + provider=provider, + client=client, + model=model, + temperature=temperature, + ) + logger.info(f"✓ LLM initialized: {model}") + + # Load MBPP dataset + logger.debug("Loading MBPP dataset") + dataset_full = load_dataset("mbpp") + logger.info("✓ MBPP dataset loaded successfully") + + # Select random test samples for synthetic generation + logger.debug(f"Selecting {num_samples} random test samples from MBPP dataset") + random_test_samples = ( + dataset_full["test"].shuffle(seed=seed).select(range(num_samples)) + ) + logger.info(f"✓ Selected {len(random_test_samples)} test samples") + + # Prepare test samples dictionary + logger.debug("Preparing test samples dictionary") + test_samples_dict = { + str(i): { + "text": sample["text"], + "code": sample["code"], + } + for i, sample in enumerate(random_test_samples) + } + logger.info(f"✓ Prepared {len(test_samples_dict)} samples for processing") + + # Load AVAP documentation + + logger.debug(f"Loading AVAP documentation from {context_docs_path}") + with open(context_docs_path, "r") as f: + avap_docs = f.read() + logger.info(f"✓ AVAP documentation loaded ({len(avap_docs)} characters)") + + # Generate prompt with AVAP context + logger.debug("Generating prompt with AVAP context") + get_prompt_mbpp_func = get_prompt_mbpp(avap_docs=avap_docs) + logger.debug("✓ Prompt generated successfully") + + # Invoke LLM to generate synthetic data + logger.info("Invoking LLM to generate synthetic dataset...") + llm_response = llm.invoke( + [get_prompt_mbpp_func, HumanMessage(content=str(test_samples_dict))] + ) + logger.info("✓ LLM response received") + + # Parse JSON response + logger.debug("Parsing LLM response as JSON") + json_str = ( + llm_response.content.removeprefix("```json").removesuffix("```").strip() + ) + synthetic_data = json.loads(json_str) + logger.info( + f"✓ Successfully parsed synthetic data with {len(synthetic_data)} samples" + ) + + logger.info( + f"Pipeline completed successfully! Generated {len(synthetic_data)} synthetic samples" + ) + + output_dir = Path(synthetic_output_path) + output_dir.mkdir(parents=True, exist_ok=True) + + output_file = output_dir / f"synthetic_data_{provider.value}.json" + with output_file.open("w", encoding="utf-8") as f: + json.dump(synthetic_data, f, ensure_ascii=False, indent=2) + + return synthetic_data + + except Exception as exc: + logger.error(f"Error during synthetic dataset generation: {exc}") + logger.exception("Full exception traceback") + raise + + +if __name__ == "__main__": + logger.info("=" * 50) + logger.info("Dataset Synthetic Generation Pipeline") + logger.info("=" * 50) + try: + app() + except Exception as exc: + logger.error(f"Pipeline execution failed: {exc}") + raise diff --git a/scripts/pipelines/tasks/chunk.py b/scripts/pipelines/tasks/chunk.py new file mode 100644 index 0000000..d267043 --- /dev/null +++ b/scripts/pipelines/tasks/chunk.py @@ -0,0 +1,277 @@ +import json +from copy import deepcopy +from dataclasses import replace +from pathlib import Path +from typing import Any, Union + +from chonkie import ( + Chunk, + ElasticHandshake, + FileFetcher, + MarkdownChef, + TextChef, + TokenChunker, + MarkdownDocument +) +from elasticsearch import Elasticsearch +from loguru import logger +from transformers import AutoTokenizer + +from scripts.pipelines.tasks.embeddings import OllamaEmbeddings +from src.config import settings + + +def _get_text(element) -> str: + for attr in ("text", "content", "markdown"): + value = getattr(element, attr, None) + if isinstance(value, str): + return value + raise AttributeError( + f"Could not extract text from element of type {type(element).__name__}" + ) + + +def _merge_markdown_document(processed_doc: MarkdownDocument) -> MarkdownDocument: + elements = [] + + for chunk in processed_doc.chunks: + elements.append(("chunk", chunk.start_index, chunk.end_index, chunk)) + + for code in processed_doc.code: + elements.append(("code", code.start_index, code.end_index, code)) + + for table in processed_doc.tables: + elements.append(("table", table.start_index, table.end_index, table)) + + elements.sort(key=lambda item: (item[1], item[2])) + + merged_chunks = [] + current_chunk = None + current_parts = [] + current_end_index = None + current_token_count = None + + def flush(): + nonlocal current_chunk, current_parts, current_end_index, current_token_count + + if current_chunk is None: + return + + merged_text = "\n\n".join(part for part in current_parts if part) + + merged_chunks.append( + replace( + current_chunk, + text=merged_text, + end_index=current_end_index, + token_count=current_token_count, + ) + ) + + current_chunk = None + current_parts = [] + current_end_index = None + current_token_count = None + + for kind, _, _, element in elements: + if kind == "chunk": + flush() + current_chunk = element + current_parts = [_get_text(element)] + current_end_index = element.end_index + current_token_count = element.token_count + continue + + if current_chunk is None: + continue + + current_parts.append(_get_text(element)) + current_end_index = max(current_end_index, element.end_index) + current_token_count += getattr(element, "token_count", 0) + + flush() + + fused_processed_doc = deepcopy(processed_doc) + fused_processed_doc.chunks = merged_chunks + fused_processed_doc.code = processed_doc.code + fused_processed_doc.tables = processed_doc.tables + + return fused_processed_doc + + +class ElasticHandshakeWithMetadata(ElasticHandshake): + """Extended ElasticHandshake that preserves chunk metadata in Elasticsearch.""" + + def _create_bulk_actions(self, chunks: list[dict]) -> list[dict[str, Any]]: + """Generate bulk actions including metadata.""" + actions = [] + embeddings = self.embedding_model.embed_batch([chunk["chunk"].text for chunk in chunks]) + + for i, chunk in enumerate(chunks): + source = { + "text": chunk["chunk"].text, + "embedding": embeddings[i], + "start_index": chunk["chunk"].start_index, + "end_index": chunk["chunk"].end_index, + "token_count": chunk["chunk"].token_count, + } + + # Include metadata if it exists + if chunk.get("extra_metadata"): + source.update(chunk["extra_metadata"]) + + actions.append({ + "_index": self.index_name, + "_id": self._generate_id(i, chunk["chunk"]), + "_source": source, + }) + + return actions + + def write(self, chunks: Union[Chunk, list[Chunk]]) -> list[dict[str, Any]]: + """Write the chunks to the Elasticsearch index using the bulk API.""" + if isinstance(chunks, Chunk): + chunks = [chunks] + + actions = self._create_bulk_actions(chunks) + + # Use the bulk helper to efficiently write the documents + from elasticsearch.helpers import bulk + + success, errors = bulk(self.client, actions, raise_on_error=False) + + if errors: + logger.warning(f"Encountered {len(errors)} errors during bulk indexing.") # type: ignore + # Optionally log the first few errors for debugging + for i, error in enumerate(errors[:5]): # type: ignore + logger.error(f"Error {i + 1}: {error}") + + logger.info(f"Chonkie wrote {success} chunks to Elasticsearch index: {self.index_name}") + + return actions + + +def fetch_documents(docs_folder_path: str, docs_extension: list[str]) -> list[Path]: + """ + Fetch files from a folder that match the specified extensions. + + Args: + docs_folder_path (str): Path to the folder containing documents + docs_extension (list[str]): List of file extensions to filter by (e.g., [".md", ".avap"]) + + Returns: + List of Paths to the fetched documents + """ + fetcher = FileFetcher() + docs_path = fetcher.fetch(dir=f"{settings.proj_root}/{docs_folder_path}", ext=docs_extension) + return docs_path + + +def process_documents(docs_path: list[Path]) -> list[dict[str, Chunk | dict[str, Any]]]: + """ + Process documents by applying appropriate chefs and chunking strategies based on file type. + + Args: + docs_path (list[Path]): List of Paths to the documents to be processed + + Returns: + List of dicts with "chunk" (Chunk object) and "metadata" (dict with file info) + """ + processed_docs = [] + custom_tokenizer = AutoTokenizer.from_pretrained(settings.hf_emb_model_name) + chef_md = MarkdownChef(tokenizer=custom_tokenizer) + chef_txt = TextChef() + chunker = TokenChunker(tokenizer=custom_tokenizer) + + for doc_path in docs_path: + doc_extension = doc_path.suffix.lower() + filename = doc_path.name + + if doc_extension == ".md": + processed_doc = chef_md.process(doc_path) + fused_doc = _merge_markdown_document(processed_doc) + chunked_doc = fused_doc.chunks + elif doc_extension == ".avap": + processed_doc = chef_txt.process(doc_path) + chunked_doc = chunker.chunk(processed_doc.content) + else: + continue + + for chunk in chunked_doc: + processed_docs.append({ + "chunk": chunk, + "extra_metadata": {"file": filename} + }) + + return processed_docs + + +def ingest_documents( + chunked_docs: list[dict[str, Chunk | dict[str, Any]]], + es_index: str, + es_request_timeout: int, + es_max_retries: int, + es_retry_on_timeout: bool, + delete_es_index: bool, +) -> list[dict[str, Any]]: + """ + Ingest processed documents into an Elasticsearch index. + + Args: + chunked_docs (list[dict[str, Any]]): List of dicts with "chunk" and "metadata" keys + es_index (str): Name of the Elasticsearch index to ingest into + es_request_timeout (int): Timeout for Elasticsearch requests in seconds + es_max_retries (int): Maximum number of retries for Elasticsearch requests + es_retry_on_timeout (bool): Whether to retry on Elasticsearch request timeouts + delete_es_index (bool): Whether to delete the existing Elasticsearch index before ingestion + + Returns: + List of dicts with Elasticsearch response for each chunk + """ + logger.info( + f"Instantiating Elasticsearch client with URL: {settings.elasticsearch_local_url}..." + ) + es = Elasticsearch( + hosts=settings.elasticsearch_local_url, + request_timeout=es_request_timeout, + max_retries=es_max_retries, + retry_on_timeout=es_retry_on_timeout, + ) + + if delete_es_index and es.indices.exists(index=es_index): + logger.info(f"Deleting existing Elasticsearch index: {es_index}...") + es.indices.delete(index=es_index) + + handshake = ElasticHandshakeWithMetadata( + client=es, + index_name=es_index, + embedding_model=OllamaEmbeddings(model=settings.ollama_emb_model_name), + ) + + logger.info( + f"Ingesting {len(chunked_docs)} chunks into Elasticsearch index: {es_index}..." + ) + elasticsearch_chunks = handshake.write(chunked_docs) + + return elasticsearch_chunks + + +def export_documents(elasticsearch_chunks: list[dict[str, Any]], output_path: str) -> None: + """ + Export processed documents to JSON files in the specified output folder. + + Args: + elasticsearch_chunks (list[dict[str, Any]]): List of dicts with Elasticsearch response for each chunk + output_path (str): Path to the file where the JSON will be saved + Returns: + None + """ + output_path = settings.proj_root / output_path + + for chunk in elasticsearch_chunks: + chunk["_source"]["embedding"] = chunk["_source"]["embedding"].tolist() # For JSON serialization + + with output_path.open("w", encoding="utf-8") as f: + json.dump(elasticsearch_chunks, f, ensure_ascii=False, indent=4) + + logger.info(f"Exported processed documents to {output_path}") diff --git a/scripts/pipelines/tasks/embeddings.py b/scripts/pipelines/tasks/embeddings.py new file mode 100644 index 0000000..7d1debd --- /dev/null +++ b/scripts/pipelines/tasks/embeddings.py @@ -0,0 +1,125 @@ +import requests +from typing import Any, Callable + +import numpy as np +from chonkie.embeddings import BaseEmbeddings + +from src.config import settings + + +class OllamaEmbeddings(BaseEmbeddings): + """Chonkie embeddings adapter for a local Ollama embedding model.""" + + def __init__( + self, + model: str, + base_url: str = settings.ollama_local_url, + timeout: float = 60.0, + truncate: bool = True, + keep_alive: str = "5m", + ) -> None: + self.model = model + self.base_url = base_url.rstrip("/") + self.timeout = timeout + self.truncate = truncate + self.keep_alive = keep_alive + self._dimension: int | None = None + + @property + def dimension(self) -> int: + if self._dimension is None: + # Lazy-load the dimension from a real embedding response. + self._dimension = int(self.embed(" ").shape[0]) + return self._dimension + + def embed(self, text: str) -> np.ndarray: + embeddings = self._embed_api(text) + vector = np.asarray(embeddings[0], dtype=np.float32) + + if self._dimension is None: + self._dimension = int(vector.shape[0]) + + return vector + + def embed_batch(self, texts: list[str]) -> list[np.ndarray]: + if not texts: + return [] + + embeddings = self._embed_api(texts) + vectors = [np.asarray(vector, dtype=np.float32) for vector in embeddings] + + if vectors and self._dimension is None: + self._dimension = int(vectors[0].shape[0]) + + return vectors + + def count_tokens(self, text: str) -> int: + payload = self._build_payload(text) + response = self._post_embed(payload) + return int(response["prompt_eval_count"]) + + def count_tokens_batch(self, texts: list[str]) -> list[int]: + # Ollama returns a single prompt_eval_count for the whole request, + # not one count per input item, so we compute them individually. + return [self.count_tokens(text) for text in texts] + + def get_tokenizer(self) -> Callable[[str], int]: + # Chonkie mainly needs something usable for token counting. + return self.count_tokens + + @classmethod + def is_available(cls) -> bool: + try: + response = requests.get( + f"{settings.ollama_local_url}/api/tags", + timeout=5.0, + ) + response.raise_for_status() + return True + except requests.RequestException: + return False + + def __repr__(self) -> str: + return ( + f"OllamaEmbeddings(" + f"model={self.model!r}, " + f"base_url={self.base_url!r}, " + f"dimension={self._dimension!r}" + f")" + ) + + def _build_payload(self, text_or_texts: str | list[str]) -> dict[str, Any]: + return { + "model": self.model, + "input": text_or_texts, + "truncate": self.truncate, + "keep_alive": self.keep_alive, + } + + def _post_embed(self, payload: dict[str, Any]) -> dict[str, Any]: + try: + response = requests.post( + f"{self.base_url}/api/embed", + json=payload, + timeout=self.timeout, + ) + response.raise_for_status() + data = response.json() + except requests.RequestException as exc: + raise RuntimeError( + f"Failed to call Ollama embeddings endpoint at " + f"{self.base_url}/api/embed" + ) from exc + + if "embeddings" not in data: + raise RuntimeError( + "Ollama response did not include 'embeddings'. " + f"Response keys: {list(data.keys())}" + ) + + return data + + def _embed_api(self, text_or_texts: str | list[str]) -> list[list[float]]: + payload = self._build_payload(text_or_texts) + data = self._post_embed(payload) + return data["embeddings"] \ No newline at end of file diff --git a/scripts/pipelines/tasks/prompts.py b/scripts/pipelines/tasks/prompts.py new file mode 100644 index 0000000..a105060 --- /dev/null +++ b/scripts/pipelines/tasks/prompts.py @@ -0,0 +1,31 @@ +from langchain_core.messages import SystemMessage + + +def get_prompt_mbpp(avap_docs: str) -> SystemMessage: + return SystemMessage( + content=f""" + You are an AI agent responsible for generating a synthetic dataset for a programming language called AVAP (Advanced Virtual API Programming). + + You will receive a JSON object containing programming problems and their solutions written in Python. + + Your task is to: + 1. Convert each Python programming problem into an equivalent problem framed for the AVAP language. + 2. Replace the Python solution with a correct implementation written in AVAP. + + Requirements: + - The AVAP solution must follow AVAP syntax. + - Use AVAP libraries and constructs when appropriate. + - Functions in AVAP are declared using the `function` keyword. + - Preserve the original problem intent and difficulty. + - Do not produce Python code in the final solution. + + Documentation usage rules: + - You MUST rely exclusively on the AVAP documentation provided below. + - Do not invent syntax, functions, or libraries that are not described in the documentation. + - If the documentation does not contain enough information to solve the problem, return exactly: + "I don't know how to answer this question based on the provided documentation." + + AVAP Documentation: + {avap_docs} + """ + ) diff --git a/scripts/start-tunnels.sh b/scripts/start-tunnels.sh deleted file mode 100755 index 6538fec..0000000 --- a/scripts/start-tunnels.sh +++ /dev/null @@ -1,49 +0,0 @@ -#!/usr/bin/env bash - -# Start Infrastructure Tunnels for Brunix Assistance Engine -# Connects to the Devaron Cluster in Vultr Cloud - -SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" -PROJECT_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)" -KUBECONFIG_PATH="$PROJECT_ROOT/$(grep KUBECONFIG_PATH "$PROJECT_ROOT/.env" | cut -d '=' -f2)" - -# Colors for output -GREEN='\033[0;32m' -YELLOW='\033[1;33m' -NC='\033[0m' # No Color - -echo -e "${GREEN}Starting Brunix Infrastructure Tunnels...${NC}" -echo "" - -# Check if kubeconfig exists -if [ ! -f "$KUBECONFIG_PATH" ]; then - echo "Error: Kubeconfig not found at $KUBECONFIG_PATH" - exit 1 -fi - -# 1. AI Model Tunnel (Ollama) -echo -e "${YELLOW}[1/3]${NC} Starting Ollama Light Service tunnel (localhost:11434)..." -kubectl port-forward --address 0.0.0.0 svc/ollama-light-service 11434:11434 -n brunix --kubeconfig "$KUBECONFIG_PATH" & -OLLAMA_PID=$! - -# 2. Knowledge Base Tunnel (Elasticsearch) -echo -e "${YELLOW}[2/3]${NC} Starting Elasticsearch Vector DB tunnel (localhost:9200)..." -kubectl port-forward --address 0.0.0.0 svc/brunix-vector-db 9200:9200 -n brunix --kubeconfig "$KUBECONFIG_PATH" & -ES_PID=$! - -# 3. Observability DB Tunnel (PostgreSQL) -echo -e "${YELLOW}[3/3]${NC} Starting PostgreSQL tunnel (localhost:5432)..." -kubectl port-forward --address 0.0.0.0 svc/brunix-postgres 5432:5432 -n brunix --kubeconfig "$KUBECONFIG_PATH" & -PG_PID=$! - -echo "" -echo -e "${GREEN}✓ All tunnels started successfully${NC}" -echo "" -echo "Process IDs:" -echo " Ollama: $OLLAMA_PID" -echo " Elasticsearch: $ES_PID" -echo " PostgreSQL: $PG_PID" -echo "" -echo "To stop all tunnels, run:" -echo " kill $OLLAMA_PID $ES_PID $PG_PID" -echo "" diff --git a/src/config.py b/src/config.py new file mode 100644 index 0000000..67e279d --- /dev/null +++ b/src/config.py @@ -0,0 +1,73 @@ +from pathlib import Path +from typing import Optional + +from pydantic_settings import BaseSettings, SettingsConfigDict + + +class Settings(BaseSettings): + data_path_: Optional[str] = None + raw_path_: Optional[str] = None + processed_path_: Optional[str] = None + models_path_: Optional[str] = None + external_path_: Optional[str] = None + interim_path_: Optional[str] = None + kubeconfig_path_: Optional[str] = None + postgres_url: str + elasticsearch_url: str + elasticsearch_local_url: str + elasticsearch_index: str + ollama_url: str + ollama_local_url: str + ollama_model_name: str + ollama_emb_model_name: str + langfuse_host: str + langfuse_public_key: str + langfuse_secret_key: str + hf_token: str + hf_emb_model_name: str + + model_config = SettingsConfigDict( + env_file=".env", + env_file_encoding="utf-8", + case_sensitive=False, + extra="ignore", + ) + + @property + def proj_root(self) -> Path: + return Path(__file__).resolve().parents[1] + + def _resolve_path(self, path: Optional[str]) -> Optional[Path]: + if path is None: + return None + return self.proj_root / path + + @property + def data_path(self) -> Optional[Path]: + return self._resolve_path(self.data_path_) + + @property + def raw_path(self) -> Optional[Path]: + return self._resolve_path(self.raw_path_) + + @property + def processed_path(self) -> Optional[Path]: + return self._resolve_path(self.processed_path_) + + @property + def models_path(self) -> Optional[Path]: + return self._resolve_path(self.models_path_) + + @property + def external_path(self) -> Optional[Path]: + return self._resolve_path(self.external_path_) + + @property + def interim_path(self) -> Optional[Path]: + return self._resolve_path(self.interim_path_) + + @property + def kubeconfig_path(self) -> Optional[Path]: + return self._resolve_path(self.kubeconfig_path_) + +settings = Settings() \ No newline at end of file diff --git a/uv.lock b/uv.lock index 251221b..f8362b1 100644 --- a/uv.lock +++ b/uv.lock @@ -1,16 +1,19 @@ version = 1 -revision = 2 +revision = 3 requires-python = ">=3.11" resolution-markers = [ "python_full_version >= '3.14' and sys_platform == 'win32'", "python_full_version >= '3.14' and sys_platform == 'emscripten'", "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", "python_full_version == '3.13.*' and sys_platform == 'win32'", - "python_full_version < '3.13' and sys_platform == 'win32'", "python_full_version == '3.13.*' and sys_platform == 'emscripten'", - "python_full_version < '3.13' and sys_platform == 'emscripten'", "python_full_version == '3.13.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32'", + "python_full_version == '3.12.*' and sys_platform == 'win32'", + "python_full_version < '3.12' and sys_platform == 'win32'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten'", + "python_full_version < '3.12' and sys_platform == 'emscripten'", + "python_full_version == '3.12.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", + "python_full_version < '3.12' and sys_platform != 'emscripten' and sys_platform != 'win32'", ] [[package]] @@ -137,6 +140,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/fb/76/641ae371508676492379f16e2fa48f4e2c11741bd63c48be4b12a6b09cba/aiosignal-1.4.0-py3-none-any.whl", hash = "sha256:053243f8b92b990551949e63930a839ff0cf0b0ebbe0597b0f3fb19e1a0fe82e", size = 7490, upload-time = "2025-07-03T22:54:42.156Z" }, ] +[[package]] +name = "annotated-doc" +version = "0.0.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/57/ba/046ceea27344560984e26a590f90bc7f4a75b06701f653222458922b558c/annotated_doc-0.0.4.tar.gz", hash = "sha256:fbcda96e87e9c92ad167c2e53839e57503ecfda18804ea28102353485033faa4", size = 7288, upload-time = "2025-11-10T22:07:42.062Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1e/d3/26bf1008eb3d2daa8ef4cacc7f3bfdc11818d111f7e2d0201bc6e3b49d45/annotated_doc-0.0.4-py3-none-any.whl", hash = "sha256:571ac1dc6991c450b25a9c2d84a3705e2ae7a53467b5d111c24fa8baabbed320", size = 5303, upload-time = "2025-11-10T22:07:40.673Z" }, +] + [[package]] name = "annotated-types" version = "0.7.0" @@ -159,6 +171,80 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/38/0e/27be9fdef66e72d64c0cdc3cc2823101b80585f8119b5c112c2e8f5f7dab/anyio-4.12.1-py3-none-any.whl", hash = "sha256:d405828884fc140aa80a3c667b8beed277f1dfedec42ba031bd6ac3db606ab6c", size = 113592, upload-time = "2026-01-06T11:45:19.497Z" }, ] +[[package]] +name = "appdirs" +version = "1.4.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d7/d8/05696357e0311f5b5c316d7b95f46c669dd9c15aaeecbb48c7d0aeb88c40/appdirs-1.4.4.tar.gz", hash = "sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41", size = 13470, upload-time = "2020-05-11T07:59:51.037Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3b/00/2344469e2084fb287c2e0b57b72910309874c3245463acd6cf5e3db69324/appdirs-1.4.4-py2.py3-none-any.whl", hash = "sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128", size = 9566, upload-time = "2020-05-11T07:59:49.499Z" }, +] + +[[package]] +name = "appnope" +version = "0.1.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/35/5d/752690df9ef5b76e169e68d6a129fa6d08a7100ca7f754c89495db3c6019/appnope-0.1.4.tar.gz", hash = "sha256:1de3860566df9caf38f01f86f65e0e13e379af54f9e4bee1e66b48f2efffd1ee", size = 4170, upload-time = "2024-02-06T09:43:11.258Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/81/29/5ecc3a15d5a33e31b26c11426c45c501e439cb865d0bff96315d86443b78/appnope-0.1.4-py2.py3-none-any.whl", hash = "sha256:502575ee11cd7a28c0205f379b525beefebab9d161b7c964670864014ed7213c", size = 4321, upload-time = "2024-02-06T09:43:09.663Z" }, +] + +[[package]] +name = "argon2-cffi" +version = "25.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "argon2-cffi-bindings" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0e/89/ce5af8a7d472a67cc819d5d998aa8c82c5d860608c4db9f46f1162d7dab9/argon2_cffi-25.1.0.tar.gz", hash = "sha256:694ae5cc8a42f4c4e2bf2ca0e64e51e23a040c6a517a85074683d3959e1346c1", size = 45706, upload-time = "2025-06-03T06:55:32.073Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4f/d3/a8b22fa575b297cd6e3e3b0155c7e25db170edf1c74783d6a31a2490b8d9/argon2_cffi-25.1.0-py3-none-any.whl", hash = "sha256:fdc8b074db390fccb6eb4a3604ae7231f219aa669a2652e0f20e16ba513d5741", size = 14657, upload-time = "2025-06-03T06:55:30.804Z" }, +] + +[[package]] +name = "argon2-cffi-bindings" +version = "25.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5c/2d/db8af0df73c1cf454f71b2bbe5e356b8c1f8041c979f505b3d3186e520a9/argon2_cffi_bindings-25.1.0.tar.gz", hash = "sha256:b957f3e6ea4d55d820e40ff76f450952807013d361a65d7f28acc0acbf29229d", size = 1783441, upload-time = "2025-07-30T10:02:05.147Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/60/97/3c0a35f46e52108d4707c44b95cfe2afcafc50800b5450c197454569b776/argon2_cffi_bindings-25.1.0-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:3d3f05610594151994ca9ccb3c771115bdb4daef161976a266f0dd8aa9996b8f", size = 54393, upload-time = "2025-07-30T10:01:40.97Z" }, + { url = "https://files.pythonhosted.org/packages/9d/f4/98bbd6ee89febd4f212696f13c03ca302b8552e7dbf9c8efa11ea4a388c3/argon2_cffi_bindings-25.1.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:8b8efee945193e667a396cbc7b4fb7d357297d6234d30a489905d96caabde56b", size = 29328, upload-time = "2025-07-30T10:01:41.916Z" }, + { url = "https://files.pythonhosted.org/packages/43/24/90a01c0ef12ac91a6be05969f29944643bc1e5e461155ae6559befa8f00b/argon2_cffi_bindings-25.1.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:3c6702abc36bf3ccba3f802b799505def420a1b7039862014a65db3205967f5a", size = 31269, upload-time = "2025-07-30T10:01:42.716Z" }, + { url = "https://files.pythonhosted.org/packages/d4/d3/942aa10782b2697eee7af5e12eeff5ebb325ccfb86dd8abda54174e377e4/argon2_cffi_bindings-25.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a1c70058c6ab1e352304ac7e3b52554daadacd8d453c1752e547c76e9c99ac44", size = 86558, upload-time = "2025-07-30T10:01:43.943Z" }, + { url = "https://files.pythonhosted.org/packages/0d/82/b484f702fec5536e71836fc2dbc8c5267b3f6e78d2d539b4eaa6f0db8bf8/argon2_cffi_bindings-25.1.0-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e2fd3bfbff3c5d74fef31a722f729bf93500910db650c925c2d6ef879a7e51cb", size = 92364, upload-time = "2025-07-30T10:01:44.887Z" }, + { url = "https://files.pythonhosted.org/packages/c9/c1/a606ff83b3f1735f3759ad0f2cd9e038a0ad11a3de3b6c673aa41c24bb7b/argon2_cffi_bindings-25.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:c4f9665de60b1b0e99bcd6be4f17d90339698ce954cfd8d9cf4f91c995165a92", size = 85637, upload-time = "2025-07-30T10:01:46.225Z" }, + { url = "https://files.pythonhosted.org/packages/44/b4/678503f12aceb0262f84fa201f6027ed77d71c5019ae03b399b97caa2f19/argon2_cffi_bindings-25.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:ba92837e4a9aa6a508c8d2d7883ed5a8f6c308c89a4790e1e447a220deb79a85", size = 91934, upload-time = "2025-07-30T10:01:47.203Z" }, + { url = "https://files.pythonhosted.org/packages/f0/c7/f36bd08ef9bd9f0a9cff9428406651f5937ce27b6c5b07b92d41f91ae541/argon2_cffi_bindings-25.1.0-cp314-cp314t-win32.whl", hash = "sha256:84a461d4d84ae1295871329b346a97f68eade8c53b6ed9a7ca2d7467f3c8ff6f", size = 28158, upload-time = "2025-07-30T10:01:48.341Z" }, + { url = "https://files.pythonhosted.org/packages/b3/80/0106a7448abb24a2c467bf7d527fe5413b7fdfa4ad6d6a96a43a62ef3988/argon2_cffi_bindings-25.1.0-cp314-cp314t-win_amd64.whl", hash = "sha256:b55aec3565b65f56455eebc9b9f34130440404f27fe21c3b375bf1ea4d8fbae6", size = 32597, upload-time = "2025-07-30T10:01:49.112Z" }, + { url = "https://files.pythonhosted.org/packages/05/b8/d663c9caea07e9180b2cb662772865230715cbd573ba3b5e81793d580316/argon2_cffi_bindings-25.1.0-cp314-cp314t-win_arm64.whl", hash = "sha256:87c33a52407e4c41f3b70a9c2d3f6056d88b10dad7695be708c5021673f55623", size = 28231, upload-time = "2025-07-30T10:01:49.92Z" }, + { url = "https://files.pythonhosted.org/packages/1d/57/96b8b9f93166147826da5f90376e784a10582dd39a393c99bb62cfcf52f0/argon2_cffi_bindings-25.1.0-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:aecba1723ae35330a008418a91ea6cfcedf6d31e5fbaa056a166462ff066d500", size = 54121, upload-time = "2025-07-30T10:01:50.815Z" }, + { url = "https://files.pythonhosted.org/packages/0a/08/a9bebdb2e0e602dde230bdde8021b29f71f7841bd54801bcfd514acb5dcf/argon2_cffi_bindings-25.1.0-cp39-abi3-macosx_10_9_x86_64.whl", hash = "sha256:2630b6240b495dfab90aebe159ff784d08ea999aa4b0d17efa734055a07d2f44", size = 29177, upload-time = "2025-07-30T10:01:51.681Z" }, + { url = "https://files.pythonhosted.org/packages/b6/02/d297943bcacf05e4f2a94ab6f462831dc20158614e5d067c35d4e63b9acb/argon2_cffi_bindings-25.1.0-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:7aef0c91e2c0fbca6fc68e7555aa60ef7008a739cbe045541e438373bc54d2b0", size = 31090, upload-time = "2025-07-30T10:01:53.184Z" }, + { url = "https://files.pythonhosted.org/packages/c1/93/44365f3d75053e53893ec6d733e4a5e3147502663554b4d864587c7828a7/argon2_cffi_bindings-25.1.0-cp39-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1e021e87faa76ae0d413b619fe2b65ab9a037f24c60a1e6cc43457ae20de6dc6", size = 81246, upload-time = "2025-07-30T10:01:54.145Z" }, + { url = "https://files.pythonhosted.org/packages/09/52/94108adfdd6e2ddf58be64f959a0b9c7d4ef2fa71086c38356d22dc501ea/argon2_cffi_bindings-25.1.0-cp39-abi3-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d3e924cfc503018a714f94a49a149fdc0b644eaead5d1f089330399134fa028a", size = 87126, upload-time = "2025-07-30T10:01:55.074Z" }, + { url = "https://files.pythonhosted.org/packages/72/70/7a2993a12b0ffa2a9271259b79cc616e2389ed1a4d93842fac5a1f923ffd/argon2_cffi_bindings-25.1.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:c87b72589133f0346a1cb8d5ecca4b933e3c9b64656c9d175270a000e73b288d", size = 80343, upload-time = "2025-07-30T10:01:56.007Z" }, + { url = "https://files.pythonhosted.org/packages/78/9a/4e5157d893ffc712b74dbd868c7f62365618266982b64accab26bab01edc/argon2_cffi_bindings-25.1.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:1db89609c06afa1a214a69a462ea741cf735b29a57530478c06eb81dd403de99", size = 86777, upload-time = "2025-07-30T10:01:56.943Z" }, + { url = "https://files.pythonhosted.org/packages/74/cd/15777dfde1c29d96de7f18edf4cc94c385646852e7c7b0320aa91ccca583/argon2_cffi_bindings-25.1.0-cp39-abi3-win32.whl", hash = "sha256:473bcb5f82924b1becbb637b63303ec8d10e84c8d241119419897a26116515d2", size = 27180, upload-time = "2025-07-30T10:01:57.759Z" }, + { url = "https://files.pythonhosted.org/packages/e2/c6/a759ece8f1829d1f162261226fbfd2c6832b3ff7657384045286d2afa384/argon2_cffi_bindings-25.1.0-cp39-abi3-win_amd64.whl", hash = "sha256:a98cd7d17e9f7ce244c0803cad3c23a7d379c301ba618a5fa76a67d116618b98", size = 31715, upload-time = "2025-07-30T10:01:58.56Z" }, + { url = "https://files.pythonhosted.org/packages/42/b9/f8d6fa329ab25128b7e98fd83a3cb34d9db5b059a9847eddb840a0af45dd/argon2_cffi_bindings-25.1.0-cp39-abi3-win_arm64.whl", hash = "sha256:b0fdbcf513833809c882823f98dc2f931cf659d9a1429616ac3adebb49f5db94", size = 27149, upload-time = "2025-07-30T10:01:59.329Z" }, +] + +[[package]] +name = "arrow" +version = "1.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "python-dateutil" }, + { name = "tzdata" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b9/33/032cdc44182491aa708d06a68b62434140d8c50820a087fac7af37703357/arrow-1.4.0.tar.gz", hash = "sha256:ed0cc050e98001b8779e84d461b0098c4ac597e88704a655582b21d116e526d7", size = 152931, upload-time = "2025-10-18T17:46:46.761Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ed/c9/d7977eaacb9df673210491da99e6a247e93df98c715fc43fd136ce1d3d33/arrow-1.4.0-py3-none-any.whl", hash = "sha256:749f0769958ebdc79c173ff0b0670d59051a535fa26e8eba02953dc19eb43205", size = 68797, upload-time = "2025-10-18T17:46:45.663Z" }, +] + [[package]] name = "assistance-engine" version = "0.1.0" @@ -168,30 +254,96 @@ dependencies = [ { name = "grpcio-reflection" }, { name = "grpcio-tools" }, { name = "langchain" }, + { name = "langchain-aws" }, { name = "langchain-community" }, { name = "langchain-elasticsearch" }, + { name = "langchain-huggingface" }, + { name = "langchain-ollama" }, { name = "loguru" }, + { name = "nltk" }, { name = "numpy" }, { name = "pandas" }, { name = "python-dotenv" }, + { name = "rapidfuzz" }, { name = "tqdm" }, ] +[package.dev-dependencies] +dev = [ + { name = "beir" }, + { name = "boto3" }, + { name = "chonkie", extra = ["elastic", "semantic"] }, + { name = "evidently" }, + { name = "flatbuffers" }, + { name = "jupyter" }, + { name = "langfuse" }, + { name = "litellm" }, + { name = "markdown" }, + { name = "mteb" }, + { name = "polars" }, + { name = "ragas" }, + { name = "ruff" }, + { name = "selenium" }, + { name = "tree-sitter-language-pack" }, +] + [package.metadata] requires-dist = [ { name = "grpcio", specifier = ">=1.78.0" }, { name = "grpcio-reflection", specifier = ">=1.78.0" }, { name = "grpcio-tools", specifier = ">=1.78.0" }, { name = "langchain", specifier = ">=1.2.10" }, + { name = "langchain-aws", specifier = ">=1.3.1" }, { name = "langchain-community", specifier = ">=0.4.1" }, { name = "langchain-elasticsearch", specifier = ">=1.0.0" }, + { name = "langchain-huggingface", specifier = ">=1.2.0" }, + { name = "langchain-ollama", specifier = ">=1.0.1" }, { name = "loguru", specifier = ">=0.7.3" }, + { name = "nltk", specifier = ">=3.9.2" }, { name = "numpy", specifier = ">=2.4.2" }, { name = "pandas", specifier = ">=3.0.0" }, { name = "python-dotenv", specifier = ">=1.2.1" }, + { name = "rapidfuzz", specifier = ">=3.14.3" }, { name = "tqdm", specifier = ">=4.67.3" }, ] +[package.metadata.requires-dev] +dev = [ + { name = "beir", specifier = ">=2.2.0" }, + { name = "boto3", specifier = ">=1.42.58" }, + { name = "chonkie", extras = ["elastic", "semantic"], specifier = ">=1.6.0" }, + { name = "evidently", specifier = ">=0.7.20" }, + { name = "flatbuffers", specifier = ">=25.12.19" }, + { name = "jupyter", specifier = ">=1.1.1" }, + { name = "langfuse", specifier = "<3" }, + { name = "litellm", specifier = ">=1.82.0" }, + { name = "markdown", specifier = ">=3.10.2" }, + { name = "mteb", specifier = ">=2.8.8" }, + { name = "polars", specifier = ">=1.38.1" }, + { name = "ragas", specifier = ">=0.4.3" }, + { name = "ruff", specifier = ">=0.15.1" }, + { name = "selenium", specifier = ">=4.41.0" }, + { name = "tree-sitter-language-pack", specifier = ">=0.13.0" }, +] + +[[package]] +name = "asttokens" +version = "3.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/be/a5/8e3f9b6771b0b408517c82d97aed8f2036509bc247d46114925e32fe33f0/asttokens-3.0.1.tar.gz", hash = "sha256:71a4ee5de0bde6a31d64f6b13f2293ac190344478f081c3d1bccfcf5eacb0cb7", size = 62308, upload-time = "2025-11-15T16:43:48.578Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d2/39/e7eaf1799466a4aef85b6a4fe7bd175ad2b1c6345066aa33f1f58d4b18d0/asttokens-3.0.1-py3-none-any.whl", hash = "sha256:15a3ebc0f43c2d0a50eeafea25e19046c68398e487b9f1f5b517f7c0f40f976a", size = 27047, upload-time = "2025-11-15T16:43:16.109Z" }, +] + +[[package]] +name = "async-lru" +version = "2.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/05/8a/ca724066c32a53fa75f59e0f21aa822fdaa8a0dffa112d223634e3caabf9/async_lru-2.2.0.tar.gz", hash = "sha256:80abae2a237dbc6c60861d621619af39f0d920aea306de34cb992c879e01370c", size = 14654, upload-time = "2026-02-20T19:11:43.848Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/13/5c/af990f019b8dd11c5492a6371fe74a5b0276357370030b67254a87329944/async_lru-2.2.0-py3-none-any.whl", hash = "sha256:e2c1cf731eba202b59c5feedaef14ffd9d02ad0037fcda64938699f2c380eafe", size = 7890, upload-time = "2026-02-20T19:11:42.273Z" }, +] + [[package]] name = "attrs" version = "25.4.0" @@ -201,6 +353,96 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/3a/2a/7cc015f5b9f5db42b7d48157e23356022889fc354a2813c15934b7cb5c0e/attrs-25.4.0-py3-none-any.whl", hash = "sha256:adcf7e2a1fb3b36ac48d97835bb6d8ade15b8dcce26aba8bf1d14847b57a3373", size = 67615, upload-time = "2025-10-06T13:54:43.17Z" }, ] +[[package]] +name = "babel" +version = "2.18.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7d/b2/51899539b6ceeeb420d40ed3cd4b7a40519404f9baf3d4ac99dc413a834b/babel-2.18.0.tar.gz", hash = "sha256:b80b99a14bd085fcacfa15c9165f651fbb3406e66cc603abf11c5750937c992d", size = 9959554, upload-time = "2026-02-01T12:30:56.078Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/77/f5/21d2de20e8b8b0408f0681956ca2c69f1320a3848ac50e6e7f39c6159675/babel-2.18.0-py3-none-any.whl", hash = "sha256:e2b422b277c2b9a9630c1d7903c2a00d0830c409c59ac8cae9081c92f1aeba35", size = 10196845, upload-time = "2026-02-01T12:30:53.445Z" }, +] + +[[package]] +name = "backoff" +version = "2.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/47/d7/5bbeb12c44d7c4f2fb5b56abce497eb5ed9f34d85701de869acedd602619/backoff-2.2.1.tar.gz", hash = "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba", size = 17001, upload-time = "2022-10-05T19:19:32.061Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/df/73/b6e24bd22e6720ca8ee9a85a0c4a2971af8497d8f3193fa05390cbd46e09/backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8", size = 15148, upload-time = "2022-10-05T19:19:30.546Z" }, +] + +[[package]] +name = "beautifulsoup4" +version = "4.14.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "soupsieve" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c3/b0/1c6a16426d389813b48d95e26898aff79abbde42ad353958ad95cc8c9b21/beautifulsoup4-4.14.3.tar.gz", hash = "sha256:6292b1c5186d356bba669ef9f7f051757099565ad9ada5dd630bd9de5fa7fb86", size = 627737, upload-time = "2025-11-30T15:08:26.084Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1a/39/47f9197bdd44df24d67ac8893641e16f386c984a0619ef2ee4c51fbbc019/beautifulsoup4-4.14.3-py3-none-any.whl", hash = "sha256:0918bfe44902e6ad8d57732ba310582e98da931428d231a5ecb9e7c703a735bb", size = 107721, upload-time = "2025-11-30T15:08:24.087Z" }, +] + +[[package]] +name = "beir" +version = "2.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "datasets" }, + { name = "pytrec-eval-terrier" }, + { name = "sentence-transformers" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/14/23/10e19fa9601fe50c71f65408847e9eccdf3c32a5ed7e382d5bf51de16ebb/beir-2.2.0.tar.gz", hash = "sha256:3bef26652cf9fa209190c3b3b9e9ff684343d66cf39ec637998a6a57e523f786", size = 63959, upload-time = "2025-06-04T17:42:42.731Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8b/bc/fa7702f4d37e4821a55b26a87f95641ce12d09252bc4202025b34bef44a0/beir-2.2.0-py3-none-any.whl", hash = "sha256:46fe4d0a3a6e719090eabc0d1f8aa0c51c6c1379639e6381de5b49e445ab36d1", size = 77357, upload-time = "2025-06-04T17:42:41.252Z" }, +] + +[[package]] +name = "bleach" +version = "6.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "webencodings" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/07/18/3c8523962314be6bf4c8989c79ad9531c825210dd13a8669f6b84336e8bd/bleach-6.3.0.tar.gz", hash = "sha256:6f3b91b1c0a02bb9a78b5a454c92506aa0fdf197e1d5e114d2e00c6f64306d22", size = 203533, upload-time = "2025-10-27T17:57:39.211Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cd/3a/577b549de0cc09d95f11087ee63c739bba856cd3952697eec4c4bb91350a/bleach-6.3.0-py3-none-any.whl", hash = "sha256:fe10ec77c93ddf3d13a73b035abaac7a9f5e436513864ccdad516693213c65d6", size = 164437, upload-time = "2025-10-27T17:57:37.538Z" }, +] + +[package.optional-dependencies] +css = [ + { name = "tinycss2" }, +] + +[[package]] +name = "boto3" +version = "1.42.58" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "botocore" }, + { name = "jmespath" }, + { name = "s3transfer" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b9/35/02f91308eed91fb8351809e8319c204dce7672e8bb297395ed44395b7b97/boto3-1.42.58.tar.gz", hash = "sha256:3a21b5bbc8bf8d6472a7ae7bdc77819b1f86f35d127f428f4603bed1b98122c0", size = 112775, upload-time = "2026-02-26T20:25:21.535Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/13/47/3a5b53628311fef4a2cec5c04ff750376ecaac0e9eb7fbea1fa8a88ec198/boto3-1.42.58-py3-none-any.whl", hash = "sha256:1bc5ff0b7a1a3f42b115481e269e1aada1d68bbfa80a989ac2882d51072907a3", size = 140556, upload-time = "2026-02-26T20:25:18.543Z" }, +] + +[[package]] +name = "botocore" +version = "1.42.58" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jmespath" }, + { name = "python-dateutil" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/23/f4/9466eee955c62af0430c0c608a50d460d017fb4609b29eba84c6473d04c6/botocore-1.42.58.tar.gz", hash = "sha256:55224d6a91afae0997e8bee62d1ef1ae2dcbc6c210516939b32a774b0b35bec5", size = 14942809, upload-time = "2026-02-26T20:25:07.805Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4e/e0/f957ed6434f922ceffddba6db308b23d1ec2206beacb166cb83a75c5af61/botocore-1.42.58-py3-none-any.whl", hash = "sha256:3098178f4404cf85c8997ebb7948b3f267cff1dd191b08fc4ebb614ac1013a20", size = 14616050, upload-time = "2026-02-26T20:25:02.609Z" }, +] + [[package]] name = "certifi" version = "2026.1.4" @@ -210,6 +452,76 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/e6/ad/3cc14f097111b4de0040c83a525973216457bbeeb63739ef1ed275c1c021/certifi-2026.1.4-py3-none-any.whl", hash = "sha256:9943707519e4add1115f44c2bc244f782c0249876bf51b6599fee1ffbedd685c", size = 152900, upload-time = "2026-01-04T02:42:40.15Z" }, ] +[[package]] +name = "cffi" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pycparser", marker = "implementation_name != 'PyPy'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/eb/56/b1ba7935a17738ae8453301356628e8147c79dbb825bcbc73dc7401f9846/cffi-2.0.0.tar.gz", hash = "sha256:44d1b5909021139fe36001ae048dbdde8214afa20200eda0f64c068cac5d5529", size = 523588, upload-time = "2025-09-08T23:24:04.541Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/12/4a/3dfd5f7850cbf0d06dc84ba9aa00db766b52ca38d8b86e3a38314d52498c/cffi-2.0.0-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:b4c854ef3adc177950a8dfc81a86f5115d2abd545751a304c5bcf2c2c7283cfe", size = 184344, upload-time = "2025-09-08T23:22:26.456Z" }, + { url = "https://files.pythonhosted.org/packages/4f/8b/f0e4c441227ba756aafbe78f117485b25bb26b1c059d01f137fa6d14896b/cffi-2.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2de9a304e27f7596cd03d16f1b7c72219bd944e99cc52b84d0145aefb07cbd3c", size = 180560, upload-time = "2025-09-08T23:22:28.197Z" }, + { url = "https://files.pythonhosted.org/packages/b1/b7/1200d354378ef52ec227395d95c2576330fd22a869f7a70e88e1447eb234/cffi-2.0.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:baf5215e0ab74c16e2dd324e8ec067ef59e41125d3eade2b863d294fd5035c92", size = 209613, upload-time = "2025-09-08T23:22:29.475Z" }, + { url = "https://files.pythonhosted.org/packages/b8/56/6033f5e86e8cc9bb629f0077ba71679508bdf54a9a5e112a3c0b91870332/cffi-2.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:730cacb21e1bdff3ce90babf007d0a0917cc3e6492f336c2f0134101e0944f93", size = 216476, upload-time = "2025-09-08T23:22:31.063Z" }, + { url = "https://files.pythonhosted.org/packages/dc/7f/55fecd70f7ece178db2f26128ec41430d8720f2d12ca97bf8f0a628207d5/cffi-2.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:6824f87845e3396029f3820c206e459ccc91760e8fa24422f8b0c3d1731cbec5", size = 203374, upload-time = "2025-09-08T23:22:32.507Z" }, + { url = "https://files.pythonhosted.org/packages/84/ef/a7b77c8bdc0f77adc3b46888f1ad54be8f3b7821697a7b89126e829e676a/cffi-2.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:9de40a7b0323d889cf8d23d1ef214f565ab154443c42737dfe52ff82cf857664", size = 202597, upload-time = "2025-09-08T23:22:34.132Z" }, + { url = "https://files.pythonhosted.org/packages/d7/91/500d892b2bf36529a75b77958edfcd5ad8e2ce4064ce2ecfeab2125d72d1/cffi-2.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:8941aaadaf67246224cee8c3803777eed332a19d909b47e29c9842ef1e79ac26", size = 215574, upload-time = "2025-09-08T23:22:35.443Z" }, + { url = "https://files.pythonhosted.org/packages/44/64/58f6255b62b101093d5df22dcb752596066c7e89dd725e0afaed242a61be/cffi-2.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a05d0c237b3349096d3981b727493e22147f934b20f6f125a3eba8f994bec4a9", size = 218971, upload-time = "2025-09-08T23:22:36.805Z" }, + { url = "https://files.pythonhosted.org/packages/ab/49/fa72cebe2fd8a55fbe14956f9970fe8eb1ac59e5df042f603ef7c8ba0adc/cffi-2.0.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:94698a9c5f91f9d138526b48fe26a199609544591f859c870d477351dc7b2414", size = 211972, upload-time = "2025-09-08T23:22:38.436Z" }, + { url = "https://files.pythonhosted.org/packages/0b/28/dd0967a76aab36731b6ebfe64dec4e981aff7e0608f60c2d46b46982607d/cffi-2.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:5fed36fccc0612a53f1d4d9a816b50a36702c28a2aa880cb8a122b3466638743", size = 217078, upload-time = "2025-09-08T23:22:39.776Z" }, + { url = "https://files.pythonhosted.org/packages/2b/c0/015b25184413d7ab0a410775fdb4a50fca20f5589b5dab1dbbfa3baad8ce/cffi-2.0.0-cp311-cp311-win32.whl", hash = "sha256:c649e3a33450ec82378822b3dad03cc228b8f5963c0c12fc3b1e0ab940f768a5", size = 172076, upload-time = "2025-09-08T23:22:40.95Z" }, + { url = "https://files.pythonhosted.org/packages/ae/8f/dc5531155e7070361eb1b7e4c1a9d896d0cb21c49f807a6c03fd63fc877e/cffi-2.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:66f011380d0e49ed280c789fbd08ff0d40968ee7b665575489afa95c98196ab5", size = 182820, upload-time = "2025-09-08T23:22:42.463Z" }, + { url = "https://files.pythonhosted.org/packages/95/5c/1b493356429f9aecfd56bc171285a4c4ac8697f76e9bbbbb105e537853a1/cffi-2.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:c6638687455baf640e37344fe26d37c404db8b80d037c3d29f58fe8d1c3b194d", size = 177635, upload-time = "2025-09-08T23:22:43.623Z" }, + { url = "https://files.pythonhosted.org/packages/ea/47/4f61023ea636104d4f16ab488e268b93008c3d0bb76893b1b31db1f96802/cffi-2.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:6d02d6655b0e54f54c4ef0b94eb6be0607b70853c45ce98bd278dc7de718be5d", size = 185271, upload-time = "2025-09-08T23:22:44.795Z" }, + { url = "https://files.pythonhosted.org/packages/df/a2/781b623f57358e360d62cdd7a8c681f074a71d445418a776eef0aadb4ab4/cffi-2.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8eca2a813c1cb7ad4fb74d368c2ffbbb4789d377ee5bb8df98373c2cc0dee76c", size = 181048, upload-time = "2025-09-08T23:22:45.938Z" }, + { url = "https://files.pythonhosted.org/packages/ff/df/a4f0fbd47331ceeba3d37c2e51e9dfc9722498becbeec2bd8bc856c9538a/cffi-2.0.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:21d1152871b019407d8ac3985f6775c079416c282e431a4da6afe7aefd2bccbe", size = 212529, upload-time = "2025-09-08T23:22:47.349Z" }, + { url = "https://files.pythonhosted.org/packages/d5/72/12b5f8d3865bf0f87cf1404d8c374e7487dcf097a1c91c436e72e6badd83/cffi-2.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:b21e08af67b8a103c71a250401c78d5e0893beff75e28c53c98f4de42f774062", size = 220097, upload-time = "2025-09-08T23:22:48.677Z" }, + { url = "https://files.pythonhosted.org/packages/c2/95/7a135d52a50dfa7c882ab0ac17e8dc11cec9d55d2c18dda414c051c5e69e/cffi-2.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:1e3a615586f05fc4065a8b22b8152f0c1b00cdbc60596d187c2a74f9e3036e4e", size = 207983, upload-time = "2025-09-08T23:22:50.06Z" }, + { url = "https://files.pythonhosted.org/packages/3a/c8/15cb9ada8895957ea171c62dc78ff3e99159ee7adb13c0123c001a2546c1/cffi-2.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:81afed14892743bbe14dacb9e36d9e0e504cd204e0b165062c488942b9718037", size = 206519, upload-time = "2025-09-08T23:22:51.364Z" }, + { url = "https://files.pythonhosted.org/packages/78/2d/7fa73dfa841b5ac06c7b8855cfc18622132e365f5b81d02230333ff26e9e/cffi-2.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:3e17ed538242334bf70832644a32a7aae3d83b57567f9fd60a26257e992b79ba", size = 219572, upload-time = "2025-09-08T23:22:52.902Z" }, + { url = "https://files.pythonhosted.org/packages/07/e0/267e57e387b4ca276b90f0434ff88b2c2241ad72b16d31836adddfd6031b/cffi-2.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3925dd22fa2b7699ed2617149842d2e6adde22b262fcbfada50e3d195e4b3a94", size = 222963, upload-time = "2025-09-08T23:22:54.518Z" }, + { url = "https://files.pythonhosted.org/packages/b6/75/1f2747525e06f53efbd878f4d03bac5b859cbc11c633d0fb81432d98a795/cffi-2.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2c8f814d84194c9ea681642fd164267891702542f028a15fc97d4674b6206187", size = 221361, upload-time = "2025-09-08T23:22:55.867Z" }, + { url = "https://files.pythonhosted.org/packages/7b/2b/2b6435f76bfeb6bbf055596976da087377ede68df465419d192acf00c437/cffi-2.0.0-cp312-cp312-win32.whl", hash = "sha256:da902562c3e9c550df360bfa53c035b2f241fed6d9aef119048073680ace4a18", size = 172932, upload-time = "2025-09-08T23:22:57.188Z" }, + { url = "https://files.pythonhosted.org/packages/f8/ed/13bd4418627013bec4ed6e54283b1959cf6db888048c7cf4b4c3b5b36002/cffi-2.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:da68248800ad6320861f129cd9c1bf96ca849a2771a59e0344e88681905916f5", size = 183557, upload-time = "2025-09-08T23:22:58.351Z" }, + { url = "https://files.pythonhosted.org/packages/95/31/9f7f93ad2f8eff1dbc1c3656d7ca5bfd8fb52c9d786b4dcf19b2d02217fa/cffi-2.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:4671d9dd5ec934cb9a73e7ee9676f9362aba54f7f34910956b84d727b0d73fb6", size = 177762, upload-time = "2025-09-08T23:22:59.668Z" }, + { url = "https://files.pythonhosted.org/packages/4b/8d/a0a47a0c9e413a658623d014e91e74a50cdd2c423f7ccfd44086ef767f90/cffi-2.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:00bdf7acc5f795150faa6957054fbbca2439db2f775ce831222b66f192f03beb", size = 185230, upload-time = "2025-09-08T23:23:00.879Z" }, + { url = "https://files.pythonhosted.org/packages/4a/d2/a6c0296814556c68ee32009d9c2ad4f85f2707cdecfd7727951ec228005d/cffi-2.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:45d5e886156860dc35862657e1494b9bae8dfa63bf56796f2fb56e1679fc0bca", size = 181043, upload-time = "2025-09-08T23:23:02.231Z" }, + { url = "https://files.pythonhosted.org/packages/b0/1e/d22cc63332bd59b06481ceaac49d6c507598642e2230f201649058a7e704/cffi-2.0.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:07b271772c100085dd28b74fa0cd81c8fb1a3ba18b21e03d7c27f3436a10606b", size = 212446, upload-time = "2025-09-08T23:23:03.472Z" }, + { url = "https://files.pythonhosted.org/packages/a9/f5/a2c23eb03b61a0b8747f211eb716446c826ad66818ddc7810cc2cc19b3f2/cffi-2.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d48a880098c96020b02d5a1f7d9251308510ce8858940e6fa99ece33f610838b", size = 220101, upload-time = "2025-09-08T23:23:04.792Z" }, + { url = "https://files.pythonhosted.org/packages/f2/7f/e6647792fc5850d634695bc0e6ab4111ae88e89981d35ac269956605feba/cffi-2.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:f93fd8e5c8c0a4aa1f424d6173f14a892044054871c771f8566e4008eaa359d2", size = 207948, upload-time = "2025-09-08T23:23:06.127Z" }, + { url = "https://files.pythonhosted.org/packages/cb/1e/a5a1bd6f1fb30f22573f76533de12a00bf274abcdc55c8edab639078abb6/cffi-2.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:dd4f05f54a52fb558f1ba9f528228066954fee3ebe629fc1660d874d040ae5a3", size = 206422, upload-time = "2025-09-08T23:23:07.753Z" }, + { url = "https://files.pythonhosted.org/packages/98/df/0a1755e750013a2081e863e7cd37e0cdd02664372c754e5560099eb7aa44/cffi-2.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c8d3b5532fc71b7a77c09192b4a5a200ea992702734a2e9279a37f2478236f26", size = 219499, upload-time = "2025-09-08T23:23:09.648Z" }, + { url = "https://files.pythonhosted.org/packages/50/e1/a969e687fcf9ea58e6e2a928ad5e2dd88cc12f6f0ab477e9971f2309b57c/cffi-2.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:d9b29c1f0ae438d5ee9acb31cadee00a58c46cc9c0b2f9038c6b0b3470877a8c", size = 222928, upload-time = "2025-09-08T23:23:10.928Z" }, + { url = "https://files.pythonhosted.org/packages/36/54/0362578dd2c9e557a28ac77698ed67323ed5b9775ca9d3fe73fe191bb5d8/cffi-2.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6d50360be4546678fc1b79ffe7a66265e28667840010348dd69a314145807a1b", size = 221302, upload-time = "2025-09-08T23:23:12.42Z" }, + { url = "https://files.pythonhosted.org/packages/eb/6d/bf9bda840d5f1dfdbf0feca87fbdb64a918a69bca42cfa0ba7b137c48cb8/cffi-2.0.0-cp313-cp313-win32.whl", hash = "sha256:74a03b9698e198d47562765773b4a8309919089150a0bb17d829ad7b44b60d27", size = 172909, upload-time = "2025-09-08T23:23:14.32Z" }, + { url = "https://files.pythonhosted.org/packages/37/18/6519e1ee6f5a1e579e04b9ddb6f1676c17368a7aba48299c3759bbc3c8b3/cffi-2.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:19f705ada2530c1167abacb171925dd886168931e0a7b78f5bffcae5c6b5be75", size = 183402, upload-time = "2025-09-08T23:23:15.535Z" }, + { url = "https://files.pythonhosted.org/packages/cb/0e/02ceeec9a7d6ee63bb596121c2c8e9b3a9e150936f4fbef6ca1943e6137c/cffi-2.0.0-cp313-cp313-win_arm64.whl", hash = "sha256:256f80b80ca3853f90c21b23ee78cd008713787b1b1e93eae9f3d6a7134abd91", size = 177780, upload-time = "2025-09-08T23:23:16.761Z" }, + { url = "https://files.pythonhosted.org/packages/92/c4/3ce07396253a83250ee98564f8d7e9789fab8e58858f35d07a9a2c78de9f/cffi-2.0.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:fc33c5141b55ed366cfaad382df24fe7dcbc686de5be719b207bb248e3053dc5", size = 185320, upload-time = "2025-09-08T23:23:18.087Z" }, + { url = "https://files.pythonhosted.org/packages/59/dd/27e9fa567a23931c838c6b02d0764611c62290062a6d4e8ff7863daf9730/cffi-2.0.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c654de545946e0db659b3400168c9ad31b5d29593291482c43e3564effbcee13", size = 181487, upload-time = "2025-09-08T23:23:19.622Z" }, + { url = "https://files.pythonhosted.org/packages/d6/43/0e822876f87ea8a4ef95442c3d766a06a51fc5298823f884ef87aaad168c/cffi-2.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:24b6f81f1983e6df8db3adc38562c83f7d4a0c36162885ec7f7b77c7dcbec97b", size = 220049, upload-time = "2025-09-08T23:23:20.853Z" }, + { url = "https://files.pythonhosted.org/packages/b4/89/76799151d9c2d2d1ead63c2429da9ea9d7aac304603de0c6e8764e6e8e70/cffi-2.0.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:12873ca6cb9b0f0d3a0da705d6086fe911591737a59f28b7936bdfed27c0d47c", size = 207793, upload-time = "2025-09-08T23:23:22.08Z" }, + { url = "https://files.pythonhosted.org/packages/bb/dd/3465b14bb9e24ee24cb88c9e3730f6de63111fffe513492bf8c808a3547e/cffi-2.0.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:d9b97165e8aed9272a6bb17c01e3cc5871a594a446ebedc996e2397a1c1ea8ef", size = 206300, upload-time = "2025-09-08T23:23:23.314Z" }, + { url = "https://files.pythonhosted.org/packages/47/d9/d83e293854571c877a92da46fdec39158f8d7e68da75bf73581225d28e90/cffi-2.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:afb8db5439b81cf9c9d0c80404b60c3cc9c3add93e114dcae767f1477cb53775", size = 219244, upload-time = "2025-09-08T23:23:24.541Z" }, + { url = "https://files.pythonhosted.org/packages/2b/0f/1f177e3683aead2bb00f7679a16451d302c436b5cbf2505f0ea8146ef59e/cffi-2.0.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:737fe7d37e1a1bffe70bd5754ea763a62a066dc5913ca57e957824b72a85e205", size = 222828, upload-time = "2025-09-08T23:23:26.143Z" }, + { url = "https://files.pythonhosted.org/packages/c6/0f/cafacebd4b040e3119dcb32fed8bdef8dfe94da653155f9d0b9dc660166e/cffi-2.0.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:38100abb9d1b1435bc4cc340bb4489635dc2f0da7456590877030c9b3d40b0c1", size = 220926, upload-time = "2025-09-08T23:23:27.873Z" }, + { url = "https://files.pythonhosted.org/packages/3e/aa/df335faa45b395396fcbc03de2dfcab242cd61a9900e914fe682a59170b1/cffi-2.0.0-cp314-cp314-win32.whl", hash = "sha256:087067fa8953339c723661eda6b54bc98c5625757ea62e95eb4898ad5e776e9f", size = 175328, upload-time = "2025-09-08T23:23:44.61Z" }, + { url = "https://files.pythonhosted.org/packages/bb/92/882c2d30831744296ce713f0feb4c1cd30f346ef747b530b5318715cc367/cffi-2.0.0-cp314-cp314-win_amd64.whl", hash = "sha256:203a48d1fb583fc7d78a4c6655692963b860a417c0528492a6bc21f1aaefab25", size = 185650, upload-time = "2025-09-08T23:23:45.848Z" }, + { url = "https://files.pythonhosted.org/packages/9f/2c/98ece204b9d35a7366b5b2c6539c350313ca13932143e79dc133ba757104/cffi-2.0.0-cp314-cp314-win_arm64.whl", hash = "sha256:dbd5c7a25a7cb98f5ca55d258b103a2054f859a46ae11aaf23134f9cc0d356ad", size = 180687, upload-time = "2025-09-08T23:23:47.105Z" }, + { url = "https://files.pythonhosted.org/packages/3e/61/c768e4d548bfa607abcda77423448df8c471f25dbe64fb2ef6d555eae006/cffi-2.0.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:9a67fc9e8eb39039280526379fb3a70023d77caec1852002b4da7e8b270c4dd9", size = 188773, upload-time = "2025-09-08T23:23:29.347Z" }, + { url = "https://files.pythonhosted.org/packages/2c/ea/5f76bce7cf6fcd0ab1a1058b5af899bfbef198bea4d5686da88471ea0336/cffi-2.0.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:7a66c7204d8869299919db4d5069a82f1561581af12b11b3c9f48c584eb8743d", size = 185013, upload-time = "2025-09-08T23:23:30.63Z" }, + { url = "https://files.pythonhosted.org/packages/be/b4/c56878d0d1755cf9caa54ba71e5d049479c52f9e4afc230f06822162ab2f/cffi-2.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:7cc09976e8b56f8cebd752f7113ad07752461f48a58cbba644139015ac24954c", size = 221593, upload-time = "2025-09-08T23:23:31.91Z" }, + { url = "https://files.pythonhosted.org/packages/e0/0d/eb704606dfe8033e7128df5e90fee946bbcb64a04fcdaa97321309004000/cffi-2.0.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:92b68146a71df78564e4ef48af17551a5ddd142e5190cdf2c5624d0c3ff5b2e8", size = 209354, upload-time = "2025-09-08T23:23:33.214Z" }, + { url = "https://files.pythonhosted.org/packages/d8/19/3c435d727b368ca475fb8742ab97c9cb13a0de600ce86f62eab7fa3eea60/cffi-2.0.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:b1e74d11748e7e98e2f426ab176d4ed720a64412b6a15054378afdb71e0f37dc", size = 208480, upload-time = "2025-09-08T23:23:34.495Z" }, + { url = "https://files.pythonhosted.org/packages/d0/44/681604464ed9541673e486521497406fadcc15b5217c3e326b061696899a/cffi-2.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:28a3a209b96630bca57cce802da70c266eb08c6e97e5afd61a75611ee6c64592", size = 221584, upload-time = "2025-09-08T23:23:36.096Z" }, + { url = "https://files.pythonhosted.org/packages/25/8e/342a504ff018a2825d395d44d63a767dd8ebc927ebda557fecdaca3ac33a/cffi-2.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:7553fb2090d71822f02c629afe6042c299edf91ba1bf94951165613553984512", size = 224443, upload-time = "2025-09-08T23:23:37.328Z" }, + { url = "https://files.pythonhosted.org/packages/e1/5e/b666bacbbc60fbf415ba9988324a132c9a7a0448a9a8f125074671c0f2c3/cffi-2.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:6c6c373cfc5c83a975506110d17457138c8c63016b563cc9ed6e056a82f13ce4", size = 223437, upload-time = "2025-09-08T23:23:38.945Z" }, + { url = "https://files.pythonhosted.org/packages/a0/1d/ec1a60bd1a10daa292d3cd6bb0b359a81607154fb8165f3ec95fe003b85c/cffi-2.0.0-cp314-cp314t-win32.whl", hash = "sha256:1fc9ea04857caf665289b7a75923f2c6ed559b8298a1b8c49e59f7dd95c8481e", size = 180487, upload-time = "2025-09-08T23:23:40.423Z" }, + { url = "https://files.pythonhosted.org/packages/bf/41/4c1168c74fac325c0c8156f04b6749c8b6a8f405bbf91413ba088359f60d/cffi-2.0.0-cp314-cp314t-win_amd64.whl", hash = "sha256:d68b6cef7827e8641e8ef16f4494edda8b36104d79773a334beaa1e3521430f6", size = 191726, upload-time = "2025-09-08T23:23:41.742Z" }, + { url = "https://files.pythonhosted.org/packages/ae/3a/dbeec9d1ee0844c679f6bb5d6ad4e9f198b1224f4e7a32825f47f6192b0c/cffi-2.0.0-cp314-cp314t-win_arm64.whl", hash = "sha256:0a1527a803f0a659de1af2e1fd700213caba79377e27e4693648c2923da066f9", size = 184195, upload-time = "2025-09-08T23:23:43.004Z" }, +] + [[package]] name = "charset-normalizer" version = "3.4.4" @@ -283,6 +595,77 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/0a/4c/925909008ed5a988ccbb72dcc897407e5d6d3bd72410d69e051fc0c14647/charset_normalizer-3.4.4-py3-none-any.whl", hash = "sha256:7a32c560861a02ff789ad905a2fe94e3f840803362c84fecf1851cb4cf3dc37f", size = 53402, upload-time = "2025-10-14T04:42:31.76Z" }, ] +[[package]] +name = "chonkie" +version = "1.6.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "chonkie-core" }, + { name = "numpy" }, + { name = "tenacity" }, + { name = "tqdm" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e5/72/fdf8f89ff439f4ec357af0866c819512391936e4e61b6f15635a48434b8a/chonkie-1.6.0.tar.gz", hash = "sha256:14120d80610c1f549027fc7aa9a5ff604a729b545836f6cadd65d5ae83596279", size = 187056, upload-time = "2026-03-11T04:55:07.657Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ae/c2/7ea7d3409df220dd0e048b1113b44f47eccab9d517b00b037ab0e34c3c7a/chonkie-1.6.0-py3-none-any.whl", hash = "sha256:aa357e02f5cdacac6f8280c5e8651207c866b4137bcf20904db8670ee0808877", size = 232997, upload-time = "2026-03-11T04:55:05.252Z" }, +] + +[package.optional-dependencies] +elastic = [ + { name = "elasticsearch" }, +] +semantic = [ + { name = "model2vec" }, + { name = "tokenizers" }, +] + +[[package]] +name = "chonkie-core" +version = "0.9.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/55/f5/547c836f488dc74116ea42a2b2355365f4829fe6d925564f4db7775e6d34/chonkie_core-0.9.2.tar.gz", hash = "sha256:a34f457016fb4bedf9d0a62e55afc334670d88f8316d50ba9af8df83be78b56a", size = 49480, upload-time = "2026-01-21T09:09:46.265Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c3/27/8a1f0efc87ef5d99760a462d6c3b17e4e765c77f52a944d56b676a83adfd/chonkie_core-0.9.2-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:9a1bfe98b00e6f70fe97bd342759d67856677056f0cb4193e95f79e561ca35d8", size = 350021, upload-time = "2026-01-21T09:09:12.614Z" }, + { url = "https://files.pythonhosted.org/packages/fb/04/dd2c768f0bad729b2efe4be3999349ee7164092d5acfcbeba12234457191/chonkie_core-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9b6ef38eb3385e71d1c47a4a48e394813de3d25a62faa8d9ffd49156e8f31155", size = 336542, upload-time = "2026-01-21T09:09:13.486Z" }, + { url = "https://files.pythonhosted.org/packages/41/0e/bdf2863380373efb3f6c43e3361616d99c12cabd9e37f67949803809068f/chonkie_core-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0b40a3b33b381dc3543483b8ade4e4176280fa858f8690bdeb28acc082e1dc7e", size = 369363, upload-time = "2026-01-21T09:09:14.379Z" }, + { url = "https://files.pythonhosted.org/packages/34/d2/7316952edf5d7a7788659bb6dba23438e04a0268f93b21fb731204ceee58/chonkie_core-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cac5919f384e38792c742c51979c2dac57ba1ce079361a1d782bdf7d43b66f30", size = 388981, upload-time = "2026-01-21T09:09:15.295Z" }, + { url = "https://files.pythonhosted.org/packages/6c/1d/8265df0af95651cdca7a64dc6e57f3ad6c562966c53ccf03915a60440eb0/chonkie_core-0.9.2-cp311-cp311-win_amd64.whl", hash = "sha256:67cdf9aceef31ce4e02ecd82c4491c2a36bb70cc9230466f32c7d6cdb039285a", size = 224450, upload-time = "2026-01-21T09:09:16.522Z" }, + { url = "https://files.pythonhosted.org/packages/52/55/8825b059e70a3c757c90efa319e35312a2650431aef1cec11b476ee8699b/chonkie_core-0.9.2-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:d6d11337842ca90713d8b48d42ce823bcc82874437d4071a8aced9d47b66ec76", size = 347854, upload-time = "2026-01-21T09:09:17.49Z" }, + { url = "https://files.pythonhosted.org/packages/11/51/abac8676470c7e7a7967964eb9066e2efc346339c338da7190a41f412bba/chonkie_core-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:77fe2d6b9a709245408b53923dd4ebe1b79e09fdcdc5916df9c97e90c8e13eda", size = 333582, upload-time = "2026-01-21T09:09:18.863Z" }, + { url = "https://files.pythonhosted.org/packages/d4/8c/f62d4ff0efbc08d8c281051ce1752cd6bcb6a7f3e816f8b3c143741d1b86/chonkie_core-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c0151a74791445985f30bc34cbe7d679e9a716d36e9acf67ed5dc3408be6a426", size = 365189, upload-time = "2026-01-21T09:09:19.884Z" }, + { url = "https://files.pythonhosted.org/packages/7a/f2/cae3bf4174e7d2b8f0c9fe76a341bed8dc48e30069683854ca536fbed5bd/chonkie_core-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb5ba84745a7daa32749fe8cbdf691428c2bd4cef14e6555db4ce382b2edef05", size = 385232, upload-time = "2026-01-21T09:09:21.088Z" }, + { url = "https://files.pythonhosted.org/packages/fe/1b/18323d5a7fa3638e9c0aaf00cb1fb1b678546466debb3ad57a6adea9d686/chonkie_core-0.9.2-cp312-cp312-win_amd64.whl", hash = "sha256:ee5093fd6a3f78163445bab5907cc6fd883ccea0514f8866abead0f059683d45", size = 222786, upload-time = "2026-01-21T09:09:21.919Z" }, + { url = "https://files.pythonhosted.org/packages/28/ee/f45c8cb237e5a55eac366c9ac7a4a831329f6cf6f33401609063c1ed660d/chonkie_core-0.9.2-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:6a658cd4fc5cb7c12bc6587246eb545f84d6aa25b86001a92fdcb191cea632c8", size = 347713, upload-time = "2026-01-21T09:09:22.809Z" }, + { url = "https://files.pythonhosted.org/packages/f9/31/0049eb4366cef2171404166e8ff1f39ffe350d7d8921247d262dbb3d4d6c/chonkie_core-0.9.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:ebf47e86be6603cbb940529aed6880655ac7f0bac232952565160fdbea5283d0", size = 333290, upload-time = "2026-01-21T09:09:23.786Z" }, + { url = "https://files.pythonhosted.org/packages/03/d9/3a082faa359e3b24826547bdc725dc9af92b4180b262d3ca6872724cbfbb/chonkie_core-0.9.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:64645ff2c299b953b4a1ff951d1492b4a2b461c624b20604ced5612a8622b030", size = 364600, upload-time = "2026-01-21T09:09:24.64Z" }, + { url = "https://files.pythonhosted.org/packages/04/0b/b89aa90c4f44ce4d82effc064031016bb791979cfd6147c155548e706ef7/chonkie_core-0.9.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:418748eeea1e09c539fd1d7f7f91c1611765c9d82a523e4c4ae0ed9e30a16b2d", size = 384806, upload-time = "2026-01-21T09:09:25.566Z" }, + { url = "https://files.pythonhosted.org/packages/3d/d9/a7f8577b5550a4323aa9eda16336669b8ad6e8a5ea0c176c9baa25738436/chonkie_core-0.9.2-cp313-cp313-win_amd64.whl", hash = "sha256:f3718af3037480023423125e3b4a490c8f4cbf6de38d652169a97dd8ba391953", size = 222393, upload-time = "2026-01-21T09:09:26.897Z" }, + { url = "https://files.pythonhosted.org/packages/72/73/cf6a32cfa9238f19a1d539a1d8371b7d90e21e42458a43fbc949c6476871/chonkie_core-0.9.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:66dc990ac58471fbd12845402726ca69b510602abab7c1c3e52cf8e21f9552e3", size = 363201, upload-time = "2026-01-21T09:09:27.764Z" }, + { url = "https://files.pythonhosted.org/packages/1f/1f/56029d9a557e983cf71d22365b4229c4cfaf09401faa6cbc7e912cef2213/chonkie_core-0.9.2-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:325c0c853268fbdc37f4a65c3cde68fa56e3a25d164eee9512ceb41edc819902", size = 347292, upload-time = "2026-01-21T09:09:28.676Z" }, + { url = "https://files.pythonhosted.org/packages/21/5b/08b8230d9264007cc7920cf1b1576f2ee1a1ef20d3cd5f8adb5e043e0908/chonkie_core-0.9.2-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:be9ea3bee05564a721f5c6c8699e1ad5996cf353b2faea2217a08ddee29e2de7", size = 332693, upload-time = "2026-01-21T09:09:29.541Z" }, + { url = "https://files.pythonhosted.org/packages/eb/72/255c918da43a96c90b2bb96f1951a6ea1c513c18b36caecb6e9192275b83/chonkie_core-0.9.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:926db6c26e78b2d84dfb8422073a3f0f20478160ab48204f306fa35f3e1e95d7", size = 364578, upload-time = "2026-01-21T09:09:30.673Z" }, + { url = "https://files.pythonhosted.org/packages/60/80/1710844b9706cd44324446eb368e813ebb4a085e96f469f54b61ddff67dc/chonkie_core-0.9.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861f147e5932e659dcbe770ca0779a470acc62e9242bff87f36d03eae29644d", size = 384173, upload-time = "2026-01-21T09:09:32.015Z" }, + { url = "https://files.pythonhosted.org/packages/5c/5c/a31b259ea94620ea4e4100ed4cc952ad770f2c7af36293bbc9154efb5c9e/chonkie_core-0.9.2-cp314-cp314-win_amd64.whl", hash = "sha256:83473c708a23652d6dc70142b2e586f965af3031b1d2a5c6336f1fc78614b452", size = 222275, upload-time = "2026-01-21T09:09:34.148Z" }, + { url = "https://files.pythonhosted.org/packages/48/8a/c15c88f59bc9cf6f7ac994689d048fd60fcb72247f6b67ca31dc4eadf2f8/chonkie_core-0.9.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d6c0b89ee5e21d255bcf7d11f17b07ef811a71292717f50889244474cfab8bc", size = 363813, upload-time = "2026-01-21T09:09:35.175Z" }, + { url = "https://files.pythonhosted.org/packages/44/20/b16b9896065d2bfa175b238a23faa03531b80706f15de85ae6e5701b51fd/chonkie_core-0.9.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e08b78b0e208310b8aa523bcd13a0cd655c90751211236a1de99693845b8826d", size = 371578, upload-time = "2026-01-21T09:09:43.44Z" }, + { url = "https://files.pythonhosted.org/packages/1b/c3/844844bbadbfb6727d0f9b286fcb1398fbf2984c1348e8a8238dee335113/chonkie_core-0.9.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c6cf9a691cbbf32ef00c22eec66dd9f59b92067f6153c62b766ce24948a2ffd", size = 390277, upload-time = "2026-01-21T09:09:44.364Z" }, +] + +[[package]] +name = "click" +version = "8.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/3d/fa/656b739db8587d7b5dfa22e22ed02566950fbfbcdc20311993483657a5c0/click-8.3.1.tar.gz", hash = "sha256:12ff4785d337a1bb490bb7e9c2b1ee5da3112e94a8622f26a6c77f5d2fc6842a", size = 295065, upload-time = "2025-11-15T20:45:42.706Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/98/78/01c019cdb5d6498122777c1a43056ebb3ebfeef2076d9d026bfe15583b2b/click-8.3.1-py3-none-any.whl", hash = "sha256:981153a64e25f12d547d3426c367a4857371575ee7ad18df2a6183ab0545b2a6", size = 108274, upload-time = "2025-11-15T20:45:41.139Z" }, +] + [[package]] name = "colorama" version = "0.4.6" @@ -292,6 +675,98 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" }, ] +[[package]] +name = "comm" +version = "0.2.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4c/13/7d740c5849255756bc17888787313b61fd38a0a8304fc4f073dfc46122aa/comm-0.2.3.tar.gz", hash = "sha256:2dc8048c10962d55d7ad693be1e7045d891b7ce8d999c97963a5e3e99c055971", size = 6319, upload-time = "2025-07-25T14:02:04.452Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/60/97/891a0971e1e4a8c5d2b20bbe0e524dc04548d2307fee33cdeba148fd4fc7/comm-0.2.3-py3-none-any.whl", hash = "sha256:c615d91d75f7f04f095b30d1c1711babd43bdc6419c1be9886a85f2f4e489417", size = 7294, upload-time = "2025-07-25T14:02:02.896Z" }, +] + +[[package]] +name = "cryptography" +version = "46.0.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "platform_python_implementation != 'PyPy'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/60/04/ee2a9e8542e4fa2773b81771ff8349ff19cdd56b7258a0cc442639052edb/cryptography-46.0.5.tar.gz", hash = "sha256:abace499247268e3757271b2f1e244b36b06f8515cf27c4d49468fc9eb16e93d", size = 750064, upload-time = "2026-02-10T19:18:38.255Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f7/81/b0bb27f2ba931a65409c6b8a8b358a7f03c0e46eceacddff55f7c84b1f3b/cryptography-46.0.5-cp311-abi3-macosx_10_9_universal2.whl", hash = "sha256:351695ada9ea9618b3500b490ad54c739860883df6c1f555e088eaf25b1bbaad", size = 7176289, upload-time = "2026-02-10T19:17:08.274Z" }, + { url = "https://files.pythonhosted.org/packages/ff/9e/6b4397a3e3d15123de3b1806ef342522393d50736c13b20ec4c9ea6693a6/cryptography-46.0.5-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:c18ff11e86df2e28854939acde2d003f7984f721eba450b56a200ad90eeb0e6b", size = 4275637, upload-time = "2026-02-10T19:17:10.53Z" }, + { url = "https://files.pythonhosted.org/packages/63/e7/471ab61099a3920b0c77852ea3f0ea611c9702f651600397ac567848b897/cryptography-46.0.5-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4d7e3d356b8cd4ea5aff04f129d5f66ebdc7b6f8eae802b93739ed520c47c79b", size = 4424742, upload-time = "2026-02-10T19:17:12.388Z" }, + { url = "https://files.pythonhosted.org/packages/37/53/a18500f270342d66bf7e4d9f091114e31e5ee9e7375a5aba2e85a91e0044/cryptography-46.0.5-cp311-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:50bfb6925eff619c9c023b967d5b77a54e04256c4281b0e21336a130cd7fc263", size = 4277528, upload-time = "2026-02-10T19:17:13.853Z" }, + { url = "https://files.pythonhosted.org/packages/22/29/c2e812ebc38c57b40e7c583895e73c8c5adb4d1e4a0cc4c5a4fdab2b1acc/cryptography-46.0.5-cp311-abi3-manylinux_2_28_ppc64le.whl", hash = "sha256:803812e111e75d1aa73690d2facc295eaefd4439be1023fefc4995eaea2af90d", size = 4947993, upload-time = "2026-02-10T19:17:15.618Z" }, + { url = "https://files.pythonhosted.org/packages/6b/e7/237155ae19a9023de7e30ec64e5d99a9431a567407ac21170a046d22a5a3/cryptography-46.0.5-cp311-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:3ee190460e2fbe447175cda91b88b84ae8322a104fc27766ad09428754a618ed", size = 4456855, upload-time = "2026-02-10T19:17:17.221Z" }, + { url = "https://files.pythonhosted.org/packages/2d/87/fc628a7ad85b81206738abbd213b07702bcbdada1dd43f72236ef3cffbb5/cryptography-46.0.5-cp311-abi3-manylinux_2_31_armv7l.whl", hash = "sha256:f145bba11b878005c496e93e257c1e88f154d278d2638e6450d17e0f31e558d2", size = 3984635, upload-time = "2026-02-10T19:17:18.792Z" }, + { url = "https://files.pythonhosted.org/packages/84/29/65b55622bde135aedf4565dc509d99b560ee4095e56989e815f8fd2aa910/cryptography-46.0.5-cp311-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:e9251e3be159d1020c4030bd2e5f84d6a43fe54b6c19c12f51cde9542a2817b2", size = 4277038, upload-time = "2026-02-10T19:17:20.256Z" }, + { url = "https://files.pythonhosted.org/packages/bc/36/45e76c68d7311432741faf1fbf7fac8a196a0a735ca21f504c75d37e2558/cryptography-46.0.5-cp311-abi3-manylinux_2_34_ppc64le.whl", hash = "sha256:47fb8a66058b80e509c47118ef8a75d14c455e81ac369050f20ba0d23e77fee0", size = 4912181, upload-time = "2026-02-10T19:17:21.825Z" }, + { url = "https://files.pythonhosted.org/packages/6d/1a/c1ba8fead184d6e3d5afcf03d569acac5ad063f3ac9fb7258af158f7e378/cryptography-46.0.5-cp311-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:4c3341037c136030cb46e4b1e17b7418ea4cbd9dd207e4a6f3b2b24e0d4ac731", size = 4456482, upload-time = "2026-02-10T19:17:25.133Z" }, + { url = "https://files.pythonhosted.org/packages/f9/e5/3fb22e37f66827ced3b902cf895e6a6bc1d095b5b26be26bd13c441fdf19/cryptography-46.0.5-cp311-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:890bcb4abd5a2d3f852196437129eb3667d62630333aacc13dfd470fad3aaa82", size = 4405497, upload-time = "2026-02-10T19:17:26.66Z" }, + { url = "https://files.pythonhosted.org/packages/1a/df/9d58bb32b1121a8a2f27383fabae4d63080c7ca60b9b5c88be742be04ee7/cryptography-46.0.5-cp311-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:80a8d7bfdf38f87ca30a5391c0c9ce4ed2926918e017c29ddf643d0ed2778ea1", size = 4667819, upload-time = "2026-02-10T19:17:28.569Z" }, + { url = "https://files.pythonhosted.org/packages/ea/ed/325d2a490c5e94038cdb0117da9397ece1f11201f425c4e9c57fe5b9f08b/cryptography-46.0.5-cp311-abi3-win32.whl", hash = "sha256:60ee7e19e95104d4c03871d7d7dfb3d22ef8a9b9c6778c94e1c8fcc8365afd48", size = 3028230, upload-time = "2026-02-10T19:17:30.518Z" }, + { url = "https://files.pythonhosted.org/packages/e9/5a/ac0f49e48063ab4255d9e3b79f5def51697fce1a95ea1370f03dc9db76f6/cryptography-46.0.5-cp311-abi3-win_amd64.whl", hash = "sha256:38946c54b16c885c72c4f59846be9743d699eee2b69b6988e0a00a01f46a61a4", size = 3480909, upload-time = "2026-02-10T19:17:32.083Z" }, + { url = "https://files.pythonhosted.org/packages/00/13/3d278bfa7a15a96b9dc22db5a12ad1e48a9eb3d40e1827ef66a5df75d0d0/cryptography-46.0.5-cp314-cp314t-macosx_10_9_universal2.whl", hash = "sha256:94a76daa32eb78d61339aff7952ea819b1734b46f73646a07decb40e5b3448e2", size = 7119287, upload-time = "2026-02-10T19:17:33.801Z" }, + { url = "https://files.pythonhosted.org/packages/67/c8/581a6702e14f0898a0848105cbefd20c058099e2c2d22ef4e476dfec75d7/cryptography-46.0.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:5be7bf2fb40769e05739dd0046e7b26f9d4670badc7b032d6ce4db64dddc0678", size = 4265728, upload-time = "2026-02-10T19:17:35.569Z" }, + { url = "https://files.pythonhosted.org/packages/dd/4a/ba1a65ce8fc65435e5a849558379896c957870dd64fecea97b1ad5f46a37/cryptography-46.0.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:fe346b143ff9685e40192a4960938545c699054ba11d4f9029f94751e3f71d87", size = 4408287, upload-time = "2026-02-10T19:17:36.938Z" }, + { url = "https://files.pythonhosted.org/packages/f8/67/8ffdbf7b65ed1ac224d1c2df3943553766914a8ca718747ee3871da6107e/cryptography-46.0.5-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:c69fd885df7d089548a42d5ec05be26050ebcd2283d89b3d30676eb32ff87dee", size = 4270291, upload-time = "2026-02-10T19:17:38.748Z" }, + { url = "https://files.pythonhosted.org/packages/f8/e5/f52377ee93bc2f2bba55a41a886fd208c15276ffbd2569f2ddc89d50e2c5/cryptography-46.0.5-cp314-cp314t-manylinux_2_28_ppc64le.whl", hash = "sha256:8293f3dea7fc929ef7240796ba231413afa7b68ce38fd21da2995549f5961981", size = 4927539, upload-time = "2026-02-10T19:17:40.241Z" }, + { url = "https://files.pythonhosted.org/packages/3b/02/cfe39181b02419bbbbcf3abdd16c1c5c8541f03ca8bda240debc467d5a12/cryptography-46.0.5-cp314-cp314t-manylinux_2_28_x86_64.whl", hash = "sha256:1abfdb89b41c3be0365328a410baa9df3ff8a9110fb75e7b52e66803ddabc9a9", size = 4442199, upload-time = "2026-02-10T19:17:41.789Z" }, + { url = "https://files.pythonhosted.org/packages/c0/96/2fcaeb4873e536cf71421a388a6c11b5bc846e986b2b069c79363dc1648e/cryptography-46.0.5-cp314-cp314t-manylinux_2_31_armv7l.whl", hash = "sha256:d66e421495fdb797610a08f43b05269e0a5ea7f5e652a89bfd5a7d3c1dee3648", size = 3960131, upload-time = "2026-02-10T19:17:43.379Z" }, + { url = "https://files.pythonhosted.org/packages/d8/d2/b27631f401ddd644e94c5cf33c9a4069f72011821cf3dc7309546b0642a0/cryptography-46.0.5-cp314-cp314t-manylinux_2_34_aarch64.whl", hash = "sha256:4e817a8920bfbcff8940ecfd60f23d01836408242b30f1a708d93198393a80b4", size = 4270072, upload-time = "2026-02-10T19:17:45.481Z" }, + { url = "https://files.pythonhosted.org/packages/f4/a7/60d32b0370dae0b4ebe55ffa10e8599a2a59935b5ece1b9f06edb73abdeb/cryptography-46.0.5-cp314-cp314t-manylinux_2_34_ppc64le.whl", hash = "sha256:68f68d13f2e1cb95163fa3b4db4bf9a159a418f5f6e7242564fc75fcae667fd0", size = 4892170, upload-time = "2026-02-10T19:17:46.997Z" }, + { url = "https://files.pythonhosted.org/packages/d2/b9/cf73ddf8ef1164330eb0b199a589103c363afa0cf794218c24d524a58eab/cryptography-46.0.5-cp314-cp314t-manylinux_2_34_x86_64.whl", hash = "sha256:a3d1fae9863299076f05cb8a778c467578262fae09f9dc0ee9b12eb4268ce663", size = 4441741, upload-time = "2026-02-10T19:17:48.661Z" }, + { url = "https://files.pythonhosted.org/packages/5f/eb/eee00b28c84c726fe8fa0158c65afe312d9c3b78d9d01daf700f1f6e37ff/cryptography-46.0.5-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:c4143987a42a2397f2fc3b4d7e3a7d313fbe684f67ff443999e803dd75a76826", size = 4396728, upload-time = "2026-02-10T19:17:50.058Z" }, + { url = "https://files.pythonhosted.org/packages/65/f4/6bc1a9ed5aef7145045114b75b77c2a8261b4d38717bd8dea111a63c3442/cryptography-46.0.5-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:7d731d4b107030987fd61a7f8ab512b25b53cef8f233a97379ede116f30eb67d", size = 4652001, upload-time = "2026-02-10T19:17:51.54Z" }, + { url = "https://files.pythonhosted.org/packages/86/ef/5d00ef966ddd71ac2e6951d278884a84a40ffbd88948ef0e294b214ae9e4/cryptography-46.0.5-cp314-cp314t-win32.whl", hash = "sha256:c3bcce8521d785d510b2aad26ae2c966092b7daa8f45dd8f44734a104dc0bc1a", size = 3003637, upload-time = "2026-02-10T19:17:52.997Z" }, + { url = "https://files.pythonhosted.org/packages/b7/57/f3f4160123da6d098db78350fdfd9705057aad21de7388eacb2401dceab9/cryptography-46.0.5-cp314-cp314t-win_amd64.whl", hash = "sha256:4d8ae8659ab18c65ced284993c2265910f6c9e650189d4e3f68445ef82a810e4", size = 3469487, upload-time = "2026-02-10T19:17:54.549Z" }, + { url = "https://files.pythonhosted.org/packages/e2/fa/a66aa722105ad6a458bebd64086ca2b72cdd361fed31763d20390f6f1389/cryptography-46.0.5-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:4108d4c09fbbf2789d0c926eb4152ae1760d5a2d97612b92d508d96c861e4d31", size = 7170514, upload-time = "2026-02-10T19:17:56.267Z" }, + { url = "https://files.pythonhosted.org/packages/0f/04/c85bdeab78c8bc77b701bf0d9bdcf514c044e18a46dcff330df5448631b0/cryptography-46.0.5-cp38-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:7d1f30a86d2757199cb2d56e48cce14deddf1f9c95f1ef1b64ee91ea43fe2e18", size = 4275349, upload-time = "2026-02-10T19:17:58.419Z" }, + { url = "https://files.pythonhosted.org/packages/5c/32/9b87132a2f91ee7f5223b091dc963055503e9b442c98fc0b8a5ca765fab0/cryptography-46.0.5-cp38-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:039917b0dc418bb9f6edce8a906572d69e74bd330b0b3fea4f79dab7f8ddd235", size = 4420667, upload-time = "2026-02-10T19:18:00.619Z" }, + { url = "https://files.pythonhosted.org/packages/a1/a6/a7cb7010bec4b7c5692ca6f024150371b295ee1c108bdc1c400e4c44562b/cryptography-46.0.5-cp38-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:ba2a27ff02f48193fc4daeadf8ad2590516fa3d0adeeb34336b96f7fa64c1e3a", size = 4276980, upload-time = "2026-02-10T19:18:02.379Z" }, + { url = "https://files.pythonhosted.org/packages/8e/7c/c4f45e0eeff9b91e3f12dbd0e165fcf2a38847288fcfd889deea99fb7b6d/cryptography-46.0.5-cp38-abi3-manylinux_2_28_ppc64le.whl", hash = "sha256:61aa400dce22cb001a98014f647dc21cda08f7915ceb95df0c9eaf84b4b6af76", size = 4939143, upload-time = "2026-02-10T19:18:03.964Z" }, + { url = "https://files.pythonhosted.org/packages/37/19/e1b8f964a834eddb44fa1b9a9976f4e414cbb7aa62809b6760c8803d22d1/cryptography-46.0.5-cp38-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:3ce58ba46e1bc2aac4f7d9290223cead56743fa6ab94a5d53292ffaac6a91614", size = 4453674, upload-time = "2026-02-10T19:18:05.588Z" }, + { url = "https://files.pythonhosted.org/packages/db/ed/db15d3956f65264ca204625597c410d420e26530c4e2943e05a0d2f24d51/cryptography-46.0.5-cp38-abi3-manylinux_2_31_armv7l.whl", hash = "sha256:420d0e909050490d04359e7fdb5ed7e667ca5c3c402b809ae2563d7e66a92229", size = 3978801, upload-time = "2026-02-10T19:18:07.167Z" }, + { url = "https://files.pythonhosted.org/packages/41/e2/df40a31d82df0a70a0daf69791f91dbb70e47644c58581d654879b382d11/cryptography-46.0.5-cp38-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:582f5fcd2afa31622f317f80426a027f30dc792e9c80ffee87b993200ea115f1", size = 4276755, upload-time = "2026-02-10T19:18:09.813Z" }, + { url = "https://files.pythonhosted.org/packages/33/45/726809d1176959f4a896b86907b98ff4391a8aa29c0aaaf9450a8a10630e/cryptography-46.0.5-cp38-abi3-manylinux_2_34_ppc64le.whl", hash = "sha256:bfd56bb4b37ed4f330b82402f6f435845a5f5648edf1ad497da51a8452d5d62d", size = 4901539, upload-time = "2026-02-10T19:18:11.263Z" }, + { url = "https://files.pythonhosted.org/packages/99/0f/a3076874e9c88ecb2ecc31382f6e7c21b428ede6f55aafa1aa272613e3cd/cryptography-46.0.5-cp38-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:a3d507bb6a513ca96ba84443226af944b0f7f47dcc9a399d110cd6146481d24c", size = 4452794, upload-time = "2026-02-10T19:18:12.914Z" }, + { url = "https://files.pythonhosted.org/packages/02/ef/ffeb542d3683d24194a38f66ca17c0a4b8bf10631feef44a7ef64e631b1a/cryptography-46.0.5-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:9f16fbdf4da055efb21c22d81b89f155f02ba420558db21288b3d0035bafd5f4", size = 4404160, upload-time = "2026-02-10T19:18:14.375Z" }, + { url = "https://files.pythonhosted.org/packages/96/93/682d2b43c1d5f1406ed048f377c0fc9fc8f7b0447a478d5c65ab3d3a66eb/cryptography-46.0.5-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:ced80795227d70549a411a4ab66e8ce307899fad2220ce5ab2f296e687eacde9", size = 4667123, upload-time = "2026-02-10T19:18:15.886Z" }, + { url = "https://files.pythonhosted.org/packages/45/2d/9c5f2926cb5300a8eefc3f4f0b3f3df39db7f7ce40c8365444c49363cbda/cryptography-46.0.5-cp38-abi3-win32.whl", hash = "sha256:02f547fce831f5096c9a567fd41bc12ca8f11df260959ecc7c3202555cc47a72", size = 3010220, upload-time = "2026-02-10T19:18:17.361Z" }, + { url = "https://files.pythonhosted.org/packages/48/ef/0c2f4a8e31018a986949d34a01115dd057bf536905dca38897bacd21fac3/cryptography-46.0.5-cp38-abi3-win_amd64.whl", hash = "sha256:556e106ee01aa13484ce9b0239bca667be5004efb0aabbed28d353df86445595", size = 3467050, upload-time = "2026-02-10T19:18:18.899Z" }, + { url = "https://files.pythonhosted.org/packages/eb/dd/2d9fdb07cebdf3d51179730afb7d5e576153c6744c3ff8fded23030c204e/cryptography-46.0.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:3b4995dc971c9fb83c25aa44cf45f02ba86f71ee600d81091c2f0cbae116b06c", size = 3476964, upload-time = "2026-02-10T19:18:20.687Z" }, + { url = "https://files.pythonhosted.org/packages/e9/6f/6cc6cc9955caa6eaf83660b0da2b077c7fe8ff9950a3c5e45d605038d439/cryptography-46.0.5-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:bc84e875994c3b445871ea7181d424588171efec3e185dced958dad9e001950a", size = 4218321, upload-time = "2026-02-10T19:18:22.349Z" }, + { url = "https://files.pythonhosted.org/packages/3e/5d/c4da701939eeee699566a6c1367427ab91a8b7088cc2328c09dbee940415/cryptography-46.0.5-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:2ae6971afd6246710480e3f15824ed3029a60fc16991db250034efd0b9fb4356", size = 4381786, upload-time = "2026-02-10T19:18:24.529Z" }, + { url = "https://files.pythonhosted.org/packages/ac/97/a538654732974a94ff96c1db621fa464f455c02d4bb7d2652f4edc21d600/cryptography-46.0.5-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl", hash = "sha256:d861ee9e76ace6cf36a6a89b959ec08e7bc2493ee39d07ffe5acb23ef46d27da", size = 4217990, upload-time = "2026-02-10T19:18:25.957Z" }, + { url = "https://files.pythonhosted.org/packages/ae/11/7e500d2dd3ba891197b9efd2da5454b74336d64a7cc419aa7327ab74e5f6/cryptography-46.0.5-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl", hash = "sha256:2b7a67c9cd56372f3249b39699f2ad479f6991e62ea15800973b956f4b73e257", size = 4381252, upload-time = "2026-02-10T19:18:27.496Z" }, + { url = "https://files.pythonhosted.org/packages/bc/58/6b3d24e6b9bc474a2dcdee65dfd1f008867015408a271562e4b690561a4d/cryptography-46.0.5-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:8456928655f856c6e1533ff59d5be76578a7157224dbd9ce6872f25055ab9ab7", size = 3407605, upload-time = "2026-02-10T19:18:29.233Z" }, +] + +[[package]] +name = "cuda-bindings" +version = "12.9.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cuda-pathfinder", marker = "sys_platform != 'emscripten' and sys_platform != 'win32'" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/45/e7/b47792cc2d01c7e1d37c32402182524774dadd2d26339bd224e0e913832e/cuda_bindings-12.9.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c912a3d9e6b6651853eed8eed96d6800d69c08e94052c292fec3f282c5a817c9", size = 12210593, upload-time = "2025-10-21T14:51:36.574Z" }, + { url = "https://files.pythonhosted.org/packages/a9/c1/dabe88f52c3e3760d861401bb994df08f672ec893b8f7592dc91626adcf3/cuda_bindings-12.9.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fda147a344e8eaeca0c6ff113d2851ffca8f7dfc0a6c932374ee5c47caa649c8", size = 12151019, upload-time = "2025-10-21T14:51:43.167Z" }, + { url = "https://files.pythonhosted.org/packages/63/56/e465c31dc9111be3441a9ba7df1941fe98f4aa6e71e8788a3fb4534ce24d/cuda_bindings-12.9.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:32bdc5a76906be4c61eb98f546a6786c5773a881f3b166486449b5d141e4a39f", size = 11906628, upload-time = "2025-10-21T14:51:49.905Z" }, + { url = "https://files.pythonhosted.org/packages/a3/84/1e6be415e37478070aeeee5884c2022713c1ecc735e6d82d744de0252eee/cuda_bindings-12.9.4-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:56e0043c457a99ac473ddc926fe0dc4046694d99caef633e92601ab52cbe17eb", size = 11925991, upload-time = "2025-10-21T14:51:56.535Z" }, + { url = "https://files.pythonhosted.org/packages/d1/af/6dfd8f2ed90b1d4719bc053ff8940e494640fe4212dc3dd72f383e4992da/cuda_bindings-12.9.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8b72ee72a9cc1b531db31eebaaee5c69a8ec3500e32c6933f2d3b15297b53686", size = 11922703, upload-time = "2025-10-21T14:52:03.585Z" }, + { url = "https://files.pythonhosted.org/packages/6c/19/90ac264acc00f6df8a49378eedec9fd2db3061bf9263bf9f39fd3d8377c3/cuda_bindings-12.9.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d80bffc357df9988dca279734bc9674c3934a654cab10cadeed27ce17d8635ee", size = 11924658, upload-time = "2025-10-21T14:52:10.411Z" }, +] + +[[package]] +name = "cuda-pathfinder" +version = "1.3.5" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ca/b5/e4056e4058fb56519fcddf1face6fe3ff2398953b41615fafe9fb1540bf2/cuda_pathfinder-1.3.5-py3-none-any.whl", hash = "sha256:6c88220f8637cb35d2a75c620d72efebf683b248b923713d8fbe235844c1a4b9", size = 33711, upload-time = "2026-02-23T18:34:27.253Z" }, +] + [[package]] name = "dataclasses-json" version = "0.6.7" @@ -305,6 +780,131 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/c3/be/d0d44e092656fe7a06b55e6103cbce807cdbdee17884a5367c68c9860853/dataclasses_json-0.6.7-py3-none-any.whl", hash = "sha256:0dbf33f26c8d5305befd61b39d2b3414e8a407bedc2834dea9b8d642666fb40a", size = 28686, upload-time = "2024-06-09T16:20:16.715Z" }, ] +[[package]] +name = "datasets" +version = "4.5.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "dill" }, + { name = "filelock" }, + { name = "fsspec", extra = ["http"] }, + { name = "httpx" }, + { name = "huggingface-hub" }, + { name = "multiprocess" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pandas" }, + { name = "pyarrow" }, + { name = "pyyaml" }, + { name = "requests" }, + { name = "tqdm" }, + { name = "xxhash" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/55/bf/bb927bde63d649296c83e883171ae77074717c1b80fe2868b328bd0dbcbb/datasets-4.5.0.tar.gz", hash = "sha256:00c698ce1c2452e646cc5fad47fef39d3fe78dd650a8a6eb205bb45eb63cd500", size = 588384, upload-time = "2026-01-14T18:27:54.297Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fc/d5/0d563ea3c205eee226dc8053cf7682a8ac588db8acecd0eda2b587987a0b/datasets-4.5.0-py3-none-any.whl", hash = "sha256:b5d7e08096ffa407dd69e58b1c0271c9b2506140839b8d99af07375ad31b6726", size = 515196, upload-time = "2026-01-14T18:27:52.419Z" }, +] + +[[package]] +name = "debugpy" +version = "1.8.20" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e0/b7/cd8080344452e4874aae67c40d8940e2b4d47b01601a8fd9f44786c757c7/debugpy-1.8.20.tar.gz", hash = "sha256:55bc8701714969f1ab89a6d5f2f3d40c36f91b2cbe2f65d98bf8196f6a6a2c33", size = 1645207, upload-time = "2026-01-29T23:03:28.199Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/51/56/c3baf5cbe4dd77427fd9aef99fcdade259ad128feeb8a786c246adb838e5/debugpy-1.8.20-cp311-cp311-macosx_15_0_universal2.whl", hash = "sha256:eada6042ad88fa1571b74bd5402ee8b86eded7a8f7b827849761700aff171f1b", size = 2208318, upload-time = "2026-01-29T23:03:36.481Z" }, + { url = "https://files.pythonhosted.org/packages/9a/7d/4fa79a57a8e69fe0d9763e98d1110320f9ecd7f1f362572e3aafd7417c9d/debugpy-1.8.20-cp311-cp311-manylinux_2_34_x86_64.whl", hash = "sha256:7de0b7dfeedc504421032afba845ae2a7bcc32ddfb07dae2c3ca5442f821c344", size = 3171493, upload-time = "2026-01-29T23:03:37.775Z" }, + { url = "https://files.pythonhosted.org/packages/7d/f2/1e8f8affe51e12a26f3a8a8a4277d6e60aa89d0a66512f63b1e799d424a4/debugpy-1.8.20-cp311-cp311-win32.whl", hash = "sha256:773e839380cf459caf73cc533ea45ec2737a5cc184cf1b3b796cd4fd98504fec", size = 5209240, upload-time = "2026-01-29T23:03:39.109Z" }, + { url = "https://files.pythonhosted.org/packages/d5/92/1cb532e88560cbee973396254b21bece8c5d7c2ece958a67afa08c9f10dc/debugpy-1.8.20-cp311-cp311-win_amd64.whl", hash = "sha256:1f7650546e0eded1902d0f6af28f787fa1f1dbdbc97ddabaf1cd963a405930cb", size = 5233481, upload-time = "2026-01-29T23:03:40.659Z" }, + { url = "https://files.pythonhosted.org/packages/14/57/7f34f4736bfb6e00f2e4c96351b07805d83c9a7b33d28580ae01374430f7/debugpy-1.8.20-cp312-cp312-macosx_15_0_universal2.whl", hash = "sha256:4ae3135e2089905a916909ef31922b2d733d756f66d87345b3e5e52b7a55f13d", size = 2550686, upload-time = "2026-01-29T23:03:42.023Z" }, + { url = "https://files.pythonhosted.org/packages/ab/78/b193a3975ca34458f6f0e24aaf5c3e3da72f5401f6054c0dfd004b41726f/debugpy-1.8.20-cp312-cp312-manylinux_2_34_x86_64.whl", hash = "sha256:88f47850a4284b88bd2bfee1f26132147d5d504e4e86c22485dfa44b97e19b4b", size = 4310588, upload-time = "2026-01-29T23:03:43.314Z" }, + { url = "https://files.pythonhosted.org/packages/c1/55/f14deb95eaf4f30f07ef4b90a8590fc05d9e04df85ee379712f6fb6736d7/debugpy-1.8.20-cp312-cp312-win32.whl", hash = "sha256:4057ac68f892064e5f98209ab582abfee3b543fb55d2e87610ddc133a954d390", size = 5331372, upload-time = "2026-01-29T23:03:45.526Z" }, + { url = "https://files.pythonhosted.org/packages/a1/39/2bef246368bd42f9bd7cba99844542b74b84dacbdbea0833e610f384fee8/debugpy-1.8.20-cp312-cp312-win_amd64.whl", hash = "sha256:a1a8f851e7cf171330679ef6997e9c579ef6dd33c9098458bd9986a0f4ca52e3", size = 5372835, upload-time = "2026-01-29T23:03:47.245Z" }, + { url = "https://files.pythonhosted.org/packages/15/e2/fc500524cc6f104a9d049abc85a0a8b3f0d14c0a39b9c140511c61e5b40b/debugpy-1.8.20-cp313-cp313-macosx_15_0_universal2.whl", hash = "sha256:5dff4bb27027821fdfcc9e8f87309a28988231165147c31730128b1c983e282a", size = 2539560, upload-time = "2026-01-29T23:03:48.738Z" }, + { url = "https://files.pythonhosted.org/packages/90/83/fb33dcea789ed6018f8da20c5a9bc9d82adc65c0c990faed43f7c955da46/debugpy-1.8.20-cp313-cp313-manylinux_2_34_x86_64.whl", hash = "sha256:84562982dd7cf5ebebfdea667ca20a064e096099997b175fe204e86817f64eaf", size = 4293272, upload-time = "2026-01-29T23:03:50.169Z" }, + { url = "https://files.pythonhosted.org/packages/a6/25/b1e4a01bfb824d79a6af24b99ef291e24189080c93576dfd9b1a2815cd0f/debugpy-1.8.20-cp313-cp313-win32.whl", hash = "sha256:da11dea6447b2cadbf8ce2bec59ecea87cc18d2c574980f643f2d2dfe4862393", size = 5331208, upload-time = "2026-01-29T23:03:51.547Z" }, + { url = "https://files.pythonhosted.org/packages/13/f7/a0b368ce54ffff9e9028c098bd2d28cfc5b54f9f6c186929083d4c60ba58/debugpy-1.8.20-cp313-cp313-win_amd64.whl", hash = "sha256:eb506e45943cab2efb7c6eafdd65b842f3ae779f020c82221f55aca9de135ed7", size = 5372930, upload-time = "2026-01-29T23:03:53.585Z" }, + { url = "https://files.pythonhosted.org/packages/33/2e/f6cb9a8a13f5058f0a20fe09711a7b726232cd5a78c6a7c05b2ec726cff9/debugpy-1.8.20-cp314-cp314-macosx_15_0_universal2.whl", hash = "sha256:9c74df62fc064cd5e5eaca1353a3ef5a5d50da5eb8058fcef63106f7bebe6173", size = 2538066, upload-time = "2026-01-29T23:03:54.999Z" }, + { url = "https://files.pythonhosted.org/packages/c5/56/6ddca50b53624e1ca3ce1d1e49ff22db46c47ea5fb4c0cc5c9b90a616364/debugpy-1.8.20-cp314-cp314-manylinux_2_34_x86_64.whl", hash = "sha256:077a7447589ee9bc1ff0cdf443566d0ecf540ac8aa7333b775ebcb8ce9f4ecad", size = 4269425, upload-time = "2026-01-29T23:03:56.518Z" }, + { url = "https://files.pythonhosted.org/packages/c5/d9/d64199c14a0d4c476df46c82470a3ce45c8d183a6796cfb5e66533b3663c/debugpy-1.8.20-cp314-cp314-win32.whl", hash = "sha256:352036a99dd35053b37b7803f748efc456076f929c6a895556932eaf2d23b07f", size = 5331407, upload-time = "2026-01-29T23:03:58.481Z" }, + { url = "https://files.pythonhosted.org/packages/e0/d9/1f07395b54413432624d61524dfd98c1a7c7827d2abfdb8829ac92638205/debugpy-1.8.20-cp314-cp314-win_amd64.whl", hash = "sha256:a98eec61135465b062846112e5ecf2eebb855305acc1dfbae43b72903b8ab5be", size = 5372521, upload-time = "2026-01-29T23:03:59.864Z" }, + { url = "https://files.pythonhosted.org/packages/e0/c3/7f67dea8ccf8fdcb9c99033bbe3e90b9e7395415843accb81428c441be2d/debugpy-1.8.20-py2.py3-none-any.whl", hash = "sha256:5be9bed9ae3be00665a06acaa48f8329d2b9632f15fd09f6a9a8c8d9907e54d7", size = 5337658, upload-time = "2026-01-29T23:04:17.404Z" }, +] + +[[package]] +name = "decorator" +version = "5.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/43/fa/6d96a0978d19e17b68d634497769987b16c8f4cd0a7a05048bec693caa6b/decorator-5.2.1.tar.gz", hash = "sha256:65f266143752f734b0a7cc83c46f4618af75b8c5911b00ccb61d0ac9b6da0360", size = 56711, upload-time = "2025-02-24T04:41:34.073Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4e/8c/f3147f5c4b73e7550fe5f9352eaa956ae838d5c51eb58e7a25b9f3e2643b/decorator-5.2.1-py3-none-any.whl", hash = "sha256:d316bb415a2d9e2d2b3abcc4084c6502fc09240e292cd76a76afc106a1c8e04a", size = 9190, upload-time = "2025-02-24T04:41:32.565Z" }, +] + +[[package]] +name = "defusedxml" +version = "0.7.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0f/d5/c66da9b79e5bdb124974bfe172b4daf3c984ebd9c2a06e2b8a4dc7331c72/defusedxml-0.7.1.tar.gz", hash = "sha256:1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51aa3e69", size = 75520, upload-time = "2021-03-08T10:59:26.269Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/07/6c/aa3f2f849e01cb6a001cd8554a88d4c77c5c1a31c95bdf1cf9301e6d9ef4/defusedxml-0.7.1-py2.py3-none-any.whl", hash = "sha256:a352e7e428770286cc899e2542b6cdaedb2b4953ff269a210103ec58f6198a61", size = 25604, upload-time = "2021-03-08T10:59:24.45Z" }, +] + +[[package]] +name = "deprecation" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5a/d3/8ae2869247df154b64c1884d7346d412fed0c49df84db635aab2d1c40e62/deprecation-2.1.0.tar.gz", hash = "sha256:72b3bde64e5d778694b0cf68178aed03d15e15477116add3fb773e581f9518ff", size = 173788, upload-time = "2020-04-20T14:23:38.738Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/02/c3/253a89ee03fc9b9682f1541728eb66db7db22148cd94f89ab22528cd1e1b/deprecation-2.1.0-py2.py3-none-any.whl", hash = "sha256:a10811591210e1fb0e768a8c25517cabeabcba6f0bf96564f8ff45189f90b14a", size = 11178, upload-time = "2020-04-20T14:23:36.581Z" }, +] + +[[package]] +name = "dill" +version = "0.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/12/80/630b4b88364e9a8c8c5797f4602d0f76ef820909ee32f0bacb9f90654042/dill-0.4.0.tar.gz", hash = "sha256:0633f1d2df477324f53a895b02c901fb961bdbf65a17122586ea7019292cbcf0", size = 186976, upload-time = "2025-04-16T00:41:48.867Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/50/3d/9373ad9c56321fdab5b41197068e1d8c25883b3fea29dd361f9b55116869/dill-0.4.0-py3-none-any.whl", hash = "sha256:44f54bf6412c2c8464c14e8243eb163690a9800dbe2c367330883b19c7561049", size = 119668, upload-time = "2025-04-16T00:41:47.671Z" }, +] + +[[package]] +name = "diskcache" +version = "5.6.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3f/21/1c1ffc1a039ddcc459db43cc108658f32c57d271d7289a2794e401d0fdb6/diskcache-5.6.3.tar.gz", hash = "sha256:2c3a3fa2743d8535d832ec61c2054a1641f41775aa7c556758a109941e33e4fc", size = 67916, upload-time = "2023-08-31T06:12:00.316Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3f/27/4570e78fc0bf5ea0ca45eb1de3818a23787af9b390c0b0a0033a1b8236f9/diskcache-5.6.3-py3-none-any.whl", hash = "sha256:5e31b2d5fbad117cc363ebaf6b689474db18a1f6438bc82358b024abd4c2ca19", size = 45550, upload-time = "2023-08-31T06:11:58.822Z" }, +] + +[[package]] +name = "distro" +version = "1.9.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/fc/f8/98eea607f65de6527f8a2e8885fc8015d3e6f5775df186e443e0964a11c3/distro-1.9.0.tar.gz", hash = "sha256:2fa77c6fd8940f116ee1d6b94a2f90b13b5ea8d019b98bc8bafdcabcdd9bdbed", size = 60722, upload-time = "2023-12-24T09:54:32.31Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/12/b3/231ffd4ab1fc9d679809f356cebee130ac7daa00d6d6f3206dd4fd137e9e/distro-1.9.0-py3-none-any.whl", hash = "sha256:7bffd925d65168f85027d8da9af6bddab658135b840670a223589bc0c8ef02b2", size = 20277, upload-time = "2023-12-24T09:54:30.421Z" }, +] + +[[package]] +name = "docstring-parser" +version = "0.17.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b2/9d/c3b43da9515bd270df0f80548d9944e389870713cc1fe2b8fb35fe2bcefd/docstring_parser-0.17.0.tar.gz", hash = "sha256:583de4a309722b3315439bb31d64ba3eebada841f2e2cee23b99df001434c912", size = 27442, upload-time = "2025-07-21T07:35:01.868Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/55/e2/2537ebcff11c1ee1ff17d8d0b6f4db75873e3b0fb32c2d4a2ee31ecb310a/docstring_parser-0.17.0-py3-none-any.whl", hash = "sha256:cf2569abd23dce8099b300f9b4fa8191e9582dda731fd533daf54c4551658708", size = 36896, upload-time = "2025-07-21T07:35:00.684Z" }, +] + +[[package]] +name = "dynaconf" +version = "3.2.12" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cd/bd/7a6f84b68268fe1d12e709faec7d293e0c37c9c03bacaf363de41e7e7568/dynaconf-3.2.12.tar.gz", hash = "sha256:29cea583b007d890e6031fa89c0ac489b631c73dbee83bcd5e6f97602c26354e", size = 313801, upload-time = "2025-10-10T19:54:06.164Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/68/51adede38ab2ee9ecfddb8b60a80a42b618a72f1018fcf60974e5d852831/dynaconf-3.2.12-py2.py3-none-any.whl", hash = "sha256:eb2a11865917dff8810c6098cd736b8f4d2f4e39ad914500e2dfbe064b82c499", size = 237788, upload-time = "2025-10-10T19:54:03.731Z" }, +] + [[package]] name = "elastic-transport" version = "8.17.1" @@ -338,6 +938,151 @@ vectorstore-mmr = [ { name = "simsimd" }, ] +[[package]] +name = "evidently" +version = "0.7.20" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "cryptography" }, + { name = "deprecation" }, + { name = "dynaconf" }, + { name = "fsspec" }, + { name = "iterative-telemetry" }, + { name = "litestar" }, + { name = "nltk" }, + { name = "numpy" }, + { name = "opentelemetry-proto" }, + { name = "pandas", extra = ["parquet"] }, + { name = "plotly" }, + { name = "pydantic" }, + { name = "pyyaml" }, + { name = "requests" }, + { name = "rich" }, + { name = "scikit-learn" }, + { name = "scipy" }, + { name = "statsmodels" }, + { name = "typer" }, + { name = "typing-inspect" }, + { name = "ujson" }, + { name = "urllib3" }, + { name = "uuid6" }, + { name = "uvicorn", extra = ["standard"] }, + { name = "watchdog" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7b/79/b04e7a51b31611e30a0704babd5381bfd0c5face6e33a839bbb603d7362d/evidently-0.7.20.tar.gz", hash = "sha256:726d6ebdc4e29a94a27a2ee28546e076055aebcdb9d43b2e5126ae23483b8fbd", size = 7674556, upload-time = "2026-01-09T11:54:16.159Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/32/6e/ac826471e76fe3ada1312561ffe6cb6ffaa4ea9d47fd6c42e1e307748141/evidently-0.7.20-py3-none-any.whl", hash = "sha256:af75da94c321d642b9706e64841abb78421cfda110f375ecfa0f157dcbbb0bef", size = 11739782, upload-time = "2026-01-09T11:54:13.982Z" }, +] + +[[package]] +name = "executing" +version = "2.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cc/28/c14e053b6762b1044f34a13aab6859bbf40456d37d23aa286ac24cfd9a5d/executing-2.2.1.tar.gz", hash = "sha256:3632cc370565f6648cc328b32435bd120a1e4ebb20c77e3fdde9a13cd1e533c4", size = 1129488, upload-time = "2025-09-01T09:48:10.866Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c1/ea/53f2148663b321f21b5a606bd5f191517cf40b7072c0497d3c92c4a13b1e/executing-2.2.1-py2.py3-none-any.whl", hash = "sha256:760643d3452b4d777d295bb167ccc74c64a81df23fb5e08eff250c425a4b2017", size = 28317, upload-time = "2025-09-01T09:48:08.5Z" }, +] + +[[package]] +name = "faker" +version = "40.5.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "tzdata", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/03/2a/96fff3edcb10f6505143448a4b91535f77b74865cec45be52690ee280443/faker-40.5.1.tar.gz", hash = "sha256:70222361cd82aa10cb86066d1a4e8f47f2bcdc919615c412045a69c4e6da0cd3", size = 1952684, upload-time = "2026-02-23T21:34:38.362Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4d/a9/1eed4db92d0aec2f9bfdf1faae0ab0418b5e121dda5701f118a7a4f0cd6a/faker-40.5.1-py3-none-any.whl", hash = "sha256:c69640c1e13bad49b4bcebcbf1b52f9f1a872b6ea186c248ada34d798f1661bf", size = 1987053, upload-time = "2026-02-23T21:34:36.418Z" }, +] + +[[package]] +name = "fastjsonschema" +version = "2.21.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/20/b5/23b216d9d985a956623b6bd12d4086b60f0059b27799f23016af04a74ea1/fastjsonschema-2.21.2.tar.gz", hash = "sha256:b1eb43748041c880796cd077f1a07c3d94e93ae84bba5ed36800a33554ae05de", size = 374130, upload-time = "2025-08-14T18:49:36.666Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cb/a8/20d0723294217e47de6d9e2e40fd4a9d2f7c4b6ef974babd482a59743694/fastjsonschema-2.21.2-py3-none-any.whl", hash = "sha256:1c797122d0a86c5cace2e54bf4e819c36223b552017172f32c5c024a6b77e463", size = 24024, upload-time = "2025-08-14T18:49:34.776Z" }, +] + +[[package]] +name = "fastuuid" +version = "0.14.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c3/7d/d9daedf0f2ebcacd20d599928f8913e9d2aea1d56d2d355a93bfa2b611d7/fastuuid-0.14.0.tar.gz", hash = "sha256:178947fc2f995b38497a74172adee64fdeb8b7ec18f2a5934d037641ba265d26", size = 18232, upload-time = "2025-10-19T22:19:22.402Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/98/f3/12481bda4e5b6d3e698fbf525df4443cc7dce746f246b86b6fcb2fba1844/fastuuid-0.14.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:73946cb950c8caf65127d4e9a325e2b6be0442a224fd51ba3b6ac44e1912ce34", size = 516386, upload-time = "2025-10-19T22:42:40.176Z" }, + { url = "https://files.pythonhosted.org/packages/59/19/2fc58a1446e4d72b655648eb0879b04e88ed6fa70d474efcf550f640f6ec/fastuuid-0.14.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:12ac85024637586a5b69645e7ed986f7535106ed3013640a393a03e461740cb7", size = 264569, upload-time = "2025-10-19T22:25:50.977Z" }, + { url = "https://files.pythonhosted.org/packages/78/29/3c74756e5b02c40cfcc8b1d8b5bac4edbd532b55917a6bcc9113550e99d1/fastuuid-0.14.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:05a8dde1f395e0c9b4be515b7a521403d1e8349443e7641761af07c7ad1624b1", size = 254366, upload-time = "2025-10-19T22:29:49.166Z" }, + { url = "https://files.pythonhosted.org/packages/52/96/d761da3fccfa84f0f353ce6e3eb8b7f76b3aa21fd25e1b00a19f9c80a063/fastuuid-0.14.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:09378a05020e3e4883dfdab438926f31fea15fd17604908f3d39cbeb22a0b4dc", size = 278978, upload-time = "2025-10-19T22:35:41.306Z" }, + { url = "https://files.pythonhosted.org/packages/fc/c2/f84c90167cc7765cb82b3ff7808057608b21c14a38531845d933a4637307/fastuuid-0.14.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbb0c4b15d66b435d2538f3827f05e44e2baafcc003dd7d8472dc67807ab8fd8", size = 279692, upload-time = "2025-10-19T22:25:36.997Z" }, + { url = "https://files.pythonhosted.org/packages/af/7b/4bacd03897b88c12348e7bd77943bac32ccf80ff98100598fcff74f75f2e/fastuuid-0.14.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:cd5a7f648d4365b41dbf0e38fe8da4884e57bed4e77c83598e076ac0c93995e7", size = 303384, upload-time = "2025-10-19T22:29:46.578Z" }, + { url = "https://files.pythonhosted.org/packages/c0/a2/584f2c29641df8bd810d00c1f21d408c12e9ad0c0dafdb8b7b29e5ddf787/fastuuid-0.14.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c0a94245afae4d7af8c43b3159d5e3934c53f47140be0be624b96acd672ceb73", size = 460921, upload-time = "2025-10-19T22:36:42.006Z" }, + { url = "https://files.pythonhosted.org/packages/24/68/c6b77443bb7764c760e211002c8638c0c7cce11cb584927e723215ba1398/fastuuid-0.14.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:2b29e23c97e77c3a9514d70ce343571e469098ac7f5a269320a0f0b3e193ab36", size = 480575, upload-time = "2025-10-19T22:28:18.975Z" }, + { url = "https://files.pythonhosted.org/packages/5a/87/93f553111b33f9bb83145be12868c3c475bf8ea87c107063d01377cc0e8e/fastuuid-0.14.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1e690d48f923c253f28151b3a6b4e335f2b06bf669c68a02665bc150b7839e94", size = 452317, upload-time = "2025-10-19T22:25:32.75Z" }, + { url = "https://files.pythonhosted.org/packages/9e/8c/a04d486ca55b5abb7eaa65b39df8d891b7b1635b22db2163734dc273579a/fastuuid-0.14.0-cp311-cp311-win32.whl", hash = "sha256:a6f46790d59ab38c6aa0e35c681c0484b50dc0acf9e2679c005d61e019313c24", size = 154804, upload-time = "2025-10-19T22:24:15.615Z" }, + { url = "https://files.pythonhosted.org/packages/9c/b2/2d40bf00820de94b9280366a122cbaa60090c8cf59e89ac3938cf5d75895/fastuuid-0.14.0-cp311-cp311-win_amd64.whl", hash = "sha256:e150eab56c95dc9e3fefc234a0eedb342fac433dacc273cd4d150a5b0871e1fa", size = 156099, upload-time = "2025-10-19T22:24:31.646Z" }, + { url = "https://files.pythonhosted.org/packages/02/a2/e78fcc5df65467f0d207661b7ef86c5b7ac62eea337c0c0fcedbeee6fb13/fastuuid-0.14.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:77e94728324b63660ebf8adb27055e92d2e4611645bf12ed9d88d30486471d0a", size = 510164, upload-time = "2025-10-19T22:31:45.635Z" }, + { url = "https://files.pythonhosted.org/packages/2b/b3/c846f933f22f581f558ee63f81f29fa924acd971ce903dab1a9b6701816e/fastuuid-0.14.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:caa1f14d2102cb8d353096bc6ef6c13b2c81f347e6ab9d6fbd48b9dea41c153d", size = 261837, upload-time = "2025-10-19T22:38:38.53Z" }, + { url = "https://files.pythonhosted.org/packages/54/ea/682551030f8c4fa9a769d9825570ad28c0c71e30cf34020b85c1f7ee7382/fastuuid-0.14.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d23ef06f9e67163be38cece704170486715b177f6baae338110983f99a72c070", size = 251370, upload-time = "2025-10-19T22:40:26.07Z" }, + { url = "https://files.pythonhosted.org/packages/14/dd/5927f0a523d8e6a76b70968e6004966ee7df30322f5fc9b6cdfb0276646a/fastuuid-0.14.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0c9ec605ace243b6dbe3bd27ebdd5d33b00d8d1d3f580b39fdd15cd96fd71796", size = 277766, upload-time = "2025-10-19T22:37:23.779Z" }, + { url = "https://files.pythonhosted.org/packages/16/6e/c0fb547eef61293153348f12e0f75a06abb322664b34a1573a7760501336/fastuuid-0.14.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:808527f2407f58a76c916d6aa15d58692a4a019fdf8d4c32ac7ff303b7d7af09", size = 278105, upload-time = "2025-10-19T22:26:56.821Z" }, + { url = "https://files.pythonhosted.org/packages/2d/b1/b9c75e03b768f61cf2e84ee193dc18601aeaf89a4684b20f2f0e9f52b62c/fastuuid-0.14.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2fb3c0d7fef6674bbeacdd6dbd386924a7b60b26de849266d1ff6602937675c8", size = 301564, upload-time = "2025-10-19T22:30:31.604Z" }, + { url = "https://files.pythonhosted.org/packages/fc/fa/f7395fdac07c7a54f18f801744573707321ca0cee082e638e36452355a9d/fastuuid-0.14.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab3f5d36e4393e628a4df337c2c039069344db5f4b9d2a3c9cea48284f1dd741", size = 459659, upload-time = "2025-10-19T22:31:32.341Z" }, + { url = "https://files.pythonhosted.org/packages/66/49/c9fd06a4a0b1f0f048aacb6599e7d96e5d6bc6fa680ed0d46bf111929d1b/fastuuid-0.14.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:b9a0ca4f03b7e0b01425281ffd44e99d360e15c895f1907ca105854ed85e2057", size = 478430, upload-time = "2025-10-19T22:26:22.962Z" }, + { url = "https://files.pythonhosted.org/packages/be/9c/909e8c95b494e8e140e8be6165d5fc3f61fdc46198c1554df7b3e1764471/fastuuid-0.14.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:3acdf655684cc09e60fb7e4cf524e8f42ea760031945aa8086c7eae2eeeabeb8", size = 450894, upload-time = "2025-10-19T22:27:01.647Z" }, + { url = "https://files.pythonhosted.org/packages/90/eb/d29d17521976e673c55ef7f210d4cdd72091a9ec6755d0fd4710d9b3c871/fastuuid-0.14.0-cp312-cp312-win32.whl", hash = "sha256:9579618be6280700ae36ac42c3efd157049fe4dd40ca49b021280481c78c3176", size = 154374, upload-time = "2025-10-19T22:29:19.879Z" }, + { url = "https://files.pythonhosted.org/packages/cc/fc/f5c799a6ea6d877faec0472d0b27c079b47c86b1cdc577720a5386483b36/fastuuid-0.14.0-cp312-cp312-win_amd64.whl", hash = "sha256:d9e4332dc4ba054434a9594cbfaf7823b57993d7d8e7267831c3e059857cf397", size = 156550, upload-time = "2025-10-19T22:27:49.658Z" }, + { url = "https://files.pythonhosted.org/packages/a5/83/ae12dd39b9a39b55d7f90abb8971f1a5f3c321fd72d5aa83f90dc67fe9ed/fastuuid-0.14.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:77a09cb7427e7af74c594e409f7731a0cf887221de2f698e1ca0ebf0f3139021", size = 510720, upload-time = "2025-10-19T22:42:34.633Z" }, + { url = "https://files.pythonhosted.org/packages/53/b0/a4b03ff5d00f563cc7546b933c28cb3f2a07344b2aec5834e874f7d44143/fastuuid-0.14.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:9bd57289daf7b153bfa3e8013446aa144ce5e8c825e9e366d455155ede5ea2dc", size = 262024, upload-time = "2025-10-19T22:30:25.482Z" }, + { url = "https://files.pythonhosted.org/packages/9c/6d/64aee0a0f6a58eeabadd582e55d0d7d70258ffdd01d093b30c53d668303b/fastuuid-0.14.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:ac60fc860cdf3c3f327374db87ab8e064c86566ca8c49d2e30df15eda1b0c2d5", size = 251679, upload-time = "2025-10-19T22:36:14.096Z" }, + { url = "https://files.pythonhosted.org/packages/60/f5/a7e9cda8369e4f7919d36552db9b2ae21db7915083bc6336f1b0082c8b2e/fastuuid-0.14.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ab32f74bd56565b186f036e33129da77db8be09178cd2f5206a5d4035fb2a23f", size = 277862, upload-time = "2025-10-19T22:36:23.302Z" }, + { url = "https://files.pythonhosted.org/packages/f0/d3/8ce11827c783affffd5bd4d6378b28eb6cc6d2ddf41474006b8d62e7448e/fastuuid-0.14.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:33e678459cf4addaedd9936bbb038e35b3f6b2061330fd8f2f6a1d80414c0f87", size = 278278, upload-time = "2025-10-19T22:29:43.809Z" }, + { url = "https://files.pythonhosted.org/packages/a2/51/680fb6352d0bbade04036da46264a8001f74b7484e2fd1f4da9e3db1c666/fastuuid-0.14.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1e3cc56742f76cd25ecb98e4b82a25f978ccffba02e4bdce8aba857b6d85d87b", size = 301788, upload-time = "2025-10-19T22:36:06.825Z" }, + { url = "https://files.pythonhosted.org/packages/fa/7c/2014b5785bd8ebdab04ec857635ebd84d5ee4950186a577db9eff0fb8ff6/fastuuid-0.14.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:cb9a030f609194b679e1660f7e32733b7a0f332d519c5d5a6a0a580991290022", size = 459819, upload-time = "2025-10-19T22:35:31.623Z" }, + { url = "https://files.pythonhosted.org/packages/01/d2/524d4ceeba9160e7a9bc2ea3e8f4ccf1ad78f3bde34090ca0c51f09a5e91/fastuuid-0.14.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:09098762aad4f8da3a888eb9ae01c84430c907a297b97166b8abc07b640f2995", size = 478546, upload-time = "2025-10-19T22:26:03.023Z" }, + { url = "https://files.pythonhosted.org/packages/bc/17/354d04951ce114bf4afc78e27a18cfbd6ee319ab1829c2d5fb5e94063ac6/fastuuid-0.14.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:1383fff584fa249b16329a059c68ad45d030d5a4b70fb7c73a08d98fd53bcdab", size = 450921, upload-time = "2025-10-19T22:31:02.151Z" }, + { url = "https://files.pythonhosted.org/packages/fb/be/d7be8670151d16d88f15bb121c5b66cdb5ea6a0c2a362d0dcf30276ade53/fastuuid-0.14.0-cp313-cp313-win32.whl", hash = "sha256:a0809f8cc5731c066c909047f9a314d5f536c871a7a22e815cc4967c110ac9ad", size = 154559, upload-time = "2025-10-19T22:36:36.011Z" }, + { url = "https://files.pythonhosted.org/packages/22/1d/5573ef3624ceb7abf4a46073d3554e37191c868abc3aecd5289a72f9810a/fastuuid-0.14.0-cp313-cp313-win_amd64.whl", hash = "sha256:0df14e92e7ad3276327631c9e7cec09e32572ce82089c55cb1bb8df71cf394ed", size = 156539, upload-time = "2025-10-19T22:33:35.898Z" }, + { url = "https://files.pythonhosted.org/packages/16/c9/8c7660d1fe3862e3f8acabd9be7fc9ad71eb270f1c65cce9a2b7a31329ab/fastuuid-0.14.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:b852a870a61cfc26c884af205d502881a2e59cc07076b60ab4a951cc0c94d1ad", size = 510600, upload-time = "2025-10-19T22:43:44.17Z" }, + { url = "https://files.pythonhosted.org/packages/4c/f4/a989c82f9a90d0ad995aa957b3e572ebef163c5299823b4027986f133dfb/fastuuid-0.14.0-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:c7502d6f54cd08024c3ea9b3514e2d6f190feb2f46e6dbcd3747882264bb5f7b", size = 262069, upload-time = "2025-10-19T22:43:38.38Z" }, + { url = "https://files.pythonhosted.org/packages/da/6c/a1a24f73574ac995482b1326cf7ab41301af0fabaa3e37eeb6b3df00e6e2/fastuuid-0.14.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:1ca61b592120cf314cfd66e662a5b54a578c5a15b26305e1b8b618a6f22df714", size = 251543, upload-time = "2025-10-19T22:32:22.537Z" }, + { url = "https://files.pythonhosted.org/packages/1a/20/2a9b59185ba7a6c7b37808431477c2d739fcbdabbf63e00243e37bd6bf49/fastuuid-0.14.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aa75b6657ec129d0abded3bec745e6f7ab642e6dba3a5272a68247e85f5f316f", size = 277798, upload-time = "2025-10-19T22:33:53.821Z" }, + { url = "https://files.pythonhosted.org/packages/ef/33/4105ca574f6ded0af6a797d39add041bcfb468a1255fbbe82fcb6f592da2/fastuuid-0.14.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8a0dfea3972200f72d4c7df02c8ac70bad1bb4c58d7e0ec1e6f341679073a7f", size = 278283, upload-time = "2025-10-19T22:29:02.812Z" }, + { url = "https://files.pythonhosted.org/packages/fe/8c/fca59f8e21c4deb013f574eae05723737ddb1d2937ce87cb2a5d20992dc3/fastuuid-0.14.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1bf539a7a95f35b419f9ad105d5a8a35036df35fdafae48fb2fd2e5f318f0d75", size = 301627, upload-time = "2025-10-19T22:35:54.985Z" }, + { url = "https://files.pythonhosted.org/packages/cb/e2/f78c271b909c034d429218f2798ca4e89eeda7983f4257d7865976ddbb6c/fastuuid-0.14.0-cp314-cp314-musllinux_1_1_aarch64.whl", hash = "sha256:9a133bf9cc78fdbd1179cb58a59ad0100aa32d8675508150f3658814aeefeaa4", size = 459778, upload-time = "2025-10-19T22:28:00.999Z" }, + { url = "https://files.pythonhosted.org/packages/1e/f0/5ff209d865897667a2ff3e7a572267a9ced8f7313919f6d6043aed8b1caa/fastuuid-0.14.0-cp314-cp314-musllinux_1_1_i686.whl", hash = "sha256:f54d5b36c56a2d5e1a31e73b950b28a0d83eb0c37b91d10408875a5a29494bad", size = 478605, upload-time = "2025-10-19T22:36:21.764Z" }, + { url = "https://files.pythonhosted.org/packages/e0/c8/2ce1c78f983a2c4987ea865d9516dbdfb141a120fd3abb977ae6f02ba7ca/fastuuid-0.14.0-cp314-cp314-musllinux_1_1_x86_64.whl", hash = "sha256:ec27778c6ca3393ef662e2762dba8af13f4ec1aaa32d08d77f71f2a70ae9feb8", size = 450837, upload-time = "2025-10-19T22:34:37.178Z" }, + { url = "https://files.pythonhosted.org/packages/df/60/dad662ec9a33b4a5fe44f60699258da64172c39bd041da2994422cdc40fe/fastuuid-0.14.0-cp314-cp314-win32.whl", hash = "sha256:e23fc6a83f112de4be0cc1990e5b127c27663ae43f866353166f87df58e73d06", size = 154532, upload-time = "2025-10-19T22:35:18.217Z" }, + { url = "https://files.pythonhosted.org/packages/1f/f6/da4db31001e854025ffd26bc9ba0740a9cbba2c3259695f7c5834908b336/fastuuid-0.14.0-cp314-cp314-win_amd64.whl", hash = "sha256:df61342889d0f5e7a32f7284e55ef95103f2110fee433c2ae7c2c0956d76ac8a", size = 156457, upload-time = "2025-10-19T22:33:44.579Z" }, +] + +[[package]] +name = "filelock" +version = "3.24.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/73/92/a8e2479937ff39185d20dd6a851c1a63e55849e447a55e798cc2e1f49c65/filelock-3.24.3.tar.gz", hash = "sha256:011a5644dc937c22699943ebbfc46e969cdde3e171470a6e40b9533e5a72affa", size = 37935, upload-time = "2026-02-19T00:48:20.543Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9c/0f/5d0c71a1aefeb08efff26272149e07ab922b64f46c63363756224bd6872e/filelock-3.24.3-py3-none-any.whl", hash = "sha256:426e9a4660391f7f8a810d71b0555bce9008b0a1cc342ab1f6947d37639e002d", size = 24331, upload-time = "2026-02-19T00:48:18.465Z" }, +] + +[[package]] +name = "flatbuffers" +version = "25.12.19" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e8/2d/d2a548598be01649e2d46231d151a6c56d10b964d94043a335ae56ea2d92/flatbuffers-25.12.19-py2.py3-none-any.whl", hash = "sha256:7634f50c427838bb021c2d66a3d1168e9d199b0607e6329399f04846d42e20b4", size = 26661, upload-time = "2025-12-19T23:16:13.622Z" }, +] + +[[package]] +name = "fqdn" +version = "1.5.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/30/3e/a80a8c077fd798951169626cde3e239adeba7dab75deb3555716415bd9b0/fqdn-1.5.1.tar.gz", hash = "sha256:105ed3677e767fb5ca086a0c1f4bb66ebc3c100be518f0e0d755d9eae164d89f", size = 6015, upload-time = "2021-03-11T07:16:29.08Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cf/58/8acf1b3e91c58313ce5cb67df61001fc9dcd21be4fadb76c1a2d540e09ed/fqdn-1.5.1-py3-none-any.whl", hash = "sha256:3a179af3761e4df6eb2e026ff9e1a3033d3587bf980a0b1b2e1e5d08d7358014", size = 9121, upload-time = "2021-03-11T07:16:28.351Z" }, +] + [[package]] name = "frozenlist" version = "1.8.0" @@ -444,172 +1189,186 @@ wheels = [ ] [[package]] -name = "greenlet" -version = "3.3.1" +name = "fsspec" +version = "2025.10.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/8a/99/1cd3411c56a410994669062bd73dd58270c00cc074cac15f385a1fd91f8a/greenlet-3.3.1.tar.gz", hash = "sha256:41848f3230b58c08bb43dee542e74a2a2e34d3c59dc3076cec9151aeeedcae98", size = 184690, upload-time = "2026-01-23T15:31:02.076Z" } +sdist = { url = "https://files.pythonhosted.org/packages/24/7f/2747c0d332b9acfa75dc84447a066fdf812b5a6b8d30472b74d309bfe8cb/fsspec-2025.10.0.tar.gz", hash = "sha256:b6789427626f068f9a83ca4e8a3cc050850b6c0f71f99ddb4f542b8266a26a59", size = 309285, upload-time = "2025-10-30T14:58:44.036Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ec/e8/2e1462c8fdbe0f210feb5ac7ad2d9029af8be3bf45bd9fa39765f821642f/greenlet-3.3.1-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:5fd23b9bc6d37b563211c6abbb1b3cab27db385a4449af5c32e932f93017080c", size = 274974, upload-time = "2026-01-23T15:31:02.891Z" }, - { url = "https://files.pythonhosted.org/packages/7e/a8/530a401419a6b302af59f67aaf0b9ba1015855ea7e56c036b5928793c5bd/greenlet-3.3.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:09f51496a0bfbaa9d74d36a52d2580d1ef5ed4fdfcff0a73730abfbbbe1403dd", size = 577175, upload-time = "2026-01-23T16:00:56.213Z" }, - { url = "https://files.pythonhosted.org/packages/8e/89/7e812bb9c05e1aaef9b597ac1d0962b9021d2c6269354966451e885c4e6b/greenlet-3.3.1-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:cb0feb07fe6e6a74615ee62a880007d976cf739b6669cce95daa7373d4fc69c5", size = 590401, upload-time = "2026-01-23T16:05:26.365Z" }, - { url = "https://files.pythonhosted.org/packages/70/ae/e2d5f0e59b94a2269b68a629173263fa40b63da32f5c231307c349315871/greenlet-3.3.1-cp311-cp311-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:67ea3fc73c8cd92f42467a72b75e8f05ed51a0e9b1d15398c913416f2dafd49f", size = 601161, upload-time = "2026-01-23T16:15:53.456Z" }, - { url = "https://files.pythonhosted.org/packages/5c/ae/8d472e1f5ac5efe55c563f3eabb38c98a44b832602e12910750a7c025802/greenlet-3.3.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:39eda9ba259cc9801da05351eaa8576e9aa83eb9411e8f0c299e05d712a210f2", size = 590272, upload-time = "2026-01-23T15:32:49.411Z" }, - { url = "https://files.pythonhosted.org/packages/a8/51/0fde34bebfcadc833550717eade64e35ec8738e6b097d5d248274a01258b/greenlet-3.3.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e2e7e882f83149f0a71ac822ebf156d902e7a5d22c9045e3e0d1daf59cee2cc9", size = 1550729, upload-time = "2026-01-23T16:04:20.867Z" }, - { url = "https://files.pythonhosted.org/packages/16/c9/2fb47bee83b25b119d5a35d580807bb8b92480a54b68fef009a02945629f/greenlet-3.3.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:80aa4d79eb5564f2e0a6144fcc744b5a37c56c4a92d60920720e99210d88db0f", size = 1615552, upload-time = "2026-01-23T15:33:45.743Z" }, - { url = "https://files.pythonhosted.org/packages/1f/54/dcf9f737b96606f82f8dd05becfb8d238db0633dd7397d542a296fe9cad3/greenlet-3.3.1-cp311-cp311-win_amd64.whl", hash = "sha256:32e4ca9777c5addcbf42ff3915d99030d8e00173a56f80001fb3875998fe410b", size = 226462, upload-time = "2026-01-23T15:36:50.422Z" }, - { url = "https://files.pythonhosted.org/packages/91/37/61e1015cf944ddd2337447d8e97fb423ac9bc21f9963fb5f206b53d65649/greenlet-3.3.1-cp311-cp311-win_arm64.whl", hash = "sha256:da19609432f353fed186cc1b85e9440db93d489f198b4bdf42ae19cc9d9ac9b4", size = 225715, upload-time = "2026-01-23T15:33:17.298Z" }, - { url = "https://files.pythonhosted.org/packages/f9/c8/9d76a66421d1ae24340dfae7e79c313957f6e3195c144d2c73333b5bfe34/greenlet-3.3.1-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:7e806ca53acf6d15a888405880766ec84721aa4181261cd11a457dfe9a7a4975", size = 276443, upload-time = "2026-01-23T15:30:10.066Z" }, - { url = "https://files.pythonhosted.org/packages/81/99/401ff34bb3c032d1f10477d199724f5e5f6fbfb59816ad1455c79c1eb8e7/greenlet-3.3.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d842c94b9155f1c9b3058036c24ffb8ff78b428414a19792b2380be9cecf4f36", size = 597359, upload-time = "2026-01-23T16:00:57.394Z" }, - { url = "https://files.pythonhosted.org/packages/2b/bc/4dcc0871ed557792d304f50be0f7487a14e017952ec689effe2180a6ff35/greenlet-3.3.1-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:20fedaadd422fa02695f82093f9a98bad3dab5fcda793c658b945fcde2ab27ba", size = 607805, upload-time = "2026-01-23T16:05:28.068Z" }, - { url = "https://files.pythonhosted.org/packages/3b/cd/7a7ca57588dac3389e97f7c9521cb6641fd8b6602faf1eaa4188384757df/greenlet-3.3.1-cp312-cp312-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:c620051669fd04ac6b60ebc70478210119c56e2d5d5df848baec4312e260e4ca", size = 622363, upload-time = "2026-01-23T16:15:54.754Z" }, - { url = "https://files.pythonhosted.org/packages/cf/05/821587cf19e2ce1f2b24945d890b164401e5085f9d09cbd969b0c193cd20/greenlet-3.3.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:14194f5f4305800ff329cbf02c5fcc88f01886cadd29941b807668a45f0d2336", size = 609947, upload-time = "2026-01-23T15:32:51.004Z" }, - { url = "https://files.pythonhosted.org/packages/a4/52/ee8c46ed9f8babaa93a19e577f26e3d28a519feac6350ed6f25f1afee7e9/greenlet-3.3.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7b2fe4150a0cf59f847a67db8c155ac36aed89080a6a639e9f16df5d6c6096f1", size = 1567487, upload-time = "2026-01-23T16:04:22.125Z" }, - { url = "https://files.pythonhosted.org/packages/8f/7c/456a74f07029597626f3a6db71b273a3632aecb9afafeeca452cfa633197/greenlet-3.3.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:49f4ad195d45f4a66a0eb9c1ba4832bb380570d361912fa3554746830d332149", size = 1636087, upload-time = "2026-01-23T15:33:47.486Z" }, - { url = "https://files.pythonhosted.org/packages/34/2f/5e0e41f33c69655300a5e54aeb637cf8ff57f1786a3aba374eacc0228c1d/greenlet-3.3.1-cp312-cp312-win_amd64.whl", hash = "sha256:cc98b9c4e4870fa983436afa999d4eb16b12872fab7071423d5262fa7120d57a", size = 227156, upload-time = "2026-01-23T15:34:34.808Z" }, - { url = "https://files.pythonhosted.org/packages/c8/ab/717c58343cf02c5265b531384b248787e04d8160b8afe53d9eec053d7b44/greenlet-3.3.1-cp312-cp312-win_arm64.whl", hash = "sha256:bfb2d1763d777de5ee495c85309460f6fd8146e50ec9d0ae0183dbf6f0a829d1", size = 226403, upload-time = "2026-01-23T15:31:39.372Z" }, - { url = "https://files.pythonhosted.org/packages/ec/ab/d26750f2b7242c2b90ea2ad71de70cfcd73a948a49513188a0fc0d6fc15a/greenlet-3.3.1-cp313-cp313-macosx_11_0_universal2.whl", hash = "sha256:7ab327905cabb0622adca5971e488064e35115430cec2c35a50fd36e72a315b3", size = 275205, upload-time = "2026-01-23T15:30:24.556Z" }, - { url = "https://files.pythonhosted.org/packages/10/d3/be7d19e8fad7c5a78eeefb2d896a08cd4643e1e90c605c4be3b46264998f/greenlet-3.3.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:65be2f026ca6a176f88fb935ee23c18333ccea97048076aef4db1ef5bc0713ac", size = 599284, upload-time = "2026-01-23T16:00:58.584Z" }, - { url = "https://files.pythonhosted.org/packages/ae/21/fe703aaa056fdb0f17e5afd4b5c80195bbdab701208918938bd15b00d39b/greenlet-3.3.1-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:7a3ae05b3d225b4155bda56b072ceb09d05e974bc74be6c3fc15463cf69f33fd", size = 610274, upload-time = "2026-01-23T16:05:29.312Z" }, - { url = "https://files.pythonhosted.org/packages/06/00/95df0b6a935103c0452dad2203f5be8377e551b8466a29650c4c5a5af6cc/greenlet-3.3.1-cp313-cp313-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:12184c61e5d64268a160226fb4818af4df02cfead8379d7f8b99a56c3a54ff3e", size = 624375, upload-time = "2026-01-23T16:15:55.915Z" }, - { url = "https://files.pythonhosted.org/packages/cb/86/5c6ab23bb3c28c21ed6bebad006515cfe08b04613eb105ca0041fecca852/greenlet-3.3.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6423481193bbbe871313de5fd06a082f2649e7ce6e08015d2a76c1e9186ca5b3", size = 612904, upload-time = "2026-01-23T15:32:52.317Z" }, - { url = "https://files.pythonhosted.org/packages/c2/f3/7949994264e22639e40718c2daf6f6df5169bf48fb038c008a489ec53a50/greenlet-3.3.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:33a956fe78bbbda82bfc95e128d61129b32d66bcf0a20a1f0c08aa4839ffa951", size = 1567316, upload-time = "2026-01-23T16:04:23.316Z" }, - { url = "https://files.pythonhosted.org/packages/8d/6e/d73c94d13b6465e9f7cd6231c68abde838bb22408596c05d9059830b7872/greenlet-3.3.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4b065d3284be43728dd280f6f9a13990b56470b81be20375a207cdc814a983f2", size = 1636549, upload-time = "2026-01-23T15:33:48.643Z" }, - { url = "https://files.pythonhosted.org/packages/5e/b3/c9c23a6478b3bcc91f979ce4ca50879e4d0b2bd7b9a53d8ecded719b92e2/greenlet-3.3.1-cp313-cp313-win_amd64.whl", hash = "sha256:27289986f4e5b0edec7b5a91063c109f0276abb09a7e9bdab08437525977c946", size = 227042, upload-time = "2026-01-23T15:33:58.216Z" }, - { url = "https://files.pythonhosted.org/packages/90/e7/824beda656097edee36ab15809fd063447b200cc03a7f6a24c34d520bc88/greenlet-3.3.1-cp313-cp313-win_arm64.whl", hash = "sha256:2f080e028001c5273e0b42690eaf359aeef9cb1389da0f171ea51a5dc3c7608d", size = 226294, upload-time = "2026-01-23T15:30:52.73Z" }, - { url = "https://files.pythonhosted.org/packages/ae/fb/011c7c717213182caf78084a9bea51c8590b0afda98001f69d9f853a495b/greenlet-3.3.1-cp314-cp314-macosx_11_0_universal2.whl", hash = "sha256:bd59acd8529b372775cd0fcbc5f420ae20681c5b045ce25bd453ed8455ab99b5", size = 275737, upload-time = "2026-01-23T15:32:16.889Z" }, - { url = "https://files.pythonhosted.org/packages/41/2e/a3a417d620363fdbb08a48b1dd582956a46a61bf8fd27ee8164f9dfe87c2/greenlet-3.3.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b31c05dd84ef6871dd47120386aed35323c944d86c3d91a17c4b8d23df62f15b", size = 646422, upload-time = "2026-01-23T16:01:00.354Z" }, - { url = "https://files.pythonhosted.org/packages/b4/09/c6c4a0db47defafd2d6bab8ddfe47ad19963b4e30f5bed84d75328059f8c/greenlet-3.3.1-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:02925a0bfffc41e542c70aa14c7eda3593e4d7e274bfcccca1827e6c0875902e", size = 658219, upload-time = "2026-01-23T16:05:30.956Z" }, - { url = "https://files.pythonhosted.org/packages/e2/89/b95f2ddcc5f3c2bc09c8ee8d77be312df7f9e7175703ab780f2014a0e781/greenlet-3.3.1-cp314-cp314-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:3e0f3878ca3a3ff63ab4ea478585942b53df66ddde327b59ecb191b19dbbd62d", size = 671455, upload-time = "2026-01-23T16:15:57.232Z" }, - { url = "https://files.pythonhosted.org/packages/80/38/9d42d60dffb04b45f03dbab9430898352dba277758640751dc5cc316c521/greenlet-3.3.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:34a729e2e4e4ffe9ae2408d5ecaf12f944853f40ad724929b7585bca808a9d6f", size = 660237, upload-time = "2026-01-23T15:32:53.967Z" }, - { url = "https://files.pythonhosted.org/packages/96/61/373c30b7197f9e756e4c81ae90a8d55dc3598c17673f91f4d31c3c689c3f/greenlet-3.3.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:aec9ab04e82918e623415947921dea15851b152b822661cce3f8e4393c3df683", size = 1615261, upload-time = "2026-01-23T16:04:25.066Z" }, - { url = "https://files.pythonhosted.org/packages/fd/d3/ca534310343f5945316f9451e953dcd89b36fe7a19de652a1dc5a0eeef3f/greenlet-3.3.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:71c767cf281a80d02b6c1bdc41c9468e1f5a494fb11bc8688c360524e273d7b1", size = 1683719, upload-time = "2026-01-23T15:33:50.61Z" }, - { url = "https://files.pythonhosted.org/packages/52/cb/c21a3fd5d2c9c8b622e7bede6d6d00e00551a5ee474ea6d831b5f567a8b4/greenlet-3.3.1-cp314-cp314-win_amd64.whl", hash = "sha256:96aff77af063b607f2489473484e39a0bbae730f2ea90c9e5606c9b73c44174a", size = 228125, upload-time = "2026-01-23T15:32:45.265Z" }, - { url = "https://files.pythonhosted.org/packages/6a/8e/8a2db6d11491837af1de64b8aff23707c6e85241be13c60ed399a72e2ef8/greenlet-3.3.1-cp314-cp314-win_arm64.whl", hash = "sha256:b066e8b50e28b503f604fa538adc764a638b38cf8e81e025011d26e8a627fa79", size = 227519, upload-time = "2026-01-23T15:31:47.284Z" }, - { url = "https://files.pythonhosted.org/packages/28/24/cbbec49bacdcc9ec652a81d3efef7b59f326697e7edf6ed775a5e08e54c2/greenlet-3.3.1-cp314-cp314t-macosx_11_0_universal2.whl", hash = "sha256:3e63252943c921b90abb035ebe9de832c436401d9c45f262d80e2d06cc659242", size = 282706, upload-time = "2026-01-23T15:33:05.525Z" }, - { url = "https://files.pythonhosted.org/packages/86/2e/4f2b9323c144c4fe8842a4e0d92121465485c3c2c5b9e9b30a52e80f523f/greenlet-3.3.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:76e39058e68eb125de10c92524573924e827927df5d3891fbc97bd55764a8774", size = 651209, upload-time = "2026-01-23T16:01:01.517Z" }, - { url = "https://files.pythonhosted.org/packages/d9/87/50ca60e515f5bb55a2fbc5f0c9b5b156de7d2fc51a0a69abc9d23914a237/greenlet-3.3.1-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c9f9d5e7a9310b7a2f416dd13d2e3fd8b42d803968ea580b7c0f322ccb389b97", size = 654300, upload-time = "2026-01-23T16:05:32.199Z" }, - { url = "https://files.pythonhosted.org/packages/7c/25/c51a63f3f463171e09cb586eb64db0861eb06667ab01a7968371a24c4f3b/greenlet-3.3.1-cp314-cp314t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:4b9721549a95db96689458a1e0ae32412ca18776ed004463df3a9299c1b257ab", size = 662574, upload-time = "2026-01-23T16:15:58.364Z" }, - { url = "https://files.pythonhosted.org/packages/1d/94/74310866dfa2b73dd08659a3d18762f83985ad3281901ba0ee9a815194fb/greenlet-3.3.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:92497c78adf3ac703b57f1e3813c2d874f27f71a178f9ea5887855da413cd6d2", size = 653842, upload-time = "2026-01-23T15:32:55.671Z" }, - { url = "https://files.pythonhosted.org/packages/97/43/8bf0ffa3d498eeee4c58c212a3905dd6146c01c8dc0b0a046481ca29b18c/greenlet-3.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:ed6b402bc74d6557a705e197d47f9063733091ed6357b3de33619d8a8d93ac53", size = 1614917, upload-time = "2026-01-23T16:04:26.276Z" }, - { url = "https://files.pythonhosted.org/packages/89/90/a3be7a5f378fc6e84abe4dcfb2ba32b07786861172e502388b4c90000d1b/greenlet-3.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:59913f1e5ada20fde795ba906916aea25d442abcc0593fba7e26c92b7ad76249", size = 1676092, upload-time = "2026-01-23T15:33:52.176Z" }, - { url = "https://files.pythonhosted.org/packages/e1/2b/98c7f93e6db9977aaee07eb1e51ca63bd5f779b900d362791d3252e60558/greenlet-3.3.1-cp314-cp314t-win_amd64.whl", hash = "sha256:301860987846c24cb8964bdec0e31a96ad4a2a801b41b4ef40963c1b44f33451", size = 233181, upload-time = "2026-01-23T15:33:00.29Z" }, + { url = "https://files.pythonhosted.org/packages/eb/02/a6b21098b1d5d6249b7c5ab69dde30108a71e4e819d4a9778f1de1d5b70d/fsspec-2025.10.0-py3-none-any.whl", hash = "sha256:7c7712353ae7d875407f97715f0e1ffcc21e33d5b24556cb1e090ae9409ec61d", size = 200966, upload-time = "2025-10-30T14:58:42.53Z" }, +] + +[package.optional-dependencies] +http = [ + { name = "aiohttp" }, +] + +[[package]] +name = "greenlet" +version = "3.3.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a3/51/1664f6b78fc6ebbd98019a1fd730e83fa78f2db7058f72b1463d3612b8db/greenlet-3.3.2.tar.gz", hash = "sha256:2eaf067fc6d886931c7962e8c6bede15d2f01965560f3359b27c80bde2d151f2", size = 188267, upload-time = "2026-02-20T20:54:15.531Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f3/47/16400cb42d18d7a6bb46f0626852c1718612e35dcb0dffa16bbaffdf5dd2/greenlet-3.3.2-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:c56692189a7d1c7606cb794be0a8381470d95c57ce5be03fb3d0ef57c7853b86", size = 278890, upload-time = "2026-02-20T20:19:39.263Z" }, + { url = "https://files.pythonhosted.org/packages/a3/90/42762b77a5b6aa96cd8c0e80612663d39211e8ae8a6cd47c7f1249a66262/greenlet-3.3.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1ebd458fa8285960f382841da585e02201b53a5ec2bac6b156fc623b5ce4499f", size = 581120, upload-time = "2026-02-20T20:47:30.161Z" }, + { url = "https://files.pythonhosted.org/packages/bf/6f/f3d64f4fa0a9c7b5c5b3c810ff1df614540d5aa7d519261b53fba55d4df9/greenlet-3.3.2-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a443358b33c4ec7b05b79a7c8b466f5d275025e750298be7340f8fc63dff2a55", size = 594363, upload-time = "2026-02-20T20:55:56.965Z" }, + { url = "https://files.pythonhosted.org/packages/9c/8b/1430a04657735a3f23116c2e0d5eb10220928846e4537a938a41b350bed6/greenlet-3.3.2-cp311-cp311-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:4375a58e49522698d3e70cc0b801c19433021b5c37686f7ce9c65b0d5c8677d2", size = 605046, upload-time = "2026-02-20T21:02:45.234Z" }, + { url = "https://files.pythonhosted.org/packages/72/83/3e06a52aca8128bdd4dcd67e932b809e76a96ab8c232a8b025b2850264c5/greenlet-3.3.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8e2cd90d413acbf5e77ae41e5d3c9b3ac1d011a756d7284d7f3f2b806bbd6358", size = 594156, upload-time = "2026-02-20T20:20:59.955Z" }, + { url = "https://files.pythonhosted.org/packages/70/79/0de5e62b873e08fe3cef7dbe84e5c4bc0e8ed0c7ff131bccb8405cd107c8/greenlet-3.3.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:442b6057453c8cb29b4fb36a2ac689382fc71112273726e2423f7f17dc73bf99", size = 1554649, upload-time = "2026-02-20T20:49:32.293Z" }, + { url = "https://files.pythonhosted.org/packages/5a/00/32d30dee8389dc36d42170a9c66217757289e2afb0de59a3565260f38373/greenlet-3.3.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:45abe8eb6339518180d5a7fa47fa01945414d7cca5ecb745346fc6a87d2750be", size = 1619472, upload-time = "2026-02-20T20:21:07.966Z" }, + { url = "https://files.pythonhosted.org/packages/f1/3a/efb2cf697fbccdf75b24e2c18025e7dfa54c4f31fab75c51d0fe79942cef/greenlet-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:1e692b2dae4cc7077cbb11b47d258533b48c8fde69a33d0d8a82e2fe8d8531d5", size = 230389, upload-time = "2026-02-20T20:17:18.772Z" }, + { url = "https://files.pythonhosted.org/packages/e1/a1/65bbc059a43a7e2143ec4fc1f9e3f673e04f9c7b371a494a101422ac4fd5/greenlet-3.3.2-cp311-cp311-win_arm64.whl", hash = "sha256:02b0a8682aecd4d3c6c18edf52bc8e51eacdd75c8eac52a790a210b06aa295fd", size = 229645, upload-time = "2026-02-20T20:18:18.695Z" }, + { url = "https://files.pythonhosted.org/packages/ea/ab/1608e5a7578e62113506740b88066bf09888322a311cff602105e619bd87/greenlet-3.3.2-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:ac8d61d4343b799d1e526db579833d72f23759c71e07181c2d2944e429eb09cd", size = 280358, upload-time = "2026-02-20T20:17:43.971Z" }, + { url = "https://files.pythonhosted.org/packages/a5/23/0eae412a4ade4e6623ff7626e38998cb9b11e9ff1ebacaa021e4e108ec15/greenlet-3.3.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3ceec72030dae6ac0c8ed7591b96b70410a8be370b6a477b1dbc072856ad02bd", size = 601217, upload-time = "2026-02-20T20:47:31.462Z" }, + { url = "https://files.pythonhosted.org/packages/f8/16/5b1678a9c07098ecb9ab2dd159fafaf12e963293e61ee8d10ecb55273e5e/greenlet-3.3.2-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a2a5be83a45ce6188c045bcc44b0ee037d6a518978de9a5d97438548b953a1ac", size = 611792, upload-time = "2026-02-20T20:55:58.423Z" }, + { url = "https://files.pythonhosted.org/packages/5c/c5/cc09412a29e43406eba18d61c70baa936e299bc27e074e2be3806ed29098/greenlet-3.3.2-cp312-cp312-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:ae9e21c84035c490506c17002f5c8ab25f980205c3e61ddb3a2a2a2e6c411fcb", size = 626250, upload-time = "2026-02-20T21:02:46.596Z" }, + { url = "https://files.pythonhosted.org/packages/50/1f/5155f55bd71cabd03765a4aac9ac446be129895271f73872c36ebd4b04b6/greenlet-3.3.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:43e99d1749147ac21dde49b99c9abffcbc1e2d55c67501465ef0930d6e78e070", size = 613875, upload-time = "2026-02-20T20:21:01.102Z" }, + { url = "https://files.pythonhosted.org/packages/fc/dd/845f249c3fcd69e32df80cdab059b4be8b766ef5830a3d0aa9d6cad55beb/greenlet-3.3.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c956a19350e2c37f2c48b336a3afb4bff120b36076d9d7fb68cb44e05d95b79", size = 1571467, upload-time = "2026-02-20T20:49:33.495Z" }, + { url = "https://files.pythonhosted.org/packages/2a/50/2649fe21fcc2b56659a452868e695634722a6655ba245d9f77f5656010bf/greenlet-3.3.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:6c6f8ba97d17a1e7d664151284cb3315fc5f8353e75221ed4324f84eb162b395", size = 1640001, upload-time = "2026-02-20T20:21:09.154Z" }, + { url = "https://files.pythonhosted.org/packages/9b/40/cc802e067d02af8b60b6771cea7d57e21ef5e6659912814babb42b864713/greenlet-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:34308836d8370bddadb41f5a7ce96879b72e2fdfb4e87729330c6ab52376409f", size = 231081, upload-time = "2026-02-20T20:17:28.121Z" }, + { url = "https://files.pythonhosted.org/packages/58/2e/fe7f36ff1982d6b10a60d5e0740c759259a7d6d2e1dc41da6d96de32fff6/greenlet-3.3.2-cp312-cp312-win_arm64.whl", hash = "sha256:d3a62fa76a32b462a97198e4c9e99afb9ab375115e74e9a83ce180e7a496f643", size = 230331, upload-time = "2026-02-20T20:17:23.34Z" }, + { url = "https://files.pythonhosted.org/packages/ac/48/f8b875fa7dea7dd9b33245e37f065af59df6a25af2f9561efa8d822fde51/greenlet-3.3.2-cp313-cp313-macosx_11_0_universal2.whl", hash = "sha256:aa6ac98bdfd716a749b84d4034486863fd81c3abde9aa3cf8eff9127981a4ae4", size = 279120, upload-time = "2026-02-20T20:19:01.9Z" }, + { url = "https://files.pythonhosted.org/packages/49/8d/9771d03e7a8b1ee456511961e1b97a6d77ae1dea4a34a5b98eee706689d3/greenlet-3.3.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ab0c7e7901a00bc0a7284907273dc165b32e0d109a6713babd04471327ff7986", size = 603238, upload-time = "2026-02-20T20:47:32.873Z" }, + { url = "https://files.pythonhosted.org/packages/59/0e/4223c2bbb63cd5c97f28ffb2a8aee71bdfb30b323c35d409450f51b91e3e/greenlet-3.3.2-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:d248d8c23c67d2291ffd47af766e2a3aa9fa1c6703155c099feb11f526c63a92", size = 614219, upload-time = "2026-02-20T20:55:59.817Z" }, + { url = "https://files.pythonhosted.org/packages/94/2b/4d012a69759ac9d77210b8bfb128bc621125f5b20fc398bce3940d036b1c/greenlet-3.3.2-cp313-cp313-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:ccd21bb86944ca9be6d967cf7691e658e43417782bce90b5d2faeda0ff78a7dd", size = 628268, upload-time = "2026-02-20T21:02:48.024Z" }, + { url = "https://files.pythonhosted.org/packages/7a/34/259b28ea7a2a0c904b11cd36c79b8cef8019b26ee5dbe24e73b469dea347/greenlet-3.3.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b6997d360a4e6a4e936c0f9625b1c20416b8a0ea18a8e19cabbefc712e7397ab", size = 616774, upload-time = "2026-02-20T20:21:02.454Z" }, + { url = "https://files.pythonhosted.org/packages/0a/03/996c2d1689d486a6e199cb0f1cf9e4aa940c500e01bdf201299d7d61fa69/greenlet-3.3.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:64970c33a50551c7c50491671265d8954046cb6e8e2999aacdd60e439b70418a", size = 1571277, upload-time = "2026-02-20T20:49:34.795Z" }, + { url = "https://files.pythonhosted.org/packages/d9/c4/2570fc07f34a39f2caf0bf9f24b0a1a0a47bc2e8e465b2c2424821389dfc/greenlet-3.3.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:1a9172f5bf6bd88e6ba5a84e0a68afeac9dc7b6b412b245dd64f52d83c81e55b", size = 1640455, upload-time = "2026-02-20T20:21:10.261Z" }, + { url = "https://files.pythonhosted.org/packages/91/39/5ef5aa23bc545aa0d31e1b9b55822b32c8da93ba657295840b6b34124009/greenlet-3.3.2-cp313-cp313-win_amd64.whl", hash = "sha256:a7945dd0eab63ded0a48e4dcade82939783c172290a7903ebde9e184333ca124", size = 230961, upload-time = "2026-02-20T20:16:58.461Z" }, + { url = "https://files.pythonhosted.org/packages/62/6b/a89f8456dcb06becff288f563618e9f20deed8dd29beea14f9a168aef64b/greenlet-3.3.2-cp313-cp313-win_arm64.whl", hash = "sha256:394ead29063ee3515b4e775216cb756b2e3b4a7e55ae8fd884f17fa579e6b327", size = 230221, upload-time = "2026-02-20T20:17:37.152Z" }, + { url = "https://files.pythonhosted.org/packages/3f/ae/8bffcbd373b57a5992cd077cbe8858fff39110480a9d50697091faea6f39/greenlet-3.3.2-cp314-cp314-macosx_11_0_universal2.whl", hash = "sha256:8d1658d7291f9859beed69a776c10822a0a799bc4bfe1bd4272bb60e62507dab", size = 279650, upload-time = "2026-02-20T20:18:00.783Z" }, + { url = "https://files.pythonhosted.org/packages/d1/c0/45f93f348fa49abf32ac8439938726c480bd96b2a3c6f4d949ec0124b69f/greenlet-3.3.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:18cb1b7337bca281915b3c5d5ae19f4e76d35e1df80f4ad3c1a7be91fadf1082", size = 650295, upload-time = "2026-02-20T20:47:34.036Z" }, + { url = "https://files.pythonhosted.org/packages/b3/de/dd7589b3f2b8372069ab3e4763ea5329940fc7ad9dcd3e272a37516d7c9b/greenlet-3.3.2-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c2e47408e8ce1c6f1ceea0dffcdf6ebb85cc09e55c7af407c99f1112016e45e9", size = 662163, upload-time = "2026-02-20T20:56:01.295Z" }, + { url = "https://files.pythonhosted.org/packages/cd/ac/85804f74f1ccea31ba518dcc8ee6f14c79f73fe36fa1beba38930806df09/greenlet-3.3.2-cp314-cp314-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:e3cb43ce200f59483eb82949bf1835a99cf43d7571e900d7c8d5c62cdf25d2f9", size = 675371, upload-time = "2026-02-20T21:02:49.664Z" }, + { url = "https://files.pythonhosted.org/packages/d2/d8/09bfa816572a4d83bccd6750df1926f79158b1c36c5f73786e26dbe4ee38/greenlet-3.3.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:63d10328839d1973e5ba35e98cccbca71b232b14051fd957b6f8b6e8e80d0506", size = 664160, upload-time = "2026-02-20T20:21:04.015Z" }, + { url = "https://files.pythonhosted.org/packages/48/cf/56832f0c8255d27f6c35d41b5ec91168d74ec721d85f01a12131eec6b93c/greenlet-3.3.2-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:8e4ab3cfb02993c8cc248ea73d7dae6cec0253e9afa311c9b37e603ca9fad2ce", size = 1619181, upload-time = "2026-02-20T20:49:36.052Z" }, + { url = "https://files.pythonhosted.org/packages/0a/23/b90b60a4aabb4cec0796e55f25ffbfb579a907c3898cd2905c8918acaa16/greenlet-3.3.2-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:94ad81f0fd3c0c0681a018a976e5c2bd2ca2d9d94895f23e7bb1af4e8af4e2d5", size = 1687713, upload-time = "2026-02-20T20:21:11.684Z" }, + { url = "https://files.pythonhosted.org/packages/f3/ca/2101ca3d9223a1dc125140dbc063644dca76df6ff356531eb27bc267b446/greenlet-3.3.2-cp314-cp314-win_amd64.whl", hash = "sha256:8c4dd0f3997cf2512f7601563cc90dfb8957c0cff1e3a1b23991d4ea1776c492", size = 232034, upload-time = "2026-02-20T20:20:08.186Z" }, + { url = "https://files.pythonhosted.org/packages/f6/4a/ecf894e962a59dea60f04877eea0fd5724618da89f1867b28ee8b91e811f/greenlet-3.3.2-cp314-cp314-win_arm64.whl", hash = "sha256:cd6f9e2bbd46321ba3bbb4c8a15794d32960e3b0ae2cc4d49a1a53d314805d71", size = 231437, upload-time = "2026-02-20T20:18:59.722Z" }, + { url = "https://files.pythonhosted.org/packages/98/6d/8f2ef704e614bcf58ed43cfb8d87afa1c285e98194ab2cfad351bf04f81e/greenlet-3.3.2-cp314-cp314t-macosx_11_0_universal2.whl", hash = "sha256:e26e72bec7ab387ac80caa7496e0f908ff954f31065b0ffc1f8ecb1338b11b54", size = 286617, upload-time = "2026-02-20T20:19:29.856Z" }, + { url = "https://files.pythonhosted.org/packages/5e/0d/93894161d307c6ea237a43988f27eba0947b360b99ac5239ad3fe09f0b47/greenlet-3.3.2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8b466dff7a4ffda6ca975979bab80bdadde979e29fc947ac3be4451428d8b0e4", size = 655189, upload-time = "2026-02-20T20:47:35.742Z" }, + { url = "https://files.pythonhosted.org/packages/f5/2c/d2d506ebd8abcb57386ec4f7ba20f4030cbe56eae541bc6fd6ef399c0b41/greenlet-3.3.2-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:b8bddc5b73c9720bea487b3bffdb1840fe4e3656fba3bd40aa1489e9f37877ff", size = 658225, upload-time = "2026-02-20T20:56:02.527Z" }, + { url = "https://files.pythonhosted.org/packages/d1/67/8197b7e7e602150938049d8e7f30de1660cfb87e4c8ee349b42b67bdb2e1/greenlet-3.3.2-cp314-cp314t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:59b3e2c40f6706b05a9cd299c836c6aa2378cabe25d021acd80f13abf81181cf", size = 666581, upload-time = "2026-02-20T21:02:51.526Z" }, + { url = "https://files.pythonhosted.org/packages/8e/30/3a09155fbf728673a1dea713572d2d31159f824a37c22da82127056c44e4/greenlet-3.3.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b26b0f4428b871a751968285a1ac9648944cea09807177ac639b030bddebcea4", size = 657907, upload-time = "2026-02-20T20:21:05.259Z" }, + { url = "https://files.pythonhosted.org/packages/f3/fd/d05a4b7acd0154ed758797f0a43b4c0962a843bedfe980115e842c5b2d08/greenlet-3.3.2-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:1fb39a11ee2e4d94be9a76671482be9398560955c9e568550de0224e41104727", size = 1618857, upload-time = "2026-02-20T20:49:37.309Z" }, + { url = "https://files.pythonhosted.org/packages/6f/e1/50ee92a5db521de8f35075b5eff060dd43d39ebd46c2181a2042f7070385/greenlet-3.3.2-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:20154044d9085151bc309e7689d6f7ba10027f8f5a8c0676ad398b951913d89e", size = 1680010, upload-time = "2026-02-20T20:21:13.427Z" }, + { url = "https://files.pythonhosted.org/packages/29/4b/45d90626aef8e65336bed690106d1382f7a43665e2249017e9527df8823b/greenlet-3.3.2-cp314-cp314t-win_amd64.whl", hash = "sha256:c04c5e06ec3e022cbfe2cd4a846e1d4e50087444f875ff6d2c2ad8445495cf1a", size = 237086, upload-time = "2026-02-20T20:20:45.786Z" }, ] [[package]] name = "grpcio" -version = "1.78.0" +version = "1.78.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/06/8a/3d098f35c143a89520e568e6539cc098fcd294495910e359889ce8741c84/grpcio-1.78.0.tar.gz", hash = "sha256:7382b95189546f375c174f53a5fa873cef91c4b8005faa05cc5b3beea9c4f1c5", size = 12852416, upload-time = "2026-02-06T09:57:18.093Z" } +sdist = { url = "https://files.pythonhosted.org/packages/1f/de/de568532d9907552700f80dcec38219d8d298ad9e71f5e0a095abaf2761e/grpcio-1.78.1.tar.gz", hash = "sha256:27c625532d33ace45d57e775edf1982e183ff8641c72e4e91ef7ba667a149d72", size = 12835760, upload-time = "2026-02-20T01:16:10.869Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/86/c7/d0b780a29b0837bf4ca9580904dfb275c1fc321ded7897d620af7047ec57/grpcio-1.78.0-cp311-cp311-linux_armv7l.whl", hash = "sha256:2777b783f6c13b92bd7b716667452c329eefd646bfb3f2e9dabea2e05dbd34f6", size = 5951525, upload-time = "2026-02-06T09:55:01.989Z" }, - { url = "https://files.pythonhosted.org/packages/c5/b1/96920bf2ee61df85a9503cb6f733fe711c0ff321a5a697d791b075673281/grpcio-1.78.0-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:9dca934f24c732750389ce49d638069c3892ad065df86cb465b3fa3012b70c9e", size = 11830418, upload-time = "2026-02-06T09:55:04.462Z" }, - { url = "https://files.pythonhosted.org/packages/83/0c/7c1528f098aeb75a97de2bae18c530f56959fb7ad6c882db45d9884d6edc/grpcio-1.78.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:459ab414b35f4496138d0ecd735fed26f1318af5e52cb1efbc82a09f0d5aa911", size = 6524477, upload-time = "2026-02-06T09:55:07.111Z" }, - { url = "https://files.pythonhosted.org/packages/8d/52/e7c1f3688f949058e19a011c4e0dec973da3d0ae5e033909677f967ae1f4/grpcio-1.78.0-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:082653eecbdf290e6e3e2c276ab2c54b9e7c299e07f4221872380312d8cf395e", size = 7198266, upload-time = "2026-02-06T09:55:10.016Z" }, - { url = "https://files.pythonhosted.org/packages/e5/61/8ac32517c1e856677282c34f2e7812d6c328fa02b8f4067ab80e77fdc9c9/grpcio-1.78.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:85f93781028ec63f383f6bc90db785a016319c561cc11151fbb7b34e0d012303", size = 6730552, upload-time = "2026-02-06T09:55:12.207Z" }, - { url = "https://files.pythonhosted.org/packages/bd/98/b8ee0158199250220734f620b12e4a345955ac7329cfd908d0bf0fda77f0/grpcio-1.78.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:f12857d24d98441af6a1d5c87442d624411db486f7ba12550b07788f74b67b04", size = 7304296, upload-time = "2026-02-06T09:55:15.044Z" }, - { url = "https://files.pythonhosted.org/packages/bd/0f/7b72762e0d8840b58032a56fdbd02b78fc645b9fa993d71abf04edbc54f4/grpcio-1.78.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5397fff416b79e4b284959642a4e95ac4b0f1ece82c9993658e0e477d40551ec", size = 8288298, upload-time = "2026-02-06T09:55:17.276Z" }, - { url = "https://files.pythonhosted.org/packages/24/ae/ae4ce56bc5bb5caa3a486d60f5f6083ac3469228faa734362487176c15c5/grpcio-1.78.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:fbe6e89c7ffb48518384068321621b2a69cab509f58e40e4399fdd378fa6d074", size = 7730953, upload-time = "2026-02-06T09:55:19.545Z" }, - { url = "https://files.pythonhosted.org/packages/b5/6e/8052e3a28eb6a820c372b2eb4b5e32d195c661e137d3eca94d534a4cfd8a/grpcio-1.78.0-cp311-cp311-win32.whl", hash = "sha256:6092beabe1966a3229f599d7088b38dfc8ffa1608b5b5cdda31e591e6500f856", size = 4076503, upload-time = "2026-02-06T09:55:21.521Z" }, - { url = "https://files.pythonhosted.org/packages/08/62/f22c98c5265dfad327251fa2f840b591b1df5f5e15d88b19c18c86965b27/grpcio-1.78.0-cp311-cp311-win_amd64.whl", hash = "sha256:1afa62af6e23f88629f2b29ec9e52ec7c65a7176c1e0a83292b93c76ca882558", size = 4799767, upload-time = "2026-02-06T09:55:24.107Z" }, - { url = "https://files.pythonhosted.org/packages/4e/f4/7384ed0178203d6074446b3c4f46c90a22ddf7ae0b3aee521627f54cfc2a/grpcio-1.78.0-cp312-cp312-linux_armv7l.whl", hash = "sha256:f9ab915a267fc47c7e88c387a3a28325b58c898e23d4995f765728f4e3dedb97", size = 5913985, upload-time = "2026-02-06T09:55:26.832Z" }, - { url = "https://files.pythonhosted.org/packages/81/ed/be1caa25f06594463f685b3790b320f18aea49b33166f4141bfdc2bfb236/grpcio-1.78.0-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:3f8904a8165ab21e07e58bf3e30a73f4dffc7a1e0dbc32d51c61b5360d26f43e", size = 11811853, upload-time = "2026-02-06T09:55:29.224Z" }, - { url = "https://files.pythonhosted.org/packages/24/a7/f06d151afc4e64b7e3cc3e872d331d011c279aaab02831e40a81c691fb65/grpcio-1.78.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:859b13906ce098c0b493af92142ad051bf64c7870fa58a123911c88606714996", size = 6475766, upload-time = "2026-02-06T09:55:31.825Z" }, - { url = "https://files.pythonhosted.org/packages/8a/a8/4482922da832ec0082d0f2cc3a10976d84a7424707f25780b82814aafc0a/grpcio-1.78.0-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:b2342d87af32790f934a79c3112641e7b27d63c261b8b4395350dad43eff1dc7", size = 7170027, upload-time = "2026-02-06T09:55:34.7Z" }, - { url = "https://files.pythonhosted.org/packages/54/bf/f4a3b9693e35d25b24b0b39fa46d7d8a3c439e0a3036c3451764678fec20/grpcio-1.78.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:12a771591ae40bc65ba67048fa52ef4f0e6db8279e595fd349f9dfddeef571f9", size = 6690766, upload-time = "2026-02-06T09:55:36.902Z" }, - { url = "https://files.pythonhosted.org/packages/c7/b9/521875265cc99fe5ad4c5a17010018085cae2810a928bf15ebe7d8bcd9cc/grpcio-1.78.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:185dea0d5260cbb2d224c507bf2a5444d5abbb1fa3594c1ed7e4c709d5eb8383", size = 7266161, upload-time = "2026-02-06T09:55:39.824Z" }, - { url = "https://files.pythonhosted.org/packages/05/86/296a82844fd40a4ad4a95f100b55044b4f817dece732bf686aea1a284147/grpcio-1.78.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:51b13f9aed9d59ee389ad666b8c2214cc87b5de258fa712f9ab05f922e3896c6", size = 8253303, upload-time = "2026-02-06T09:55:42.353Z" }, - { url = "https://files.pythonhosted.org/packages/f3/e4/ea3c0caf5468537f27ad5aab92b681ed7cc0ef5f8c9196d3fd42c8c2286b/grpcio-1.78.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fd5f135b1bd58ab088930b3c613455796dfa0393626a6972663ccdda5b4ac6ce", size = 7698222, upload-time = "2026-02-06T09:55:44.629Z" }, - { url = "https://files.pythonhosted.org/packages/d7/47/7f05f81e4bb6b831e93271fb12fd52ba7b319b5402cbc101d588f435df00/grpcio-1.78.0-cp312-cp312-win32.whl", hash = "sha256:94309f498bcc07e5a7d16089ab984d42ad96af1d94b5a4eb966a266d9fcabf68", size = 4066123, upload-time = "2026-02-06T09:55:47.644Z" }, - { url = "https://files.pythonhosted.org/packages/ad/e7/d6914822c88aa2974dbbd10903d801a28a19ce9cd8bad7e694cbbcf61528/grpcio-1.78.0-cp312-cp312-win_amd64.whl", hash = "sha256:9566fe4ababbb2610c39190791e5b829869351d14369603702e890ef3ad2d06e", size = 4797657, upload-time = "2026-02-06T09:55:49.86Z" }, - { url = "https://files.pythonhosted.org/packages/05/a9/8f75894993895f361ed8636cd9237f4ab39ef87fd30db17467235ed1c045/grpcio-1.78.0-cp313-cp313-linux_armv7l.whl", hash = "sha256:ce3a90455492bf8bfa38e56fbbe1dbd4f872a3d8eeaf7337dc3b1c8aa28c271b", size = 5920143, upload-time = "2026-02-06T09:55:52.035Z" }, - { url = "https://files.pythonhosted.org/packages/55/06/0b78408e938ac424100100fd081189451b472236e8a3a1f6500390dc4954/grpcio-1.78.0-cp313-cp313-macosx_11_0_universal2.whl", hash = "sha256:2bf5e2e163b356978b23652c4818ce4759d40f4712ee9ec5a83c4be6f8c23a3a", size = 11803926, upload-time = "2026-02-06T09:55:55.494Z" }, - { url = "https://files.pythonhosted.org/packages/88/93/b59fe7832ff6ae3c78b813ea43dac60e295fa03606d14d89d2e0ec29f4f3/grpcio-1.78.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:8f2ac84905d12918e4e55a16da17939eb63e433dc11b677267c35568aa63fc84", size = 6478628, upload-time = "2026-02-06T09:55:58.533Z" }, - { url = "https://files.pythonhosted.org/packages/ed/df/e67e3734527f9926b7d9c0dde6cd998d1d26850c3ed8eeec81297967ac67/grpcio-1.78.0-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:b58f37edab4a3881bc6c9bca52670610e0c9ca14e2ea3cf9debf185b870457fb", size = 7173574, upload-time = "2026-02-06T09:56:01.786Z" }, - { url = "https://files.pythonhosted.org/packages/a6/62/cc03fffb07bfba982a9ec097b164e8835546980aec25ecfa5f9c1a47e022/grpcio-1.78.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:735e38e176a88ce41840c21bb49098ab66177c64c82426e24e0082500cc68af5", size = 6692639, upload-time = "2026-02-06T09:56:04.529Z" }, - { url = "https://files.pythonhosted.org/packages/bf/9a/289c32e301b85bdb67d7ec68b752155e674ee3ba2173a1858f118e399ef3/grpcio-1.78.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:2045397e63a7a0ee7957c25f7dbb36ddc110e0cfb418403d110c0a7a68a844e9", size = 7268838, upload-time = "2026-02-06T09:56:08.397Z" }, - { url = "https://files.pythonhosted.org/packages/0e/79/1be93f32add280461fa4773880196572563e9c8510861ac2da0ea0f892b6/grpcio-1.78.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:a9f136fbafe7ccf4ac7e8e0c28b31066e810be52d6e344ef954a3a70234e1702", size = 8251878, upload-time = "2026-02-06T09:56:10.914Z" }, - { url = "https://files.pythonhosted.org/packages/65/65/793f8e95296ab92e4164593674ae6291b204bb5f67f9d4a711489cd30ffa/grpcio-1.78.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:748b6138585379c737adc08aeffd21222abbda1a86a0dca2a39682feb9196c20", size = 7695412, upload-time = "2026-02-06T09:56:13.593Z" }, - { url = "https://files.pythonhosted.org/packages/1c/9f/1e233fe697ecc82845942c2822ed06bb522e70d6771c28d5528e4c50f6a4/grpcio-1.78.0-cp313-cp313-win32.whl", hash = "sha256:271c73e6e5676afe4fc52907686670c7cea22ab2310b76a59b678403ed40d670", size = 4064899, upload-time = "2026-02-06T09:56:15.601Z" }, - { url = "https://files.pythonhosted.org/packages/4d/27/d86b89e36de8a951501fb06a0f38df19853210f341d0b28f83f4aa0ffa08/grpcio-1.78.0-cp313-cp313-win_amd64.whl", hash = "sha256:f2d4e43ee362adfc05994ed479334d5a451ab7bc3f3fee1b796b8ca66895acb4", size = 4797393, upload-time = "2026-02-06T09:56:17.882Z" }, - { url = "https://files.pythonhosted.org/packages/29/f2/b56e43e3c968bfe822fa6ce5bca10d5c723aa40875b48791ce1029bb78c7/grpcio-1.78.0-cp314-cp314-linux_armv7l.whl", hash = "sha256:e87cbc002b6f440482b3519e36e1313eb5443e9e9e73d6a52d43bd2004fcfd8e", size = 5920591, upload-time = "2026-02-06T09:56:20.758Z" }, - { url = "https://files.pythonhosted.org/packages/5d/81/1f3b65bd30c334167bfa8b0d23300a44e2725ce39bba5b76a2460d85f745/grpcio-1.78.0-cp314-cp314-macosx_11_0_universal2.whl", hash = "sha256:c41bc64626db62e72afec66b0c8a0da76491510015417c127bfc53b2fe6d7f7f", size = 11813685, upload-time = "2026-02-06T09:56:24.315Z" }, - { url = "https://files.pythonhosted.org/packages/0e/1c/bbe2f8216a5bd3036119c544d63c2e592bdf4a8ec6e4a1867592f4586b26/grpcio-1.78.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:8dfffba826efcf366b1e3ccc37e67afe676f290e13a3b48d31a46739f80a8724", size = 6487803, upload-time = "2026-02-06T09:56:27.367Z" }, - { url = "https://files.pythonhosted.org/packages/16/5c/a6b2419723ea7ddce6308259a55e8e7593d88464ce8db9f4aa857aba96fa/grpcio-1.78.0-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:74be1268d1439eaaf552c698cdb11cd594f0c49295ae6bb72c34ee31abbe611b", size = 7173206, upload-time = "2026-02-06T09:56:29.876Z" }, - { url = "https://files.pythonhosted.org/packages/df/1e/b8801345629a415ea7e26c83d75eb5dbe91b07ffe5210cc517348a8d4218/grpcio-1.78.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:be63c88b32e6c0f1429f1398ca5c09bc64b0d80950c8bb7807d7d7fb36fb84c7", size = 6693826, upload-time = "2026-02-06T09:56:32.305Z" }, - { url = "https://files.pythonhosted.org/packages/34/84/0de28eac0377742679a510784f049738a80424b17287739fc47d63c2439e/grpcio-1.78.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:3c586ac70e855c721bda8f548d38c3ca66ac791dc49b66a8281a1f99db85e452", size = 7277897, upload-time = "2026-02-06T09:56:34.915Z" }, - { url = "https://files.pythonhosted.org/packages/ca/9c/ad8685cfe20559a9edb66f735afdcb2b7d3de69b13666fdfc542e1916ebd/grpcio-1.78.0-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:35eb275bf1751d2ffbd8f57cdbc46058e857cf3971041521b78b7db94bdaf127", size = 8252404, upload-time = "2026-02-06T09:56:37.553Z" }, - { url = "https://files.pythonhosted.org/packages/3c/05/33a7a4985586f27e1de4803887c417ec7ced145ebd069bc38a9607059e2b/grpcio-1.78.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:207db540302c884b8848036b80db352a832b99dfdf41db1eb554c2c2c7800f65", size = 7696837, upload-time = "2026-02-06T09:56:40.173Z" }, - { url = "https://files.pythonhosted.org/packages/73/77/7382241caf88729b106e49e7d18e3116216c778e6a7e833826eb96de22f7/grpcio-1.78.0-cp314-cp314-win32.whl", hash = "sha256:57bab6deef2f4f1ca76cc04565df38dc5713ae6c17de690721bdf30cb1e0545c", size = 4142439, upload-time = "2026-02-06T09:56:43.258Z" }, - { url = "https://files.pythonhosted.org/packages/48/b2/b096ccce418882fbfda4f7496f9357aaa9a5af1896a9a7f60d9f2b275a06/grpcio-1.78.0-cp314-cp314-win_amd64.whl", hash = "sha256:dce09d6116df20a96acfdbf85e4866258c3758180e8c49845d6ba8248b6d0bbb", size = 4929852, upload-time = "2026-02-06T09:56:45.885Z" }, + { url = "https://files.pythonhosted.org/packages/bf/1e/ad774af3b2c84f49c6d8c4a7bea4c40f02268ea8380630c28777edda463b/grpcio-1.78.1-cp311-cp311-linux_armv7l.whl", hash = "sha256:3a8aa79bc6e004394c0abefd4b034c14affda7b66480085d87f5fbadf43b593b", size = 5951132, upload-time = "2026-02-20T01:13:05.942Z" }, + { url = "https://files.pythonhosted.org/packages/48/9d/ad3c284bedd88c545e20675d98ae904114d8517a71b0efc0901e9166628f/grpcio-1.78.1-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:8e1fcb419da5811deb47b7749b8049f7c62b993ba17822e3c7231e3e0ba65b79", size = 11831052, upload-time = "2026-02-20T01:13:09.604Z" }, + { url = "https://files.pythonhosted.org/packages/6d/08/20d12865e47242d03c3ade9bb2127f5b4aded964f373284cfb357d47c5ac/grpcio-1.78.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:b071dccac245c32cd6b1dd96b722283b855881ca0bf1c685cf843185f5d5d51e", size = 6524749, upload-time = "2026-02-20T01:13:21.692Z" }, + { url = "https://files.pythonhosted.org/packages/c6/53/a8b72f52b253ec0cfdf88a13e9236a9d717c332b8aa5f0ba9e4699e94b55/grpcio-1.78.1-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:d6fb962947e4fe321eeef3be1ba5ba49d32dea9233c825fcbade8e858c14aaf4", size = 7198995, upload-time = "2026-02-20T01:13:24.275Z" }, + { url = "https://files.pythonhosted.org/packages/13/3c/ac769c8ded1bcb26bb119fb472d3374b481b3cf059a0875db9fc77139c17/grpcio-1.78.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:a6afd191551fd72e632367dfb083e33cd185bf9ead565f2476bba8ab864ae496", size = 6730770, upload-time = "2026-02-20T01:13:26.522Z" }, + { url = "https://files.pythonhosted.org/packages/dc/c3/2275ef4cc5b942314321f77d66179be4097ff484e82ca34bf7baa5b1ddbc/grpcio-1.78.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b2acd83186305c0802dbc4d81ed0ec2f3e8658d7fde97cfba2f78d7372f05b89", size = 7305036, upload-time = "2026-02-20T01:13:30.923Z" }, + { url = "https://files.pythonhosted.org/packages/91/cb/3c2aa99e12cbbfc72c2ed8aa328e6041709d607d668860380e6cd00ba17d/grpcio-1.78.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5380268ab8513445740f1f77bd966d13043d07e2793487e61fd5b5d0935071eb", size = 8288641, upload-time = "2026-02-20T01:13:39.42Z" }, + { url = "https://files.pythonhosted.org/packages/0d/b2/21b89f492260ac645775d9973752ca873acfd0609d6998e9d3065a21ea2f/grpcio-1.78.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:389b77484959bdaad6a2b7dda44d7d1228381dd669a03f5660392aa0e9385b22", size = 7730967, upload-time = "2026-02-20T01:13:41.697Z" }, + { url = "https://files.pythonhosted.org/packages/24/03/6b89eddf87fdffb8fa9d37375d44d3a798f4b8116ac363a5f7ca84caa327/grpcio-1.78.1-cp311-cp311-win32.whl", hash = "sha256:9dee66d142f4a8cca36b5b98a38f006419138c3c89e72071747f8fca415a6d8f", size = 4076680, upload-time = "2026-02-20T01:13:43.781Z" }, + { url = "https://files.pythonhosted.org/packages/a7/a8/204460b1bc1dff9862e98f56a2d14be3c4171f929f8eaf8c4517174b4270/grpcio-1.78.1-cp311-cp311-win_amd64.whl", hash = "sha256:43b930cf4f9c4a2262bb3e5d5bc40df426a72538b4f98e46f158b7eb112d2d70", size = 4801074, upload-time = "2026-02-20T01:13:46.315Z" }, + { url = "https://files.pythonhosted.org/packages/ab/ed/d2eb9d27fded1a76b2a80eb9aa8b12101da7e41ce2bac0ad3651e88a14ae/grpcio-1.78.1-cp312-cp312-linux_armv7l.whl", hash = "sha256:41e4605c923e0e9a84a2718e4948a53a530172bfaf1a6d1ded16ef9c5849fca2", size = 5913389, upload-time = "2026-02-20T01:13:49.005Z" }, + { url = "https://files.pythonhosted.org/packages/69/1b/40034e9ab010eeb3fa41ec61d8398c6dbf7062f3872c866b8f72700e2522/grpcio-1.78.1-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:39da1680d260c0c619c3b5fa2dc47480ca24d5704c7a548098bca7de7f5dd17f", size = 11811839, upload-time = "2026-02-20T01:13:51.839Z" }, + { url = "https://files.pythonhosted.org/packages/b4/69/fe16ef2979ea62b8aceb3a3f1e7a8bbb8b717ae2a44b5899d5d426073273/grpcio-1.78.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:b5d5881d72a09b8336a8f874784a8eeffacde44a7bc1a148bce5a0243a265ef0", size = 6475805, upload-time = "2026-02-20T01:13:55.423Z" }, + { url = "https://files.pythonhosted.org/packages/5b/1e/069e0a9062167db18446917d7c00ae2e91029f96078a072bedc30aaaa8c3/grpcio-1.78.1-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:888ceb7821acd925b1c90f0cdceaed1386e69cfe25e496e0771f6c35a156132f", size = 7169955, upload-time = "2026-02-20T01:13:59.553Z" }, + { url = "https://files.pythonhosted.org/packages/38/fc/44a57e2bb4a755e309ee4e9ed2b85c9af93450b6d3118de7e69410ee05fa/grpcio-1.78.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:8942bdfc143b467c264b048862090c4ba9a0223c52ae28c9ae97754361372e42", size = 6690767, upload-time = "2026-02-20T01:14:02.31Z" }, + { url = "https://files.pythonhosted.org/packages/b8/87/21e16345d4c75046d453916166bc72a3309a382c8e97381ec4b8c1a54729/grpcio-1.78.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:716a544969660ed609164aff27b2effd3ff84e54ac81aa4ce77b1607ca917d22", size = 7266846, upload-time = "2026-02-20T01:14:12.974Z" }, + { url = "https://files.pythonhosted.org/packages/11/df/d6261983f9ca9ef4d69893765007a9a3211b91d9faf85a2591063df381c7/grpcio-1.78.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:4d50329b081c223d444751076bb5b389d4f06c2b32d51b31a1e98172e6cecfb9", size = 8253522, upload-time = "2026-02-20T01:14:17.407Z" }, + { url = "https://files.pythonhosted.org/packages/de/7c/4f96a0ff113c5d853a27084d7590cd53fdb05169b596ea9f5f27f17e021e/grpcio-1.78.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:7e836778c13ff70edada16567e8da0c431e8818eaae85b80d11c1ba5782eccbb", size = 7698070, upload-time = "2026-02-20T01:14:20.032Z" }, + { url = "https://files.pythonhosted.org/packages/17/3c/7b55c0b5af88fbeb3d0c13e25492d3ace41ac9dbd0f5f8f6c0fb613b6706/grpcio-1.78.1-cp312-cp312-win32.whl", hash = "sha256:07eb016ea7444a22bef465cce045512756956433f54450aeaa0b443b8563b9ca", size = 4066474, upload-time = "2026-02-20T01:14:22.602Z" }, + { url = "https://files.pythonhosted.org/packages/5d/17/388c12d298901b0acf10b612b650692bfed60e541672b1d8965acbf2d722/grpcio-1.78.1-cp312-cp312-win_amd64.whl", hash = "sha256:02b82dcd2fa580f5e82b4cf62ecde1b3c7cc9ba27b946421200706a6e5acaf85", size = 4797537, upload-time = "2026-02-20T01:14:25.444Z" }, + { url = "https://files.pythonhosted.org/packages/df/72/754754639cfd16ad04619e1435a518124b2d858e5752225376f9285d4c51/grpcio-1.78.1-cp313-cp313-linux_armv7l.whl", hash = "sha256:2b7ad2981550ce999e25ce3f10c8863f718a352a2fd655068d29ea3fd37b4907", size = 5919437, upload-time = "2026-02-20T01:14:29.403Z" }, + { url = "https://files.pythonhosted.org/packages/5c/84/6267d1266f8bc335d3a8b7ccf981be7de41e3ed8bd3a49e57e588212b437/grpcio-1.78.1-cp313-cp313-macosx_11_0_universal2.whl", hash = "sha256:409bfe22220889b9906739910a0ee4c197a967c21b8dd14b4b06dd477f8819ce", size = 11803701, upload-time = "2026-02-20T01:14:32.624Z" }, + { url = "https://files.pythonhosted.org/packages/f3/56/c9098e8b920a54261cd605bbb040de0cde1ca4406102db0aa2c0b11d1fb4/grpcio-1.78.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:34b6cb16f4b67eeb5206250dc5b4d5e8e3db939535e58efc330e4c61341554bd", size = 6479416, upload-time = "2026-02-20T01:14:35.926Z" }, + { url = "https://files.pythonhosted.org/packages/86/cf/5d52024371ee62658b7ed72480200524087528844ec1b65265bbcd31c974/grpcio-1.78.1-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:39d21fd30d38a5afb93f0e2e71e2ec2bd894605fb75d41d5a40060c2f98f8d11", size = 7174087, upload-time = "2026-02-20T01:14:39.98Z" }, + { url = "https://files.pythonhosted.org/packages/31/e6/5e59551afad4279e27335a6d60813b8aa3ae7b14fb62cea1d329a459c118/grpcio-1.78.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:09fbd4bcaadb6d8604ed1504b0bdf7ac18e48467e83a9d930a70a7fefa27e862", size = 6692881, upload-time = "2026-02-20T01:14:42.466Z" }, + { url = "https://files.pythonhosted.org/packages/db/8f/940062de2d14013c02f51b079eb717964d67d46f5d44f22038975c9d9576/grpcio-1.78.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:db681513a1bdd879c0b24a5a6a70398da5eaaba0e077a306410dc6008426847a", size = 7269092, upload-time = "2026-02-20T01:14:45.826Z" }, + { url = "https://files.pythonhosted.org/packages/09/87/9db657a4b5f3b15560ec591db950bc75a1a2f9e07832578d7e2b23d1a7bd/grpcio-1.78.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:f81816faa426da461e9a597a178832a351d6f1078102590a4b32c77d251b71eb", size = 8252037, upload-time = "2026-02-20T01:14:48.57Z" }, + { url = "https://files.pythonhosted.org/packages/e2/37/b980e0265479ec65e26b6e300a39ceac33ecb3f762c2861d4bac990317cf/grpcio-1.78.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffbb760df1cd49e0989f9826b2fd48930700db6846ac171eaff404f3cfbe5c28", size = 7695243, upload-time = "2026-02-20T01:14:51.376Z" }, + { url = "https://files.pythonhosted.org/packages/98/46/5fc42c100ab702fa1ea41a75c890c563c3f96432b4a287d5a6369654f323/grpcio-1.78.1-cp313-cp313-win32.whl", hash = "sha256:1a56bf3ee99af5cf32d469de91bf5de79bdac2e18082b495fc1063ea33f4f2d0", size = 4065329, upload-time = "2026-02-20T01:14:53.952Z" }, + { url = "https://files.pythonhosted.org/packages/b0/da/806d60bb6611dfc16cf463d982bd92bd8b6bd5f87dfac66b0a44dfe20995/grpcio-1.78.1-cp313-cp313-win_amd64.whl", hash = "sha256:8991c2add0d8505178ff6c3ae54bd9386279e712be82fa3733c54067aae9eda1", size = 4797637, upload-time = "2026-02-20T01:14:57.276Z" }, + { url = "https://files.pythonhosted.org/packages/96/3a/2d2ec4d2ce2eb9d6a2b862630a0d9d4ff4239ecf1474ecff21442a78612a/grpcio-1.78.1-cp314-cp314-linux_armv7l.whl", hash = "sha256:d101fe49b1e0fb4a7aa36ed0c3821a0f67a5956ef572745452d2cd790d723a3f", size = 5920256, upload-time = "2026-02-20T01:15:00.23Z" }, + { url = "https://files.pythonhosted.org/packages/9c/92/dccb7d087a1220ed358753945230c1ddeeed13684b954cb09db6758f1271/grpcio-1.78.1-cp314-cp314-macosx_11_0_universal2.whl", hash = "sha256:5ce1855e8cfc217cdf6bcfe0cf046d7cf81ddcc3e6894d6cfd075f87a2d8f460", size = 11813749, upload-time = "2026-02-20T01:15:03.312Z" }, + { url = "https://files.pythonhosted.org/packages/ef/47/c20e87f87986da9998f30f14776ce27e61f02482a3a030ffe265089342c6/grpcio-1.78.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:cd26048d066b51f39fe9206e2bcc2cea869a5e5b2d13c8d523f4179193047ebd", size = 6488739, upload-time = "2026-02-20T01:15:14.349Z" }, + { url = "https://files.pythonhosted.org/packages/a6/c2/088bd96e255133d7d87c3eed0d598350d16cde1041bdbe2bb065967aaf91/grpcio-1.78.1-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:4b8d7fda614cf2af0f73bbb042f3b7fee2ecd4aea69ec98dbd903590a1083529", size = 7173096, upload-time = "2026-02-20T01:15:17.687Z" }, + { url = "https://files.pythonhosted.org/packages/60/ce/168db121073a03355ce3552b3b1f790b5ded62deffd7d98c5f642b9d3d81/grpcio-1.78.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:656a5bd142caeb8b1efe1fe0b4434ecc7781f44c97cfc7927f6608627cf178c0", size = 6693861, upload-time = "2026-02-20T01:15:20.911Z" }, + { url = "https://files.pythonhosted.org/packages/ae/d0/90b30ec2d9425215dd56922d85a90babbe6ee7e8256ba77d866b9c0d3aba/grpcio-1.78.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:99550e344482e3c21950c034f74668fccf8a546d50c1ecb4f717543bbdc071ba", size = 7278083, upload-time = "2026-02-20T01:15:23.698Z" }, + { url = "https://files.pythonhosted.org/packages/c1/fb/73f9ba0b082bcd385d46205095fd9c917754685885b28fce3741e9f54529/grpcio-1.78.1-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:8f27683ca68359bd3f0eb4925824d71e538f84338b3ae337ead2ae43977d7541", size = 8252546, upload-time = "2026-02-20T01:15:26.517Z" }, + { url = "https://files.pythonhosted.org/packages/85/c5/6a89ea3cb5db6c3d9ed029b0396c49f64328c0cf5d2630ffeed25711920a/grpcio-1.78.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:a40515b69ac50792f9b8ead260f194ba2bb3285375b6c40c7ff938f14c3df17d", size = 7696289, upload-time = "2026-02-20T01:15:29.718Z" }, + { url = "https://files.pythonhosted.org/packages/3d/05/63a7495048499ef437b4933d32e59b7f737bd5368ad6fb2479e2bd83bf2c/grpcio-1.78.1-cp314-cp314-win32.whl", hash = "sha256:2c473b54ef1618f4fb85e82ff4994de18143b74efc088b91b5a935a3a45042ba", size = 4142186, upload-time = "2026-02-20T01:15:32.786Z" }, + { url = "https://files.pythonhosted.org/packages/1c/ce/adfe7e5f701d503be7778291757452e3fab6b19acf51917c79f5d1cf7f8a/grpcio-1.78.1-cp314-cp314-win_amd64.whl", hash = "sha256:e2a6b33d1050dce2c6f563c5caf7f7cbeebf7fba8cde37ffe3803d50526900d1", size = 4932000, upload-time = "2026-02-20T01:15:36.127Z" }, ] [[package]] name = "grpcio-reflection" -version = "1.78.0" +version = "1.78.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "grpcio" }, { name = "protobuf" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/31/06/337546aae558675f79cae2a8c1ce0c9b1952cbc5c28b01878f68d040f5bb/grpcio_reflection-1.78.0.tar.gz", hash = "sha256:e6e60c0b85dbcdf963b4d4d150c0f1d238ba891d805b575c52c0365d07fc0c40", size = 19098, upload-time = "2026-02-06T10:01:52.225Z" } +sdist = { url = "https://files.pythonhosted.org/packages/4d/f1/389fbbff18e84fdde609114eae37e74d8ae23e3f48266769d1fe2486b754/grpcio_reflection-1.78.1.tar.gz", hash = "sha256:224c0d604207954923fd6f8dbec541e0976a64ab1be65d2ee40844ce16c762ab", size = 19116, upload-time = "2026-02-20T01:21:49.703Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/df/6d/4d095d27ccd049865ecdafc467754e9e47ad0f677a30dda969c3590f6582/grpcio_reflection-1.78.0-py3-none-any.whl", hash = "sha256:06fcfde9e6888cdd12e9dd1cf6dc7c440c2e9acf420f696ccbe008672ed05b60", size = 22800, upload-time = "2026-02-06T10:01:33.822Z" }, + { url = "https://files.pythonhosted.org/packages/2c/29/8f3ad00c7cfd97decd0a9b1c0e5422adf684736c639c7a9d840a1f9166e6/grpcio_reflection-1.78.1-py3-none-any.whl", hash = "sha256:222c4c3d1367fc4c6bf53d556229e3735f54ab4710b4aee541f7f741de069ba0", size = 22801, upload-time = "2026-02-20T01:21:34.143Z" }, ] [[package]] name = "grpcio-tools" -version = "1.78.0" +version = "1.78.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "grpcio" }, { name = "protobuf" }, { name = "setuptools" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/8b/d1/cbefe328653f746fd319c4377836a25ba64226e41c6a1d7d5cdbc87a459f/grpcio_tools-1.78.0.tar.gz", hash = "sha256:4b0dd86560274316e155d925158276f8564508193088bc43e20d3f5dff956b2b", size = 5393026, upload-time = "2026-02-06T09:59:59.53Z" } +sdist = { url = "https://files.pythonhosted.org/packages/c9/e5/311efa9278a451291e317286babf3f69b1479f8e6fd244836e3803e4b81d/grpcio_tools-1.78.1.tar.gz", hash = "sha256:f47b746b06a940954b9aa86b1824aa4874f068a7ec2d4b407980d202c86a691a", size = 5392610, upload-time = "2026-02-20T01:19:44.109Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/75/78/280184d19242ed6762bf453c47a70b869b3c5c72a24dc5bf2bf43909faa3/grpcio_tools-1.78.0-cp311-cp311-linux_armv7l.whl", hash = "sha256:6a8b8b7b49f319d29dbcf507f62984fa382d1d10437d75c3f26db5f09c4ac0af", size = 2545904, upload-time = "2026-02-06T09:57:52.769Z" }, - { url = "https://files.pythonhosted.org/packages/5b/51/3c46dea5113f68fe879961cae62d34bb7a3c308a774301b45d614952ee98/grpcio_tools-1.78.0-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:d62cf3b68372b0c6d722a6165db41b976869811abeabc19c8522182978d8db10", size = 5709078, upload-time = "2026-02-06T09:57:56.389Z" }, - { url = "https://files.pythonhosted.org/packages/e0/2c/dc1ae9ec53182c96d56dfcbf3bcd3e55a8952ad508b188c75bf5fc8993d4/grpcio_tools-1.78.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:fa9056742efeaf89d5fe14198af71e5cbc4fbf155d547b89507e19d6025906c6", size = 2591744, upload-time = "2026-02-06T09:57:58.341Z" }, - { url = "https://files.pythonhosted.org/packages/04/63/9b53fc9a9151dd24386785171a4191ee7cb5afb4d983b6a6a87408f41b28/grpcio_tools-1.78.0-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:e3191af125dcb705aa6bc3856ba81ba99b94121c1b6ebee152e66ea084672831", size = 2905113, upload-time = "2026-02-06T09:58:00.38Z" }, - { url = "https://files.pythonhosted.org/packages/96/b2/0ad8d789f3a2a00893131c140865605fa91671a6e6fcf9da659e1fabba10/grpcio_tools-1.78.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:283239ddbb67ae83fac111c61b25d8527a1dbd355b377cbc8383b79f1329944d", size = 2656436, upload-time = "2026-02-06T09:58:03.038Z" }, - { url = "https://files.pythonhosted.org/packages/09/4d/580f47ce2fc61b093ade747b378595f51b4f59972dd39949f7444b464a03/grpcio_tools-1.78.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ac977508c0db15301ef36d6c79769ec1a6cc4e3bc75735afca7fe7e360cead3a", size = 3106128, upload-time = "2026-02-06T09:58:05.064Z" }, - { url = "https://files.pythonhosted.org/packages/c9/29/d83b2d89f8d10e438bad36b1eb29356510fb97e81e6a608b22ae1890e8e6/grpcio_tools-1.78.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4ff605e25652a0bd13aa8a73a09bc48669c68170902f5d2bf1468a57d5e78771", size = 3654953, upload-time = "2026-02-06T09:58:07.15Z" }, - { url = "https://files.pythonhosted.org/packages/08/71/917ce85633311e54fefd7e6eb1224fb780ef317a4d092766f5630c3fc419/grpcio_tools-1.78.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0197d7b561c79be78ab93d0fe2836c8def470683df594bae3ac89dd8e5c821b2", size = 3322630, upload-time = "2026-02-06T09:58:10.305Z" }, - { url = "https://files.pythonhosted.org/packages/b2/55/3fbf6b26ab46fc79e1e6f7f4e0993cf540263dad639290299fad374a0829/grpcio_tools-1.78.0-cp311-cp311-win32.whl", hash = "sha256:28f71f591f7f39555863ced84fcc209cbf4454e85ef957232f43271ee99af577", size = 993804, upload-time = "2026-02-06T09:58:13.698Z" }, - { url = "https://files.pythonhosted.org/packages/73/86/4affe006d9e1e9e1c6653d6aafe2f8b9188acb2b563cd8ed3a2c7c0e8aec/grpcio_tools-1.78.0-cp311-cp311-win_amd64.whl", hash = "sha256:5a6de495dabf86a3b40b9a7492994e1232b077af9d63080811838b781abbe4e8", size = 1158566, upload-time = "2026-02-06T09:58:15.721Z" }, - { url = "https://files.pythonhosted.org/packages/0c/ae/5b1fa5dd8d560a6925aa52de0de8731d319f121c276e35b9b2af7cc220a2/grpcio_tools-1.78.0-cp312-cp312-linux_armv7l.whl", hash = "sha256:9eb122da57d4cad7d339fc75483116f0113af99e8d2c67f3ef9cae7501d806e4", size = 2546823, upload-time = "2026-02-06T09:58:17.944Z" }, - { url = "https://files.pythonhosted.org/packages/a7/ed/d33ccf7fa701512efea7e7e23333b748848a123e9d3bbafde4e126784546/grpcio_tools-1.78.0-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:d0c501b8249940b886420e6935045c44cb818fa6f265f4c2b97d5cff9cb5e796", size = 5706776, upload-time = "2026-02-06T09:58:20.944Z" }, - { url = "https://files.pythonhosted.org/packages/c6/69/4285583f40b37af28277fc6b867d636e3b10e1b6a7ebd29391a856e1279b/grpcio_tools-1.78.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:77e5aa2d2a7268d55b1b113f958264681ef1994c970f69d48db7d4683d040f57", size = 2593972, upload-time = "2026-02-06T09:58:23.29Z" }, - { url = "https://files.pythonhosted.org/packages/d7/eb/ecc1885bd6b3147f0a1b7dff5565cab72f01c8f8aa458f682a1c77a9fb08/grpcio_tools-1.78.0-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:8e3c0b0e6ba5275322ba29a97bf890565a55f129f99a21b121145e9e93a22525", size = 2905531, upload-time = "2026-02-06T09:58:25.406Z" }, - { url = "https://files.pythonhosted.org/packages/ae/a9/511d0040ced66960ca10ba0f082d6b2d2ee6dd61837b1709636fdd8e23b4/grpcio_tools-1.78.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:975d4cb48694e20ebd78e1643e5f1cd94cdb6a3d38e677a8e84ae43665aa4790", size = 2656909, upload-time = "2026-02-06T09:58:28.022Z" }, - { url = "https://files.pythonhosted.org/packages/06/a3/3d2c707e7dee8df842c96fbb24feb2747e506e39f4a81b661def7fed107c/grpcio_tools-1.78.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:553ff18c5d52807dedecf25045ae70bad7a3dbba0b27a9a3cdd9bcf0a1b7baec", size = 3109778, upload-time = "2026-02-06T09:58:30.091Z" }, - { url = "https://files.pythonhosted.org/packages/1f/4b/646811ba241bf05da1f0dc6f25764f1c837f78f75b4485a4210c84b79eae/grpcio_tools-1.78.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:8c7f5e4af5a84d2e96c862b1a65e958a538237e268d5f8203a3a784340975b51", size = 3658763, upload-time = "2026-02-06T09:58:32.875Z" }, - { url = "https://files.pythonhosted.org/packages/45/de/0a5ef3b3e79d1011375f5580dfee3a9c1ccb96c5f5d1c74c8cee777a2483/grpcio_tools-1.78.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:96183e2b44afc3f9a761e9d0f985c3b44e03e8bb98e626241a6cbfb3b6f7e88f", size = 3325116, upload-time = "2026-02-06T09:58:34.894Z" }, - { url = "https://files.pythonhosted.org/packages/95/d2/6391b241ad571bc3e71d63f957c0b1860f0c47932d03c7f300028880f9b8/grpcio_tools-1.78.0-cp312-cp312-win32.whl", hash = "sha256:2250e8424c565a88573f7dc10659a0b92802e68c2a1d57e41872c9b88ccea7a6", size = 993493, upload-time = "2026-02-06T09:58:37.242Z" }, - { url = "https://files.pythonhosted.org/packages/7c/8f/7d0d3a39ecad76ccc136be28274daa660569b244fa7d7d0bbb24d68e5ece/grpcio_tools-1.78.0-cp312-cp312-win_amd64.whl", hash = "sha256:217d1fa29de14d9c567d616ead7cb0fef33cde36010edff5a9390b00d52e5094", size = 1158423, upload-time = "2026-02-06T09:58:40.072Z" }, - { url = "https://files.pythonhosted.org/packages/53/ce/17311fb77530420e2f441e916b347515133e83d21cd6cc77be04ce093d5b/grpcio_tools-1.78.0-cp313-cp313-linux_armv7l.whl", hash = "sha256:2d6de1cc23bdc1baafc23e201b1e48c617b8c1418b4d8e34cebf72141676e5fb", size = 2546284, upload-time = "2026-02-06T09:58:43.073Z" }, - { url = "https://files.pythonhosted.org/packages/1d/d3/79e101483115f0e78223397daef71751b75eba7e92a32060c10aae11ca64/grpcio_tools-1.78.0-cp313-cp313-macosx_11_0_universal2.whl", hash = "sha256:2afeaad88040894c76656202ff832cb151bceb05c0e6907e539d129188b1e456", size = 5705653, upload-time = "2026-02-06T09:58:45.533Z" }, - { url = "https://files.pythonhosted.org/packages/8b/a7/52fa3ccb39ceeee6adc010056eadfbca8198651c113e418dafebbdf2b306/grpcio_tools-1.78.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:33cc593735c93c03d63efe7a8ba25f3c66f16c52f0651910712490244facad72", size = 2592788, upload-time = "2026-02-06T09:58:48.918Z" }, - { url = "https://files.pythonhosted.org/packages/68/08/682ff6bb548225513d73dc9403742d8975439d7469c673bc534b9bbc83a7/grpcio_tools-1.78.0-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:2921d7989c4d83b71f03130ab415fa4d66e6693b8b8a1fcbb7a1c67cff19b812", size = 2905157, upload-time = "2026-02-06T09:58:51.478Z" }, - { url = "https://files.pythonhosted.org/packages/b2/66/264f3836a96423b7018e5ada79d62576a6401f6da4e1f4975b18b2be1265/grpcio_tools-1.78.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e6a0df438e82c804c7b95e3f311c97c2f876dcc36376488d5b736b7bcf5a9b45", size = 2656166, upload-time = "2026-02-06T09:58:54.117Z" }, - { url = "https://files.pythonhosted.org/packages/f3/6b/f108276611522e03e98386b668cc7e575eff6952f2db9caa15b2a3b3e883/grpcio_tools-1.78.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e9c6070a9500798225191ef25d0055a15d2c01c9c8f2ee7b681fffa99c98c822", size = 3109110, upload-time = "2026-02-06T09:58:56.891Z" }, - { url = "https://files.pythonhosted.org/packages/6f/c7/cf048dbcd64b3396b3c860a2ffbcc67a8f8c87e736aaa74c2e505a7eee4c/grpcio_tools-1.78.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:394e8b57d85370a62e5b0a4d64c96fcf7568345c345d8590c821814d227ecf1d", size = 3657863, upload-time = "2026-02-06T09:58:59.176Z" }, - { url = "https://files.pythonhosted.org/packages/b6/37/e2736912c8fda57e2e57a66ea5e0bc8eb9a5fb7ded00e866ad22d50afb08/grpcio_tools-1.78.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3ef700293ab375e111a2909d87434ed0a0b086adf0ce67a8d9cf12ea7765e63", size = 3324748, upload-time = "2026-02-06T09:59:01.242Z" }, - { url = "https://files.pythonhosted.org/packages/1c/5d/726abc75bb5bfc2841e88ea05896e42f51ca7c30cb56da5c5b63058b3867/grpcio_tools-1.78.0-cp313-cp313-win32.whl", hash = "sha256:6993b960fec43a8d840ee5dc20247ef206c1a19587ea49fe5e6cc3d2a09c1585", size = 993074, upload-time = "2026-02-06T09:59:03.085Z" }, - { url = "https://files.pythonhosted.org/packages/c5/68/91b400bb360faf9b177ffb5540ec1c4d06ca923691ddf0f79e2c9683f4da/grpcio_tools-1.78.0-cp313-cp313-win_amd64.whl", hash = "sha256:275ce3c2978842a8cf9dd88dce954e836e590cf7029649ad5d1145b779039ed5", size = 1158185, upload-time = "2026-02-06T09:59:05.036Z" }, - { url = "https://files.pythonhosted.org/packages/cf/5e/278f3831c8d56bae02e3acc570465648eccf0a6bbedcb1733789ac966803/grpcio_tools-1.78.0-cp314-cp314-linux_armv7l.whl", hash = "sha256:8b080d0d072e6032708a3a91731b808074d7ab02ca8fb9847b6a011fdce64cd9", size = 2546270, upload-time = "2026-02-06T09:59:07.426Z" }, - { url = "https://files.pythonhosted.org/packages/a3/d9/68582f2952b914b60dddc18a2e3f9c6f09af9372b6f6120d6cf3ec7f8b4e/grpcio_tools-1.78.0-cp314-cp314-macosx_11_0_universal2.whl", hash = "sha256:8c0ad8f8f133145cd7008b49cb611a5c6a9d89ab276c28afa17050516e801f79", size = 5705731, upload-time = "2026-02-06T09:59:09.856Z" }, - { url = "https://files.pythonhosted.org/packages/70/68/feb0f9a48818ee1df1e8b644069379a1e6ef5447b9b347c24e96fd258e5d/grpcio_tools-1.78.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:2f8ea092a7de74c6359335d36f0674d939a3c7e1a550f4c2c9e80e0226de8fe4", size = 2593896, upload-time = "2026-02-06T09:59:12.23Z" }, - { url = "https://files.pythonhosted.org/packages/1f/08/a430d8d06e1b8d33f3e48d3f0cc28236723af2f35e37bd5c8db05df6c3aa/grpcio_tools-1.78.0-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:da422985e0cac822b41822f43429c19ecb27c81ffe3126d0b74e77edec452608", size = 2905298, upload-time = "2026-02-06T09:59:14.458Z" }, - { url = "https://files.pythonhosted.org/packages/71/0a/348c36a3eae101ca0c090c9c3bc96f2179adf59ee0c9262d11cdc7bfe7db/grpcio_tools-1.78.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4fab1faa3fbcb246263e68da7a8177d73772283f9db063fb8008517480888d26", size = 2656186, upload-time = "2026-02-06T09:59:16.949Z" }, - { url = "https://files.pythonhosted.org/packages/1d/3f/18219f331536fad4af6207ade04142292faa77b5cb4f4463787988963df8/grpcio_tools-1.78.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:dd9c094f73f734becae3f20f27d4944d3cd8fb68db7338ee6c58e62fc5c3d99f", size = 3109859, upload-time = "2026-02-06T09:59:19.202Z" }, - { url = "https://files.pythonhosted.org/packages/5b/d9/341ea20a44c8e5a3a18acc820b65014c2e3ea5b4f32a53d14864bcd236bc/grpcio_tools-1.78.0-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:2ed51ce6b833068f6c580b73193fc2ec16468e6bc18354bc2f83a58721195a58", size = 3657915, upload-time = "2026-02-06T09:59:21.839Z" }, - { url = "https://files.pythonhosted.org/packages/fb/f4/5978b0f91611a64371424c109dd0027b247e5b39260abad2eaee66b6aa37/grpcio_tools-1.78.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:05803a5cdafe77c8bdf36aa660ad7a6a1d9e49bc59ce45c1bade2a4698826599", size = 3324724, upload-time = "2026-02-06T09:59:24.402Z" }, - { url = "https://files.pythonhosted.org/packages/b2/80/96a324dba99cfbd20e291baf0b0ae719dbb62b76178c5ce6c788e7331cb1/grpcio_tools-1.78.0-cp314-cp314-win32.whl", hash = "sha256:f7c722e9ce6f11149ac5bddd5056e70aaccfd8168e74e9d34d8b8b588c3f5c7c", size = 1015505, upload-time = "2026-02-06T09:59:26.3Z" }, - { url = "https://files.pythonhosted.org/packages/3b/d1/909e6a05bfd44d46327dc4b8a78beb2bae4fb245ffab2772e350081aaf7e/grpcio_tools-1.78.0-cp314-cp314-win_amd64.whl", hash = "sha256:7d58ade518b546120ec8f0a8e006fc8076ae5df151250ebd7e82e9b5e152c229", size = 1190196, upload-time = "2026-02-06T09:59:28.359Z" }, + { url = "https://files.pythonhosted.org/packages/47/c3/b598440ea531f7abdb9c1c5298919e13f4442f0289900dd9ef6667ab72b9/grpcio_tools-1.78.1-cp311-cp311-linux_armv7l.whl", hash = "sha256:ec4483749c7174c301a554191f6a9b28e2388636736a21886fe20025137cdaa5", size = 2545903, upload-time = "2026-02-20T01:16:57.182Z" }, + { url = "https://files.pythonhosted.org/packages/1f/7f/c81ca206047e600ced7c3147f84c894d1ab7eb07642d0a1a4d8511bca7d7/grpcio_tools-1.78.1-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:a81b30b0981cc64853bf28daa4d45f2ce8e4da47d831186a509c05660f23b133", size = 5709065, upload-time = "2026-02-20T01:17:00.054Z" }, + { url = "https://files.pythonhosted.org/packages/80/cd/9b4a601afabf017dadff24d066d0dc6cedfab1e4cdc8e52bcca08291e7e0/grpcio_tools-1.78.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d6406f04b93e48ae3b4dca8f9f312f345265502dc54408056796813c1877f98a", size = 2591744, upload-time = "2026-02-20T01:17:02.539Z" }, + { url = "https://files.pythonhosted.org/packages/46/be/e20b48c5fbbf7c279e3998a62d086f35e0c6efb0d7a9a3ab2966a235b89d/grpcio_tools-1.78.1-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:f46fa1430958fe93082d361711e261a482d5a505a9928bc28f7df3fb432d7203", size = 2905111, upload-time = "2026-02-20T01:17:04.659Z" }, + { url = "https://files.pythonhosted.org/packages/68/6b/72b97c60767bc5b256e5e4ba5c4a01dd27dc925c983d85fa8c9ca428f0c9/grpcio_tools-1.78.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:a5fbe7d04212248a94acfea86460f1e249f0e42b636de4e71ad518aaf7b24cc9", size = 2656443, upload-time = "2026-02-20T01:17:07.154Z" }, + { url = "https://files.pythonhosted.org/packages/83/92/1023bf1bfa1eaa3b98582f4ba2fcae7153b5b3382b2b3d5b00b47b6e0f57/grpcio_tools-1.78.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e886a3f3284fbff5b4a5c0299427b42df1e1ad6ec9c88c41cfe94557ac191a34", size = 3106129, upload-time = "2026-02-20T01:17:09.385Z" }, + { url = "https://files.pythonhosted.org/packages/d7/55/2c1d64e9efcd0a55b0fc2e6426e65c33edecc590510e67f623e8bd92bfdf/grpcio_tools-1.78.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e1e19c3cb8c4bbfcc20c74b6ef50bd2fb18f82593e65c5b031a92f6794ab9a6d", size = 3654955, upload-time = "2026-02-20T01:17:12.046Z" }, + { url = "https://files.pythonhosted.org/packages/41/76/cc00f693a085e6ddc2477d6dc59ad3e0b0a2f8797ff3703b45e25ddca387/grpcio_tools-1.78.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b0abde2cd28a5925da36776977064e0fe9be667a96ea454acad1eabc3eb7ec48", size = 3322628, upload-time = "2026-02-20T01:17:14.592Z" }, + { url = "https://files.pythonhosted.org/packages/c0/8f/4efdc5a359ae37b079008eda939cf063ab51608a9767f808c672fc542780/grpcio_tools-1.78.1-cp311-cp311-win32.whl", hash = "sha256:a62857bdd681469f7ea603078187399aa8bd8cd7bdeeb603497c993a06d0bb8d", size = 993780, upload-time = "2026-02-20T01:17:20.463Z" }, + { url = "https://files.pythonhosted.org/packages/8e/1c/f6925bfdab52eed2dbaf54ca656de6401e880d079800df53d59cf89a2098/grpcio_tools-1.78.1-cp311-cp311-win_amd64.whl", hash = "sha256:e33de930d02e16d28a2e06d2a629cd5be18c0f386e8bc6c483b073f8898c283c", size = 1158625, upload-time = "2026-02-20T01:17:22.593Z" }, + { url = "https://files.pythonhosted.org/packages/c5/74/928b78c079cf84436e6d6abd52879178c00c1d0dd9bcaf294c3601db8c73/grpcio_tools-1.78.1-cp312-cp312-linux_armv7l.whl", hash = "sha256:2fd5b9ba19849afb511f05f9eaf621aaf21d8582b06d23179b31fb72f2b0add1", size = 2546822, upload-time = "2026-02-20T01:17:24.899Z" }, + { url = "https://files.pythonhosted.org/packages/6e/a4/22b29fa672535b525070d5b665b064903e4dddce694f036fae115978245f/grpcio_tools-1.78.1-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:3e2148b0b15dea87d2fea17d1eda3ae0cdc6dd378fe75903f17515cbb6e5f4a3", size = 5706796, upload-time = "2026-02-20T01:17:30.223Z" }, + { url = "https://files.pythonhosted.org/packages/c7/ac/8ab479655b52bb8a1f55fd73df0b7b9fe6e5470775a3432b6265ff2782df/grpcio_tools-1.78.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:58714482282ba4f6ebe550a43284b3383761e7bf1c1cafa009740d4b20cfc5fd", size = 2593971, upload-time = "2026-02-20T01:17:32.843Z" }, + { url = "https://files.pythonhosted.org/packages/3c/89/f7b48b112ef8b457e2a30d13cb357947bbb98635b016db6d4e1885c5160e/grpcio_tools-1.78.1-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:3edc65d8d547e2c3e90937896bce58f1a4187b45a5ac2d97c84d0501c917c6e7", size = 2905532, upload-time = "2026-02-20T01:17:35.512Z" }, + { url = "https://files.pythonhosted.org/packages/94/3c/c74185dbbaa5930ac124121e9546f7aec54790ad2b2a352ae13606c2d0a5/grpcio_tools-1.78.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:5aa5720e07b81e82107c33f1951572f4371b668933da110418146e8fe51813ec", size = 2656908, upload-time = "2026-02-20T01:17:37.914Z" }, + { url = "https://files.pythonhosted.org/packages/5a/6f/a5dfcdec7d2eabcd1aafa20dd1c558fe34907e86672a39afdea1ed48556f/grpcio_tools-1.78.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d665399893f79dfce1018143602b1e53cc6434cb919b141ad5ce9d09d25b6c88", size = 3109782, upload-time = "2026-02-20T01:17:40.575Z" }, + { url = "https://files.pythonhosted.org/packages/66/c5/c3a9a79f2da4ae99cc1290f2a90e5d798525e9556d6b2e7f7090d4a05271/grpcio_tools-1.78.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:3ab437967bd61034b278ca1043a5f2f70ab3a8b45f2531b4295ffc7da27893c9", size = 3658761, upload-time = "2026-02-20T01:17:42.809Z" }, + { url = "https://files.pythonhosted.org/packages/69/42/656a38e78cebed3b98bb737630faa30d0f22915112166b892e89a843e08f/grpcio_tools-1.78.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:63c91efb22a6977111bbde16f58e393ab75f1f4ff95850abc24fd279402a02f7", size = 3325115, upload-time = "2026-02-20T01:17:46.089Z" }, + { url = "https://files.pythonhosted.org/packages/00/c0/8e3444d127c243170a7dc732d6cbd009c3de78a86002f7abdc317ce7f828/grpcio_tools-1.78.1-cp312-cp312-win32.whl", hash = "sha256:7ecc57c2a82a7f67d07c1491eea39aec9660306a8b67b7b0116ade52c3466297", size = 993478, upload-time = "2026-02-20T01:17:48.194Z" }, + { url = "https://files.pythonhosted.org/packages/a5/cc/e2211fe54ae29b31ed20154e002184546ed08800105aeb8692898f7b4a6f/grpcio_tools-1.78.1-cp312-cp312-win_amd64.whl", hash = "sha256:7e465bf6e49c8d3905997b079d4cab233cd1e0ad558aa3b93ce074172ad75fa1", size = 1158466, upload-time = "2026-02-20T01:17:50.284Z" }, + { url = "https://files.pythonhosted.org/packages/09/44/b8371d238bcb6141b178f91d65477e5aec9fe6d3f7c245e581bdb73e6330/grpcio_tools-1.78.1-cp313-cp313-linux_armv7l.whl", hash = "sha256:3ad2cfae254f965776e296635d0ef96bdb2e6fde54c3d8e0f1ed98161ec00a8f", size = 2546284, upload-time = "2026-02-20T01:17:53.282Z" }, + { url = "https://files.pythonhosted.org/packages/68/e1/db6f388ad57d23ec7e3fdc4a1d12495cadc022df8a6138b827dbc6ad1b79/grpcio_tools-1.78.1-cp313-cp313-macosx_11_0_universal2.whl", hash = "sha256:b5d4c75fa44d560e694b65b19df3d7e73d89c2bf9e2d7b672a9e650f40ca33df", size = 5705688, upload-time = "2026-02-20T01:17:56.279Z" }, + { url = "https://files.pythonhosted.org/packages/16/44/9b2dc99c0fdc8f83ffa72e51fc52f0ad5015fc6c0dc733ba0e0eeb289916/grpcio_tools-1.78.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:63e87dd399a4071c0cfdf131cf382a7c3859f2bee9cff8ec996dd8dea3e3afbb", size = 2592788, upload-time = "2026-02-20T01:17:58.729Z" }, + { url = "https://files.pythonhosted.org/packages/5e/f2/885039af8fcda73eca2d244fcd295381c682919b39f2078453e6cb002879/grpcio_tools-1.78.1-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:08704fd6df74dd95c28a2c095f59e10aec61abe64e2c44f1109d725f728688ba", size = 2905157, upload-time = "2026-02-20T01:18:01.295Z" }, + { url = "https://files.pythonhosted.org/packages/98/a4/859e99a1a728367bbe4d5671e92c984536077e2690fef5637c5e66434b5b/grpcio_tools-1.78.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e53faada7c186ae5a46b236a4961284c45f9eb069888c651021346f9360d58e0", size = 2656161, upload-time = "2026-02-20T01:18:03.386Z" }, + { url = "https://files.pythonhosted.org/packages/7f/6e/2f8b6b6e06d5728c571ec4b702a3a249743816b771b78f2dc79be67dea33/grpcio_tools-1.78.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:99479dfa64faa8ed887df22a1489e6bd4027e38efdad7de9fdc6038e67569f0a", size = 3109110, upload-time = "2026-02-20T01:18:08.877Z" }, + { url = "https://files.pythonhosted.org/packages/c7/f5/1cf1b232a996b8eb560adb4a75d468fa0badf804ce182a0ce7b03b796299/grpcio_tools-1.78.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:e0335ba2e6b903b9156151a49d03e74d2876259d5233ac97de53b4c847a56000", size = 3657864, upload-time = "2026-02-20T01:18:18.75Z" }, + { url = "https://files.pythonhosted.org/packages/ee/52/0714adbb17bd12661fb7cd247991a175069de9269bd506cff3cd9638f6c4/grpcio_tools-1.78.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:d54640c46d496ed9367caaa36a5742adca9b215ea06cf6714dcf1aa190a43b6d", size = 3324749, upload-time = "2026-02-20T01:18:21.394Z" }, + { url = "https://files.pythonhosted.org/packages/3a/15/bb6ac754ce74980ea78bdd428b8d5fdeda77e04a674388aac81c885595ea/grpcio_tools-1.78.1-cp313-cp313-win32.whl", hash = "sha256:df604903f86adae37eb90f4168db13090f723b3602bac89519aff451aea46ea3", size = 993050, upload-time = "2026-02-20T01:18:24.132Z" }, + { url = "https://files.pythonhosted.org/packages/c8/83/9d75e3ad324b11de988a7534d22c066e0da7cffc5656f973993e719efab1/grpcio_tools-1.78.1-cp313-cp313-win_amd64.whl", hash = "sha256:7f4469a91556442330aad0710ffc16a853681e1aa7c0752b2db2e8255c872897", size = 1158153, upload-time = "2026-02-20T01:18:27.844Z" }, + { url = "https://files.pythonhosted.org/packages/5e/5b/76d7969539159a22dfa20c23c3885ce9024a12d88e23d76063a1e1df566d/grpcio_tools-1.78.1-cp314-cp314-linux_armv7l.whl", hash = "sha256:11c6a338c227e5aab76954f35959682d59c432a5b6d7db053fa1a99c7124bbde", size = 2546269, upload-time = "2026-02-20T01:18:30.673Z" }, + { url = "https://files.pythonhosted.org/packages/3f/8a/a1d180e7165bbdd30d109a448c95d6077eaa9afe40a2ed159f40bec64ce3/grpcio_tools-1.78.1-cp314-cp314-macosx_11_0_universal2.whl", hash = "sha256:090aeaa053f728539d0f84658bb5d88411a913cbcc49e990b5a80acd3c46dc94", size = 5705752, upload-time = "2026-02-20T01:18:33.396Z" }, + { url = "https://files.pythonhosted.org/packages/43/5c/067b95424eee7cb980a2237c3ecd23935ea742b17acf4411064a727ec9b0/grpcio_tools-1.78.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:203347a50b00e6a1793c35af437a39449b247b9461a9f1f9b9baf954b4255cd8", size = 2593895, upload-time = "2026-02-20T01:18:36.746Z" }, + { url = "https://files.pythonhosted.org/packages/01/1f/6edd882a7c47f74321aeec98ef20b7c54c4fa61c81bb08039b14c1777de2/grpcio_tools-1.78.1-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:7c3cef48b10cccfc039b5ae054d7ad8d7b907ff03a283b606b3999ce3843b5a5", size = 2905296, upload-time = "2026-02-20T01:18:41.875Z" }, + { url = "https://files.pythonhosted.org/packages/a4/15/2ecacd23670fd8bc945fa1a3ae5ad0916c95d9803ceda0b7427d9dfc4ee0/grpcio_tools-1.78.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:abb2aee19b91d619670a3598faaa8036b31dd96708ab82d8fb990da4b5c3fc01", size = 2656183, upload-time = "2026-02-20T01:18:44.556Z" }, + { url = "https://files.pythonhosted.org/packages/60/36/ec4b0172f803f7add82bcc16346b47a80ca983539dc5bf779da1d44f3b4a/grpcio_tools-1.78.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:b6307ce936cd5f7714bba75e8b7c71f4e6a4da625b907960227568022ee812fa", size = 3109860, upload-time = "2026-02-20T01:18:47.218Z" }, + { url = "https://files.pythonhosted.org/packages/79/85/6fb37b10667764505f9bc6baab9bccaaa0777bfe07aa786f9e1d4f482253/grpcio_tools-1.78.1-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:40aad3da94bf261792ff998084117f6ce092b7b137dcea257628def834b91e96", size = 3657914, upload-time = "2026-02-20T01:18:59.138Z" }, + { url = "https://files.pythonhosted.org/packages/42/11/da86c93b0d00f5180d283740c89aa998f955c7389ff268128b99c5bebdb9/grpcio_tools-1.78.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:36dbd00415376a3db03cd57a8063dfb5506c3ec69737945488f6c28a3e8b5cf1", size = 3324719, upload-time = "2026-02-20T01:19:01.55Z" }, + { url = "https://files.pythonhosted.org/packages/9d/b6/6a00609300fbfe2163183522005911f4676bc80db374d55c2a9d9e70997e/grpcio_tools-1.78.1-cp314-cp314-win32.whl", hash = "sha256:6d284037ff456842324fa12b0a6455fce0b3ab92f218677b34c33cf4787a54c4", size = 1015537, upload-time = "2026-02-20T01:19:04.289Z" }, + { url = "https://files.pythonhosted.org/packages/05/76/ef3d2f5a86da2b3a2abcef7141bc4d2d8d119b0da389029811a4507b499b/grpcio_tools-1.78.1-cp314-cp314-win_amd64.whl", hash = "sha256:acb9849783dc7cf0e7359cbd60c6bf3154008bf9aeff12c696ec7289599eb3a8", size = 1190123, upload-time = "2026-02-20T01:19:06.831Z" }, ] [[package]] @@ -621,6 +1380,35 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl", hash = "sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86", size = 37515, upload-time = "2025-04-24T03:35:24.344Z" }, ] +[[package]] +name = "hf-xet" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4f/3a/9aa61729228fb03e946409c51963f0cd2fd7c109f4ab93edc5f04a10be86/hf_xet-1.3.0.tar.gz", hash = "sha256:9c154ad63e17aca970987b2cf17dbd8a0c09bb18aeb246f637647a8058e4522b", size = 641390, upload-time = "2026-02-24T00:16:19.935Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/18/16954a87cfdfdc04792f1ffc9a29c0a48253ab10ec0f4856f39c7f7bf7cd/hf_xet-1.3.0-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:95bdeab4747cb45f855601e39b9e86ae92b4a114978ada6e0401961fcc5d2958", size = 3759481, upload-time = "2026-02-24T00:16:03.387Z" }, + { url = "https://files.pythonhosted.org/packages/d8/6f/a55752047e9b0e69517775531c14680331f00c9cd4dc07f5e9b7f7f68a12/hf_xet-1.3.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:f99992583f27b139392601fe99e88df155dc4de7feba98ed27ce2d3e6b4a65bb", size = 3517927, upload-time = "2026-02-24T00:16:02.108Z" }, + { url = "https://files.pythonhosted.org/packages/ef/71/a909dbf9c8b166aa3f15db2bcf5d8afbe9d53170922edde2b919cf0bc455/hf_xet-1.3.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:687a71fc6d2eaa79d864da3aa13e5d887e124d357f5f306bfff6c385eea9d990", size = 4174328, upload-time = "2026-02-24T00:15:55.056Z" }, + { url = "https://files.pythonhosted.org/packages/21/cc/dec0d971bb5872345b8d64363a0b78ed6a147eea5b4281575ce5a8150f42/hf_xet-1.3.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:75d19813ed0e24525409bc22566282ae9bc93e5d764b185565e863dc28280a45", size = 3953184, upload-time = "2026-02-24T00:15:53.43Z" }, + { url = "https://files.pythonhosted.org/packages/3d/d8/d4259146e7c7089dd3f22cd62676d665bcfbc27428a070abee8985e0ab33/hf_xet-1.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:078af43569c2e05233137a93a33d2293f95c272745eaf030a9bb5f27bb0c9e9c", size = 4152800, upload-time = "2026-02-24T00:16:10.391Z" }, + { url = "https://files.pythonhosted.org/packages/c9/0d/39d9d32e4cde689da618739197e264bba5a55d870377d5d32cdd5c03fad8/hf_xet-1.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:be8731e1620cc8549025c39ed3917c8fd125efaeae54ae679214a3d573e6c109", size = 4390499, upload-time = "2026-02-24T00:16:11.671Z" }, + { url = "https://files.pythonhosted.org/packages/d9/27/5b9c323bf5513e8971702eeac43ba5cb554921e0f292ad52f20ed6028131/hf_xet-1.3.0-cp313-cp313t-win_amd64.whl", hash = "sha256:1552616c0e0fa728a4ffdffa106e91faa0fd4edb44868e79b464fad00b2758ee", size = 3634124, upload-time = "2026-02-24T00:16:20.964Z" }, + { url = "https://files.pythonhosted.org/packages/85/32/76949adb65b7ca54c1e2b0519a98f7c88221b9091ae8780fc76d7d1bae70/hf_xet-1.3.0-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:a61496eccf412d7c51a5613c31a2051d357ddea6be53a0672c7644cf39bfefe9", size = 3759780, upload-time = "2026-02-24T00:16:09.037Z" }, + { url = "https://files.pythonhosted.org/packages/63/c4/ad6fa712611711c129fa49eb17baaf0665647eb0abce32d94ccd44b69c6d/hf_xet-1.3.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:aba35218871cc438826076778958f7ab2a1f4f8d654e91c307073a815360558f", size = 3517640, upload-time = "2026-02-24T00:16:07.536Z" }, + { url = "https://files.pythonhosted.org/packages/15/6b/b44659c5261cde6320a579d0acc949f19283a13d32fc9389fc49639f435e/hf_xet-1.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c444d8f657dedd7a72aa0ef0178fe01fe92b04b58014ee49e2b3b4985aea1529", size = 4174285, upload-time = "2026-02-24T00:16:00.848Z" }, + { url = "https://files.pythonhosted.org/packages/61/cf/16ef1b366482fa4e71d1642b019158d7ac891bcb961477102ceadfe69436/hf_xet-1.3.0-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:6d1bbda7900d72bc591cd39a64e35ad07f89a24f90e3d7b7c692cb93a1926cde", size = 3952705, upload-time = "2026-02-24T00:15:59.355Z" }, + { url = "https://files.pythonhosted.org/packages/d5/5a/d03453902ab9373715f50f3969979782a355df94329ea958ae78304ca06b/hf_xet-1.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:588f5df302e7dba5c3b60d4e5c683f95678526c29b9f64cbeb23e9f1889c6b83", size = 4152353, upload-time = "2026-02-24T00:16:15.857Z" }, + { url = "https://files.pythonhosted.org/packages/ab/98/d3cd8cdd8d771bee9a03bd52faed6fa114a68a107a0e337aaf0b4c52bf0c/hf_xet-1.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:944ae454b296c42b18219c37f245c78d0e64a734057423e9309f4938faa85d7f", size = 4390010, upload-time = "2026-02-24T00:16:18.713Z" }, + { url = "https://files.pythonhosted.org/packages/1f/10/3c58501d44d7a148d749ffa6046cbd14aa75a7ab07c9e7a984f86294cc53/hf_xet-1.3.0-cp314-cp314t-win_amd64.whl", hash = "sha256:34cdd5f10e61b7a1a7542672d20887c85debcfeb70a471ff1506f5a4c9441e42", size = 3634277, upload-time = "2026-02-24T00:16:23.718Z" }, + { url = "https://files.pythonhosted.org/packages/a1/00/22d3d896466ded4c46ef6465b85fa434fa97d79f8f61cea322afde1d6157/hf_xet-1.3.0-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:df4447f69086dcc6418583315eda6ed09033ac1fbbc784fedcbbbdf67bea1680", size = 3761293, upload-time = "2026-02-24T00:16:06.012Z" }, + { url = "https://files.pythonhosted.org/packages/97/fd/ebb0ea49e9bd9eb9f52844e417e0e6e9c8a59a1e84790691873fa910adc5/hf_xet-1.3.0-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:39f4fe714628adc2214ab4a67391182ee751bc4db581868cb3204900817758a8", size = 3523345, upload-time = "2026-02-24T00:16:04.615Z" }, + { url = "https://files.pythonhosted.org/packages/8a/bb/72ceaaf619cad23d151a281d52e15456bae72f52c3795e820c0b64a5f637/hf_xet-1.3.0-cp37-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:9b16e53ed6b5c8197cefb3fd12047a430b7034428effed463c03cec68de7e9a3", size = 4178623, upload-time = "2026-02-24T00:15:57.857Z" }, + { url = "https://files.pythonhosted.org/packages/19/30/3280f4b5e407b442923a80ac0b2d96a65be7494457c55695e63f9a2b33dd/hf_xet-1.3.0-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:92051a1f73019489be77f6837671024ec785a3d1b888466b09d3a9ea15c4a1b5", size = 3958884, upload-time = "2026-02-24T00:15:56.326Z" }, + { url = "https://files.pythonhosted.org/packages/8f/13/5174c6d52583e54a761c88570ca657d621ac684747613f47846debfd6d4d/hf_xet-1.3.0-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:943046b160e7804a85e68a659d2eee1a83ce3661f72d1294d3cc5ece0f45a355", size = 4158146, upload-time = "2026-02-24T00:16:13.158Z" }, + { url = "https://files.pythonhosted.org/packages/12/13/ea8619021b119e19efdcaeec72f762b5be923cf79b5d4434f2cbbff39829/hf_xet-1.3.0-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:9b798a95d41b4f33b0b455c8aa76ff1fd26a587a4dd3bdec29f0a37c60b78a2f", size = 4395565, upload-time = "2026-02-24T00:16:14.574Z" }, + { url = "https://files.pythonhosted.org/packages/64/cd/b81d922118a171bfbbecffd60a477e79188ab876260412fac47226a685bf/hf_xet-1.3.0-cp37-abi3-win_amd64.whl", hash = "sha256:227eee5b99d19b9f20c31d901a0c2373af610a24a34e6c2701072c9de48d6d95", size = 3637830, upload-time = "2026-02-24T00:16:22.474Z" }, +] + [[package]] name = "httpcore" version = "1.0.9" @@ -634,6 +1422,42 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl", hash = "sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55", size = 78784, upload-time = "2025-04-24T22:06:20.566Z" }, ] +[[package]] +name = "httptools" +version = "0.7.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b5/46/120a669232c7bdedb9d52d4aeae7e6c7dfe151e99dc70802e2fc7a5e1993/httptools-0.7.1.tar.gz", hash = "sha256:abd72556974f8e7c74a259655924a717a2365b236c882c3f6f8a45fe94703ac9", size = 258961, upload-time = "2025-10-10T03:55:08.559Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9c/08/17e07e8d89ab8f343c134616d72eebfe03798835058e2ab579dcc8353c06/httptools-0.7.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:474d3b7ab469fefcca3697a10d11a32ee2b9573250206ba1e50d5980910da657", size = 206521, upload-time = "2025-10-10T03:54:31.002Z" }, + { url = "https://files.pythonhosted.org/packages/aa/06/c9c1b41ff52f16aee526fd10fbda99fa4787938aa776858ddc4a1ea825ec/httptools-0.7.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a3c3b7366bb6c7b96bd72d0dbe7f7d5eead261361f013be5f6d9590465ea1c70", size = 110375, upload-time = "2025-10-10T03:54:31.941Z" }, + { url = "https://files.pythonhosted.org/packages/cc/cc/10935db22fda0ee34c76f047590ca0a8bd9de531406a3ccb10a90e12ea21/httptools-0.7.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:379b479408b8747f47f3b253326183d7c009a3936518cdb70db58cffd369d9df", size = 456621, upload-time = "2025-10-10T03:54:33.176Z" }, + { url = "https://files.pythonhosted.org/packages/0e/84/875382b10d271b0c11aa5d414b44f92f8dd53e9b658aec338a79164fa548/httptools-0.7.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:cad6b591a682dcc6cf1397c3900527f9affef1e55a06c4547264796bbd17cf5e", size = 454954, upload-time = "2025-10-10T03:54:34.226Z" }, + { url = "https://files.pythonhosted.org/packages/30/e1/44f89b280f7e46c0b1b2ccee5737d46b3bb13136383958f20b580a821ca0/httptools-0.7.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:eb844698d11433d2139bbeeb56499102143beb582bd6c194e3ba69c22f25c274", size = 440175, upload-time = "2025-10-10T03:54:35.942Z" }, + { url = "https://files.pythonhosted.org/packages/6f/7e/b9287763159e700e335028bc1824359dc736fa9b829dacedace91a39b37e/httptools-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f65744d7a8bdb4bda5e1fa23e4ba16832860606fcc09d674d56e425e991539ec", size = 440310, upload-time = "2025-10-10T03:54:37.1Z" }, + { url = "https://files.pythonhosted.org/packages/b3/07/5b614f592868e07f5c94b1f301b5e14a21df4e8076215a3bccb830a687d8/httptools-0.7.1-cp311-cp311-win_amd64.whl", hash = "sha256:135fbe974b3718eada677229312e97f3b31f8a9c8ffa3ae6f565bf808d5b6bcb", size = 86875, upload-time = "2025-10-10T03:54:38.421Z" }, + { url = "https://files.pythonhosted.org/packages/53/7f/403e5d787dc4942316e515e949b0c8a013d84078a915910e9f391ba9b3ed/httptools-0.7.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:38e0c83a2ea9746ebbd643bdfb521b9aa4a91703e2cd705c20443405d2fd16a5", size = 206280, upload-time = "2025-10-10T03:54:39.274Z" }, + { url = "https://files.pythonhosted.org/packages/2a/0d/7f3fd28e2ce311ccc998c388dd1c53b18120fda3b70ebb022b135dc9839b/httptools-0.7.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f25bbaf1235e27704f1a7b86cd3304eabc04f569c828101d94a0e605ef7205a5", size = 110004, upload-time = "2025-10-10T03:54:40.403Z" }, + { url = "https://files.pythonhosted.org/packages/84/a6/b3965e1e146ef5762870bbe76117876ceba51a201e18cc31f5703e454596/httptools-0.7.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:2c15f37ef679ab9ecc06bfc4e6e8628c32a8e4b305459de7cf6785acd57e4d03", size = 517655, upload-time = "2025-10-10T03:54:41.347Z" }, + { url = "https://files.pythonhosted.org/packages/11/7d/71fee6f1844e6fa378f2eddde6c3e41ce3a1fb4b2d81118dd544e3441ec0/httptools-0.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7fe6e96090df46b36ccfaf746f03034e5ab723162bc51b0a4cf58305324036f2", size = 511440, upload-time = "2025-10-10T03:54:42.452Z" }, + { url = "https://files.pythonhosted.org/packages/22/a5/079d216712a4f3ffa24af4a0381b108aa9c45b7a5cc6eb141f81726b1823/httptools-0.7.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f72fdbae2dbc6e68b8239defb48e6a5937b12218e6ffc2c7846cc37befa84362", size = 495186, upload-time = "2025-10-10T03:54:43.937Z" }, + { url = "https://files.pythonhosted.org/packages/e9/9e/025ad7b65278745dee3bd0ebf9314934c4592560878308a6121f7f812084/httptools-0.7.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e99c7b90a29fd82fea9ef57943d501a16f3404d7b9ee81799d41639bdaae412c", size = 499192, upload-time = "2025-10-10T03:54:45.003Z" }, + { url = "https://files.pythonhosted.org/packages/6d/de/40a8f202b987d43afc4d54689600ff03ce65680ede2f31df348d7f368b8f/httptools-0.7.1-cp312-cp312-win_amd64.whl", hash = "sha256:3e14f530fefa7499334a79b0cf7e7cd2992870eb893526fb097d51b4f2d0f321", size = 86694, upload-time = "2025-10-10T03:54:45.923Z" }, + { url = "https://files.pythonhosted.org/packages/09/8f/c77b1fcbfd262d422f12da02feb0d218fa228d52485b77b953832105bb90/httptools-0.7.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:6babce6cfa2a99545c60bfef8bee0cc0545413cb0018f617c8059a30ad985de3", size = 202889, upload-time = "2025-10-10T03:54:47.089Z" }, + { url = "https://files.pythonhosted.org/packages/0a/1a/22887f53602feaa066354867bc49a68fc295c2293433177ee90870a7d517/httptools-0.7.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:601b7628de7504077dd3dcb3791c6b8694bbd967148a6d1f01806509254fb1ca", size = 108180, upload-time = "2025-10-10T03:54:48.052Z" }, + { url = "https://files.pythonhosted.org/packages/32/6a/6aaa91937f0010d288d3d124ca2946d48d60c3a5ee7ca62afe870e3ea011/httptools-0.7.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:04c6c0e6c5fb0739c5b8a9eb046d298650a0ff38cf42537fc372b28dc7e4472c", size = 478596, upload-time = "2025-10-10T03:54:48.919Z" }, + { url = "https://files.pythonhosted.org/packages/6d/70/023d7ce117993107be88d2cbca566a7c1323ccbaf0af7eabf2064fe356f6/httptools-0.7.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:69d4f9705c405ae3ee83d6a12283dc9feba8cc6aaec671b412917e644ab4fa66", size = 473268, upload-time = "2025-10-10T03:54:49.993Z" }, + { url = "https://files.pythonhosted.org/packages/32/4d/9dd616c38da088e3f436e9a616e1d0cc66544b8cdac405cc4e81c8679fc7/httptools-0.7.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:44c8f4347d4b31269c8a9205d8a5ee2df5322b09bbbd30f8f862185bb6b05346", size = 455517, upload-time = "2025-10-10T03:54:51.066Z" }, + { url = "https://files.pythonhosted.org/packages/1d/3a/a6c595c310b7df958e739aae88724e24f9246a514d909547778d776799be/httptools-0.7.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:465275d76db4d554918aba40bf1cbebe324670f3dfc979eaffaa5d108e2ed650", size = 458337, upload-time = "2025-10-10T03:54:52.196Z" }, + { url = "https://files.pythonhosted.org/packages/fd/82/88e8d6d2c51edc1cc391b6e044c6c435b6aebe97b1abc33db1b0b24cd582/httptools-0.7.1-cp313-cp313-win_amd64.whl", hash = "sha256:322d00c2068d125bd570f7bf78b2d367dad02b919d8581d7476d8b75b294e3e6", size = 85743, upload-time = "2025-10-10T03:54:53.448Z" }, + { url = "https://files.pythonhosted.org/packages/34/50/9d095fcbb6de2d523e027a2f304d4551855c2f46e0b82befd718b8b20056/httptools-0.7.1-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:c08fe65728b8d70b6923ce31e3956f859d5e1e8548e6f22ec520a962c6757270", size = 203619, upload-time = "2025-10-10T03:54:54.321Z" }, + { url = "https://files.pythonhosted.org/packages/07/f0/89720dc5139ae54b03f861b5e2c55a37dba9a5da7d51e1e824a1f343627f/httptools-0.7.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:7aea2e3c3953521c3c51106ee11487a910d45586e351202474d45472db7d72d3", size = 108714, upload-time = "2025-10-10T03:54:55.163Z" }, + { url = "https://files.pythonhosted.org/packages/b3/cb/eea88506f191fb552c11787c23f9a405f4c7b0c5799bf73f2249cd4f5228/httptools-0.7.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:0e68b8582f4ea9166be62926077a3334064d422cf08ab87d8b74664f8e9058e1", size = 472909, upload-time = "2025-10-10T03:54:56.056Z" }, + { url = "https://files.pythonhosted.org/packages/e0/4a/a548bdfae6369c0d078bab5769f7b66f17f1bfaa6fa28f81d6be6959066b/httptools-0.7.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:df091cf961a3be783d6aebae963cc9b71e00d57fa6f149025075217bc6a55a7b", size = 470831, upload-time = "2025-10-10T03:54:57.219Z" }, + { url = "https://files.pythonhosted.org/packages/4d/31/14df99e1c43bd132eec921c2e7e11cda7852f65619bc0fc5bdc2d0cb126c/httptools-0.7.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:f084813239e1eb403ddacd06a30de3d3e09a9b76e7894dcda2b22f8a726e9c60", size = 452631, upload-time = "2025-10-10T03:54:58.219Z" }, + { url = "https://files.pythonhosted.org/packages/22/d2/b7e131f7be8d854d48cb6d048113c30f9a46dca0c9a8b08fcb3fcd588cdc/httptools-0.7.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:7347714368fb2b335e9063bc2b96f2f87a9ceffcd9758ac295f8bbcd3ffbc0ca", size = 452910, upload-time = "2025-10-10T03:54:59.366Z" }, + { url = "https://files.pythonhosted.org/packages/53/cf/878f3b91e4e6e011eff6d1fa9ca39f7eb17d19c9d7971b04873734112f30/httptools-0.7.1-cp314-cp314-win_amd64.whl", hash = "sha256:cfabda2a5bb85aa2a904ce06d974a3f30fb36cc63d7feaddec05d2050acede96", size = 88205, upload-time = "2025-10-10T03:55:00.389Z" }, +] + [[package]] name = "httpx" version = "0.28.1" @@ -658,6 +1482,25 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/d2/fd/6668e5aec43ab844de6fc74927e155a3b37bf40d7c3790e49fc0406b6578/httpx_sse-0.4.3-py3-none-any.whl", hash = "sha256:0ac1c9fe3c0afad2e0ebb25a934a59f4c7823b60792691f779fad2c5568830fc", size = 8960, upload-time = "2025-10-10T21:48:21.158Z" }, ] +[[package]] +name = "huggingface-hub" +version = "0.36.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock" }, + { name = "fsspec" }, + { name = "hf-xet", marker = "platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'arm64' or platform_machine == 'x86_64'" }, + { name = "packaging" }, + { name = "pyyaml" }, + { name = "requests" }, + { name = "tqdm" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7c/b7/8cb61d2eece5fb05a83271da168186721c450eb74e3c31f7ef3169fa475b/huggingface_hub-0.36.2.tar.gz", hash = "sha256:1934304d2fb224f8afa3b87007d58501acfda9215b334eed53072dd5e815ff7a", size = 649782, upload-time = "2026-02-06T09:24:13.098Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a8/af/48ac8483240de756d2438c380746e7130d1c6f75802ef22f3c6d49982787/huggingface_hub-0.36.2-py3-none-any.whl", hash = "sha256:48f0c8eac16145dfce371e9d2d7772854a4f591bcb56c9cf548accf531d54270", size = 566395, upload-time = "2026-02-06T09:24:11.133Z" }, +] + [[package]] name = "idna" version = "3.11" @@ -667,6 +1510,278 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl", hash = "sha256:771a87f49d9defaf64091e6e6fe9c18d4833f140bd19464795bc32d966ca37ea", size = 71008, upload-time = "2025-10-12T14:55:18.883Z" }, ] +[[package]] +name = "importlib-metadata" +version = "8.7.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "zipp" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f3/49/3b30cad09e7771a4982d9975a8cbf64f00d4a1ececb53297f1d9a7be1b10/importlib_metadata-8.7.1.tar.gz", hash = "sha256:49fef1ae6440c182052f407c8d34a68f72efc36db9ca90dc0113398f2fdde8bb", size = 57107, upload-time = "2025-12-21T10:00:19.278Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fa/5e/f8e9a1d23b9c20a551a8a02ea3637b4642e22c2626e3a13a9a29cdea99eb/importlib_metadata-8.7.1-py3-none-any.whl", hash = "sha256:5a1f80bf1daa489495071efbb095d75a634cf28a8bc299581244063b53176151", size = 27865, upload-time = "2025-12-21T10:00:18.329Z" }, +] + +[[package]] +name = "instructor" +version = "1.14.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiohttp" }, + { name = "diskcache" }, + { name = "docstring-parser" }, + { name = "jinja2" }, + { name = "jiter" }, + { name = "openai" }, + { name = "pydantic" }, + { name = "pydantic-core" }, + { name = "requests" }, + { name = "rich" }, + { name = "tenacity" }, + { name = "typer" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0b/ef/986d059424db204ed57b29d8c07fda35de2a2c72dee8ea7994bc90a6f767/instructor-1.14.5.tar.gz", hash = "sha256:fcb6432867f2fe4a5986e8bf389dcc64ed2ad4039a12a2dff85464e51c2f171a", size = 69950754, upload-time = "2026-01-29T14:18:50.454Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/45/04/e442e1356c97b03a6d30d2b462f7c0bdfbf207e75f6833815fd1225a75b4/instructor-1.14.5-py3-none-any.whl", hash = "sha256:2a5a31222b008c0989be1cc001e33a237f49506e80ac5833f6d36d7690bae7b1", size = 177445, upload-time = "2026-01-29T14:18:53.641Z" }, +] + +[[package]] +name = "ipykernel" +version = "7.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "appnope", marker = "sys_platform == 'darwin'" }, + { name = "comm" }, + { name = "debugpy" }, + { name = "ipython" }, + { name = "jupyter-client" }, + { name = "jupyter-core" }, + { name = "matplotlib-inline" }, + { name = "nest-asyncio" }, + { name = "packaging" }, + { name = "psutil" }, + { name = "pyzmq" }, + { name = "tornado" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ca/8d/b68b728e2d06b9e0051019640a40a9eb7a88fcd82c2e1b5ce70bef5ff044/ipykernel-7.2.0.tar.gz", hash = "sha256:18ed160b6dee2cbb16e5f3575858bc19d8f1fe6046a9a680c708494ce31d909e", size = 176046, upload-time = "2026-02-06T16:43:27.403Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/82/b9/e73d5d9f405cba7706c539aa8b311b49d4c2f3d698d9c12f815231169c71/ipykernel-7.2.0-py3-none-any.whl", hash = "sha256:3bbd4420d2b3cc105cbdf3756bfc04500b1e52f090a90716851f3916c62e1661", size = 118788, upload-time = "2026-02-06T16:43:25.149Z" }, +] + +[[package]] +name = "ipython" +version = "9.10.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "decorator" }, + { name = "ipython-pygments-lexers" }, + { name = "jedi" }, + { name = "matplotlib-inline" }, + { name = "pexpect", marker = "sys_platform != 'emscripten' and sys_platform != 'win32'" }, + { name = "prompt-toolkit" }, + { name = "pygments" }, + { name = "stack-data" }, + { name = "traitlets" }, + { name = "typing-extensions", marker = "python_full_version < '3.12'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a6/60/2111715ea11f39b1535bed6024b7dec7918b71e5e5d30855a5b503056b50/ipython-9.10.0.tar.gz", hash = "sha256:cd9e656be97618a0676d058134cd44e6dc7012c0e5cb36a9ce96a8c904adaf77", size = 4426526, upload-time = "2026-02-02T10:00:33.594Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3d/aa/898dec789a05731cd5a9f50605b7b44a72bd198fd0d4528e11fc610177cc/ipython-9.10.0-py3-none-any.whl", hash = "sha256:c6ab68cc23bba8c7e18e9b932797014cc61ea7fd6f19de180ab9ba73e65ee58d", size = 622774, upload-time = "2026-02-02T10:00:31.503Z" }, +] + +[[package]] +name = "ipython-pygments-lexers" +version = "1.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pygments" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ef/4c/5dd1d8af08107f88c7f741ead7a40854b8ac24ddf9ae850afbcf698aa552/ipython_pygments_lexers-1.1.1.tar.gz", hash = "sha256:09c0138009e56b6854f9535736f4171d855c8c08a563a0dcd8022f78355c7e81", size = 8393, upload-time = "2025-01-17T11:24:34.505Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d9/33/1f075bf72b0b747cb3288d011319aaf64083cf2efef8354174e3ed4540e2/ipython_pygments_lexers-1.1.1-py3-none-any.whl", hash = "sha256:a9462224a505ade19a605f71f8fa63c2048833ce50abc86768a0d81d876dc81c", size = 8074, upload-time = "2025-01-17T11:24:33.271Z" }, +] + +[[package]] +name = "ipywidgets" +version = "8.1.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "comm" }, + { name = "ipython" }, + { name = "jupyterlab-widgets" }, + { name = "traitlets" }, + { name = "widgetsnbextension" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/4c/ae/c5ce1edc1afe042eadb445e95b0671b03cee61895264357956e61c0d2ac0/ipywidgets-8.1.8.tar.gz", hash = "sha256:61f969306b95f85fba6b6986b7fe45d73124d1d9e3023a8068710d47a22ea668", size = 116739, upload-time = "2025-11-01T21:18:12.393Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/56/6d/0d9848617b9f753b87f214f1c682592f7ca42de085f564352f10f0843026/ipywidgets-8.1.8-py3-none-any.whl", hash = "sha256:ecaca67aed704a338f88f67b1181b58f821ab5dc89c1f0f5ef99db43c1c2921e", size = 139808, upload-time = "2025-11-01T21:18:10.956Z" }, +] + +[[package]] +name = "isoduration" +version = "20.11.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "arrow" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7c/1a/3c8edc664e06e6bd06cce40c6b22da5f1429aa4224d0c590f3be21c91ead/isoduration-20.11.0.tar.gz", hash = "sha256:ac2f9015137935279eac671f94f89eb00584f940f5dc49462a0c4ee692ba1bd9", size = 11649, upload-time = "2020-11-01T11:00:00.312Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/55/e5326141505c5d5e34c5e0935d2908a74e4561eca44108fbfb9c13d2911a/isoduration-20.11.0-py3-none-any.whl", hash = "sha256:b2904c2a4228c3d44f409c8ae8e2370eb21a26f7ac2ec5446df141dde3452042", size = 11321, upload-time = "2020-11-01T10:59:58.02Z" }, +] + +[[package]] +name = "iterative-telemetry" +version = "0.0.10" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "appdirs" }, + { name = "distro" }, + { name = "filelock" }, + { name = "requests" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d2/b6/f17d6e80252b7be6ca4d9463db226ce7863d26287f16f1347e981cd2f3d8/iterative_telemetry-0.0.10.tar.gz", hash = "sha256:7fde6111de6fa4acf5a95a6190cc9cc5d17d835a815f0a18ece201f6031f4ed6", size = 20080, upload-time = "2025-02-11T02:47:53.391Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1a/82/7331bbf84f1ccce7a2dd09a580c7bad38417cf35c84dc0b81bce2cf779b9/iterative_telemetry-0.0.10-py3-none-any.whl", hash = "sha256:e58ffb60d22c3de8dad6a114697cc61f6c14911cae484bf90df394e0d6553603", size = 10644, upload-time = "2025-02-11T02:47:51.273Z" }, +] + +[[package]] +name = "jedi" +version = "0.19.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "parso" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/72/3a/79a912fbd4d8dd6fbb02bf69afd3bb72cf0c729bb3063c6f4498603db17a/jedi-0.19.2.tar.gz", hash = "sha256:4770dc3de41bde3966b02eb84fbcf557fb33cce26ad23da12c742fb50ecb11f0", size = 1231287, upload-time = "2024-11-11T01:41:42.873Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c0/5a/9cac0c82afec3d09ccd97c8b6502d48f165f9124db81b4bcb90b4af974ee/jedi-0.19.2-py2.py3-none-any.whl", hash = "sha256:a8ef22bde8490f57fe5c7681a3c83cb58874daf72b4784de3cce5b6ef6edb5b9", size = 1572278, upload-time = "2024-11-11T01:41:40.175Z" }, +] + +[[package]] +name = "jinja2" +version = "3.1.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/df/bf/f7da0350254c0ed7c72f3e33cef02e048281fec7ecec5f032d4aac52226b/jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d", size = 245115, upload-time = "2025-03-05T20:05:02.478Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67", size = 134899, upload-time = "2025-03-05T20:05:00.369Z" }, +] + +[[package]] +name = "jiter" +version = "0.11.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a3/68/0357982493a7b20925aece061f7fb7a2678e3b232f8d73a6edb7e5304443/jiter-0.11.1.tar.gz", hash = "sha256:849dcfc76481c0ea0099391235b7ca97d7279e0fa4c86005457ac7c88e8b76dc", size = 168385, upload-time = "2025-10-17T11:31:15.186Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8b/34/c9e6cfe876f9a24f43ed53fe29f052ce02bd8d5f5a387dbf46ad3764bef0/jiter-0.11.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:9b0088ff3c374ce8ce0168523ec8e97122ebb788f950cf7bb8e39c7dc6a876a2", size = 310160, upload-time = "2025-10-17T11:28:59.174Z" }, + { url = "https://files.pythonhosted.org/packages/bc/9f/b06ec8181d7165858faf2ac5287c54fe52b2287760b7fe1ba9c06890255f/jiter-0.11.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:74433962dd3c3090655e02e461267095d6c84f0741c7827de11022ef8d7ff661", size = 316573, upload-time = "2025-10-17T11:29:00.905Z" }, + { url = "https://files.pythonhosted.org/packages/66/49/3179d93090f2ed0c6b091a9c210f266d2d020d82c96f753260af536371d0/jiter-0.11.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6d98030e345e6546df2cc2c08309c502466c66c4747b043f1a0d415fada862b8", size = 348998, upload-time = "2025-10-17T11:29:02.321Z" }, + { url = "https://files.pythonhosted.org/packages/ae/9d/63db2c8eabda7a9cad65a2e808ca34aaa8689d98d498f5a2357d7a2e2cec/jiter-0.11.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1d6db0b2e788db46bec2cf729a88b6dd36959af2abd9fa2312dfba5acdd96dcb", size = 363413, upload-time = "2025-10-17T11:29:03.787Z" }, + { url = "https://files.pythonhosted.org/packages/25/ff/3e6b3170c5053053c7baddb8d44e2bf11ff44cd71024a280a8438ae6ba32/jiter-0.11.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:55678fbbda261eafe7289165dd2ddd0e922df5f9a1ae46d7c79a5a15242bd7d1", size = 487144, upload-time = "2025-10-17T11:29:05.37Z" }, + { url = "https://files.pythonhosted.org/packages/b0/50/b63fcadf699893269b997f4c2e88400bc68f085c6db698c6e5e69d63b2c1/jiter-0.11.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a6b74fae8e40497653b52ce6ca0f1b13457af769af6fb9c1113efc8b5b4d9be", size = 376215, upload-time = "2025-10-17T11:29:07.123Z" }, + { url = "https://files.pythonhosted.org/packages/39/8c/57a8a89401134167e87e73471b9cca321cf651c1fd78c45f3a0f16932213/jiter-0.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0a55a453f8b035eb4f7852a79a065d616b7971a17f5e37a9296b4b38d3b619e4", size = 359163, upload-time = "2025-10-17T11:29:09.047Z" }, + { url = "https://files.pythonhosted.org/packages/4b/96/30b0cdbffbb6f753e25339d3dbbe26890c9ef119928314578201c758aace/jiter-0.11.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2638148099022e6bdb3f42904289cd2e403609356fb06eb36ddec2d50958bc29", size = 385344, upload-time = "2025-10-17T11:29:10.69Z" }, + { url = "https://files.pythonhosted.org/packages/c6/d5/31dae27c1cc9410ad52bb514f11bfa4f286f7d6ef9d287b98b8831e156ec/jiter-0.11.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:252490567a5d990986f83b95a5f1ca1bf205ebd27b3e9e93bb7c2592380e29b9", size = 517972, upload-time = "2025-10-17T11:29:12.174Z" }, + { url = "https://files.pythonhosted.org/packages/61/1e/5905a7a3aceab80de13ab226fd690471a5e1ee7e554dc1015e55f1a6b896/jiter-0.11.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d431d52b0ca2436eea6195f0f48528202100c7deda354cb7aac0a302167594d5", size = 508408, upload-time = "2025-10-17T11:29:13.597Z" }, + { url = "https://files.pythonhosted.org/packages/91/12/1c49b97aa49077e136e8591cef7162f0d3e2860ae457a2d35868fd1521ef/jiter-0.11.1-cp311-cp311-win32.whl", hash = "sha256:db6f41e40f8bae20c86cb574b48c4fd9f28ee1c71cb044e9ec12e78ab757ba3a", size = 203937, upload-time = "2025-10-17T11:29:14.894Z" }, + { url = "https://files.pythonhosted.org/packages/6d/9d/2255f7c17134ee9892c7e013c32d5bcf4bce64eb115402c9fe5e727a67eb/jiter-0.11.1-cp311-cp311-win_amd64.whl", hash = "sha256:0cc407b8e6cdff01b06bb80f61225c8b090c3df108ebade5e0c3c10993735b19", size = 207589, upload-time = "2025-10-17T11:29:16.166Z" }, + { url = "https://files.pythonhosted.org/packages/3c/28/6307fc8f95afef84cae6caf5429fee58ef16a582c2ff4db317ceb3e352fa/jiter-0.11.1-cp311-cp311-win_arm64.whl", hash = "sha256:fe04ea475392a91896d1936367854d346724a1045a247e5d1c196410473b8869", size = 188391, upload-time = "2025-10-17T11:29:17.488Z" }, + { url = "https://files.pythonhosted.org/packages/15/8b/318e8af2c904a9d29af91f78c1e18f0592e189bbdb8a462902d31fe20682/jiter-0.11.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:c92148eec91052538ce6823dfca9525f5cfc8b622d7f07e9891a280f61b8c96c", size = 305655, upload-time = "2025-10-17T11:29:18.859Z" }, + { url = "https://files.pythonhosted.org/packages/f7/29/6c7de6b5d6e511d9e736312c0c9bfcee8f9b6bef68182a08b1d78767e627/jiter-0.11.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ecd4da91b5415f183a6be8f7158d127bdd9e6a3174138293c0d48d6ea2f2009d", size = 315645, upload-time = "2025-10-17T11:29:20.889Z" }, + { url = "https://files.pythonhosted.org/packages/ac/5f/ef9e5675511ee0eb7f98dd8c90509e1f7743dbb7c350071acae87b0145f3/jiter-0.11.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7e3ac25c00b9275684d47aa42febaa90a9958e19fd1726c4ecf755fbe5e553b", size = 348003, upload-time = "2025-10-17T11:29:22.712Z" }, + { url = "https://files.pythonhosted.org/packages/56/1b/abe8c4021010b0a320d3c62682769b700fb66f92c6db02d1a1381b3db025/jiter-0.11.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:57d7305c0a841858f866cd459cd9303f73883fb5e097257f3d4a3920722c69d4", size = 365122, upload-time = "2025-10-17T11:29:24.408Z" }, + { url = "https://files.pythonhosted.org/packages/2a/2d/4a18013939a4f24432f805fbd5a19893e64650b933edb057cd405275a538/jiter-0.11.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e86fa10e117dce22c547f31dd6d2a9a222707d54853d8de4e9a2279d2c97f239", size = 488360, upload-time = "2025-10-17T11:29:25.724Z" }, + { url = "https://files.pythonhosted.org/packages/f0/77/38124f5d02ac4131f0dfbcfd1a19a0fac305fa2c005bc4f9f0736914a1a4/jiter-0.11.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ae5ef1d48aec7e01ee8420155d901bb1d192998fa811a65ebb82c043ee186711", size = 376884, upload-time = "2025-10-17T11:29:27.056Z" }, + { url = "https://files.pythonhosted.org/packages/7b/43/59fdc2f6267959b71dd23ce0bd8d4aeaf55566aa435a5d00f53d53c7eb24/jiter-0.11.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eb68e7bf65c990531ad8715e57d50195daf7c8e6f1509e617b4e692af1108939", size = 358827, upload-time = "2025-10-17T11:29:28.698Z" }, + { url = "https://files.pythonhosted.org/packages/7d/d0/b3cc20ff5340775ea3bbaa0d665518eddecd4266ba7244c9cb480c0c82ec/jiter-0.11.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:43b30c8154ded5845fa454ef954ee67bfccce629b2dea7d01f795b42bc2bda54", size = 385171, upload-time = "2025-10-17T11:29:30.078Z" }, + { url = "https://files.pythonhosted.org/packages/d2/bc/94dd1f3a61f4dc236f787a097360ec061ceeebebf4ea120b924d91391b10/jiter-0.11.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:586cafbd9dd1f3ce6a22b4a085eaa6be578e47ba9b18e198d4333e598a91db2d", size = 518359, upload-time = "2025-10-17T11:29:31.464Z" }, + { url = "https://files.pythonhosted.org/packages/7e/8c/12ee132bd67e25c75f542c227f5762491b9a316b0dad8e929c95076f773c/jiter-0.11.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:677cc2517d437a83bb30019fd4cf7cad74b465914c56ecac3440d597ac135250", size = 509205, upload-time = "2025-10-17T11:29:32.895Z" }, + { url = "https://files.pythonhosted.org/packages/39/d5/9de848928ce341d463c7e7273fce90ea6d0ea4343cd761f451860fa16b59/jiter-0.11.1-cp312-cp312-win32.whl", hash = "sha256:fa992af648fcee2b850a3286a35f62bbbaeddbb6dbda19a00d8fbc846a947b6e", size = 205448, upload-time = "2025-10-17T11:29:34.217Z" }, + { url = "https://files.pythonhosted.org/packages/ee/b0/8002d78637e05009f5e3fb5288f9d57d65715c33b5d6aa20fd57670feef5/jiter-0.11.1-cp312-cp312-win_amd64.whl", hash = "sha256:88b5cae9fa51efeb3d4bd4e52bfd4c85ccc9cac44282e2a9640893a042ba4d87", size = 204285, upload-time = "2025-10-17T11:29:35.446Z" }, + { url = "https://files.pythonhosted.org/packages/9f/a2/bb24d5587e4dff17ff796716542f663deee337358006a80c8af43ddc11e5/jiter-0.11.1-cp312-cp312-win_arm64.whl", hash = "sha256:9a6cae1ab335551917f882f2c3c1efe7617b71b4c02381e4382a8fc80a02588c", size = 188712, upload-time = "2025-10-17T11:29:37.027Z" }, + { url = "https://files.pythonhosted.org/packages/7c/4b/e4dd3c76424fad02a601d570f4f2a8438daea47ba081201a721a903d3f4c/jiter-0.11.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:71b6a920a5550f057d49d0e8bcc60945a8da998019e83f01adf110e226267663", size = 305272, upload-time = "2025-10-17T11:29:39.249Z" }, + { url = "https://files.pythonhosted.org/packages/67/83/2cd3ad5364191130f4de80eacc907f693723beaab11a46c7d155b07a092c/jiter-0.11.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0b3de72e925388453a5171be83379549300db01284f04d2a6f244d1d8de36f94", size = 314038, upload-time = "2025-10-17T11:29:40.563Z" }, + { url = "https://files.pythonhosted.org/packages/d3/3c/8e67d9ba524e97d2f04c8f406f8769a23205026b13b0938d16646d6e2d3e/jiter-0.11.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc19dd65a2bd3d9c044c5b4ebf657ca1e6003a97c0fc10f555aa4f7fb9821c00", size = 345977, upload-time = "2025-10-17T11:29:42.009Z" }, + { url = "https://files.pythonhosted.org/packages/8d/a5/489ce64d992c29bccbffabb13961bbb0435e890d7f2d266d1f3df5e917d2/jiter-0.11.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d58faaa936743cd1464540562f60b7ce4fd927e695e8bc31b3da5b914baa9abd", size = 364503, upload-time = "2025-10-17T11:29:43.459Z" }, + { url = "https://files.pythonhosted.org/packages/d4/c0/e321dd83ee231d05c8fe4b1a12caf1f0e8c7a949bf4724d58397104f10f2/jiter-0.11.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:902640c3103625317291cb73773413b4d71847cdf9383ba65528745ff89f1d14", size = 487092, upload-time = "2025-10-17T11:29:44.835Z" }, + { url = "https://files.pythonhosted.org/packages/f9/5e/8f24ec49c8d37bd37f34ec0112e0b1a3b4b5a7b456c8efff1df5e189ad43/jiter-0.11.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:30405f726e4c2ed487b176c09f8b877a957f535d60c1bf194abb8dadedb5836f", size = 376328, upload-time = "2025-10-17T11:29:46.175Z" }, + { url = "https://files.pythonhosted.org/packages/7f/70/ded107620e809327cf7050727e17ccfa79d6385a771b7fe38fb31318ef00/jiter-0.11.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3217f61728b0baadd2551844870f65219ac4a1285d5e1a4abddff3d51fdabe96", size = 356632, upload-time = "2025-10-17T11:29:47.454Z" }, + { url = "https://files.pythonhosted.org/packages/19/53/c26f7251613f6a9079275ee43c89b8a973a95ff27532c421abc2a87afb04/jiter-0.11.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b1364cc90c03a8196f35f396f84029f12abe925415049204446db86598c8b72c", size = 384358, upload-time = "2025-10-17T11:29:49.377Z" }, + { url = "https://files.pythonhosted.org/packages/84/16/e0f2cc61e9c4d0b62f6c1bd9b9781d878a427656f88293e2a5335fa8ff07/jiter-0.11.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:53a54bf8e873820ab186b2dca9f6c3303f00d65ae5e7b7d6bda1b95aa472d646", size = 517279, upload-time = "2025-10-17T11:29:50.968Z" }, + { url = "https://files.pythonhosted.org/packages/60/5c/4cd095eaee68961bca3081acbe7c89e12ae24a5dae5fd5d2a13e01ed2542/jiter-0.11.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:7e29aca023627b0e0c2392d4248f6414d566ff3974fa08ff2ac8dbb96dfee92a", size = 508276, upload-time = "2025-10-17T11:29:52.619Z" }, + { url = "https://files.pythonhosted.org/packages/4f/25/f459240e69b0e09a7706d96ce203ad615ca36b0fe832308d2b7123abf2d0/jiter-0.11.1-cp313-cp313-win32.whl", hash = "sha256:f153e31d8bca11363751e875c0a70b3d25160ecbaee7b51e457f14498fb39d8b", size = 205593, upload-time = "2025-10-17T11:29:53.938Z" }, + { url = "https://files.pythonhosted.org/packages/7c/16/461bafe22bae79bab74e217a09c907481a46d520c36b7b9fe71ee8c9e983/jiter-0.11.1-cp313-cp313-win_amd64.whl", hash = "sha256:f773f84080b667c69c4ea0403fc67bb08b07e2b7ce1ef335dea5868451e60fed", size = 203518, upload-time = "2025-10-17T11:29:55.216Z" }, + { url = "https://files.pythonhosted.org/packages/7b/72/c45de6e320edb4fa165b7b1a414193b3cae302dd82da2169d315dcc78b44/jiter-0.11.1-cp313-cp313-win_arm64.whl", hash = "sha256:635ecd45c04e4c340d2187bcb1cea204c7cc9d32c1364d251564bf42e0e39c2d", size = 188062, upload-time = "2025-10-17T11:29:56.631Z" }, + { url = "https://files.pythonhosted.org/packages/65/9b/4a57922437ca8753ef823f434c2dec5028b237d84fa320f06a3ba1aec6e8/jiter-0.11.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:d892b184da4d94d94ddb4031296931c74ec8b325513a541ebfd6dfb9ae89904b", size = 313814, upload-time = "2025-10-17T11:29:58.509Z" }, + { url = "https://files.pythonhosted.org/packages/76/50/62a0683dadca25490a4bedc6a88d59de9af2a3406dd5a576009a73a1d392/jiter-0.11.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aa22c223a3041dacb2fcd37c70dfd648b44662b4a48e242592f95bda5ab09d58", size = 344987, upload-time = "2025-10-17T11:30:00.208Z" }, + { url = "https://files.pythonhosted.org/packages/da/00/2355dbfcbf6cdeaddfdca18287f0f38ae49446bb6378e4a5971e9356fc8a/jiter-0.11.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:330e8e6a11ad4980cd66a0f4a3e0e2e0f646c911ce047014f984841924729789", size = 356399, upload-time = "2025-10-17T11:30:02.084Z" }, + { url = "https://files.pythonhosted.org/packages/c9/07/c2bd748d578fa933d894a55bff33f983bc27f75fc4e491b354bef7b78012/jiter-0.11.1-cp313-cp313t-win_amd64.whl", hash = "sha256:09e2e386ebf298547ca3a3704b729471f7ec666c2906c5c26c1a915ea24741ec", size = 203289, upload-time = "2025-10-17T11:30:03.656Z" }, + { url = "https://files.pythonhosted.org/packages/e6/ee/ace64a853a1acbd318eb0ca167bad1cf5ee037207504b83a868a5849747b/jiter-0.11.1-cp313-cp313t-win_arm64.whl", hash = "sha256:fe4a431c291157e11cee7c34627990ea75e8d153894365a3bc84b7a959d23ca8", size = 188284, upload-time = "2025-10-17T11:30:05.046Z" }, + { url = "https://files.pythonhosted.org/packages/8d/00/d6006d069e7b076e4c66af90656b63da9481954f290d5eca8c715f4bf125/jiter-0.11.1-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:0fa1f70da7a8a9713ff8e5f75ec3f90c0c870be6d526aa95e7c906f6a1c8c676", size = 304624, upload-time = "2025-10-17T11:30:06.678Z" }, + { url = "https://files.pythonhosted.org/packages/fc/45/4a0e31eb996b9ccfddbae4d3017b46f358a599ccf2e19fbffa5e531bd304/jiter-0.11.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:569ee559e5046a42feb6828c55307cf20fe43308e3ae0d8e9e4f8d8634d99944", size = 315042, upload-time = "2025-10-17T11:30:08.87Z" }, + { url = "https://files.pythonhosted.org/packages/e7/91/22f5746f5159a28c76acdc0778801f3c1181799aab196dbea2d29e064968/jiter-0.11.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f69955fa1d92e81987f092b233f0be49d4c937da107b7f7dcf56306f1d3fcce9", size = 346357, upload-time = "2025-10-17T11:30:10.222Z" }, + { url = "https://files.pythonhosted.org/packages/f5/4f/57620857d4e1dc75c8ff4856c90cb6c135e61bff9b4ebfb5dc86814e82d7/jiter-0.11.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:090f4c9d4a825e0fcbd0a2647c9a88a0f366b75654d982d95a9590745ff0c48d", size = 365057, upload-time = "2025-10-17T11:30:11.585Z" }, + { url = "https://files.pythonhosted.org/packages/ce/34/caf7f9cc8ae0a5bb25a5440cc76c7452d264d1b36701b90fdadd28fe08ec/jiter-0.11.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bbf3d8cedf9e9d825233e0dcac28ff15c47b7c5512fdfe2e25fd5bbb6e6b0cee", size = 487086, upload-time = "2025-10-17T11:30:13.052Z" }, + { url = "https://files.pythonhosted.org/packages/50/17/85b5857c329d533d433fedf98804ebec696004a1f88cabad202b2ddc55cf/jiter-0.11.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2aa9b1958f9c30d3d1a558b75f0626733c60eb9b7774a86b34d88060be1e67fe", size = 376083, upload-time = "2025-10-17T11:30:14.416Z" }, + { url = "https://files.pythonhosted.org/packages/85/d3/2d9f973f828226e6faebdef034097a2918077ea776fb4d88489949024787/jiter-0.11.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e42d1ca16590b768c5e7d723055acd2633908baacb3628dd430842e2e035aa90", size = 357825, upload-time = "2025-10-17T11:30:15.765Z" }, + { url = "https://files.pythonhosted.org/packages/f4/55/848d4dabf2c2c236a05468c315c2cb9dc736c5915e65449ccecdba22fb6f/jiter-0.11.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5db4c2486a023820b701a17aec9c5a6173c5ba4393f26662f032f2de9c848b0f", size = 383933, upload-time = "2025-10-17T11:30:17.34Z" }, + { url = "https://files.pythonhosted.org/packages/0b/6c/204c95a4fbb0e26dfa7776c8ef4a878d0c0b215868011cc904bf44f707e2/jiter-0.11.1-cp314-cp314-musllinux_1_1_aarch64.whl", hash = "sha256:4573b78777ccfac954859a6eff45cbd9d281d80c8af049d0f1a3d9fc323d5c3a", size = 517118, upload-time = "2025-10-17T11:30:18.684Z" }, + { url = "https://files.pythonhosted.org/packages/88/25/09956644ea5a2b1e7a2a0f665cb69a973b28f4621fa61fc0c0f06ff40a31/jiter-0.11.1-cp314-cp314-musllinux_1_1_x86_64.whl", hash = "sha256:7593ac6f40831d7961cb67633c39b9fef6689a211d7919e958f45710504f52d3", size = 508194, upload-time = "2025-10-17T11:30:20.719Z" }, + { url = "https://files.pythonhosted.org/packages/09/49/4d1657355d7f5c9e783083a03a3f07d5858efa6916a7d9634d07db1c23bd/jiter-0.11.1-cp314-cp314-win32.whl", hash = "sha256:87202ec6ff9626ff5f9351507def98fcf0df60e9a146308e8ab221432228f4ea", size = 203961, upload-time = "2025-10-17T11:30:22.073Z" }, + { url = "https://files.pythonhosted.org/packages/76/bd/f063bd5cc2712e7ca3cf6beda50894418fc0cfeb3f6ff45a12d87af25996/jiter-0.11.1-cp314-cp314-win_amd64.whl", hash = "sha256:a5dd268f6531a182c89d0dd9a3f8848e86e92dfff4201b77a18e6b98aa59798c", size = 202804, upload-time = "2025-10-17T11:30:23.452Z" }, + { url = "https://files.pythonhosted.org/packages/52/ca/4d84193dfafef1020bf0bedd5e1a8d0e89cb67c54b8519040effc694964b/jiter-0.11.1-cp314-cp314-win_arm64.whl", hash = "sha256:5d761f863f912a44748a21b5c4979c04252588ded8d1d2760976d2e42cd8d991", size = 188001, upload-time = "2025-10-17T11:30:24.915Z" }, + { url = "https://files.pythonhosted.org/packages/d5/fa/3b05e5c9d32efc770a8510eeb0b071c42ae93a5b576fd91cee9af91689a1/jiter-0.11.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:2cc5a3965285ddc33e0cab933e96b640bc9ba5940cea27ebbbf6695e72d6511c", size = 312561, upload-time = "2025-10-17T11:30:26.742Z" }, + { url = "https://files.pythonhosted.org/packages/50/d3/335822eb216154ddb79a130cbdce88fdf5c3e2b43dc5dba1fd95c485aaf5/jiter-0.11.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b572b3636a784c2768b2342f36a23078c8d3aa6d8a30745398b1bab58a6f1a8", size = 344551, upload-time = "2025-10-17T11:30:28.252Z" }, + { url = "https://files.pythonhosted.org/packages/31/6d/a0bed13676b1398f9b3ba61f32569f20a3ff270291161100956a577b2dd3/jiter-0.11.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ad93e3d67a981f96596d65d2298fe8d1aa649deb5374a2fb6a434410ee11915e", size = 363051, upload-time = "2025-10-17T11:30:30.009Z" }, + { url = "https://files.pythonhosted.org/packages/a4/03/313eda04aa08545a5a04ed5876e52f49ab76a4d98e54578896ca3e16313e/jiter-0.11.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a83097ce379e202dcc3fe3fc71a16d523d1ee9192c8e4e854158f96b3efe3f2f", size = 485897, upload-time = "2025-10-17T11:30:31.429Z" }, + { url = "https://files.pythonhosted.org/packages/5f/13/a1011b9d325e40b53b1b96a17c010b8646013417f3902f97a86325b19299/jiter-0.11.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7042c51e7fbeca65631eb0c332f90c0c082eab04334e7ccc28a8588e8e2804d9", size = 375224, upload-time = "2025-10-17T11:30:33.18Z" }, + { url = "https://files.pythonhosted.org/packages/92/da/1b45026b19dd39b419e917165ff0ea629dbb95f374a3a13d2df95e40a6ac/jiter-0.11.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0a68d679c0e47649a61df591660507608adc2652442de7ec8276538ac46abe08", size = 356606, upload-time = "2025-10-17T11:30:34.572Z" }, + { url = "https://files.pythonhosted.org/packages/7a/0c/9acb0e54d6a8ba59ce923a180ebe824b4e00e80e56cefde86cc8e0a948be/jiter-0.11.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a1b0da75dbf4b6ec0b3c9e604d1ee8beaf15bc046fff7180f7d89e3cdbd3bb51", size = 384003, upload-time = "2025-10-17T11:30:35.987Z" }, + { url = "https://files.pythonhosted.org/packages/3f/2b/e5a5fe09d6da2145e4eed651e2ce37f3c0cf8016e48b1d302e21fb1628b7/jiter-0.11.1-cp314-cp314t-musllinux_1_1_aarch64.whl", hash = "sha256:69dd514bf0fa31c62147d6002e5ca2b3e7ef5894f5ac6f0a19752385f4e89437", size = 516946, upload-time = "2025-10-17T11:30:37.425Z" }, + { url = "https://files.pythonhosted.org/packages/5f/fe/db936e16e0228d48eb81f9934e8327e9fde5185e84f02174fcd22a01be87/jiter-0.11.1-cp314-cp314t-musllinux_1_1_x86_64.whl", hash = "sha256:bb31ac0b339efa24c0ca606febd8b77ef11c58d09af1b5f2be4c99e907b11111", size = 507614, upload-time = "2025-10-17T11:30:38.977Z" }, + { url = "https://files.pythonhosted.org/packages/86/db/c4438e8febfb303486d13c6b72f5eb71cf851e300a0c1f0b4140018dd31f/jiter-0.11.1-cp314-cp314t-win32.whl", hash = "sha256:b2ce0d6156a1d3ad41da3eec63b17e03e296b78b0e0da660876fccfada86d2f7", size = 204043, upload-time = "2025-10-17T11:30:40.308Z" }, + { url = "https://files.pythonhosted.org/packages/36/59/81badb169212f30f47f817dfaabf965bc9b8204fed906fab58104ee541f9/jiter-0.11.1-cp314-cp314t-win_amd64.whl", hash = "sha256:f4db07d127b54c4a2d43b4cf05ff0193e4f73e0dd90c74037e16df0b29f666e1", size = 204046, upload-time = "2025-10-17T11:30:41.692Z" }, + { url = "https://files.pythonhosted.org/packages/dd/01/43f7b4eb61db3e565574c4c5714685d042fb652f9eef7e5a3de6aafa943a/jiter-0.11.1-cp314-cp314t-win_arm64.whl", hash = "sha256:28e4fdf2d7ebfc935523e50d1efa3970043cfaa161674fe66f9642409d001dfe", size = 188069, upload-time = "2025-10-17T11:30:43.23Z" }, + { url = "https://files.pythonhosted.org/packages/9d/51/bd41562dd284e2a18b6dc0a99d195fd4a3560d52ab192c42e56fe0316643/jiter-0.11.1-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl", hash = "sha256:e642b5270e61dd02265866398707f90e365b5db2eb65a4f30c789d826682e1f6", size = 306871, upload-time = "2025-10-17T11:31:03.616Z" }, + { url = "https://files.pythonhosted.org/packages/ba/cb/64e7f21dd357e8cd6b3c919c26fac7fc198385bbd1d85bb3b5355600d787/jiter-0.11.1-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl", hash = "sha256:464ba6d000585e4e2fd1e891f31f1231f497273414f5019e27c00a4b8f7a24ad", size = 301454, upload-time = "2025-10-17T11:31:05.338Z" }, + { url = "https://files.pythonhosted.org/packages/55/b0/54bdc00da4ef39801b1419a01035bd8857983de984fd3776b0be6b94add7/jiter-0.11.1-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:055568693ab35e0bf3a171b03bb40b2dcb10352359e0ab9b5ed0da2bf1eb6f6f", size = 336801, upload-time = "2025-10-17T11:31:06.893Z" }, + { url = "https://files.pythonhosted.org/packages/de/8f/87176ed071d42e9db415ed8be787ef4ef31a4fa27f52e6a4fbf34387bd28/jiter-0.11.1-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e0c69ea798d08a915ba4478113efa9e694971e410056392f4526d796f136d3fa", size = 343452, upload-time = "2025-10-17T11:31:08.259Z" }, + { url = "https://files.pythonhosted.org/packages/a6/bc/950dd7f170c6394b6fdd73f989d9e729bd98907bcc4430ef080a72d06b77/jiter-0.11.1-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl", hash = "sha256:0d4d6993edc83cf75e8c6828a8d6ce40a09ee87e38c7bfba6924f39e1337e21d", size = 302626, upload-time = "2025-10-17T11:31:09.645Z" }, + { url = "https://files.pythonhosted.org/packages/3a/65/43d7971ca82ee100b7b9b520573eeef7eabc0a45d490168ebb9a9b5bb8b2/jiter-0.11.1-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl", hash = "sha256:f78d151c83a87a6cf5461d5ee55bc730dd9ae227377ac6f115b922989b95f838", size = 297034, upload-time = "2025-10-17T11:31:10.975Z" }, + { url = "https://files.pythonhosted.org/packages/19/4c/000e1e0c0c67e96557a279f8969487ea2732d6c7311698819f977abae837/jiter-0.11.1-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c9022974781155cd5521d5cb10997a03ee5e31e8454c9d999dcdccd253f2353f", size = 337328, upload-time = "2025-10-17T11:31:12.399Z" }, + { url = "https://files.pythonhosted.org/packages/d9/71/71408b02c6133153336d29fa3ba53000f1e1a3f78bb2fc2d1a1865d2e743/jiter-0.11.1-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18c77aaa9117510d5bdc6a946baf21b1f0cfa58ef04d31c8d016f206f2118960", size = 343697, upload-time = "2025-10-17T11:31:13.773Z" }, +] + +[[package]] +name = "jmespath" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d3/59/322338183ecda247fb5d1763a6cbe46eff7222eaeebafd9fa65d4bf5cb11/jmespath-1.1.0.tar.gz", hash = "sha256:472c87d80f36026ae83c6ddd0f1d05d4e510134ed462851fd5f754c8c3cbb88d", size = 27377, upload-time = "2026-01-22T16:35:26.279Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/14/2f/967ba146e6d58cf6a652da73885f52fc68001525b4197effc174321d70b4/jmespath-1.1.0-py3-none-any.whl", hash = "sha256:a5663118de4908c91729bea0acadca56526eb2698e83de10cd116ae0f4e97c64", size = 20419, upload-time = "2026-01-22T16:35:24.919Z" }, +] + +[[package]] +name = "joblib" +version = "1.5.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/41/f2/d34e8b3a08a9cc79a50b2208a93dce981fe615b64d5a4d4abee421d898df/joblib-1.5.3.tar.gz", hash = "sha256:8561a3269e6801106863fd0d6d84bb737be9e7631e33aaed3fb9ce5953688da3", size = 331603, upload-time = "2025-12-15T08:41:46.427Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/91/984aca2ec129e2757d1e4e3c81c3fcda9d0f85b74670a094cc443d9ee949/joblib-1.5.3-py3-none-any.whl", hash = "sha256:5fc3c5039fc5ca8c0276333a188bbd59d6b7ab37fe6632daa76bc7f9ec18e713", size = 309071, upload-time = "2025-12-15T08:41:44.973Z" }, +] + +[[package]] +name = "json5" +version = "0.13.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/77/e8/a3f261a66e4663f22700bc8a17c08cb83e91fbf086726e7a228398968981/json5-0.13.0.tar.gz", hash = "sha256:b1edf8d487721c0bf64d83c28e91280781f6e21f4a797d3261c7c828d4c165bf", size = 52441, upload-time = "2026-01-01T19:42:14.99Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d7/9e/038522f50ceb7e74f1f991bf1b699f24b0c2bbe7c390dd36ad69f4582258/json5-0.13.0-py3-none-any.whl", hash = "sha256:9a08e1dd65f6a4d4c6fa82d216cf2477349ec2346a38fd70cc11d2557499fbcc", size = 36163, upload-time = "2026-01-01T19:42:13.962Z" }, +] + [[package]] name = "jsonpatch" version = "1.33" @@ -688,6 +1803,245 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/71/92/5e77f98553e9e75130c78900d000368476aed74276eb8ae8796f65f00918/jsonpointer-3.0.0-py2.py3-none-any.whl", hash = "sha256:13e088adc14fca8b6aa8177c044e12701e6ad4b28ff10e65f2267a90109c9942", size = 7595, upload-time = "2024-06-10T19:24:40.698Z" }, ] +[[package]] +name = "jsonschema" +version = "4.26.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs" }, + { name = "jsonschema-specifications" }, + { name = "referencing" }, + { name = "rpds-py" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b3/fc/e067678238fa451312d4c62bf6e6cf5ec56375422aee02f9cb5f909b3047/jsonschema-4.26.0.tar.gz", hash = "sha256:0c26707e2efad8aa1bfc5b7ce170f3fccc2e4918ff85989ba9ffa9facb2be326", size = 366583, upload-time = "2026-01-07T13:41:07.246Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/69/90/f63fb5873511e014207a475e2bb4e8b2e570d655b00ac19a9a0ca0a385ee/jsonschema-4.26.0-py3-none-any.whl", hash = "sha256:d489f15263b8d200f8387e64b4c3a75f06629559fb73deb8fdfb525f2dab50ce", size = 90630, upload-time = "2026-01-07T13:41:05.306Z" }, +] + +[package.optional-dependencies] +format-nongpl = [ + { name = "fqdn" }, + { name = "idna" }, + { name = "isoduration" }, + { name = "jsonpointer" }, + { name = "rfc3339-validator" }, + { name = "rfc3986-validator" }, + { name = "rfc3987-syntax" }, + { name = "uri-template" }, + { name = "webcolors" }, +] + +[[package]] +name = "jsonschema-specifications" +version = "2025.9.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "referencing" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/19/74/a633ee74eb36c44aa6d1095e7cc5569bebf04342ee146178e2d36600708b/jsonschema_specifications-2025.9.1.tar.gz", hash = "sha256:b540987f239e745613c7a9176f3edb72b832a4ac465cf02712288397832b5e8d", size = 32855, upload-time = "2025-09-08T01:34:59.186Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/41/45/1a4ed80516f02155c51f51e8cedb3c1902296743db0bbc66608a0db2814f/jsonschema_specifications-2025.9.1-py3-none-any.whl", hash = "sha256:98802fee3a11ee76ecaca44429fda8a41bff98b00a0f2838151b113f210cc6fe", size = 18437, upload-time = "2025-09-08T01:34:57.871Z" }, +] + +[[package]] +name = "jupyter" +version = "1.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ipykernel" }, + { name = "ipywidgets" }, + { name = "jupyter-console" }, + { name = "jupyterlab" }, + { name = "nbconvert" }, + { name = "notebook" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/58/f3/af28ea964ab8bc1e472dba2e82627d36d470c51f5cd38c37502eeffaa25e/jupyter-1.1.1.tar.gz", hash = "sha256:d55467bceabdea49d7e3624af7e33d59c37fff53ed3a350e1ac957bed731de7a", size = 5714959, upload-time = "2024-08-30T07:15:48.299Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/38/64/285f20a31679bf547b75602702f7800e74dbabae36ef324f716c02804753/jupyter-1.1.1-py2.py3-none-any.whl", hash = "sha256:7a59533c22af65439b24bbe60373a4e95af8f16ac65a6c00820ad378e3f7cc83", size = 2657, upload-time = "2024-08-30T07:15:47.045Z" }, +] + +[[package]] +name = "jupyter-client" +version = "8.8.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-core" }, + { name = "python-dateutil" }, + { name = "pyzmq" }, + { name = "tornado" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/05/e4/ba649102a3bc3fbca54e7239fb924fd434c766f855693d86de0b1f2bec81/jupyter_client-8.8.0.tar.gz", hash = "sha256:d556811419a4f2d96c869af34e854e3f059b7cc2d6d01a9cd9c85c267691be3e", size = 348020, upload-time = "2026-01-08T13:55:47.938Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2d/0b/ceb7694d864abc0a047649aec263878acb9f792e1fec3e676f22dc9015e3/jupyter_client-8.8.0-py3-none-any.whl", hash = "sha256:f93a5b99c5e23a507b773d3a1136bd6e16c67883ccdbd9a829b0bbdb98cd7d7a", size = 107371, upload-time = "2026-01-08T13:55:45.562Z" }, +] + +[[package]] +name = "jupyter-console" +version = "6.6.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ipykernel" }, + { name = "ipython" }, + { name = "jupyter-client" }, + { name = "jupyter-core" }, + { name = "prompt-toolkit" }, + { name = "pygments" }, + { name = "pyzmq" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bd/2d/e2fd31e2fc41c14e2bcb6c976ab732597e907523f6b2420305f9fc7fdbdb/jupyter_console-6.6.3.tar.gz", hash = "sha256:566a4bf31c87adbfadf22cdf846e3069b59a71ed5da71d6ba4d8aaad14a53539", size = 34363, upload-time = "2023-03-06T14:13:31.02Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ca/77/71d78d58f15c22db16328a476426f7ac4a60d3a5a7ba3b9627ee2f7903d4/jupyter_console-6.6.3-py3-none-any.whl", hash = "sha256:309d33409fcc92ffdad25f0bcdf9a4a9daa61b6f341177570fdac03de5352485", size = 24510, upload-time = "2023-03-06T14:13:28.229Z" }, +] + +[[package]] +name = "jupyter-core" +version = "5.9.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "platformdirs" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/02/49/9d1284d0dc65e2c757b74c6687b6d319b02f822ad039e5c512df9194d9dd/jupyter_core-5.9.1.tar.gz", hash = "sha256:4d09aaff303b9566c3ce657f580bd089ff5c91f5f89cf7d8846c3cdf465b5508", size = 89814, upload-time = "2025-10-16T19:19:18.444Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/e7/80988e32bf6f73919a113473a604f5a8f09094de312b9d52b79c2df7612b/jupyter_core-5.9.1-py3-none-any.whl", hash = "sha256:ebf87fdc6073d142e114c72c9e29a9d7ca03fad818c5d300ce2adc1fb0743407", size = 29032, upload-time = "2025-10-16T19:19:16.783Z" }, +] + +[[package]] +name = "jupyter-events" +version = "0.12.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jsonschema", extra = ["format-nongpl"] }, + { name = "packaging" }, + { name = "python-json-logger" }, + { name = "pyyaml" }, + { name = "referencing" }, + { name = "rfc3339-validator" }, + { name = "rfc3986-validator" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9d/c3/306d090461e4cf3cd91eceaff84bede12a8e52cd821c2d20c9a4fd728385/jupyter_events-0.12.0.tar.gz", hash = "sha256:fc3fce98865f6784c9cd0a56a20644fc6098f21c8c33834a8d9fe383c17e554b", size = 62196, upload-time = "2025-02-03T17:23:41.485Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e2/48/577993f1f99c552f18a0428731a755e06171f9902fa118c379eb7c04ea22/jupyter_events-0.12.0-py3-none-any.whl", hash = "sha256:6464b2fa5ad10451c3d35fabc75eab39556ae1e2853ad0c0cc31b656731a97fb", size = 19430, upload-time = "2025-02-03T17:23:38.643Z" }, +] + +[[package]] +name = "jupyter-lsp" +version = "2.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-server" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/eb/5a/9066c9f8e94ee517133cd98dba393459a16cd48bba71a82f16a65415206c/jupyter_lsp-2.3.0.tar.gz", hash = "sha256:458aa59339dc868fb784d73364f17dbce8836e906cd75fd471a325cba02e0245", size = 54823, upload-time = "2025-08-27T17:47:34.671Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1a/60/1f6cee0c46263de1173894f0fafcb3475ded276c472c14d25e0280c18d6d/jupyter_lsp-2.3.0-py3-none-any.whl", hash = "sha256:e914a3cb2addf48b1c7710914771aaf1819d46b2e5a79b0f917b5478ec93f34f", size = 76687, upload-time = "2025-08-27T17:47:33.15Z" }, +] + +[[package]] +name = "jupyter-server" +version = "2.17.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "argon2-cffi" }, + { name = "jinja2" }, + { name = "jupyter-client" }, + { name = "jupyter-core" }, + { name = "jupyter-events" }, + { name = "jupyter-server-terminals" }, + { name = "nbconvert" }, + { name = "nbformat" }, + { name = "overrides", marker = "python_full_version < '3.12'" }, + { name = "packaging" }, + { name = "prometheus-client" }, + { name = "pywinpty", marker = "os_name == 'nt'" }, + { name = "pyzmq" }, + { name = "send2trash" }, + { name = "terminado" }, + { name = "tornado" }, + { name = "traitlets" }, + { name = "websocket-client" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5b/ac/e040ec363d7b6b1f11304cc9f209dac4517ece5d5e01821366b924a64a50/jupyter_server-2.17.0.tar.gz", hash = "sha256:c38ea898566964c888b4772ae1ed58eca84592e88251d2cfc4d171f81f7e99d5", size = 731949, upload-time = "2025-08-21T14:42:54.042Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/92/80/a24767e6ca280f5a49525d987bf3e4d7552bf67c8be07e8ccf20271f8568/jupyter_server-2.17.0-py3-none-any.whl", hash = "sha256:e8cb9c7db4251f51ed307e329b81b72ccf2056ff82d50524debde1ee1870e13f", size = 388221, upload-time = "2025-08-21T14:42:52.034Z" }, +] + +[[package]] +name = "jupyter-server-terminals" +version = "0.5.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pywinpty", marker = "os_name == 'nt'" }, + { name = "terminado" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f4/a7/bcd0a9b0cbba88986fe944aaaf91bfda603e5a50bda8ed15123f381a3b2f/jupyter_server_terminals-0.5.4.tar.gz", hash = "sha256:bbda128ed41d0be9020349f9f1f2a4ab9952a73ed5f5ac9f1419794761fb87f5", size = 31770, upload-time = "2026-01-14T16:53:20.213Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/2d/6674563f71c6320841fc300911a55143925112a72a883e2ca71fba4c618d/jupyter_server_terminals-0.5.4-py3-none-any.whl", hash = "sha256:55be353fc74a80bc7f3b20e6be50a55a61cd525626f578dcb66a5708e2007d14", size = 13704, upload-time = "2026-01-14T16:53:18.738Z" }, +] + +[[package]] +name = "jupyterlab" +version = "4.5.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "async-lru" }, + { name = "httpx" }, + { name = "ipykernel" }, + { name = "jinja2" }, + { name = "jupyter-core" }, + { name = "jupyter-lsp" }, + { name = "jupyter-server" }, + { name = "jupyterlab-server" }, + { name = "notebook-shim" }, + { name = "packaging" }, + { name = "setuptools" }, + { name = "tornado" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6e/2d/953a5612a34a3c799a62566a548e711d103f631672fd49650e0f2de80870/jupyterlab-4.5.5.tar.gz", hash = "sha256:eac620698c59eb810e1729909be418d9373d18137cac66637141abba613b3fda", size = 23968441, upload-time = "2026-02-23T18:57:34.339Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b9/52/372d3494766d690dfdd286871bf5f7fb9a6c61f7566ccaa7153a163dd1df/jupyterlab-4.5.5-py3-none-any.whl", hash = "sha256:a35694a40a8e7f2e82f387472af24e61b22adcce87b5a8ab97a5d9c486202a6d", size = 12446824, upload-time = "2026-02-23T18:57:30.398Z" }, +] + +[[package]] +name = "jupyterlab-pygments" +version = "0.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/90/51/9187be60d989df97f5f0aba133fa54e7300f17616e065d1ada7d7646b6d6/jupyterlab_pygments-0.3.0.tar.gz", hash = "sha256:721aca4d9029252b11cfa9d185e5b5af4d54772bb8072f9b7036f4170054d35d", size = 512900, upload-time = "2023-11-23T09:26:37.44Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl", hash = "sha256:841a89020971da1d8693f1a99997aefc5dc424bb1b251fd6322462a1b8842780", size = 15884, upload-time = "2023-11-23T09:26:34.325Z" }, +] + +[[package]] +name = "jupyterlab-server" +version = "2.28.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "babel" }, + { name = "jinja2" }, + { name = "json5" }, + { name = "jsonschema" }, + { name = "jupyter-server" }, + { name = "packaging" }, + { name = "requests" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d6/2c/90153f189e421e93c4bb4f9e3f59802a1f01abd2ac5cf40b152d7f735232/jupyterlab_server-2.28.0.tar.gz", hash = "sha256:35baa81898b15f93573e2deca50d11ac0ae407ebb688299d3a5213265033712c", size = 76996, upload-time = "2025-10-22T13:59:18.37Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e0/07/a000fe835f76b7e1143242ab1122e6362ef1c03f23f83a045c38859c2ae0/jupyterlab_server-2.28.0-py3-none-any.whl", hash = "sha256:e4355b148fdcf34d312bbbc80f22467d6d20460e8b8736bf235577dd18506968", size = 59830, upload-time = "2025-10-22T13:59:16.767Z" }, +] + +[[package]] +name = "jupyterlab-widgets" +version = "3.0.16" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/26/2d/ef58fed122b268c69c0aa099da20bc67657cdfb2e222688d5731bd5b971d/jupyterlab_widgets-3.0.16.tar.gz", hash = "sha256:423da05071d55cf27a9e602216d35a3a65a3e41cdf9c5d3b643b814ce38c19e0", size = 897423, upload-time = "2025-11-01T21:11:29.724Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ab/b5/36c712098e6191d1b4e349304ef73a8d06aed77e56ceaac8c0a306c7bda1/jupyterlab_widgets-3.0.16-py3-none-any.whl", hash = "sha256:45fa36d9c6422cf2559198e4db481aa243c7a32d9926b500781c830c80f7ecf8", size = 914926, upload-time = "2025-11-01T21:11:28.008Z" }, +] + [[package]] name = "langchain" version = "1.2.10" @@ -702,6 +2056,21 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/7c/06/c3394327f815fade875724c0f6cff529777c96a1e17fea066deb997f8cf5/langchain-1.2.10-py3-none-any.whl", hash = "sha256:e07a377204451fffaed88276b8193e894893b1003e25c5bca6539288ccca3698", size = 111738, upload-time = "2026-02-10T14:56:47.985Z" }, ] +[[package]] +name = "langchain-aws" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "boto3" }, + { name = "langchain-core" }, + { name = "numpy" }, + { name = "pydantic" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7a/23/5c681e53480b046a255bd6525de49e7cac7e51b436525f7425a3bf5c7909/langchain_aws-1.3.1.tar.gz", hash = "sha256:2084a612ab965937329d4d9f4098e93277e23aef401dec001125fa3fd7ea751c", size = 425998, upload-time = "2026-02-27T01:16:18.631Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/94/7b/b254f9271613bc8a5b6f454e67b9ea62921bc3d6fc17ad232278b8266f97/langchain_aws-1.3.1-py3-none-any.whl", hash = "sha256:b4bc4ea4a763202a32f68eed1f7b3c40b59ce8fb9d113e47e9839de0cedee816", size = 170903, upload-time = "2026-02-27T01:16:17.388Z" }, +] + [[package]] name = "langchain-classic" version = "1.0.1" @@ -745,7 +2114,7 @@ wheels = [ [[package]] name = "langchain-core" -version = "1.2.11" +version = "1.2.15" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "jsonpatch" }, @@ -757,9 +2126,9 @@ dependencies = [ { name = "typing-extensions" }, { name = "uuid-utils" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/12/17/1943cedfc118e04b8128e4c3e1dbf0fa0ea58eefddbb6198cfd699d19f01/langchain_core-1.2.11.tar.gz", hash = "sha256:f164bb36602dd74a3a50c1334fca75309ad5ed95767acdfdbb9fa95ce28a1e01", size = 831211, upload-time = "2026-02-10T20:35:28.35Z" } +sdist = { url = "https://files.pythonhosted.org/packages/cc/db/693d81b6c229aceb7c6e6809939c6ab1b023554227a25de438f00c0389c6/langchain_core-1.2.15.tar.gz", hash = "sha256:7d5f5d2daa8ddbe4054a96101dc5d509926f831b9914808c24640987d499758c", size = 835280, upload-time = "2026-02-23T15:04:49.185Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/10/30/1f80e3fc674353cad975ed5294353d42512535d2094ef032c06454c2c873/langchain_core-1.2.11-py3-none-any.whl", hash = "sha256:ae11ceb8dda60d0b9d09e763116e592f1683327c17be5b715f350fd29aee65d3", size = 500062, upload-time = "2026-02-10T20:35:26.698Z" }, + { url = "https://files.pythonhosted.org/packages/48/e0/a6a83dde94400b43d9b091ecbb41a50d6f86c4fecacb81b13d8452a7712b/langchain_core-1.2.15-py3-none-any.whl", hash = "sha256:8d920d8a31d8c223966a3993d8c79fd6093b9665f2222fc878812f3a52072ab7", size = 502213, upload-time = "2026-02-23T15:04:47.967Z" }, ] [[package]] @@ -775,21 +2144,81 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/0f/1c/d8445772488aab3b34c2e7f41d6d1531bf2a50ca1b0b5e31a4f751bca6f8/langchain_elasticsearch-1.0.0-py3-none-any.whl", hash = "sha256:bcca1f10baed48452167c00f9d0919a681033cfa4cdf7d4672017d7b427daab9", size = 54457, upload-time = "2025-12-16T16:51:52.477Z" }, ] +[[package]] +name = "langchain-huggingface" +version = "1.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "huggingface-hub" }, + { name = "langchain-core" }, + { name = "tokenizers" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/67/2c/4fddeb3387baa05b6a95870ad514f649cafb46e0c0ef9caf949d974e55d2/langchain_huggingface-1.2.0.tar.gz", hash = "sha256:18a2d79955271261fb245b233fea6aa29625576e841f2b4f5bee41e51cc70949", size = 255602, upload-time = "2025-12-12T22:19:51.021Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/81/ce/502157ef7390a31cc67e5873ad66e737a25d1d33fcf6936e5c9a0a451409/langchain_huggingface-1.2.0-py3-none-any.whl", hash = "sha256:0ff6a17d3eb36ce2304f446e3285c74b59358703e8f7916c15bfcf9ec7b57bf1", size = 30671, upload-time = "2025-12-12T22:19:50.023Z" }, +] + +[[package]] +name = "langchain-ollama" +version = "1.0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "langchain-core" }, + { name = "ollama" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/73/51/72cd04d74278f3575f921084f34280e2f837211dc008c9671c268c578afe/langchain_ollama-1.0.1.tar.gz", hash = "sha256:e37880c2f41cdb0895e863b1cfd0c2c840a117868b3f32e44fef42569e367443", size = 153850, upload-time = "2025-12-12T21:48:28.68Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e3/46/f2907da16dc5a5a6c679f83b7de21176178afad8d2ca635a581429580ef6/langchain_ollama-1.0.1-py3-none-any.whl", hash = "sha256:37eb939a4718a0255fe31e19fbb0def044746c717b01b97d397606ebc3e9b440", size = 29207, upload-time = "2025-12-12T21:48:27.832Z" }, +] + +[[package]] +name = "langchain-openai" +version = "1.1.10" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "langchain-core" }, + { name = "openai" }, + { name = "tiktoken" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d6/0f/01147f842499338ae3b0dd0a351fb83006d9ed623cf3a999bd68ba5bbe2d/langchain_openai-1.1.10.tar.gz", hash = "sha256:ca6fae7cf19425acc81814efed59c7d205ec9a1f284fd1d08aae9bda85d6501b", size = 1059755, upload-time = "2026-02-17T18:03:44.506Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/72/17/3785cbcdc81c451179247e4176d2697879cb4f45ab2c59d949ca574e072d/langchain_openai-1.1.10-py3-none-any.whl", hash = "sha256:d91b2c09e9fbc70f7af45345d3aa477744962d41c73a029beb46b4f83b824827", size = 87205, upload-time = "2026-02-17T18:03:43.502Z" }, +] + [[package]] name = "langchain-text-splitters" -version = "1.1.0" +version = "1.1.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "langchain-core" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/41/42/c178dcdc157b473330eb7cc30883ea69b8ec60078c7b85e2d521054c4831/langchain_text_splitters-1.1.0.tar.gz", hash = "sha256:75e58acb7585dc9508f3cd9d9809cb14751283226c2d6e21fb3a9ae57582ca22", size = 272230, upload-time = "2025-12-14T01:15:38.659Z" } +sdist = { url = "https://files.pythonhosted.org/packages/85/38/14121ead61e0e75f79c3a35e5148ac7c2fe754a55f76eab3eed573269524/langchain_text_splitters-1.1.1.tar.gz", hash = "sha256:34861abe7c07d9e49d4dc852d0129e26b32738b60a74486853ec9b6d6a8e01d2", size = 279352, upload-time = "2026-02-18T23:02:42.798Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d8/1a/a84ed1c046deecf271356b0179c1b9fba95bfdaa6f934e1849dee26fad7b/langchain_text_splitters-1.1.0-py3-none-any.whl", hash = "sha256:f00341fe883358786104a5f881375ac830a4dd40253ecd42b4c10536c6e4693f", size = 34182, upload-time = "2025-12-14T01:15:37.382Z" }, + { url = "https://files.pythonhosted.org/packages/84/66/d9e0c3b83b0ad75ee746c51ba347cacecb8d656b96e1d513f3e334d1ccab/langchain_text_splitters-1.1.1-py3-none-any.whl", hash = "sha256:5ed0d7bf314ba925041e7d7d17cd8b10f688300d5415fb26c29442f061e329dc", size = 35734, upload-time = "2026-02-18T23:02:41.913Z" }, +] + +[[package]] +name = "langfuse" +version = "2.60.10" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "backoff" }, + { name = "httpx" }, + { name = "idna" }, + { name = "packaging" }, + { name = "pydantic" }, + { name = "requests" }, + { name = "wrapt" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/eb/45/77fdf53c9e9f49bb78f72eba3f992f2f3d8343e05976aabfe1fca276a640/langfuse-2.60.10.tar.gz", hash = "sha256:a26d0d927a28ee01b2d12bb5b862590b643cc4e60a28de6e2b0c2cfff5dbfc6a", size = 152648, upload-time = "2025-09-16T15:08:12.426Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/76/69/08584fbd69e14398d3932a77d0c8d7e20389da3e6470210d6719afba2801/langfuse-2.60.10-py3-none-any.whl", hash = "sha256:815c6369194aa5b2a24f88eb9952f7c3fc863272c41e90642a71f3bc76f4a11f", size = 275568, upload-time = "2025-09-16T15:08:10.166Z" }, ] [[package]] name = "langgraph" -version = "1.0.8" +version = "1.0.9" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "langchain-core" }, @@ -799,9 +2228,9 @@ dependencies = [ { name = "pydantic" }, { name = "xxhash" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/ca/49/e9551965d8a44dd9afdc55cbcdc5a9bd18bee6918cc2395b225d40adb77c/langgraph-1.0.8.tar.gz", hash = "sha256:2630fc578846995114fd659f8b14df9eff5a4e78c49413f67718725e88ceb544", size = 498708, upload-time = "2026-02-06T12:31:13.776Z" } +sdist = { url = "https://files.pythonhosted.org/packages/dc/63/69373a6721f30026ffa462a62084b11ed4bb5a201d1672366e13a89532f3/langgraph-1.0.9.tar.gz", hash = "sha256:feac2729faba7d3c325bef76f240d7d7f66b02d2cbf4fdb1ed7d0cc83f963651", size = 502800, upload-time = "2026-02-19T18:19:45.228Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/9a/72/b0d7fc1007821a08dfc03ce232f39f209aa4aa46414ea3d125b24e35093a/langgraph-1.0.8-py3-none-any.whl", hash = "sha256:da737177c024caad7e5262642bece4f54edf4cba2c905a1d1338963f41cf0904", size = 158144, upload-time = "2026-02-06T12:31:12.489Z" }, + { url = "https://files.pythonhosted.org/packages/23/a2/562a6c2430085c2c29b23c1e1d12233bf41a64e9a9832eda7573af3666cf/langgraph-1.0.9-py3-none-any.whl", hash = "sha256:bce0d1f3e9a20434215a2a818395a58aedfc11c87bd6b52706c0db5c05ec44ec", size = 158150, upload-time = "2026-02-19T18:19:43.913Z" }, ] [[package]] @@ -819,33 +2248,33 @@ wheels = [ [[package]] name = "langgraph-prebuilt" -version = "1.0.7" +version = "1.0.8" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "langchain-core" }, { name = "langgraph-checkpoint" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/a7/59/711aecd1a50999456850dc328f3cad72b4372d8218838d8d5326f80cb76f/langgraph_prebuilt-1.0.7.tar.gz", hash = "sha256:38e097e06de810de4d0e028ffc0e432bb56d1fb417620fb1dfdc76c5e03e4bf9", size = 163692, upload-time = "2026-01-22T16:45:22.801Z" } +sdist = { url = "https://files.pythonhosted.org/packages/0d/06/dd61a5c2dce009d1b03b1d56f2a85b3127659fdddf5b3be5d8f1d60820fb/langgraph_prebuilt-1.0.8.tar.gz", hash = "sha256:0cd3cf5473ced8a6cd687cc5294e08d3de57529d8dd14fdc6ae4899549efcf69", size = 164442, upload-time = "2026-02-19T18:14:39.083Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/47/49/5e37abb3f38a17a3487634abc2a5da87c208cc1d14577eb8d7184b25c886/langgraph_prebuilt-1.0.7-py3-none-any.whl", hash = "sha256:e14923516504405bb5edc3977085bc9622c35476b50c1808544490e13871fe7c", size = 35324, upload-time = "2026-01-22T16:45:21.784Z" }, + { url = "https://files.pythonhosted.org/packages/dc/41/ec966424ad3f2ed3996d24079d3342c8cd6c0bd0653c12b2a917a685ec6c/langgraph_prebuilt-1.0.8-py3-none-any.whl", hash = "sha256:d16a731e591ba4470f3e313a319c7eee7dbc40895bcf15c821f985a3522a7ce0", size = 35648, upload-time = "2026-02-19T18:14:37.611Z" }, ] [[package]] name = "langgraph-sdk" -version = "0.3.5" +version = "0.3.8" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "httpx" }, { name = "orjson" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/60/2b/2dae368ac76e315197f07ab58077aadf20833c226fbfd450d71745850314/langgraph_sdk-0.3.5.tar.gz", hash = "sha256:64669e9885a908578eed921ef9a8e52b8d0cd38db1e3e5d6d299d4e6f8830ac0", size = 177470, upload-time = "2026-02-10T16:56:09.18Z" } +sdist = { url = "https://files.pythonhosted.org/packages/48/22/f451b7f42e7c553f649c51698b5ff82ed1932993bcb9b7a7c53d888849e1/langgraph_sdk-0.3.8.tar.gz", hash = "sha256:e73e56e403254ebada5cab70165eb0b69155979e2360bca84da2cb63f364dfb9", size = 183804, upload-time = "2026-02-19T19:12:37.971Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/84/d5/a14d957c515ba7a9713bf0f03f2b9277979c403bc50f829bdfd54ae7dc9e/langgraph_sdk-0.3.5-py3-none-any.whl", hash = "sha256:bcfa1dcbddadb604076ce46f5e08969538735e5ac47fa863d4fac5a512dab5c9", size = 70851, upload-time = "2026-02-10T16:56:07.983Z" }, + { url = "https://files.pythonhosted.org/packages/c5/77/00887fb1fb2c0d61eed0dd76d1ed919558b679f71904d63de6925ca350f9/langgraph_sdk-0.3.8-py3-none-any.whl", hash = "sha256:90436594e95c6fc1d1dafb59ac1c5eff2f8e1853eecc6082262b8e6de04233c1", size = 90038, upload-time = "2026-02-19T19:12:36.65Z" }, ] [[package]] name = "langsmith" -version = "0.7.1" +version = "0.7.6" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "httpx" }, @@ -858,9 +2287,74 @@ dependencies = [ { name = "xxhash" }, { name = "zstandard" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/67/48/3151de6df96e0977b8d319b03905e29db0df6929a85df1d922a030b7e68d/langsmith-0.7.1.tar.gz", hash = "sha256:e3fec2f97f7c5192f192f4873d6a076b8c6469768022323dded07087d8cb70a4", size = 984367, upload-time = "2026-02-10T01:55:24.696Z" } +sdist = { url = "https://files.pythonhosted.org/packages/22/b1/a1514b6fe33dc956bee1e6aba88470999d53a6ed02ec8fd14d6d409b8fb7/langsmith-0.7.6.tar.gz", hash = "sha256:e8646f8429d3c1641c7bae3c01bfdc3dfa27625994b0ef4303714d6b06fe1ef9", size = 1041741, upload-time = "2026-02-21T01:26:34.296Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ce/87/6f2b008a456b4f5fd0fb1509bb7e1e9368c1a0c9641a535f224a9ddc10f3/langsmith-0.7.1-py3-none-any.whl", hash = "sha256:92cfa54253d35417184c297ad25bfd921d95f15d60a1ca75f14d4e7acd152a29", size = 322515, upload-time = "2026-02-10T01:55:22.531Z" }, + { url = "https://files.pythonhosted.org/packages/89/47/9865e5f0c49d74e3f4ea5697dadf11f2b9c9ae037f0bff599583ebe59189/langsmith-0.7.6-py3-none-any.whl", hash = "sha256:28d256584969db723b68189a7dbb065836572728ab4d9597ec5379fe0a1e1641", size = 325475, upload-time = "2026-02-21T01:26:32.504Z" }, +] + +[[package]] +name = "lark" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/da/34/28fff3ab31ccff1fd4f6c7c7b0ceb2b6968d8ea4950663eadcb5720591a0/lark-1.3.1.tar.gz", hash = "sha256:b426a7a6d6d53189d318f2b6236ab5d6429eaf09259f1ca33eb716eed10d2905", size = 382732, upload-time = "2025-10-27T18:25:56.653Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/82/3d/14ce75ef66813643812f3093ab17e46d3a206942ce7376d31ec2d36229e7/lark-1.3.1-py3-none-any.whl", hash = "sha256:c629b661023a014c37da873b4ff58a817398d12635d3bbb2c5a03be7fe5d1e12", size = 113151, upload-time = "2025-10-27T18:25:54.882Z" }, +] + +[[package]] +name = "litellm" +version = "1.82.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiohttp" }, + { name = "click" }, + { name = "fastuuid" }, + { name = "httpx" }, + { name = "importlib-metadata" }, + { name = "jinja2" }, + { name = "jsonschema" }, + { name = "openai" }, + { name = "pydantic" }, + { name = "python-dotenv" }, + { name = "tiktoken" }, + { name = "tokenizers" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6c/00/49bb5c28e0dea0f5086229a2a08d5fdc6c8dc0d8e2acb2a2d1f7dd9f4b70/litellm-1.82.0.tar.gz", hash = "sha256:d388f52447daccbcaafa19a3e68d17b75f1374b5bf2cde680d65e1cd86e50d22", size = 16800355, upload-time = "2026-03-01T02:35:30.363Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/28/89/eb28bfcf97d6b045c400e72eb047c381594467048c237dbb6c227764084c/litellm-1.82.0-py3-none-any.whl", hash = "sha256:5496b5d4532cccdc7a095c21cbac4042f7662021c57bc1d17be4e39838929e80", size = 14911978, upload-time = "2026-03-01T02:35:26.844Z" }, +] + +[[package]] +name = "litestar" +version = "2.21.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "click" }, + { name = "httpx" }, + { name = "litestar-htmx" }, + { name = "msgspec" }, + { name = "multidict" }, + { name = "multipart" }, + { name = "polyfactory" }, + { name = "pyyaml" }, + { name = "rich" }, + { name = "rich-click" }, + { name = "sniffio" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f1/96/86dd853ea6b3570e699515b24e8476e00f554e9038f48d3bc84eb4d55429/litestar-2.21.0.tar.gz", hash = "sha256:3bde5e97ae9054db83d0fb8738c57871be5257e3a4a27d8109f914302681ec02", size = 375390, upload-time = "2026-02-14T15:16:10.049Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/25/e9/35bc58351570bd08e134fb53c93e5d88558c4bc31ce6568574bbb60dca42/litestar-2.21.0-py3-none-any.whl", hash = "sha256:b8bd76cb7f4b6585f3bb9b952a42e5a8bfbf0256d52bf2cfb9b4fe7fd5534a35", size = 567574, upload-time = "2026-02-14T15:16:07.718Z" }, +] + +[[package]] +name = "litestar-htmx" +version = "0.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3f/b9/7e296aa1adada25cce8e5f89a996b0e38d852d93b1b656a2058226c542a2/litestar_htmx-0.5.0.tar.gz", hash = "sha256:e02d1a3a92172c874835fa3e6749d65ae9fc626d0df46719490a16293e2146fb", size = 119755, upload-time = "2025-06-11T21:19:45.573Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f2/24/8d99982f0aa9c1cd82073c6232b54a0dbe6797c7d63c0583a6c68ee3ddf2/litestar_htmx-0.5.0-py3-none-any.whl", hash = "sha256:92833aa47e0d0e868d2a7dbfab75261f124f4b83d4f9ad12b57b9a68f86c50e6", size = 9970, upload-time = "2025-06-11T21:19:44.465Z" }, ] [[package]] @@ -876,6 +2370,101 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/0c/29/0348de65b8cc732daa3e33e67806420b2ae89bdce2b04af740289c5c6c8c/loguru-0.7.3-py3-none-any.whl", hash = "sha256:31a33c10c8e1e10422bfd431aeb5d351c7cf7fa671e3c4df004162264b28220c", size = 61595, upload-time = "2024-12-06T11:20:54.538Z" }, ] +[[package]] +name = "markdown" +version = "3.10.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2b/f4/69fa6ed85ae003c2378ffa8f6d2e3234662abd02c10d216c0ba96081a238/markdown-3.10.2.tar.gz", hash = "sha256:994d51325d25ad8aa7ce4ebaec003febcce822c3f8c911e3b17c52f7f589f950", size = 368805, upload-time = "2026-02-09T14:57:26.942Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/de/1f/77fa3081e4f66ca3576c896ae5d31c3002ac6607f9747d2e3aa49227e464/markdown-3.10.2-py3-none-any.whl", hash = "sha256:e91464b71ae3ee7afd3017d9f358ef0baf158fd9a298db92f1d4761133824c36", size = 108180, upload-time = "2026-02-09T14:57:25.787Z" }, +] + +[[package]] +name = "markdown-it-py" +version = "4.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mdurl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5b/f5/4ec618ed16cc4f8fb3b701563655a69816155e79e24a17b651541804721d/markdown_it_py-4.0.0.tar.gz", hash = "sha256:cb0a2b4aa34f932c007117b194e945bd74e0ec24133ceb5bac59009cda1cb9f3", size = 73070, upload-time = "2025-08-11T12:57:52.854Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl", hash = "sha256:87327c59b172c5011896038353a81343b6754500a08cd7a4973bb48c6d578147", size = 87321, upload-time = "2025-08-11T12:57:51.923Z" }, +] + +[[package]] +name = "markupsafe" +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7e/99/7690b6d4034fffd95959cbe0c02de8deb3098cc577c67bb6a24fe5d7caa7/markupsafe-3.0.3.tar.gz", hash = "sha256:722695808f4b6457b320fdc131280796bdceb04ab50fe1795cd540799ebe1698", size = 80313, upload-time = "2025-09-27T18:37:40.426Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/08/db/fefacb2136439fc8dd20e797950e749aa1f4997ed584c62cfb8ef7c2be0e/markupsafe-3.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1cc7ea17a6824959616c525620e387f6dd30fec8cb44f649e31712db02123dad", size = 11631, upload-time = "2025-09-27T18:36:18.185Z" }, + { url = "https://files.pythonhosted.org/packages/e1/2e/5898933336b61975ce9dc04decbc0a7f2fee78c30353c5efba7f2d6ff27a/markupsafe-3.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4bd4cd07944443f5a265608cc6aab442e4f74dff8088b0dfc8238647b8f6ae9a", size = 12058, upload-time = "2025-09-27T18:36:19.444Z" }, + { url = "https://files.pythonhosted.org/packages/1d/09/adf2df3699d87d1d8184038df46a9c80d78c0148492323f4693df54e17bb/markupsafe-3.0.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6b5420a1d9450023228968e7e6a9ce57f65d148ab56d2313fcd589eee96a7a50", size = 24287, upload-time = "2025-09-27T18:36:20.768Z" }, + { url = "https://files.pythonhosted.org/packages/30/ac/0273f6fcb5f42e314c6d8cd99effae6a5354604d461b8d392b5ec9530a54/markupsafe-3.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0bf2a864d67e76e5c9a34dc26ec616a66b9888e25e7b9460e1c76d3293bd9dbf", size = 22940, upload-time = "2025-09-27T18:36:22.249Z" }, + { url = "https://files.pythonhosted.org/packages/19/ae/31c1be199ef767124c042c6c3e904da327a2f7f0cd63a0337e1eca2967a8/markupsafe-3.0.3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:bc51efed119bc9cfdf792cdeaa4d67e8f6fcccab66ed4bfdd6bde3e59bfcbb2f", size = 21887, upload-time = "2025-09-27T18:36:23.535Z" }, + { url = "https://files.pythonhosted.org/packages/b2/76/7edcab99d5349a4532a459e1fe64f0b0467a3365056ae550d3bcf3f79e1e/markupsafe-3.0.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:068f375c472b3e7acbe2d5318dea141359e6900156b5b2ba06a30b169086b91a", size = 23692, upload-time = "2025-09-27T18:36:24.823Z" }, + { url = "https://files.pythonhosted.org/packages/a4/28/6e74cdd26d7514849143d69f0bf2399f929c37dc2b31e6829fd2045b2765/markupsafe-3.0.3-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:7be7b61bb172e1ed687f1754f8e7484f1c8019780f6f6b0786e76bb01c2ae115", size = 21471, upload-time = "2025-09-27T18:36:25.95Z" }, + { url = "https://files.pythonhosted.org/packages/62/7e/a145f36a5c2945673e590850a6f8014318d5577ed7e5920a4b3448e0865d/markupsafe-3.0.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f9e130248f4462aaa8e2552d547f36ddadbeaa573879158d721bbd33dfe4743a", size = 22923, upload-time = "2025-09-27T18:36:27.109Z" }, + { url = "https://files.pythonhosted.org/packages/0f/62/d9c46a7f5c9adbeeeda52f5b8d802e1094e9717705a645efc71b0913a0a8/markupsafe-3.0.3-cp311-cp311-win32.whl", hash = "sha256:0db14f5dafddbb6d9208827849fad01f1a2609380add406671a26386cdf15a19", size = 14572, upload-time = "2025-09-27T18:36:28.045Z" }, + { url = "https://files.pythonhosted.org/packages/83/8a/4414c03d3f891739326e1783338e48fb49781cc915b2e0ee052aa490d586/markupsafe-3.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:de8a88e63464af587c950061a5e6a67d3632e36df62b986892331d4620a35c01", size = 15077, upload-time = "2025-09-27T18:36:29.025Z" }, + { url = "https://files.pythonhosted.org/packages/35/73/893072b42e6862f319b5207adc9ae06070f095b358655f077f69a35601f0/markupsafe-3.0.3-cp311-cp311-win_arm64.whl", hash = "sha256:3b562dd9e9ea93f13d53989d23a7e775fdfd1066c33494ff43f5418bc8c58a5c", size = 13876, upload-time = "2025-09-27T18:36:29.954Z" }, + { url = "https://files.pythonhosted.org/packages/5a/72/147da192e38635ada20e0a2e1a51cf8823d2119ce8883f7053879c2199b5/markupsafe-3.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d53197da72cc091b024dd97249dfc7794d6a56530370992a5e1a08983ad9230e", size = 11615, upload-time = "2025-09-27T18:36:30.854Z" }, + { url = "https://files.pythonhosted.org/packages/9a/81/7e4e08678a1f98521201c3079f77db69fb552acd56067661f8c2f534a718/markupsafe-3.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1872df69a4de6aead3491198eaf13810b565bdbeec3ae2dc8780f14458ec73ce", size = 12020, upload-time = "2025-09-27T18:36:31.971Z" }, + { url = "https://files.pythonhosted.org/packages/1e/2c/799f4742efc39633a1b54a92eec4082e4f815314869865d876824c257c1e/markupsafe-3.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3a7e8ae81ae39e62a41ec302f972ba6ae23a5c5396c8e60113e9066ef893da0d", size = 24332, upload-time = "2025-09-27T18:36:32.813Z" }, + { url = "https://files.pythonhosted.org/packages/3c/2e/8d0c2ab90a8c1d9a24f0399058ab8519a3279d1bd4289511d74e909f060e/markupsafe-3.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d6dd0be5b5b189d31db7cda48b91d7e0a9795f31430b7f271219ab30f1d3ac9d", size = 22947, upload-time = "2025-09-27T18:36:33.86Z" }, + { url = "https://files.pythonhosted.org/packages/2c/54/887f3092a85238093a0b2154bd629c89444f395618842e8b0c41783898ea/markupsafe-3.0.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:94c6f0bb423f739146aec64595853541634bde58b2135f27f61c1ffd1cd4d16a", size = 21962, upload-time = "2025-09-27T18:36:35.099Z" }, + { url = "https://files.pythonhosted.org/packages/c9/2f/336b8c7b6f4a4d95e91119dc8521402461b74a485558d8f238a68312f11c/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:be8813b57049a7dc738189df53d69395eba14fb99345e0a5994914a3864c8a4b", size = 23760, upload-time = "2025-09-27T18:36:36.001Z" }, + { url = "https://files.pythonhosted.org/packages/32/43/67935f2b7e4982ffb50a4d169b724d74b62a3964bc1a9a527f5ac4f1ee2b/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:83891d0e9fb81a825d9a6d61e3f07550ca70a076484292a70fde82c4b807286f", size = 21529, upload-time = "2025-09-27T18:36:36.906Z" }, + { url = "https://files.pythonhosted.org/packages/89/e0/4486f11e51bbba8b0c041098859e869e304d1c261e59244baa3d295d47b7/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:77f0643abe7495da77fb436f50f8dab76dbc6e5fd25d39589a0f1fe6548bfa2b", size = 23015, upload-time = "2025-09-27T18:36:37.868Z" }, + { url = "https://files.pythonhosted.org/packages/2f/e1/78ee7a023dac597a5825441ebd17170785a9dab23de95d2c7508ade94e0e/markupsafe-3.0.3-cp312-cp312-win32.whl", hash = "sha256:d88b440e37a16e651bda4c7c2b930eb586fd15ca7406cb39e211fcff3bf3017d", size = 14540, upload-time = "2025-09-27T18:36:38.761Z" }, + { url = "https://files.pythonhosted.org/packages/aa/5b/bec5aa9bbbb2c946ca2733ef9c4ca91c91b6a24580193e891b5f7dbe8e1e/markupsafe-3.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:26a5784ded40c9e318cfc2bdb30fe164bdb8665ded9cd64d500a34fb42067b1c", size = 15105, upload-time = "2025-09-27T18:36:39.701Z" }, + { url = "https://files.pythonhosted.org/packages/e5/f1/216fc1bbfd74011693a4fd837e7026152e89c4bcf3e77b6692fba9923123/markupsafe-3.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:35add3b638a5d900e807944a078b51922212fb3dedb01633a8defc4b01a3c85f", size = 13906, upload-time = "2025-09-27T18:36:40.689Z" }, + { url = "https://files.pythonhosted.org/packages/38/2f/907b9c7bbba283e68f20259574b13d005c121a0fa4c175f9bed27c4597ff/markupsafe-3.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e1cf1972137e83c5d4c136c43ced9ac51d0e124706ee1c8aa8532c1287fa8795", size = 11622, upload-time = "2025-09-27T18:36:41.777Z" }, + { url = "https://files.pythonhosted.org/packages/9c/d9/5f7756922cdd676869eca1c4e3c0cd0df60ed30199ffd775e319089cb3ed/markupsafe-3.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:116bb52f642a37c115f517494ea5feb03889e04df47eeff5b130b1808ce7c219", size = 12029, upload-time = "2025-09-27T18:36:43.257Z" }, + { url = "https://files.pythonhosted.org/packages/00/07/575a68c754943058c78f30db02ee03a64b3c638586fba6a6dd56830b30a3/markupsafe-3.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:133a43e73a802c5562be9bbcd03d090aa5a1fe899db609c29e8c8d815c5f6de6", size = 24374, upload-time = "2025-09-27T18:36:44.508Z" }, + { url = "https://files.pythonhosted.org/packages/a9/21/9b05698b46f218fc0e118e1f8168395c65c8a2c750ae2bab54fc4bd4e0e8/markupsafe-3.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ccfcd093f13f0f0b7fdd0f198b90053bf7b2f02a3927a30e63f3ccc9df56b676", size = 22980, upload-time = "2025-09-27T18:36:45.385Z" }, + { url = "https://files.pythonhosted.org/packages/7f/71/544260864f893f18b6827315b988c146b559391e6e7e8f7252839b1b846a/markupsafe-3.0.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:509fa21c6deb7a7a273d629cf5ec029bc209d1a51178615ddf718f5918992ab9", size = 21990, upload-time = "2025-09-27T18:36:46.916Z" }, + { url = "https://files.pythonhosted.org/packages/c2/28/b50fc2f74d1ad761af2f5dcce7492648b983d00a65b8c0e0cb457c82ebbe/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a4afe79fb3de0b7097d81da19090f4df4f8d3a2b3adaa8764138aac2e44f3af1", size = 23784, upload-time = "2025-09-27T18:36:47.884Z" }, + { url = "https://files.pythonhosted.org/packages/ed/76/104b2aa106a208da8b17a2fb72e033a5a9d7073c68f7e508b94916ed47a9/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:795e7751525cae078558e679d646ae45574b47ed6e7771863fcc079a6171a0fc", size = 21588, upload-time = "2025-09-27T18:36:48.82Z" }, + { url = "https://files.pythonhosted.org/packages/b5/99/16a5eb2d140087ebd97180d95249b00a03aa87e29cc224056274f2e45fd6/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8485f406a96febb5140bfeca44a73e3ce5116b2501ac54fe953e488fb1d03b12", size = 23041, upload-time = "2025-09-27T18:36:49.797Z" }, + { url = "https://files.pythonhosted.org/packages/19/bc/e7140ed90c5d61d77cea142eed9f9c303f4c4806f60a1044c13e3f1471d0/markupsafe-3.0.3-cp313-cp313-win32.whl", hash = "sha256:bdd37121970bfd8be76c5fb069c7751683bdf373db1ed6c010162b2a130248ed", size = 14543, upload-time = "2025-09-27T18:36:51.584Z" }, + { url = "https://files.pythonhosted.org/packages/05/73/c4abe620b841b6b791f2edc248f556900667a5a1cf023a6646967ae98335/markupsafe-3.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:9a1abfdc021a164803f4d485104931fb8f8c1efd55bc6b748d2f5774e78b62c5", size = 15113, upload-time = "2025-09-27T18:36:52.537Z" }, + { url = "https://files.pythonhosted.org/packages/f0/3a/fa34a0f7cfef23cf9500d68cb7c32dd64ffd58a12b09225fb03dd37d5b80/markupsafe-3.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:7e68f88e5b8799aa49c85cd116c932a1ac15caaa3f5db09087854d218359e485", size = 13911, upload-time = "2025-09-27T18:36:53.513Z" }, + { url = "https://files.pythonhosted.org/packages/e4/d7/e05cd7efe43a88a17a37b3ae96e79a19e846f3f456fe79c57ca61356ef01/markupsafe-3.0.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:218551f6df4868a8d527e3062d0fb968682fe92054e89978594c28e642c43a73", size = 11658, upload-time = "2025-09-27T18:36:54.819Z" }, + { url = "https://files.pythonhosted.org/packages/99/9e/e412117548182ce2148bdeacdda3bb494260c0b0184360fe0d56389b523b/markupsafe-3.0.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3524b778fe5cfb3452a09d31e7b5adefeea8c5be1d43c4f810ba09f2ceb29d37", size = 12066, upload-time = "2025-09-27T18:36:55.714Z" }, + { url = "https://files.pythonhosted.org/packages/bc/e6/fa0ffcda717ef64a5108eaa7b4f5ed28d56122c9a6d70ab8b72f9f715c80/markupsafe-3.0.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4e885a3d1efa2eadc93c894a21770e4bc67899e3543680313b09f139e149ab19", size = 25639, upload-time = "2025-09-27T18:36:56.908Z" }, + { url = "https://files.pythonhosted.org/packages/96/ec/2102e881fe9d25fc16cb4b25d5f5cde50970967ffa5dddafdb771237062d/markupsafe-3.0.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8709b08f4a89aa7586de0aadc8da56180242ee0ada3999749b183aa23df95025", size = 23569, upload-time = "2025-09-27T18:36:57.913Z" }, + { url = "https://files.pythonhosted.org/packages/4b/30/6f2fce1f1f205fc9323255b216ca8a235b15860c34b6798f810f05828e32/markupsafe-3.0.3-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:b8512a91625c9b3da6f127803b166b629725e68af71f8184ae7e7d54686a56d6", size = 23284, upload-time = "2025-09-27T18:36:58.833Z" }, + { url = "https://files.pythonhosted.org/packages/58/47/4a0ccea4ab9f5dcb6f79c0236d954acb382202721e704223a8aafa38b5c8/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9b79b7a16f7fedff2495d684f2b59b0457c3b493778c9eed31111be64d58279f", size = 24801, upload-time = "2025-09-27T18:36:59.739Z" }, + { url = "https://files.pythonhosted.org/packages/6a/70/3780e9b72180b6fecb83a4814d84c3bf4b4ae4bf0b19c27196104149734c/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:12c63dfb4a98206f045aa9563db46507995f7ef6d83b2f68eda65c307c6829eb", size = 22769, upload-time = "2025-09-27T18:37:00.719Z" }, + { url = "https://files.pythonhosted.org/packages/98/c5/c03c7f4125180fc215220c035beac6b9cb684bc7a067c84fc69414d315f5/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8f71bc33915be5186016f675cd83a1e08523649b0e33efdb898db577ef5bb009", size = 23642, upload-time = "2025-09-27T18:37:01.673Z" }, + { url = "https://files.pythonhosted.org/packages/80/d6/2d1b89f6ca4bff1036499b1e29a1d02d282259f3681540e16563f27ebc23/markupsafe-3.0.3-cp313-cp313t-win32.whl", hash = "sha256:69c0b73548bc525c8cb9a251cddf1931d1db4d2258e9599c28c07ef3580ef354", size = 14612, upload-time = "2025-09-27T18:37:02.639Z" }, + { url = "https://files.pythonhosted.org/packages/2b/98/e48a4bfba0a0ffcf9925fe2d69240bfaa19c6f7507b8cd09c70684a53c1e/markupsafe-3.0.3-cp313-cp313t-win_amd64.whl", hash = "sha256:1b4b79e8ebf6b55351f0d91fe80f893b4743f104bff22e90697db1590e47a218", size = 15200, upload-time = "2025-09-27T18:37:03.582Z" }, + { url = "https://files.pythonhosted.org/packages/0e/72/e3cc540f351f316e9ed0f092757459afbc595824ca724cbc5a5d4263713f/markupsafe-3.0.3-cp313-cp313t-win_arm64.whl", hash = "sha256:ad2cf8aa28b8c020ab2fc8287b0f823d0a7d8630784c31e9ee5edea20f406287", size = 13973, upload-time = "2025-09-27T18:37:04.929Z" }, + { url = "https://files.pythonhosted.org/packages/33/8a/8e42d4838cd89b7dde187011e97fe6c3af66d8c044997d2183fbd6d31352/markupsafe-3.0.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:eaa9599de571d72e2daf60164784109f19978b327a3910d3e9de8c97b5b70cfe", size = 11619, upload-time = "2025-09-27T18:37:06.342Z" }, + { url = "https://files.pythonhosted.org/packages/b5/64/7660f8a4a8e53c924d0fa05dc3a55c9cee10bbd82b11c5afb27d44b096ce/markupsafe-3.0.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c47a551199eb8eb2121d4f0f15ae0f923d31350ab9280078d1e5f12b249e0026", size = 12029, upload-time = "2025-09-27T18:37:07.213Z" }, + { url = "https://files.pythonhosted.org/packages/da/ef/e648bfd021127bef5fa12e1720ffed0c6cbb8310c8d9bea7266337ff06de/markupsafe-3.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f34c41761022dd093b4b6896d4810782ffbabe30f2d443ff5f083e0cbbb8c737", size = 24408, upload-time = "2025-09-27T18:37:09.572Z" }, + { url = "https://files.pythonhosted.org/packages/41/3c/a36c2450754618e62008bf7435ccb0f88053e07592e6028a34776213d877/markupsafe-3.0.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:457a69a9577064c05a97c41f4e65148652db078a3a509039e64d3467b9e7ef97", size = 23005, upload-time = "2025-09-27T18:37:10.58Z" }, + { url = "https://files.pythonhosted.org/packages/bc/20/b7fdf89a8456b099837cd1dc21974632a02a999ec9bf7ca3e490aacd98e7/markupsafe-3.0.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e8afc3f2ccfa24215f8cb28dcf43f0113ac3c37c2f0f0806d8c70e4228c5cf4d", size = 22048, upload-time = "2025-09-27T18:37:11.547Z" }, + { url = "https://files.pythonhosted.org/packages/9a/a7/591f592afdc734f47db08a75793a55d7fbcc6902a723ae4cfbab61010cc5/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ec15a59cf5af7be74194f7ab02d0f59a62bdcf1a537677ce67a2537c9b87fcda", size = 23821, upload-time = "2025-09-27T18:37:12.48Z" }, + { url = "https://files.pythonhosted.org/packages/7d/33/45b24e4f44195b26521bc6f1a82197118f74df348556594bd2262bda1038/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:0eb9ff8191e8498cca014656ae6b8d61f39da5f95b488805da4bb029cccbfbaf", size = 21606, upload-time = "2025-09-27T18:37:13.485Z" }, + { url = "https://files.pythonhosted.org/packages/ff/0e/53dfaca23a69fbfbbf17a4b64072090e70717344c52eaaaa9c5ddff1e5f0/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:2713baf880df847f2bece4230d4d094280f4e67b1e813eec43b4c0e144a34ffe", size = 23043, upload-time = "2025-09-27T18:37:14.408Z" }, + { url = "https://files.pythonhosted.org/packages/46/11/f333a06fc16236d5238bfe74daccbca41459dcd8d1fa952e8fbd5dccfb70/markupsafe-3.0.3-cp314-cp314-win32.whl", hash = "sha256:729586769a26dbceff69f7a7dbbf59ab6572b99d94576a5592625d5b411576b9", size = 14747, upload-time = "2025-09-27T18:37:15.36Z" }, + { url = "https://files.pythonhosted.org/packages/28/52/182836104b33b444e400b14f797212f720cbc9ed6ba34c800639d154e821/markupsafe-3.0.3-cp314-cp314-win_amd64.whl", hash = "sha256:bdc919ead48f234740ad807933cdf545180bfbe9342c2bb451556db2ed958581", size = 15341, upload-time = "2025-09-27T18:37:16.496Z" }, + { url = "https://files.pythonhosted.org/packages/6f/18/acf23e91bd94fd7b3031558b1f013adfa21a8e407a3fdb32745538730382/markupsafe-3.0.3-cp314-cp314-win_arm64.whl", hash = "sha256:5a7d5dc5140555cf21a6fefbdbf8723f06fcd2f63ef108f2854de715e4422cb4", size = 14073, upload-time = "2025-09-27T18:37:17.476Z" }, + { url = "https://files.pythonhosted.org/packages/3c/f0/57689aa4076e1b43b15fdfa646b04653969d50cf30c32a102762be2485da/markupsafe-3.0.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:1353ef0c1b138e1907ae78e2f6c63ff67501122006b0f9abad68fda5f4ffc6ab", size = 11661, upload-time = "2025-09-27T18:37:18.453Z" }, + { url = "https://files.pythonhosted.org/packages/89/c3/2e67a7ca217c6912985ec766c6393b636fb0c2344443ff9d91404dc4c79f/markupsafe-3.0.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:1085e7fbddd3be5f89cc898938f42c0b3c711fdcb37d75221de2666af647c175", size = 12069, upload-time = "2025-09-27T18:37:19.332Z" }, + { url = "https://files.pythonhosted.org/packages/f0/00/be561dce4e6ca66b15276e184ce4b8aec61fe83662cce2f7d72bd3249d28/markupsafe-3.0.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1b52b4fb9df4eb9ae465f8d0c228a00624de2334f216f178a995ccdcf82c4634", size = 25670, upload-time = "2025-09-27T18:37:20.245Z" }, + { url = "https://files.pythonhosted.org/packages/50/09/c419f6f5a92e5fadde27efd190eca90f05e1261b10dbd8cbcb39cd8ea1dc/markupsafe-3.0.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fed51ac40f757d41b7c48425901843666a6677e3e8eb0abcff09e4ba6e664f50", size = 23598, upload-time = "2025-09-27T18:37:21.177Z" }, + { url = "https://files.pythonhosted.org/packages/22/44/a0681611106e0b2921b3033fc19bc53323e0b50bc70cffdd19f7d679bb66/markupsafe-3.0.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:f190daf01f13c72eac4efd5c430a8de82489d9cff23c364c3ea822545032993e", size = 23261, upload-time = "2025-09-27T18:37:22.167Z" }, + { url = "https://files.pythonhosted.org/packages/5f/57/1b0b3f100259dc9fffe780cfb60d4be71375510e435efec3d116b6436d43/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:e56b7d45a839a697b5eb268c82a71bd8c7f6c94d6fd50c3d577fa39a9f1409f5", size = 24835, upload-time = "2025-09-27T18:37:23.296Z" }, + { url = "https://files.pythonhosted.org/packages/26/6a/4bf6d0c97c4920f1597cc14dd720705eca0bf7c787aebc6bb4d1bead5388/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:f3e98bb3798ead92273dc0e5fd0f31ade220f59a266ffd8a4f6065e0a3ce0523", size = 22733, upload-time = "2025-09-27T18:37:24.237Z" }, + { url = "https://files.pythonhosted.org/packages/14/c7/ca723101509b518797fedc2fdf79ba57f886b4aca8a7d31857ba3ee8281f/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:5678211cb9333a6468fb8d8be0305520aa073f50d17f089b5b4b477ea6e67fdc", size = 23672, upload-time = "2025-09-27T18:37:25.271Z" }, + { url = "https://files.pythonhosted.org/packages/fb/df/5bd7a48c256faecd1d36edc13133e51397e41b73bb77e1a69deab746ebac/markupsafe-3.0.3-cp314-cp314t-win32.whl", hash = "sha256:915c04ba3851909ce68ccc2b8e2cd691618c4dc4c4232fb7982bca3f41fd8c3d", size = 14819, upload-time = "2025-09-27T18:37:26.285Z" }, + { url = "https://files.pythonhosted.org/packages/1a/8a/0402ba61a2f16038b48b39bccca271134be00c5c9f0f623208399333c448/markupsafe-3.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:4faffd047e07c38848ce017e8725090413cd80cbc23d86e55c587bf979e579c9", size = 15426, upload-time = "2025-09-27T18:37:27.316Z" }, + { url = "https://files.pythonhosted.org/packages/70/bc/6f1c2f612465f5fa89b95bead1f44dcb607670fd42891d8fdcd5d039f4f4/markupsafe-3.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:32001d6a8fc98c8cb5c947787c5d08b0a50663d139f1305bac5885d98d9b40fa", size = 14146, upload-time = "2025-09-27T18:37:28.327Z" }, +] + [[package]] name = "marshmallow" version = "3.26.2" @@ -888,6 +2477,136 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/be/2f/5108cb3ee4ba6501748c4908b908e55f42a5b66245b4cfe0c99326e1ef6e/marshmallow-3.26.2-py3-none-any.whl", hash = "sha256:013fa8a3c4c276c24d26d84ce934dc964e2aa794345a0f8c7e5a7191482c8a73", size = 50964, upload-time = "2025-12-22T06:53:51.801Z" }, ] +[[package]] +name = "matplotlib-inline" +version = "0.2.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c7/74/97e72a36efd4ae2bccb3463284300f8953f199b5ffbc04cbbb0ec78f74b1/matplotlib_inline-0.2.1.tar.gz", hash = "sha256:e1ee949c340d771fc39e241ea75683deb94762c8fa5f2927ec57c83c4dffa9fe", size = 8110, upload-time = "2025-10-23T09:00:22.126Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/af/33/ee4519fa02ed11a94aef9559552f3b17bb863f2ecfe1a35dc7f548cde231/matplotlib_inline-0.2.1-py3-none-any.whl", hash = "sha256:d56ce5156ba6085e00a9d54fead6ed29a9c47e215cd1bba2e976ef39f5710a76", size = 9516, upload-time = "2025-10-23T09:00:20.675Z" }, +] + +[[package]] +name = "mdurl" +version = "0.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729, upload-time = "2022-08-14T12:40:10.846Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979, upload-time = "2022-08-14T12:40:09.779Z" }, +] + +[[package]] +name = "mistune" +version = "3.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9d/55/d01f0c4b45ade6536c51170b9043db8b2ec6ddf4a35c7ea3f5f559ac935b/mistune-3.2.0.tar.gz", hash = "sha256:708487c8a8cdd99c9d90eb3ed4c3ed961246ff78ac82f03418f5183ab70e398a", size = 95467, upload-time = "2025-12-23T11:36:34.994Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9b/f7/4a5e785ec9fbd65146a27b6b70b6cdc161a66f2024e4b04ac06a67f5578b/mistune-3.2.0-py3-none-any.whl", hash = "sha256:febdc629a3c78616b94393c6580551e0e34cc289987ec6c35ed3f4be42d0eee1", size = 53598, upload-time = "2025-12-23T11:36:33.211Z" }, +] + +[[package]] +name = "model2vec" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jinja2" }, + { name = "joblib" }, + { name = "numpy" }, + { name = "rich" }, + { name = "safetensors" }, + { name = "setuptools" }, + { name = "tokenizers" }, + { name = "tqdm" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2a/73/03badf0a639cdad59db887928f17a187f4240f021f2d3656ef39795058b7/model2vec-0.7.0.tar.gz", hash = "sha256:bf5d0420615e356dd8046794a057bb4f13c50253c44f0d0d1f4441bb489a6ed3", size = 2785837, upload-time = "2025-10-05T06:28:02.482Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bd/3d/473b1d960a2e27b4115c7599b5d47adf3a487c44798468375d408b5fb825/model2vec-0.7.0-py3-none-any.whl", hash = "sha256:f7a6ebf1b9ca384ba1158c4ecc9a2d450407f63526c0a26e268711071e280c27", size = 53038, upload-time = "2025-10-05T06:28:00.533Z" }, +] + +[[package]] +name = "mpmath" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e0/47/dd32fa426cc72114383ac549964eecb20ecfd886d1e5ccf5340b55b02f57/mpmath-1.3.0.tar.gz", hash = "sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f", size = 508106, upload-time = "2023-03-07T16:47:11.061Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/43/e3/7d92a15f894aa0c9c4b49b8ee9ac9850d6e63b03c9c32c0367a13ae62209/mpmath-1.3.0-py3-none-any.whl", hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c", size = 536198, upload-time = "2023-03-07T16:47:09.197Z" }, +] + +[[package]] +name = "msgspec" +version = "0.20.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ea/9c/bfbd12955a49180cbd234c5d29ec6f74fe641698f0cd9df154a854fc8a15/msgspec-0.20.0.tar.gz", hash = "sha256:692349e588fde322875f8d3025ac01689fead5901e7fb18d6870a44519d62a29", size = 317862, upload-time = "2025-11-24T03:56:28.934Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/03/59/fdcb3af72f750a8de2bcf39d62ada70b5eb17b06d7f63860e0a679cb656b/msgspec-0.20.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:09e0efbf1ac641fedb1d5496c59507c2f0dc62a052189ee62c763e0aae217520", size = 193345, upload-time = "2025-11-24T03:55:20.613Z" }, + { url = "https://files.pythonhosted.org/packages/5a/15/3c225610da9f02505d37d69a77f4a2e7daae2a125f99d638df211ba84e59/msgspec-0.20.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:23ee3787142e48f5ee746b2909ce1b76e2949fbe0f97f9f6e70879f06c218b54", size = 186867, upload-time = "2025-11-24T03:55:22.4Z" }, + { url = "https://files.pythonhosted.org/packages/81/36/13ab0c547e283bf172f45491edfdea0e2cecb26ae61e3a7b1ae6058b326d/msgspec-0.20.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:81f4ac6f0363407ac0465eff5c7d4d18f26870e00674f8fcb336d898a1e36854", size = 215351, upload-time = "2025-11-24T03:55:23.958Z" }, + { url = "https://files.pythonhosted.org/packages/6b/96/5c095b940de3aa6b43a71ec76275ac3537b21bd45c7499b5a17a429110fa/msgspec-0.20.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bb4d873f24ae18cd1334f4e37a178ed46c9d186437733351267e0a269bdf7e53", size = 219896, upload-time = "2025-11-24T03:55:25.356Z" }, + { url = "https://files.pythonhosted.org/packages/98/7a/81a7b5f01af300761087b114dafa20fb97aed7184d33aab64d48874eb187/msgspec-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b92b8334427b8393b520c24ff53b70f326f79acf5f74adb94fd361bcff8a1d4e", size = 220389, upload-time = "2025-11-24T03:55:26.99Z" }, + { url = "https://files.pythonhosted.org/packages/70/c0/3d0cce27db9a9912421273d49eab79ce01ecd2fed1a2f1b74af9b445f33c/msgspec-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:562c44b047c05cc0384e006fae7a5e715740215c799429e0d7e3e5adf324285a", size = 223348, upload-time = "2025-11-24T03:55:28.311Z" }, + { url = "https://files.pythonhosted.org/packages/89/5e/406b7d578926b68790e390d83a1165a9bfc2d95612a1a9c1c4d5c72ea815/msgspec-0.20.0-cp311-cp311-win_amd64.whl", hash = "sha256:d1dcc93a3ce3d3195985bfff18a48274d0b5ffbc96fa1c5b89da6f0d9af81b29", size = 188713, upload-time = "2025-11-24T03:55:29.553Z" }, + { url = "https://files.pythonhosted.org/packages/47/87/14fe2316624ceedf76a9e94d714d194cbcb699720b210ff189f89ca4efd7/msgspec-0.20.0-cp311-cp311-win_arm64.whl", hash = "sha256:aa387aa330d2e4bd69995f66ea8fdc87099ddeedf6fdb232993c6a67711e7520", size = 174229, upload-time = "2025-11-24T03:55:31.107Z" }, + { url = "https://files.pythonhosted.org/packages/d9/6f/1e25eee957e58e3afb2a44b94fa95e06cebc4c236193ed0de3012fff1e19/msgspec-0.20.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:2aba22e2e302e9231e85edc24f27ba1f524d43c223ef5765bd8624c7df9ec0a5", size = 196391, upload-time = "2025-11-24T03:55:32.677Z" }, + { url = "https://files.pythonhosted.org/packages/7f/ee/af51d090ada641d4b264992a486435ba3ef5b5634bc27e6eb002f71cef7d/msgspec-0.20.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:716284f898ab2547fedd72a93bb940375de9fbfe77538f05779632dc34afdfde", size = 188644, upload-time = "2025-11-24T03:55:33.934Z" }, + { url = "https://files.pythonhosted.org/packages/49/d6/9709ee093b7742362c2934bfb1bbe791a1e09bed3ea5d8a18ce552fbfd73/msgspec-0.20.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:558ed73315efa51b1538fa8f1d3b22c8c5ff6d9a2a62eff87d25829b94fc5054", size = 218852, upload-time = "2025-11-24T03:55:35.575Z" }, + { url = "https://files.pythonhosted.org/packages/5c/a2/488517a43ccf5a4b6b6eca6dd4ede0bd82b043d1539dd6bb908a19f8efd3/msgspec-0.20.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:509ac1362a1d53aa66798c9b9fd76872d7faa30fcf89b2fba3bcbfd559d56eb0", size = 224937, upload-time = "2025-11-24T03:55:36.859Z" }, + { url = "https://files.pythonhosted.org/packages/d5/e8/49b832808aa23b85d4f090d1d2e48a4e3834871415031ed7c5fe48723156/msgspec-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1353c2c93423602e7dea1aa4c92f3391fdfc25ff40e0bacf81d34dbc68adb870", size = 222858, upload-time = "2025-11-24T03:55:38.187Z" }, + { url = "https://files.pythonhosted.org/packages/9f/56/1dc2fa53685dca9c3f243a6cbecd34e856858354e455b77f47ebd76cf5bf/msgspec-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:cb33b5eb5adb3c33d749684471c6a165468395d7aa02d8867c15103b81e1da3e", size = 227248, upload-time = "2025-11-24T03:55:39.496Z" }, + { url = "https://files.pythonhosted.org/packages/5a/51/aba940212c23b32eedce752896205912c2668472ed5b205fc33da28a6509/msgspec-0.20.0-cp312-cp312-win_amd64.whl", hash = "sha256:fb1d934e435dd3a2b8cf4bbf47a8757100b4a1cfdc2afdf227541199885cdacb", size = 190024, upload-time = "2025-11-24T03:55:40.829Z" }, + { url = "https://files.pythonhosted.org/packages/41/ad/3b9f259d94f183daa9764fef33fdc7010f7ecffc29af977044fa47440a83/msgspec-0.20.0-cp312-cp312-win_arm64.whl", hash = "sha256:00648b1e19cf01b2be45444ba9dc961bd4c056ffb15706651e64e5d6ec6197b7", size = 175390, upload-time = "2025-11-24T03:55:42.05Z" }, + { url = "https://files.pythonhosted.org/packages/8a/d1/b902d38b6e5ba3bdddbec469bba388d647f960aeed7b5b3623a8debe8a76/msgspec-0.20.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:9c1ff8db03be7598b50dd4b4a478d6fe93faae3bd54f4f17aa004d0e46c14c46", size = 196463, upload-time = "2025-11-24T03:55:43.405Z" }, + { url = "https://files.pythonhosted.org/packages/57/b6/eff0305961a1d9447ec2b02f8c73c8946f22564d302a504185b730c9a761/msgspec-0.20.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f6532369ece217fd37c5ebcfd7e981f2615628c21121b7b2df9d3adcf2fd69b8", size = 188650, upload-time = "2025-11-24T03:55:44.761Z" }, + { url = "https://files.pythonhosted.org/packages/99/93/f2ec1ae1de51d3fdee998a1ede6b2c089453a2ee82b5c1b361ed9095064a/msgspec-0.20.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f9a1697da2f85a751ac3cc6a97fceb8e937fc670947183fb2268edaf4016d1ee", size = 218834, upload-time = "2025-11-24T03:55:46.441Z" }, + { url = "https://files.pythonhosted.org/packages/28/83/36557b04cfdc317ed8a525c4993b23e43a8fbcddaddd78619112ca07138c/msgspec-0.20.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7fac7e9c92eddcd24c19d9e5f6249760941485dff97802461ae7c995a2450111", size = 224917, upload-time = "2025-11-24T03:55:48.06Z" }, + { url = "https://files.pythonhosted.org/packages/8f/56/362037a1ed5be0b88aced59272442c4b40065c659700f4b195a7f4d0ac88/msgspec-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f953a66f2a3eb8d5ea64768445e2bb301d97609db052628c3e1bcb7d87192a9f", size = 222821, upload-time = "2025-11-24T03:55:49.388Z" }, + { url = "https://files.pythonhosted.org/packages/92/75/fa2370ec341cedf663731ab7042e177b3742645c5dd4f64dc96bd9f18a6b/msgspec-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:247af0313ae64a066d3aea7ba98840f6681ccbf5c90ba9c7d17f3e39dbba679c", size = 227227, upload-time = "2025-11-24T03:55:51.125Z" }, + { url = "https://files.pythonhosted.org/packages/f1/25/5e8080fe0117f799b1b68008dc29a65862077296b92550632de015128579/msgspec-0.20.0-cp313-cp313-win_amd64.whl", hash = "sha256:67d5e4dfad52832017018d30a462604c80561aa62a9d548fc2bd4e430b66a352", size = 189966, upload-time = "2025-11-24T03:55:52.458Z" }, + { url = "https://files.pythonhosted.org/packages/79/b6/63363422153937d40e1cb349c5081338401f8529a5a4e216865decd981bf/msgspec-0.20.0-cp313-cp313-win_arm64.whl", hash = "sha256:91a52578226708b63a9a13de287b1ec3ed1123e4a088b198143860c087770458", size = 175378, upload-time = "2025-11-24T03:55:53.721Z" }, + { url = "https://files.pythonhosted.org/packages/bb/18/62dc13ab0260c7d741dda8dc7f481495b93ac9168cd887dda5929880eef8/msgspec-0.20.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:eead16538db1b3f7ec6e3ed1f6f7c5dec67e90f76e76b610e1ffb5671815633a", size = 196407, upload-time = "2025-11-24T03:55:55.001Z" }, + { url = "https://files.pythonhosted.org/packages/dd/1d/b9949e4ad6953e9f9a142c7997b2f7390c81e03e93570c7c33caf65d27e1/msgspec-0.20.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:703c3bb47bf47801627fb1438f106adbfa2998fe586696d1324586a375fca238", size = 188889, upload-time = "2025-11-24T03:55:56.311Z" }, + { url = "https://files.pythonhosted.org/packages/1e/19/f8bb2dc0f1bfe46cc7d2b6b61c5e9b5a46c62298e8f4d03bbe499c926180/msgspec-0.20.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6cdb227dc585fb109305cee0fd304c2896f02af93ecf50a9c84ee54ee67dbb42", size = 219691, upload-time = "2025-11-24T03:55:57.908Z" }, + { url = "https://files.pythonhosted.org/packages/b8/8e/6b17e43f6eb9369d9858ee32c97959fcd515628a1df376af96c11606cf70/msgspec-0.20.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:27d35044dd8818ac1bd0fedb2feb4fbdff4e3508dd7c5d14316a12a2d96a0de0", size = 224918, upload-time = "2025-11-24T03:55:59.322Z" }, + { url = "https://files.pythonhosted.org/packages/1c/db/0e833a177db1a4484797adba7f429d4242585980b90882cc38709e1b62df/msgspec-0.20.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:b4296393a29ee42dd25947981c65506fd4ad39beaf816f614146fa0c5a6c91ae", size = 223436, upload-time = "2025-11-24T03:56:00.716Z" }, + { url = "https://files.pythonhosted.org/packages/c3/30/d2ee787f4c918fd2b123441d49a7707ae9015e0e8e1ab51aa7967a97b90e/msgspec-0.20.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:205fbdadd0d8d861d71c8f3399fe1a82a2caf4467bc8ff9a626df34c12176980", size = 227190, upload-time = "2025-11-24T03:56:02.371Z" }, + { url = "https://files.pythonhosted.org/packages/ff/37/9c4b58ff11d890d788e700b827db2366f4d11b3313bf136780da7017278b/msgspec-0.20.0-cp314-cp314-win_amd64.whl", hash = "sha256:7dfebc94fe7d3feec6bc6c9df4f7e9eccc1160bb5b811fbf3e3a56899e398a6b", size = 193950, upload-time = "2025-11-24T03:56:03.668Z" }, + { url = "https://files.pythonhosted.org/packages/e9/4e/cab707bf2fa57408e2934e5197fc3560079db34a1e3cd2675ff2e47e07de/msgspec-0.20.0-cp314-cp314-win_arm64.whl", hash = "sha256:2ad6ae36e4a602b24b4bf4eaf8ab5a441fec03e1f1b5931beca8ebda68f53fc0", size = 179018, upload-time = "2025-11-24T03:56:05.038Z" }, + { url = "https://files.pythonhosted.org/packages/4c/06/3da3fc9aaa55618a8f43eb9052453cfe01f82930bca3af8cea63a89f3a11/msgspec-0.20.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:f84703e0e6ef025663dd1de828ca028774797b8155e070e795c548f76dde65d5", size = 200389, upload-time = "2025-11-24T03:56:06.375Z" }, + { url = "https://files.pythonhosted.org/packages/83/3b/cc4270a5ceab40dfe1d1745856951b0a24fd16ac8539a66ed3004a60c91e/msgspec-0.20.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:7c83fc24dd09cf1275934ff300e3951b3adc5573f0657a643515cc16c7dee131", size = 193198, upload-time = "2025-11-24T03:56:07.742Z" }, + { url = "https://files.pythonhosted.org/packages/cd/ae/4c7905ac53830c8e3c06fdd60e3cdcfedc0bbc993872d1549b84ea21a1bd/msgspec-0.20.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5f13ccb1c335a124e80c4562573b9b90f01ea9521a1a87f7576c2e281d547f56", size = 225973, upload-time = "2025-11-24T03:56:09.18Z" }, + { url = "https://files.pythonhosted.org/packages/d9/da/032abac1de4d0678d99eaeadb1323bd9d247f4711c012404ba77ed6f15ca/msgspec-0.20.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:17c2b5ca19f19306fc83c96d85e606d2cc107e0caeea85066b5389f664e04846", size = 229509, upload-time = "2025-11-24T03:56:10.898Z" }, + { url = "https://files.pythonhosted.org/packages/69/52/fdc7bdb7057a166f309e0b44929e584319e625aaba4771b60912a9321ccd/msgspec-0.20.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:d931709355edabf66c2dd1a756b2d658593e79882bc81aae5964969d5a291b63", size = 230434, upload-time = "2025-11-24T03:56:12.48Z" }, + { url = "https://files.pythonhosted.org/packages/cb/fe/1dfd5f512b26b53043884e4f34710c73e294e7cc54278c3fe28380e42c37/msgspec-0.20.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:565f915d2e540e8a0c93a01ff67f50aebe1f7e22798c6a25873f9fda8d1325f8", size = 231758, upload-time = "2025-11-24T03:56:13.765Z" }, + { url = "https://files.pythonhosted.org/packages/97/f6/9ba7121b8e0c4e0beee49575d1dbc804e2e72467692f0428cf39ceba1ea5/msgspec-0.20.0-cp314-cp314t-win_amd64.whl", hash = "sha256:726f3e6c3c323f283f6021ebb6c8ccf58d7cd7baa67b93d73bfbe9a15c34ab8d", size = 206540, upload-time = "2025-11-24T03:56:15.029Z" }, + { url = "https://files.pythonhosted.org/packages/c8/3e/c5187de84bb2c2ca334ab163fcacf19a23ebb1d876c837f81a1b324a15bf/msgspec-0.20.0-cp314-cp314t-win_arm64.whl", hash = "sha256:93f23528edc51d9f686808a361728e903d6f2be55c901d6f5c92e44c6d546bfc", size = 183011, upload-time = "2025-11-24T03:56:16.442Z" }, +] + +[[package]] +name = "mteb" +version = "2.8.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "datasets" }, + { name = "numpy" }, + { name = "polars" }, + { name = "pydantic" }, + { name = "pytrec-eval-terrier" }, + { name = "requests" }, + { name = "rich" }, + { name = "scikit-learn" }, + { name = "scipy" }, + { name = "sentence-transformers" }, + { name = "torch" }, + { name = "tqdm" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/4f/05/80bc9b33130f11c16b3ddfafd7ad847a7f5d7cfb0631c97c0933d311dc90/mteb-2.8.8.tar.gz", hash = "sha256:767198481dcb2984fb62077c8ad31941e907e0c7f2acd88bfd80ef254ee55a41", size = 3324775, upload-time = "2026-02-23T19:33:25.809Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d8/36/377263e288395c65b6f1e35d2b46faf6e0de45287abb6050386abfd2837b/mteb-2.8.8-py3-none-any.whl", hash = "sha256:e8364baa65ba0ee42bcc80bff3d69a34271a96f0af09f31048b28be2d08e6c02", size = 5119890, upload-time = "2026-02-23T19:33:22.436Z" }, +] + [[package]] name = "multidict" version = "6.7.1" @@ -1005,6 +2724,35 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/81/08/7036c080d7117f28a4af526d794aab6a84463126db031b007717c1a6676e/multidict-6.7.1-py3-none-any.whl", hash = "sha256:55d97cc6dae627efa6a6e548885712d4864b81110ac76fa4e534c03819fa4a56", size = 12319, upload-time = "2026-01-26T02:46:44.004Z" }, ] +[[package]] +name = "multipart" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8e/d6/9c4f366d6f9bb8f8fb5eae3acac471335c39510c42b537fd515213d7d8c3/multipart-1.3.1.tar.gz", hash = "sha256:211d7cfc1a7a43e75c4d24ee0e8e0f4f61d522f1a21575303ae85333dea687bf", size = 38929, upload-time = "2026-02-27T10:17:13.7Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/19/ed/e1f03200ee1f0bf4a2b9b72709afefbf5319b68df654e0b84b35c65613ee/multipart-1.3.1-py3-none-any.whl", hash = "sha256:a82b59e1befe74d3d30b3d3f70efd5a2eba4d938f845dcff9faace968888ff29", size = 15061, upload-time = "2026-02-27T10:17:11.943Z" }, +] + +[[package]] +name = "multiprocess" +version = "0.70.18" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "dill" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/72/fd/2ae3826f5be24c6ed87266bc4e59c46ea5b059a103f3d7e7eb76a52aeecb/multiprocess-0.70.18.tar.gz", hash = "sha256:f9597128e6b3e67b23956da07cf3d2e5cba79e2f4e0fba8d7903636663ec6d0d", size = 1798503, upload-time = "2025-04-17T03:11:27.742Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/55/4d/9af0d1279c84618bcd35bf5fd7e371657358c7b0a523e54a9cffb87461f8/multiprocess-0.70.18-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:8b8940ae30139e04b076da6c5b83e9398585ebdf0f2ad3250673fef5b2ff06d6", size = 144695, upload-time = "2025-04-17T03:11:09.161Z" }, + { url = "https://files.pythonhosted.org/packages/17/bf/87323e79dd0562474fad3373c21c66bc6c3c9963b68eb2a209deb4c8575e/multiprocess-0.70.18-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:0929ba95831adb938edbd5fb801ac45e705ecad9d100b3e653946b7716cb6bd3", size = 144742, upload-time = "2025-04-17T03:11:10.072Z" }, + { url = "https://files.pythonhosted.org/packages/dd/74/cb8c831e58dc6d5cf450b17c7db87f14294a1df52eb391da948b5e0a0b94/multiprocess-0.70.18-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:4d77f8e4bfe6c6e2e661925bbf9aed4d5ade9a1c6502d5dfc10129b9d1141797", size = 144745, upload-time = "2025-04-17T03:11:11.453Z" }, + { url = "https://files.pythonhosted.org/packages/ba/d8/0cba6cf51a1a31f20471fbc823a716170c73012ddc4fb85d706630ed6e8f/multiprocess-0.70.18-py310-none-any.whl", hash = "sha256:60c194974c31784019c1f459d984e8f33ee48f10fcf42c309ba97b30d9bd53ea", size = 134948, upload-time = "2025-04-17T03:11:20.223Z" }, + { url = "https://files.pythonhosted.org/packages/4b/88/9039f2fed1012ef584751d4ceff9ab4a51e5ae264898f0b7cbf44340a859/multiprocess-0.70.18-py311-none-any.whl", hash = "sha256:5aa6eef98e691281b3ad923be2832bf1c55dd2c859acd73e5ec53a66aae06a1d", size = 144462, upload-time = "2025-04-17T03:11:21.657Z" }, + { url = "https://files.pythonhosted.org/packages/bf/b6/5f922792be93b82ec6b5f270bbb1ef031fd0622847070bbcf9da816502cc/multiprocess-0.70.18-py312-none-any.whl", hash = "sha256:9b78f8e5024b573730bfb654783a13800c2c0f2dfc0c25e70b40d184d64adaa2", size = 150287, upload-time = "2025-04-17T03:11:22.69Z" }, + { url = "https://files.pythonhosted.org/packages/ee/25/7d7e78e750bc1aecfaf0efbf826c69a791d2eeaf29cf20cba93ff4cced78/multiprocess-0.70.18-py313-none-any.whl", hash = "sha256:871743755f43ef57d7910a38433cfe41319e72be1bbd90b79c7a5ac523eb9334", size = 151917, upload-time = "2025-04-17T03:11:24.044Z" }, + { url = "https://files.pythonhosted.org/packages/3b/c3/ca84c19bd14cdfc21c388fdcebf08b86a7a470ebc9f5c3c084fc2dbc50f7/multiprocess-0.70.18-py38-none-any.whl", hash = "sha256:dbf705e52a154fe5e90fb17b38f02556169557c2dd8bb084f2e06c2784d8279b", size = 132636, upload-time = "2025-04-17T03:11:24.936Z" }, + { url = "https://files.pythonhosted.org/packages/6c/28/dd72947e59a6a8c856448a5e74da6201cb5502ddff644fbc790e4bd40b9a/multiprocess-0.70.18-py39-none-any.whl", hash = "sha256:e78ca805a72b1b810c690b6b4cc32579eba34f403094bbbae962b7b5bf9dfcb8", size = 133478, upload-time = "2025-04-17T03:11:26.253Z" }, +] + [[package]] name = "mypy-extensions" version = "1.1.0" @@ -1014,6 +2762,122 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/79/7b/2c79738432f5c924bef5071f933bcc9efd0473bac3b4aa584a6f7c1c8df8/mypy_extensions-1.1.0-py3-none-any.whl", hash = "sha256:1be4cccdb0f2482337c4743e60421de3a356cd97508abadd57d47403e94f5505", size = 4963, upload-time = "2025-04-22T14:54:22.983Z" }, ] +[[package]] +name = "nbclient" +version = "0.10.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-client" }, + { name = "jupyter-core" }, + { name = "nbformat" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/56/91/1c1d5a4b9a9ebba2b4e32b8c852c2975c872aec1fe42ab5e516b2cecd193/nbclient-0.10.4.tar.gz", hash = "sha256:1e54091b16e6da39e297b0ece3e10f6f29f4ac4e8ee515d29f8a7099bd6553c9", size = 62554, upload-time = "2025-12-23T07:45:46.369Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/83/a0/5b0c2f11142ed1dddec842457d3f65eaf71a0080894eb6f018755b319c3a/nbclient-0.10.4-py3-none-any.whl", hash = "sha256:9162df5a7373d70d606527300a95a975a47c137776cd942e52d9c7e29ff83440", size = 25465, upload-time = "2025-12-23T07:45:44.51Z" }, +] + +[[package]] +name = "nbconvert" +version = "7.17.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "beautifulsoup4" }, + { name = "bleach", extra = ["css"] }, + { name = "defusedxml" }, + { name = "jinja2" }, + { name = "jupyter-core" }, + { name = "jupyterlab-pygments" }, + { name = "markupsafe" }, + { name = "mistune" }, + { name = "nbclient" }, + { name = "nbformat" }, + { name = "packaging" }, + { name = "pandocfilters" }, + { name = "pygments" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/38/47/81f886b699450d0569f7bc551df2b1673d18df7ff25cc0c21ca36ed8a5ff/nbconvert-7.17.0.tar.gz", hash = "sha256:1b2696f1b5be12309f6c7d707c24af604b87dfaf6d950794c7b07acab96dda78", size = 862855, upload-time = "2026-01-29T16:37:48.478Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0d/4b/8d5f796a792f8a25f6925a96032f098789f448571eb92011df1ae59e8ea8/nbconvert-7.17.0-py3-none-any.whl", hash = "sha256:4f99a63b337b9a23504347afdab24a11faa7d86b405e5c8f9881cd313336d518", size = 261510, upload-time = "2026-01-29T16:37:46.322Z" }, +] + +[[package]] +name = "nbformat" +version = "5.10.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "fastjsonschema" }, + { name = "jsonschema" }, + { name = "jupyter-core" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6d/fd/91545e604bc3dad7dca9ed03284086039b294c6b3d75c0d2fa45f9e9caf3/nbformat-5.10.4.tar.gz", hash = "sha256:322168b14f937a5d11362988ecac2a4952d3d8e3a2cbeb2319584631226d5b3a", size = 142749, upload-time = "2024-04-04T11:20:37.371Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl", hash = "sha256:3b48d6c8fbca4b299bf3982ea7db1af21580e4fec269ad087b9e81588891200b", size = 78454, upload-time = "2024-04-04T11:20:34.895Z" }, +] + +[[package]] +name = "nest-asyncio" +version = "1.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/83/f8/51569ac65d696c8ecbee95938f89d4abf00f47d58d48f6fbabfe8f0baefe/nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe", size = 7418, upload-time = "2024-01-21T14:25:19.227Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c", size = 5195, upload-time = "2024-01-21T14:25:17.223Z" }, +] + +[[package]] +name = "networkx" +version = "3.6.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6a/51/63fe664f3908c97be9d2e4f1158eb633317598cfa6e1fc14af5383f17512/networkx-3.6.1.tar.gz", hash = "sha256:26b7c357accc0c8cde558ad486283728b65b6a95d85ee1cd66bafab4c8168509", size = 2517025, upload-time = "2025-12-08T17:02:39.908Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/c9/b2622292ea83fbb4ec318f5b9ab867d0a28ab43c5717bb85b0a5f6b3b0a4/networkx-3.6.1-py3-none-any.whl", hash = "sha256:d47fbf302e7d9cbbb9e2555a0d267983d2aa476bac30e90dfbe5669bd57f3762", size = 2068504, upload-time = "2025-12-08T17:02:38.159Z" }, +] + +[[package]] +name = "nltk" +version = "3.9.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, + { name = "joblib" }, + { name = "regex" }, + { name = "tqdm" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e1/8f/915e1c12df07c70ed779d18ab83d065718a926e70d3ea33eb0cd66ffb7c0/nltk-3.9.3.tar.gz", hash = "sha256:cb5945d6424a98d694c2b9a0264519fab4363711065a46aa0ae7a2195b92e71f", size = 2923673, upload-time = "2026-02-24T12:05:53.833Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c2/7e/9af5a710a1236e4772de8dfcc6af942a561327bb9f42b5b4a24d0cf100fd/nltk-3.9.3-py3-none-any.whl", hash = "sha256:60b3db6e9995b3dd976b1f0fa7dec22069b2677e759c28eb69b62ddd44870522", size = 1525385, upload-time = "2026-02-24T12:05:46.54Z" }, +] + +[[package]] +name = "notebook" +version = "7.5.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-server" }, + { name = "jupyterlab" }, + { name = "jupyterlab-server" }, + { name = "notebook-shim" }, + { name = "tornado" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/78/08/9d446fbb49f95de316ea6d7f25d0a4bc95117dd574e35f405895ac706f29/notebook-7.5.4.tar.gz", hash = "sha256:b928b2ba22cb63aa83df2e0e76fe3697950a0c1c4a41b84ebccf1972b1bb5771", size = 14167892, upload-time = "2026-02-24T14:13:56.116Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/59/01/05e5387b53e0f549212d5eff58845886f3827617b5c9409c966ddc07cb6d/notebook-7.5.4-py3-none-any.whl", hash = "sha256:860e31782b3d3a25ca0819ff039f5cf77845d1bf30c78ef9528b88b25e0a9850", size = 14578014, upload-time = "2026-02-24T14:13:52.274Z" }, +] + +[[package]] +name = "notebook-shim" +version = "0.2.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-server" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/54/d2/92fa3243712b9a3e8bafaf60aac366da1cada3639ca767ff4b5b3654ec28/notebook_shim-0.2.4.tar.gz", hash = "sha256:b4b2cfa1b65d98307ca24361f5b30fe785b53c3fd07b7a47e89acb5e6ac638cb", size = 13167, upload-time = "2024-02-14T23:35:18.353Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/33/bd5b9137445ea4b680023eb0469b2bb969d61303dedb2aac6560ff3d14a1/notebook_shim-0.2.4-py3-none-any.whl", hash = "sha256:411a5be4e9dc882a074ccbcae671eda64cceb068767e9a3419096986560e1cef", size = 13307, upload-time = "2024-02-14T23:35:16.286Z" }, +] + [[package]] name = "numpy" version = "2.4.2" @@ -1093,6 +2957,184 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/de/e5/b7d20451657664b07986c2f6e3be564433f5dcaf3482d68eaecd79afaf03/numpy-2.4.2-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:be71bf1edb48ebbbf7f6337b5bfd2f895d1902f6335a5830b20141fc126ffba0", size = 12502577, upload-time = "2026-01-31T23:13:07.08Z" }, ] +[[package]] +name = "nvidia-cublas-cu12" +version = "12.8.4.1" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/dc/61/e24b560ab2e2eaeb3c839129175fb330dfcfc29e5203196e5541a4c44682/nvidia_cublas_cu12-12.8.4.1-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:8ac4e771d5a348c551b2a426eda6193c19aa630236b418086020df5ba9667142", size = 594346921, upload-time = "2025-03-07T01:44:31.254Z" }, +] + +[[package]] +name = "nvidia-cuda-cupti-cu12" +version = "12.8.90" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f8/02/2adcaa145158bf1a8295d83591d22e4103dbfd821bcaf6f3f53151ca4ffa/nvidia_cuda_cupti_cu12-12.8.90-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:ea0cb07ebda26bb9b29ba82cda34849e73c166c18162d3913575b0c9db9a6182", size = 10248621, upload-time = "2025-03-07T01:40:21.213Z" }, +] + +[[package]] +name = "nvidia-cuda-nvrtc-cu12" +version = "12.8.93" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/05/6b/32f747947df2da6994e999492ab306a903659555dddc0fbdeb9d71f75e52/nvidia_cuda_nvrtc_cu12-12.8.93-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:a7756528852ef889772a84c6cd89d41dfa74667e24cca16bb31f8f061e3e9994", size = 88040029, upload-time = "2025-03-07T01:42:13.562Z" }, +] + +[[package]] +name = "nvidia-cuda-runtime-cu12" +version = "12.8.90" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0d/9b/a997b638fcd068ad6e4d53b8551a7d30fe8b404d6f1804abf1df69838932/nvidia_cuda_runtime_cu12-12.8.90-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:adade8dcbd0edf427b7204d480d6066d33902cab2a4707dcfc48a2d0fd44ab90", size = 954765, upload-time = "2025-03-07T01:40:01.615Z" }, +] + +[[package]] +name = "nvidia-cudnn-cu12" +version = "9.10.2.21" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-cublas-cu12", marker = "sys_platform != 'emscripten' and sys_platform != 'win32'" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/ba/51/e123d997aa098c61d029f76663dedbfb9bc8dcf8c60cbd6adbe42f76d049/nvidia_cudnn_cu12-9.10.2.21-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:949452be657fa16687d0930933f032835951ef0892b37d2d53824d1a84dc97a8", size = 706758467, upload-time = "2025-06-06T21:54:08.597Z" }, +] + +[[package]] +name = "nvidia-cufft-cu12" +version = "11.3.3.83" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-nvjitlink-cu12", marker = "sys_platform != 'emscripten' and sys_platform != 'win32'" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/1f/13/ee4e00f30e676b66ae65b4f08cb5bcbb8392c03f54f2d5413ea99a5d1c80/nvidia_cufft_cu12-11.3.3.83-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4d2dd21ec0b88cf61b62e6b43564355e5222e4a3fb394cac0db101f2dd0d4f74", size = 193118695, upload-time = "2025-03-07T01:45:27.821Z" }, +] + +[[package]] +name = "nvidia-cufile-cu12" +version = "1.13.1.3" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bb/fe/1bcba1dfbfb8d01be8d93f07bfc502c93fa23afa6fd5ab3fc7c1df71038a/nvidia_cufile_cu12-1.13.1.3-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:1d069003be650e131b21c932ec3d8969c1715379251f8d23a1860554b1cb24fc", size = 1197834, upload-time = "2025-03-07T01:45:50.723Z" }, +] + +[[package]] +name = "nvidia-curand-cu12" +version = "10.3.9.90" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fb/aa/6584b56dc84ebe9cf93226a5cde4d99080c8e90ab40f0c27bda7a0f29aa1/nvidia_curand_cu12-10.3.9.90-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:b32331d4f4df5d6eefa0554c565b626c7216f87a06a4f56fab27c3b68a830ec9", size = 63619976, upload-time = "2025-03-07T01:46:23.323Z" }, +] + +[[package]] +name = "nvidia-cusolver-cu12" +version = "11.7.3.90" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-cublas-cu12", marker = "sys_platform != 'emscripten' and sys_platform != 'win32'" }, + { name = "nvidia-cusparse-cu12", marker = "sys_platform != 'emscripten' and sys_platform != 'win32'" }, + { name = "nvidia-nvjitlink-cu12", marker = "sys_platform != 'emscripten' and sys_platform != 'win32'" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/85/48/9a13d2975803e8cf2777d5ed57b87a0b6ca2cc795f9a4f59796a910bfb80/nvidia_cusolver_cu12-11.7.3.90-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:4376c11ad263152bd50ea295c05370360776f8c3427b30991df774f9fb26c450", size = 267506905, upload-time = "2025-03-07T01:47:16.273Z" }, +] + +[[package]] +name = "nvidia-cusparse-cu12" +version = "12.5.8.93" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-nvjitlink-cu12", marker = "sys_platform != 'emscripten' and sys_platform != 'win32'" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/c2/f5/e1854cb2f2bcd4280c44736c93550cc300ff4b8c95ebe370d0aa7d2b473d/nvidia_cusparse_cu12-12.5.8.93-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:1ec05d76bbbd8b61b06a80e1eaf8cf4959c3d4ce8e711b65ebd0443bb0ebb13b", size = 288216466, upload-time = "2025-03-07T01:48:13.779Z" }, +] + +[[package]] +name = "nvidia-cusparselt-cu12" +version = "0.7.1" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/56/79/12978b96bd44274fe38b5dde5cfb660b1d114f70a65ef962bcbbed99b549/nvidia_cusparselt_cu12-0.7.1-py3-none-manylinux2014_x86_64.whl", hash = "sha256:f1bb701d6b930d5a7cea44c19ceb973311500847f81b634d802b7b539dc55623", size = 287193691, upload-time = "2025-02-26T00:15:44.104Z" }, +] + +[[package]] +name = "nvidia-nccl-cu12" +version = "2.27.5" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6e/89/f7a07dc961b60645dbbf42e80f2bc85ade7feb9a491b11a1e973aa00071f/nvidia_nccl_cu12-2.27.5-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:ad730cf15cb5d25fe849c6e6ca9eb5b76db16a80f13f425ac68d8e2e55624457", size = 322348229, upload-time = "2025-06-26T04:11:28.385Z" }, +] + +[[package]] +name = "nvidia-nvjitlink-cu12" +version = "12.8.93" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f6/74/86a07f1d0f42998ca31312f998bd3b9a7eff7f52378f4f270c8679c77fb9/nvidia_nvjitlink_cu12-12.8.93-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:81ff63371a7ebd6e6451970684f916be2eab07321b73c9d244dc2b4da7f73b88", size = 39254836, upload-time = "2025-03-07T01:49:55.661Z" }, +] + +[[package]] +name = "nvidia-nvshmem-cu12" +version = "3.4.5" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b5/09/6ea3ea725f82e1e76684f0708bbedd871fc96da89945adeba65c3835a64c/nvidia_nvshmem_cu12-3.4.5-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:042f2500f24c021db8a06c5eec2539027d57460e1c1a762055a6554f72c369bd", size = 139103095, upload-time = "2025-09-06T00:32:31.266Z" }, +] + +[[package]] +name = "nvidia-nvtx-cu12" +version = "12.8.90" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a2/eb/86626c1bbc2edb86323022371c39aa48df6fd8b0a1647bc274577f72e90b/nvidia_nvtx_cu12-12.8.90-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:5b17e2001cc0d751a5bc2c6ec6d26ad95913324a4adb86788c944f8ce9ba441f", size = 89954, upload-time = "2025-03-07T01:42:44.131Z" }, +] + +[[package]] +name = "ollama" +version = "0.6.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "httpx" }, + { name = "pydantic" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9d/5a/652dac4b7affc2b37b95386f8ae78f22808af09d720689e3d7a86b6ed98e/ollama-0.6.1.tar.gz", hash = "sha256:478c67546836430034b415ed64fa890fd3d1ff91781a9d548b3325274e69d7c6", size = 51620, upload-time = "2025-11-13T23:02:17.416Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/47/4f/4a617ee93d8208d2bcf26b2d8b9402ceaed03e3853c754940e2290fed063/ollama-0.6.1-py3-none-any.whl", hash = "sha256:fc4c984b345735c5486faeee67d8a265214a31cbb828167782dc642ce0a2bf8c", size = 14354, upload-time = "2025-11-13T23:02:16.292Z" }, +] + +[[package]] +name = "openai" +version = "2.23.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "distro" }, + { name = "httpx" }, + { name = "jiter" }, + { name = "pydantic" }, + { name = "sniffio" }, + { name = "tqdm" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/61/4b/dc1d84b8237205ebe48a1b1c9c3a8e1ab9fd08b30811b6d787196df58fd6/openai-2.23.0.tar.gz", hash = "sha256:7d24cc8087d5e8eed58e98aaa823391d39d12f9a9a2755770f67c7bb2004d94c", size = 657323, upload-time = "2026-02-24T03:20:20.323Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1d/5f/bcdf0fb510c24f021e485f920677da363cd59d6e0310171bf2cad6e052b5/openai-2.23.0-py3-none-any.whl", hash = "sha256:1041d40bebf845053fda1946104f8bf9c3e2df957a41c3878c55c72c352630e9", size = 1118971, upload-time = "2026-02-24T03:20:18.708Z" }, +] + +[[package]] +name = "opentelemetry-proto" +version = "1.40.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "protobuf" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/4c/77/dd38991db037fdfce45849491cb61de5ab000f49824a00230afb112a4392/opentelemetry_proto-1.40.0.tar.gz", hash = "sha256:03f639ca129ba513f5819810f5b1f42bcb371391405d99c168fe6937c62febcd", size = 45667, upload-time = "2026-03-04T14:17:31.194Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b9/b2/189b2577dde745b15625b3214302605b1353436219d42b7912e77fa8dc24/opentelemetry_proto-1.40.0-py3-none-any.whl", hash = "sha256:266c4385d88923a23d63e353e9761af0f47a6ed0d486979777fe4de59dc9b25f", size = 72073, upload-time = "2026-03-04T14:17:16.673Z" }, +] + [[package]] name = "orjson" version = "3.11.7" @@ -1210,72 +3252,311 @@ wheels = [ ] [[package]] -name = "packaging" -version = "26.0" +name = "outcome" +version = "1.3.0.post0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/65/ee/299d360cdc32edc7d2cf530f3accf79c4fca01e96ffc950d8a52213bd8e4/packaging-26.0.tar.gz", hash = "sha256:00243ae351a257117b6a241061796684b084ed1c516a08c48a3f7e147a9d80b4", size = 143416, upload-time = "2026-01-21T20:50:39.064Z" } +dependencies = [ + { name = "attrs" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/98/df/77698abfac98571e65ffeb0c1fba8ffd692ab8458d617a0eed7d9a8d38f2/outcome-1.3.0.post0.tar.gz", hash = "sha256:9dcf02e65f2971b80047b377468e72a268e15c0af3cf1238e6ff14f7f91143b8", size = 21060, upload-time = "2023-10-26T04:26:04.361Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/b7/b9/c538f279a4e237a006a2c98387d081e9eb060d203d8ed34467cc0f0b9b53/packaging-26.0-py3-none-any.whl", hash = "sha256:b36f1fef9334a5588b4166f8bcd26a14e521f2b55e6b9de3aaa80d3ff7a37529", size = 74366, upload-time = "2026-01-21T20:50:37.788Z" }, + { url = "https://files.pythonhosted.org/packages/55/8b/5ab7257531a5d830fc8000c476e63c935488d74609b50f9384a643ec0a62/outcome-1.3.0.post0-py2.py3-none-any.whl", hash = "sha256:e771c5ce06d1415e356078d3bdd68523f284b4ce5419828922b6871e65eda82b", size = 10692, upload-time = "2023-10-26T04:26:02.532Z" }, +] + +[[package]] +name = "overrides" +version = "7.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/36/86/b585f53236dec60aba864e050778b25045f857e17f6e5ea0ae95fe80edd2/overrides-7.7.0.tar.gz", hash = "sha256:55158fa3d93b98cc75299b1e67078ad9003ca27945c76162c1c0766d6f91820a", size = 22812, upload-time = "2024-01-27T21:01:33.423Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2c/ab/fc8290c6a4c722e5514d80f62b2dc4c4df1a68a41d1364e625c35990fcf3/overrides-7.7.0-py3-none-any.whl", hash = "sha256:c7ed9d062f78b8e4c1a7b70bd8796b35ead4d9f510227ef9c5dc7626c60d7e49", size = 17832, upload-time = "2024-01-27T21:01:31.393Z" }, +] + +[[package]] +name = "packaging" +version = "24.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f", size = 163950, upload-time = "2024-11-08T09:47:47.202Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759", size = 65451, upload-time = "2024-11-08T09:47:44.722Z" }, ] [[package]] name = "pandas" -version = "3.0.0" +version = "3.0.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "numpy" }, { name = "python-dateutil" }, { name = "tzdata", marker = "sys_platform == 'emscripten' or sys_platform == 'win32'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/de/da/b1dc0481ab8d55d0f46e343cfe67d4551a0e14fcee52bd38ca1bd73258d8/pandas-3.0.0.tar.gz", hash = "sha256:0facf7e87d38f721f0af46fe70d97373a37701b1c09f7ed7aeeb292ade5c050f", size = 4633005, upload-time = "2026-01-21T15:52:04.726Z" } +sdist = { url = "https://files.pythonhosted.org/packages/2e/0c/b28ed414f080ee0ad153f848586d61d1878f91689950f037f976ce15f6c8/pandas-3.0.1.tar.gz", hash = "sha256:4186a699674af418f655dbd420ed87f50d56b4cd6603784279d9eef6627823c8", size = 4641901, upload-time = "2026-02-17T22:20:16.434Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/46/1e/b184654a856e75e975a6ee95d6577b51c271cd92cb2b020c9378f53e0032/pandas-3.0.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d64ce01eb9cdca96a15266aa679ae50212ec52757c79204dbc7701a222401850", size = 10313247, upload-time = "2026-01-21T15:50:15.775Z" }, - { url = "https://files.pythonhosted.org/packages/dd/5e/e04a547ad0f0183bf151fd7c7a477468e3b85ff2ad231c566389e6cc9587/pandas-3.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:613e13426069793aa1ec53bdcc3b86e8d32071daea138bbcf4fa959c9cdaa2e2", size = 9913131, upload-time = "2026-01-21T15:50:18.611Z" }, - { url = "https://files.pythonhosted.org/packages/a2/93/bb77bfa9fc2aba9f7204db807d5d3fb69832ed2854c60ba91b4c65ba9219/pandas-3.0.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0192fee1f1a8e743b464a6607858ee4b071deb0b118eb143d71c2a1d170996d5", size = 10741925, upload-time = "2026-01-21T15:50:21.058Z" }, - { url = "https://files.pythonhosted.org/packages/62/fb/89319812eb1d714bfc04b7f177895caeba8ab4a37ef6712db75ed786e2e0/pandas-3.0.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f0b853319dec8d5e0c8b875374c078ef17f2269986a78168d9bd57e49bf650ae", size = 11245979, upload-time = "2026-01-21T15:50:23.413Z" }, - { url = "https://files.pythonhosted.org/packages/a9/63/684120486f541fc88da3862ed31165b3b3e12b6a1c7b93be4597bc84e26c/pandas-3.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:707a9a877a876c326ae2cb640fbdc4ef63b0a7b9e2ef55c6df9942dcee8e2af9", size = 11756337, upload-time = "2026-01-21T15:50:25.932Z" }, - { url = "https://files.pythonhosted.org/packages/39/92/7eb0ad232312b59aec61550c3c81ad0743898d10af5df7f80bc5e5065416/pandas-3.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:afd0aa3d0b5cda6e0b8ffc10dbcca3b09ef3cbcd3fe2b27364f85fdc04e1989d", size = 12325517, upload-time = "2026-01-21T15:50:27.952Z" }, - { url = "https://files.pythonhosted.org/packages/51/27/bf9436dd0a4fc3130acec0828951c7ef96a0631969613a9a35744baf27f6/pandas-3.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:113b4cca2614ff7e5b9fee9b6f066618fe73c5a83e99d721ffc41217b2bf57dd", size = 9881576, upload-time = "2026-01-21T15:50:30.149Z" }, - { url = "https://files.pythonhosted.org/packages/e7/2b/c618b871fce0159fd107516336e82891b404e3f340821853c2fc28c7830f/pandas-3.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:c14837eba8e99a8da1527c0280bba29b0eb842f64aa94982c5e21227966e164b", size = 9140807, upload-time = "2026-01-21T15:50:32.308Z" }, - { url = "https://files.pythonhosted.org/packages/0b/38/db33686f4b5fa64d7af40d96361f6a4615b8c6c8f1b3d334eee46ae6160e/pandas-3.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:9803b31f5039b3c3b10cc858c5e40054adb4b29b4d81cb2fd789f4121c8efbcd", size = 10334013, upload-time = "2026-01-21T15:50:34.771Z" }, - { url = "https://files.pythonhosted.org/packages/a5/7b/9254310594e9774906bacdd4e732415e1f86ab7dbb4b377ef9ede58cd8ec/pandas-3.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:14c2a4099cd38a1d18ff108168ea417909b2dea3bd1ebff2ccf28ddb6a74d740", size = 9874154, upload-time = "2026-01-21T15:50:36.67Z" }, - { url = "https://files.pythonhosted.org/packages/63/d4/726c5a67a13bc66643e66d2e9ff115cead482a44fc56991d0c4014f15aaf/pandas-3.0.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d257699b9a9960e6125686098d5714ac59d05222bef7a5e6af7a7fd87c650801", size = 10384433, upload-time = "2026-01-21T15:50:39.132Z" }, - { url = "https://files.pythonhosted.org/packages/bf/2e/9211f09bedb04f9832122942de8b051804b31a39cfbad199a819bb88d9f3/pandas-3.0.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:69780c98f286076dcafca38d8b8eee1676adf220199c0a39f0ecbf976b68151a", size = 10864519, upload-time = "2026-01-21T15:50:41.043Z" }, - { url = "https://files.pythonhosted.org/packages/00/8d/50858522cdc46ac88b9afdc3015e298959a70a08cd21e008a44e9520180c/pandas-3.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4a66384f017240f3858a4c8a7cf21b0591c3ac885cddb7758a589f0f71e87ebb", size = 11394124, upload-time = "2026-01-21T15:50:43.377Z" }, - { url = "https://files.pythonhosted.org/packages/86/3f/83b2577db02503cd93d8e95b0f794ad9d4be0ba7cb6c8bcdcac964a34a42/pandas-3.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:be8c515c9bc33989d97b89db66ea0cececb0f6e3c2a87fcc8b69443a6923e95f", size = 11920444, upload-time = "2026-01-21T15:50:45.932Z" }, - { url = "https://files.pythonhosted.org/packages/64/2d/4f8a2f192ed12c90a0aab47f5557ece0e56b0370c49de9454a09de7381b2/pandas-3.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:a453aad8c4f4e9f166436994a33884442ea62aa8b27d007311e87521b97246e1", size = 9730970, upload-time = "2026-01-21T15:50:47.962Z" }, - { url = "https://files.pythonhosted.org/packages/d4/64/ff571be435cf1e643ca98d0945d76732c0b4e9c37191a89c8550b105eed1/pandas-3.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:da768007b5a33057f6d9053563d6b74dd6d029c337d93c6d0d22a763a5c2ecc0", size = 9041950, upload-time = "2026-01-21T15:50:50.422Z" }, - { url = "https://files.pythonhosted.org/packages/6f/fa/7f0ac4ca8877c57537aaff2a842f8760e630d8e824b730eb2e859ffe96ca/pandas-3.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:b78d646249b9a2bc191040988c7bb524c92fa8534fb0898a0741d7e6f2ffafa6", size = 10307129, upload-time = "2026-01-21T15:50:52.877Z" }, - { url = "https://files.pythonhosted.org/packages/6f/11/28a221815dcea4c0c9414dfc845e34a84a6a7dabc6da3194498ed5ba4361/pandas-3.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:bc9cba7b355cb4162442a88ce495e01cb605f17ac1e27d6596ac963504e0305f", size = 9850201, upload-time = "2026-01-21T15:50:54.807Z" }, - { url = "https://files.pythonhosted.org/packages/ba/da/53bbc8c5363b7e5bd10f9ae59ab250fc7a382ea6ba08e4d06d8694370354/pandas-3.0.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3c9a1a149aed3b6c9bf246033ff91e1b02d529546c5d6fb6b74a28fea0cf4c70", size = 10354031, upload-time = "2026-01-21T15:50:57.463Z" }, - { url = "https://files.pythonhosted.org/packages/f7/a3/51e02ebc2a14974170d51e2410dfdab58870ea9bcd37cda15bd553d24dc4/pandas-3.0.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:95683af6175d884ee89471842acfca29172a85031fccdabc35e50c0984470a0e", size = 10861165, upload-time = "2026-01-21T15:50:59.32Z" }, - { url = "https://files.pythonhosted.org/packages/a5/fe/05a51e3cac11d161472b8297bd41723ea98013384dd6d76d115ce3482f9b/pandas-3.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:1fbbb5a7288719e36b76b4f18d46ede46e7f916b6c8d9915b756b0a6c3f792b3", size = 11359359, upload-time = "2026-01-21T15:51:02.014Z" }, - { url = "https://files.pythonhosted.org/packages/ee/56/ba620583225f9b85a4d3e69c01df3e3870659cc525f67929b60e9f21dcd1/pandas-3.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8e8b9808590fa364416b49b2a35c1f4cf2785a6c156935879e57f826df22038e", size = 11912907, upload-time = "2026-01-21T15:51:05.175Z" }, - { url = "https://files.pythonhosted.org/packages/c9/8c/c6638d9f67e45e07656b3826405c5cc5f57f6fd07c8b2572ade328c86e22/pandas-3.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:98212a38a709feb90ae658cb6227ea3657c22ba8157d4b8f913cd4c950de5e7e", size = 9732138, upload-time = "2026-01-21T15:51:07.569Z" }, - { url = "https://files.pythonhosted.org/packages/7b/bf/bd1335c3bf1770b6d8fed2799993b11c4971af93bb1b729b9ebbc02ca2ec/pandas-3.0.0-cp313-cp313-win_arm64.whl", hash = "sha256:177d9df10b3f43b70307a149d7ec49a1229a653f907aa60a48f1877d0e6be3be", size = 9033568, upload-time = "2026-01-21T15:51:09.484Z" }, - { url = "https://files.pythonhosted.org/packages/8e/c6/f5e2171914d5e29b9171d495344097d54e3ffe41d2d85d8115baba4dc483/pandas-3.0.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:2713810ad3806767b89ad3b7b69ba153e1c6ff6d9c20f9c2140379b2a98b6c98", size = 10741936, upload-time = "2026-01-21T15:51:11.693Z" }, - { url = "https://files.pythonhosted.org/packages/51/88/9a0164f99510a1acb9f548691f022c756c2314aad0d8330a24616c14c462/pandas-3.0.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:15d59f885ee5011daf8335dff47dcb8a912a27b4ad7826dc6cbe809fd145d327", size = 10393884, upload-time = "2026-01-21T15:51:14.197Z" }, - { url = "https://files.pythonhosted.org/packages/e0/53/b34d78084d88d8ae2b848591229da8826d1e65aacf00b3abe34023467648/pandas-3.0.0-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:24e6547fb64d2c92665dd2adbfa4e85fa4fd70a9c070e7cfb03b629a0bbab5eb", size = 10310740, upload-time = "2026-01-21T15:51:16.093Z" }, - { url = "https://files.pythonhosted.org/packages/5b/d3/bee792e7c3d6930b74468d990604325701412e55d7aaf47460a22311d1a5/pandas-3.0.0-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:48ee04b90e2505c693d3f8e8f524dab8cb8aaf7ddcab52c92afa535e717c4812", size = 10700014, upload-time = "2026-01-21T15:51:18.818Z" }, - { url = "https://files.pythonhosted.org/packages/55/db/2570bc40fb13aaed1cbc3fbd725c3a60ee162477982123c3adc8971e7ac1/pandas-3.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:66f72fb172959af42a459e27a8d8d2c7e311ff4c1f7db6deb3b643dbc382ae08", size = 11323737, upload-time = "2026-01-21T15:51:20.784Z" }, - { url = "https://files.pythonhosted.org/packages/bc/2e/297ac7f21c8181b62a4cccebad0a70caf679adf3ae5e83cb676194c8acc3/pandas-3.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:4a4a400ca18230976724a5066f20878af785f36c6756e498e94c2a5e5d57779c", size = 11771558, upload-time = "2026-01-21T15:51:22.977Z" }, - { url = "https://files.pythonhosted.org/packages/0a/46/e1c6876d71c14332be70239acce9ad435975a80541086e5ffba2f249bcf6/pandas-3.0.0-cp313-cp313t-win_amd64.whl", hash = "sha256:940eebffe55528074341a5a36515f3e4c5e25e958ebbc764c9502cfc35ba3faa", size = 10473771, upload-time = "2026-01-21T15:51:25.285Z" }, - { url = "https://files.pythonhosted.org/packages/c0/db/0270ad9d13c344b7a36fa77f5f8344a46501abf413803e885d22864d10bf/pandas-3.0.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:597c08fb9fef0edf1e4fa2f9828dd27f3d78f9b8c9b4a748d435ffc55732310b", size = 10312075, upload-time = "2026-01-21T15:51:28.5Z" }, - { url = "https://files.pythonhosted.org/packages/09/9f/c176f5e9717f7c91becfe0f55a52ae445d3f7326b4a2cf355978c51b7913/pandas-3.0.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:447b2d68ac5edcbf94655fe909113a6dba6ef09ad7f9f60c80477825b6c489fe", size = 9900213, upload-time = "2026-01-21T15:51:30.955Z" }, - { url = "https://files.pythonhosted.org/packages/d9/e7/63ad4cc10b257b143e0a5ebb04304ad806b4e1a61c5da25f55896d2ca0f4/pandas-3.0.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:debb95c77ff3ed3ba0d9aa20c3a2f19165cc7956362f9873fce1ba0a53819d70", size = 10428768, upload-time = "2026-01-21T15:51:33.018Z" }, - { url = "https://files.pythonhosted.org/packages/9e/0e/4e4c2d8210f20149fd2248ef3fff26623604922bd564d915f935a06dd63d/pandas-3.0.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fedabf175e7cd82b69b74c30adbaa616de301291a5231138d7242596fc296a8d", size = 10882954, upload-time = "2026-01-21T15:51:35.287Z" }, - { url = "https://files.pythonhosted.org/packages/c6/60/c9de8ac906ba1f4d2250f8a951abe5135b404227a55858a75ad26f84db47/pandas-3.0.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:412d1a89aab46889f3033a386912efcdfa0f1131c5705ff5b668dda88305e986", size = 11430293, upload-time = "2026-01-21T15:51:37.57Z" }, - { url = "https://files.pythonhosted.org/packages/a1/69/806e6637c70920e5787a6d6896fd707f8134c2c55cd761e7249a97b7dc5a/pandas-3.0.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:e979d22316f9350c516479dd3a92252be2937a9531ed3a26ec324198a99cdd49", size = 11952452, upload-time = "2026-01-21T15:51:39.618Z" }, - { url = "https://files.pythonhosted.org/packages/cb/de/918621e46af55164c400ab0ef389c9d969ab85a43d59ad1207d4ddbe30a5/pandas-3.0.0-cp314-cp314-win_amd64.whl", hash = "sha256:083b11415b9970b6e7888800c43c82e81a06cd6b06755d84804444f0007d6bb7", size = 9851081, upload-time = "2026-01-21T15:51:41.758Z" }, - { url = "https://files.pythonhosted.org/packages/91/a1/3562a18dd0bd8c73344bfa26ff90c53c72f827df119d6d6b1dacc84d13e3/pandas-3.0.0-cp314-cp314-win_arm64.whl", hash = "sha256:5db1e62cb99e739fa78a28047e861b256d17f88463c76b8dafc7c1338086dca8", size = 9174610, upload-time = "2026-01-21T15:51:44.312Z" }, - { url = "https://files.pythonhosted.org/packages/ce/26/430d91257eaf366f1737d7a1c158677caaf6267f338ec74e3a1ec444111c/pandas-3.0.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:697b8f7d346c68274b1b93a170a70974cdc7d7354429894d5927c1effdcccd73", size = 10761999, upload-time = "2026-01-21T15:51:46.899Z" }, - { url = "https://files.pythonhosted.org/packages/ec/1a/954eb47736c2b7f7fe6a9d56b0cb6987773c00faa3c6451a43db4beb3254/pandas-3.0.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:8cb3120f0d9467ed95e77f67a75e030b67545bcfa08964e349252d674171def2", size = 10410279, upload-time = "2026-01-21T15:51:48.89Z" }, - { url = "https://files.pythonhosted.org/packages/20/fc/b96f3a5a28b250cd1b366eb0108df2501c0f38314a00847242abab71bb3a/pandas-3.0.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:33fd3e6baa72899746b820c31e4b9688c8e1b7864d7aec2de7ab5035c285277a", size = 10330198, upload-time = "2026-01-21T15:51:51.015Z" }, - { url = "https://files.pythonhosted.org/packages/90/b3/d0e2952f103b4fbef1ef22d0c2e314e74fc9064b51cee30890b5e3286ee6/pandas-3.0.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a8942e333dc67ceda1095227ad0febb05a3b36535e520154085db632c40ad084", size = 10728513, upload-time = "2026-01-21T15:51:53.387Z" }, - { url = "https://files.pythonhosted.org/packages/76/81/832894f286df828993dc5fd61c63b231b0fb73377e99f6c6c369174cf97e/pandas-3.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:783ac35c4d0fe0effdb0d67161859078618b1b6587a1af15928137525217a721", size = 11345550, upload-time = "2026-01-21T15:51:55.329Z" }, - { url = "https://files.pythonhosted.org/packages/34/a0/ed160a00fb4f37d806406bc0a79a8b62fe67f29d00950f8d16203ff3409b/pandas-3.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:125eb901e233f155b268bbef9abd9afb5819db74f0e677e89a61b246228c71ac", size = 11799386, upload-time = "2026-01-21T15:51:57.457Z" }, - { url = "https://files.pythonhosted.org/packages/36/c8/2ac00d7255252c5e3cf61b35ca92ca25704b0188f7454ca4aec08a33cece/pandas-3.0.0-cp314-cp314t-win_amd64.whl", hash = "sha256:b86d113b6c109df3ce0ad5abbc259fe86a1bd4adfd4a31a89da42f84f65509bb", size = 10873041, upload-time = "2026-01-21T15:52:00.034Z" }, - { url = "https://files.pythonhosted.org/packages/e6/3f/a80ac00acbc6b35166b42850e98a4f466e2c0d9c64054161ba9620f95680/pandas-3.0.0-cp314-cp314t-win_arm64.whl", hash = "sha256:1c39eab3ad38f2d7a249095f0a3d8f8c22cc0f847e98ccf5bbe732b272e2d9fa", size = 9441003, upload-time = "2026-01-21T15:52:02.281Z" }, + { url = "https://files.pythonhosted.org/packages/ff/07/c7087e003ceee9b9a82539b40414ec557aa795b584a1a346e89180853d79/pandas-3.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:de09668c1bf3b925c07e5762291602f0d789eca1b3a781f99c1c78f6cac0e7ea", size = 10323380, upload-time = "2026-02-17T22:18:16.133Z" }, + { url = "https://files.pythonhosted.org/packages/c1/27/90683c7122febeefe84a56f2cde86a9f05f68d53885cebcc473298dfc33e/pandas-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:24ba315ba3d6e5806063ac6eb717504e499ce30bd8c236d8693a5fd3f084c796", size = 9923455, upload-time = "2026-02-17T22:18:19.13Z" }, + { url = "https://files.pythonhosted.org/packages/0e/f1/ed17d927f9950643bc7631aa4c99ff0cc83a37864470bc419345b656a41f/pandas-3.0.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:406ce835c55bac912f2a0dcfaf27c06d73c6b04a5dde45f1fd3169ce31337389", size = 10753464, upload-time = "2026-02-17T22:18:21.134Z" }, + { url = "https://files.pythonhosted.org/packages/2e/7c/870c7e7daec2a6c7ff2ac9e33b23317230d4e4e954b35112759ea4a924a7/pandas-3.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:830994d7e1f31dd7e790045235605ab61cff6c94defc774547e8b7fdfbff3dc7", size = 11255234, upload-time = "2026-02-17T22:18:24.175Z" }, + { url = "https://files.pythonhosted.org/packages/5c/39/3653fe59af68606282b989c23d1a543ceba6e8099cbcc5f1d506a7bae2aa/pandas-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a64ce8b0f2de1d2efd2ae40b0abe7f8ae6b29fbfb3812098ed5a6f8e235ad9bf", size = 11767299, upload-time = "2026-02-17T22:18:26.824Z" }, + { url = "https://files.pythonhosted.org/packages/9b/31/1daf3c0c94a849c7a8dab8a69697b36d313b229918002ba3e409265c7888/pandas-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9832c2c69da24b602c32e0c7b1b508a03949c18ba08d4d9f1c1033426685b447", size = 12333292, upload-time = "2026-02-17T22:18:28.996Z" }, + { url = "https://files.pythonhosted.org/packages/1f/67/af63f83cd6ca603a00fe8530c10a60f0879265b8be00b5930e8e78c5b30b/pandas-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:84f0904a69e7365f79a0c77d3cdfccbfb05bf87847e3a51a41e1426b0edb9c79", size = 9892176, upload-time = "2026-02-17T22:18:31.79Z" }, + { url = "https://files.pythonhosted.org/packages/79/ab/9c776b14ac4b7b4140788eca18468ea39894bc7340a408f1d1e379856a6b/pandas-3.0.1-cp311-cp311-win_arm64.whl", hash = "sha256:4a68773d5a778afb31d12e34f7dd4612ab90de8c6fb1d8ffe5d4a03b955082a1", size = 9151328, upload-time = "2026-02-17T22:18:35.721Z" }, + { url = "https://files.pythonhosted.org/packages/37/51/b467209c08dae2c624873d7491ea47d2b47336e5403309d433ea79c38571/pandas-3.0.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:476f84f8c20c9f5bc47252b66b4bb25e1a9fc2fa98cead96744d8116cb85771d", size = 10344357, upload-time = "2026-02-17T22:18:38.262Z" }, + { url = "https://files.pythonhosted.org/packages/7c/f1/e2567ffc8951ab371db2e40b2fe068e36b81d8cf3260f06ae508700e5504/pandas-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0ab749dfba921edf641d4036c4c21c0b3ea70fea478165cb98a998fb2a261955", size = 9884543, upload-time = "2026-02-17T22:18:41.476Z" }, + { url = "https://files.pythonhosted.org/packages/d7/39/327802e0b6d693182403c144edacbc27eb82907b57062f23ef5a4c4a5ea7/pandas-3.0.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b8e36891080b87823aff3640c78649b91b8ff6eea3c0d70aeabd72ea43ab069b", size = 10396030, upload-time = "2026-02-17T22:18:43.822Z" }, + { url = "https://files.pythonhosted.org/packages/3d/fe/89d77e424365280b79d99b3e1e7d606f5165af2f2ecfaf0c6d24c799d607/pandas-3.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:532527a701281b9dd371e2f582ed9094f4c12dd9ffb82c0c54ee28d8ac9520c4", size = 10876435, upload-time = "2026-02-17T22:18:45.954Z" }, + { url = "https://files.pythonhosted.org/packages/b5/a6/2a75320849dd154a793f69c951db759aedb8d1dd3939eeacda9bdcfa1629/pandas-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:356e5c055ed9b0da1580d465657bc7d00635af4fd47f30afb23025352ba764d1", size = 11405133, upload-time = "2026-02-17T22:18:48.533Z" }, + { url = "https://files.pythonhosted.org/packages/58/53/1d68fafb2e02d7881df66aa53be4cd748d25cbe311f3b3c85c93ea5d30ca/pandas-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:9d810036895f9ad6345b8f2a338dd6998a74e8483847403582cab67745bff821", size = 11932065, upload-time = "2026-02-17T22:18:50.837Z" }, + { url = "https://files.pythonhosted.org/packages/75/08/67cc404b3a966b6df27b38370ddd96b3b023030b572283d035181854aac5/pandas-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:536232a5fe26dd989bd633e7a0c450705fdc86a207fec7254a55e9a22950fe43", size = 9741627, upload-time = "2026-02-17T22:18:53.905Z" }, + { url = "https://files.pythonhosted.org/packages/86/4f/caf9952948fb00d23795f09b893d11f1cacb384e666854d87249530f7cbe/pandas-3.0.1-cp312-cp312-win_arm64.whl", hash = "sha256:0f463ebfd8de7f326d38037c7363c6dacb857c5881ab8961fb387804d6daf2f7", size = 9052483, upload-time = "2026-02-17T22:18:57.31Z" }, + { url = "https://files.pythonhosted.org/packages/0b/48/aad6ec4f8d007534c091e9a7172b3ec1b1ee6d99a9cbb936b5eab6c6cf58/pandas-3.0.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:5272627187b5d9c20e55d27caf5f2cd23e286aba25cadf73c8590e432e2b7262", size = 10317509, upload-time = "2026-02-17T22:18:59.498Z" }, + { url = "https://files.pythonhosted.org/packages/a8/14/5990826f779f79148ae9d3a2c39593dc04d61d5d90541e71b5749f35af95/pandas-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:661e0f665932af88c7877f31da0dc743fe9c8f2524bdffe23d24fdcb67ef9d56", size = 9860561, upload-time = "2026-02-17T22:19:02.265Z" }, + { url = "https://files.pythonhosted.org/packages/fa/80/f01ff54664b6d70fed71475543d108a9b7c888e923ad210795bef04ffb7d/pandas-3.0.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:75e6e292ff898679e47a2199172593d9f6107fd2dd3617c22c2946e97d5df46e", size = 10365506, upload-time = "2026-02-17T22:19:05.017Z" }, + { url = "https://files.pythonhosted.org/packages/f2/85/ab6d04733a7d6ff32bfc8382bf1b07078228f5d6ebec5266b91bfc5c4ff7/pandas-3.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1ff8cf1d2896e34343197685f432450ec99a85ba8d90cce2030c5eee2ef98791", size = 10873196, upload-time = "2026-02-17T22:19:07.204Z" }, + { url = "https://files.pythonhosted.org/packages/48/a9/9301c83d0b47c23ac5deab91c6b39fd98d5b5db4d93b25df8d381451828f/pandas-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:eca8b4510f6763f3d37359c2105df03a7a221a508f30e396a51d0713d462e68a", size = 11370859, upload-time = "2026-02-17T22:19:09.436Z" }, + { url = "https://files.pythonhosted.org/packages/59/fe/0c1fc5bd2d29c7db2ab372330063ad555fb83e08422829c785f5ec2176ca/pandas-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:06aff2ad6f0b94a17822cf8b83bbb563b090ed82ff4fe7712db2ce57cd50d9b8", size = 11924584, upload-time = "2026-02-17T22:19:11.562Z" }, + { url = "https://files.pythonhosted.org/packages/d6/7d/216a1588b65a7aa5f4535570418a599d943c85afb1d95b0876fc00aa1468/pandas-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:9fea306c783e28884c29057a1d9baa11a349bbf99538ec1da44c8476563d1b25", size = 9742769, upload-time = "2026-02-17T22:19:13.926Z" }, + { url = "https://files.pythonhosted.org/packages/c4/cb/810a22a6af9a4e97c8ab1c946b47f3489c5bca5adc483ce0ffc84c9cc768/pandas-3.0.1-cp313-cp313-win_arm64.whl", hash = "sha256:a8d37a43c52917427e897cb2e429f67a449327394396a81034a4449b99afda59", size = 9043855, upload-time = "2026-02-17T22:19:16.09Z" }, + { url = "https://files.pythonhosted.org/packages/92/fa/423c89086cca1f039cf1253c3ff5b90f157b5b3757314aa635f6bf3e30aa/pandas-3.0.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:d54855f04f8246ed7b6fc96b05d4871591143c46c0b6f4af874764ed0d2d6f06", size = 10752673, upload-time = "2026-02-17T22:19:18.304Z" }, + { url = "https://files.pythonhosted.org/packages/22/23/b5a08ec1f40020397f0faba72f1e2c11f7596a6169c7b3e800abff0e433f/pandas-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:4e1b677accee34a09e0dc2ce5624e4a58a1870ffe56fc021e9caf7f23cd7668f", size = 10404967, upload-time = "2026-02-17T22:19:20.726Z" }, + { url = "https://files.pythonhosted.org/packages/5c/81/94841f1bb4afdc2b52a99daa895ac2c61600bb72e26525ecc9543d453ebc/pandas-3.0.1-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a9cabbdcd03f1b6cd254d6dda8ae09b0252524be1592594c00b7895916cb1324", size = 10320575, upload-time = "2026-02-17T22:19:24.919Z" }, + { url = "https://files.pythonhosted.org/packages/0a/8b/2ae37d66a5342a83adadfd0cb0b4bf9c3c7925424dd5f40d15d6cfaa35ee/pandas-3.0.1-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5ae2ab1f166668b41e770650101e7090824fd34d17915dd9cd479f5c5e0065e9", size = 10710921, upload-time = "2026-02-17T22:19:27.181Z" }, + { url = "https://files.pythonhosted.org/packages/a2/61/772b2e2757855e232b7ccf7cb8079a5711becb3a97f291c953def15a833f/pandas-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6bf0603c2e30e2cafac32807b06435f28741135cb8697eae8b28c7d492fc7d76", size = 11334191, upload-time = "2026-02-17T22:19:29.411Z" }, + { url = "https://files.pythonhosted.org/packages/1b/08/b16c6df3ef555d8495d1d265a7963b65be166785d28f06a350913a4fac78/pandas-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:6c426422973973cae1f4a23e51d4ae85974f44871b24844e4f7de752dd877098", size = 11782256, upload-time = "2026-02-17T22:19:32.34Z" }, + { url = "https://files.pythonhosted.org/packages/55/80/178af0594890dee17e239fca96d3d8670ba0f5ff59b7d0439850924a9c09/pandas-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:b03f91ae8c10a85c1613102c7bef5229b5379f343030a3ccefeca8a33414cf35", size = 10485047, upload-time = "2026-02-17T22:19:34.605Z" }, + { url = "https://files.pythonhosted.org/packages/bb/8b/4bb774a998b97e6c2fd62a9e6cfdaae133b636fd1c468f92afb4ae9a447a/pandas-3.0.1-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:99d0f92ed92d3083d140bf6b97774f9f13863924cf3f52a70711f4e7588f9d0a", size = 10322465, upload-time = "2026-02-17T22:19:36.803Z" }, + { url = "https://files.pythonhosted.org/packages/72/3a/5b39b51c64159f470f1ca3b1c2a87da290657ca022f7cd11442606f607d1/pandas-3.0.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:3b66857e983208654294bb6477b8a63dee26b37bdd0eb34d010556e91261784f", size = 9910632, upload-time = "2026-02-17T22:19:39.001Z" }, + { url = "https://files.pythonhosted.org/packages/4e/f7/b449ffb3f68c11da12fc06fbf6d2fa3a41c41e17d0284d23a79e1c13a7e4/pandas-3.0.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:56cf59638bf24dc9bdf2154c81e248b3289f9a09a6d04e63608c159022352749", size = 10440535, upload-time = "2026-02-17T22:19:41.157Z" }, + { url = "https://files.pythonhosted.org/packages/55/77/6ea82043db22cb0f2bbfe7198da3544000ddaadb12d26be36e19b03a2dc5/pandas-3.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c1a9f55e0f46951874b863d1f3906dcb57df2d9be5c5847ba4dfb55b2c815249", size = 10893940, upload-time = "2026-02-17T22:19:43.493Z" }, + { url = "https://files.pythonhosted.org/packages/03/30/f1b502a72468c89412c1b882a08f6eed8a4ee9dc033f35f65d0663df6081/pandas-3.0.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:1849f0bba9c8a2fb0f691d492b834cc8dadf617e29015c66e989448d58d011ee", size = 11442711, upload-time = "2026-02-17T22:19:46.074Z" }, + { url = "https://files.pythonhosted.org/packages/0d/f0/ebb6ddd8fc049e98cabac5c2924d14d1dda26a20adb70d41ea2e428d3ec4/pandas-3.0.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:c3d288439e11b5325b02ae6e9cc83e6805a62c40c5a6220bea9beb899c073b1c", size = 11963918, upload-time = "2026-02-17T22:19:48.838Z" }, + { url = "https://files.pythonhosted.org/packages/09/f8/8ce132104074f977f907442790eaae24e27bce3b3b454e82faa3237ff098/pandas-3.0.1-cp314-cp314-win_amd64.whl", hash = "sha256:93325b0fe372d192965f4cca88d97667f49557398bbf94abdda3bf1b591dbe66", size = 9862099, upload-time = "2026-02-17T22:19:51.081Z" }, + { url = "https://files.pythonhosted.org/packages/e6/b7/6af9aac41ef2456b768ef0ae60acf8abcebb450a52043d030a65b4b7c9bd/pandas-3.0.1-cp314-cp314-win_arm64.whl", hash = "sha256:97ca08674e3287c7148f4858b01136f8bdfe7202ad25ad04fec602dd1d29d132", size = 9185333, upload-time = "2026-02-17T22:19:53.266Z" }, + { url = "https://files.pythonhosted.org/packages/66/fc/848bb6710bc6061cb0c5badd65b92ff75c81302e0e31e496d00029fe4953/pandas-3.0.1-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:58eeb1b2e0fb322befcf2bbc9ba0af41e616abadb3d3414a6bc7167f6cbfce32", size = 10772664, upload-time = "2026-02-17T22:19:55.806Z" }, + { url = "https://files.pythonhosted.org/packages/69/5c/866a9bbd0f79263b4b0db6ec1a341be13a1473323f05c122388e0f15b21d/pandas-3.0.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:cd9af1276b5ca9e298bd79a26bda32fa9cc87ed095b2a9a60978d2ca058eaf87", size = 10421286, upload-time = "2026-02-17T22:19:58.091Z" }, + { url = "https://files.pythonhosted.org/packages/51/a4/2058fb84fb1cfbfb2d4a6d485e1940bb4ad5716e539d779852494479c580/pandas-3.0.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:94f87a04984d6b63788327cd9f79dda62b7f9043909d2440ceccf709249ca988", size = 10342050, upload-time = "2026-02-17T22:20:01.376Z" }, + { url = "https://files.pythonhosted.org/packages/22/1b/674e89996cc4be74db3c4eb09240c4bb549865c9c3f5d9b086ff8fcfbf00/pandas-3.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:85fe4c4df62e1e20f9db6ebfb88c844b092c22cd5324bdcf94bfa2fc1b391221", size = 10740055, upload-time = "2026-02-17T22:20:04.328Z" }, + { url = "https://files.pythonhosted.org/packages/d0/f8/e954b750764298c22fa4614376531fe63c521ef517e7059a51f062b87dca/pandas-3.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:331ca75a2f8672c365ae25c0b29e46f5ac0c6551fdace8eec4cd65e4fac271ff", size = 11357632, upload-time = "2026-02-17T22:20:06.647Z" }, + { url = "https://files.pythonhosted.org/packages/6d/02/c6e04b694ffd68568297abd03588b6d30295265176a5c01b7459d3bc35a3/pandas-3.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:15860b1fdb1973fffade772fdb931ccf9b2f400a3f5665aef94a00445d7d8dd5", size = 11810974, upload-time = "2026-02-17T22:20:08.946Z" }, + { url = "https://files.pythonhosted.org/packages/89/41/d7dfb63d2407f12055215070c42fc6ac41b66e90a2946cdc5e759058398b/pandas-3.0.1-cp314-cp314t-win_amd64.whl", hash = "sha256:44f1364411d5670efa692b146c748f4ed013df91ee91e9bec5677fb1fd58b937", size = 10884622, upload-time = "2026-02-17T22:20:11.711Z" }, + { url = "https://files.pythonhosted.org/packages/68/b0/34937815889fa982613775e4b97fddd13250f11012d769949c5465af2150/pandas-3.0.1-cp314-cp314t-win_arm64.whl", hash = "sha256:108dd1790337a494aa80e38def654ca3f0968cf4f362c85f44c15e471667102d", size = 9452085, upload-time = "2026-02-17T22:20:14.331Z" }, +] + +[package.optional-dependencies] +parquet = [ + { name = "pyarrow" }, +] + +[[package]] +name = "pandocfilters" +version = "1.5.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/70/6f/3dd4940bbe001c06a65f88e36bad298bc7a0de5036115639926b0c5c0458/pandocfilters-1.5.1.tar.gz", hash = "sha256:002b4a555ee4ebc03f8b66307e287fa492e4a77b4ea14d3f934328297bb4939e", size = 8454, upload-time = "2024-01-18T20:08:13.726Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ef/af/4fbc8cab944db5d21b7e2a5b8e9211a03a79852b1157e2c102fcc61ac440/pandocfilters-1.5.1-py2.py3-none-any.whl", hash = "sha256:93be382804a9cdb0a7267585f157e5d1731bbe5545a85b268d6f5fe6232de2bc", size = 8663, upload-time = "2024-01-18T20:08:11.28Z" }, +] + +[[package]] +name = "parso" +version = "0.8.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/81/76/a1e769043c0c0c9fe391b702539d594731a4362334cdf4dc25d0c09761e7/parso-0.8.6.tar.gz", hash = "sha256:2b9a0332696df97d454fa67b81618fd69c35a7b90327cbe6ba5c92d2c68a7bfd", size = 401621, upload-time = "2026-02-09T15:45:24.425Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/61/fae042894f4296ec49e3f193aff5d7c18440da9e48102c3315e1bc4519a7/parso-0.8.6-py2.py3-none-any.whl", hash = "sha256:2c549f800b70a5c4952197248825584cb00f033b29c692671d3bf08bf380baff", size = 106894, upload-time = "2026-02-09T15:45:21.391Z" }, +] + +[[package]] +name = "patsy" +version = "1.0.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/be/44/ed13eccdd0519eff265f44b670d46fbb0ec813e2274932dc1c0e48520f7d/patsy-1.0.2.tar.gz", hash = "sha256:cdc995455f6233e90e22de72c37fcadb344e7586fb83f06696f54d92f8ce74c0", size = 399942, upload-time = "2025-10-20T16:17:37.535Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f1/70/ba4b949bdc0490ab78d545459acd7702b211dfccf7eb89bbc1060f52818d/patsy-1.0.2-py2.py3-none-any.whl", hash = "sha256:37bfddbc58fcf0362febb5f54f10743f8b21dd2aa73dec7e7ef59d1b02ae668a", size = 233301, upload-time = "2025-10-20T16:17:36.563Z" }, +] + +[[package]] +name = "pexpect" +version = "4.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ptyprocess", marker = "sys_platform != 'emscripten' and sys_platform != 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/42/92/cc564bf6381ff43ce1f4d06852fc19a2f11d180f23dc32d9588bee2f149d/pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f", size = 166450, upload-time = "2023-11-25T09:07:26.339Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523", size = 63772, upload-time = "2023-11-25T06:56:14.81Z" }, +] + +[[package]] +name = "pillow" +version = "12.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1f/42/5c74462b4fd957fcd7b13b04fb3205ff8349236ea74c7c375766d6c82288/pillow-12.1.1.tar.gz", hash = "sha256:9ad8fa5937ab05218e2b6a4cff30295ad35afd2f83ac592e68c0d871bb0fdbc4", size = 46980264, upload-time = "2026-02-11T04:23:07.146Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2b/46/5da1ec4a5171ee7bf1a0efa064aba70ba3d6e0788ce3f5acd1375d23c8c0/pillow-12.1.1-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:e879bb6cd5c73848ef3b2b48b8af9ff08c5b71ecda8048b7dd22d8a33f60be32", size = 5304084, upload-time = "2026-02-11T04:20:27.501Z" }, + { url = "https://files.pythonhosted.org/packages/78/93/a29e9bc02d1cf557a834da780ceccd54e02421627200696fcf805ebdc3fb/pillow-12.1.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:365b10bb9417dd4498c0e3b128018c4a624dc11c7b97d8cc54effe3b096f4c38", size = 4657866, upload-time = "2026-02-11T04:20:29.827Z" }, + { url = "https://files.pythonhosted.org/packages/13/84/583a4558d492a179d31e4aae32eadce94b9acf49c0337c4ce0b70e0a01f2/pillow-12.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d4ce8e329c93845720cd2014659ca67eac35f6433fd3050393d85f3ecef0dad5", size = 6232148, upload-time = "2026-02-11T04:20:31.329Z" }, + { url = "https://files.pythonhosted.org/packages/d5/e2/53c43334bbbb2d3b938978532fbda8e62bb6e0b23a26ce8592f36bcc4987/pillow-12.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:fc354a04072b765eccf2204f588a7a532c9511e8b9c7f900e1b64e3e33487090", size = 8038007, upload-time = "2026-02-11T04:20:34.225Z" }, + { url = "https://files.pythonhosted.org/packages/b8/a6/3d0e79c8a9d58150dd98e199d7c1c56861027f3829a3a60b3c2784190180/pillow-12.1.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7e7976bf1910a8116b523b9f9f58bf410f3e8aa330cd9a2bb2953f9266ab49af", size = 6345418, upload-time = "2026-02-11T04:20:35.858Z" }, + { url = "https://files.pythonhosted.org/packages/a2/c8/46dfeac5825e600579157eea177be43e2f7ff4a99da9d0d0a49533509ac5/pillow-12.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:597bd9c8419bc7c6af5604e55847789b69123bbe25d65cc6ad3012b4f3c98d8b", size = 7034590, upload-time = "2026-02-11T04:20:37.91Z" }, + { url = "https://files.pythonhosted.org/packages/af/bf/e6f65d3db8a8bbfeaf9e13cc0417813f6319863a73de934f14b2229ada18/pillow-12.1.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:2c1fc0f2ca5f96a3c8407e41cca26a16e46b21060fe6d5b099d2cb01412222f5", size = 6458655, upload-time = "2026-02-11T04:20:39.496Z" }, + { url = "https://files.pythonhosted.org/packages/f9/c2/66091f3f34a25894ca129362e510b956ef26f8fb67a0e6417bc5744e56f1/pillow-12.1.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:578510d88c6229d735855e1f278aa305270438d36a05031dfaae5067cc8eb04d", size = 7159286, upload-time = "2026-02-11T04:20:41.139Z" }, + { url = "https://files.pythonhosted.org/packages/7b/5a/24bc8eb526a22f957d0cec6243146744966d40857e3d8deb68f7902ca6c1/pillow-12.1.1-cp311-cp311-win32.whl", hash = "sha256:7311c0a0dcadb89b36b7025dfd8326ecfa36964e29913074d47382706e516a7c", size = 6328663, upload-time = "2026-02-11T04:20:43.184Z" }, + { url = "https://files.pythonhosted.org/packages/31/03/bef822e4f2d8f9d7448c133d0a18185d3cce3e70472774fffefe8b0ed562/pillow-12.1.1-cp311-cp311-win_amd64.whl", hash = "sha256:fbfa2a7c10cc2623f412753cddf391c7f971c52ca40a3f65dc5039b2939e8563", size = 7031448, upload-time = "2026-02-11T04:20:44.696Z" }, + { url = "https://files.pythonhosted.org/packages/49/70/f76296f53610bd17b2e7d31728b8b7825e3ac3b5b3688b51f52eab7c0818/pillow-12.1.1-cp311-cp311-win_arm64.whl", hash = "sha256:b81b5e3511211631b3f672a595e3221252c90af017e399056d0faabb9538aa80", size = 2453651, upload-time = "2026-02-11T04:20:46.243Z" }, + { url = "https://files.pythonhosted.org/packages/07/d3/8df65da0d4df36b094351dce696f2989bec731d4f10e743b1c5f4da4d3bf/pillow-12.1.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:ab323b787d6e18b3d91a72fc99b1a2c28651e4358749842b8f8dfacd28ef2052", size = 5262803, upload-time = "2026-02-11T04:20:47.653Z" }, + { url = "https://files.pythonhosted.org/packages/d6/71/5026395b290ff404b836e636f51d7297e6c83beceaa87c592718747e670f/pillow-12.1.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:adebb5bee0f0af4909c30db0d890c773d1a92ffe83da908e2e9e720f8edf3984", size = 4657601, upload-time = "2026-02-11T04:20:49.328Z" }, + { url = "https://files.pythonhosted.org/packages/b1/2e/1001613d941c67442f745aff0f7cc66dd8df9a9c084eb497e6a543ee6f7e/pillow-12.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:bb66b7cc26f50977108790e2456b7921e773f23db5630261102233eb355a3b79", size = 6234995, upload-time = "2026-02-11T04:20:51.032Z" }, + { url = "https://files.pythonhosted.org/packages/07/26/246ab11455b2549b9233dbd44d358d033a2f780fa9007b61a913c5b2d24e/pillow-12.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:aee2810642b2898bb187ced9b349e95d2a7272930796e022efaf12e99dccd293", size = 8045012, upload-time = "2026-02-11T04:20:52.882Z" }, + { url = "https://files.pythonhosted.org/packages/b2/8b/07587069c27be7535ac1fe33874e32de118fbd34e2a73b7f83436a88368c/pillow-12.1.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a0b1cd6232e2b618adcc54d9882e4e662a089d5768cd188f7c245b4c8c44a397", size = 6349638, upload-time = "2026-02-11T04:20:54.444Z" }, + { url = "https://files.pythonhosted.org/packages/ff/79/6df7b2ee763d619cda2fb4fea498e5f79d984dae304d45a8999b80d6cf5c/pillow-12.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7aac39bcf8d4770d089588a2e1dd111cbaa42df5a94be3114222057d68336bd0", size = 7041540, upload-time = "2026-02-11T04:20:55.97Z" }, + { url = "https://files.pythonhosted.org/packages/2c/5e/2ba19e7e7236d7529f4d873bdaf317a318896bac289abebd4bb00ef247f0/pillow-12.1.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ab174cd7d29a62dd139c44bf74b698039328f45cb03b4596c43473a46656b2f3", size = 6462613, upload-time = "2026-02-11T04:20:57.542Z" }, + { url = "https://files.pythonhosted.org/packages/03/03/31216ec124bb5c3dacd74ce8efff4cc7f52643653bad4825f8f08c697743/pillow-12.1.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:339ffdcb7cbeaa08221cd401d517d4b1fe7a9ed5d400e4a8039719238620ca35", size = 7166745, upload-time = "2026-02-11T04:20:59.196Z" }, + { url = "https://files.pythonhosted.org/packages/1f/e7/7c4552d80052337eb28653b617eafdef39adfb137c49dd7e831b8dc13bc5/pillow-12.1.1-cp312-cp312-win32.whl", hash = "sha256:5d1f9575a12bed9e9eedd9a4972834b08c97a352bd17955ccdebfeca5913fa0a", size = 6328823, upload-time = "2026-02-11T04:21:01.385Z" }, + { url = "https://files.pythonhosted.org/packages/3d/17/688626d192d7261bbbf98846fc98995726bddc2c945344b65bec3a29d731/pillow-12.1.1-cp312-cp312-win_amd64.whl", hash = "sha256:21329ec8c96c6e979cd0dfd29406c40c1d52521a90544463057d2aaa937d66a6", size = 7033367, upload-time = "2026-02-11T04:21:03.536Z" }, + { url = "https://files.pythonhosted.org/packages/ed/fe/a0ef1f73f939b0eca03ee2c108d0043a87468664770612602c63266a43c4/pillow-12.1.1-cp312-cp312-win_arm64.whl", hash = "sha256:af9a332e572978f0218686636610555ae3defd1633597be015ed50289a03c523", size = 2453811, upload-time = "2026-02-11T04:21:05.116Z" }, + { url = "https://files.pythonhosted.org/packages/d5/11/6db24d4bd7685583caeae54b7009584e38da3c3d4488ed4cd25b439de486/pillow-12.1.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl", hash = "sha256:d242e8ac078781f1de88bf823d70c1a9b3c7950a44cdf4b7c012e22ccbcd8e4e", size = 4062689, upload-time = "2026-02-11T04:21:06.804Z" }, + { url = "https://files.pythonhosted.org/packages/33/c0/ce6d3b1fe190f0021203e0d9b5b99e57843e345f15f9ef22fcd43842fd21/pillow-12.1.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:02f84dfad02693676692746df05b89cf25597560db2857363a208e393429f5e9", size = 4138535, upload-time = "2026-02-11T04:21:08.452Z" }, + { url = "https://files.pythonhosted.org/packages/a0/c6/d5eb6a4fb32a3f9c21a8c7613ec706534ea1cf9f4b3663e99f0d83f6fca8/pillow-12.1.1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:e65498daf4b583091ccbb2556c7000abf0f3349fcd57ef7adc9a84a394ed29f6", size = 3601364, upload-time = "2026-02-11T04:21:10.194Z" }, + { url = "https://files.pythonhosted.org/packages/14/a1/16c4b823838ba4c9c52c0e6bbda903a3fe5a1bdbf1b8eb4fff7156f3e318/pillow-12.1.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:6c6db3b84c87d48d0088943bf33440e0c42370b99b1c2a7989216f7b42eede60", size = 5262561, upload-time = "2026-02-11T04:21:11.742Z" }, + { url = "https://files.pythonhosted.org/packages/bb/ad/ad9dc98ff24f485008aa5cdedaf1a219876f6f6c42a4626c08bc4e80b120/pillow-12.1.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:8b7e5304e34942bf62e15184219a7b5ad4ff7f3bb5cca4d984f37df1a0e1aee2", size = 4657460, upload-time = "2026-02-11T04:21:13.786Z" }, + { url = "https://files.pythonhosted.org/packages/9e/1b/f1a4ea9a895b5732152789326202a82464d5254759fbacae4deea3069334/pillow-12.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:18e5bddd742a44b7e6b1e773ab5db102bd7a94c32555ba656e76d319d19c3850", size = 6232698, upload-time = "2026-02-11T04:21:15.949Z" }, + { url = "https://files.pythonhosted.org/packages/95/f4/86f51b8745070daf21fd2e5b1fe0eb35d4db9ca26e6d58366562fb56a743/pillow-12.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:fc44ef1f3de4f45b50ccf9136999d71abb99dca7706bc75d222ed350b9fd2289", size = 8041706, upload-time = "2026-02-11T04:21:17.723Z" }, + { url = "https://files.pythonhosted.org/packages/29/9b/d6ecd956bb1266dd1045e995cce9b8d77759e740953a1c9aad9502a0461e/pillow-12.1.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5a8eb7ed8d4198bccbd07058416eeec51686b498e784eda166395a23eb99138e", size = 6346621, upload-time = "2026-02-11T04:21:19.547Z" }, + { url = "https://files.pythonhosted.org/packages/71/24/538bff45bde96535d7d998c6fed1a751c75ac7c53c37c90dc2601b243893/pillow-12.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:47b94983da0c642de92ced1702c5b6c292a84bd3a8e1d1702ff923f183594717", size = 7038069, upload-time = "2026-02-11T04:21:21.378Z" }, + { url = "https://files.pythonhosted.org/packages/94/0e/58cb1a6bc48f746bc4cb3adb8cabff73e2742c92b3bf7a220b7cf69b9177/pillow-12.1.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:518a48c2aab7ce596d3bf79d0e275661b846e86e4d0e7dec34712c30fe07f02a", size = 6460040, upload-time = "2026-02-11T04:21:23.148Z" }, + { url = "https://files.pythonhosted.org/packages/6c/57/9045cb3ff11eeb6c1adce3b2d60d7d299d7b273a2e6c8381a524abfdc474/pillow-12.1.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a550ae29b95c6dc13cf69e2c9dc5747f814c54eeb2e32d683e5e93af56caa029", size = 7164523, upload-time = "2026-02-11T04:21:25.01Z" }, + { url = "https://files.pythonhosted.org/packages/73/f2/9be9cb99f2175f0d4dbadd6616ce1bf068ee54a28277ea1bf1fbf729c250/pillow-12.1.1-cp313-cp313-win32.whl", hash = "sha256:a003d7422449f6d1e3a34e3dd4110c22148336918ddbfc6a32581cd54b2e0b2b", size = 6332552, upload-time = "2026-02-11T04:21:27.238Z" }, + { url = "https://files.pythonhosted.org/packages/3f/eb/b0834ad8b583d7d9d42b80becff092082a1c3c156bb582590fcc973f1c7c/pillow-12.1.1-cp313-cp313-win_amd64.whl", hash = "sha256:344cf1e3dab3be4b1fa08e449323d98a2a3f819ad20f4b22e77a0ede31f0faa1", size = 7040108, upload-time = "2026-02-11T04:21:29.462Z" }, + { url = "https://files.pythonhosted.org/packages/d5/7d/fc09634e2aabdd0feabaff4a32f4a7d97789223e7c2042fd805ea4b4d2c2/pillow-12.1.1-cp313-cp313-win_arm64.whl", hash = "sha256:5c0dd1636633e7e6a0afe7bf6a51a14992b7f8e60de5789018ebbdfae55b040a", size = 2453712, upload-time = "2026-02-11T04:21:31.072Z" }, + { url = "https://files.pythonhosted.org/packages/19/2a/b9d62794fc8a0dd14c1943df68347badbd5511103e0d04c035ffe5cf2255/pillow-12.1.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:0330d233c1a0ead844fc097a7d16c0abff4c12e856c0b325f231820fee1f39da", size = 5264880, upload-time = "2026-02-11T04:21:32.865Z" }, + { url = "https://files.pythonhosted.org/packages/26/9d/e03d857d1347fa5ed9247e123fcd2a97b6220e15e9cb73ca0a8d91702c6e/pillow-12.1.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:5dae5f21afb91322f2ff791895ddd8889e5e947ff59f71b46041c8ce6db790bc", size = 4660616, upload-time = "2026-02-11T04:21:34.97Z" }, + { url = "https://files.pythonhosted.org/packages/f7/ec/8a6d22afd02570d30954e043f09c32772bfe143ba9285e2fdb11284952cd/pillow-12.1.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:2e0c664be47252947d870ac0d327fea7e63985a08794758aa8af5b6cb6ec0c9c", size = 6269008, upload-time = "2026-02-11T04:21:36.623Z" }, + { url = "https://files.pythonhosted.org/packages/3d/1d/6d875422c9f28a4a361f495a5f68d9de4a66941dc2c619103ca335fa6446/pillow-12.1.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:691ab2ac363b8217f7d31b3497108fb1f50faab2f75dfb03284ec2f217e87bf8", size = 8073226, upload-time = "2026-02-11T04:21:38.585Z" }, + { url = "https://files.pythonhosted.org/packages/a1/cd/134b0b6ee5eda6dc09e25e24b40fdafe11a520bc725c1d0bbaa5e00bf95b/pillow-12.1.1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e9e8064fb1cc019296958595f6db671fba95209e3ceb0c4734c9baf97de04b20", size = 6380136, upload-time = "2026-02-11T04:21:40.562Z" }, + { url = "https://files.pythonhosted.org/packages/7a/a9/7628f013f18f001c1b98d8fffe3452f306a70dc6aba7d931019e0492f45e/pillow-12.1.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:472a8d7ded663e6162dafdf20015c486a7009483ca671cece7a9279b512fcb13", size = 7067129, upload-time = "2026-02-11T04:21:42.521Z" }, + { url = "https://files.pythonhosted.org/packages/1e/f8/66ab30a2193b277785601e82ee2d49f68ea575d9637e5e234faaa98efa4c/pillow-12.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:89b54027a766529136a06cfebeecb3a04900397a3590fd252160b888479517bf", size = 6491807, upload-time = "2026-02-11T04:21:44.22Z" }, + { url = "https://files.pythonhosted.org/packages/da/0b/a877a6627dc8318fdb84e357c5e1a758c0941ab1ddffdafd231983788579/pillow-12.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:86172b0831b82ce4f7877f280055892b31179e1576aa00d0df3bb1bbf8c3e524", size = 7190954, upload-time = "2026-02-11T04:21:46.114Z" }, + { url = "https://files.pythonhosted.org/packages/83/43/6f732ff85743cf746b1361b91665d9f5155e1483817f693f8d57ea93147f/pillow-12.1.1-cp313-cp313t-win32.whl", hash = "sha256:44ce27545b6efcf0fdbdceb31c9a5bdea9333e664cda58a7e674bb74608b3986", size = 6336441, upload-time = "2026-02-11T04:21:48.22Z" }, + { url = "https://files.pythonhosted.org/packages/3b/44/e865ef3986611bb75bfabdf94a590016ea327833f434558801122979cd0e/pillow-12.1.1-cp313-cp313t-win_amd64.whl", hash = "sha256:a285e3eb7a5a45a2ff504e31f4a8d1b12ef62e84e5411c6804a42197c1cf586c", size = 7045383, upload-time = "2026-02-11T04:21:50.015Z" }, + { url = "https://files.pythonhosted.org/packages/a8/c6/f4fb24268d0c6908b9f04143697ea18b0379490cb74ba9e8d41b898bd005/pillow-12.1.1-cp313-cp313t-win_arm64.whl", hash = "sha256:cc7d296b5ea4d29e6570dabeaed58d31c3fea35a633a69679fb03d7664f43fb3", size = 2456104, upload-time = "2026-02-11T04:21:51.633Z" }, + { url = "https://files.pythonhosted.org/packages/03/d0/bebb3ffbf31c5a8e97241476c4cf8b9828954693ce6744b4a2326af3e16b/pillow-12.1.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl", hash = "sha256:417423db963cb4be8bac3fc1204fe61610f6abeed1580a7a2cbb2fbda20f12af", size = 4062652, upload-time = "2026-02-11T04:21:53.19Z" }, + { url = "https://files.pythonhosted.org/packages/2d/c0/0e16fb0addda4851445c28f8350d8c512f09de27bbb0d6d0bbf8b6709605/pillow-12.1.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:b957b71c6b2387610f556a7eb0828afbe40b4a98036fc0d2acfa5a44a0c2036f", size = 4138823, upload-time = "2026-02-11T04:22:03.088Z" }, + { url = "https://files.pythonhosted.org/packages/6b/fb/6170ec655d6f6bb6630a013dd7cf7bc218423d7b5fa9071bf63dc32175ae/pillow-12.1.1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:097690ba1f2efdeb165a20469d59d8bb03c55fb6621eb2041a060ae8ea3e9642", size = 3601143, upload-time = "2026-02-11T04:22:04.909Z" }, + { url = "https://files.pythonhosted.org/packages/59/04/dc5c3f297510ba9a6837cbb318b87dd2b8f73eb41a43cc63767f65cb599c/pillow-12.1.1-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:2815a87ab27848db0321fb78c7f0b2c8649dee134b7f2b80c6a45c6831d75ccd", size = 5266254, upload-time = "2026-02-11T04:22:07.656Z" }, + { url = "https://files.pythonhosted.org/packages/05/30/5db1236b0d6313f03ebf97f5e17cda9ca060f524b2fcc875149a8360b21c/pillow-12.1.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:f7ed2c6543bad5a7d5530eb9e78c53132f93dfa44a28492db88b41cdab885202", size = 4657499, upload-time = "2026-02-11T04:22:09.613Z" }, + { url = "https://files.pythonhosted.org/packages/6f/18/008d2ca0eb612e81968e8be0bbae5051efba24d52debf930126d7eaacbba/pillow-12.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:652a2c9ccfb556235b2b501a3a7cf3742148cd22e04b5625c5fe057ea3e3191f", size = 6232137, upload-time = "2026-02-11T04:22:11.434Z" }, + { url = "https://files.pythonhosted.org/packages/70/f1/f14d5b8eeb4b2cd62b9f9f847eb6605f103df89ef619ac68f92f748614ea/pillow-12.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d6e4571eedf43af33d0fc233a382a76e849badbccdf1ac438841308652a08e1f", size = 8042721, upload-time = "2026-02-11T04:22:13.321Z" }, + { url = "https://files.pythonhosted.org/packages/5a/d6/17824509146e4babbdabf04d8171491fa9d776f7061ff6e727522df9bd03/pillow-12.1.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b574c51cf7d5d62e9be37ba446224b59a2da26dc4c1bb2ecbe936a4fb1a7cb7f", size = 6347798, upload-time = "2026-02-11T04:22:15.449Z" }, + { url = "https://files.pythonhosted.org/packages/d1/ee/c85a38a9ab92037a75615aba572c85ea51e605265036e00c5b67dfafbfe2/pillow-12.1.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a37691702ed687799de29a518d63d4682d9016932db66d4e90c345831b02fb4e", size = 7039315, upload-time = "2026-02-11T04:22:17.24Z" }, + { url = "https://files.pythonhosted.org/packages/ec/f3/bc8ccc6e08a148290d7523bde4d9a0d6c981db34631390dc6e6ec34cacf6/pillow-12.1.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:f95c00d5d6700b2b890479664a06e754974848afaae5e21beb4d83c106923fd0", size = 6462360, upload-time = "2026-02-11T04:22:19.111Z" }, + { url = "https://files.pythonhosted.org/packages/f6/ab/69a42656adb1d0665ab051eec58a41f169ad295cf81ad45406963105408f/pillow-12.1.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:559b38da23606e68681337ad74622c4dbba02254fc9cb4488a305dd5975c7eeb", size = 7165438, upload-time = "2026-02-11T04:22:21.041Z" }, + { url = "https://files.pythonhosted.org/packages/02/46/81f7aa8941873f0f01d4b55cc543b0a3d03ec2ee30d617a0448bf6bd6dec/pillow-12.1.1-cp314-cp314-win32.whl", hash = "sha256:03edcc34d688572014ff223c125a3f77fb08091e4607e7745002fc214070b35f", size = 6431503, upload-time = "2026-02-11T04:22:22.833Z" }, + { url = "https://files.pythonhosted.org/packages/40/72/4c245f7d1044b67affc7f134a09ea619d4895333d35322b775b928180044/pillow-12.1.1-cp314-cp314-win_amd64.whl", hash = "sha256:50480dcd74fa63b8e78235957d302d98d98d82ccbfac4c7e12108ba9ecbdba15", size = 7176748, upload-time = "2026-02-11T04:22:24.64Z" }, + { url = "https://files.pythonhosted.org/packages/e4/ad/8a87bdbe038c5c698736e3348af5c2194ffb872ea52f11894c95f9305435/pillow-12.1.1-cp314-cp314-win_arm64.whl", hash = "sha256:5cb1785d97b0c3d1d1a16bc1d710c4a0049daefc4935f3a8f31f827f4d3d2e7f", size = 2544314, upload-time = "2026-02-11T04:22:26.685Z" }, + { url = "https://files.pythonhosted.org/packages/6c/9d/efd18493f9de13b87ede7c47e69184b9e859e4427225ea962e32e56a49bc/pillow-12.1.1-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:1f90cff8aa76835cba5769f0b3121a22bd4eb9e6884cfe338216e557a9a548b8", size = 5268612, upload-time = "2026-02-11T04:22:29.884Z" }, + { url = "https://files.pythonhosted.org/packages/f8/f1/4f42eb2b388eb2ffc660dcb7f7b556c1015c53ebd5f7f754965ef997585b/pillow-12.1.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:1f1be78ce9466a7ee64bfda57bdba0f7cc499d9794d518b854816c41bf0aa4e9", size = 4660567, upload-time = "2026-02-11T04:22:31.799Z" }, + { url = "https://files.pythonhosted.org/packages/01/54/df6ef130fa43e4b82e32624a7b821a2be1c5653a5fdad8469687a7db4e00/pillow-12.1.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:42fc1f4677106188ad9a55562bbade416f8b55456f522430fadab3cef7cd4e60", size = 6269951, upload-time = "2026-02-11T04:22:33.921Z" }, + { url = "https://files.pythonhosted.org/packages/a9/48/618752d06cc44bb4aae8ce0cd4e6426871929ed7b46215638088270d9b34/pillow-12.1.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:98edb152429ab62a1818039744d8fbb3ccab98a7c29fc3d5fcef158f3f1f68b7", size = 8074769, upload-time = "2026-02-11T04:22:35.877Z" }, + { url = "https://files.pythonhosted.org/packages/c3/bd/f1d71eb39a72fa088d938655afba3e00b38018d052752f435838961127d8/pillow-12.1.1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d470ab1178551dd17fdba0fef463359c41aaa613cdcd7ff8373f54be629f9f8f", size = 6381358, upload-time = "2026-02-11T04:22:37.698Z" }, + { url = "https://files.pythonhosted.org/packages/64/ef/c784e20b96674ed36a5af839305f55616f8b4f8aa8eeccf8531a6e312243/pillow-12.1.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6408a7b064595afcab0a49393a413732a35788f2a5092fdc6266952ed67de586", size = 7068558, upload-time = "2026-02-11T04:22:39.597Z" }, + { url = "https://files.pythonhosted.org/packages/73/cb/8059688b74422ae61278202c4e1ad992e8a2e7375227be0a21c6b87ca8d5/pillow-12.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:5d8c41325b382c07799a3682c1c258469ea2ff97103c53717b7893862d0c98ce", size = 6493028, upload-time = "2026-02-11T04:22:42.73Z" }, + { url = "https://files.pythonhosted.org/packages/c6/da/e3c008ed7d2dd1f905b15949325934510b9d1931e5df999bb15972756818/pillow-12.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:c7697918b5be27424e9ce568193efd13d925c4481dd364e43f5dff72d33e10f8", size = 7191940, upload-time = "2026-02-11T04:22:44.543Z" }, + { url = "https://files.pythonhosted.org/packages/01/4a/9202e8d11714c1fc5951f2e1ef362f2d7fbc595e1f6717971d5dd750e969/pillow-12.1.1-cp314-cp314t-win32.whl", hash = "sha256:d2912fd8114fc5545aa3a4b5576512f64c55a03f3ebcca4c10194d593d43ea36", size = 6438736, upload-time = "2026-02-11T04:22:46.347Z" }, + { url = "https://files.pythonhosted.org/packages/f3/ca/cbce2327eb9885476b3957b2e82eb12c866a8b16ad77392864ad601022ce/pillow-12.1.1-cp314-cp314t-win_amd64.whl", hash = "sha256:4ceb838d4bd9dab43e06c363cab2eebf63846d6a4aeaea283bbdfd8f1a8ed58b", size = 7182894, upload-time = "2026-02-11T04:22:48.114Z" }, + { url = "https://files.pythonhosted.org/packages/ec/d2/de599c95ba0a973b94410477f8bf0b6f0b5e67360eb89bcb1ad365258beb/pillow-12.1.1-cp314-cp314t-win_arm64.whl", hash = "sha256:7b03048319bfc6170e93bd60728a1af51d3dd7704935feb228c4d4faab35d334", size = 2546446, upload-time = "2026-02-11T04:22:50.342Z" }, + { url = "https://files.pythonhosted.org/packages/56/11/5d43209aa4cb58e0cc80127956ff1796a68b928e6324bbf06ef4db34367b/pillow-12.1.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:600fd103672b925fe62ed08e0d874ea34d692474df6f4bf7ebe148b30f89f39f", size = 5228606, upload-time = "2026-02-11T04:22:52.106Z" }, + { url = "https://files.pythonhosted.org/packages/5f/d5/3b005b4e4fda6698b371fa6c21b097d4707585d7db99e98d9b0b87ac612a/pillow-12.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:665e1b916b043cef294bc54d47bf02d87e13f769bc4bc5fa225a24b3a6c5aca9", size = 4622321, upload-time = "2026-02-11T04:22:53.827Z" }, + { url = "https://files.pythonhosted.org/packages/df/36/ed3ea2d594356fd8037e5a01f6156c74bc8d92dbb0fa60746cc96cabb6e8/pillow-12.1.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:495c302af3aad1ca67420ddd5c7bd480c8867ad173528767d906428057a11f0e", size = 5247579, upload-time = "2026-02-11T04:22:56.094Z" }, + { url = "https://files.pythonhosted.org/packages/54/9a/9cc3e029683cf6d20ae5085da0dafc63148e3252c2f13328e553aaa13cfb/pillow-12.1.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:8fd420ef0c52c88b5a035a0886f367748c72147b2b8f384c9d12656678dfdfa9", size = 6989094, upload-time = "2026-02-11T04:22:58.288Z" }, + { url = "https://files.pythonhosted.org/packages/00/98/fc53ab36da80b88df0967896b6c4b4cd948a0dc5aa40a754266aa3ae48b3/pillow-12.1.1-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f975aa7ef9684ce7e2c18a3aa8f8e2106ce1e46b94ab713d156b2898811651d3", size = 5313850, upload-time = "2026-02-11T04:23:00.554Z" }, + { url = "https://files.pythonhosted.org/packages/30/02/00fa585abfd9fe9d73e5f6e554dc36cc2b842898cbfc46d70353dae227f8/pillow-12.1.1-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8089c852a56c2966cf18835db62d9b34fef7ba74c726ad943928d494fa7f4735", size = 5963343, upload-time = "2026-02-11T04:23:02.934Z" }, + { url = "https://files.pythonhosted.org/packages/f2/26/c56ce33ca856e358d27fda9676c055395abddb82c35ac0f593877ed4562e/pillow-12.1.1-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:cb9bb857b2d057c6dfc72ac5f3b44836924ba15721882ef103cecb40d002d80e", size = 7029880, upload-time = "2026-02-11T04:23:04.783Z" }, +] + +[[package]] +name = "platformdirs" +version = "4.9.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1b/04/fea538adf7dbbd6d186f551d595961e564a3b6715bdf276b477460858672/platformdirs-4.9.2.tar.gz", hash = "sha256:9a33809944b9db043ad67ca0db94b14bf452cc6aeaac46a88ea55b26e2e9d291", size = 28394, upload-time = "2026-02-16T03:56:10.574Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/48/31/05e764397056194206169869b50cf2fee4dbbbc71b344705b9c0d878d4d8/platformdirs-4.9.2-py3-none-any.whl", hash = "sha256:9170634f126f8efdae22fb58ae8a0eaa86f38365bc57897a6c4f781d1f5875bd", size = 21168, upload-time = "2026-02-16T03:56:08.891Z" }, +] + +[[package]] +name = "plotly" +version = "5.24.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging" }, + { name = "tenacity" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/79/4f/428f6d959818d7425a94c190a6b26fbc58035cbef40bf249be0b62a9aedd/plotly-5.24.1.tar.gz", hash = "sha256:dbc8ac8339d248a4bcc36e08a5659bacfe1b079390b8953533f4eb22169b4bae", size = 9479398, upload-time = "2024-09-12T15:36:31.068Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e5/ae/580600f441f6fc05218bd6c9d5794f4aef072a7d9093b291f1c50a9db8bc/plotly-5.24.1-py3-none-any.whl", hash = "sha256:f67073a1e637eb0dc3e46324d9d51e2fe76e9727c892dde64ddf1e1b51f29089", size = 19054220, upload-time = "2024-09-12T15:36:24.08Z" }, +] + +[[package]] +name = "polars" +version = "1.38.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "polars-runtime-32" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c6/5e/208a24471a433bcd0e9a6889ac49025fd4daad2815c8220c5bd2576e5f1b/polars-1.38.1.tar.gz", hash = "sha256:803a2be5344ef880ad625addfb8f641995cfd777413b08a10de0897345778239", size = 717667, upload-time = "2026-02-06T18:13:23.013Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0a/49/737c1a6273c585719858261753da0b688454d1b634438ccba8a9c4eb5aab/polars-1.38.1-py3-none-any.whl", hash = "sha256:a29479c48fed4984d88b656486d221f638cba45d3e961631a50ee5fdde38cb2c", size = 810368, upload-time = "2026-02-06T18:11:55.819Z" }, +] + +[[package]] +name = "polars-runtime-32" +version = "1.38.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/07/4b/04d6b3fb7cf336fbe12fbc4b43f36d1783e11bb0f2b1e3980ec44878df06/polars_runtime_32-1.38.1.tar.gz", hash = "sha256:04f20ed1f5c58771f34296a27029dc755a9e4b1390caeaef8f317e06fdfce2ec", size = 2812631, upload-time = "2026-02-06T18:13:25.206Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ae/a2/a00defbddadd8cf1042f52380dcba6b6592b03bac8e3b34c436b62d12d3b/polars_runtime_32-1.38.1-cp310-abi3-macosx_10_12_x86_64.whl", hash = "sha256:18154e96044724a0ac38ce155cf63aa03c02dd70500efbbf1a61b08cadd269ef", size = 44108001, upload-time = "2026-02-06T18:11:58.127Z" }, + { url = "https://files.pythonhosted.org/packages/a7/fb/599ff3709e6a303024efd7edfd08cf8de55c6ac39527d8f41cbc4399385f/polars_runtime_32-1.38.1-cp310-abi3-macosx_11_0_arm64.whl", hash = "sha256:c49acac34cc4049ed188f1eb67d6ff3971a39b4af7f7b734b367119970f313ac", size = 40230140, upload-time = "2026-02-06T18:12:01.181Z" }, + { url = "https://files.pythonhosted.org/packages/dc/8c/3ac18d6f89dc05fe2c7c0ee1dc5b81f77a5c85ad59898232c2500fe2ebbf/polars_runtime_32-1.38.1-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fef2ef2626a954e010e006cc8e4de467ecf32d08008f130cea1c78911f545323", size = 41994039, upload-time = "2026-02-06T18:12:04.332Z" }, + { url = "https://files.pythonhosted.org/packages/f2/5a/61d60ec5cc0ab37cbd5a699edb2f9af2875b7fdfdfb2a4608ca3cc5f0448/polars_runtime_32-1.38.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e8a5f7a8125e2d50e2e060296551c929aec09be23a9edcb2b12ca923f555a5ba", size = 45755804, upload-time = "2026-02-06T18:12:07.846Z" }, + { url = "https://files.pythonhosted.org/packages/91/54/02cd4074c98c361ccd3fec3bcb0bd68dbc639c0550c42a4436b0ff0f3ccf/polars_runtime_32-1.38.1-cp310-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:10d19cd9863e129273b18b7fcaab625b5c8143c2d22b3e549067b78efa32e4fa", size = 42159605, upload-time = "2026-02-06T18:12:10.919Z" }, + { url = "https://files.pythonhosted.org/packages/8e/f3/b2a5e720cc56eaa38b4518e63aa577b4bbd60e8b05a00fe43ca051be5879/polars_runtime_32-1.38.1-cp310-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:61e8d73c614b46a00d2f853625a7569a2e4a0999333e876354ac81d1bf1bb5e2", size = 45336615, upload-time = "2026-02-06T18:12:14.074Z" }, + { url = "https://files.pythonhosted.org/packages/f1/8d/ee2e4b7de948090cfb3df37d401c521233daf97bfc54ddec5d61d1d31618/polars_runtime_32-1.38.1-cp310-abi3-win_amd64.whl", hash = "sha256:08c2b3b93509c1141ac97891294ff5c5b0c548a373f583eaaea873a4bf506437", size = 45680732, upload-time = "2026-02-06T18:12:19.097Z" }, + { url = "https://files.pythonhosted.org/packages/bf/18/72c216f4ab0c82b907009668f79183ae029116ff0dd245d56ef58aac48e7/polars_runtime_32-1.38.1-cp310-abi3-win_arm64.whl", hash = "sha256:6d07d0cc832bfe4fb54b6e04218c2c27afcfa6b9498f9f6bbf262a00d58cc7c4", size = 41639413, upload-time = "2026-02-06T18:12:22.044Z" }, +] + +[[package]] +name = "polyfactory" +version = "3.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "faker" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/85/68/7717bd9e63ed254617a7d3dc9260904fb736d6ea203e58ffddcb186c64e4/polyfactory-3.3.0.tar.gz", hash = "sha256:237258b6ff43edf362ffd1f68086bb796466f786adfa002b0ac256dbf2246e9a", size = 348668, upload-time = "2026-02-22T09:46:28.01Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/dd/34/b6f19941adcdaf415b5e8a8d577499f5b6a76b59cbae37f9b125a9ffe9f2/polyfactory-3.3.0-py3-none-any.whl", hash = "sha256:686abcaa761930d3df87b91e95b26b8d8cb9fdbbbe0b03d5f918acff5c72606e", size = 62707, upload-time = "2026-02-22T09:46:25.985Z" }, +] + +[[package]] +name = "prometheus-client" +version = "0.24.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f0/58/a794d23feb6b00fc0c72787d7e87d872a6730dd9ed7c7b3e954637d8f280/prometheus_client-0.24.1.tar.gz", hash = "sha256:7e0ced7fbbd40f7b84962d5d2ab6f17ef88a72504dcf7c0b40737b43b2a461f9", size = 85616, upload-time = "2026-01-14T15:26:26.965Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/74/c3/24a2f845e3917201628ecaba4f18bab4d18a337834c1df2a159ee9d22a42/prometheus_client-0.24.1-py3-none-any.whl", hash = "sha256:150db128af71a5c2482b36e588fc8a6b95e498750da4b17065947c16070f4055", size = 64057, upload-time = "2026-01-14T15:26:24.42Z" }, +] + +[[package]] +name = "prompt-toolkit" +version = "3.0.52" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "wcwidth" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a1/96/06e01a7b38dce6fe1db213e061a4602dd6032a8a97ef6c1a862537732421/prompt_toolkit-3.0.52.tar.gz", hash = "sha256:28cde192929c8e7321de85de1ddbe736f1375148b02f2e17edd840042b1be855", size = 434198, upload-time = "2025-08-27T15:24:02.057Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/84/03/0d3ce49e2505ae70cf43bc5bb3033955d2fc9f932163e84dc0779cc47f48/prompt_toolkit-3.0.52-py3-none-any.whl", hash = "sha256:9aac639a3bbd33284347de5ad8d68ecc044b91a762dc39b7c21095fcd6a19955", size = 391431, upload-time = "2025-08-27T15:23:59.498Z" }, ] [[package]] @@ -1392,6 +3673,111 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/57/bf/2086963c69bdac3d7cff1cc7ff79b8ce5ea0bec6797a017e1be338a46248/protobuf-6.33.5-py3-none-any.whl", hash = "sha256:69915a973dd0f60f31a08b8318b73eab2bd6a392c79184b3612226b0a3f8ec02", size = 170687, upload-time = "2026-01-29T21:51:32.557Z" }, ] +[[package]] +name = "psutil" +version = "7.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/aa/c6/d1ddf4abb55e93cebc4f2ed8b5d6dbad109ecb8d63748dd2b20ab5e57ebe/psutil-7.2.2.tar.gz", hash = "sha256:0746f5f8d406af344fd547f1c8daa5f5c33dbc293bb8d6a16d80b4bb88f59372", size = 493740, upload-time = "2026-01-28T18:14:54.428Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/51/08/510cbdb69c25a96f4ae523f733cdc963ae654904e8db864c07585ef99875/psutil-7.2.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:2edccc433cbfa046b980b0df0171cd25bcaeb3a68fe9022db0979e7aa74a826b", size = 130595, upload-time = "2026-01-28T18:14:57.293Z" }, + { url = "https://files.pythonhosted.org/packages/d6/f5/97baea3fe7a5a9af7436301f85490905379b1c6f2dd51fe3ecf24b4c5fbf/psutil-7.2.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:e78c8603dcd9a04c7364f1a3e670cea95d51ee865e4efb3556a3a63adef958ea", size = 131082, upload-time = "2026-01-28T18:14:59.732Z" }, + { url = "https://files.pythonhosted.org/packages/37/d6/246513fbf9fa174af531f28412297dd05241d97a75911ac8febefa1a53c6/psutil-7.2.2-cp313-cp313t-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1a571f2330c966c62aeda00dd24620425d4b0cc86881c89861fbc04549e5dc63", size = 181476, upload-time = "2026-01-28T18:15:01.884Z" }, + { url = "https://files.pythonhosted.org/packages/b8/b5/9182c9af3836cca61696dabe4fd1304e17bc56cb62f17439e1154f225dd3/psutil-7.2.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:917e891983ca3c1887b4ef36447b1e0873e70c933afc831c6b6da078ba474312", size = 184062, upload-time = "2026-01-28T18:15:04.436Z" }, + { url = "https://files.pythonhosted.org/packages/16/ba/0756dca669f5a9300d0cbcbfae9a4c30e446dfc7440ffe43ded5724bfd93/psutil-7.2.2-cp313-cp313t-win_amd64.whl", hash = "sha256:ab486563df44c17f5173621c7b198955bd6b613fb87c71c161f827d3fb149a9b", size = 139893, upload-time = "2026-01-28T18:15:06.378Z" }, + { url = "https://files.pythonhosted.org/packages/1c/61/8fa0e26f33623b49949346de05ec1ddaad02ed8ba64af45f40a147dbfa97/psutil-7.2.2-cp313-cp313t-win_arm64.whl", hash = "sha256:ae0aefdd8796a7737eccea863f80f81e468a1e4cf14d926bd9b6f5f2d5f90ca9", size = 135589, upload-time = "2026-01-28T18:15:08.03Z" }, + { url = "https://files.pythonhosted.org/packages/81/69/ef179ab5ca24f32acc1dac0c247fd6a13b501fd5534dbae0e05a1c48b66d/psutil-7.2.2-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:eed63d3b4d62449571547b60578c5b2c4bcccc5387148db46e0c2313dad0ee00", size = 130664, upload-time = "2026-01-28T18:15:09.469Z" }, + { url = "https://files.pythonhosted.org/packages/7b/64/665248b557a236d3fa9efc378d60d95ef56dd0a490c2cd37dafc7660d4a9/psutil-7.2.2-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:7b6d09433a10592ce39b13d7be5a54fbac1d1228ed29abc880fb23df7cb694c9", size = 131087, upload-time = "2026-01-28T18:15:11.724Z" }, + { url = "https://files.pythonhosted.org/packages/d5/2e/e6782744700d6759ebce3043dcfa661fb61e2fb752b91cdeae9af12c2178/psutil-7.2.2-cp314-cp314t-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1fa4ecf83bcdf6e6c8f4449aff98eefb5d0604bf88cb883d7da3d8d2d909546a", size = 182383, upload-time = "2026-01-28T18:15:13.445Z" }, + { url = "https://files.pythonhosted.org/packages/57/49/0a41cefd10cb7505cdc04dab3eacf24c0c2cb158a998b8c7b1d27ee2c1f5/psutil-7.2.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e452c464a02e7dc7822a05d25db4cde564444a67e58539a00f929c51eddda0cf", size = 185210, upload-time = "2026-01-28T18:15:16.002Z" }, + { url = "https://files.pythonhosted.org/packages/dd/2c/ff9bfb544f283ba5f83ba725a3c5fec6d6b10b8f27ac1dc641c473dc390d/psutil-7.2.2-cp314-cp314t-win_amd64.whl", hash = "sha256:c7663d4e37f13e884d13994247449e9f8f574bc4655d509c3b95e9ec9e2b9dc1", size = 141228, upload-time = "2026-01-28T18:15:18.385Z" }, + { url = "https://files.pythonhosted.org/packages/f2/fc/f8d9c31db14fcec13748d373e668bc3bed94d9077dbc17fb0eebc073233c/psutil-7.2.2-cp314-cp314t-win_arm64.whl", hash = "sha256:11fe5a4f613759764e79c65cf11ebdf26e33d6dd34336f8a337aa2996d71c841", size = 136284, upload-time = "2026-01-28T18:15:19.912Z" }, + { url = "https://files.pythonhosted.org/packages/e7/36/5ee6e05c9bd427237b11b3937ad82bb8ad2752d72c6969314590dd0c2f6e/psutil-7.2.2-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:ed0cace939114f62738d808fdcecd4c869222507e266e574799e9c0faa17d486", size = 129090, upload-time = "2026-01-28T18:15:22.168Z" }, + { url = "https://files.pythonhosted.org/packages/80/c4/f5af4c1ca8c1eeb2e92ccca14ce8effdeec651d5ab6053c589b074eda6e1/psutil-7.2.2-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:1a7b04c10f32cc88ab39cbf606e117fd74721c831c98a27dc04578deb0c16979", size = 129859, upload-time = "2026-01-28T18:15:23.795Z" }, + { url = "https://files.pythonhosted.org/packages/b5/70/5d8df3b09e25bce090399cf48e452d25c935ab72dad19406c77f4e828045/psutil-7.2.2-cp36-abi3-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:076a2d2f923fd4821644f5ba89f059523da90dc9014e85f8e45a5774ca5bc6f9", size = 155560, upload-time = "2026-01-28T18:15:25.976Z" }, + { url = "https://files.pythonhosted.org/packages/63/65/37648c0c158dc222aba51c089eb3bdfa238e621674dc42d48706e639204f/psutil-7.2.2-cp36-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b0726cecd84f9474419d67252add4ac0cd9811b04d61123054b9fb6f57df6e9e", size = 156997, upload-time = "2026-01-28T18:15:27.794Z" }, + { url = "https://files.pythonhosted.org/packages/8e/13/125093eadae863ce03c6ffdbae9929430d116a246ef69866dad94da3bfbc/psutil-7.2.2-cp36-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:fd04ef36b4a6d599bbdb225dd1d3f51e00105f6d48a28f006da7f9822f2606d8", size = 148972, upload-time = "2026-01-28T18:15:29.342Z" }, + { url = "https://files.pythonhosted.org/packages/04/78/0acd37ca84ce3ddffaa92ef0f571e073faa6d8ff1f0559ab1272188ea2be/psutil-7.2.2-cp36-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b58fabe35e80b264a4e3bb23e6b96f9e45a3df7fb7eed419ac0e5947c61e47cc", size = 148266, upload-time = "2026-01-28T18:15:31.597Z" }, + { url = "https://files.pythonhosted.org/packages/b4/90/e2159492b5426be0c1fef7acba807a03511f97c5f86b3caeda6ad92351a7/psutil-7.2.2-cp37-abi3-win_amd64.whl", hash = "sha256:eb7e81434c8d223ec4a219b5fc1c47d0417b12be7ea866e24fb5ad6e84b3d988", size = 137737, upload-time = "2026-01-28T18:15:33.849Z" }, + { url = "https://files.pythonhosted.org/packages/8c/c7/7bb2e321574b10df20cbde462a94e2b71d05f9bbda251ef27d104668306a/psutil-7.2.2-cp37-abi3-win_arm64.whl", hash = "sha256:8c233660f575a5a89e6d4cb65d9f938126312bca76d8fe087b947b3a1aaac9ee", size = 134617, upload-time = "2026-01-28T18:15:36.514Z" }, +] + +[[package]] +name = "ptyprocess" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/20/e5/16ff212c1e452235a90aeb09066144d0c5a6a8c0834397e03f5224495c4e/ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220", size = 70762, upload-time = "2020-12-28T15:15:30.155Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/22/a6/858897256d0deac81a172289110f31629fc4cee19b6f01283303e18c8db3/ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35", size = 13993, upload-time = "2020-12-28T15:15:28.35Z" }, +] + +[[package]] +name = "pure-eval" +version = "0.2.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cd/05/0a34433a064256a578f1783a10da6df098ceaa4a57bbeaa96a6c0352786b/pure_eval-0.2.3.tar.gz", hash = "sha256:5f4e983f40564c576c7c8635ae88db5956bb2229d7e9237d03b3c0b0190eaf42", size = 19752, upload-time = "2024-07-21T12:58:21.801Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl", hash = "sha256:1db8e35b67b3d218d818ae653e27f06c3aa420901fa7b081ca98cbedc874e0d0", size = 11842, upload-time = "2024-07-21T12:58:20.04Z" }, +] + +[[package]] +name = "pyarrow" +version = "23.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/88/22/134986a4cc224d593c1afde5494d18ff629393d74cc2eddb176669f234a4/pyarrow-23.0.1.tar.gz", hash = "sha256:b8c5873e33440b2bc2f4a79d2b47017a89c5a24116c055625e6f2ee50523f019", size = 1167336, upload-time = "2026-02-16T10:14:12.39Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b0/41/8e6b6ef7e225d4ceead8459427a52afdc23379768f54dd3566014d7618c1/pyarrow-23.0.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:6f0147ee9e0386f519c952cc670eb4a8b05caa594eeffe01af0e25f699e4e9bb", size = 34302230, upload-time = "2026-02-16T10:09:03.859Z" }, + { url = "https://files.pythonhosted.org/packages/bf/4a/1472c00392f521fea03ae93408bf445cc7bfa1ab81683faf9bc188e36629/pyarrow-23.0.1-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:0ae6e17c828455b6265d590100c295193f93cc5675eb0af59e49dbd00d2de350", size = 35850050, upload-time = "2026-02-16T10:09:11.877Z" }, + { url = "https://files.pythonhosted.org/packages/0c/b2/bd1f2f05ded56af7f54d702c8364c9c43cd6abb91b0e9933f3d77b4f4132/pyarrow-23.0.1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:fed7020203e9ef273360b9e45be52a2a47d3103caf156a30ace5247ffb51bdbd", size = 44491918, upload-time = "2026-02-16T10:09:18.144Z" }, + { url = "https://files.pythonhosted.org/packages/0b/62/96459ef5b67957eac38a90f541d1c28833d1b367f014a482cb63f3b7cd2d/pyarrow-23.0.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:26d50dee49d741ac0e82185033488d28d35be4d763ae6f321f97d1140eb7a0e9", size = 47562811, upload-time = "2026-02-16T10:09:25.792Z" }, + { url = "https://files.pythonhosted.org/packages/7d/94/1170e235add1f5f45a954e26cd0e906e7e74e23392dcb560de471f7366ec/pyarrow-23.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:3c30143b17161310f151f4a2bcfe41b5ff744238c1039338779424e38579d701", size = 48183766, upload-time = "2026-02-16T10:09:34.645Z" }, + { url = "https://files.pythonhosted.org/packages/0e/2d/39a42af4570377b99774cdb47f63ee6c7da7616bd55b3d5001aa18edfe4f/pyarrow-23.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:db2190fa79c80a23fdd29fef4b8992893f024ae7c17d2f5f4db7171fa30c2c78", size = 50607669, upload-time = "2026-02-16T10:09:44.153Z" }, + { url = "https://files.pythonhosted.org/packages/00/ca/db94101c187f3df742133ac837e93b1f269ebdac49427f8310ee40b6a58f/pyarrow-23.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:f00f993a8179e0e1c9713bcc0baf6d6c01326a406a9c23495ec1ba9c9ebf2919", size = 27527698, upload-time = "2026-02-16T10:09:50.263Z" }, + { url = "https://files.pythonhosted.org/packages/9a/4b/4166bb5abbfe6f750fc60ad337c43ecf61340fa52ab386da6e8dbf9e63c4/pyarrow-23.0.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:f4b0dbfa124c0bb161f8b5ebb40f1a680b70279aa0c9901d44a2b5a20806039f", size = 34214575, upload-time = "2026-02-16T10:09:56.225Z" }, + { url = "https://files.pythonhosted.org/packages/e1/da/3f941e3734ac8088ea588b53e860baeddac8323ea40ce22e3d0baa865cc9/pyarrow-23.0.1-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:7707d2b6673f7de054e2e83d59f9e805939038eebe1763fe811ee8fa5c0cd1a7", size = 35832540, upload-time = "2026-02-16T10:10:03.428Z" }, + { url = "https://files.pythonhosted.org/packages/88/7c/3d841c366620e906d54430817531b877ba646310296df42ef697308c2705/pyarrow-23.0.1-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:86ff03fb9f1a320266e0de855dee4b17da6794c595d207f89bba40d16b5c78b9", size = 44470940, upload-time = "2026-02-16T10:10:10.704Z" }, + { url = "https://files.pythonhosted.org/packages/2c/a5/da83046273d990f256cb79796a190bbf7ec999269705ddc609403f8c6b06/pyarrow-23.0.1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:813d99f31275919c383aab17f0f455a04f5a429c261cc411b1e9a8f5e4aaaa05", size = 47586063, upload-time = "2026-02-16T10:10:17.95Z" }, + { url = "https://files.pythonhosted.org/packages/5b/3c/b7d2ebcff47a514f47f9da1e74b7949138c58cfeb108cdd4ee62f43f0cf3/pyarrow-23.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:bf5842f960cddd2ef757d486041d57c96483efc295a8c4a0e20e704cbbf39c67", size = 48173045, upload-time = "2026-02-16T10:10:25.363Z" }, + { url = "https://files.pythonhosted.org/packages/43/b2/b40961262213beaba6acfc88698eb773dfce32ecdf34d19291db94c2bd73/pyarrow-23.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:564baf97c858ecc03ec01a41062e8f4698abc3e6e2acd79c01c2e97880a19730", size = 50621741, upload-time = "2026-02-16T10:10:33.477Z" }, + { url = "https://files.pythonhosted.org/packages/f6/70/1fdda42d65b28b078e93d75d371b2185a61da89dda4def8ba6ba41ebdeb4/pyarrow-23.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:07deae7783782ac7250989a7b2ecde9b3c343a643f82e8a4df03d93b633006f0", size = 27620678, upload-time = "2026-02-16T10:10:39.31Z" }, + { url = "https://files.pythonhosted.org/packages/47/10/2cbe4c6f0fb83d2de37249567373d64327a5e4d8db72f486db42875b08f6/pyarrow-23.0.1-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:6b8fda694640b00e8af3c824f99f789e836720aa8c9379fb435d4c4953a756b8", size = 34210066, upload-time = "2026-02-16T10:10:45.487Z" }, + { url = "https://files.pythonhosted.org/packages/cb/4f/679fa7e84dadbaca7a65f7cdba8d6c83febbd93ca12fa4adf40ba3b6362b/pyarrow-23.0.1-cp313-cp313-macosx_12_0_x86_64.whl", hash = "sha256:8ff51b1addc469b9444b7c6f3548e19dc931b172ab234e995a60aea9f6e6025f", size = 35825526, upload-time = "2026-02-16T10:10:52.266Z" }, + { url = "https://files.pythonhosted.org/packages/f9/63/d2747d930882c9d661e9398eefc54f15696547b8983aaaf11d4a2e8b5426/pyarrow-23.0.1-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:71c5be5cbf1e1cb6169d2a0980850bccb558ddc9b747b6206435313c47c37677", size = 44473279, upload-time = "2026-02-16T10:11:01.557Z" }, + { url = "https://files.pythonhosted.org/packages/b3/93/10a48b5e238de6d562a411af6467e71e7aedbc9b87f8d3a35f1560ae30fb/pyarrow-23.0.1-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:9b6f4f17b43bc39d56fec96e53fe89d94bac3eb134137964371b45352d40d0c2", size = 47585798, upload-time = "2026-02-16T10:11:09.401Z" }, + { url = "https://files.pythonhosted.org/packages/5c/20/476943001c54ef078dbf9542280e22741219a184a0632862bca4feccd666/pyarrow-23.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:9fc13fc6c403d1337acab46a2c4346ca6c9dec5780c3c697cf8abfd5e19b6b37", size = 48179446, upload-time = "2026-02-16T10:11:17.781Z" }, + { url = "https://files.pythonhosted.org/packages/4b/b6/5dd0c47b335fcd8edba9bfab78ad961bd0fd55ebe53468cc393f45e0be60/pyarrow-23.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5c16ed4f53247fa3ffb12a14d236de4213a4415d127fe9cebed33d51671113e2", size = 50623972, upload-time = "2026-02-16T10:11:26.185Z" }, + { url = "https://files.pythonhosted.org/packages/d5/09/a532297c9591a727d67760e2e756b83905dd89adb365a7f6e9c72578bcc1/pyarrow-23.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:cecfb12ef629cf6be0b1887f9f86463b0dd3dc3195ae6224e74006be4736035a", size = 27540749, upload-time = "2026-02-16T10:12:23.297Z" }, + { url = "https://files.pythonhosted.org/packages/a5/8e/38749c4b1303e6ae76b3c80618f84861ae0c55dd3c2273842ea6f8258233/pyarrow-23.0.1-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:29f7f7419a0e30264ea261fdc0e5fe63ce5a6095003db2945d7cd78df391a7e1", size = 34471544, upload-time = "2026-02-16T10:11:32.535Z" }, + { url = "https://files.pythonhosted.org/packages/a3/73/f237b2bc8c669212f842bcfd842b04fc8d936bfc9d471630569132dc920d/pyarrow-23.0.1-cp313-cp313t-macosx_12_0_x86_64.whl", hash = "sha256:33d648dc25b51fd8055c19e4261e813dfc4d2427f068bcecc8b53d01b81b0500", size = 35949911, upload-time = "2026-02-16T10:11:39.813Z" }, + { url = "https://files.pythonhosted.org/packages/0c/86/b912195eee0903b5611bf596833def7d146ab2d301afeb4b722c57ffc966/pyarrow-23.0.1-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:cd395abf8f91c673dd3589cadc8cc1ee4e8674fa61b2e923c8dd215d9c7d1f41", size = 44520337, upload-time = "2026-02-16T10:11:47.764Z" }, + { url = "https://files.pythonhosted.org/packages/69/c2/f2a717fb824f62d0be952ea724b4f6f9372a17eed6f704b5c9526f12f2f1/pyarrow-23.0.1-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:00be9576d970c31defb5c32eb72ef585bf600ef6d0a82d5eccaae96639cf9d07", size = 47548944, upload-time = "2026-02-16T10:11:56.607Z" }, + { url = "https://files.pythonhosted.org/packages/84/a7/90007d476b9f0dc308e3bc57b832d004f848fd6c0da601375d20d92d1519/pyarrow-23.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:c2139549494445609f35a5cda4eb94e2c9e4d704ce60a095b342f82460c73a83", size = 48236269, upload-time = "2026-02-16T10:12:04.47Z" }, + { url = "https://files.pythonhosted.org/packages/b0/3f/b16fab3e77709856eb6ac328ce35f57a6d4a18462c7ca5186ef31b45e0e0/pyarrow-23.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:7044b442f184d84e2351e5084600f0d7343d6117aabcbc1ac78eb1ae11eb4125", size = 50604794, upload-time = "2026-02-16T10:12:11.797Z" }, + { url = "https://files.pythonhosted.org/packages/e9/a1/22df0620a9fac31d68397a75465c344e83c3dfe521f7612aea33e27ab6c0/pyarrow-23.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:a35581e856a2fafa12f3f54fce4331862b1cfb0bef5758347a858a4aa9d6bae8", size = 27660642, upload-time = "2026-02-16T10:12:17.746Z" }, + { url = "https://files.pythonhosted.org/packages/8d/1b/6da9a89583ce7b23ac611f183ae4843cd3a6cf54f079549b0e8c14031e73/pyarrow-23.0.1-cp314-cp314-macosx_12_0_arm64.whl", hash = "sha256:5df1161da23636a70838099d4aaa65142777185cc0cdba4037a18cee7d8db9ca", size = 34238755, upload-time = "2026-02-16T10:12:32.819Z" }, + { url = "https://files.pythonhosted.org/packages/ae/b5/d58a241fbe324dbaeb8df07be6af8752c846192d78d2272e551098f74e88/pyarrow-23.0.1-cp314-cp314-macosx_12_0_x86_64.whl", hash = "sha256:fa8e51cb04b9f8c9c5ace6bab63af9a1f88d35c0d6cbf53e8c17c098552285e1", size = 35847826, upload-time = "2026-02-16T10:12:38.949Z" }, + { url = "https://files.pythonhosted.org/packages/54/a5/8cbc83f04aba433ca7b331b38f39e000efd9f0c7ce47128670e737542996/pyarrow-23.0.1-cp314-cp314-manylinux_2_28_aarch64.whl", hash = "sha256:0b95a3994f015be13c63148fef8832e8a23938128c185ee951c98908a696e0eb", size = 44536859, upload-time = "2026-02-16T10:12:45.467Z" }, + { url = "https://files.pythonhosted.org/packages/36/2e/c0f017c405fcdc252dbccafbe05e36b0d0eb1ea9a958f081e01c6972927f/pyarrow-23.0.1-cp314-cp314-manylinux_2_28_x86_64.whl", hash = "sha256:4982d71350b1a6e5cfe1af742c53dfb759b11ce14141870d05d9e540d13bc5d1", size = 47614443, upload-time = "2026-02-16T10:12:55.525Z" }, + { url = "https://files.pythonhosted.org/packages/af/6b/2314a78057912f5627afa13ba43809d9d653e6630859618b0fd81a4e0759/pyarrow-23.0.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:c250248f1fe266db627921c89b47b7c06fee0489ad95b04d50353537d74d6886", size = 48232991, upload-time = "2026-02-16T10:13:04.729Z" }, + { url = "https://files.pythonhosted.org/packages/40/f2/1bcb1d3be3460832ef3370d621142216e15a2c7c62602a4ea19ec240dd64/pyarrow-23.0.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:5f4763b83c11c16e5f4c15601ba6dfa849e20723b46aa2617cb4bffe8768479f", size = 50645077, upload-time = "2026-02-16T10:13:14.147Z" }, + { url = "https://files.pythonhosted.org/packages/eb/3f/b1da7b61cd66566a4d4c8383d376c606d1c34a906c3f1cb35c479f59d1aa/pyarrow-23.0.1-cp314-cp314-win_amd64.whl", hash = "sha256:3a4c85ef66c134161987c17b147d6bffdca4566f9a4c1d81a0a01cdf08414ea5", size = 28234271, upload-time = "2026-02-16T10:14:09.397Z" }, + { url = "https://files.pythonhosted.org/packages/b5/78/07f67434e910a0f7323269be7bfbf58699bd0c1d080b18a1ab49ba943fe8/pyarrow-23.0.1-cp314-cp314t-macosx_12_0_arm64.whl", hash = "sha256:17cd28e906c18af486a499422740298c52d7c6795344ea5002a7720b4eadf16d", size = 34488692, upload-time = "2026-02-16T10:13:21.541Z" }, + { url = "https://files.pythonhosted.org/packages/50/76/34cf7ae93ece1f740a04910d9f7e80ba166b9b4ab9596a953e9e62b90fe1/pyarrow-23.0.1-cp314-cp314t-macosx_12_0_x86_64.whl", hash = "sha256:76e823d0e86b4fb5e1cf4a58d293036e678b5a4b03539be933d3b31f9406859f", size = 35964383, upload-time = "2026-02-16T10:13:28.63Z" }, + { url = "https://files.pythonhosted.org/packages/46/90/459b827238936d4244214be7c684e1b366a63f8c78c380807ae25ed92199/pyarrow-23.0.1-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:a62e1899e3078bf65943078b3ad2a6ddcacf2373bc06379aac61b1e548a75814", size = 44538119, upload-time = "2026-02-16T10:13:35.506Z" }, + { url = "https://files.pythonhosted.org/packages/28/a1/93a71ae5881e99d1f9de1d4554a87be37da11cd6b152239fb5bd924fdc64/pyarrow-23.0.1-cp314-cp314t-manylinux_2_28_x86_64.whl", hash = "sha256:df088e8f640c9fae3b1f495b3c64755c4e719091caf250f3a74d095ddf3c836d", size = 47571199, upload-time = "2026-02-16T10:13:42.504Z" }, + { url = "https://files.pythonhosted.org/packages/88/a3/d2c462d4ef313521eaf2eff04d204ac60775263f1fb08c374b543f79f610/pyarrow-23.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:46718a220d64677c93bc243af1d44b55998255427588e400677d7192671845c7", size = 48259435, upload-time = "2026-02-16T10:13:49.226Z" }, + { url = "https://files.pythonhosted.org/packages/cc/f1/11a544b8c3d38a759eb3fbb022039117fd633e9a7b19e4841cc3da091915/pyarrow-23.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:a09f3876e87f48bc2f13583ab551f0379e5dfb83210391e68ace404181a20690", size = 50629149, upload-time = "2026-02-16T10:13:57.238Z" }, + { url = "https://files.pythonhosted.org/packages/50/f2/c0e76a0b451ffdf0cf788932e182758eb7558953f4f27f1aff8e2518b653/pyarrow-23.0.1-cp314-cp314t-win_amd64.whl", hash = "sha256:527e8d899f14bd15b740cd5a54ad56b7f98044955373a17179d5956ddb93d9ce", size = 28365807, upload-time = "2026-02-16T10:14:03.892Z" }, +] + +[[package]] +name = "pycparser" +version = "3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1b/7d/92392ff7815c21062bea51aa7b87d45576f649f16458d78b7cf94b9ab2e6/pycparser-3.0.tar.gz", hash = "sha256:600f49d217304a5902ac3c37e1281c9fe94e4d0489de643a9504c5cdfdfc6b29", size = 103492, upload-time = "2026-01-21T14:26:51.89Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0c/c3/44f3fbbfa403ea2a7c779186dc20772604442dde72947e7d01069cbe98e3/pycparser-3.0-py3-none-any.whl", hash = "sha256:b727414169a36b7d524c1c3e31839a521725078d7b2ff038656844266160a992", size = 48172, upload-time = "2026-01-21T14:26:50.693Z" }, +] + [[package]] name = "pydantic" version = "2.12.5" @@ -1506,16 +3892,34 @@ wheels = [ [[package]] name = "pydantic-settings" -version = "2.12.0" +version = "2.13.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "pydantic" }, { name = "python-dotenv" }, { name = "typing-inspection" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/43/4b/ac7e0aae12027748076d72a8764ff1c9d82ca75a7a52622e67ed3f765c54/pydantic_settings-2.12.0.tar.gz", hash = "sha256:005538ef951e3c2a68e1c08b292b5f2e71490def8589d4221b95dab00dafcfd0", size = 194184, upload-time = "2025-11-10T14:25:47.013Z" } +sdist = { url = "https://files.pythonhosted.org/packages/52/6d/fffca34caecc4a3f97bda81b2098da5e8ab7efc9a66e819074a11955d87e/pydantic_settings-2.13.1.tar.gz", hash = "sha256:b4c11847b15237fb0171e1462bf540e294affb9b86db4d9aa5c01730bdbe4025", size = 223826, upload-time = "2026-02-19T13:45:08.055Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c1/60/5d4751ba3f4a40a6891f24eec885f51afd78d208498268c734e256fb13c4/pydantic_settings-2.12.0-py3-none-any.whl", hash = "sha256:fddb9fd99a5b18da837b29710391e945b1e30c135477f484084ee513adb93809", size = 51880, upload-time = "2025-11-10T14:25:45.546Z" }, + { url = "https://files.pythonhosted.org/packages/00/4b/ccc026168948fec4f7555b9164c724cf4125eac006e176541483d2c959be/pydantic_settings-2.13.1-py3-none-any.whl", hash = "sha256:d56fd801823dbeae7f0975e1f8c8e25c258eb75d278ea7abb5d9cebb01b56237", size = 58929, upload-time = "2026-02-19T13:45:06.034Z" }, +] + +[[package]] +name = "pygments" +version = "2.19.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b0/77/a5b8c569bf593b0140bde72ea885a803b82086995367bf2037de0159d924/pygments-2.19.2.tar.gz", hash = "sha256:636cb2477cec7f8952536970bc533bc43743542f70392ae026374600add5b887", size = 4968631, upload-time = "2025-06-21T13:39:12.283Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c7/21/705964c7812476f378728bdf590ca4b771ec72385c533964653c68e86bdc/pygments-2.19.2-py3-none-any.whl", hash = "sha256:86540386c03d588bb81d44bc3928634ff26449851e99741617ecb9037ee5ec0b", size = 1225217, upload-time = "2025-06-21T13:39:07.939Z" }, +] + +[[package]] +name = "pysocks" +version = "1.7.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bd/11/293dd436aea955d45fc4e8a35b6ae7270f5b8e00b53cf6c024c83b657a11/PySocks-1.7.1.tar.gz", hash = "sha256:3f8804571ebe159c380ac6de37643bb4685970655d3bba243530d6558b799aa0", size = 284429, upload-time = "2019-09-20T02:07:35.714Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8d/59/b4572118e098ac8e46e399a1dd0f2d85403ce8bbaad9ec79373ed6badaf9/PySocks-1.7.1-py3-none-any.whl", hash = "sha256:2725bd0a9925919b9b51739eea5f9e2bae91e83288108a9ad338b2e3a4435ee5", size = 16725, upload-time = "2019-09-20T02:06:22.938Z" }, ] [[package]] @@ -1539,6 +3943,65 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/14/1b/a298b06749107c305e1fe0f814c6c74aea7b2f1e10989cb30f544a1b3253/python_dotenv-1.2.1-py3-none-any.whl", hash = "sha256:b81ee9561e9ca4004139c6cbba3a238c32b03e4894671e181b671e8cb8425d61", size = 21230, upload-time = "2025-10-26T15:12:09.109Z" }, ] +[[package]] +name = "python-json-logger" +version = "4.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/29/bf/eca6a3d43db1dae7070f70e160ab20b807627ba953663ba07928cdd3dc58/python_json_logger-4.0.0.tar.gz", hash = "sha256:f58e68eb46e1faed27e0f574a55a0455eecd7b8a5b88b85a784519ba3cff047f", size = 17683, upload-time = "2025-10-06T04:15:18.984Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/51/e5/fecf13f06e5e5f67e8837d777d1bc43fac0ed2b77a676804df5c34744727/python_json_logger-4.0.0-py3-none-any.whl", hash = "sha256:af09c9daf6a813aa4cc7180395f50f2a9e5fa056034c9953aec92e381c5ba1e2", size = 15548, upload-time = "2025-10-06T04:15:17.553Z" }, +] + +[[package]] +name = "pytrec-eval-terrier" +version = "0.5.10" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "scipy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/04/96/4925a95e4865a647bc74d3bb052243d12a3c8e8a34909d7d097b5a4d08c5/pytrec_eval_terrier-0.5.10.tar.gz", hash = "sha256:eaaf20580d17b5575a233e04dab8a4cbcc01a7e45be8cf547c07f0a2bb3e7eb9", size = 18634, upload-time = "2025-10-20T16:50:18.098Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/de/7659555355381e57a73e7ba31437dc31d3df146b5cc3fb66eb032683e84e/pytrec_eval_terrier-0.5.10-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:1036735d4a12d1c92eea38a14a071168a292f8696099e90742c2c701479f010b", size = 136866, upload-time = "2025-10-20T16:50:40.054Z" }, + { url = "https://files.pythonhosted.org/packages/d3/d7/1cbc2d3936eec51b57e1146840eb3ccd8a9fb2debc519d7aa748f13dd724/pytrec_eval_terrier-0.5.10-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b36a2fbdccc7669c4b8aba1f6de2a661e6f2f77c10f05855eda55dda60fc88f5", size = 304025, upload-time = "2025-10-20T16:54:15.957Z" }, + { url = "https://files.pythonhosted.org/packages/7a/a2/84c93f0a260d0dabca007a02b206981d235c7f4b4c569ec746b5ef6d965b/pytrec_eval_terrier-0.5.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9e4ca19110f24922d7435cf9ef9951a61f0b575488b6a1db86081d82b88dd621", size = 1327402, upload-time = "2025-10-20T16:54:16.842Z" }, + { url = "https://files.pythonhosted.org/packages/4e/ee/3a20da0523228f54d8b89b9a11d7ec402625086cc3167fb940e36a9e2d5b/pytrec_eval_terrier-0.5.10-cp311-cp311-win_amd64.whl", hash = "sha256:d36e9a8966560ed10bc5aeb30c5c29a53d3fe8e4ccb6ff6bb026bffb21be3fe3", size = 58558, upload-time = "2025-10-20T16:51:46.032Z" }, + { url = "https://files.pythonhosted.org/packages/d3/ca/f0edd9df08c08c96d2f088c298cfb824c3ee816302ac1f911ecb1bfdd681/pytrec_eval_terrier-0.5.10-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:e28c3c14728713cdbad165964e2d1aba96b0fc7445a5a13168b398e9bd3bbd08", size = 137179, upload-time = "2025-10-20T16:51:07.809Z" }, + { url = "https://files.pythonhosted.org/packages/73/55/e02a14b0d3ac520849f66391f03c6783b3383fd23a19372d07a2280b815e/pytrec_eval_terrier-0.5.10-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:689ee541d72c27d14ae15cd1f11d2cb86cf9bdc880f5e8af9c5dbbdd47663d4d", size = 304845, upload-time = "2025-10-20T16:54:17.791Z" }, + { url = "https://files.pythonhosted.org/packages/76/9c/9020b700199b09ebdfc6dbadae81641a49555c4ee21dedbe2aa98af601b5/pytrec_eval_terrier-0.5.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3f02118dadd3c09b71462bb26e405e49bd10fe0c60bcc169fcd31454a4256dc2", size = 1327965, upload-time = "2025-10-20T16:54:18.743Z" }, + { url = "https://files.pythonhosted.org/packages/39/9e/6e7c2b89f52e1cebeef6c3bb47272f5bd69766ddbc6e9e5445da0c876899/pytrec_eval_terrier-0.5.10-cp312-cp312-win_amd64.whl", hash = "sha256:202e48fe24948453fe45dcd73261f9865f99cb2ff4c8a3255ac2ab4c993a64ba", size = 58641, upload-time = "2025-10-20T16:51:26.148Z" }, + { url = "https://files.pythonhosted.org/packages/93/21/71a0dee7e2cd368237432af6bf6051ffde03370730dc1666cd39494c82a7/pytrec_eval_terrier-0.5.10-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:fcf96c33446c16de8db78e829c5279f7404ceaaf6b502bb5a6a3669b06051601", size = 137186, upload-time = "2025-10-20T16:50:22.941Z" }, + { url = "https://files.pythonhosted.org/packages/5c/8c/2494edf20d726bdd3ee0a20dc5ed84351c6cc6ccc17b11b474e315808762/pytrec_eval_terrier-0.5.10-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8455485f1faf6759f1be11b12c904d1c749ba5db7e2b6f414aa56e19533ce069", size = 304917, upload-time = "2025-10-20T16:54:20.486Z" }, + { url = "https://files.pythonhosted.org/packages/cf/51/7611546afb55548e65db35354a63b90d5fd5ea593fc64e5993088bf61415/pytrec_eval_terrier-0.5.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e7cc9666305281b0ca1873761dc71cd3f0863e6d759f00a12fd363aa2d558d6f", size = 1327998, upload-time = "2025-10-20T16:54:21.375Z" }, + { url = "https://files.pythonhosted.org/packages/74/b3/20941b4dbe3b267271ed1ef80aa93b348da674aecb5d6aca8f311c4738b0/pytrec_eval_terrier-0.5.10-cp313-cp313-win_amd64.whl", hash = "sha256:9440bd4a78ee0bc5db6821d7483e962a6c494303fd26598f84f00d54cc64cdd7", size = 58631, upload-time = "2025-10-20T16:51:05.08Z" }, + { url = "https://files.pythonhosted.org/packages/f0/34/e3d0f75286151d97537309b3f311e1269b0194e3823038fc39054e84c3b4/pytrec_eval_terrier-0.5.10-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:70bc61b8d02e61a37ed97c088282bb0a124b58e7141cc52756512750efabacbb", size = 137320, upload-time = "2025-10-20T16:50:50.92Z" }, + { url = "https://files.pythonhosted.org/packages/1c/72/2c1f9fd44ed7a5657654a712e5255019d5d23ba2b3d53848da1838bfb8df/pytrec_eval_terrier-0.5.10-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d52d94803c32cadbff7fe5195b0d0d68d27393092f64207fe8250a4485d1f8d7", size = 304917, upload-time = "2025-10-20T16:54:22.59Z" }, + { url = "https://files.pythonhosted.org/packages/66/9d/7e440de7b37dd31cd78eefe2ec1bf3e5f49db42b17b34dc8d6006ee03fc5/pytrec_eval_terrier-0.5.10-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:77950d0ce9bd960af40efede6850e7b6519400e7fda3f9313e0d0d02c247e4e2", size = 1327991, upload-time = "2025-10-20T16:54:23.76Z" }, + { url = "https://files.pythonhosted.org/packages/ef/94/5639d7c346935a75540c1f1798be277c161b561001f2a91ef303e3d85f10/pytrec_eval_terrier-0.5.10-cp314-cp314-win_amd64.whl", hash = "sha256:c69681fec350fa94af45dd7ef8f53f605e89f752583c814f713d7d2329435cfc", size = 60178, upload-time = "2025-10-20T16:51:50.946Z" }, + { url = "https://files.pythonhosted.org/packages/f4/a7/9080fe3f971397ea4447e3bda0c350225c944047ede7927c9a1f788af000/pytrec_eval_terrier-0.5.10-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:876740f3d58625058d34aaa1939be31bf253ecacd85d0d8b1089db5dd57ab127", size = 308002, upload-time = "2025-10-20T16:54:24.746Z" }, + { url = "https://files.pythonhosted.org/packages/ad/c9/5bf9d58cb275559211ba4af905c5a4d95f78c4b973f4186f8b22d8c0b073/pytrec_eval_terrier-0.5.10-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:2ca4e624e5f2589ae75c1034ff1f38e9fc81de86314193508ac423e7ca56769c", size = 1330474, upload-time = "2025-10-20T16:54:25.569Z" }, +] + +[[package]] +name = "pywinpty" +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f7/54/37c7370ba91f579235049dc26cd2c5e657d2a943e01820844ffc81f32176/pywinpty-3.0.3.tar.gz", hash = "sha256:523441dc34d231fb361b4b00f8c99d3f16de02f5005fd544a0183112bcc22412", size = 31309, upload-time = "2026-02-04T21:51:09.524Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/79/c3/3e75075c7f71735f22b66fab0481f2c98e3a4d58cba55cb50ba29114bcf6/pywinpty-3.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:dff25a9a6435f527d7c65608a7e62783fc12076e7d44487a4911ee91be5a8ac8", size = 2114430, upload-time = "2026-02-04T21:54:19.485Z" }, + { url = "https://files.pythonhosted.org/packages/8d/1e/8a54166a8c5e4f5cb516514bdf4090be4d51a71e8d9f6d98c0aa00fe45d4/pywinpty-3.0.3-cp311-cp311-win_arm64.whl", hash = "sha256:fbc1e230e5b193eef4431cba3f39996a288f9958f9c9f092c8a961d930ee8f68", size = 236191, upload-time = "2026-02-04T21:50:36.239Z" }, + { url = "https://files.pythonhosted.org/packages/7c/d4/aeb5e1784d2c5bff6e189138a9ca91a090117459cea0c30378e1f2db3d54/pywinpty-3.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:c9081df0e49ffa86d15db4a6ba61530630e48707f987df42c9d3313537e81fc0", size = 2113098, upload-time = "2026-02-04T21:54:37.711Z" }, + { url = "https://files.pythonhosted.org/packages/b9/53/7278223c493ccfe4883239cf06c823c56460a8010e0fc778eef67858dc14/pywinpty-3.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:15e79d870e18b678fb8a5a6105fd38496b55697c66e6fc0378236026bc4d59e9", size = 234901, upload-time = "2026-02-04T21:53:31.35Z" }, + { url = "https://files.pythonhosted.org/packages/e5/cb/58d6ed3fd429c96a90ef01ac9a617af10a6d41469219c25e7dc162abbb71/pywinpty-3.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:9c91dbb026050c77bdcef964e63a4f10f01a639113c4d3658332614544c467ab", size = 2112686, upload-time = "2026-02-04T21:52:03.035Z" }, + { url = "https://files.pythonhosted.org/packages/fd/50/724ed5c38c504d4e58a88a072776a1e880d970789deaeb2b9f7bd9a5141a/pywinpty-3.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:fe1f7911805127c94cf51f89ab14096c6f91ffdcacf993d2da6082b2142a2523", size = 234591, upload-time = "2026-02-04T21:52:29.821Z" }, + { url = "https://files.pythonhosted.org/packages/f7/ad/90a110538696b12b39fd8758a06d70ded899308198ad2305ac68e361126e/pywinpty-3.0.3-cp313-cp313t-win_amd64.whl", hash = "sha256:3f07a6cf1c1d470d284e614733c3d0f726d2c85e78508ea10a403140c3c0c18a", size = 2112360, upload-time = "2026-02-04T21:55:33.397Z" }, + { url = "https://files.pythonhosted.org/packages/44/0f/7ffa221757a220402bc79fda44044c3f2cc57338d878ab7d622add6f4581/pywinpty-3.0.3-cp313-cp313t-win_arm64.whl", hash = "sha256:15c7c0b6f8e9d87aabbaff76468dabf6e6121332c40fc1d83548d02a9d6a3759", size = 233107, upload-time = "2026-02-04T21:51:45.455Z" }, + { url = "https://files.pythonhosted.org/packages/28/88/2ff917caff61e55f38bcdb27de06ee30597881b2cae44fbba7627be015c4/pywinpty-3.0.3-cp314-cp314-win_amd64.whl", hash = "sha256:d4b6b7b0fe0cdcd02e956bd57cfe9f4e5a06514eecf3b5ae174da4f951b58be9", size = 2113282, upload-time = "2026-02-04T21:52:08.188Z" }, + { url = "https://files.pythonhosted.org/packages/63/32/40a775343ace542cc43ece3f1d1fce454021521ecac41c4c4573081c2336/pywinpty-3.0.3-cp314-cp314-win_arm64.whl", hash = "sha256:34789d685fc0d547ce0c8a65e5a70e56f77d732fa6e03c8f74fefb8cbb252019", size = 234207, upload-time = "2026-02-04T21:51:58.687Z" }, + { url = "https://files.pythonhosted.org/packages/8d/54/5d5e52f4cb75028104ca6faf36c10f9692389b1986d34471663b4ebebd6d/pywinpty-3.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:0c37e224a47a971d1a6e08649a1714dac4f63c11920780977829ed5c8cadead1", size = 2112910, upload-time = "2026-02-04T21:52:30.976Z" }, + { url = "https://files.pythonhosted.org/packages/0a/44/dcd184824e21d4620b06c7db9fbb15c3ad0a0f1fa2e6de79969fb82647ec/pywinpty-3.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:c4e9c3dff7d86ba81937438d5819f19f385a39d8f592d4e8af67148ceb4f6ab5", size = 233425, upload-time = "2026-02-04T21:51:56.754Z" }, +] + [[package]] name = "pyyaml" version = "6.0.3" @@ -1594,6 +4057,291 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/f1/12/de94a39c2ef588c7e6455cfbe7343d3b2dc9d6b6b2f40c4c6565744c873d/pyyaml-6.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:ebc55a14a21cb14062aa4162f906cd962b28e2e9ea38f9b4391244cd8de4ae0b", size = 149341, upload-time = "2025-09-25T21:32:56.828Z" }, ] +[[package]] +name = "pyzmq" +version = "27.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "implementation_name == 'pypy'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/04/0b/3c9baedbdf613ecaa7aa07027780b8867f57b6293b6ee50de316c9f3222b/pyzmq-27.1.0.tar.gz", hash = "sha256:ac0765e3d44455adb6ddbf4417dcce460fc40a05978c08efdf2948072f6db540", size = 281750, upload-time = "2025-09-08T23:10:18.157Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/06/5d/305323ba86b284e6fcb0d842d6adaa2999035f70f8c38a9b6d21ad28c3d4/pyzmq-27.1.0-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:226b091818d461a3bef763805e75685e478ac17e9008f49fce2d3e52b3d58b86", size = 1333328, upload-time = "2025-09-08T23:07:45.946Z" }, + { url = "https://files.pythonhosted.org/packages/bd/a0/fc7e78a23748ad5443ac3275943457e8452da67fda347e05260261108cbc/pyzmq-27.1.0-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:0790a0161c281ca9723f804871b4027f2e8b5a528d357c8952d08cd1a9c15581", size = 908803, upload-time = "2025-09-08T23:07:47.551Z" }, + { url = "https://files.pythonhosted.org/packages/7e/22/37d15eb05f3bdfa4abea6f6d96eb3bb58585fbd3e4e0ded4e743bc650c97/pyzmq-27.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c895a6f35476b0c3a54e3eb6ccf41bf3018de937016e6e18748317f25d4e925f", size = 668836, upload-time = "2025-09-08T23:07:49.436Z" }, + { url = "https://files.pythonhosted.org/packages/b1/c4/2a6fe5111a01005fc7af3878259ce17684fabb8852815eda6225620f3c59/pyzmq-27.1.0-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5bbf8d3630bf96550b3be8e1fc0fea5cbdc8d5466c1192887bd94869da17a63e", size = 857038, upload-time = "2025-09-08T23:07:51.234Z" }, + { url = "https://files.pythonhosted.org/packages/cb/eb/bfdcb41d0db9cd233d6fb22dc131583774135505ada800ebf14dfb0a7c40/pyzmq-27.1.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:15c8bd0fe0dabf808e2d7a681398c4e5ded70a551ab47482067a572c054c8e2e", size = 1657531, upload-time = "2025-09-08T23:07:52.795Z" }, + { url = "https://files.pythonhosted.org/packages/ab/21/e3180ca269ed4a0de5c34417dfe71a8ae80421198be83ee619a8a485b0c7/pyzmq-27.1.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:bafcb3dd171b4ae9f19ee6380dfc71ce0390fefaf26b504c0e5f628d7c8c54f2", size = 2034786, upload-time = "2025-09-08T23:07:55.047Z" }, + { url = "https://files.pythonhosted.org/packages/3b/b1/5e21d0b517434b7f33588ff76c177c5a167858cc38ef740608898cd329f2/pyzmq-27.1.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e829529fcaa09937189178115c49c504e69289abd39967cd8a4c215761373394", size = 1894220, upload-time = "2025-09-08T23:07:57.172Z" }, + { url = "https://files.pythonhosted.org/packages/03/f2/44913a6ff6941905efc24a1acf3d3cb6146b636c546c7406c38c49c403d4/pyzmq-27.1.0-cp311-cp311-win32.whl", hash = "sha256:6df079c47d5902af6db298ec92151db82ecb557af663098b92f2508c398bb54f", size = 567155, upload-time = "2025-09-08T23:07:59.05Z" }, + { url = "https://files.pythonhosted.org/packages/23/6d/d8d92a0eb270a925c9b4dd039c0b4dc10abc2fcbc48331788824ef113935/pyzmq-27.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:190cbf120fbc0fc4957b56866830def56628934a9d112aec0e2507aa6a032b97", size = 633428, upload-time = "2025-09-08T23:08:00.663Z" }, + { url = "https://files.pythonhosted.org/packages/ae/14/01afebc96c5abbbd713ecfc7469cfb1bc801c819a74ed5c9fad9a48801cb/pyzmq-27.1.0-cp311-cp311-win_arm64.whl", hash = "sha256:eca6b47df11a132d1745eb3b5b5e557a7dae2c303277aa0e69c6ba91b8736e07", size = 559497, upload-time = "2025-09-08T23:08:02.15Z" }, + { url = "https://files.pythonhosted.org/packages/92/e7/038aab64a946d535901103da16b953c8c9cc9c961dadcbf3609ed6428d23/pyzmq-27.1.0-cp312-abi3-macosx_10_15_universal2.whl", hash = "sha256:452631b640340c928fa343801b0d07eb0c3789a5ffa843f6e1a9cee0ba4eb4fc", size = 1306279, upload-time = "2025-09-08T23:08:03.807Z" }, + { url = "https://files.pythonhosted.org/packages/e8/5e/c3c49fdd0f535ef45eefcc16934648e9e59dace4a37ee88fc53f6cd8e641/pyzmq-27.1.0-cp312-abi3-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:1c179799b118e554b66da67d88ed66cd37a169f1f23b5d9f0a231b4e8d44a113", size = 895645, upload-time = "2025-09-08T23:08:05.301Z" }, + { url = "https://files.pythonhosted.org/packages/f8/e5/b0b2504cb4e903a74dcf1ebae157f9e20ebb6ea76095f6cfffea28c42ecd/pyzmq-27.1.0-cp312-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3837439b7f99e60312f0c926a6ad437b067356dc2bc2ec96eb395fd0fe804233", size = 652574, upload-time = "2025-09-08T23:08:06.828Z" }, + { url = "https://files.pythonhosted.org/packages/f8/9b/c108cdb55560eaf253f0cbdb61b29971e9fb34d9c3499b0e96e4e60ed8a5/pyzmq-27.1.0-cp312-abi3-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:43ad9a73e3da1fab5b0e7e13402f0b2fb934ae1c876c51d0afff0e7c052eca31", size = 840995, upload-time = "2025-09-08T23:08:08.396Z" }, + { url = "https://files.pythonhosted.org/packages/c2/bb/b79798ca177b9eb0825b4c9998c6af8cd2a7f15a6a1a4272c1d1a21d382f/pyzmq-27.1.0-cp312-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:0de3028d69d4cdc475bfe47a6128eb38d8bc0e8f4d69646adfbcd840facbac28", size = 1642070, upload-time = "2025-09-08T23:08:09.989Z" }, + { url = "https://files.pythonhosted.org/packages/9c/80/2df2e7977c4ede24c79ae39dcef3899bfc5f34d1ca7a5b24f182c9b7a9ca/pyzmq-27.1.0-cp312-abi3-musllinux_1_2_i686.whl", hash = "sha256:cf44a7763aea9298c0aa7dbf859f87ed7012de8bda0f3977b6fb1d96745df856", size = 2021121, upload-time = "2025-09-08T23:08:11.907Z" }, + { url = "https://files.pythonhosted.org/packages/46/bd/2d45ad24f5f5ae7e8d01525eb76786fa7557136555cac7d929880519e33a/pyzmq-27.1.0-cp312-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:f30f395a9e6fbca195400ce833c731e7b64c3919aa481af4d88c3759e0cb7496", size = 1878550, upload-time = "2025-09-08T23:08:13.513Z" }, + { url = "https://files.pythonhosted.org/packages/e6/2f/104c0a3c778d7c2ab8190e9db4f62f0b6957b53c9d87db77c284b69f33ea/pyzmq-27.1.0-cp312-abi3-win32.whl", hash = "sha256:250e5436a4ba13885494412b3da5d518cd0d3a278a1ae640e113c073a5f88edd", size = 559184, upload-time = "2025-09-08T23:08:15.163Z" }, + { url = "https://files.pythonhosted.org/packages/fc/7f/a21b20d577e4100c6a41795842028235998a643b1ad406a6d4163ea8f53e/pyzmq-27.1.0-cp312-abi3-win_amd64.whl", hash = "sha256:9ce490cf1d2ca2ad84733aa1d69ce6855372cb5ce9223802450c9b2a7cba0ccf", size = 619480, upload-time = "2025-09-08T23:08:17.192Z" }, + { url = "https://files.pythonhosted.org/packages/78/c2/c012beae5f76b72f007a9e91ee9401cb88c51d0f83c6257a03e785c81cc2/pyzmq-27.1.0-cp312-abi3-win_arm64.whl", hash = "sha256:75a2f36223f0d535a0c919e23615fc85a1e23b71f40c7eb43d7b1dedb4d8f15f", size = 552993, upload-time = "2025-09-08T23:08:18.926Z" }, + { url = "https://files.pythonhosted.org/packages/60/cb/84a13459c51da6cec1b7b1dc1a47e6db6da50b77ad7fd9c145842750a011/pyzmq-27.1.0-cp313-cp313-android_24_arm64_v8a.whl", hash = "sha256:93ad4b0855a664229559e45c8d23797ceac03183c7b6f5b4428152a6b06684a5", size = 1122436, upload-time = "2025-09-08T23:08:20.801Z" }, + { url = "https://files.pythonhosted.org/packages/dc/b6/94414759a69a26c3dd674570a81813c46a078767d931a6c70ad29fc585cb/pyzmq-27.1.0-cp313-cp313-android_24_x86_64.whl", hash = "sha256:fbb4f2400bfda24f12f009cba62ad5734148569ff4949b1b6ec3b519444342e6", size = 1156301, upload-time = "2025-09-08T23:08:22.47Z" }, + { url = "https://files.pythonhosted.org/packages/a5/ad/15906493fd40c316377fd8a8f6b1f93104f97a752667763c9b9c1b71d42d/pyzmq-27.1.0-cp313-cp313t-macosx_10_15_universal2.whl", hash = "sha256:e343d067f7b151cfe4eb3bb796a7752c9d369eed007b91231e817071d2c2fec7", size = 1341197, upload-time = "2025-09-08T23:08:24.286Z" }, + { url = "https://files.pythonhosted.org/packages/14/1d/d343f3ce13db53a54cb8946594e567410b2125394dafcc0268d8dda027e0/pyzmq-27.1.0-cp313-cp313t-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:08363b2011dec81c354d694bdecaef4770e0ae96b9afea70b3f47b973655cc05", size = 897275, upload-time = "2025-09-08T23:08:26.063Z" }, + { url = "https://files.pythonhosted.org/packages/69/2d/d83dd6d7ca929a2fc67d2c3005415cdf322af7751d773524809f9e585129/pyzmq-27.1.0-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d54530c8c8b5b8ddb3318f481297441af102517602b569146185fa10b63f4fa9", size = 660469, upload-time = "2025-09-08T23:08:27.623Z" }, + { url = "https://files.pythonhosted.org/packages/3e/cd/9822a7af117f4bc0f1952dbe9ef8358eb50a24928efd5edf54210b850259/pyzmq-27.1.0-cp313-cp313t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6f3afa12c392f0a44a2414056d730eebc33ec0926aae92b5ad5cf26ebb6cc128", size = 847961, upload-time = "2025-09-08T23:08:29.672Z" }, + { url = "https://files.pythonhosted.org/packages/9a/12/f003e824a19ed73be15542f172fd0ec4ad0b60cf37436652c93b9df7c585/pyzmq-27.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:c65047adafe573ff023b3187bb93faa583151627bc9c51fc4fb2c561ed689d39", size = 1650282, upload-time = "2025-09-08T23:08:31.349Z" }, + { url = "https://files.pythonhosted.org/packages/d5/4a/e82d788ed58e9a23995cee70dbc20c9aded3d13a92d30d57ec2291f1e8a3/pyzmq-27.1.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:90e6e9441c946a8b0a667356f7078d96411391a3b8f80980315455574177ec97", size = 2024468, upload-time = "2025-09-08T23:08:33.543Z" }, + { url = "https://files.pythonhosted.org/packages/d9/94/2da0a60841f757481e402b34bf4c8bf57fa54a5466b965de791b1e6f747d/pyzmq-27.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:add071b2d25f84e8189aaf0882d39a285b42fa3853016ebab234a5e78c7a43db", size = 1885394, upload-time = "2025-09-08T23:08:35.51Z" }, + { url = "https://files.pythonhosted.org/packages/4f/6f/55c10e2e49ad52d080dc24e37adb215e5b0d64990b57598abc2e3f01725b/pyzmq-27.1.0-cp313-cp313t-win32.whl", hash = "sha256:7ccc0700cfdf7bd487bea8d850ec38f204478681ea02a582a8da8171b7f90a1c", size = 574964, upload-time = "2025-09-08T23:08:37.178Z" }, + { url = "https://files.pythonhosted.org/packages/87/4d/2534970ba63dd7c522d8ca80fb92777f362c0f321900667c615e2067cb29/pyzmq-27.1.0-cp313-cp313t-win_amd64.whl", hash = "sha256:8085a9fba668216b9b4323be338ee5437a235fe275b9d1610e422ccc279733e2", size = 641029, upload-time = "2025-09-08T23:08:40.595Z" }, + { url = "https://files.pythonhosted.org/packages/f6/fa/f8aea7a28b0641f31d40dea42d7ef003fded31e184ef47db696bc74cd610/pyzmq-27.1.0-cp313-cp313t-win_arm64.whl", hash = "sha256:6bb54ca21bcfe361e445256c15eedf083f153811c37be87e0514934d6913061e", size = 561541, upload-time = "2025-09-08T23:08:42.668Z" }, + { url = "https://files.pythonhosted.org/packages/87/45/19efbb3000956e82d0331bafca5d9ac19ea2857722fa2caacefb6042f39d/pyzmq-27.1.0-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:ce980af330231615756acd5154f29813d553ea555485ae712c491cd483df6b7a", size = 1341197, upload-time = "2025-09-08T23:08:44.973Z" }, + { url = "https://files.pythonhosted.org/packages/48/43/d72ccdbf0d73d1343936296665826350cb1e825f92f2db9db3e61c2162a2/pyzmq-27.1.0-cp314-cp314t-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:1779be8c549e54a1c38f805e56d2a2e5c009d26de10921d7d51cfd1c8d4632ea", size = 897175, upload-time = "2025-09-08T23:08:46.601Z" }, + { url = "https://files.pythonhosted.org/packages/2f/2e/a483f73a10b65a9ef0161e817321d39a770b2acf8bcf3004a28d90d14a94/pyzmq-27.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7200bb0f03345515df50d99d3db206a0a6bee1955fbb8c453c76f5bf0e08fb96", size = 660427, upload-time = "2025-09-08T23:08:48.187Z" }, + { url = "https://files.pythonhosted.org/packages/f5/d2/5f36552c2d3e5685abe60dfa56f91169f7a2d99bbaf67c5271022ab40863/pyzmq-27.1.0-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:01c0e07d558b06a60773744ea6251f769cd79a41a97d11b8bf4ab8f034b0424d", size = 847929, upload-time = "2025-09-08T23:08:49.76Z" }, + { url = "https://files.pythonhosted.org/packages/c4/2a/404b331f2b7bf3198e9945f75c4c521f0c6a3a23b51f7a4a401b94a13833/pyzmq-27.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:80d834abee71f65253c91540445d37c4c561e293ba6e741b992f20a105d69146", size = 1650193, upload-time = "2025-09-08T23:08:51.7Z" }, + { url = "https://files.pythonhosted.org/packages/1c/0b/f4107e33f62a5acf60e3ded67ed33d79b4ce18de432625ce2fc5093d6388/pyzmq-27.1.0-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:544b4e3b7198dde4a62b8ff6685e9802a9a1ebf47e77478a5eb88eca2a82f2fd", size = 2024388, upload-time = "2025-09-08T23:08:53.393Z" }, + { url = "https://files.pythonhosted.org/packages/0d/01/add31fe76512642fd6e40e3a3bd21f4b47e242c8ba33efb6809e37076d9b/pyzmq-27.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:cedc4c68178e59a4046f97eca31b148ddcf51e88677de1ef4e78cf06c5376c9a", size = 1885316, upload-time = "2025-09-08T23:08:55.702Z" }, + { url = "https://files.pythonhosted.org/packages/c4/59/a5f38970f9bf07cee96128de79590bb354917914a9be11272cfc7ff26af0/pyzmq-27.1.0-cp314-cp314t-win32.whl", hash = "sha256:1f0b2a577fd770aa6f053211a55d1c47901f4d537389a034c690291485e5fe92", size = 587472, upload-time = "2025-09-08T23:08:58.18Z" }, + { url = "https://files.pythonhosted.org/packages/70/d8/78b1bad170f93fcf5e3536e70e8fadac55030002275c9a29e8f5719185de/pyzmq-27.1.0-cp314-cp314t-win_amd64.whl", hash = "sha256:19c9468ae0437f8074af379e986c5d3d7d7bfe033506af442e8c879732bedbe0", size = 661401, upload-time = "2025-09-08T23:08:59.802Z" }, + { url = "https://files.pythonhosted.org/packages/81/d6/4bfbb40c9a0b42fc53c7cf442f6385db70b40f74a783130c5d0a5aa62228/pyzmq-27.1.0-cp314-cp314t-win_arm64.whl", hash = "sha256:dc5dbf68a7857b59473f7df42650c621d7e8923fb03fa74a526890f4d33cc4d7", size = 575170, upload-time = "2025-09-08T23:09:01.418Z" }, + { url = "https://files.pythonhosted.org/packages/4c/c6/c4dcdecdbaa70969ee1fdced6d7b8f60cfabe64d25361f27ac4665a70620/pyzmq-27.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:18770c8d3563715387139060d37859c02ce40718d1faf299abddcdcc6a649066", size = 836265, upload-time = "2025-09-08T23:09:49.376Z" }, + { url = "https://files.pythonhosted.org/packages/3e/79/f38c92eeaeb03a2ccc2ba9866f0439593bb08c5e3b714ac1d553e5c96e25/pyzmq-27.1.0-pp311-pypy311_pp73-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:ac25465d42f92e990f8d8b0546b01c391ad431c3bf447683fdc40565941d0604", size = 800208, upload-time = "2025-09-08T23:09:51.073Z" }, + { url = "https://files.pythonhosted.org/packages/49/0e/3f0d0d335c6b3abb9b7b723776d0b21fa7f3a6c819a0db6097059aada160/pyzmq-27.1.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:53b40f8ae006f2734ee7608d59ed661419f087521edbfc2149c3932e9c14808c", size = 567747, upload-time = "2025-09-08T23:09:52.698Z" }, + { url = "https://files.pythonhosted.org/packages/a1/cf/f2b3784d536250ffd4be70e049f3b60981235d70c6e8ce7e3ef21e1adb25/pyzmq-27.1.0-pp311-pypy311_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f605d884e7c8be8fe1aa94e0a783bf3f591b84c24e4bc4f3e7564c82ac25e271", size = 747371, upload-time = "2025-09-08T23:09:54.563Z" }, + { url = "https://files.pythonhosted.org/packages/01/1b/5dbe84eefc86f48473947e2f41711aded97eecef1231f4558f1f02713c12/pyzmq-27.1.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:c9f7f6e13dff2e44a6afeaf2cf54cee5929ad64afaf4d40b50f93c58fc687355", size = 544862, upload-time = "2025-09-08T23:09:56.509Z" }, +] + +[[package]] +name = "ragas" +version = "0.4.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "appdirs" }, + { name = "datasets" }, + { name = "diskcache" }, + { name = "instructor" }, + { name = "langchain" }, + { name = "langchain-community" }, + { name = "langchain-core" }, + { name = "langchain-openai" }, + { name = "nest-asyncio" }, + { name = "networkx" }, + { name = "numpy" }, + { name = "openai" }, + { name = "pillow" }, + { name = "pydantic" }, + { name = "rich" }, + { name = "scikit-network" }, + { name = "tiktoken" }, + { name = "tqdm" }, + { name = "typer" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d2/bc/3234517692ac0ffae1ec2ec940992e4057844c49ee6c51c07ce385bb98f1/ragas-0.4.3.tar.gz", hash = "sha256:1eb1f61dbc8613ad014fdb8d630cbe9a1caec1ea01664a106993cb756128c001", size = 44029626, upload-time = "2026-01-13T17:48:01.043Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4d/e0/1fecd22c93d3ed66453cbbdefd05528331af4d33b2b76a370d751231912c/ragas-0.4.3-py3-none-any.whl", hash = "sha256:ef1d75f674c294e9a6e7d8e9ad261b6bf4697dad1c9cbd1a756ba7a6b4849a38", size = 466452, upload-time = "2026-01-13T17:47:59.2Z" }, +] + +[[package]] +name = "rapidfuzz" +version = "3.14.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d3/28/9d808fe62375b9aab5ba92fa9b29371297b067c2790b2d7cda648b1e2f8d/rapidfuzz-3.14.3.tar.gz", hash = "sha256:2491937177868bc4b1e469087601d53f925e8d270ccc21e07404b4b5814b7b5f", size = 57863900, upload-time = "2025-11-01T11:54:52.321Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/76/25/5b0a33ad3332ee1213068c66f7c14e9e221be90bab434f0cb4defa9d6660/rapidfuzz-3.14.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:dea2d113e260a5da0c4003e0a5e9fdf24a9dc2bb9eaa43abd030a1e46ce7837d", size = 1953885, upload-time = "2025-11-01T11:52:47.75Z" }, + { url = "https://files.pythonhosted.org/packages/2d/ab/f1181f500c32c8fcf7c966f5920c7e56b9b1d03193386d19c956505c312d/rapidfuzz-3.14.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e6c31a4aa68cfa75d7eede8b0ed24b9e458447db604c2db53f358be9843d81d3", size = 1390200, upload-time = "2025-11-01T11:52:49.491Z" }, + { url = "https://files.pythonhosted.org/packages/14/2a/0f2de974ececad873865c6bb3ea3ad07c976ac293d5025b2d73325aac1d4/rapidfuzz-3.14.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:02821366d928e68ddcb567fed8723dad7ea3a979fada6283e6914d5858674850", size = 1389319, upload-time = "2025-11-01T11:52:51.224Z" }, + { url = "https://files.pythonhosted.org/packages/ed/69/309d8f3a0bb3031fd9b667174cc4af56000645298af7c2931be5c3d14bb4/rapidfuzz-3.14.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cfe8df315ab4e6db4e1be72c5170f8e66021acde22cd2f9d04d2058a9fd8162e", size = 3178495, upload-time = "2025-11-01T11:52:53.005Z" }, + { url = "https://files.pythonhosted.org/packages/10/b7/f9c44a99269ea5bf6fd6a40b84e858414b6e241288b9f2b74af470d222b1/rapidfuzz-3.14.3-cp311-cp311-manylinux_2_31_armv7l.whl", hash = "sha256:769f31c60cd79420188fcdb3c823227fc4a6deb35cafec9d14045c7f6743acae", size = 1228443, upload-time = "2025-11-01T11:52:54.991Z" }, + { url = "https://files.pythonhosted.org/packages/f2/0a/3b3137abac7f19c9220e14cd7ce993e35071a7655e7ef697785a3edfea1a/rapidfuzz-3.14.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:54fa03062124e73086dae66a3451c553c1e20a39c077fd704dc7154092c34c63", size = 2411998, upload-time = "2025-11-01T11:52:56.629Z" }, + { url = "https://files.pythonhosted.org/packages/f3/b6/983805a844d44670eaae63831024cdc97ada4e9c62abc6b20703e81e7f9b/rapidfuzz-3.14.3-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:834d1e818005ed0d4ae38f6b87b86fad9b0a74085467ece0727d20e15077c094", size = 2530120, upload-time = "2025-11-01T11:52:58.298Z" }, + { url = "https://files.pythonhosted.org/packages/b4/cc/2c97beb2b1be2d7595d805682472f1b1b844111027d5ad89b65e16bdbaaa/rapidfuzz-3.14.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:948b00e8476a91f510dd1ec07272efc7d78c275d83b630455559671d4e33b678", size = 4283129, upload-time = "2025-11-01T11:53:00.188Z" }, + { url = "https://files.pythonhosted.org/packages/4d/03/2f0e5e94941045aefe7eafab72320e61285c07b752df9884ce88d6b8b835/rapidfuzz-3.14.3-cp311-cp311-win32.whl", hash = "sha256:43d0305c36f504232f18ea04e55f2059bb89f169d3119c4ea96a0e15b59e2a91", size = 1724224, upload-time = "2025-11-01T11:53:02.149Z" }, + { url = "https://files.pythonhosted.org/packages/cf/99/5fa23e204435803875daefda73fd61baeabc3c36b8fc0e34c1705aab8c7b/rapidfuzz-3.14.3-cp311-cp311-win_amd64.whl", hash = "sha256:ef6bf930b947bd0735c550683939a032090f1d688dfd8861d6b45307b96fd5c5", size = 1544259, upload-time = "2025-11-01T11:53:03.66Z" }, + { url = "https://files.pythonhosted.org/packages/48/35/d657b85fcc615a42661b98ac90ce8e95bd32af474603a105643963749886/rapidfuzz-3.14.3-cp311-cp311-win_arm64.whl", hash = "sha256:f3eb0ff3b75d6fdccd40b55e7414bb859a1cda77c52762c9c82b85569f5088e7", size = 814734, upload-time = "2025-11-01T11:53:05.008Z" }, + { url = "https://files.pythonhosted.org/packages/fa/8e/3c215e860b458cfbedb3ed73bc72e98eb7e0ed72f6b48099604a7a3260c2/rapidfuzz-3.14.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:685c93ea961d135893b5984a5a9851637d23767feabe414ec974f43babbd8226", size = 1945306, upload-time = "2025-11-01T11:53:06.452Z" }, + { url = "https://files.pythonhosted.org/packages/36/d9/31b33512015c899f4a6e6af64df8dfe8acddf4c8b40a4b3e0e6e1bcd00e5/rapidfuzz-3.14.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:fa7c8f26f009f8c673fbfb443792f0cf8cf50c4e18121ff1e285b5e08a94fbdb", size = 1390788, upload-time = "2025-11-01T11:53:08.721Z" }, + { url = "https://files.pythonhosted.org/packages/a9/67/2ee6f8de6e2081ccd560a571d9c9063184fe467f484a17fa90311a7f4a2e/rapidfuzz-3.14.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:57f878330c8d361b2ce76cebb8e3e1dc827293b6abf404e67d53260d27b5d941", size = 1374580, upload-time = "2025-11-01T11:53:10.164Z" }, + { url = "https://files.pythonhosted.org/packages/30/83/80d22997acd928eda7deadc19ccd15883904622396d6571e935993e0453a/rapidfuzz-3.14.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6c5f545f454871e6af05753a0172849c82feaf0f521c5ca62ba09e1b382d6382", size = 3154947, upload-time = "2025-11-01T11:53:12.093Z" }, + { url = "https://files.pythonhosted.org/packages/5b/cf/9f49831085a16384695f9fb096b99662f589e30b89b4a589a1ebc1a19d34/rapidfuzz-3.14.3-cp312-cp312-manylinux_2_31_armv7l.whl", hash = "sha256:07aa0b5d8863e3151e05026a28e0d924accf0a7a3b605da978f0359bb804df43", size = 1223872, upload-time = "2025-11-01T11:53:13.664Z" }, + { url = "https://files.pythonhosted.org/packages/c8/0f/41ee8034e744b871c2e071ef0d360686f5ccfe5659f4fd96c3ec406b3c8b/rapidfuzz-3.14.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:73b07566bc7e010e7b5bd490fb04bb312e820970180df6b5655e9e6224c137db", size = 2392512, upload-time = "2025-11-01T11:53:15.109Z" }, + { url = "https://files.pythonhosted.org/packages/da/86/280038b6b0c2ccec54fb957c732ad6b41cc1fd03b288d76545b9cf98343f/rapidfuzz-3.14.3-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:6de00eb84c71476af7d3110cf25d8fe7c792d7f5fa86764ef0b4ca97e78ca3ed", size = 2521398, upload-time = "2025-11-01T11:53:17.146Z" }, + { url = "https://files.pythonhosted.org/packages/fa/7b/05c26f939607dca0006505e3216248ae2de631e39ef94dd63dbbf0860021/rapidfuzz-3.14.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d7843a1abf0091773a530636fdd2a49a41bcae22f9910b86b4f903e76ddc82dc", size = 4259416, upload-time = "2025-11-01T11:53:19.34Z" }, + { url = "https://files.pythonhosted.org/packages/40/eb/9e3af4103d91788f81111af1b54a28de347cdbed8eaa6c91d5e98a889aab/rapidfuzz-3.14.3-cp312-cp312-win32.whl", hash = "sha256:dea97ac3ca18cd3ba8f3d04b5c1fe4aa60e58e8d9b7793d3bd595fdb04128d7a", size = 1709527, upload-time = "2025-11-01T11:53:20.949Z" }, + { url = "https://files.pythonhosted.org/packages/b8/63/d06ecce90e2cf1747e29aeab9f823d21e5877a4c51b79720b2d3be7848f8/rapidfuzz-3.14.3-cp312-cp312-win_amd64.whl", hash = "sha256:b5100fd6bcee4d27f28f4e0a1c6b5127bc8ba7c2a9959cad9eab0bf4a7ab3329", size = 1538989, upload-time = "2025-11-01T11:53:22.428Z" }, + { url = "https://files.pythonhosted.org/packages/fc/6d/beee32dcda64af8128aab3ace2ccb33d797ed58c434c6419eea015fec779/rapidfuzz-3.14.3-cp312-cp312-win_arm64.whl", hash = "sha256:4e49c9e992bc5fc873bd0fff7ef16a4405130ec42f2ce3d2b735ba5d3d4eb70f", size = 811161, upload-time = "2025-11-01T11:53:23.811Z" }, + { url = "https://files.pythonhosted.org/packages/e4/4f/0d94d09646853bd26978cb3a7541b6233c5760687777fa97da8de0d9a6ac/rapidfuzz-3.14.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:dbcb726064b12f356bf10fffdb6db4b6dce5390b23627c08652b3f6e49aa56ae", size = 1939646, upload-time = "2025-11-01T11:53:25.292Z" }, + { url = "https://files.pythonhosted.org/packages/b6/eb/f96aefc00f3bbdbab9c0657363ea8437a207d7545ac1c3789673e05d80bd/rapidfuzz-3.14.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1704fc70d214294e554a2421b473779bcdeef715881c5e927dc0f11e1692a0ff", size = 1385512, upload-time = "2025-11-01T11:53:27.594Z" }, + { url = "https://files.pythonhosted.org/packages/26/34/71c4f7749c12ee223dba90017a5947e8f03731a7cc9f489b662a8e9e643d/rapidfuzz-3.14.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:cc65e72790ddfd310c2c8912b45106e3800fefe160b0c2ef4d6b6fec4e826457", size = 1373571, upload-time = "2025-11-01T11:53:29.096Z" }, + { url = "https://files.pythonhosted.org/packages/32/00/ec8597a64f2be301ce1ee3290d067f49f6a7afb226b67d5f15b56d772ba5/rapidfuzz-3.14.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:43e38c1305cffae8472572a0584d4ffc2f130865586a81038ca3965301f7c97c", size = 3156759, upload-time = "2025-11-01T11:53:30.777Z" }, + { url = "https://files.pythonhosted.org/packages/61/d5/b41eeb4930501cc899d5a9a7b5c9a33d85a670200d7e81658626dcc0ecc0/rapidfuzz-3.14.3-cp313-cp313-manylinux_2_31_armv7l.whl", hash = "sha256:e195a77d06c03c98b3fc06b8a28576ba824392ce40de8c708f96ce04849a052e", size = 1222067, upload-time = "2025-11-01T11:53:32.334Z" }, + { url = "https://files.pythonhosted.org/packages/2a/7d/6d9abb4ffd1027c6ed837b425834f3bed8344472eb3a503ab55b3407c721/rapidfuzz-3.14.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:1b7ef2f4b8583a744338a18f12c69693c194fb6777c0e9ada98cd4d9e8f09d10", size = 2394775, upload-time = "2025-11-01T11:53:34.24Z" }, + { url = "https://files.pythonhosted.org/packages/15/ce/4f3ab4c401c5a55364da1ffff8cc879fc97b4e5f4fa96033827da491a973/rapidfuzz-3.14.3-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:a2135b138bcdcb4c3742d417f215ac2d8c2b87bde15b0feede231ae95f09ec41", size = 2526123, upload-time = "2025-11-01T11:53:35.779Z" }, + { url = "https://files.pythonhosted.org/packages/c1/4b/54f804975376a328f57293bd817c12c9036171d15cf7292032e3f5820b2d/rapidfuzz-3.14.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:33a325ed0e8e1aa20c3e75f8ab057a7b248fdea7843c2a19ade0008906c14af0", size = 4262874, upload-time = "2025-11-01T11:53:37.866Z" }, + { url = "https://files.pythonhosted.org/packages/e9/b6/958db27d8a29a50ee6edd45d33debd3ce732e7209183a72f57544cd5fe22/rapidfuzz-3.14.3-cp313-cp313-win32.whl", hash = "sha256:8383b6d0d92f6cd008f3c9216535be215a064b2cc890398a678b56e6d280cb63", size = 1707972, upload-time = "2025-11-01T11:53:39.442Z" }, + { url = "https://files.pythonhosted.org/packages/07/75/fde1f334b0cec15b5946d9f84d73250fbfcc73c236b4bc1b25129d90876b/rapidfuzz-3.14.3-cp313-cp313-win_amd64.whl", hash = "sha256:e6b5e3036976f0fde888687d91be86d81f9ac5f7b02e218913c38285b756be6c", size = 1537011, upload-time = "2025-11-01T11:53:40.92Z" }, + { url = "https://files.pythonhosted.org/packages/2e/d7/d83fe001ce599dc7ead57ba1debf923dc961b6bdce522b741e6b8c82f55c/rapidfuzz-3.14.3-cp313-cp313-win_arm64.whl", hash = "sha256:7ba009977601d8b0828bfac9a110b195b3e4e79b350dcfa48c11269a9f1918a0", size = 810744, upload-time = "2025-11-01T11:53:42.723Z" }, + { url = "https://files.pythonhosted.org/packages/92/13/a486369e63ff3c1a58444d16b15c5feb943edd0e6c28a1d7d67cb8946b8f/rapidfuzz-3.14.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:a0a28add871425c2fe94358c6300bbeb0bc2ed828ca003420ac6825408f5a424", size = 1967702, upload-time = "2025-11-01T11:53:44.554Z" }, + { url = "https://files.pythonhosted.org/packages/f1/82/efad25e260b7810f01d6b69122685e355bed78c94a12784bac4e0beb2afb/rapidfuzz-3.14.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:010e12e2411a4854b0434f920e72b717c43f8ec48d57e7affe5c42ecfa05dd0e", size = 1410702, upload-time = "2025-11-01T11:53:46.066Z" }, + { url = "https://files.pythonhosted.org/packages/ba/1a/34c977b860cde91082eae4a97ae503f43e0d84d4af301d857679b66f9869/rapidfuzz-3.14.3-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5cfc3d57abd83c734d1714ec39c88a34dd69c85474918ebc21296f1e61eb5ca8", size = 1382337, upload-time = "2025-11-01T11:53:47.62Z" }, + { url = "https://files.pythonhosted.org/packages/88/74/f50ea0e24a5880a9159e8fd256b84d8f4634c2f6b4f98028bdd31891d907/rapidfuzz-3.14.3-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:89acb8cbb52904f763e5ac238083b9fc193bed8d1f03c80568b20e4cef43a519", size = 3165563, upload-time = "2025-11-01T11:53:49.216Z" }, + { url = "https://files.pythonhosted.org/packages/e8/7a/e744359404d7737049c26099423fc54bcbf303de5d870d07d2fb1410f567/rapidfuzz-3.14.3-cp313-cp313t-manylinux_2_31_armv7l.whl", hash = "sha256:7d9af908c2f371bfb9c985bd134e295038e3031e666e4b2ade1e7cb7f5af2f1a", size = 1214727, upload-time = "2025-11-01T11:53:50.883Z" }, + { url = "https://files.pythonhosted.org/packages/d3/2e/87adfe14ce75768ec6c2b8acd0e05e85e84be4be5e3d283cdae360afc4fe/rapidfuzz-3.14.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:1f1925619627f8798f8c3a391d81071336942e5fe8467bc3c567f982e7ce2897", size = 2403349, upload-time = "2025-11-01T11:53:52.322Z" }, + { url = "https://files.pythonhosted.org/packages/70/17/6c0b2b2bff9c8b12e12624c07aa22e922b0c72a490f180fa9183d1ef2c75/rapidfuzz-3.14.3-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:152555187360978119e98ce3e8263d70dd0c40c7541193fc302e9b7125cf8f58", size = 2507596, upload-time = "2025-11-01T11:53:53.835Z" }, + { url = "https://files.pythonhosted.org/packages/c3/d1/87852a7cbe4da7b962174c749a47433881a63a817d04f3e385ea9babcd9e/rapidfuzz-3.14.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:52619d25a09546b8db078981ca88939d72caa6b8701edd8b22e16482a38e799f", size = 4273595, upload-time = "2025-11-01T11:53:55.961Z" }, + { url = "https://files.pythonhosted.org/packages/c1/ab/1d0354b7d1771a28fa7fe089bc23acec2bdd3756efa2419f463e3ed80e16/rapidfuzz-3.14.3-cp313-cp313t-win32.whl", hash = "sha256:489ce98a895c98cad284f0a47960c3e264c724cb4cfd47a1430fa091c0c25204", size = 1757773, upload-time = "2025-11-01T11:53:57.628Z" }, + { url = "https://files.pythonhosted.org/packages/0b/0c/71ef356adc29e2bdf74cd284317b34a16b80258fa0e7e242dd92cc1e6d10/rapidfuzz-3.14.3-cp313-cp313t-win_amd64.whl", hash = "sha256:656e52b054d5b5c2524169240e50cfa080b04b1c613c5f90a2465e84888d6f15", size = 1576797, upload-time = "2025-11-01T11:53:59.455Z" }, + { url = "https://files.pythonhosted.org/packages/fe/d2/0e64fc27bb08d4304aa3d11154eb5480bcf5d62d60140a7ee984dc07468a/rapidfuzz-3.14.3-cp313-cp313t-win_arm64.whl", hash = "sha256:c7e40c0a0af02ad6e57e89f62bef8604f55a04ecae90b0ceeda591bbf5923317", size = 829940, upload-time = "2025-11-01T11:54:01.1Z" }, + { url = "https://files.pythonhosted.org/packages/32/6f/1b88aaeade83abc5418788f9e6b01efefcd1a69d65ded37d89cd1662be41/rapidfuzz-3.14.3-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:442125473b247227d3f2de807a11da6c08ccf536572d1be943f8e262bae7e4ea", size = 1942086, upload-time = "2025-11-01T11:54:02.592Z" }, + { url = "https://files.pythonhosted.org/packages/a0/2c/b23861347436cb10f46c2bd425489ec462790faaa360a54a7ede5f78de88/rapidfuzz-3.14.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:1ec0c8c0c3d4f97ced46b2e191e883f8c82dbbf6d5ebc1842366d7eff13cd5a6", size = 1386993, upload-time = "2025-11-01T11:54:04.12Z" }, + { url = "https://files.pythonhosted.org/packages/83/86/5d72e2c060aa1fbdc1f7362d938f6b237dff91f5b9fc5dd7cc297e112250/rapidfuzz-3.14.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2dc37bc20272f388b8c3a4eba4febc6e77e50a8f450c472def4751e7678f55e4", size = 1379126, upload-time = "2025-11-01T11:54:05.777Z" }, + { url = "https://files.pythonhosted.org/packages/c9/bc/ef2cee3e4d8b3fc22705ff519f0d487eecc756abdc7c25d53686689d6cf2/rapidfuzz-3.14.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dee362e7e79bae940a5e2b3f6d09c6554db6a4e301cc68343886c08be99844f1", size = 3159304, upload-time = "2025-11-01T11:54:07.351Z" }, + { url = "https://files.pythonhosted.org/packages/a0/36/dc5f2f62bbc7bc90be1f75eeaf49ed9502094bb19290dfb4747317b17f12/rapidfuzz-3.14.3-cp314-cp314-manylinux_2_31_armv7l.whl", hash = "sha256:4b39921df948388a863f0e267edf2c36302983459b021ab928d4b801cbe6a421", size = 1218207, upload-time = "2025-11-01T11:54:09.641Z" }, + { url = "https://files.pythonhosted.org/packages/df/7e/8f4be75c1bc62f47edf2bbbe2370ee482fae655ebcc4718ac3827ead3904/rapidfuzz-3.14.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:beda6aa9bc44d1d81242e7b291b446be352d3451f8217fcb068fc2933927d53b", size = 2401245, upload-time = "2025-11-01T11:54:11.543Z" }, + { url = "https://files.pythonhosted.org/packages/05/38/f7c92759e1bb188dd05b80d11c630ba59b8d7856657baf454ff56059c2ab/rapidfuzz-3.14.3-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:6a014ba09657abfcfeed64b7d09407acb29af436d7fc075b23a298a7e4a6b41c", size = 2518308, upload-time = "2025-11-01T11:54:13.134Z" }, + { url = "https://files.pythonhosted.org/packages/c7/ac/85820f70fed5ecb5f1d9a55f1e1e2090ef62985ef41db289b5ac5ec56e28/rapidfuzz-3.14.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:32eeafa3abce138bb725550c0e228fc7eaeec7059aa8093d9cbbec2b58c2371a", size = 4265011, upload-time = "2025-11-01T11:54:15.087Z" }, + { url = "https://files.pythonhosted.org/packages/46/a9/616930721ea9835c918af7cde22bff17f9db3639b0c1a7f96684be7f5630/rapidfuzz-3.14.3-cp314-cp314-win32.whl", hash = "sha256:adb44d996fc610c7da8c5048775b21db60dd63b1548f078e95858c05c86876a3", size = 1742245, upload-time = "2025-11-01T11:54:17.19Z" }, + { url = "https://files.pythonhosted.org/packages/06/8a/f2fa5e9635b1ccafda4accf0e38246003f69982d7c81f2faa150014525a4/rapidfuzz-3.14.3-cp314-cp314-win_amd64.whl", hash = "sha256:f3d15d8527e2b293e38ce6e437631af0708df29eafd7c9fc48210854c94472f9", size = 1584856, upload-time = "2025-11-01T11:54:18.764Z" }, + { url = "https://files.pythonhosted.org/packages/ef/97/09e20663917678a6d60d8e0e29796db175b1165e2079830430342d5298be/rapidfuzz-3.14.3-cp314-cp314-win_arm64.whl", hash = "sha256:576e4b9012a67e0bf54fccb69a7b6c94d4e86a9540a62f1a5144977359133583", size = 833490, upload-time = "2025-11-01T11:54:20.753Z" }, + { url = "https://files.pythonhosted.org/packages/03/1b/6b6084576ba87bf21877c77218a0c97ba98cb285b0c02eaaee3acd7c4513/rapidfuzz-3.14.3-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:cec3c0da88562727dd5a5a364bd9efeb535400ff0bfb1443156dd139a1dd7b50", size = 1968658, upload-time = "2025-11-01T11:54:22.25Z" }, + { url = "https://files.pythonhosted.org/packages/38/c0/fb02a0db80d95704b0a6469cc394e8c38501abf7e1c0b2afe3261d1510c2/rapidfuzz-3.14.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:d1fa009f8b1100e4880868137e7bf0501422898f7674f2adcd85d5a67f041296", size = 1410742, upload-time = "2025-11-01T11:54:23.863Z" }, + { url = "https://files.pythonhosted.org/packages/a4/72/3fbf12819fc6afc8ec75a45204013b40979d068971e535a7f3512b05e765/rapidfuzz-3.14.3-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1b86daa7419b5e8b180690efd1fdbac43ff19230803282521c5b5a9c83977655", size = 1382810, upload-time = "2025-11-01T11:54:25.571Z" }, + { url = "https://files.pythonhosted.org/packages/0f/18/0f1991d59bb7eee28922a00f79d83eafa8c7bfb4e8edebf4af2a160e7196/rapidfuzz-3.14.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c7bd1816db05d6c5ffb3a4df0a2b7b56fb8c81ef584d08e37058afa217da91b1", size = 3166349, upload-time = "2025-11-01T11:54:27.195Z" }, + { url = "https://files.pythonhosted.org/packages/0d/f0/baa958b1989c8f88c78bbb329e969440cf330b5a01a982669986495bb980/rapidfuzz-3.14.3-cp314-cp314t-manylinux_2_31_armv7l.whl", hash = "sha256:33da4bbaf44e9755b0ce192597f3bde7372fe2e381ab305f41b707a95ac57aa7", size = 1214994, upload-time = "2025-11-01T11:54:28.821Z" }, + { url = "https://files.pythonhosted.org/packages/e4/a0/cd12ec71f9b2519a3954febc5740291cceabc64c87bc6433afcb36259f3b/rapidfuzz-3.14.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:3fecce764cf5a991ee2195a844196da840aba72029b2612f95ac68a8b74946bf", size = 2403919, upload-time = "2025-11-01T11:54:30.393Z" }, + { url = "https://files.pythonhosted.org/packages/0b/ce/019bd2176c1644098eced4f0595cb4b3ef52e4941ac9a5854f209d0a6e16/rapidfuzz-3.14.3-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:ecd7453e02cf072258c3a6b8e930230d789d5d46cc849503729f9ce475d0e785", size = 2508346, upload-time = "2025-11-01T11:54:32.048Z" }, + { url = "https://files.pythonhosted.org/packages/23/f8/be16c68e2c9e6c4f23e8f4adbb7bccc9483200087ed28ff76c5312da9b14/rapidfuzz-3.14.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:ea188aa00e9bcae8c8411f006a5f2f06c4607a02f24eab0d8dc58566aa911f35", size = 4274105, upload-time = "2025-11-01T11:54:33.701Z" }, + { url = "https://files.pythonhosted.org/packages/a1/d1/5ab148e03f7e6ec8cd220ccf7af74d3aaa4de26dd96df58936beb7cba820/rapidfuzz-3.14.3-cp314-cp314t-win32.whl", hash = "sha256:7ccbf68100c170e9a0581accbe9291850936711548c6688ce3bfb897b8c589ad", size = 1793465, upload-time = "2025-11-01T11:54:35.331Z" }, + { url = "https://files.pythonhosted.org/packages/cd/97/433b2d98e97abd9fff1c470a109b311669f44cdec8d0d5aa250aceaed1fb/rapidfuzz-3.14.3-cp314-cp314t-win_amd64.whl", hash = "sha256:9ec02e62ae765a318d6de38df609c57fc6dacc65c0ed1fd489036834fd8a620c", size = 1623491, upload-time = "2025-11-01T11:54:38.085Z" }, + { url = "https://files.pythonhosted.org/packages/e2/f6/e2176eb94f94892441bce3ddc514c179facb65db245e7ce3356965595b19/rapidfuzz-3.14.3-cp314-cp314t-win_arm64.whl", hash = "sha256:e805e52322ae29aa945baf7168b6c898120fbc16d2b8f940b658a5e9e3999253", size = 851487, upload-time = "2025-11-01T11:54:40.176Z" }, + { url = "https://files.pythonhosted.org/packages/c9/33/b5bd6475c7c27164b5becc9b0e3eb978f1e3640fea590dd3dced6006ee83/rapidfuzz-3.14.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:7cf174b52cb3ef5d49e45d0a1133b7e7d0ecf770ed01f97ae9962c5c91d97d23", size = 1888499, upload-time = "2025-11-01T11:54:42.094Z" }, + { url = "https://files.pythonhosted.org/packages/30/d2/89d65d4db4bb931beade9121bc71ad916b5fa9396e807d11b33731494e8e/rapidfuzz-3.14.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:442cba39957a008dfc5bdef21a9c3f4379e30ffb4e41b8555dbaf4887eca9300", size = 1336747, upload-time = "2025-11-01T11:54:43.957Z" }, + { url = "https://files.pythonhosted.org/packages/85/33/cd87d92b23f0b06e8914a61cea6850c6d495ca027f669fab7a379041827a/rapidfuzz-3.14.3-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1faa0f8f76ba75fd7b142c984947c280ef6558b5067af2ae9b8729b0a0f99ede", size = 1352187, upload-time = "2025-11-01T11:54:45.518Z" }, + { url = "https://files.pythonhosted.org/packages/22/20/9d30b4a1ab26aac22fff17d21dec7e9089ccddfe25151d0a8bb57001dc3d/rapidfuzz-3.14.3-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1e6eefec45625c634926a9fd46c9e4f31118ac8f3156fff9494422cee45207e6", size = 3101472, upload-time = "2025-11-01T11:54:47.255Z" }, + { url = "https://files.pythonhosted.org/packages/b1/ad/fa2d3e5c29a04ead7eaa731c7cd1f30f9ec3c77b3a578fdf90280797cbcb/rapidfuzz-3.14.3-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:56fefb4382bb12250f164250240b9dd7772e41c5c8ae976fd598a32292449cc5", size = 1511361, upload-time = "2025-11-01T11:54:49.057Z" }, +] + +[[package]] +name = "referencing" +version = "0.37.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs" }, + { name = "rpds-py" }, + { name = "typing-extensions", marker = "python_full_version < '3.13'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/22/f5/df4e9027acead3ecc63e50fe1e36aca1523e1719559c499951bb4b53188f/referencing-0.37.0.tar.gz", hash = "sha256:44aefc3142c5b842538163acb373e24cce6632bd54bdb01b21ad5863489f50d8", size = 78036, upload-time = "2025-10-13T15:30:48.871Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2c/58/ca301544e1fa93ed4f80d724bf5b194f6e4b945841c5bfd555878eea9fcb/referencing-0.37.0-py3-none-any.whl", hash = "sha256:381329a9f99628c9069361716891d34ad94af76e461dcb0335825aecc7692231", size = 26766, upload-time = "2025-10-13T15:30:47.625Z" }, +] + +[[package]] +name = "regex" +version = "2026.2.19" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ff/c0/d8079d4f6342e4cec5c3e7d7415b5cd3e633d5f4124f7a4626908dbe84c7/regex-2026.2.19.tar.gz", hash = "sha256:6fb8cb09b10e38f3ae17cc6dc04a1df77762bd0351b6ba9041438e7cc85ec310", size = 414973, upload-time = "2026-02-19T19:03:47.899Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6f/93/43f405a98f54cc59c786efb4fc0b644615ed2392fc89d57d30da11f35b5b/regex-2026.2.19-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:93b16a18cadb938f0f2306267161d57eb33081a861cee9ffcd71e60941eb5dfc", size = 488365, upload-time = "2026-02-19T19:00:17.857Z" }, + { url = "https://files.pythonhosted.org/packages/66/46/da0efce22cd8f5ae28eeb25ac69703f49edcad3331ac22440776f4ea0867/regex-2026.2.19-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:78af1e499cab704131f6f4e2f155b7f54ce396ca2acb6ef21a49507e4752e0be", size = 290737, upload-time = "2026-02-19T19:00:19.869Z" }, + { url = "https://files.pythonhosted.org/packages/fb/19/f735078448132c1c974974d30d5306337bc297fe6b6f126164bff72c1019/regex-2026.2.19-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:eb20c11aa4c3793c9ad04c19a972078cdadb261b8429380364be28e867a843f2", size = 288654, upload-time = "2026-02-19T19:00:21.307Z" }, + { url = "https://files.pythonhosted.org/packages/e2/3e/6d7c24a2f423c03ad03e3fbddefa431057186ac1c4cb4fa98b03c7f39808/regex-2026.2.19-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:db5fd91eec71e7b08de10011a2223d0faa20448d4e1380b9daa179fa7bf58906", size = 793785, upload-time = "2026-02-19T19:00:22.926Z" }, + { url = "https://files.pythonhosted.org/packages/67/32/fdb8107504b3122a79bde6705ac1f9d495ed1fe35b87d7cfc1864471999a/regex-2026.2.19-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:fdbade8acba71bb45057c2b72f477f0b527c4895f9c83e6cfc30d4a006c21726", size = 860731, upload-time = "2026-02-19T19:00:25.196Z" }, + { url = "https://files.pythonhosted.org/packages/9a/fd/cc8c6f05868defd840be6e75919b1c3f462357969ac2c2a0958363b4dc23/regex-2026.2.19-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:31a5f561eb111d6aae14202e7043fb0b406d3c8dddbbb9e60851725c9b38ab1d", size = 907350, upload-time = "2026-02-19T19:00:27.093Z" }, + { url = "https://files.pythonhosted.org/packages/b5/1b/4590db9caa8db3d5a3fe31197c4e42c15aab3643b549ef6a454525fa3a61/regex-2026.2.19-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4584a3ee5f257b71e4b693cc9be3a5104249399f4116fe518c3f79b0c6fc7083", size = 800628, upload-time = "2026-02-19T19:00:29.392Z" }, + { url = "https://files.pythonhosted.org/packages/76/05/513eaa5b96fa579fd0b813e19ec047baaaf573d7374ff010fa139b384bf7/regex-2026.2.19-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:196553ba2a2f47904e5dc272d948a746352e2644005627467e055be19d73b39e", size = 773711, upload-time = "2026-02-19T19:00:30.996Z" }, + { url = "https://files.pythonhosted.org/packages/95/65/5aed06d8c54563d37fea496cf888be504879a3981a7c8e12c24b2c92c209/regex-2026.2.19-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:0c10869d18abb759a3317c757746cc913d6324ce128b8bcec99350df10419f18", size = 783186, upload-time = "2026-02-19T19:00:34.598Z" }, + { url = "https://files.pythonhosted.org/packages/2c/57/79a633ad90f2371b4ef9cd72ba3a69a1a67d0cfaab4fe6fa8586d46044ef/regex-2026.2.19-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:e689fed279cbe797a6b570bd18ff535b284d057202692c73420cb93cca41aa32", size = 854854, upload-time = "2026-02-19T19:00:37.306Z" }, + { url = "https://files.pythonhosted.org/packages/eb/2d/0f113d477d9e91ec4545ec36c82e58be25038d06788229c91ad52da2b7f5/regex-2026.2.19-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:0782bd983f19ac7594039c9277cd6f75c89598c1d72f417e4d30d874105eb0c7", size = 762279, upload-time = "2026-02-19T19:00:39.793Z" }, + { url = "https://files.pythonhosted.org/packages/39/cb/237e9fa4f61469fd4f037164dbe8e675a376c88cf73aaaa0aedfd305601c/regex-2026.2.19-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:dbb240c81cfed5d4a67cb86d7676d9f7ec9c3f186310bec37d8a1415210e111e", size = 846172, upload-time = "2026-02-19T19:00:42.134Z" }, + { url = "https://files.pythonhosted.org/packages/ac/7c/104779c5915cc4eb557a33590f8a3f68089269c64287dd769afd76c7ce61/regex-2026.2.19-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:80d31c3f1fe7e4c6cd1831cd4478a0609903044dfcdc4660abfe6fb307add7f0", size = 789078, upload-time = "2026-02-19T19:00:43.908Z" }, + { url = "https://files.pythonhosted.org/packages/a8/4a/eae4e88b1317fb2ff57794915e0099198f51e760f6280b320adfa0ad396d/regex-2026.2.19-cp311-cp311-win32.whl", hash = "sha256:66e6a43225ff1064f8926adbafe0922b370d381c3330edaf9891cade52daa790", size = 266013, upload-time = "2026-02-19T19:00:47.274Z" }, + { url = "https://files.pythonhosted.org/packages/f9/29/ba89eb8fae79705e07ad1bd69e568f776159d2a8093c9dbc5303ee618298/regex-2026.2.19-cp311-cp311-win_amd64.whl", hash = "sha256:59a7a5216485a1896c5800e9feb8ff9213e11967b482633b6195d7da11450013", size = 277906, upload-time = "2026-02-19T19:00:49.011Z" }, + { url = "https://files.pythonhosted.org/packages/e3/1a/042d8f04b28e318df92df69d8becb0f42221eb3dd4fe5e976522f4337c76/regex-2026.2.19-cp311-cp311-win_arm64.whl", hash = "sha256:ec661807ffc14c8d14bb0b8c1bb3d5906e476bc96f98b565b709d03962ee4dd4", size = 270463, upload-time = "2026-02-19T19:00:50.988Z" }, + { url = "https://files.pythonhosted.org/packages/b3/73/13b39c7c9356f333e564ab4790b6cb0df125b8e64e8d6474e73da49b1955/regex-2026.2.19-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:c1665138776e4ac1aa75146669236f7a8a696433ec4e525abf092ca9189247cc", size = 489541, upload-time = "2026-02-19T19:00:52.728Z" }, + { url = "https://files.pythonhosted.org/packages/15/77/fcc7bd9a67000d07fbcc11ed226077287a40d5c84544e62171d29d3ef59c/regex-2026.2.19-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d792b84709021945597e05656aac059526df4e0c9ef60a0eaebb306f8fafcaa8", size = 291414, upload-time = "2026-02-19T19:00:54.51Z" }, + { url = "https://files.pythonhosted.org/packages/f9/87/3997fc72dc59233426ef2e18dfdd105bb123812fff740ee9cc348f1a3243/regex-2026.2.19-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:db970bcce4d63b37b3f9eb8c893f0db980bbf1d404a1d8d2b17aa8189de92c53", size = 289140, upload-time = "2026-02-19T19:00:56.841Z" }, + { url = "https://files.pythonhosted.org/packages/f3/d0/b7dd3883ed1cff8ee0c0c9462d828aaf12be63bf5dc55453cbf423523b13/regex-2026.2.19-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:03d706fbe7dfec503c8c3cb76f9352b3e3b53b623672aa49f18a251a6c71b8e6", size = 798767, upload-time = "2026-02-19T19:00:59.014Z" }, + { url = "https://files.pythonhosted.org/packages/4a/7e/8e2d09103832891b2b735a2515abf377db21144c6dd5ede1fb03c619bf09/regex-2026.2.19-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8dbff048c042beef60aa1848961384572c5afb9e8b290b0f1203a5c42cf5af65", size = 864436, upload-time = "2026-02-19T19:01:00.772Z" }, + { url = "https://files.pythonhosted.org/packages/8a/2e/afea8d23a6db1f67f45e3a0da3057104ce32e154f57dd0c8997274d45fcd/regex-2026.2.19-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:ccaaf9b907ea6b4223d5cbf5fa5dff5f33dc66f4907a25b967b8a81339a6e332", size = 912391, upload-time = "2026-02-19T19:01:02.865Z" }, + { url = "https://files.pythonhosted.org/packages/59/3c/ea5a4687adaba5e125b9bd6190153d0037325a0ba3757cc1537cc2c8dd90/regex-2026.2.19-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:75472631eee7898e16a8a20998d15106cb31cfde21cdf96ab40b432a7082af06", size = 803702, upload-time = "2026-02-19T19:01:05.298Z" }, + { url = "https://files.pythonhosted.org/packages/dc/c5/624a0705e8473a26488ec1a3a4e0b8763ecfc682a185c302dfec71daea35/regex-2026.2.19-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:d89f85a5ccc0cec125c24be75610d433d65295827ebaf0d884cbe56df82d4774", size = 775980, upload-time = "2026-02-19T19:01:07.047Z" }, + { url = "https://files.pythonhosted.org/packages/4d/4b/ed776642533232b5599b7c1f9d817fe11faf597e8a92b7a44b841daaae76/regex-2026.2.19-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:0d9f81806abdca3234c3dd582b8a97492e93de3602c8772013cb4affa12d1668", size = 788122, upload-time = "2026-02-19T19:01:08.744Z" }, + { url = "https://files.pythonhosted.org/packages/8c/58/e93e093921d13b9784b4f69896b6e2a9e09580a265c59d9eb95e87d288f2/regex-2026.2.19-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:9dadc10d1c2bbb1326e572a226d2ec56474ab8aab26fdb8cf19419b372c349a9", size = 858910, upload-time = "2026-02-19T19:01:10.488Z" }, + { url = "https://files.pythonhosted.org/packages/85/77/ff1d25a0c56cd546e0455cbc93235beb33474899690e6a361fa6b52d265b/regex-2026.2.19-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:6bc25d7e15f80c9dc7853cbb490b91c1ec7310808b09d56bd278fe03d776f4f6", size = 764153, upload-time = "2026-02-19T19:01:12.156Z" }, + { url = "https://files.pythonhosted.org/packages/cd/ef/8ec58df26d52d04443b1dc56f9be4b409f43ed5ae6c0248a287f52311fc4/regex-2026.2.19-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:965d59792f5037d9138da6fed50ba943162160443b43d4895b182551805aff9c", size = 850348, upload-time = "2026-02-19T19:01:14.147Z" }, + { url = "https://files.pythonhosted.org/packages/f5/b3/c42fd5ed91639ce5a4225b9df909180fc95586db071f2bf7c68d2ccbfbe6/regex-2026.2.19-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:38d88c6ed4a09ed61403dbdf515d969ccba34669af3961ceb7311ecd0cef504a", size = 789977, upload-time = "2026-02-19T19:01:15.838Z" }, + { url = "https://files.pythonhosted.org/packages/b6/22/bc3b58ebddbfd6ca5633e71fd41829ee931963aad1ebeec55aad0c23044e/regex-2026.2.19-cp312-cp312-win32.whl", hash = "sha256:5df947cabab4b643d4791af5e28aecf6bf62e6160e525651a12eba3d03755e6b", size = 266381, upload-time = "2026-02-19T19:01:17.952Z" }, + { url = "https://files.pythonhosted.org/packages/fc/4a/6ff550b63e67603ee60e69dc6bd2d5694e85046a558f663b2434bdaeb285/regex-2026.2.19-cp312-cp312-win_amd64.whl", hash = "sha256:4146dc576ea99634ae9c15587d0c43273b4023a10702998edf0fa68ccb60237a", size = 277274, upload-time = "2026-02-19T19:01:19.826Z" }, + { url = "https://files.pythonhosted.org/packages/cc/29/9ec48b679b1e87e7bc8517dff45351eab38f74fbbda1fbcf0e9e6d4e8174/regex-2026.2.19-cp312-cp312-win_arm64.whl", hash = "sha256:cdc0a80f679353bd68450d2a42996090c30b2e15ca90ded6156c31f1a3b63f3b", size = 270509, upload-time = "2026-02-19T19:01:22.075Z" }, + { url = "https://files.pythonhosted.org/packages/d2/2d/a849835e76ac88fcf9e8784e642d3ea635d183c4112150ca91499d6703af/regex-2026.2.19-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8df08decd339e8b3f6a2eb5c05c687fe9d963ae91f352bc57beb05f5b2ac6879", size = 489329, upload-time = "2026-02-19T19:01:23.841Z" }, + { url = "https://files.pythonhosted.org/packages/da/aa/78ff4666d3855490bae87845a5983485e765e1f970da20adffa2937b241d/regex-2026.2.19-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:3aa0944f1dc6e92f91f3b306ba7f851e1009398c84bfd370633182ee4fc26a64", size = 291308, upload-time = "2026-02-19T19:01:25.605Z" }, + { url = "https://files.pythonhosted.org/packages/cd/58/714384efcc07ae6beba528a541f6e99188c5cc1bc0295337f4e8a868296d/regex-2026.2.19-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:c13228fbecb03eadbfd8f521732c5fda09ef761af02e920a3148e18ad0e09968", size = 289033, upload-time = "2026-02-19T19:01:27.243Z" }, + { url = "https://files.pythonhosted.org/packages/75/ec/6438a9344d2869cf5265236a06af1ca6d885e5848b6561e10629bc8e5a11/regex-2026.2.19-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0d0e72703c60d68b18b27cde7cdb65ed2570ae29fb37231aa3076bfb6b1d1c13", size = 798798, upload-time = "2026-02-19T19:01:28.877Z" }, + { url = "https://files.pythonhosted.org/packages/c2/be/b1ce2d395e3fd2ce5f2fde2522f76cade4297cfe84cd61990ff48308749c/regex-2026.2.19-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:46e69a4bf552e30e74a8aa73f473c87efcb7f6e8c8ece60d9fd7bf13d5c86f02", size = 864444, upload-time = "2026-02-19T19:01:30.933Z" }, + { url = "https://files.pythonhosted.org/packages/d5/97/a3406460c504f7136f140d9461960c25f058b0240e4424d6fb73c7a067ab/regex-2026.2.19-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:8edda06079bd770f7f0cf7f3bba1a0b447b96b4a543c91fe0c142d034c166161", size = 912633, upload-time = "2026-02-19T19:01:32.744Z" }, + { url = "https://files.pythonhosted.org/packages/8b/d9/e5dbef95008d84e9af1dc0faabbc34a7fbc8daa05bc5807c5cf86c2bec49/regex-2026.2.19-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9cbc69eae834afbf634f7c902fc72ff3e993f1c699156dd1af1adab5d06b7fe7", size = 803718, upload-time = "2026-02-19T19:01:34.61Z" }, + { url = "https://files.pythonhosted.org/packages/2f/e5/61d80132690a1ef8dc48e0f44248036877aebf94235d43f63a20d1598888/regex-2026.2.19-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:bcf57d30659996ee5c7937999874504c11b5a068edc9515e6a59221cc2744dd1", size = 775975, upload-time = "2026-02-19T19:01:36.525Z" }, + { url = "https://files.pythonhosted.org/packages/05/32/ae828b3b312c972cf228b634447de27237d593d61505e6ad84723f8eabba/regex-2026.2.19-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:8e6e77cd92216eb489e21e5652a11b186afe9bdefca8a2db739fd6b205a9e0a4", size = 788129, upload-time = "2026-02-19T19:01:38.498Z" }, + { url = "https://files.pythonhosted.org/packages/cb/25/d74f34676f22bec401eddf0e5e457296941e10cbb2a49a571ca7a2c16e5a/regex-2026.2.19-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:b9ab8dec42afefa6314ea9b31b188259ffdd93f433d77cad454cd0b8d235ce1c", size = 858818, upload-time = "2026-02-19T19:01:40.409Z" }, + { url = "https://files.pythonhosted.org/packages/1e/eb/0bc2b01a6b0b264e1406e5ef11cae3f634c3bd1a6e61206fd3227ce8e89c/regex-2026.2.19-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:294c0fb2e87c6bcc5f577c8f609210f5700b993151913352ed6c6af42f30f95f", size = 764186, upload-time = "2026-02-19T19:01:43.009Z" }, + { url = "https://files.pythonhosted.org/packages/eb/37/5fe5a630d0d99ecf0c3570f8905dafbc160443a2d80181607770086c9812/regex-2026.2.19-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:c0924c64b082d4512b923ac016d6e1dcf647a3560b8a4c7e55cbbd13656cb4ed", size = 850363, upload-time = "2026-02-19T19:01:45.015Z" }, + { url = "https://files.pythonhosted.org/packages/c3/45/ef68d805294b01ec030cfd388724ba76a5a21a67f32af05b17924520cb0b/regex-2026.2.19-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:790dbf87b0361606cb0d79b393c3e8f4436a14ee56568a7463014565d97da02a", size = 790026, upload-time = "2026-02-19T19:01:47.51Z" }, + { url = "https://files.pythonhosted.org/packages/d6/3a/40d3b66923dfc5aeba182f194f0ca35d09afe8c031a193e6ae46971a0a0e/regex-2026.2.19-cp313-cp313-win32.whl", hash = "sha256:43cdde87006271be6963896ed816733b10967baaf0e271d529c82e93da66675b", size = 266372, upload-time = "2026-02-19T19:01:49.469Z" }, + { url = "https://files.pythonhosted.org/packages/3d/f2/39082e8739bfd553497689e74f9d5e5bb531d6f8936d0b94f43e18f219c0/regex-2026.2.19-cp313-cp313-win_amd64.whl", hash = "sha256:127ea69273485348a126ebbf3d6052604d3c7da284f797bba781f364c0947d47", size = 277253, upload-time = "2026-02-19T19:01:51.208Z" }, + { url = "https://files.pythonhosted.org/packages/c2/c2/852b9600d53fb47e47080c203e2cdc0ac7e84e37032a57e0eaa37446033a/regex-2026.2.19-cp313-cp313-win_arm64.whl", hash = "sha256:5e56c669535ac59cbf96ca1ece0ef26cb66809990cda4fa45e1e32c3b146599e", size = 270505, upload-time = "2026-02-19T19:01:52.865Z" }, + { url = "https://files.pythonhosted.org/packages/a9/a2/e0b4575b93bc84db3b1fab24183e008691cd2db5c0ef14ed52681fbd94dd/regex-2026.2.19-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:93d881cab5afdc41a005dba1524a40947d6f7a525057aa64aaf16065cf62faa9", size = 492202, upload-time = "2026-02-19T19:01:54.816Z" }, + { url = "https://files.pythonhosted.org/packages/24/b5/b84fec8cbb5f92a7eed2b6b5353a6a9eed9670fee31817c2da9eb85dc797/regex-2026.2.19-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:80caaa1ddcc942ec7be18427354f9d58a79cee82dea2a6b3d4fd83302e1240d7", size = 292884, upload-time = "2026-02-19T19:01:58.254Z" }, + { url = "https://files.pythonhosted.org/packages/70/0c/fe89966dfae43da46f475362401f03e4d7dc3a3c955b54f632abc52669e0/regex-2026.2.19-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:d793c5b4d2b4c668524cd1651404cfc798d40694c759aec997e196fe9729ec60", size = 291236, upload-time = "2026-02-19T19:01:59.966Z" }, + { url = "https://files.pythonhosted.org/packages/f2/f7/bda2695134f3e63eb5cccbbf608c2a12aab93d261ff4e2fe49b47fabc948/regex-2026.2.19-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b5100acb20648d9efd3f4e7e91f51187f95f22a741dcd719548a6cf4e1b34b3f", size = 807660, upload-time = "2026-02-19T19:02:01.632Z" }, + { url = "https://files.pythonhosted.org/packages/11/56/6e3a4bf5e60d17326b7003d91bbde8938e439256dec211d835597a44972d/regex-2026.2.19-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:5e3a31e94d10e52a896adaa3adf3621bd526ad2b45b8c2d23d1bbe74c7423007", size = 873585, upload-time = "2026-02-19T19:02:03.522Z" }, + { url = "https://files.pythonhosted.org/packages/35/5e/c90c6aa4d1317cc11839359479cfdd2662608f339e84e81ba751c8a4e461/regex-2026.2.19-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:8497421099b981f67c99eba4154cf0dfd8e47159431427a11cfb6487f7791d9e", size = 915243, upload-time = "2026-02-19T19:02:05.608Z" }, + { url = "https://files.pythonhosted.org/packages/90/7c/981ea0694116793001496aaf9524e5c99e122ec3952d9e7f1878af3a6bf1/regex-2026.2.19-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1e7a08622f7d51d7a068f7e4052a38739c412a3e74f55817073d2e2418149619", size = 812922, upload-time = "2026-02-19T19:02:08.115Z" }, + { url = "https://files.pythonhosted.org/packages/2d/be/9eda82afa425370ffdb3fa9f3ea42450b9ae4da3ff0a4ec20466f69e371b/regex-2026.2.19-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:8abe671cf0f15c26b1ad389bf4043b068ce7d3b1c5d9313e12895f57d6738555", size = 781318, upload-time = "2026-02-19T19:02:10.072Z" }, + { url = "https://files.pythonhosted.org/packages/c6/d5/50f0bbe56a8199f60a7b6c714e06e54b76b33d31806a69d0703b23ce2a9e/regex-2026.2.19-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:5a8f28dd32a4ce9c41758d43b5b9115c1c497b4b1f50c457602c1d571fa98ce1", size = 795649, upload-time = "2026-02-19T19:02:11.96Z" }, + { url = "https://files.pythonhosted.org/packages/c5/09/d039f081e44a8b0134d0bb2dd805b0ddf390b69d0b58297ae098847c572f/regex-2026.2.19-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:654dc41a5ba9b8cc8432b3f1aa8906d8b45f3e9502442a07c2f27f6c63f85db5", size = 868844, upload-time = "2026-02-19T19:02:14.043Z" }, + { url = "https://files.pythonhosted.org/packages/ef/53/e2903b79a19ec8557fe7cd21cd093956ff2dbc2e0e33969e3adbe5b184dd/regex-2026.2.19-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:4a02faea614e7fdd6ba8b3bec6c8e79529d356b100381cec76e638f45d12ca04", size = 770113, upload-time = "2026-02-19T19:02:16.161Z" }, + { url = "https://files.pythonhosted.org/packages/8f/e2/784667767b55714ebb4e59bf106362327476b882c0b2f93c25e84cc99b1a/regex-2026.2.19-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:d96162140bb819814428800934c7b71b7bffe81fb6da2d6abc1dcca31741eca3", size = 854922, upload-time = "2026-02-19T19:02:18.155Z" }, + { url = "https://files.pythonhosted.org/packages/59/78/9ef4356bd4aed752775bd18071034979b85f035fec51f3a4f9dea497a254/regex-2026.2.19-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:c227f2922153ee42bbeb355fd6d009f8c81d9d7bdd666e2276ce41f53ed9a743", size = 799636, upload-time = "2026-02-19T19:02:20.04Z" }, + { url = "https://files.pythonhosted.org/packages/cf/54/fcfc9287f20c5c9bd8db755aafe3e8cf4d99a6a3f1c7162ee182e0ca9374/regex-2026.2.19-cp313-cp313t-win32.whl", hash = "sha256:a178df8ec03011153fbcd2c70cb961bc98cbbd9694b28f706c318bee8927c3db", size = 268968, upload-time = "2026-02-19T19:02:22.816Z" }, + { url = "https://files.pythonhosted.org/packages/1e/a0/ff24c6cb1273e42472706d277147fc38e1f9074a280fb6034b0fc9b69415/regex-2026.2.19-cp313-cp313t-win_amd64.whl", hash = "sha256:2c1693ca6f444d554aa246b592355b5cec030ace5a2729eae1b04ab6e853e768", size = 280390, upload-time = "2026-02-19T19:02:25.231Z" }, + { url = "https://files.pythonhosted.org/packages/1a/b6/a3f6ad89d780ffdeebb4d5e2e3e30bd2ef1f70f6a94d1760e03dd1e12c60/regex-2026.2.19-cp313-cp313t-win_arm64.whl", hash = "sha256:c0761d7ae8d65773e01515ebb0b304df1bf37a0a79546caad9cbe79a42c12af7", size = 271643, upload-time = "2026-02-19T19:02:27.175Z" }, + { url = "https://files.pythonhosted.org/packages/2d/e2/7ad4e76a6dddefc0d64dbe12a4d3ca3947a19ddc501f864a5df2a8222ddd/regex-2026.2.19-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:03d191a9bcf94d31af56d2575210cb0d0c6a054dbcad2ea9e00aa4c42903b919", size = 489306, upload-time = "2026-02-19T19:02:29.058Z" }, + { url = "https://files.pythonhosted.org/packages/14/95/ee1736135733afbcf1846c58671046f99c4d5170102a150ebb3dd8d701d9/regex-2026.2.19-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:516ee067c6c721d0d0bfb80a2004edbd060fffd07e456d4e1669e38fe82f922e", size = 291218, upload-time = "2026-02-19T19:02:31.083Z" }, + { url = "https://files.pythonhosted.org/packages/ef/08/180d1826c3d7065200a5168c6b993a44947395c7bb6e04b2c2a219c34225/regex-2026.2.19-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:997862c619994c4a356cb7c3592502cbd50c2ab98da5f61c5c871f10f22de7e5", size = 289097, upload-time = "2026-02-19T19:02:33.485Z" }, + { url = "https://files.pythonhosted.org/packages/28/93/0651924c390c5740f5f896723f8ddd946a6c63083a7d8647231c343912ff/regex-2026.2.19-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:02b9e1b8a7ebe2807cd7bbdf662510c8e43053a23262b9f46ad4fc2dfc9d204e", size = 799147, upload-time = "2026-02-19T19:02:35.669Z" }, + { url = "https://files.pythonhosted.org/packages/a7/00/2078bd8bcd37d58a756989adbfd9f1d0151b7ca4085a9c2a07e917fbac61/regex-2026.2.19-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:6c8fb3b19652e425ff24169dad3ee07f99afa7996caa9dfbb3a9106cd726f49a", size = 865239, upload-time = "2026-02-19T19:02:38.012Z" }, + { url = "https://files.pythonhosted.org/packages/2a/13/75195161ec16936b35a365fa8c1dd2ab29fd910dd2587765062b174d8cfc/regex-2026.2.19-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:50f1ee9488dd7a9fda850ec7c68cad7a32fa49fd19733f5403a3f92b451dcf73", size = 911904, upload-time = "2026-02-19T19:02:40.737Z" }, + { url = "https://files.pythonhosted.org/packages/96/72/ac42f6012179343d1c4bd0ffee8c948d841cb32ea188d37e96d80527fcc9/regex-2026.2.19-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ab780092b1424d13200aa5a62996e95f65ee3db8509be366437439cdc0af1a9f", size = 803518, upload-time = "2026-02-19T19:02:42.923Z" }, + { url = "https://files.pythonhosted.org/packages/bc/d1/75a08e2269b007b9783f0f86aa64488e023141219cb5f14dc1e69cda56c6/regex-2026.2.19-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:17648e1a88e72d88641b12635e70e6c71c5136ba14edba29bf8fc6834005a265", size = 775866, upload-time = "2026-02-19T19:02:45.189Z" }, + { url = "https://files.pythonhosted.org/packages/92/41/70e7d05faf6994c2ca7a9fcaa536da8f8e4031d45b0ec04b57040ede201f/regex-2026.2.19-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:2f914ae8c804c8a8a562fe216100bc156bfb51338c1f8d55fe32cf407774359a", size = 788224, upload-time = "2026-02-19T19:02:47.804Z" }, + { url = "https://files.pythonhosted.org/packages/c8/83/34a2dd601f9deb13c20545c674a55f4a05c90869ab73d985b74d639bac43/regex-2026.2.19-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:c7e121a918bbee3f12ac300ce0a0d2f2c979cf208fb071ed8df5a6323281915c", size = 859682, upload-time = "2026-02-19T19:02:50.583Z" }, + { url = "https://files.pythonhosted.org/packages/8e/30/136db9a09a7f222d6e48b806f3730e7af6499a8cad9c72ac0d49d52c746e/regex-2026.2.19-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:2fedd459c791da24914ecc474feecd94cf7845efb262ac3134fe27cbd7eda799", size = 764223, upload-time = "2026-02-19T19:02:52.777Z" }, + { url = "https://files.pythonhosted.org/packages/9e/ea/bb947743c78a16df481fa0635c50aa1a439bb80b0e6dc24cd4e49c716679/regex-2026.2.19-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:ea8dfc99689240e61fb21b5fc2828f68b90abf7777d057b62d3166b7c1543c4c", size = 850101, upload-time = "2026-02-19T19:02:55.87Z" }, + { url = "https://files.pythonhosted.org/packages/25/27/e3bfe6e97a99f7393665926be02fef772da7f8aa59e50bc3134e4262a032/regex-2026.2.19-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:9fff45852160960f29e184ec8a5be5ab4063cfd0b168d439d1fc4ac3744bf29e", size = 789904, upload-time = "2026-02-19T19:02:58.523Z" }, + { url = "https://files.pythonhosted.org/packages/84/7b/7e2be6f00cea59d08761b027ad237002e90cac74b1607200ebaa2ba3d586/regex-2026.2.19-cp314-cp314-win32.whl", hash = "sha256:5390b130cce14a7d1db226a3896273b7b35be10af35e69f1cca843b6e5d2bb2d", size = 271784, upload-time = "2026-02-19T19:03:00.418Z" }, + { url = "https://files.pythonhosted.org/packages/f7/f6/639911530335773e7ec60bcaa519557b719586024c1d7eaad1daf87b646b/regex-2026.2.19-cp314-cp314-win_amd64.whl", hash = "sha256:e581f75d5c0b15669139ca1c2d3e23a65bb90e3c06ba9d9ea194c377c726a904", size = 280506, upload-time = "2026-02-19T19:03:02.302Z" }, + { url = "https://files.pythonhosted.org/packages/cd/ec/2582b56b4e036d46bb9b5d74a18548439ffa16c11cf59076419174d80f48/regex-2026.2.19-cp314-cp314-win_arm64.whl", hash = "sha256:7187fdee1be0896c1499a991e9bf7c78e4b56b7863e7405d7bb687888ac10c4b", size = 273557, upload-time = "2026-02-19T19:03:04.836Z" }, + { url = "https://files.pythonhosted.org/packages/49/0b/f901cfeb4efd83e4f5c3e9f91a6de77e8e5ceb18555698aca3a27e215ed3/regex-2026.2.19-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:5ec1d7c080832fdd4e150c6f5621fe674c70c63b3ae5a4454cebd7796263b175", size = 492196, upload-time = "2026-02-19T19:03:08.188Z" }, + { url = "https://files.pythonhosted.org/packages/94/0a/349b959e3da874e15eda853755567b4cde7e5309dbb1e07bfe910cfde452/regex-2026.2.19-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:8457c1bc10ee9b29cdfd897ccda41dce6bde0e9abd514bcfef7bcd05e254d411", size = 292878, upload-time = "2026-02-19T19:03:10.272Z" }, + { url = "https://files.pythonhosted.org/packages/98/b0/9d81b3c2c5ddff428f8c506713737278979a2c476f6e3675a9c51da0c389/regex-2026.2.19-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:cce8027010d1ffa3eb89a0b19621cdc78ae548ea2b49fea1f7bfb3ea77064c2b", size = 291235, upload-time = "2026-02-19T19:03:12.5Z" }, + { url = "https://files.pythonhosted.org/packages/04/e7/be7818df8691dbe9508c381ea2cc4c1153e4fdb1c4b06388abeaa93bd712/regex-2026.2.19-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:11c138febb40546ff9e026dbbc41dc9fb8b29e61013fa5848ccfe045f5b23b83", size = 807893, upload-time = "2026-02-19T19:03:15.064Z" }, + { url = "https://files.pythonhosted.org/packages/0c/b6/b898a8b983190cfa0276031c17beb73cfd1db07c03c8c37f606d80b655e2/regex-2026.2.19-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:74ff212aa61532246bb3036b3dfea62233414b0154b8bc3676975da78383cac3", size = 873696, upload-time = "2026-02-19T19:03:17.848Z" }, + { url = "https://files.pythonhosted.org/packages/1a/98/126ba671d54f19080ec87cad228fb4f3cc387fff8c4a01cb4e93f4ff9d94/regex-2026.2.19-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d00c95a2b6bfeb3ea1cb68d1751b1dfce2b05adc2a72c488d77a780db06ab867", size = 915493, upload-time = "2026-02-19T19:03:20.343Z" }, + { url = "https://files.pythonhosted.org/packages/b2/10/550c84a1a1a7371867fe8be2bea7df55e797cbca4709974811410e195c5d/regex-2026.2.19-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:311fcccb76af31be4c588d5a17f8f1a059ae8f4b097192896ebffc95612f223a", size = 813094, upload-time = "2026-02-19T19:03:23.287Z" }, + { url = "https://files.pythonhosted.org/packages/29/fb/ba221d2fc76a27b6b7d7a60f73a7a6a7bac21c6ba95616a08be2bcb434b0/regex-2026.2.19-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:77cfd6b5e7c4e8bf7a39d243ea05882acf5e3c7002b0ef4756de6606893b0ecd", size = 781583, upload-time = "2026-02-19T19:03:26.872Z" }, + { url = "https://files.pythonhosted.org/packages/26/f1/af79231301297c9e962679efc04a31361b58dc62dec1fc0cb4b8dd95956a/regex-2026.2.19-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:6380f29ff212ec922b6efb56100c089251940e0526a0d05aa7c2d9b571ddf2fe", size = 795875, upload-time = "2026-02-19T19:03:29.223Z" }, + { url = "https://files.pythonhosted.org/packages/a0/90/1e1d76cb0a2d0a4f38a039993e1c5cd971ae50435d751c5bae4f10e1c302/regex-2026.2.19-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:655f553a1fa3ab8a7fd570eca793408b8d26a80bfd89ed24d116baaf13a38969", size = 868916, upload-time = "2026-02-19T19:03:31.415Z" }, + { url = "https://files.pythonhosted.org/packages/9a/67/a1c01da76dbcfed690855a284c665cc0a370e7d02d1bd635cf9ff7dd74b8/regex-2026.2.19-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:015088b8558502f1f0bccd58754835aa154a7a5b0bd9d4c9b7b96ff4ae9ba876", size = 770386, upload-time = "2026-02-19T19:03:33.972Z" }, + { url = "https://files.pythonhosted.org/packages/49/6f/94842bf294f432ff3836bfd91032e2ecabea6d284227f12d1f935318c9c4/regex-2026.2.19-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:9e6693b8567a59459b5dda19104c4a4dbbd4a1c78833eacc758796f2cfef1854", size = 855007, upload-time = "2026-02-19T19:03:36.238Z" }, + { url = "https://files.pythonhosted.org/packages/ff/93/393cd203ca0d1d368f05ce12d2c7e91a324bc93c240db2e6d5ada05835f4/regex-2026.2.19-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:4071209fd4376ab5ceec72ad3507e9d3517c59e38a889079b98916477a871868", size = 799863, upload-time = "2026-02-19T19:03:38.497Z" }, + { url = "https://files.pythonhosted.org/packages/43/d9/35afda99bd92bf1a5831e55a4936d37ea4bed6e34c176a3c2238317faf4f/regex-2026.2.19-cp314-cp314t-win32.whl", hash = "sha256:2905ff4a97fad42f2d0834d8b1ea3c2f856ec209837e458d71a061a7d05f9f01", size = 274742, upload-time = "2026-02-19T19:03:40.804Z" }, + { url = "https://files.pythonhosted.org/packages/ae/42/7edc3344dcc87b698e9755f7f685d463852d481302539dae07135202d3ca/regex-2026.2.19-cp314-cp314t-win_amd64.whl", hash = "sha256:64128549b600987e0f335c2365879895f860a9161f283b14207c800a6ed623d3", size = 284443, upload-time = "2026-02-19T19:03:42.954Z" }, + { url = "https://files.pythonhosted.org/packages/3a/45/affdf2d851b42adf3d13fc5b3b059372e9bd299371fd84cf5723c45871fa/regex-2026.2.19-cp314-cp314t-win_arm64.whl", hash = "sha256:a09ae430e94c049dc6957f6baa35ee3418a3a77f3c12b6e02883bd80a2b679b0", size = 274932, upload-time = "2026-02-19T19:03:45.488Z" }, +] + [[package]] name = "requests" version = "2.32.5" @@ -1621,6 +4369,426 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/3f/51/d4db610ef29373b879047326cbf6fa98b6c1969d6f6dc423279de2b1be2c/requests_toolbelt-1.0.0-py2.py3-none-any.whl", hash = "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06", size = 54481, upload-time = "2023-05-01T04:11:28.427Z" }, ] +[[package]] +name = "rfc3339-validator" +version = "0.1.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/28/ea/a9387748e2d111c3c2b275ba970b735e04e15cdb1eb30693b6b5708c4dbd/rfc3339_validator-0.1.4.tar.gz", hash = "sha256:138a2abdf93304ad60530167e51d2dfb9549521a836871b88d7f4695d0022f6b", size = 5513, upload-time = "2021-05-12T16:37:54.178Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/44/4e421b96b67b2daff264473f7465db72fbdf36a07e05494f50300cc7b0c6/rfc3339_validator-0.1.4-py2.py3-none-any.whl", hash = "sha256:24f6ec1eda14ef823da9e36ec7113124b39c04d50a4d3d3a3c2859577e7791fa", size = 3490, upload-time = "2021-05-12T16:37:52.536Z" }, +] + +[[package]] +name = "rfc3986-validator" +version = "0.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/da/88/f270de456dd7d11dcc808abfa291ecdd3f45ff44e3b549ffa01b126464d0/rfc3986_validator-0.1.1.tar.gz", hash = "sha256:3d44bde7921b3b9ec3ae4e3adca370438eccebc676456449b145d533b240d055", size = 6760, upload-time = "2019-10-28T16:00:19.144Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/51/17023c0f8f1869d8806b979a2bffa3f861f26a3f1a66b094288323fba52f/rfc3986_validator-0.1.1-py2.py3-none-any.whl", hash = "sha256:2f235c432ef459970b4306369336b9d5dbdda31b510ca1e327636e01f528bfa9", size = 4242, upload-time = "2019-10-28T16:00:13.976Z" }, +] + +[[package]] +name = "rfc3987-syntax" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "lark" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2c/06/37c1a5557acf449e8e406a830a05bf885ac47d33270aec454ef78675008d/rfc3987_syntax-1.1.0.tar.gz", hash = "sha256:717a62cbf33cffdd16dfa3a497d81ce48a660ea691b1ddd7be710c22f00b4a0d", size = 14239, upload-time = "2025-07-18T01:05:05.015Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/71/44ce230e1b7fadd372515a97e32a83011f906ddded8d03e3c6aafbdedbb7/rfc3987_syntax-1.1.0-py3-none-any.whl", hash = "sha256:6c3d97604e4c5ce9f714898e05401a0445a641cfa276432b0a648c80856f6a3f", size = 8046, upload-time = "2025-07-18T01:05:03.843Z" }, +] + +[[package]] +name = "rich" +version = "14.3.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown-it-py" }, + { name = "pygments" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b3/c6/f3b320c27991c46f43ee9d856302c70dc2d0fb2dba4842ff739d5f46b393/rich-14.3.3.tar.gz", hash = "sha256:b8daa0b9e4eef54dd8cf7c86c03713f53241884e814f4e2f5fb342fe520f639b", size = 230582, upload-time = "2026-02-19T17:23:12.474Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/14/25/b208c5683343959b670dc001595f2f3737e051da617f66c31f7c4fa93abc/rich-14.3.3-py3-none-any.whl", hash = "sha256:793431c1f8619afa7d3b52b2cdec859562b950ea0d4b6b505397612db8d5362d", size = 310458, upload-time = "2026-02-19T17:23:13.732Z" }, +] + +[[package]] +name = "rich-click" +version = "1.9.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "rich" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/04/27/091e140ea834272188e63f8dd6faac1f5c687582b687197b3e0ec3c78ebf/rich_click-1.9.7.tar.gz", hash = "sha256:022997c1e30731995bdbc8ec2f82819340d42543237f033a003c7b1f843fc5dc", size = 74838, upload-time = "2026-01-31T04:29:27.707Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ca/e5/d708d262b600a352abe01c2ae360d8ff75b0af819b78e9af293191d928e6/rich_click-1.9.7-py3-none-any.whl", hash = "sha256:2f99120fca78f536e07b114d3b60333bc4bb2a0969053b1250869bcdc1b5351b", size = 71491, upload-time = "2026-01-31T04:29:26.777Z" }, +] + +[[package]] +name = "rpds-py" +version = "0.30.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/20/af/3f2f423103f1113b36230496629986e0ef7e199d2aa8392452b484b38ced/rpds_py-0.30.0.tar.gz", hash = "sha256:dd8ff7cf90014af0c0f787eea34794ebf6415242ee1d6fa91eaba725cc441e84", size = 69469, upload-time = "2025-11-30T20:24:38.837Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4d/6e/f964e88b3d2abee2a82c1ac8366da848fce1c6d834dc2132c3fda3970290/rpds_py-0.30.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:a2bffea6a4ca9f01b3f8e548302470306689684e61602aa3d141e34da06cf425", size = 370157, upload-time = "2025-11-30T20:21:53.789Z" }, + { url = "https://files.pythonhosted.org/packages/94/ba/24e5ebb7c1c82e74c4e4f33b2112a5573ddc703915b13a073737b59b86e0/rpds_py-0.30.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dc4f992dfe1e2bc3ebc7444f6c7051b4bc13cd8e33e43511e8ffd13bf407010d", size = 359676, upload-time = "2025-11-30T20:21:55.475Z" }, + { url = "https://files.pythonhosted.org/packages/84/86/04dbba1b087227747d64d80c3b74df946b986c57af0a9f0c98726d4d7a3b/rpds_py-0.30.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:422c3cb9856d80b09d30d2eb255d0754b23e090034e1deb4083f8004bd0761e4", size = 389938, upload-time = "2025-11-30T20:21:57.079Z" }, + { url = "https://files.pythonhosted.org/packages/42/bb/1463f0b1722b7f45431bdd468301991d1328b16cffe0b1c2918eba2c4eee/rpds_py-0.30.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:07ae8a593e1c3c6b82ca3292efbe73c30b61332fd612e05abee07c79359f292f", size = 402932, upload-time = "2025-11-30T20:21:58.47Z" }, + { url = "https://files.pythonhosted.org/packages/99/ee/2520700a5c1f2d76631f948b0736cdf9b0acb25abd0ca8e889b5c62ac2e3/rpds_py-0.30.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:12f90dd7557b6bd57f40abe7747e81e0c0b119bef015ea7726e69fe550e394a4", size = 525830, upload-time = "2025-11-30T20:21:59.699Z" }, + { url = "https://files.pythonhosted.org/packages/e0/ad/bd0331f740f5705cc555a5e17fdf334671262160270962e69a2bdef3bf76/rpds_py-0.30.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:99b47d6ad9a6da00bec6aabe5a6279ecd3c06a329d4aa4771034a21e335c3a97", size = 412033, upload-time = "2025-11-30T20:22:00.991Z" }, + { url = "https://files.pythonhosted.org/packages/f8/1e/372195d326549bb51f0ba0f2ecb9874579906b97e08880e7a65c3bef1a99/rpds_py-0.30.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:33f559f3104504506a44bb666b93a33f5d33133765b0c216a5bf2f1e1503af89", size = 390828, upload-time = "2025-11-30T20:22:02.723Z" }, + { url = "https://files.pythonhosted.org/packages/ab/2b/d88bb33294e3e0c76bc8f351a3721212713629ffca1700fa94979cb3eae8/rpds_py-0.30.0-cp311-cp311-manylinux_2_31_riscv64.whl", hash = "sha256:946fe926af6e44f3697abbc305ea168c2c31d3e3ef1058cf68f379bf0335a78d", size = 404683, upload-time = "2025-11-30T20:22:04.367Z" }, + { url = "https://files.pythonhosted.org/packages/50/32/c759a8d42bcb5289c1fac697cd92f6fe01a018dd937e62ae77e0e7f15702/rpds_py-0.30.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:495aeca4b93d465efde585977365187149e75383ad2684f81519f504f5c13038", size = 421583, upload-time = "2025-11-30T20:22:05.814Z" }, + { url = "https://files.pythonhosted.org/packages/2b/81/e729761dbd55ddf5d84ec4ff1f47857f4374b0f19bdabfcf929164da3e24/rpds_py-0.30.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d9a0ca5da0386dee0655b4ccdf46119df60e0f10da268d04fe7cc87886872ba7", size = 572496, upload-time = "2025-11-30T20:22:07.713Z" }, + { url = "https://files.pythonhosted.org/packages/14/f6/69066a924c3557c9c30baa6ec3a0aa07526305684c6f86c696b08860726c/rpds_py-0.30.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8d6d1cc13664ec13c1b84241204ff3b12f9bb82464b8ad6e7a5d3486975c2eed", size = 598669, upload-time = "2025-11-30T20:22:09.312Z" }, + { url = "https://files.pythonhosted.org/packages/5f/48/905896b1eb8a05630d20333d1d8ffd162394127b74ce0b0784ae04498d32/rpds_py-0.30.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3896fa1be39912cf0757753826bc8bdc8ca331a28a7c4ae46b7a21280b06bb85", size = 561011, upload-time = "2025-11-30T20:22:11.309Z" }, + { url = "https://files.pythonhosted.org/packages/22/16/cd3027c7e279d22e5eb431dd3c0fbc677bed58797fe7581e148f3f68818b/rpds_py-0.30.0-cp311-cp311-win32.whl", hash = "sha256:55f66022632205940f1827effeff17c4fa7ae1953d2b74a8581baaefb7d16f8c", size = 221406, upload-time = "2025-11-30T20:22:13.101Z" }, + { url = "https://files.pythonhosted.org/packages/fa/5b/e7b7aa136f28462b344e652ee010d4de26ee9fd16f1bfd5811f5153ccf89/rpds_py-0.30.0-cp311-cp311-win_amd64.whl", hash = "sha256:a51033ff701fca756439d641c0ad09a41d9242fa69121c7d8769604a0a629825", size = 236024, upload-time = "2025-11-30T20:22:14.853Z" }, + { url = "https://files.pythonhosted.org/packages/14/a6/364bba985e4c13658edb156640608f2c9e1d3ea3c81b27aa9d889fff0e31/rpds_py-0.30.0-cp311-cp311-win_arm64.whl", hash = "sha256:47b0ef6231c58f506ef0b74d44e330405caa8428e770fec25329ed2cb971a229", size = 229069, upload-time = "2025-11-30T20:22:16.577Z" }, + { url = "https://files.pythonhosted.org/packages/03/e7/98a2f4ac921d82f33e03f3835f5bf3a4a40aa1bfdc57975e74a97b2b4bdd/rpds_py-0.30.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a161f20d9a43006833cd7068375a94d035714d73a172b681d8881820600abfad", size = 375086, upload-time = "2025-11-30T20:22:17.93Z" }, + { url = "https://files.pythonhosted.org/packages/4d/a1/bca7fd3d452b272e13335db8d6b0b3ecde0f90ad6f16f3328c6fb150c889/rpds_py-0.30.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6abc8880d9d036ecaafe709079969f56e876fcf107f7a8e9920ba6d5a3878d05", size = 359053, upload-time = "2025-11-30T20:22:19.297Z" }, + { url = "https://files.pythonhosted.org/packages/65/1c/ae157e83a6357eceff62ba7e52113e3ec4834a84cfe07fa4b0757a7d105f/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca28829ae5f5d569bb62a79512c842a03a12576375d5ece7d2cadf8abe96ec28", size = 390763, upload-time = "2025-11-30T20:22:21.661Z" }, + { url = "https://files.pythonhosted.org/packages/d4/36/eb2eb8515e2ad24c0bd43c3ee9cd74c33f7ca6430755ccdb240fd3144c44/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a1010ed9524c73b94d15919ca4d41d8780980e1765babf85f9a2f90d247153dd", size = 408951, upload-time = "2025-11-30T20:22:23.408Z" }, + { url = "https://files.pythonhosted.org/packages/d6/65/ad8dc1784a331fabbd740ef6f71ce2198c7ed0890dab595adb9ea2d775a1/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f8d1736cfb49381ba528cd5baa46f82fdc65c06e843dab24dd70b63d09121b3f", size = 514622, upload-time = "2025-11-30T20:22:25.16Z" }, + { url = "https://files.pythonhosted.org/packages/63/8e/0cfa7ae158e15e143fe03993b5bcd743a59f541f5952e1546b1ac1b5fd45/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d948b135c4693daff7bc2dcfc4ec57237a29bd37e60c2fabf5aff2bbacf3e2f1", size = 414492, upload-time = "2025-11-30T20:22:26.505Z" }, + { url = "https://files.pythonhosted.org/packages/60/1b/6f8f29f3f995c7ffdde46a626ddccd7c63aefc0efae881dc13b6e5d5bb16/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47f236970bccb2233267d89173d3ad2703cd36a0e2a6e92d0560d333871a3d23", size = 394080, upload-time = "2025-11-30T20:22:27.934Z" }, + { url = "https://files.pythonhosted.org/packages/6d/d5/a266341051a7a3ca2f4b750a3aa4abc986378431fc2da508c5034d081b70/rpds_py-0.30.0-cp312-cp312-manylinux_2_31_riscv64.whl", hash = "sha256:2e6ecb5a5bcacf59c3f912155044479af1d0b6681280048b338b28e364aca1f6", size = 408680, upload-time = "2025-11-30T20:22:29.341Z" }, + { url = "https://files.pythonhosted.org/packages/10/3b/71b725851df9ab7a7a4e33cf36d241933da66040d195a84781f49c50490c/rpds_py-0.30.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a8fa71a2e078c527c3e9dc9fc5a98c9db40bcc8a92b4e8858e36d329f8684b51", size = 423589, upload-time = "2025-11-30T20:22:31.469Z" }, + { url = "https://files.pythonhosted.org/packages/00/2b/e59e58c544dc9bd8bd8384ecdb8ea91f6727f0e37a7131baeff8d6f51661/rpds_py-0.30.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:73c67f2db7bc334e518d097c6d1e6fed021bbc9b7d678d6cc433478365d1d5f5", size = 573289, upload-time = "2025-11-30T20:22:32.997Z" }, + { url = "https://files.pythonhosted.org/packages/da/3e/a18e6f5b460893172a7d6a680e86d3b6bc87a54c1f0b03446a3c8c7b588f/rpds_py-0.30.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:5ba103fb455be00f3b1c2076c9d4264bfcb037c976167a6047ed82f23153f02e", size = 599737, upload-time = "2025-11-30T20:22:34.419Z" }, + { url = "https://files.pythonhosted.org/packages/5c/e2/714694e4b87b85a18e2c243614974413c60aa107fd815b8cbc42b873d1d7/rpds_py-0.30.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:7cee9c752c0364588353e627da8a7e808a66873672bcb5f52890c33fd965b394", size = 563120, upload-time = "2025-11-30T20:22:35.903Z" }, + { url = "https://files.pythonhosted.org/packages/6f/ab/d5d5e3bcedb0a77f4f613706b750e50a5a3ba1c15ccd3665ecc636c968fd/rpds_py-0.30.0-cp312-cp312-win32.whl", hash = "sha256:1ab5b83dbcf55acc8b08fc62b796ef672c457b17dbd7820a11d6c52c06839bdf", size = 223782, upload-time = "2025-11-30T20:22:37.271Z" }, + { url = "https://files.pythonhosted.org/packages/39/3b/f786af9957306fdc38a74cef405b7b93180f481fb48453a114bb6465744a/rpds_py-0.30.0-cp312-cp312-win_amd64.whl", hash = "sha256:a090322ca841abd453d43456ac34db46e8b05fd9b3b4ac0c78bcde8b089f959b", size = 240463, upload-time = "2025-11-30T20:22:39.021Z" }, + { url = "https://files.pythonhosted.org/packages/f3/d2/b91dc748126c1559042cfe41990deb92c4ee3e2b415f6b5234969ffaf0cc/rpds_py-0.30.0-cp312-cp312-win_arm64.whl", hash = "sha256:669b1805bd639dd2989b281be2cfd951c6121b65e729d9b843e9639ef1fd555e", size = 230868, upload-time = "2025-11-30T20:22:40.493Z" }, + { url = "https://files.pythonhosted.org/packages/ed/dc/d61221eb88ff410de3c49143407f6f3147acf2538c86f2ab7ce65ae7d5f9/rpds_py-0.30.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:f83424d738204d9770830d35290ff3273fbb02b41f919870479fab14b9d303b2", size = 374887, upload-time = "2025-11-30T20:22:41.812Z" }, + { url = "https://files.pythonhosted.org/packages/fd/32/55fb50ae104061dbc564ef15cc43c013dc4a9f4527a1f4d99baddf56fe5f/rpds_py-0.30.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:e7536cd91353c5273434b4e003cbda89034d67e7710eab8761fd918ec6c69cf8", size = 358904, upload-time = "2025-11-30T20:22:43.479Z" }, + { url = "https://files.pythonhosted.org/packages/58/70/faed8186300e3b9bdd138d0273109784eea2396c68458ed580f885dfe7ad/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2771c6c15973347f50fece41fc447c054b7ac2ae0502388ce3b6738cd366e3d4", size = 389945, upload-time = "2025-11-30T20:22:44.819Z" }, + { url = "https://files.pythonhosted.org/packages/bd/a8/073cac3ed2c6387df38f71296d002ab43496a96b92c823e76f46b8af0543/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0a59119fc6e3f460315fe9d08149f8102aa322299deaa5cab5b40092345c2136", size = 407783, upload-time = "2025-11-30T20:22:46.103Z" }, + { url = "https://files.pythonhosted.org/packages/77/57/5999eb8c58671f1c11eba084115e77a8899d6e694d2a18f69f0ba471ec8b/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:76fec018282b4ead0364022e3c54b60bf368b9d926877957a8624b58419169b7", size = 515021, upload-time = "2025-11-30T20:22:47.458Z" }, + { url = "https://files.pythonhosted.org/packages/e0/af/5ab4833eadc36c0a8ed2bc5c0de0493c04f6c06de223170bd0798ff98ced/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:692bef75a5525db97318e8cd061542b5a79812d711ea03dbc1f6f8dbb0c5f0d2", size = 414589, upload-time = "2025-11-30T20:22:48.872Z" }, + { url = "https://files.pythonhosted.org/packages/b7/de/f7192e12b21b9e9a68a6d0f249b4af3fdcdff8418be0767a627564afa1f1/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9027da1ce107104c50c81383cae773ef5c24d296dd11c99e2629dbd7967a20c6", size = 394025, upload-time = "2025-11-30T20:22:50.196Z" }, + { url = "https://files.pythonhosted.org/packages/91/c4/fc70cd0249496493500e7cc2de87504f5aa6509de1e88623431fec76d4b6/rpds_py-0.30.0-cp313-cp313-manylinux_2_31_riscv64.whl", hash = "sha256:9cf69cdda1f5968a30a359aba2f7f9aa648a9ce4b580d6826437f2b291cfc86e", size = 408895, upload-time = "2025-11-30T20:22:51.87Z" }, + { url = "https://files.pythonhosted.org/packages/58/95/d9275b05ab96556fefff73a385813eb66032e4c99f411d0795372d9abcea/rpds_py-0.30.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a4796a717bf12b9da9d3ad002519a86063dcac8988b030e405704ef7d74d2d9d", size = 422799, upload-time = "2025-11-30T20:22:53.341Z" }, + { url = "https://files.pythonhosted.org/packages/06/c1/3088fc04b6624eb12a57eb814f0d4997a44b0d208d6cace713033ff1a6ba/rpds_py-0.30.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5d4c2aa7c50ad4728a094ebd5eb46c452e9cb7edbfdb18f9e1221f597a73e1e7", size = 572731, upload-time = "2025-11-30T20:22:54.778Z" }, + { url = "https://files.pythonhosted.org/packages/d8/42/c612a833183b39774e8ac8fecae81263a68b9583ee343db33ab571a7ce55/rpds_py-0.30.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ba81a9203d07805435eb06f536d95a266c21e5b2dfbf6517748ca40c98d19e31", size = 599027, upload-time = "2025-11-30T20:22:56.212Z" }, + { url = "https://files.pythonhosted.org/packages/5f/60/525a50f45b01d70005403ae0e25f43c0384369ad24ffe46e8d9068b50086/rpds_py-0.30.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:945dccface01af02675628334f7cf49c2af4c1c904748efc5cf7bbdf0b579f95", size = 563020, upload-time = "2025-11-30T20:22:58.2Z" }, + { url = "https://files.pythonhosted.org/packages/0b/5d/47c4655e9bcd5ca907148535c10e7d489044243cc9941c16ed7cd53be91d/rpds_py-0.30.0-cp313-cp313-win32.whl", hash = "sha256:b40fb160a2db369a194cb27943582b38f79fc4887291417685f3ad693c5a1d5d", size = 223139, upload-time = "2025-11-30T20:23:00.209Z" }, + { url = "https://files.pythonhosted.org/packages/f2/e1/485132437d20aa4d3e1d8b3fb5a5e65aa8139f1e097080c2a8443201742c/rpds_py-0.30.0-cp313-cp313-win_amd64.whl", hash = "sha256:806f36b1b605e2d6a72716f321f20036b9489d29c51c91f4dd29a3e3afb73b15", size = 240224, upload-time = "2025-11-30T20:23:02.008Z" }, + { url = "https://files.pythonhosted.org/packages/24/95/ffd128ed1146a153d928617b0ef673960130be0009c77d8fbf0abe306713/rpds_py-0.30.0-cp313-cp313-win_arm64.whl", hash = "sha256:d96c2086587c7c30d44f31f42eae4eac89b60dabbac18c7669be3700f13c3ce1", size = 230645, upload-time = "2025-11-30T20:23:03.43Z" }, + { url = "https://files.pythonhosted.org/packages/ff/1b/b10de890a0def2a319a2626334a7f0ae388215eb60914dbac8a3bae54435/rpds_py-0.30.0-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:eb0b93f2e5c2189ee831ee43f156ed34e2a89a78a66b98cadad955972548be5a", size = 364443, upload-time = "2025-11-30T20:23:04.878Z" }, + { url = "https://files.pythonhosted.org/packages/0d/bf/27e39f5971dc4f305a4fb9c672ca06f290f7c4e261c568f3dea16a410d47/rpds_py-0.30.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:922e10f31f303c7c920da8981051ff6d8c1a56207dbdf330d9047f6d30b70e5e", size = 353375, upload-time = "2025-11-30T20:23:06.342Z" }, + { url = "https://files.pythonhosted.org/packages/40/58/442ada3bba6e8e6615fc00483135c14a7538d2ffac30e2d933ccf6852232/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdc62c8286ba9bf7f47befdcea13ea0e26bf294bda99758fd90535cbaf408000", size = 383850, upload-time = "2025-11-30T20:23:07.825Z" }, + { url = "https://files.pythonhosted.org/packages/14/14/f59b0127409a33c6ef6f5c1ebd5ad8e32d7861c9c7adfa9a624fc3889f6c/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:47f9a91efc418b54fb8190a6b4aa7813a23fb79c51f4bb84e418f5476c38b8db", size = 392812, upload-time = "2025-11-30T20:23:09.228Z" }, + { url = "https://files.pythonhosted.org/packages/b3/66/e0be3e162ac299b3a22527e8913767d869e6cc75c46bd844aa43fb81ab62/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1f3587eb9b17f3789ad50824084fa6f81921bbf9a795826570bda82cb3ed91f2", size = 517841, upload-time = "2025-11-30T20:23:11.186Z" }, + { url = "https://files.pythonhosted.org/packages/3d/55/fa3b9cf31d0c963ecf1ba777f7cf4b2a2c976795ac430d24a1f43d25a6ba/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:39c02563fc592411c2c61d26b6c5fe1e51eaa44a75aa2c8735ca88b0d9599daa", size = 408149, upload-time = "2025-11-30T20:23:12.864Z" }, + { url = "https://files.pythonhosted.org/packages/60/ca/780cf3b1a32b18c0f05c441958d3758f02544f1d613abf9488cd78876378/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:51a1234d8febafdfd33a42d97da7a43f5dcb120c1060e352a3fbc0c6d36e2083", size = 383843, upload-time = "2025-11-30T20:23:14.638Z" }, + { url = "https://files.pythonhosted.org/packages/82/86/d5f2e04f2aa6247c613da0c1dd87fcd08fa17107e858193566048a1e2f0a/rpds_py-0.30.0-cp313-cp313t-manylinux_2_31_riscv64.whl", hash = "sha256:eb2c4071ab598733724c08221091e8d80e89064cd472819285a9ab0f24bcedb9", size = 396507, upload-time = "2025-11-30T20:23:16.105Z" }, + { url = "https://files.pythonhosted.org/packages/4b/9a/453255d2f769fe44e07ea9785c8347edaf867f7026872e76c1ad9f7bed92/rpds_py-0.30.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6bdfdb946967d816e6adf9a3d8201bfad269c67efe6cefd7093ef959683c8de0", size = 414949, upload-time = "2025-11-30T20:23:17.539Z" }, + { url = "https://files.pythonhosted.org/packages/a3/31/622a86cdc0c45d6df0e9ccb6becdba5074735e7033c20e401a6d9d0e2ca0/rpds_py-0.30.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:c77afbd5f5250bf27bf516c7c4a016813eb2d3e116139aed0096940c5982da94", size = 565790, upload-time = "2025-11-30T20:23:19.029Z" }, + { url = "https://files.pythonhosted.org/packages/1c/5d/15bbf0fb4a3f58a3b1c67855ec1efcc4ceaef4e86644665fff03e1b66d8d/rpds_py-0.30.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:61046904275472a76c8c90c9ccee9013d70a6d0f73eecefd38c1ae7c39045a08", size = 590217, upload-time = "2025-11-30T20:23:20.885Z" }, + { url = "https://files.pythonhosted.org/packages/6d/61/21b8c41f68e60c8cc3b2e25644f0e3681926020f11d06ab0b78e3c6bbff1/rpds_py-0.30.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:4c5f36a861bc4b7da6516dbdf302c55313afa09b81931e8280361a4f6c9a2d27", size = 555806, upload-time = "2025-11-30T20:23:22.488Z" }, + { url = "https://files.pythonhosted.org/packages/f9/39/7e067bb06c31de48de3eb200f9fc7c58982a4d3db44b07e73963e10d3be9/rpds_py-0.30.0-cp313-cp313t-win32.whl", hash = "sha256:3d4a69de7a3e50ffc214ae16d79d8fbb0922972da0356dcf4d0fdca2878559c6", size = 211341, upload-time = "2025-11-30T20:23:24.449Z" }, + { url = "https://files.pythonhosted.org/packages/0a/4d/222ef0b46443cf4cf46764d9c630f3fe4abaa7245be9417e56e9f52b8f65/rpds_py-0.30.0-cp313-cp313t-win_amd64.whl", hash = "sha256:f14fc5df50a716f7ece6a80b6c78bb35ea2ca47c499e422aa4463455dd96d56d", size = 225768, upload-time = "2025-11-30T20:23:25.908Z" }, + { url = "https://files.pythonhosted.org/packages/86/81/dad16382ebbd3d0e0328776d8fd7ca94220e4fa0798d1dc5e7da48cb3201/rpds_py-0.30.0-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:68f19c879420aa08f61203801423f6cd5ac5f0ac4ac82a2368a9fcd6a9a075e0", size = 362099, upload-time = "2025-11-30T20:23:27.316Z" }, + { url = "https://files.pythonhosted.org/packages/2b/60/19f7884db5d5603edf3c6bce35408f45ad3e97e10007df0e17dd57af18f8/rpds_py-0.30.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:ec7c4490c672c1a0389d319b3a9cfcd098dcdc4783991553c332a15acf7249be", size = 353192, upload-time = "2025-11-30T20:23:29.151Z" }, + { url = "https://files.pythonhosted.org/packages/bf/c4/76eb0e1e72d1a9c4703c69607cec123c29028bff28ce41588792417098ac/rpds_py-0.30.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f251c812357a3fed308d684a5079ddfb9d933860fc6de89f2b7ab00da481e65f", size = 384080, upload-time = "2025-11-30T20:23:30.785Z" }, + { url = "https://files.pythonhosted.org/packages/72/87/87ea665e92f3298d1b26d78814721dc39ed8d2c74b86e83348d6b48a6f31/rpds_py-0.30.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ac98b175585ecf4c0348fd7b29c3864bda53b805c773cbf7bfdaffc8070c976f", size = 394841, upload-time = "2025-11-30T20:23:32.209Z" }, + { url = "https://files.pythonhosted.org/packages/77/ad/7783a89ca0587c15dcbf139b4a8364a872a25f861bdb88ed99f9b0dec985/rpds_py-0.30.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3e62880792319dbeb7eb866547f2e35973289e7d5696c6e295476448f5b63c87", size = 516670, upload-time = "2025-11-30T20:23:33.742Z" }, + { url = "https://files.pythonhosted.org/packages/5b/3c/2882bdac942bd2172f3da574eab16f309ae10a3925644e969536553cb4ee/rpds_py-0.30.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4e7fc54e0900ab35d041b0601431b0a0eb495f0851a0639b6ef90f7741b39a18", size = 408005, upload-time = "2025-11-30T20:23:35.253Z" }, + { url = "https://files.pythonhosted.org/packages/ce/81/9a91c0111ce1758c92516a3e44776920b579d9a7c09b2b06b642d4de3f0f/rpds_py-0.30.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47e77dc9822d3ad616c3d5759ea5631a75e5809d5a28707744ef79d7a1bcfcad", size = 382112, upload-time = "2025-11-30T20:23:36.842Z" }, + { url = "https://files.pythonhosted.org/packages/cf/8e/1da49d4a107027e5fbc64daeab96a0706361a2918da10cb41769244b805d/rpds_py-0.30.0-cp314-cp314-manylinux_2_31_riscv64.whl", hash = "sha256:b4dc1a6ff022ff85ecafef7979a2c6eb423430e05f1165d6688234e62ba99a07", size = 399049, upload-time = "2025-11-30T20:23:38.343Z" }, + { url = "https://files.pythonhosted.org/packages/df/5a/7ee239b1aa48a127570ec03becbb29c9d5a9eb092febbd1699d567cae859/rpds_py-0.30.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4559c972db3a360808309e06a74628b95eaccbf961c335c8fe0d590cf587456f", size = 415661, upload-time = "2025-11-30T20:23:40.263Z" }, + { url = "https://files.pythonhosted.org/packages/70/ea/caa143cf6b772f823bc7929a45da1fa83569ee49b11d18d0ada7f5ee6fd6/rpds_py-0.30.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:0ed177ed9bded28f8deb6ab40c183cd1192aa0de40c12f38be4d59cd33cb5c65", size = 565606, upload-time = "2025-11-30T20:23:42.186Z" }, + { url = "https://files.pythonhosted.org/packages/64/91/ac20ba2d69303f961ad8cf55bf7dbdb4763f627291ba3d0d7d67333cced9/rpds_py-0.30.0-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:ad1fa8db769b76ea911cb4e10f049d80bf518c104f15b3edb2371cc65375c46f", size = 591126, upload-time = "2025-11-30T20:23:44.086Z" }, + { url = "https://files.pythonhosted.org/packages/21/20/7ff5f3c8b00c8a95f75985128c26ba44503fb35b8e0259d812766ea966c7/rpds_py-0.30.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:46e83c697b1f1c72b50e5ee5adb4353eef7406fb3f2043d64c33f20ad1c2fc53", size = 553371, upload-time = "2025-11-30T20:23:46.004Z" }, + { url = "https://files.pythonhosted.org/packages/72/c7/81dadd7b27c8ee391c132a6b192111ca58d866577ce2d9b0ca157552cce0/rpds_py-0.30.0-cp314-cp314-win32.whl", hash = "sha256:ee454b2a007d57363c2dfd5b6ca4a5d7e2c518938f8ed3b706e37e5d470801ed", size = 215298, upload-time = "2025-11-30T20:23:47.696Z" }, + { url = "https://files.pythonhosted.org/packages/3e/d2/1aaac33287e8cfb07aab2e6b8ac1deca62f6f65411344f1433c55e6f3eb8/rpds_py-0.30.0-cp314-cp314-win_amd64.whl", hash = "sha256:95f0802447ac2d10bcc69f6dc28fe95fdf17940367b21d34e34c737870758950", size = 228604, upload-time = "2025-11-30T20:23:49.501Z" }, + { url = "https://files.pythonhosted.org/packages/e8/95/ab005315818cc519ad074cb7784dae60d939163108bd2b394e60dc7b5461/rpds_py-0.30.0-cp314-cp314-win_arm64.whl", hash = "sha256:613aa4771c99f03346e54c3f038e4cc574ac09a3ddfb0e8878487335e96dead6", size = 222391, upload-time = "2025-11-30T20:23:50.96Z" }, + { url = "https://files.pythonhosted.org/packages/9e/68/154fe0194d83b973cdedcdcc88947a2752411165930182ae41d983dcefa6/rpds_py-0.30.0-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:7e6ecfcb62edfd632e56983964e6884851786443739dbfe3582947e87274f7cb", size = 364868, upload-time = "2025-11-30T20:23:52.494Z" }, + { url = "https://files.pythonhosted.org/packages/83/69/8bbc8b07ec854d92a8b75668c24d2abcb1719ebf890f5604c61c9369a16f/rpds_py-0.30.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:a1d0bc22a7cdc173fedebb73ef81e07faef93692b8c1ad3733b67e31e1b6e1b8", size = 353747, upload-time = "2025-11-30T20:23:54.036Z" }, + { url = "https://files.pythonhosted.org/packages/ab/00/ba2e50183dbd9abcce9497fa5149c62b4ff3e22d338a30d690f9af970561/rpds_py-0.30.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0d08f00679177226c4cb8c5265012eea897c8ca3b93f429e546600c971bcbae7", size = 383795, upload-time = "2025-11-30T20:23:55.556Z" }, + { url = "https://files.pythonhosted.org/packages/05/6f/86f0272b84926bcb0e4c972262f54223e8ecc556b3224d281e6598fc9268/rpds_py-0.30.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5965af57d5848192c13534f90f9dd16464f3c37aaf166cc1da1cae1fd5a34898", size = 393330, upload-time = "2025-11-30T20:23:57.033Z" }, + { url = "https://files.pythonhosted.org/packages/cb/e9/0e02bb2e6dc63d212641da45df2b0bf29699d01715913e0d0f017ee29438/rpds_py-0.30.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9a4e86e34e9ab6b667c27f3211ca48f73dba7cd3d90f8d5b11be56e5dbc3fb4e", size = 518194, upload-time = "2025-11-30T20:23:58.637Z" }, + { url = "https://files.pythonhosted.org/packages/ee/ca/be7bca14cf21513bdf9c0606aba17d1f389ea2b6987035eb4f62bd923f25/rpds_py-0.30.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5d3e6b26f2c785d65cc25ef1e5267ccbe1b069c5c21b8cc724efee290554419", size = 408340, upload-time = "2025-11-30T20:24:00.2Z" }, + { url = "https://files.pythonhosted.org/packages/c2/c7/736e00ebf39ed81d75544c0da6ef7b0998f8201b369acf842f9a90dc8fce/rpds_py-0.30.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:626a7433c34566535b6e56a1b39a7b17ba961e97ce3b80ec62e6f1312c025551", size = 383765, upload-time = "2025-11-30T20:24:01.759Z" }, + { url = "https://files.pythonhosted.org/packages/4a/3f/da50dfde9956aaf365c4adc9533b100008ed31aea635f2b8d7b627e25b49/rpds_py-0.30.0-cp314-cp314t-manylinux_2_31_riscv64.whl", hash = "sha256:acd7eb3f4471577b9b5a41baf02a978e8bdeb08b4b355273994f8b87032000a8", size = 396834, upload-time = "2025-11-30T20:24:03.687Z" }, + { url = "https://files.pythonhosted.org/packages/4e/00/34bcc2565b6020eab2623349efbdec810676ad571995911f1abdae62a3a0/rpds_py-0.30.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fe5fa731a1fa8a0a56b0977413f8cacac1768dad38d16b3a296712709476fbd5", size = 415470, upload-time = "2025-11-30T20:24:05.232Z" }, + { url = "https://files.pythonhosted.org/packages/8c/28/882e72b5b3e6f718d5453bd4d0d9cf8df36fddeb4ddbbab17869d5868616/rpds_py-0.30.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:74a3243a411126362712ee1524dfc90c650a503502f135d54d1b352bd01f2404", size = 565630, upload-time = "2025-11-30T20:24:06.878Z" }, + { url = "https://files.pythonhosted.org/packages/3b/97/04a65539c17692de5b85c6e293520fd01317fd878ea1995f0367d4532fb1/rpds_py-0.30.0-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:3e8eeb0544f2eb0d2581774be4c3410356eba189529a6b3e36bbbf9696175856", size = 591148, upload-time = "2025-11-30T20:24:08.445Z" }, + { url = "https://files.pythonhosted.org/packages/85/70/92482ccffb96f5441aab93e26c4d66489eb599efdcf96fad90c14bbfb976/rpds_py-0.30.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:dbd936cde57abfee19ab3213cf9c26be06d60750e60a8e4dd85d1ab12c8b1f40", size = 556030, upload-time = "2025-11-30T20:24:10.956Z" }, + { url = "https://files.pythonhosted.org/packages/20/53/7c7e784abfa500a2b6b583b147ee4bb5a2b3747a9166bab52fec4b5b5e7d/rpds_py-0.30.0-cp314-cp314t-win32.whl", hash = "sha256:dc824125c72246d924f7f796b4f63c1e9dc810c7d9e2355864b3c3a73d59ade0", size = 211570, upload-time = "2025-11-30T20:24:12.735Z" }, + { url = "https://files.pythonhosted.org/packages/d0/02/fa464cdfbe6b26e0600b62c528b72d8608f5cc49f96b8d6e38c95d60c676/rpds_py-0.30.0-cp314-cp314t-win_amd64.whl", hash = "sha256:27f4b0e92de5bfbc6f86e43959e6edd1425c33b5e69aab0984a72047f2bcf1e3", size = 226532, upload-time = "2025-11-30T20:24:14.634Z" }, + { url = "https://files.pythonhosted.org/packages/69/71/3f34339ee70521864411f8b6992e7ab13ac30d8e4e3309e07c7361767d91/rpds_py-0.30.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:c2262bdba0ad4fc6fb5545660673925c2d2a5d9e2e0fb603aad545427be0fc58", size = 372292, upload-time = "2025-11-30T20:24:16.537Z" }, + { url = "https://files.pythonhosted.org/packages/57/09/f183df9b8f2d66720d2ef71075c59f7e1b336bec7ee4c48f0a2b06857653/rpds_py-0.30.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:ee6af14263f25eedc3bb918a3c04245106a42dfd4f5c2285ea6f997b1fc3f89a", size = 362128, upload-time = "2025-11-30T20:24:18.086Z" }, + { url = "https://files.pythonhosted.org/packages/7a/68/5c2594e937253457342e078f0cc1ded3dd7b2ad59afdbf2d354869110a02/rpds_py-0.30.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3adbb8179ce342d235c31ab8ec511e66c73faa27a47e076ccc92421add53e2bb", size = 391542, upload-time = "2025-11-30T20:24:20.092Z" }, + { url = "https://files.pythonhosted.org/packages/49/5c/31ef1afd70b4b4fbdb2800249f34c57c64beb687495b10aec0365f53dfc4/rpds_py-0.30.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:250fa00e9543ac9b97ac258bd37367ff5256666122c2d0f2bc97577c60a1818c", size = 404004, upload-time = "2025-11-30T20:24:22.231Z" }, + { url = "https://files.pythonhosted.org/packages/e3/63/0cfbea38d05756f3440ce6534d51a491d26176ac045e2707adc99bb6e60a/rpds_py-0.30.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9854cf4f488b3d57b9aaeb105f06d78e5529d3145b1e4a41750167e8c213c6d3", size = 527063, upload-time = "2025-11-30T20:24:24.302Z" }, + { url = "https://files.pythonhosted.org/packages/42/e6/01e1f72a2456678b0f618fc9a1a13f882061690893c192fcad9f2926553a/rpds_py-0.30.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:993914b8e560023bc0a8bf742c5f303551992dcb85e247b1e5c7f4a7d145bda5", size = 413099, upload-time = "2025-11-30T20:24:25.916Z" }, + { url = "https://files.pythonhosted.org/packages/b8/25/8df56677f209003dcbb180765520c544525e3ef21ea72279c98b9aa7c7fb/rpds_py-0.30.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:58edca431fb9b29950807e301826586e5bbf24163677732429770a697ffe6738", size = 392177, upload-time = "2025-11-30T20:24:27.834Z" }, + { url = "https://files.pythonhosted.org/packages/4a/b4/0a771378c5f16f8115f796d1f437950158679bcd2a7c68cf251cfb00ed5b/rpds_py-0.30.0-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl", hash = "sha256:dea5b552272a944763b34394d04577cf0f9bd013207bc32323b5a89a53cf9c2f", size = 406015, upload-time = "2025-11-30T20:24:29.457Z" }, + { url = "https://files.pythonhosted.org/packages/36/d8/456dbba0af75049dc6f63ff295a2f92766b9d521fa00de67a2bd6427d57a/rpds_py-0.30.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ba3af48635eb83d03f6c9735dfb21785303e73d22ad03d489e88adae6eab8877", size = 423736, upload-time = "2025-11-30T20:24:31.22Z" }, + { url = "https://files.pythonhosted.org/packages/13/64/b4d76f227d5c45a7e0b796c674fd81b0a6c4fbd48dc29271857d8219571c/rpds_py-0.30.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:dff13836529b921e22f15cb099751209a60009731a68519630a24d61f0b1b30a", size = 573981, upload-time = "2025-11-30T20:24:32.934Z" }, + { url = "https://files.pythonhosted.org/packages/20/91/092bacadeda3edf92bf743cc96a7be133e13a39cdbfd7b5082e7ab638406/rpds_py-0.30.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl", hash = "sha256:1b151685b23929ab7beec71080a8889d4d6d9fa9a983d213f07121205d48e2c4", size = 599782, upload-time = "2025-11-30T20:24:35.169Z" }, + { url = "https://files.pythonhosted.org/packages/d1/b7/b95708304cd49b7b6f82fdd039f1748b66ec2b21d6a45180910802f1abf1/rpds_py-0.30.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:ac37f9f516c51e5753f27dfdef11a88330f04de2d564be3991384b2f3535d02e", size = 562191, upload-time = "2025-11-30T20:24:36.853Z" }, +] + +[[package]] +name = "ruff" +version = "0.15.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/06/04/eab13a954e763b0606f460443fcbf6bb5a0faf06890ea3754ff16523dce5/ruff-0.15.2.tar.gz", hash = "sha256:14b965afee0969e68bb871eba625343b8673375f457af4abe98553e8bbb98342", size = 4558148, upload-time = "2026-02-19T22:32:20.271Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2f/70/3a4dc6d09b13cb3e695f28307e5d889b2e1a66b7af9c5e257e796695b0e6/ruff-0.15.2-py3-none-linux_armv6l.whl", hash = "sha256:120691a6fdae2f16d65435648160f5b81a9625288f75544dc40637436b5d3c0d", size = 10430565, upload-time = "2026-02-19T22:32:41.824Z" }, + { url = "https://files.pythonhosted.org/packages/71/0b/bb8457b56185ece1305c666dc895832946d24055be90692381c31d57466d/ruff-0.15.2-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:a89056d831256099658b6bba4037ac6dd06f49d194199215befe2bb10457ea5e", size = 10820354, upload-time = "2026-02-19T22:32:07.366Z" }, + { url = "https://files.pythonhosted.org/packages/2d/c1/e0532d7f9c9e0b14c46f61b14afd563298b8b83f337b6789ddd987e46121/ruff-0.15.2-py3-none-macosx_11_0_arm64.whl", hash = "sha256:e36dee3a64be0ebd23c86ffa3aa3fd3ac9a712ff295e192243f814a830b6bd87", size = 10170767, upload-time = "2026-02-19T22:32:13.188Z" }, + { url = "https://files.pythonhosted.org/packages/47/e8/da1aa341d3af017a21c7a62fb5ec31d4e7ad0a93ab80e3a508316efbcb23/ruff-0.15.2-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a9fb47b6d9764677f8c0a193c0943ce9a05d6763523f132325af8a858eadc2b9", size = 10529591, upload-time = "2026-02-19T22:32:02.547Z" }, + { url = "https://files.pythonhosted.org/packages/93/74/184fbf38e9f3510231fbc5e437e808f0b48c42d1df9434b208821efcd8d6/ruff-0.15.2-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f376990f9d0d6442ea9014b19621d8f2aaf2b8e39fdbfc79220b7f0c596c9b80", size = 10260771, upload-time = "2026-02-19T22:32:36.938Z" }, + { url = "https://files.pythonhosted.org/packages/05/ac/605c20b8e059a0bc4b42360414baa4892ff278cec1c91fff4be0dceedefd/ruff-0.15.2-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2dcc987551952d73cbf5c88d9fdee815618d497e4df86cd4c4824cc59d5dd75f", size = 11045791, upload-time = "2026-02-19T22:32:31.642Z" }, + { url = "https://files.pythonhosted.org/packages/fd/52/db6e419908f45a894924d410ac77d64bdd98ff86901d833364251bd08e22/ruff-0.15.2-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:42a47fd785cbe8c01b9ff45031af875d101b040ad8f4de7bbb716487c74c9a77", size = 11879271, upload-time = "2026-02-19T22:32:29.305Z" }, + { url = "https://files.pythonhosted.org/packages/3e/d8/7992b18f2008bdc9231d0f10b16df7dda964dbf639e2b8b4c1b4e91b83af/ruff-0.15.2-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cbe9f49354866e575b4c6943856989f966421870e85cd2ac94dccb0a9dcb2fea", size = 11303707, upload-time = "2026-02-19T22:32:22.492Z" }, + { url = "https://files.pythonhosted.org/packages/d7/02/849b46184bcfdd4b64cde61752cc9a146c54759ed036edd11857e9b8443b/ruff-0.15.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7a672c82b5f9887576087d97be5ce439f04bbaf548ee987b92d3a7dede41d3a", size = 11149151, upload-time = "2026-02-19T22:32:44.234Z" }, + { url = "https://files.pythonhosted.org/packages/70/04/f5284e388bab60d1d3b99614a5a9aeb03e0f333847e2429bebd2aaa1feec/ruff-0.15.2-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:72ecc64f46f7019e2bcc3cdc05d4a7da958b629a5ab7033195e11a438403d956", size = 11091132, upload-time = "2026-02-19T22:32:24.691Z" }, + { url = "https://files.pythonhosted.org/packages/fa/ae/88d844a21110e14d92cf73d57363fab59b727ebeabe78009b9ccb23500af/ruff-0.15.2-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:8dcf243b15b561c655c1ef2f2b0050e5d50db37fe90115507f6ff37d865dc8b4", size = 10504717, upload-time = "2026-02-19T22:32:26.75Z" }, + { url = "https://files.pythonhosted.org/packages/64/27/867076a6ada7f2b9c8292884ab44d08fd2ba71bd2b5364d4136f3cd537e1/ruff-0.15.2-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:dab6941c862c05739774677c6273166d2510d254dac0695c0e3f5efa1b5585de", size = 10263122, upload-time = "2026-02-19T22:32:10.036Z" }, + { url = "https://files.pythonhosted.org/packages/e7/ef/faf9321d550f8ebf0c6373696e70d1758e20ccdc3951ad7af00c0956be7c/ruff-0.15.2-py3-none-musllinux_1_2_i686.whl", hash = "sha256:1b9164f57fc36058e9a6806eb92af185b0697c9fe4c7c52caa431c6554521e5c", size = 10735295, upload-time = "2026-02-19T22:32:39.227Z" }, + { url = "https://files.pythonhosted.org/packages/2f/55/e8089fec62e050ba84d71b70e7834b97709ca9b7aba10c1a0b196e493f97/ruff-0.15.2-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:80d24fcae24d42659db7e335b9e1531697a7102c19185b8dc4a028b952865fd8", size = 11241641, upload-time = "2026-02-19T22:32:34.617Z" }, + { url = "https://files.pythonhosted.org/packages/23/01/1c30526460f4d23222d0fabd5888868262fd0e2b71a00570ca26483cd993/ruff-0.15.2-py3-none-win32.whl", hash = "sha256:fd5ff9e5f519a7e1bd99cbe8daa324010a74f5e2ebc97c6242c08f26f3714f6f", size = 10507885, upload-time = "2026-02-19T22:32:15.635Z" }, + { url = "https://files.pythonhosted.org/packages/5c/10/3d18e3bbdf8fc50bbb4ac3cc45970aa5a9753c5cb51bf9ed9a3cd8b79fa3/ruff-0.15.2-py3-none-win_amd64.whl", hash = "sha256:d20014e3dfa400f3ff84830dfb5755ece2de45ab62ecea4af6b7262d0fb4f7c5", size = 11623725, upload-time = "2026-02-19T22:32:04.947Z" }, + { url = "https://files.pythonhosted.org/packages/6d/78/097c0798b1dab9f8affe73da9642bb4500e098cb27fd8dc9724816ac747b/ruff-0.15.2-py3-none-win_arm64.whl", hash = "sha256:cabddc5822acdc8f7b5527b36ceac55cc51eec7b1946e60181de8fe83ca8876e", size = 10941649, upload-time = "2026-02-19T22:32:18.108Z" }, +] + +[[package]] +name = "s3transfer" +version = "0.16.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "botocore" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/05/04/74127fc843314818edfa81b5540e26dd537353b123a4edc563109d8f17dd/s3transfer-0.16.0.tar.gz", hash = "sha256:8e990f13268025792229cd52fa10cb7163744bf56e719e0b9cb925ab79abf920", size = 153827, upload-time = "2025-12-01T02:30:59.114Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fc/51/727abb13f44c1fcf6d145979e1535a35794db0f6e450a0cb46aa24732fe2/s3transfer-0.16.0-py3-none-any.whl", hash = "sha256:18e25d66fed509e3868dc1572b3f427ff947dd2c56f844a5bf09481ad3f3b2fe", size = 86830, upload-time = "2025-12-01T02:30:57.729Z" }, +] + +[[package]] +name = "safetensors" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/29/9c/6e74567782559a63bd040a236edca26fd71bc7ba88de2ef35d75df3bca5e/safetensors-0.7.0.tar.gz", hash = "sha256:07663963b67e8bd9f0b8ad15bb9163606cd27cc5a1b96235a50d8369803b96b0", size = 200878, upload-time = "2025-11-19T15:18:43.199Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fa/47/aef6c06649039accf914afef490268e1067ed82be62bcfa5b7e886ad15e8/safetensors-0.7.0-cp38-abi3-macosx_10_12_x86_64.whl", hash = "sha256:c82f4d474cf725255d9e6acf17252991c3c8aac038d6ef363a4bf8be2f6db517", size = 467781, upload-time = "2025-11-19T15:18:35.84Z" }, + { url = "https://files.pythonhosted.org/packages/e8/00/374c0c068e30cd31f1e1b46b4b5738168ec79e7689ca82ee93ddfea05109/safetensors-0.7.0-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:94fd4858284736bb67a897a41608b5b0c2496c9bdb3bf2af1fa3409127f20d57", size = 447058, upload-time = "2025-11-19T15:18:34.416Z" }, + { url = "https://files.pythonhosted.org/packages/f1/06/578ffed52c2296f93d7fd2d844cabfa92be51a587c38c8afbb8ae449ca89/safetensors-0.7.0-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e07d91d0c92a31200f25351f4acb2bc6aff7f48094e13ebb1d0fb995b54b6542", size = 491748, upload-time = "2025-11-19T15:18:09.79Z" }, + { url = "https://files.pythonhosted.org/packages/ae/33/1debbbb70e4791dde185edb9413d1fe01619255abb64b300157d7f15dddd/safetensors-0.7.0-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8469155f4cb518bafb4acf4865e8bb9d6804110d2d9bdcaa78564b9fd841e104", size = 503881, upload-time = "2025-11-19T15:18:16.145Z" }, + { url = "https://files.pythonhosted.org/packages/8e/1c/40c2ca924d60792c3be509833df711b553c60effbd91da6f5284a83f7122/safetensors-0.7.0-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:54bef08bf00a2bff599982f6b08e8770e09cc012d7bba00783fc7ea38f1fb37d", size = 623463, upload-time = "2025-11-19T15:18:21.11Z" }, + { url = "https://files.pythonhosted.org/packages/9b/3a/13784a9364bd43b0d61eef4bea2845039bc2030458b16594a1bd787ae26e/safetensors-0.7.0-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:42cb091236206bb2016d245c377ed383aa7f78691748f3bb6ee1bfa51ae2ce6a", size = 532855, upload-time = "2025-11-19T15:18:25.719Z" }, + { url = "https://files.pythonhosted.org/packages/a0/60/429e9b1cb3fc651937727befe258ea24122d9663e4d5709a48c9cbfceecb/safetensors-0.7.0-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dac7252938f0696ddea46f5e855dd3138444e82236e3be475f54929f0c510d48", size = 507152, upload-time = "2025-11-19T15:18:33.023Z" }, + { url = "https://files.pythonhosted.org/packages/3c/a8/4b45e4e059270d17af60359713ffd83f97900d45a6afa73aaa0d737d48b6/safetensors-0.7.0-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1d060c70284127fa805085d8f10fbd0962792aed71879d00864acda69dbab981", size = 541856, upload-time = "2025-11-19T15:18:31.075Z" }, + { url = "https://files.pythonhosted.org/packages/06/87/d26d8407c44175d8ae164a95b5a62707fcc445f3c0c56108e37d98070a3d/safetensors-0.7.0-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:cdab83a366799fa730f90a4ebb563e494f28e9e92c4819e556152ad55e43591b", size = 674060, upload-time = "2025-11-19T15:18:37.211Z" }, + { url = "https://files.pythonhosted.org/packages/11/f5/57644a2ff08dc6325816ba7217e5095f17269dada2554b658442c66aed51/safetensors-0.7.0-cp38-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:672132907fcad9f2aedcb705b2d7b3b93354a2aec1b2f706c4db852abe338f85", size = 771715, upload-time = "2025-11-19T15:18:38.689Z" }, + { url = "https://files.pythonhosted.org/packages/86/31/17883e13a814bd278ae6e266b13282a01049b0c81341da7fd0e3e71a80a3/safetensors-0.7.0-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:5d72abdb8a4d56d4020713724ba81dac065fedb7f3667151c4a637f1d3fb26c0", size = 714377, upload-time = "2025-11-19T15:18:40.162Z" }, + { url = "https://files.pythonhosted.org/packages/4a/d8/0c8a7dc9b41dcac53c4cbf9df2b9c83e0e0097203de8b37a712b345c0be5/safetensors-0.7.0-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b0f6d66c1c538d5a94a73aa9ddca8ccc4227e6c9ff555322ea40bdd142391dd4", size = 677368, upload-time = "2025-11-19T15:18:41.627Z" }, + { url = "https://files.pythonhosted.org/packages/05/e5/cb4b713c8a93469e3c5be7c3f8d77d307e65fe89673e731f5c2bfd0a9237/safetensors-0.7.0-cp38-abi3-win32.whl", hash = "sha256:c74af94bf3ac15ac4d0f2a7c7b4663a15f8c2ab15ed0fc7531ca61d0835eccba", size = 326423, upload-time = "2025-11-19T15:18:45.74Z" }, + { url = "https://files.pythonhosted.org/packages/5d/e6/ec8471c8072382cb91233ba7267fd931219753bb43814cbc71757bfd4dab/safetensors-0.7.0-cp38-abi3-win_amd64.whl", hash = "sha256:d1239932053f56f3456f32eb9625590cc7582e905021f94636202a864d470755", size = 341380, upload-time = "2025-11-19T15:18:44.427Z" }, +] + +[[package]] +name = "scikit-learn" +version = "1.8.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "joblib" }, + { name = "numpy" }, + { name = "scipy" }, + { name = "threadpoolctl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0e/d4/40988bf3b8e34feec1d0e6a051446b1f66225f8529b9309becaeef62b6c4/scikit_learn-1.8.0.tar.gz", hash = "sha256:9bccbb3b40e3de10351f8f5068e105d0f4083b1a65fa07b6634fbc401a6287fd", size = 7335585, upload-time = "2025-12-10T07:08:53.618Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c9/92/53ea2181da8ac6bf27170191028aee7251f8f841f8d3edbfdcaf2008fde9/scikit_learn-1.8.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:146b4d36f800c013d267b29168813f7a03a43ecd2895d04861f1240b564421da", size = 8595835, upload-time = "2025-12-10T07:07:39.385Z" }, + { url = "https://files.pythonhosted.org/packages/01/18/d154dc1638803adf987910cdd07097d9c526663a55666a97c124d09fb96a/scikit_learn-1.8.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:f984ca4b14914e6b4094c5d52a32ea16b49832c03bd17a110f004db3c223e8e1", size = 8080381, upload-time = "2025-12-10T07:07:41.93Z" }, + { url = "https://files.pythonhosted.org/packages/8a/44/226142fcb7b7101e64fdee5f49dbe6288d4c7af8abf593237b70fca080a4/scikit_learn-1.8.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5e30adb87f0cc81c7690a84f7932dd66be5bac57cfe16b91cb9151683a4a2d3b", size = 8799632, upload-time = "2025-12-10T07:07:43.899Z" }, + { url = "https://files.pythonhosted.org/packages/36/4d/4a67f30778a45d542bbea5db2dbfa1e9e100bf9ba64aefe34215ba9f11f6/scikit_learn-1.8.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ada8121bcb4dac28d930febc791a69f7cb1673c8495e5eee274190b73a4559c1", size = 9103788, upload-time = "2025-12-10T07:07:45.982Z" }, + { url = "https://files.pythonhosted.org/packages/89/3c/45c352094cfa60050bcbb967b1faf246b22e93cb459f2f907b600f2ceda5/scikit_learn-1.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:c57b1b610bd1f40ba43970e11ce62821c2e6569e4d74023db19c6b26f246cb3b", size = 8081706, upload-time = "2025-12-10T07:07:48.111Z" }, + { url = "https://files.pythonhosted.org/packages/3d/46/5416595bb395757f754feb20c3d776553a386b661658fb21b7c814e89efe/scikit_learn-1.8.0-cp311-cp311-win_arm64.whl", hash = "sha256:2838551e011a64e3053ad7618dda9310175f7515f1742fa2d756f7c874c05961", size = 7688451, upload-time = "2025-12-10T07:07:49.873Z" }, + { url = "https://files.pythonhosted.org/packages/90/74/e6a7cc4b820e95cc38cf36cd74d5aa2b42e8ffc2d21fe5a9a9c45c1c7630/scikit_learn-1.8.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:5fb63362b5a7ddab88e52b6dbb47dac3fd7dafeee740dc6c8d8a446ddedade8e", size = 8548242, upload-time = "2025-12-10T07:07:51.568Z" }, + { url = "https://files.pythonhosted.org/packages/49/d8/9be608c6024d021041c7f0b3928d4749a706f4e2c3832bbede4fb4f58c95/scikit_learn-1.8.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:5025ce924beccb28298246e589c691fe1b8c1c96507e6d27d12c5fadd85bfd76", size = 8079075, upload-time = "2025-12-10T07:07:53.697Z" }, + { url = "https://files.pythonhosted.org/packages/dd/47/f187b4636ff80cc63f21cd40b7b2d177134acaa10f6bb73746130ee8c2e5/scikit_learn-1.8.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4496bb2cf7a43ce1a2d7524a79e40bc5da45cf598dbf9545b7e8316ccba47bb4", size = 8660492, upload-time = "2025-12-10T07:07:55.574Z" }, + { url = "https://files.pythonhosted.org/packages/97/74/b7a304feb2b49df9fafa9382d4d09061a96ee9a9449a7cbea7988dda0828/scikit_learn-1.8.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a0bcfe4d0d14aec44921545fd2af2338c7471de9cb701f1da4c9d85906ab847a", size = 8931904, upload-time = "2025-12-10T07:07:57.666Z" }, + { url = "https://files.pythonhosted.org/packages/9f/c4/0ab22726a04ede56f689476b760f98f8f46607caecff993017ac1b64aa5d/scikit_learn-1.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:35c007dedb2ffe38fe3ee7d201ebac4a2deccd2408e8621d53067733e3c74809", size = 8019359, upload-time = "2025-12-10T07:07:59.838Z" }, + { url = "https://files.pythonhosted.org/packages/24/90/344a67811cfd561d7335c1b96ca21455e7e472d281c3c279c4d3f2300236/scikit_learn-1.8.0-cp312-cp312-win_arm64.whl", hash = "sha256:8c497fff237d7b4e07e9ef1a640887fa4fb765647f86fbe00f969ff6280ce2bb", size = 7641898, upload-time = "2025-12-10T07:08:01.36Z" }, + { url = "https://files.pythonhosted.org/packages/03/aa/e22e0768512ce9255eba34775be2e85c2048da73da1193e841707f8f039c/scikit_learn-1.8.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0d6ae97234d5d7079dc0040990a6f7aeb97cb7fa7e8945f1999a429b23569e0a", size = 8513770, upload-time = "2025-12-10T07:08:03.251Z" }, + { url = "https://files.pythonhosted.org/packages/58/37/31b83b2594105f61a381fc74ca19e8780ee923be2d496fcd8d2e1147bd99/scikit_learn-1.8.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:edec98c5e7c128328124a029bceb09eda2d526997780fef8d65e9a69eead963e", size = 8044458, upload-time = "2025-12-10T07:08:05.336Z" }, + { url = "https://files.pythonhosted.org/packages/2d/5a/3f1caed8765f33eabb723596666da4ebbf43d11e96550fb18bdec42b467b/scikit_learn-1.8.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:74b66d8689d52ed04c271e1329f0c61635bcaf5b926db9b12d58914cdc01fe57", size = 8610341, upload-time = "2025-12-10T07:08:07.732Z" }, + { url = "https://files.pythonhosted.org/packages/38/cf/06896db3f71c75902a8e9943b444a56e727418f6b4b4a90c98c934f51ed4/scikit_learn-1.8.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8fdf95767f989b0cfedb85f7ed8ca215d4be728031f56ff5a519ee1e3276dc2e", size = 8900022, upload-time = "2025-12-10T07:08:09.862Z" }, + { url = "https://files.pythonhosted.org/packages/1c/f9/9b7563caf3ec8873e17a31401858efab6b39a882daf6c1bfa88879c0aa11/scikit_learn-1.8.0-cp313-cp313-win_amd64.whl", hash = "sha256:2de443b9373b3b615aec1bb57f9baa6bb3a9bd093f1269ba95c17d870422b271", size = 7989409, upload-time = "2025-12-10T07:08:12.028Z" }, + { url = "https://files.pythonhosted.org/packages/49/bd/1f4001503650e72c4f6009ac0c4413cb17d2d601cef6f71c0453da2732fc/scikit_learn-1.8.0-cp313-cp313-win_arm64.whl", hash = "sha256:eddde82a035681427cbedded4e6eff5e57fa59216c2e3e90b10b19ab1d0a65c3", size = 7619760, upload-time = "2025-12-10T07:08:13.688Z" }, + { url = "https://files.pythonhosted.org/packages/d2/7d/a630359fc9dcc95496588c8d8e3245cc8fd81980251079bc09c70d41d951/scikit_learn-1.8.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:7cc267b6108f0a1499a734167282c00c4ebf61328566b55ef262d48e9849c735", size = 8826045, upload-time = "2025-12-10T07:08:15.215Z" }, + { url = "https://files.pythonhosted.org/packages/cc/56/a0c86f6930cfcd1c7054a2bc417e26960bb88d32444fe7f71d5c2cfae891/scikit_learn-1.8.0-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:fe1c011a640a9f0791146011dfd3c7d9669785f9fed2b2a5f9e207536cf5c2fd", size = 8420324, upload-time = "2025-12-10T07:08:17.561Z" }, + { url = "https://files.pythonhosted.org/packages/46/1e/05962ea1cebc1cf3876667ecb14c283ef755bf409993c5946ade3b77e303/scikit_learn-1.8.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:72358cce49465d140cc4e7792015bb1f0296a9742d5622c67e31399b75468b9e", size = 8680651, upload-time = "2025-12-10T07:08:19.952Z" }, + { url = "https://files.pythonhosted.org/packages/fe/56/a85473cd75f200c9759e3a5f0bcab2d116c92a8a02ee08ccd73b870f8bb4/scikit_learn-1.8.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:80832434a6cc114f5219211eec13dcbc16c2bac0e31ef64c6d346cde3cf054cb", size = 8925045, upload-time = "2025-12-10T07:08:22.11Z" }, + { url = "https://files.pythonhosted.org/packages/cc/b7/64d8cfa896c64435ae57f4917a548d7ac7a44762ff9802f75a79b77cb633/scikit_learn-1.8.0-cp313-cp313t-win_amd64.whl", hash = "sha256:ee787491dbfe082d9c3013f01f5991658b0f38aa8177e4cd4bf434c58f551702", size = 8507994, upload-time = "2025-12-10T07:08:23.943Z" }, + { url = "https://files.pythonhosted.org/packages/5e/37/e192ea709551799379958b4c4771ec507347027bb7c942662c7fbeba31cb/scikit_learn-1.8.0-cp313-cp313t-win_arm64.whl", hash = "sha256:bf97c10a3f5a7543f9b88cbf488d33d175e9146115a451ae34568597ba33dcde", size = 7869518, upload-time = "2025-12-10T07:08:25.71Z" }, + { url = "https://files.pythonhosted.org/packages/24/05/1af2c186174cc92dcab2233f327336058c077d38f6fe2aceb08e6ab4d509/scikit_learn-1.8.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:c22a2da7a198c28dd1a6e1136f19c830beab7fdca5b3e5c8bba8394f8a5c45b3", size = 8528667, upload-time = "2025-12-10T07:08:27.541Z" }, + { url = "https://files.pythonhosted.org/packages/a8/25/01c0af38fe969473fb292bba9dc2b8f9b451f3112ff242c647fee3d0dfe7/scikit_learn-1.8.0-cp314-cp314-macosx_12_0_arm64.whl", hash = "sha256:6b595b07a03069a2b1740dc08c2299993850ea81cce4fe19b2421e0c970de6b7", size = 8066524, upload-time = "2025-12-10T07:08:29.822Z" }, + { url = "https://files.pythonhosted.org/packages/be/ce/a0623350aa0b68647333940ee46fe45086c6060ec604874e38e9ab7d8e6c/scikit_learn-1.8.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:29ffc74089f3d5e87dfca4c2c8450f88bdc61b0fc6ed5d267f3988f19a1309f6", size = 8657133, upload-time = "2025-12-10T07:08:31.865Z" }, + { url = "https://files.pythonhosted.org/packages/b8/cb/861b41341d6f1245e6ca80b1c1a8c4dfce43255b03df034429089ca2a2c5/scikit_learn-1.8.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fb65db5d7531bccf3a4f6bec3462223bea71384e2cda41da0f10b7c292b9e7c4", size = 8923223, upload-time = "2025-12-10T07:08:34.166Z" }, + { url = "https://files.pythonhosted.org/packages/76/18/a8def8f91b18cd1ba6e05dbe02540168cb24d47e8dcf69e8d00b7da42a08/scikit_learn-1.8.0-cp314-cp314-win_amd64.whl", hash = "sha256:56079a99c20d230e873ea40753102102734c5953366972a71d5cb39a32bc40c6", size = 8096518, upload-time = "2025-12-10T07:08:36.339Z" }, + { url = "https://files.pythonhosted.org/packages/d1/77/482076a678458307f0deb44e29891d6022617b2a64c840c725495bee343f/scikit_learn-1.8.0-cp314-cp314-win_arm64.whl", hash = "sha256:3bad7565bc9cf37ce19a7c0d107742b320c1285df7aab1a6e2d28780df167242", size = 7754546, upload-time = "2025-12-10T07:08:38.128Z" }, + { url = "https://files.pythonhosted.org/packages/2d/d1/ef294ca754826daa043b2a104e59960abfab4cf653891037d19dd5b6f3cf/scikit_learn-1.8.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:4511be56637e46c25721e83d1a9cea9614e7badc7040c4d573d75fbe257d6fd7", size = 8848305, upload-time = "2025-12-10T07:08:41.013Z" }, + { url = "https://files.pythonhosted.org/packages/5b/e2/b1f8b05138ee813b8e1a4149f2f0d289547e60851fd1bb268886915adbda/scikit_learn-1.8.0-cp314-cp314t-macosx_12_0_arm64.whl", hash = "sha256:a69525355a641bf8ef136a7fa447672fb54fe8d60cab5538d9eb7c6438543fb9", size = 8432257, upload-time = "2025-12-10T07:08:42.873Z" }, + { url = "https://files.pythonhosted.org/packages/26/11/c32b2138a85dcb0c99f6afd13a70a951bfdff8a6ab42d8160522542fb647/scikit_learn-1.8.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c2656924ec73e5939c76ac4c8b026fc203b83d8900362eb2599d8aee80e4880f", size = 8678673, upload-time = "2025-12-10T07:08:45.362Z" }, + { url = "https://files.pythonhosted.org/packages/c7/57/51f2384575bdec454f4fe4e7a919d696c9ebce914590abf3e52d47607ab8/scikit_learn-1.8.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:15fc3b5d19cc2be65404786857f2e13c70c83dd4782676dd6814e3b89dc8f5b9", size = 8922467, upload-time = "2025-12-10T07:08:47.408Z" }, + { url = "https://files.pythonhosted.org/packages/35/4d/748c9e2872637a57981a04adc038dacaa16ba8ca887b23e34953f0b3f742/scikit_learn-1.8.0-cp314-cp314t-win_amd64.whl", hash = "sha256:00d6f1d66fbcf4eba6e356e1420d33cc06c70a45bb1363cd6f6a8e4ebbbdece2", size = 8774395, upload-time = "2025-12-10T07:08:49.337Z" }, + { url = "https://files.pythonhosted.org/packages/60/22/d7b2ebe4704a5e50790ba089d5c2ae308ab6bb852719e6c3bd4f04c3a363/scikit_learn-1.8.0-cp314-cp314t-win_arm64.whl", hash = "sha256:f28dd15c6bb0b66ba09728cf09fd8736c304be29409bd8445a080c1280619e8c", size = 8002647, upload-time = "2025-12-10T07:08:51.601Z" }, +] + +[[package]] +name = "scikit-network" +version = "0.33.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "scipy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/46/6d/28b00fbef9ff7d8ba31861bf16705a1a74a1696fb65aab2a7c584f966bec/scikit_network-0.33.5.tar.gz", hash = "sha256:ae2149d9a280fdc4bbadd5f8a7b17c8af61c054bc3f834792bc61483e6783c12", size = 1784205, upload-time = "2025-11-19T09:45:14.402Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d4/ed/4a14f48ae7eceeb4bc2085c9467e7dda487b8728261a2556a3d2fdc99b0e/scikit_network-0.33.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:38a5a55f125b9ff574b085994e6374f783469faf1542d140c1630ad2c14127b9", size = 2854152, upload-time = "2025-11-19T09:44:43.049Z" }, + { url = "https://files.pythonhosted.org/packages/30/f9/71e225866bedaf6256ba3cd720c5bdbbe4828df7574d3c9cb741789b0f85/scikit_network-0.33.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6d796382dd914ccaa7d3fb990e148f5f095817690f07119d614f4d5bd63b347e", size = 2840146, upload-time = "2025-11-19T09:44:45.04Z" }, + { url = "https://files.pythonhosted.org/packages/a0/ac/ed64fbc2a21074aa399d3e527695f4d4bb35be3346b5e09edf0637d58080/scikit_network-0.33.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:406af38a07ee1d631b62616496013fc5d941fffb5221fdb9e9091b87352a3f0c", size = 8005762, upload-time = "2025-11-19T09:44:47.186Z" }, + { url = "https://files.pythonhosted.org/packages/d5/8e/9631ea79d6144d746e9a73e79d392656ae0c1d2989b8183f4f13134ad253/scikit_network-0.33.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d001988f07abe03ef4d8189da148968ad520f8cb8666d9ecee0d51c277bd466", size = 8061688, upload-time = "2025-11-19T09:44:49.034Z" }, + { url = "https://files.pythonhosted.org/packages/05/d2/26d21c25245204ef0ac6dfd047e8b6181bdc40d486dd9daadaadfed1c0e6/scikit_network-0.33.5-cp311-cp311-win_amd64.whl", hash = "sha256:8b9338feb0b2bae0f32ddd77453125b4e6c2d365cfb1bb1334b016888466e42f", size = 2738782, upload-time = "2025-11-19T09:44:50.881Z" }, + { url = "https://files.pythonhosted.org/packages/72/32/f092fca9a3ae256e0608ec6a4d8830023ea4ae478c2e27e94cf5802824f0/scikit_network-0.33.5-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:ced625228be1632595d11adaf22d61d1d4c788909cd4d8c364e720b2814aac7f", size = 2874698, upload-time = "2025-11-19T09:44:52.765Z" }, + { url = "https://files.pythonhosted.org/packages/4b/c7/5b2ce72f93b422af48a2b755fbcbab271bf980a6b46484f754d63978f1ff/scikit_network-0.33.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:808b625d28005c24b47cbdf65f780a3a355aa4080992e6b78f03434e873d06e6", size = 2854224, upload-time = "2025-11-19T09:44:55.574Z" }, + { url = "https://files.pythonhosted.org/packages/86/02/974ae67f493ccf988108894e8a9dedfd00ca5113d2848e0b9fc2a4d18824/scikit_network-0.33.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9f2d98059cd79bdb935ff6a638f1c3a12b0b1cb7ace9e1d3fb35476eeeaabaa", size = 7924650, upload-time = "2025-11-19T09:44:57.704Z" }, + { url = "https://files.pythonhosted.org/packages/8d/34/b67e48e111916a6f09fe29a971a9716c14f78525e0ab7c46e6a6538cf2f6/scikit_network-0.33.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aac2d3bc14214f02dac300624f5ec2650af9a98b52f304d300f0ec2813a0e544", size = 8012322, upload-time = "2025-11-19T09:45:00.079Z" }, + { url = "https://files.pythonhosted.org/packages/c3/a2/49293b53b837b3248d19fffd41a9fd73dcb2eeabbab890cc4c8aa237b545/scikit_network-0.33.5-cp312-cp312-win_amd64.whl", hash = "sha256:2866b16aed9ef25ba42cb2f2e44ef2ad079337f336ce48d0604b55fa4af87688", size = 2746491, upload-time = "2025-11-19T09:45:01.997Z" }, + { url = "https://files.pythonhosted.org/packages/d6/cd/0069244e970d27fa0ab0512394295a106605f00c271e85618182460d2c92/scikit_network-0.33.5-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:aa8b490a777e081dd6f69627a26b50cc4012f27fff683a1e4828819a88a5dcf2", size = 2862564, upload-time = "2025-11-19T09:45:03.93Z" }, + { url = "https://files.pythonhosted.org/packages/51/37/85454864e50a65e528fe3b15eb3b41eb68b0c7f6d5c51c220b3198622ede/scikit_network-0.33.5-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3615d073ba9ae1ae30dda2de747474cd23c86cededa82b317471ee9f9bebd1b2", size = 2842521, upload-time = "2025-11-19T09:45:06.31Z" }, + { url = "https://files.pythonhosted.org/packages/c4/b9/4023f35e430b51020f17b0f1d8933768cf1ed7cd1623cc089f5543048983/scikit_network-0.33.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2408d3f4c81256a3193d536aad4a6ffcfbb05d096abe6a9cc0b6b5e275df876d", size = 7871695, upload-time = "2025-11-19T09:45:08.101Z" }, + { url = "https://files.pythonhosted.org/packages/8e/ec/e50755f7459130ba745c42c37665c5ae9a7c7e357f43400b5b8b966f902e/scikit_network-0.33.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:526490a1e0e8e49ad0f4cca193f581d60082a2fa8c9a825eb0b6936050b0d02b", size = 7968762, upload-time = "2025-11-19T09:45:10.347Z" }, + { url = "https://files.pythonhosted.org/packages/45/2a/616974a0adb9d04a791570e9371caaef14c54f8806b04dd59c80a7b60289/scikit_network-0.33.5-cp313-cp313-win_amd64.whl", hash = "sha256:722c15fcede5e07ac008354bbd6ef375e0f5bf1fd52bd40271775997be2fb715", size = 2742482, upload-time = "2025-11-19T09:45:12.843Z" }, +] + +[[package]] +name = "scipy" +version = "1.17.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7a/97/5a3609c4f8d58b039179648e62dd220f89864f56f7357f5d4f45c29eb2cc/scipy-1.17.1.tar.gz", hash = "sha256:95d8e012d8cb8816c226aef832200b1d45109ed4464303e997c5b13122b297c0", size = 30573822, upload-time = "2026-02-23T00:26:24.851Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/df/75/b4ce781849931fef6fd529afa6b63711d5a733065722d0c3e2724af9e40a/scipy-1.17.1-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:1f95b894f13729334fb990162e911c9e5dc1ab390c58aa6cbecb389c5b5e28ec", size = 31613675, upload-time = "2026-02-23T00:16:00.13Z" }, + { url = "https://files.pythonhosted.org/packages/f7/58/bccc2861b305abdd1b8663d6130c0b3d7cc22e8d86663edbc8401bfd40d4/scipy-1.17.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:e18f12c6b0bc5a592ed23d3f7b891f68fd7f8241d69b7883769eb5d5dfb52696", size = 28162057, upload-time = "2026-02-23T00:16:09.456Z" }, + { url = "https://files.pythonhosted.org/packages/6d/ee/18146b7757ed4976276b9c9819108adbc73c5aad636e5353e20746b73069/scipy-1.17.1-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:a3472cfbca0a54177d0faa68f697d8ba4c80bbdc19908c3465556d9f7efce9ee", size = 20334032, upload-time = "2026-02-23T00:16:17.358Z" }, + { url = "https://files.pythonhosted.org/packages/ec/e6/cef1cf3557f0c54954198554a10016b6a03b2ec9e22a4e1df734936bd99c/scipy-1.17.1-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:766e0dc5a616d026a3a1cffa379af959671729083882f50307e18175797b3dfd", size = 22709533, upload-time = "2026-02-23T00:16:25.791Z" }, + { url = "https://files.pythonhosted.org/packages/4d/60/8804678875fc59362b0fb759ab3ecce1f09c10a735680318ac30da8cd76b/scipy-1.17.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:744b2bf3640d907b79f3fd7874efe432d1cf171ee721243e350f55234b4cec4c", size = 33062057, upload-time = "2026-02-23T00:16:36.931Z" }, + { url = "https://files.pythonhosted.org/packages/09/7d/af933f0f6e0767995b4e2d705a0665e454d1c19402aa7e895de3951ebb04/scipy-1.17.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:43af8d1f3bea642559019edfe64e9b11192a8978efbd1539d7bc2aaa23d92de4", size = 35349300, upload-time = "2026-02-23T00:16:49.108Z" }, + { url = "https://files.pythonhosted.org/packages/b4/3d/7ccbbdcbb54c8fdc20d3b6930137c782a163fa626f0aef920349873421ba/scipy-1.17.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:cd96a1898c0a47be4520327e01f874acfd61fb48a9420f8aa9f6483412ffa444", size = 35127333, upload-time = "2026-02-23T00:17:01.293Z" }, + { url = "https://files.pythonhosted.org/packages/e8/19/f926cb11c42b15ba08e3a71e376d816ac08614f769b4f47e06c3580c836a/scipy-1.17.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4eb6c25dd62ee8d5edf68a8e1c171dd71c292fdae95d8aeb3dd7d7de4c364082", size = 37741314, upload-time = "2026-02-23T00:17:12.576Z" }, + { url = "https://files.pythonhosted.org/packages/95/da/0d1df507cf574b3f224ccc3d45244c9a1d732c81dcb26b1e8a766ae271a8/scipy-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:d30e57c72013c2a4fe441c2fcb8e77b14e152ad48b5464858e07e2ad9fbfceff", size = 36607512, upload-time = "2026-02-23T00:17:23.424Z" }, + { url = "https://files.pythonhosted.org/packages/68/7f/bdd79ceaad24b671543ffe0ef61ed8e659440eb683b66f033454dcee90eb/scipy-1.17.1-cp311-cp311-win_arm64.whl", hash = "sha256:9ecb4efb1cd6e8c4afea0daa91a87fbddbce1b99d2895d151596716c0b2e859d", size = 24599248, upload-time = "2026-02-23T00:17:34.561Z" }, + { url = "https://files.pythonhosted.org/packages/35/48/b992b488d6f299dbe3f11a20b24d3dda3d46f1a635ede1c46b5b17a7b163/scipy-1.17.1-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:35c3a56d2ef83efc372eaec584314bd0ef2e2f0d2adb21c55e6ad5b344c0dcb8", size = 31610954, upload-time = "2026-02-23T00:17:49.855Z" }, + { url = "https://files.pythonhosted.org/packages/b2/02/cf107b01494c19dc100f1d0b7ac3cc08666e96ba2d64db7626066cee895e/scipy-1.17.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:fcb310ddb270a06114bb64bbe53c94926b943f5b7f0842194d585c65eb4edd76", size = 28172662, upload-time = "2026-02-23T00:18:01.64Z" }, + { url = "https://files.pythonhosted.org/packages/cf/a9/599c28631bad314d219cf9ffd40e985b24d603fc8a2f4ccc5ae8419a535b/scipy-1.17.1-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:cc90d2e9c7e5c7f1a482c9875007c095c3194b1cfedca3c2f3291cdc2bc7c086", size = 20344366, upload-time = "2026-02-23T00:18:12.015Z" }, + { url = "https://files.pythonhosted.org/packages/35/f5/906eda513271c8deb5af284e5ef0206d17a96239af79f9fa0aebfe0e36b4/scipy-1.17.1-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:c80be5ede8f3f8eded4eff73cc99a25c388ce98e555b17d31da05287015ffa5b", size = 22704017, upload-time = "2026-02-23T00:18:21.502Z" }, + { url = "https://files.pythonhosted.org/packages/da/34/16f10e3042d2f1d6b66e0428308ab52224b6a23049cb2f5c1756f713815f/scipy-1.17.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e19ebea31758fac5893a2ac360fedd00116cbb7628e650842a6691ba7ca28a21", size = 32927842, upload-time = "2026-02-23T00:18:35.367Z" }, + { url = "https://files.pythonhosted.org/packages/01/8e/1e35281b8ab6d5d72ebe9911edcdffa3f36b04ed9d51dec6dd140396e220/scipy-1.17.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:02ae3b274fde71c5e92ac4d54bc06c42d80e399fec704383dcd99b301df37458", size = 35235890, upload-time = "2026-02-23T00:18:49.188Z" }, + { url = "https://files.pythonhosted.org/packages/c5/5c/9d7f4c88bea6e0d5a4f1bc0506a53a00e9fcb198de372bfe4d3652cef482/scipy-1.17.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8a604bae87c6195d8b1045eddece0514d041604b14f2727bbc2b3020172045eb", size = 35003557, upload-time = "2026-02-23T00:18:54.74Z" }, + { url = "https://files.pythonhosted.org/packages/65/94/7698add8f276dbab7a9de9fb6b0e02fc13ee61d51c7c3f85ac28b65e1239/scipy-1.17.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f590cd684941912d10becc07325a3eeb77886fe981415660d9265c4c418d0bea", size = 37625856, upload-time = "2026-02-23T00:19:00.307Z" }, + { url = "https://files.pythonhosted.org/packages/a2/84/dc08d77fbf3d87d3ee27f6a0c6dcce1de5829a64f2eae85a0ecc1f0daa73/scipy-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:41b71f4a3a4cab9d366cd9065b288efc4d4f3c0b37a91a8e0947fb5bd7f31d87", size = 36549682, upload-time = "2026-02-23T00:19:07.67Z" }, + { url = "https://files.pythonhosted.org/packages/bc/98/fe9ae9ffb3b54b62559f52dedaebe204b408db8109a8c66fdd04869e6424/scipy-1.17.1-cp312-cp312-win_arm64.whl", hash = "sha256:f4115102802df98b2b0db3cce5cb9b92572633a1197c77b7553e5203f284a5b3", size = 24547340, upload-time = "2026-02-23T00:19:12.024Z" }, + { url = "https://files.pythonhosted.org/packages/76/27/07ee1b57b65e92645f219b37148a7e7928b82e2b5dbeccecb4dff7c64f0b/scipy-1.17.1-cp313-cp313-macosx_10_14_x86_64.whl", hash = "sha256:5e3c5c011904115f88a39308379c17f91546f77c1667cea98739fe0fccea804c", size = 31590199, upload-time = "2026-02-23T00:19:17.192Z" }, + { url = "https://files.pythonhosted.org/packages/ec/ae/db19f8ab842e9b724bf5dbb7db29302a91f1e55bc4d04b1025d6d605a2c5/scipy-1.17.1-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:6fac755ca3d2c3edcb22f479fceaa241704111414831ddd3bc6056e18516892f", size = 28154001, upload-time = "2026-02-23T00:19:22.241Z" }, + { url = "https://files.pythonhosted.org/packages/5b/58/3ce96251560107b381cbd6e8413c483bbb1228a6b919fa8652b0d4090e7f/scipy-1.17.1-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:7ff200bf9d24f2e4d5dc6ee8c3ac64d739d3a89e2326ba68aaf6c4a2b838fd7d", size = 20325719, upload-time = "2026-02-23T00:19:26.329Z" }, + { url = "https://files.pythonhosted.org/packages/b2/83/15087d945e0e4d48ce2377498abf5ad171ae013232ae31d06f336e64c999/scipy-1.17.1-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:4b400bdc6f79fa02a4d86640310dde87a21fba0c979efff5248908c6f15fad1b", size = 22683595, upload-time = "2026-02-23T00:19:30.304Z" }, + { url = "https://files.pythonhosted.org/packages/b4/e0/e58fbde4a1a594c8be8114eb4aac1a55bcd6587047efc18a61eb1f5c0d30/scipy-1.17.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2b64ca7d4aee0102a97f3ba22124052b4bd2152522355073580bf4845e2550b6", size = 32896429, upload-time = "2026-02-23T00:19:35.536Z" }, + { url = "https://files.pythonhosted.org/packages/f5/5f/f17563f28ff03c7b6799c50d01d5d856a1d55f2676f537ca8d28c7f627cd/scipy-1.17.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:581b2264fc0aa555f3f435a5944da7504ea3a065d7029ad60e7c3d1ae09c5464", size = 35203952, upload-time = "2026-02-23T00:19:42.259Z" }, + { url = "https://files.pythonhosted.org/packages/8d/a5/9afd17de24f657fdfe4df9a3f1ea049b39aef7c06000c13db1530d81ccca/scipy-1.17.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:beeda3d4ae615106d7094f7e7cef6218392e4465cc95d25f900bebabfded0950", size = 34979063, upload-time = "2026-02-23T00:19:47.547Z" }, + { url = "https://files.pythonhosted.org/packages/8b/13/88b1d2384b424bf7c924f2038c1c409f8d88bb2a8d49d097861dd64a57b2/scipy-1.17.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6609bc224e9568f65064cfa72edc0f24ee6655b47575954ec6339534b2798369", size = 37598449, upload-time = "2026-02-23T00:19:53.238Z" }, + { url = "https://files.pythonhosted.org/packages/35/e5/d6d0e51fc888f692a35134336866341c08655d92614f492c6860dc45bb2c/scipy-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:37425bc9175607b0268f493d79a292c39f9d001a357bebb6b88fdfaff13f6448", size = 36510943, upload-time = "2026-02-23T00:20:50.89Z" }, + { url = "https://files.pythonhosted.org/packages/2a/fd/3be73c564e2a01e690e19cc618811540ba5354c67c8680dce3281123fb79/scipy-1.17.1-cp313-cp313-win_arm64.whl", hash = "sha256:5cf36e801231b6a2059bf354720274b7558746f3b1a4efb43fcf557ccd484a87", size = 24545621, upload-time = "2026-02-23T00:20:55.871Z" }, + { url = "https://files.pythonhosted.org/packages/6f/6b/17787db8b8114933a66f9dcc479a8272e4b4da75fe03b0c282f7b0ade8cd/scipy-1.17.1-cp313-cp313t-macosx_10_14_x86_64.whl", hash = "sha256:d59c30000a16d8edc7e64152e30220bfbd724c9bbb08368c054e24c651314f0a", size = 31936708, upload-time = "2026-02-23T00:19:58.694Z" }, + { url = "https://files.pythonhosted.org/packages/38/2e/524405c2b6392765ab1e2b722a41d5da33dc5c7b7278184a8ad29b6cb206/scipy-1.17.1-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:010f4333c96c9bb1a4516269e33cb5917b08ef2166d5556ca2fd9f082a9e6ea0", size = 28570135, upload-time = "2026-02-23T00:20:03.934Z" }, + { url = "https://files.pythonhosted.org/packages/fd/c3/5bd7199f4ea8556c0c8e39f04ccb014ac37d1468e6cfa6a95c6b3562b76e/scipy-1.17.1-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:2ceb2d3e01c5f1d83c4189737a42d9cb2fc38a6eeed225e7515eef71ad301dce", size = 20741977, upload-time = "2026-02-23T00:20:07.935Z" }, + { url = "https://files.pythonhosted.org/packages/d9/b8/8ccd9b766ad14c78386599708eb745f6b44f08400a5fd0ade7cf89b6fc93/scipy-1.17.1-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:844e165636711ef41f80b4103ed234181646b98a53c8f05da12ca5ca289134f6", size = 23029601, upload-time = "2026-02-23T00:20:12.161Z" }, + { url = "https://files.pythonhosted.org/packages/6d/a0/3cb6f4d2fb3e17428ad2880333cac878909ad1a89f678527b5328b93c1d4/scipy-1.17.1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:158dd96d2207e21c966063e1635b1063cd7787b627b6f07305315dd73d9c679e", size = 33019667, upload-time = "2026-02-23T00:20:17.208Z" }, + { url = "https://files.pythonhosted.org/packages/f3/c3/2d834a5ac7bf3a0c806ad1508efc02dda3c8c61472a56132d7894c312dea/scipy-1.17.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:74cbb80d93260fe2ffa334efa24cb8f2f0f622a9b9febf8b483c0b865bfb3475", size = 35264159, upload-time = "2026-02-23T00:20:23.087Z" }, + { url = "https://files.pythonhosted.org/packages/4d/77/d3ed4becfdbd217c52062fafe35a72388d1bd82c2d0ba5ca19d6fcc93e11/scipy-1.17.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:dbc12c9f3d185f5c737d801da555fb74b3dcfa1a50b66a1a93e09190f41fab50", size = 35102771, upload-time = "2026-02-23T00:20:28.636Z" }, + { url = "https://files.pythonhosted.org/packages/bd/12/d19da97efde68ca1ee5538bb261d5d2c062f0c055575128f11a2730e3ac1/scipy-1.17.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:94055a11dfebe37c656e70317e1996dc197e1a15bbcc351bcdd4610e128fe1ca", size = 37665910, upload-time = "2026-02-23T00:20:34.743Z" }, + { url = "https://files.pythonhosted.org/packages/06/1c/1172a88d507a4baaf72c5a09bb6c018fe2ae0ab622e5830b703a46cc9e44/scipy-1.17.1-cp313-cp313t-win_amd64.whl", hash = "sha256:e30bdeaa5deed6bc27b4cc490823cd0347d7dae09119b8803ae576ea0ce52e4c", size = 36562980, upload-time = "2026-02-23T00:20:40.575Z" }, + { url = "https://files.pythonhosted.org/packages/70/b0/eb757336e5a76dfa7911f63252e3b7d1de00935d7705cf772db5b45ec238/scipy-1.17.1-cp313-cp313t-win_arm64.whl", hash = "sha256:a720477885a9d2411f94a93d16f9d89bad0f28ca23c3f8daa521e2dcc3f44d49", size = 24856543, upload-time = "2026-02-23T00:20:45.313Z" }, + { url = "https://files.pythonhosted.org/packages/cf/83/333afb452af6f0fd70414dc04f898647ee1423979ce02efa75c3b0f2c28e/scipy-1.17.1-cp314-cp314-macosx_10_14_x86_64.whl", hash = "sha256:a48a72c77a310327f6a3a920092fa2b8fd03d7deaa60f093038f22d98e096717", size = 31584510, upload-time = "2026-02-23T00:21:01.015Z" }, + { url = "https://files.pythonhosted.org/packages/ed/a6/d05a85fd51daeb2e4ea71d102f15b34fedca8e931af02594193ae4fd25f7/scipy-1.17.1-cp314-cp314-macosx_12_0_arm64.whl", hash = "sha256:45abad819184f07240d8a696117a7aacd39787af9e0b719d00285549ed19a1e9", size = 28170131, upload-time = "2026-02-23T00:21:05.888Z" }, + { url = "https://files.pythonhosted.org/packages/db/7b/8624a203326675d7746a254083a187398090a179335b2e4a20e2ddc46e83/scipy-1.17.1-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:3fd1fcdab3ea951b610dc4cef356d416d5802991e7e32b5254828d342f7b7e0b", size = 20342032, upload-time = "2026-02-23T00:21:09.904Z" }, + { url = "https://files.pythonhosted.org/packages/c9/35/2c342897c00775d688d8ff3987aced3426858fd89d5a0e26e020b660b301/scipy-1.17.1-cp314-cp314-macosx_14_0_x86_64.whl", hash = "sha256:7bdf2da170b67fdf10bca777614b1c7d96ae3ca5794fd9587dce41eb2966e866", size = 22678766, upload-time = "2026-02-23T00:21:14.313Z" }, + { url = "https://files.pythonhosted.org/packages/ef/f2/7cdb8eb308a1a6ae1e19f945913c82c23c0c442a462a46480ce487fdc0ac/scipy-1.17.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:adb2642e060a6549c343603a3851ba76ef0b74cc8c079a9a58121c7ec9fe2350", size = 32957007, upload-time = "2026-02-23T00:21:19.663Z" }, + { url = "https://files.pythonhosted.org/packages/0b/2e/7eea398450457ecb54e18e9d10110993fa65561c4f3add5e8eccd2b9cd41/scipy-1.17.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:eee2cfda04c00a857206a4330f0c5e3e56535494e30ca445eb19ec624ae75118", size = 35221333, upload-time = "2026-02-23T00:21:25.278Z" }, + { url = "https://files.pythonhosted.org/packages/d9/77/5b8509d03b77f093a0d52e606d3c4f79e8b06d1d38c441dacb1e26cacf46/scipy-1.17.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:d2650c1fb97e184d12d8ba010493ee7b322864f7d3d00d3f9bb97d9c21de4068", size = 35042066, upload-time = "2026-02-23T00:21:31.358Z" }, + { url = "https://files.pythonhosted.org/packages/f9/df/18f80fb99df40b4070328d5ae5c596f2f00fffb50167e31439e932f29e7d/scipy-1.17.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:08b900519463543aa604a06bec02461558a6e1cef8fdbb8098f77a48a83c8118", size = 37612763, upload-time = "2026-02-23T00:21:37.247Z" }, + { url = "https://files.pythonhosted.org/packages/4b/39/f0e8ea762a764a9dc52aa7dabcfad51a354819de1f0d4652b6a1122424d6/scipy-1.17.1-cp314-cp314-win_amd64.whl", hash = "sha256:3877ac408e14da24a6196de0ddcace62092bfc12a83823e92e49e40747e52c19", size = 37290984, upload-time = "2026-02-23T00:22:35.023Z" }, + { url = "https://files.pythonhosted.org/packages/7c/56/fe201e3b0f93d1a8bcf75d3379affd228a63d7e2d80ab45467a74b494947/scipy-1.17.1-cp314-cp314-win_arm64.whl", hash = "sha256:f8885db0bc2bffa59d5c1b72fad7a6a92d3e80e7257f967dd81abb553a90d293", size = 25192877, upload-time = "2026-02-23T00:22:39.798Z" }, + { url = "https://files.pythonhosted.org/packages/96/ad/f8c414e121f82e02d76f310f16db9899c4fcde36710329502a6b2a3c0392/scipy-1.17.1-cp314-cp314t-macosx_10_14_x86_64.whl", hash = "sha256:1cc682cea2ae55524432f3cdff9e9a3be743d52a7443d0cba9017c23c87ae2f6", size = 31949750, upload-time = "2026-02-23T00:21:42.289Z" }, + { url = "https://files.pythonhosted.org/packages/7c/b0/c741e8865d61b67c81e255f4f0a832846c064e426636cd7de84e74d209be/scipy-1.17.1-cp314-cp314t-macosx_12_0_arm64.whl", hash = "sha256:2040ad4d1795a0ae89bfc7e8429677f365d45aa9fd5e4587cf1ea737f927b4a1", size = 28585858, upload-time = "2026-02-23T00:21:47.706Z" }, + { url = "https://files.pythonhosted.org/packages/ed/1b/3985219c6177866628fa7c2595bfd23f193ceebbe472c98a08824b9466ff/scipy-1.17.1-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:131f5aaea57602008f9822e2115029b55d4b5f7c070287699fe45c661d051e39", size = 20757723, upload-time = "2026-02-23T00:21:52.039Z" }, + { url = "https://files.pythonhosted.org/packages/c0/19/2a04aa25050d656d6f7b9e7b685cc83d6957fb101665bfd9369ca6534563/scipy-1.17.1-cp314-cp314t-macosx_14_0_x86_64.whl", hash = "sha256:9cdc1a2fcfd5c52cfb3045feb399f7b3ce822abdde3a193a6b9a60b3cb5854ca", size = 23043098, upload-time = "2026-02-23T00:21:56.185Z" }, + { url = "https://files.pythonhosted.org/packages/86/f1/3383beb9b5d0dbddd030335bf8a8b32d4317185efe495374f134d8be6cce/scipy-1.17.1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6e3dcd57ab780c741fde8dc68619de988b966db759a3c3152e8e9142c26295ad", size = 33030397, upload-time = "2026-02-23T00:22:01.404Z" }, + { url = "https://files.pythonhosted.org/packages/41/68/8f21e8a65a5a03f25a79165ec9d2b28c00e66dc80546cf5eb803aeeff35b/scipy-1.17.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a9956e4d4f4a301ebf6cde39850333a6b6110799d470dbbb1e25326ac447f52a", size = 35281163, upload-time = "2026-02-23T00:22:07.024Z" }, + { url = "https://files.pythonhosted.org/packages/84/8d/c8a5e19479554007a5632ed7529e665c315ae7492b4f946b0deb39870e39/scipy-1.17.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:a4328d245944d09fd639771de275701ccadf5f781ba0ff092ad141e017eccda4", size = 35116291, upload-time = "2026-02-23T00:22:12.585Z" }, + { url = "https://files.pythonhosted.org/packages/52/52/e57eceff0e342a1f50e274264ed47497b59e6a4e3118808ee58ddda7b74a/scipy-1.17.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:a77cbd07b940d326d39a1d1b37817e2ee4d79cb30e7338f3d0cddffae70fcaa2", size = 37682317, upload-time = "2026-02-23T00:22:18.513Z" }, + { url = "https://files.pythonhosted.org/packages/11/2f/b29eafe4a3fbc3d6de9662b36e028d5f039e72d345e05c250e121a230dd4/scipy-1.17.1-cp314-cp314t-win_amd64.whl", hash = "sha256:eb092099205ef62cd1782b006658db09e2fed75bffcae7cc0d44052d8aa0f484", size = 37345327, upload-time = "2026-02-23T00:22:24.442Z" }, + { url = "https://files.pythonhosted.org/packages/07/39/338d9219c4e87f3e708f18857ecd24d22a0c3094752393319553096b98af/scipy-1.17.1-cp314-cp314t-win_arm64.whl", hash = "sha256:200e1050faffacc162be6a486a984a0497866ec54149a01270adc8a59b7c7d21", size = 25489165, upload-time = "2026-02-23T00:22:29.563Z" }, +] + +[[package]] +name = "selenium" +version = "4.41.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "trio" }, + { name = "trio-websocket" }, + { name = "typing-extensions" }, + { name = "urllib3", extra = ["socks"] }, + { name = "websocket-client" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/04/7c/133d00d6d013a17d3f39199f27f1a780ec2e95d7b9aa997dc1b8ac2e62a7/selenium-4.41.0.tar.gz", hash = "sha256:003e971f805231ad63e671783a2b91a299355d10cefb9de964c36ff3819115aa", size = 937872, upload-time = "2026-02-20T03:42:06.216Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a8/d6/e4160989ef6b272779af6f3e5c43c3ba9be6687bdc21c68c3fb220e555b3/selenium-4.41.0-py3-none-any.whl", hash = "sha256:b8ccde8d2e7642221ca64af184a92c19eee6accf2e27f20f30472f5efae18eb1", size = 9532858, upload-time = "2026-02-20T03:42:03.218Z" }, +] + +[[package]] +name = "send2trash" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c5/f0/184b4b5f8d00f2a92cf96eec8967a3d550b52cf94362dad1100df9e48d57/send2trash-2.1.0.tar.gz", hash = "sha256:1c72b39f09457db3c05ce1d19158c2cbef4c32b8bedd02c155e49282b7ea7459", size = 17255, upload-time = "2026-01-14T06:27:36.056Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1c/78/504fdd027da3b84ff1aecd9f6957e65f35134534ccc6da8628eb71e76d3f/send2trash-2.1.0-py3-none-any.whl", hash = "sha256:0da2f112e6d6bb22de6aa6daa7e144831a4febf2a87261451c4ad849fe9a873c", size = 17610, upload-time = "2026-01-14T06:27:35.218Z" }, +] + +[[package]] +name = "sentence-transformers" +version = "5.2.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "huggingface-hub" }, + { name = "numpy" }, + { name = "scikit-learn" }, + { name = "scipy" }, + { name = "torch" }, + { name = "tqdm" }, + { name = "transformers" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5b/30/21664028fc0776eb1ca024879480bbbab36f02923a8ff9e4cae5a150fa35/sentence_transformers-5.2.3.tar.gz", hash = "sha256:3cd3044e1f3fe859b6a1b66336aac502eaae5d3dd7d5c8fc237f37fbf58137c7", size = 381623, upload-time = "2026-02-17T14:05:20.238Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/46/9f/dba4b3e18ebbe1eaa29d9f1764fbc7da0cd91937b83f2b7928d15c5d2d36/sentence_transformers-5.2.3-py3-none-any.whl", hash = "sha256:6437c62d4112b615ddebda362dfc16a4308d604c5b68125ed586e3e95d5b2e30", size = 494225, upload-time = "2026-02-17T14:05:18.596Z" }, +] + [[package]] name = "setuptools" version = "82.0.0" @@ -1631,95 +4799,104 @@ wheels = [ ] [[package]] -name = "simsimd" -version = "6.5.12" +name = "shellingham" +version = "1.5.4" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/a4/13/dbcee7d607cbcfdfdf3a0593bec46479ce4e5957b39c5e81333efe540464/simsimd-6.5.12.tar.gz", hash = "sha256:c9b8720c9bc9dcfc36f570c2f96bfd74d1c9e1d0ebeecafc7a130ad3f0affe41", size = 186676, upload-time = "2025-12-21T01:13:38.467Z" } +sdist = { url = "https://files.pythonhosted.org/packages/58/15/8b3609fd3830ef7b27b655beb4b4e9c62313a4e8da8c676e142cc210d58e/shellingham-1.5.4.tar.gz", hash = "sha256:8dbca0739d487e5bd35ab3ca4b36e11c4078f3a234bfce294b0a0291363404de", size = 10310, upload-time = "2023-10-24T04:13:40.426Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e9/16/7ec9c660e72297af5a192cc5d0570993b626a3f06d58b0a21852e9d97adc/simsimd-6.5.12-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:93d0c3e06f525c3c57c33353d18e28a602f8a1a64b47a5326d7696a4f9746e54", size = 106303, upload-time = "2025-12-21T01:10:39.641Z" }, - { url = "https://files.pythonhosted.org/packages/16/07/967e2471af0d970d303921aa12b962b8fd58375429751f1d1164cddfc4c6/simsimd-6.5.12-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1d62031303404cb6282488b19c8199fe93511c9442774ecd86b819c8d4ae26aa", size = 94586, upload-time = "2025-12-21T01:10:41.212Z" }, - { url = "https://files.pythonhosted.org/packages/7b/8f/c234b8c1f2728b59ddbb1e83e4f0f6f621c2c6281741e37496c3dd94ebdd/simsimd-6.5.12-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:befedf61c3a832ba517abe577f10d6666da2afdf9d3a3487dffa2830306850c2", size = 385357, upload-time = "2025-12-21T01:10:42.736Z" }, - { url = "https://files.pythonhosted.org/packages/5c/8e/46fc44e7eb265e3e722d53310c49b76f6cb80cb84494049edf4bd16868de/simsimd-6.5.12-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:71b1d861b401a779f197386588af2ab6cc6e7bec817e5bbfc8989f8476b83db6", size = 274441, upload-time = "2025-12-21T01:10:44.522Z" }, - { url = "https://files.pythonhosted.org/packages/5b/2c/c5cba05586dbf3f537ea804aba0e322d9ae6a8c7379a63d4889ab504e0f4/simsimd-6.5.12-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9127875491bb00c4499ce686fc15611f2e887f25191580f60839b4f79971cc8f", size = 295782, upload-time = "2025-12-21T01:10:45.793Z" }, - { url = "https://files.pythonhosted.org/packages/75/d1/c7355fd8d9fc30124bef1cd1d1ad78f05741bd0363150b3fce8c4945ad62/simsimd-6.5.12-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:890480b76333d099a69617bbab5f6ce24c48c29020efabc79a1be31ce567a209", size = 285708, upload-time = "2025-12-21T01:10:47.584Z" }, - { url = "https://files.pythonhosted.org/packages/35/c3/64afba86e6ebe195653a7834447131e0226f8df7cfee28e8b384392e3b2a/simsimd-6.5.12-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:672478af4aebfc932a5a38c4f7a49ed0579591be5eab7b61dec2601a89c93f53", size = 583200, upload-time = "2025-12-21T01:10:49.579Z" }, - { url = "https://files.pythonhosted.org/packages/4b/81/f0eedaebf3147e2490c903eb816388f372f0d77a4476d9f1d11bdf03b37d/simsimd-6.5.12-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e01b707a3b755addf7bc4c72bca3c69a37ce16f37e370701ffb2d1dcc696238b", size = 421524, upload-time = "2025-12-21T01:10:51.157Z" }, - { url = "https://files.pythonhosted.org/packages/ee/8c/3644bba31ffbfebe86d6ac9c389a25c48de9852652d433af2de3b6cff248/simsimd-6.5.12-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:9b06145f02628aed758b708dc2e86bf21736688441637ac891de58cfc576d606", size = 318616, upload-time = "2025-12-21T01:10:52.603Z" }, - { url = "https://files.pythonhosted.org/packages/af/e6/8a5fd37d4724ecb36d81f63b20ac933f82b07f515ecfbfbbbcec4d4ea8d3/simsimd-6.5.12-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:626cdb06607082ac20f8eb0724228531c49a881a9ca473a683ff6e7edbf3c10e", size = 338661, upload-time = "2025-12-21T01:10:54.395Z" }, - { url = "https://files.pythonhosted.org/packages/09/85/5fa34d2093e41298faaca07364f6e87728da3926b252b6d117368d1d4162/simsimd-6.5.12-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:8980279708596544d762dc437f52c8c4ead45620400eedd8adc7704bf6799d5e", size = 316016, upload-time = "2025-12-21T01:10:55.654Z" }, - { url = "https://files.pythonhosted.org/packages/90/ef/1271d30dca05f94f8c26a2556578b8603175ea3748fd966e2e1f454c6a8c/simsimd-6.5.12-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d1578066a67c9d60b6e11a4f99583137d08fce5dc019de8a8ee3afa79bc28fb1", size = 619233, upload-time = "2025-12-21T01:10:57.502Z" }, - { url = "https://files.pythonhosted.org/packages/af/98/2e5bfe60801e7fd1e309de1b05ab212656cf1b85658505038e4923feff93/simsimd-6.5.12-cp311-cp311-win_amd64.whl", hash = "sha256:d32708b7ccce52a08a99c407655a1b2e231c068c677b797d2598df6598a7463f", size = 87151, upload-time = "2025-12-21T01:10:59.287Z" }, - { url = "https://files.pythonhosted.org/packages/16/21/f4bf0f8c90e78d059c8bf246488afa4ab9457ee562bd439852ddd5c179cc/simsimd-6.5.12-cp311-cp311-win_arm64.whl", hash = "sha256:e627231da9ebc49e56a2a39a686fe07a4869f4837115a2a67a0688303225551e", size = 62733, upload-time = "2025-12-21T01:11:00.58Z" }, - { url = "https://files.pythonhosted.org/packages/9f/be/3636d31575a48e75d6a3f52836739bf02f930843a7455ea9515d83a4618f/simsimd-6.5.12-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:63df722f710d9adfa4d4a46772da203d7854b55ca4fd45c3fee149b546e1b56b", size = 105091, upload-time = "2025-12-21T01:11:01.823Z" }, - { url = "https://files.pythonhosted.org/packages/6b/55/cd16b42861c58c52b39da6806b820ed48a817ce966fc9ed4ad5c16543519/simsimd-6.5.12-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ec6fcccc99f06e4dff5bd3af8b3d290e5199e7b6414e0c050fa52e5ae2797940", size = 94561, upload-time = "2025-12-21T01:11:03.073Z" }, - { url = "https://files.pythonhosted.org/packages/44/29/019063f8b962f227c8d2dd40e84a074bc4007b0ae55bf8a260648c9d839e/simsimd-6.5.12-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8c780491ea8f927ba6d20dce9d29f1eeab8e0eee1a4306d844a3a1db03ea1a05", size = 384963, upload-time = "2025-12-21T01:11:04.736Z" }, - { url = "https://files.pythonhosted.org/packages/3f/74/c485204fb2a6208059a774d42787462d1be74b1cc51b9c76d9680f7a6ef1/simsimd-6.5.12-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:1b9a2b7b63820e289d0e5df28d9331058c2ae898917faf59f52ff07a47d882a2", size = 274160, upload-time = "2025-12-21T01:11:06.052Z" }, - { url = "https://files.pythonhosted.org/packages/53/12/f28f9afb95e4497759ef5507f1d8f53bc486476c7e2db4a9199d4389779f/simsimd-6.5.12-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:e3446d79773525627bf218bf30114dc60599e496c9a9bb02aa61f96b137ecc41", size = 295453, upload-time = "2025-12-21T01:11:07.448Z" }, - { url = "https://files.pythonhosted.org/packages/7f/0b/5b84d21461e5591616dc720ab1ef45b73367ff203860ca575511ad09db31/simsimd-6.5.12-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:559a5c53ac2353281746905c9c2b763db1df5b38ca040740cd50e2fdd32320c9", size = 285482, upload-time = "2025-12-21T01:11:08.762Z" }, - { url = "https://files.pythonhosted.org/packages/c2/90/f66c0f1d87c5d00ecae5774398e5d636c76bdf84d8b7d0e8182c82c37cd1/simsimd-6.5.12-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9d7213a87303563b7a82de1c597c604bf018483350ddab93c9c7b9b2b0646b70", size = 582953, upload-time = "2025-12-21T01:11:10.096Z" }, - { url = "https://files.pythonhosted.org/packages/6e/01/0dda71460b7414fbd3f5522dcee7b406d5acc309060c5f146e4d6aff9881/simsimd-6.5.12-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ba817741a998810381540aa605cc0975a064ff25a12df97113180b4eb6cf6ffa", size = 421266, upload-time = "2025-12-21T01:11:11.46Z" }, - { url = "https://files.pythonhosted.org/packages/f1/9e/1f816cbfdd98b3bc7b2aec866f6c34ed958fe61d38876b9ec83509543b59/simsimd-6.5.12-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:1b4213afc55a8658eb4a4f8af6ae74f3d22166470a3c90b16b2ad1056b3bb368", size = 318311, upload-time = "2025-12-21T01:11:12.789Z" }, - { url = "https://files.pythonhosted.org/packages/58/57/b9245ebfa35e9f0ebf23085ce21330dd24add5560719156d2873a29e4181/simsimd-6.5.12-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:b8a8c15bb3e137bed63c9d212609f0e5453ed52caf5e08b0d18804b5ae706a16", size = 338390, upload-time = "2025-12-21T01:11:14.203Z" }, - { url = "https://files.pythonhosted.org/packages/2b/41/5ec5147f8b20c9dc487770692560135d8003205a415d1ee5cff7309fbba0/simsimd-6.5.12-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:7c72dee3b815b68ac0dc8fc806d45ba4d86985a67f7c96de318dfbe5fe890b51", size = 315824, upload-time = "2025-12-21T01:11:15.563Z" }, - { url = "https://files.pythonhosted.org/packages/94/27/0bc510f629961dd217f5544adf3b7fe209785926119ee9e277da31e9082f/simsimd-6.5.12-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a8b1714c4cd3475e85a70c9b5d89b0c6244dd2e0bdcd12850c9e2b894bce425f", size = 619010, upload-time = "2025-12-21T01:11:17.523Z" }, - { url = "https://files.pythonhosted.org/packages/b7/c5/551b4965982cb440f08f6ba2ae9d6e919cbd6d604962f5f3dffe922bcd8c/simsimd-6.5.12-cp312-cp312-win_amd64.whl", hash = "sha256:baf13245f8b625be0ed440fd67e3d438b2409167992bac09b08dde2019917489", size = 87423, upload-time = "2025-12-21T01:11:19.352Z" }, - { url = "https://files.pythonhosted.org/packages/39/86/7c492c15b304daf5b235b7a82aba0df7c13807aee8bda8ec1666f685e1eb/simsimd-6.5.12-cp312-cp312-win_arm64.whl", hash = "sha256:001c24e6a575223f9fac0860b61eb4b153d399b54d54a6cba619966d113681fc", size = 62864, upload-time = "2025-12-21T01:11:21.054Z" }, - { url = "https://files.pythonhosted.org/packages/34/a2/dc962526923347f831c9596c0dacff0310505b4b5b12cc55fa865f131f7e/simsimd-6.5.12-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:cfea2844bae8fc49ac5f5ae5764b9b5f31b2da6fcb3f9ac74588d468df371ea4", size = 105094, upload-time = "2025-12-21T01:11:22.299Z" }, - { url = "https://files.pythonhosted.org/packages/c9/79/79b14fbad6c2de70e6c16a479adaa44a91fc1cd3175a3314ce1d3a6f38e0/simsimd-6.5.12-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:429b121b164c82e3562d0bcf6b37b1d5c813b13c3cef76badf1d244199b4b787", size = 94569, upload-time = "2025-12-21T01:11:23.518Z" }, - { url = "https://files.pythonhosted.org/packages/66/e1/571a2409143202b74e95884c5d12a7130b3e43f954f7d77c9662a84e605d/simsimd-6.5.12-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:80adba6c6c769a933ad14137ffc1c6c1f521ccf9cd579392c9741f0cbbb875ff", size = 385016, upload-time = "2025-12-21T01:11:24.772Z" }, - { url = "https://files.pythonhosted.org/packages/4d/4d/81f341d7494d0dde08b026083b281dd969a5348bdd18e718333fdc040d33/simsimd-6.5.12-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:868f91627d26bd06469329b5f87d7d5a9fabaffcccefbcd65ebf0174cb771240", size = 274221, upload-time = "2025-12-21T01:11:26.199Z" }, - { url = "https://files.pythonhosted.org/packages/27/0f/9a4645f13b4a8fd9142da225e278c8247daf1b96d54ff97d1d1742945d3e/simsimd-6.5.12-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a57aaaf2c53fc06ed32d25ee1fb81c9f9b037bae9c844a634790faef8121c207", size = 295503, upload-time = "2025-12-21T01:11:27.581Z" }, - { url = "https://files.pythonhosted.org/packages/b1/ea/e9debe4f50cbfbba9e2f302984500cddb934bd42cc93e3628d5771963cfd/simsimd-6.5.12-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:f85e7045007b3601d1d5c65295bb729a48ca2c49de437d4f287773e291ccc524", size = 285561, upload-time = "2025-12-21T01:11:29.379Z" }, - { url = "https://files.pythonhosted.org/packages/5a/11/573e1783486c73ae86e28ec302c5e1ec36f3ddd4ee6a3bf2d86e10c8c313/simsimd-6.5.12-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d4739ebd2241f45d3a32fc3cd9d6353426052fe5e66e39dbe8c9451880e78b43", size = 583050, upload-time = "2025-12-21T01:11:30.892Z" }, - { url = "https://files.pythonhosted.org/packages/22/43/f17aa241328c3de707203e55c0e9c64cc4d32f52189f4e08bc071efc362d/simsimd-6.5.12-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0d884a90c0b6aef70289790258c189df52add4dc9afbbbf690c3e3799708e71a", size = 421293, upload-time = "2025-12-21T01:11:32.424Z" }, - { url = "https://files.pythonhosted.org/packages/04/ab/f464bc8a9f3967b9a7d5f4f30c017ccf21cf9bf62b33906d47d8a2ebdda1/simsimd-6.5.12-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:bc74c27c170c8c81c411d6eb3ba47847d7392471f4051f30c818929e9a471a30", size = 318344, upload-time = "2025-12-21T01:11:33.864Z" }, - { url = "https://files.pythonhosted.org/packages/77/db/905072ebde6f1497fe972c272e85249826509a9870205a2c2dea5fbe6b62/simsimd-6.5.12-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:e46589f15e85a19c94e273dfb2c2b88ddd1e0d933000fdf15af2222d846e484c", size = 338435, upload-time = "2025-12-21T01:11:35.549Z" }, - { url = "https://files.pythonhosted.org/packages/35/6c/ffec40c90e42504c7846640ba83a1384c4c1444810ef8b25c4cd6def8bc4/simsimd-6.5.12-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:bf2f3831c3711305d41526225339833214003a9a952b3cbe68c78089417928c0", size = 315880, upload-time = "2025-12-21T01:11:37.01Z" }, - { url = "https://files.pythonhosted.org/packages/91/c6/6fd5f450a4c03a109e7a63345d7c1c2a98741ba1934fa9ce94cae6049d12/simsimd-6.5.12-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:29a63aef87157638e6859c97284ca9aa97820f706c89f5a618a40d9158003123", size = 619094, upload-time = "2025-12-21T01:11:38.403Z" }, - { url = "https://files.pythonhosted.org/packages/fd/72/9dc175596c67c7dbc810ce256902f03ee9b680fb33c28d85205e93a9b1ff/simsimd-6.5.12-cp313-cp313-win_amd64.whl", hash = "sha256:124254489c425a8871d764b4ffe2c7c05ef58502b48f488979a376b81449b0a3", size = 87421, upload-time = "2025-12-21T01:11:39.797Z" }, - { url = "https://files.pythonhosted.org/packages/1e/88/51e7674d6a9f65c9cfc4314bfa3d407e54a16c537adcc02ba0cd9c11c478/simsimd-6.5.12-cp313-cp313-win_arm64.whl", hash = "sha256:5ffade91550d04308fae8ef0a396252e5e876144589dd77148f67f3b21ac79e4", size = 62869, upload-time = "2025-12-21T01:11:41.224Z" }, - { url = "https://files.pythonhosted.org/packages/cf/25/2abcac2dcb481c7229213467889e897d8cdf67ab4b484fb8767a332d7295/simsimd-6.5.12-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:4bf0ef65e0f990d568c6cf4bed84ec206df19567d961515774e0ec7960c30738", size = 105265, upload-time = "2025-12-21T01:11:42.833Z" }, - { url = "https://files.pythonhosted.org/packages/43/91/ebeaca50d08e6800cd8dd8a1c02a18786d0b90f382080ea66db105eb2732/simsimd-6.5.12-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3d6d7a684641bd7fda4d8c068c065e3d16aec7faa58896737d0142a2b915e6ee", size = 94737, upload-time = "2025-12-21T01:11:44.115Z" }, - { url = "https://files.pythonhosted.org/packages/90/5c/91bec33fc5ab733a1a77a5b24d2d0d5fefbcbac27612431afc2a0296749a/simsimd-6.5.12-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:dfdb17ea48b90c7734f390b869d5cdfc0ab710ad871ead5aa80819a83ceb8784", size = 386961, upload-time = "2025-12-21T01:11:45.414Z" }, - { url = "https://files.pythonhosted.org/packages/16/5f/2b2ea3465ffa035e60bc42e29c57c6abbaabf15619072f3578e003b0c337/simsimd-6.5.12-cp313-cp313t-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:875d82e69abe3d0fbd963bc57afcece480427b2cb931fdf750e5cd06761a53b6", size = 275318, upload-time = "2025-12-21T01:11:46.965Z" }, - { url = "https://files.pythonhosted.org/packages/37/c8/4a8afc30ef0f4d2220bfb7d74b7680638beb12ef0c05844c6d51c9a039cf/simsimd-6.5.12-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9ddb0746e5da08565688ec5816cc55275a809ffa45fd3b9c4ed9bb6c09fabfb0", size = 297054, upload-time = "2025-12-21T01:11:48.437Z" }, - { url = "https://files.pythonhosted.org/packages/81/02/9ac94a67969d187de67db0c8c711a62726e1b34d03da6a2dc78655822231/simsimd-6.5.12-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:8d6eda67e34fef11f45797b67c22964384b0a8c70908d4ae864a5125192c6232", size = 286829, upload-time = "2025-12-21T01:11:50.145Z" }, - { url = "https://files.pythonhosted.org/packages/4c/dc/a755be704c5785d58d67b7ff453589fa9e8da46b5452d837a13cf62c3170/simsimd-6.5.12-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:120204110cce61f76cefcef595b28a3d1bb25f9989448e3d90738ee3105d819f", size = 584549, upload-time = "2025-12-21T01:11:51.532Z" }, - { url = "https://files.pythonhosted.org/packages/13/8e/7e1d6c8c1c00348a67f551d747f2347d538e0750bc5b161bbf216f9ee263/simsimd-6.5.12-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:85d21ac5d86285cca3dc969255c637156def5a7d9f5304f54caaf991506742ca", size = 422824, upload-time = "2025-12-21T01:11:53.12Z" }, - { url = "https://files.pythonhosted.org/packages/3a/0f/43c03819fbe4835275ec4e97df6ecafca6d34e86304047f918a15e006485/simsimd-6.5.12-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:67d2a2c1f95c6e8f1c2085b012af85c6e7f4ff2ed66d682f71c473b49716d5de", size = 319691, upload-time = "2025-12-21T01:11:54.547Z" }, - { url = "https://files.pythonhosted.org/packages/d6/2e/c69b98967352458e5d84a5897b01d2cbe4284fb38c2aaa1bf2c67c0b6b55/simsimd-6.5.12-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:0118b09e4c45558a19a759a7668138583faf3ce430ee4692c5e8c73140942a7b", size = 339962, upload-time = "2025-12-21T01:11:56.013Z" }, - { url = "https://files.pythonhosted.org/packages/47/7b/55f4649e12fdb08c88029bde0af0f0309d5983f540b4d4209c5adad233b4/simsimd-6.5.12-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:87ee147a0fb643ea8c752992c5bb4241311b748570edfef77d2fd7ae4650cfbb", size = 317309, upload-time = "2025-12-21T01:11:57.974Z" }, - { url = "https://files.pythonhosted.org/packages/8b/a0/e9d57ccf8518b2993e239e51805dd489a61b43b59468bf80e463bb48d3ae/simsimd-6.5.12-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:a37f234cc919b3940341a2d87f19ef82a402a8fa4aa5893afe9a11f28a09ad71", size = 620214, upload-time = "2025-12-21T01:12:00.493Z" }, - { url = "https://files.pythonhosted.org/packages/00/78/96187a761b57fa280e250660650614fa338b55b6fc80319c7687017ca6d7/simsimd-6.5.12-cp313-cp313t-win_amd64.whl", hash = "sha256:70907e4d76234f429f17d134b33f63a1610bc6bf110883aa242ed031750b20fc", size = 87595, upload-time = "2025-12-21T01:12:02.052Z" }, - { url = "https://files.pythonhosted.org/packages/55/df/e92fde2ff0a557d802221586b8188d4aaa94f9faca20d4710e1fc8de1629/simsimd-6.5.12-cp313-cp313t-win_arm64.whl", hash = "sha256:31ec8b7ca0e40702585c81541bd7a4f1466d3dec66d28667f887f3a337de3bbe", size = 63065, upload-time = "2025-12-21T01:12:03.55Z" }, - { url = "https://files.pythonhosted.org/packages/4d/7d/ea9be2561474db9bbfd70909adbbd6f7e63f85750fc6650ec060c56bc95d/simsimd-6.5.12-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:dc4dd5cc13e5972a00b5fe556907f9975c645f8d6c8b732a17003dea85da99cc", size = 105165, upload-time = "2025-12-21T01:12:05.256Z" }, - { url = "https://files.pythonhosted.org/packages/06/73/176cb3a2ce6cf0e16dc46589fdc326e3e3a4ed073037d3af6915e5d123ce/simsimd-6.5.12-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:2dada34cb1b2605fa3137e7bda55ab5031fb0a858fb061d0807a7e183088d9cf", size = 94577, upload-time = "2025-12-21T01:12:06.628Z" }, - { url = "https://files.pythonhosted.org/packages/24/05/35c7f6252a5cc019e230cb9909f9b6baaf0b074cdaac642b630be056ee3b/simsimd-6.5.12-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1c3ba693578b52745ae91046f8049f89d4f6bfb7fe28a660c5ecda4bfcb057c3", size = 385237, upload-time = "2025-12-21T01:12:07.973Z" }, - { url = "https://files.pythonhosted.org/packages/49/ba/ee8cc9a9b5cd1b14e07c8d7f1a44b85d8cdb1809e193eb49e4c20f9aaa8d/simsimd-6.5.12-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:8c737464ec2f03a7cdd32b3c1ac44e5d16e99e6397d94d93d0d04f8c41cea2df", size = 274335, upload-time = "2025-12-21T01:12:09.449Z" }, - { url = "https://files.pythonhosted.org/packages/af/10/b36085578aad1661d459121fa782b6fb6c4f243f45ea6654a91be6295b2e/simsimd-6.5.12-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:4887dba3cfd2c8294e3033d7e7035e0316d050c513b33f295c3b91519261c23b", size = 295681, upload-time = "2025-12-21T01:12:10.899Z" }, - { url = "https://files.pythonhosted.org/packages/63/81/4f16a50e376e949792379b06365f9fa4b3f718401a66d782ddc162f40beb/simsimd-6.5.12-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5e6adee5b8b1c983da682cefba234925d0749d7ccccd33cd1a5162428a688724", size = 285647, upload-time = "2025-12-21T01:12:12.427Z" }, - { url = "https://files.pythonhosted.org/packages/bc/6e/75fc3e5dbf8968c3f3c83b04d62fe2cb1ab0c061641d0230764e2c4340a2/simsimd-6.5.12-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a006be4fc1c102a8dd589a4ec627999456998ee942058c41d4daebed6874ef6b", size = 583198, upload-time = "2025-12-21T01:12:13.891Z" }, - { url = "https://files.pythonhosted.org/packages/aa/40/71d8ba2dff24aed076b4d49ec93a61c91074234a531169f094df3ed339e3/simsimd-6.5.12-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:c76fc25f6497f4a1a46567b3722c639dfc25e1f26ee5363bf0a27ab715851070", size = 421458, upload-time = "2025-12-21T01:12:15.465Z" }, - { url = "https://files.pythonhosted.org/packages/8b/bc/10d47e67343103651b5203e05beaa075851225f39dfc2deddfcec82e31d4/simsimd-6.5.12-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:8f46fd828b6f2da0002c6758f322d3efd1b334168ae4ef9e7a3a7ff1ec3edf92", size = 318506, upload-time = "2025-12-21T01:12:16.987Z" }, - { url = "https://files.pythonhosted.org/packages/91/22/d7df125b3d3c6e5fca3f34e7944e9a758403fc9bd6a993b2b645a6db42ff/simsimd-6.5.12-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:91b51b37c2fc5ea7d9fd2cabe313880d62941c4e58071f9ad6b046eccd030442", size = 338531, upload-time = "2025-12-21T01:12:18.56Z" }, - { url = "https://files.pythonhosted.org/packages/75/79/0b895f399e9d98c6a9e4c2195e51715a9366be8a2225d8d6b5d8f996bbd2/simsimd-6.5.12-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:6974cbfadd790ccff68e5894d9a2f808da80ad70a8b96adccff8591020faabda", size = 316054, upload-time = "2025-12-21T01:12:20.076Z" }, - { url = "https://files.pythonhosted.org/packages/ce/42/2b5054bd062e54210fd1b4bf3dc3e005edc6835acb9490d77eb76b71bfc8/simsimd-6.5.12-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:401e965292b46aa58cca2a601dc1fd1f2274d65cbf89abb8b89deba2d46735f3", size = 619179, upload-time = "2025-12-21T01:12:21.553Z" }, - { url = "https://files.pythonhosted.org/packages/78/f6/9371446ea17ccf2c024475e64cea8379d02d907cc96bb7878abc9a49676a/simsimd-6.5.12-cp314-cp314-win_amd64.whl", hash = "sha256:712be3879a2f3a836f39d81c51fd8caebfae068ab20a23103d0b1faf24ac6fe7", size = 90100, upload-time = "2025-12-21T01:12:23.231Z" }, - { url = "https://files.pythonhosted.org/packages/1b/e0/bcc90c115c4a87646a36dd9922bcad51b6cb354bcb92cb53d00531c53679/simsimd-6.5.12-cp314-cp314-win_arm64.whl", hash = "sha256:06424bbaf21699b1a6e7cab3b62feec492c978503b2559496d1599d7ae9ba874", size = 64848, upload-time = "2025-12-21T01:12:25.04Z" }, - { url = "https://files.pythonhosted.org/packages/03/ce/0728e46823fbab8bed449d303dd024a32cace1542e900b9a63cf216bfb27/simsimd-6.5.12-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:3ac330771588b23cae042c85c30d1261bb6379bfeca96ef35e2eb9459190b9ef", size = 105324, upload-time = "2025-12-21T01:12:27.039Z" }, - { url = "https://files.pythonhosted.org/packages/94/8f/75ef56c4e241e58567fabf4683e06ceae6db9950e47642266c20121dddf2/simsimd-6.5.12-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:03b4114ce6a7518eaefdf075c9882b0d707b2131b2933bf42eacdee0316d0e71", size = 94738, upload-time = "2025-12-21T01:12:28.839Z" }, - { url = "https://files.pythonhosted.org/packages/f0/1d/26814258cfd592f0e04528d2d922cd4b70f7efd359990badc5d3e285f377/simsimd-6.5.12-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:84681e17d03e3d3636f7f28cbe41659ffa45b20a043363e233776e2ca9f74d05", size = 387093, upload-time = "2025-12-21T01:12:30.2Z" }, - { url = "https://files.pythonhosted.org/packages/7a/d4/7a01e31136b80482947e56f1db56e0417ef0d5fe5a697053aeca5b913ed5/simsimd-6.5.12-cp314-cp314t-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:993987ef4a5f30946bb894ba76bc3d0f1e75a4c05f3d67aaaadce8ccb6505116", size = 275466, upload-time = "2025-12-21T01:12:31.753Z" }, - { url = "https://files.pythonhosted.org/packages/57/a0/aafa134050a4f9129edbcb65beb6e8cdacaadccf3b9ef49a9f534493ccd8/simsimd-6.5.12-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:5df1d36a3b9e895e253454c1cee06cd46b47cbaca9f2e2c5ab2f936a0f6f9f92", size = 297224, upload-time = "2025-12-21T01:12:33.729Z" }, - { url = "https://files.pythonhosted.org/packages/ec/f3/df069fc7b83df162913b73d5d88b67a3d25b364609a854190c2151ad7fe9/simsimd-6.5.12-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:cf8f11789f9aabe6a4f5ba918035b97767e1b97c127908da09c56dcbe481b63d", size = 286944, upload-time = "2025-12-21T01:12:35.725Z" }, - { url = "https://files.pythonhosted.org/packages/43/70/b055ea8272ba87ff1601a4c71c237ad886602b19a3ec5a10a61f81c68f26/simsimd-6.5.12-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:59510175feb11a8c03b5d18fa2f7d54879a7c2237ba336fbea3cdf9c810f44a0", size = 584678, upload-time = "2025-12-21T01:12:37.184Z" }, - { url = "https://files.pythonhosted.org/packages/b3/ba/3882048c9491999a6e98df585b9877719cf3ae0931db779d09c4ef0aca16/simsimd-6.5.12-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:0d1872e35e2bc4349bddff4a12e06dc1880bc7ba6dcb542ba871b224b4fb8956", size = 422925, upload-time = "2025-12-21T01:12:39.132Z" }, - { url = "https://files.pythonhosted.org/packages/00/20/43d0cfd061763926ab0c1234a994eeeba4ad451b3e04874435a576d1023b/simsimd-6.5.12-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:d3a4cb69ebc98847417dc388947b51ba187b241eef2165e05ab63d5979e309ef", size = 319790, upload-time = "2025-12-21T01:12:40.882Z" }, - { url = "https://files.pythonhosted.org/packages/63/90/319efeebd5a64716618c191a320633467eebd45cfc65c61cbd7eea648a82/simsimd-6.5.12-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:fca79e8475ac9f4f4675e26d57425d426b81165403df1e6fe58d6dd2f82ba15b", size = 340093, upload-time = "2025-12-21T01:12:42.571Z" }, - { url = "https://files.pythonhosted.org/packages/62/3b/ebdaab5dd9a8752c4b2ffc4bf8ce960b262da722dab75621671ffb671135/simsimd-6.5.12-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:64b847204ebaff43c7f302ec08fcb88ed5226bc09381c11adaf00b793a0b369b", size = 317420, upload-time = "2025-12-21T01:12:44.05Z" }, - { url = "https://files.pythonhosted.org/packages/5c/c6/7df56445504ca809fbac66c83555cf94650915125310c596d0c7d8e4ba81/simsimd-6.5.12-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:c35be7d43dc7145d9af67cbd1bfac03233aaa4d8e235c2406a5fdd4a5853641e", size = 620299, upload-time = "2025-12-21T01:12:45.582Z" }, - { url = "https://files.pythonhosted.org/packages/3e/17/f4307a31f4bc2696b5db057a6c6b649001d94f40a3c1ab146a0fe042a557/simsimd-6.5.12-cp314-cp314t-win_amd64.whl", hash = "sha256:950340c0a4eb40ea624c53f3787dc969bb64746acc409bef52c7538c007d05f0", size = 90309, upload-time = "2025-12-21T01:12:47.281Z" }, - { url = "https://files.pythonhosted.org/packages/e2/81/9365fd9d041b166efbc6f440b4c5e470bef9883729842b7519d1e5947c7f/simsimd-6.5.12-cp314-cp314t-win_arm64.whl", hash = "sha256:b198ad2d909f4ffa8202d85446a10fa1cd62560ee39e2467085a8efb33c9c2d0", size = 65046, upload-time = "2025-12-21T01:12:48.672Z" }, + { url = "https://files.pythonhosted.org/packages/e0/f9/0595336914c5619e5f28a1fb793285925a8cd4b432c9da0a987836c7f822/shellingham-1.5.4-py2.py3-none-any.whl", hash = "sha256:7ecfff8f2fd72616f7481040475a65b2bf8af90a56c89140852d1120324e8686", size = 9755, upload-time = "2023-10-24T04:13:38.866Z" }, +] + +[[package]] +name = "simsimd" +version = "6.5.13" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/68/9f/dcf197c7ee433306d97650f5b5932a3e787c551d91d45b74c51d6849c9ff/simsimd-6.5.13.tar.gz", hash = "sha256:d2a1256919f18c3d08dabf447bf58b2a0027d80e2c5fb83cc9ab69b061019b0f", size = 186854, upload-time = "2026-02-16T14:39:46.746Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5c/16/f36acc027488f9544b779560550a1bed61a9c8e33f6d87702e69a2d739d0/simsimd-6.5.13-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0a32dacf53f5ca153de6484c29f7cdab4df351d7e72e0ef0c228c9f4ebfd5462", size = 106305, upload-time = "2026-02-16T14:36:06.213Z" }, + { url = "https://files.pythonhosted.org/packages/bb/be/68b396804e3040ef2df09eaa5be8c942743045b7ca3c04e6a0a2da050187/simsimd-6.5.13-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7a794af7cf69bd7111c3d1bf10d84030c3d400bded4d986ff92806d5d90ad15a", size = 94586, upload-time = "2026-02-16T14:36:07.697Z" }, + { url = "https://files.pythonhosted.org/packages/f2/85/6d2b783786d599ed4b908169c57b5235740f9f5b051bda90debb2575f3f8/simsimd-6.5.13-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f708b1f9060db9d8a5e776ba1bf5d7d9231d63d0374f13b0fcbe9bac3abc5e42", size = 385380, upload-time = "2026-02-16T14:36:09.335Z" }, + { url = "https://files.pythonhosted.org/packages/94/d7/9826e41dc165575575b10b991c05ad07523e2bba269b17151a1c8bdc11e9/simsimd-6.5.13-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:8507133884543d8fd0ad6fa34d907aa968a451aa324ebf957d32adfeb218122d", size = 274446, upload-time = "2026-02-16T14:36:10.804Z" }, + { url = "https://files.pythonhosted.org/packages/0e/50/fec74eb405e1f99c162c5fb0553cdf5946aace9fa62f0db92480abf26dc5/simsimd-6.5.13-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2818971cadae89b9424105e610782079b0aee9f2037e1a1a275129e063f421be", size = 295771, upload-time = "2026-02-16T14:36:12.673Z" }, + { url = "https://files.pythonhosted.org/packages/e9/9c/6ed4fe7bccc09389502de11070f2c5b0bc7a2ff2a0b4abcfc980338bc274/simsimd-6.5.13-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5b2ac436b4962ce11cced230458765247dbfe06e037cf97d00e72b6cf786776b", size = 285711, upload-time = "2026-02-16T14:36:14.226Z" }, + { url = "https://files.pythonhosted.org/packages/83/ed/8e27d5eb3be7023827999d1f2481741f194b091d6b4b0d95d17f50c218a3/simsimd-6.5.13-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:21bef48e82e77567b16b945c0e79fe565086764f49f9a2564e4e99198d2ffda6", size = 583216, upload-time = "2026-02-16T14:36:15.874Z" }, + { url = "https://files.pythonhosted.org/packages/64/17/4af3b7294a01e99a3e5172b63a169d8a91e06896abcb2163f18e77c9fe13/simsimd-6.5.13-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1f589b50ac5b09c85c3618b7544c8e4b0bb7f4a35a191f416b7e7e155be55d49", size = 421525, upload-time = "2026-02-16T14:36:17.504Z" }, + { url = "https://files.pythonhosted.org/packages/dc/fa/bda25050b8a3d7f6f96da8edff354976fb3f202e056622d999ba7f12668f/simsimd-6.5.13-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:67fcd37b69de7a52f2ac80dac30fcddfbe0298fc315232e86e5c0ad7bf3763b1", size = 318616, upload-time = "2026-02-16T14:36:18.996Z" }, + { url = "https://files.pythonhosted.org/packages/d9/9f/b0c917796c380277906cf5881e5a1836335cd3dfdba74abf6ed2a2deddf3/simsimd-6.5.13-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:aa90c46f4375694c1a834496735f8928e67f683e3e135e41944f15587a6d5b37", size = 338663, upload-time = "2026-02-16T14:36:20.856Z" }, + { url = "https://files.pythonhosted.org/packages/6d/a3/1d557897ca4f6bf6a44bd4169a1b4ec1675dcfa4fa05209237d08eff0560/simsimd-6.5.13-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:1ea268de92f7b73d045079d4861b3be5ae5d2daa3a7d42dfdc62b001290c7fbd", size = 316014, upload-time = "2026-02-16T14:36:23.184Z" }, + { url = "https://files.pythonhosted.org/packages/7f/07/ec3f0e56d1ba812efc0fd7b0ed127a53926a1a0dc4aa8fdc487dc4fd4ef5/simsimd-6.5.13-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:871f3647c5519b249ec7d35eb0030bfb0815ee076992ca2d9ae5e77782ce5498", size = 619238, upload-time = "2026-02-16T14:36:24.99Z" }, + { url = "https://files.pythonhosted.org/packages/92/bb/de5201f28638221a981f54f1b4e84851a02987dc1b5cfbd1001c3dbbff59/simsimd-6.5.13-cp311-cp311-win_amd64.whl", hash = "sha256:babff45ad468a56de33383a1f696506e951b582bcfef2133bcf7f6f8558bdaaa", size = 87153, upload-time = "2026-02-16T14:36:26.671Z" }, + { url = "https://files.pythonhosted.org/packages/0a/f5/d94c229577e12cd1db86c8847aca0d7b09d499abd15e677e27a0856b90da/simsimd-6.5.13-cp311-cp311-win_arm64.whl", hash = "sha256:6f2b1ea24e849803638e5ff2e823fe85082545de026b3e915bbbcb03e556a578", size = 62733, upload-time = "2026-02-16T14:36:28.159Z" }, + { url = "https://files.pythonhosted.org/packages/07/07/2c8b477db70d02288f1b7462160de4f78f044b3b577fc326c6e45114b769/simsimd-6.5.13-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:e09e92ef3723f85b545630e7ce787c189b0fccb5117e5b72ed927a43e53dcf07", size = 105092, upload-time = "2026-02-16T14:36:29.598Z" }, + { url = "https://files.pythonhosted.org/packages/08/40/1d6a324ae26a7d139079912734a886b12160bb7bb49db52be4a1605c4974/simsimd-6.5.13-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b10d6c7965cae6df2bc322715b2f33ff3384a4ea8ee53ccace77f0f85af5d63b", size = 94566, upload-time = "2026-02-16T14:36:31.107Z" }, + { url = "https://files.pythonhosted.org/packages/42/cd/5d1d210326123ad244aca58a9589e65f8c8e424544f9a9f98567c342f9d6/simsimd-6.5.13-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:15f52ef3d7acf6dcfcd04c251998ad5c0c183d190d55c085e0189046273d8931", size = 384947, upload-time = "2026-02-16T14:36:33.265Z" }, + { url = "https://files.pythonhosted.org/packages/04/51/6d5667de5a74fce7616b2adcd950cc2e9f6ad3ef3e4f25e83d03e74f1bee/simsimd-6.5.13-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:08c8841f81c38ecad1be60464f8b90f70bc309893c92d96e5a6d166acacfe927", size = 274165, upload-time = "2026-02-16T14:36:34.974Z" }, + { url = "https://files.pythonhosted.org/packages/c1/f6/275934bad75a4907556158b7320e36b5af7e0d1c726ba259c84936184a3f/simsimd-6.5.13-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:1eec967c6ae28d4bea9cba15998c7f19258ba81f307dbdae5585ab95701ab0a6", size = 295451, upload-time = "2026-02-16T14:36:36.604Z" }, + { url = "https://files.pythonhosted.org/packages/97/d5/67d72e369c1ba33651ebddfca00efaf9939a29bd2443a1402521d41bc5d7/simsimd-6.5.13-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:f44e3b58d4ada201e7c1ceeb4996aa5e5a3c98ab87f7485c0bc4d599bced1b68", size = 285487, upload-time = "2026-02-16T14:36:38.235Z" }, + { url = "https://files.pythonhosted.org/packages/0f/e7/b6d1c39b7d9befdae0e6b99255d4f933fa7224db60b204f31f924f967dbf/simsimd-6.5.13-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:834f500043524ddbe7d68037418437697335d642affc3614d0284f1c739717f9", size = 582957, upload-time = "2026-02-16T14:36:40.935Z" }, + { url = "https://files.pythonhosted.org/packages/77/b9/a3ea40fbeab7455c5599f6c9577778b8fc5bff7505adf1f272a8a2e8899d/simsimd-6.5.13-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:126800d0cb3b5c8c836cfec2aaf3c05bf6b8c350f9aab5ea481313869781f866", size = 421270, upload-time = "2026-02-16T14:36:42.722Z" }, + { url = "https://files.pythonhosted.org/packages/0d/08/50a7bc66bf1664be1c176d74ebf68cce08044e819e867b586d9703e4a2f9/simsimd-6.5.13-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:6e0e80e722f445607959dc75f8ea56325de70c8da71993a2eb35f307e13683fa", size = 318312, upload-time = "2026-02-16T14:36:44.597Z" }, + { url = "https://files.pythonhosted.org/packages/0c/09/c5787bac0de7221896e93fdff2fce8bb0190f2c16d0ae8cf1508f7285e81/simsimd-6.5.13-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:7a89a50534d335f79019b5e531d1e3b0c2e93749aa77741f4750ca408d125820", size = 338394, upload-time = "2026-02-16T14:36:46.618Z" }, + { url = "https://files.pythonhosted.org/packages/df/47/7c49e49bf364c3ae5a39ae4d2b033508296a4692a6118457b392938551e9/simsimd-6.5.13-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:23a83b2f155a9daa8eabb24a88bab5ed6b1e9f7a9a19b6d73981885a86facaba", size = 315826, upload-time = "2026-02-16T14:36:49.353Z" }, + { url = "https://files.pythonhosted.org/packages/c7/30/7e080c6fb5ec4c649562eb3b6e1dfd61d3e1d77e5bebf4bc8b85df56387e/simsimd-6.5.13-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3cd142d87e19bc41b21c34af0f36b1dad23338e0024ecdadb06f3b606cba392f", size = 619012, upload-time = "2026-02-16T14:36:51.491Z" }, + { url = "https://files.pythonhosted.org/packages/01/cc/1031956811e98b60f2c86029b842c2f743f023555beb1748dff8d6e2633b/simsimd-6.5.13-cp312-cp312-win_amd64.whl", hash = "sha256:83ba6c3fb3316410f304b1c67fbd07dcaeafed9e4af0bca790775a2426407ddd", size = 87420, upload-time = "2026-02-16T14:36:53.712Z" }, + { url = "https://files.pythonhosted.org/packages/df/51/531454ad3b418dd8f404cb4ef5234d955ed0f2f6bae88f73dda88c22374f/simsimd-6.5.13-cp312-cp312-win_arm64.whl", hash = "sha256:8252d1f9cc6ba0e470561aa2bfac3e593fa59415ced0290f052e37c50c643803", size = 62861, upload-time = "2026-02-16T14:36:56.716Z" }, + { url = "https://files.pythonhosted.org/packages/98/8e/45ab988eccece588409982cdcac3c361b163b6fdada236a1b5bd16b4974e/simsimd-6.5.13-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8a9a7dea547ea523bc13bb3ffa1118b26fb033957f594d5752b1d70eec68a785", size = 105097, upload-time = "2026-02-16T14:36:58.797Z" }, + { url = "https://files.pythonhosted.org/packages/02/15/a78e28ebfc0f8d67621ba5e23b187dc101a24bf5d7fcc7e7fa3dba5d0cdb/simsimd-6.5.13-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:eb49352eef7f0cbfa06438655e8048173b975b70156656e62ff5995994ad14c1", size = 94577, upload-time = "2026-02-16T14:37:00.276Z" }, + { url = "https://files.pythonhosted.org/packages/08/06/f4a23fbbe7aa0c58e5ee9cb40eb20c3ab05f9b952065fc3a4a6c1f117e21/simsimd-6.5.13-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4ee7ba1950c030119a1a6a40ad578d9ea6c16cb2b71443c99117ea5a55d89d01", size = 384998, upload-time = "2026-02-16T14:37:01.888Z" }, + { url = "https://files.pythonhosted.org/packages/39/0d/984ffaef9abcb902c0f8e950dc0667951f2aef63e66d261f3d6bc92a671a/simsimd-6.5.13-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:dbb53a30c3f6ec099f923f7cd87fd84498e4c23d92132123b6599405ca8aaf53", size = 274224, upload-time = "2026-02-16T14:37:03.572Z" }, + { url = "https://files.pythonhosted.org/packages/3c/f9/74801b522d2cb35de06ceaba284dbaddfe2abeb38409c1fd9954f7fc6be8/simsimd-6.5.13-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2dea4381bfea9a84e3e60f845482165232febb49fde0c8115f005fffaab5eeb1", size = 295510, upload-time = "2026-02-16T14:37:05.358Z" }, + { url = "https://files.pythonhosted.org/packages/e3/54/e857623de73cbde6176db6b2b2389ff373347e5db32e462f222039fd141a/simsimd-6.5.13-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:3a46f73c6efaed3b2908e5ea6fb09a911c90f2ef7975fcd11390d26eac654633", size = 285546, upload-time = "2026-02-16T14:37:07.125Z" }, + { url = "https://files.pythonhosted.org/packages/fd/ea/7f4237af0b5ba0df14ff0325bb5d8c8975f1c03fb7874fda464f3d1aa196/simsimd-6.5.13-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e6434121f7b90777d0f2e999a249303b49f6909cc56f572251a6d17d124da79e", size = 583059, upload-time = "2026-02-16T14:37:08.866Z" }, + { url = "https://files.pythonhosted.org/packages/7d/d7/000d1a7d6b5002a18697f3e200e387065a715d381ad042b3d42f45578c51/simsimd-6.5.13-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:630db9f6990152c27cf40e0754f5a746a058c5cdca1f29dfa06574f58a9150fe", size = 421289, upload-time = "2026-02-16T14:37:11.011Z" }, + { url = "https://files.pythonhosted.org/packages/7b/5d/7e7481698f0de64b9852a30f7fbd656188ee77f5e9e9e0853caf1f05687e/simsimd-6.5.13-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:a901f9bef109f987f102d50975822f89a0019d06c2d38222225867c932564160", size = 318349, upload-time = "2026-02-16T14:37:12.719Z" }, + { url = "https://files.pythonhosted.org/packages/54/d2/55fbaa472e9b8673ad14983ba6dd37983430051f373e3200038ff7e3daa5/simsimd-6.5.13-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:6171f6b096ae5b4e93f00f73bb05a52ceebdb92e7d0a2d58b1d7cb01cfe428a6", size = 338439, upload-time = "2026-02-16T14:37:14.462Z" }, + { url = "https://files.pythonhosted.org/packages/e1/ca/b66769e6a5685c82fefe7fd9c626eee5ee0aada8b246211c4cbb2e44a4ef/simsimd-6.5.13-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:1eef8aa196673b8c44eb0ea1a9e288ebfc8e4bed6adda14ab7f8a3a0319f9c22", size = 315878, upload-time = "2026-02-16T14:37:16.276Z" }, + { url = "https://files.pythonhosted.org/packages/03/94/75b3a2b56a93d769fc3639e053318adffe728d2389fb682cfbc0b5aff36c/simsimd-6.5.13-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:db8323fc9d0a7b384f5b11cab5db47bf6930be145b192953f8f20dc3763ec2db", size = 619095, upload-time = "2026-02-16T14:37:18.102Z" }, + { url = "https://files.pythonhosted.org/packages/91/c7/af0f4ffd80399a68b87259b1a1c196c481d429366b6d7d76977cc0dbfc33/simsimd-6.5.13-cp313-cp313-win_amd64.whl", hash = "sha256:143a903e0ac76678c5ab68e746c62016b3587d6d3d08c13136897a7b6482bf2d", size = 87424, upload-time = "2026-02-16T14:37:19.919Z" }, + { url = "https://files.pythonhosted.org/packages/dd/79/aac62c78e826c62255bdc8c95fca17c541d545a3a7b4f8702efe5d87bb55/simsimd-6.5.13-cp313-cp313-win_arm64.whl", hash = "sha256:ab635487094237b4cf8ed9e094ae1bcbe00d4573617e8691cf8abc0e743721ab", size = 62872, upload-time = "2026-02-16T14:37:21.481Z" }, + { url = "https://files.pythonhosted.org/packages/7e/7b/4a95ac289f2d433efa2e84b27e0a6877d7262cab19fff498184e9e8cc933/simsimd-6.5.13-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:0110926d48f746d51faae199e6af34f308c4bb71e8b69d542756bde50b3512f1", size = 105272, upload-time = "2026-02-16T14:37:22.985Z" }, + { url = "https://files.pythonhosted.org/packages/bd/a1/9a3a831d09db850fd79f0746f7e11ca8f6e46d8d5df79ab86db46e9c8cbf/simsimd-6.5.13-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:17139451404f0c6bee4db69578d629938b5ce5c63d47a45aaaebb4f5d23f4181", size = 94733, upload-time = "2026-02-16T14:37:24.505Z" }, + { url = "https://files.pythonhosted.org/packages/ac/2a/b9ad7c8c99f6166ce55d11da27638861dd23fd98d6774d5a147c3ff40b16/simsimd-6.5.13-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:29766f4ba3095a2fb8e86d56b37241e966d99021702cc8cb47a32f31ca53a863", size = 386946, upload-time = "2026-02-16T14:37:26.153Z" }, + { url = "https://files.pythonhosted.org/packages/97/2e/e30ab81dc47cec7aec355826f5ec77b29c1190e2063579cf0c06984e8245/simsimd-6.5.13-cp313-cp313t-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:01d37ff39797bb34a9a18f67748c6173e4fa7366503d49de2e2541551a5d991f", size = 275321, upload-time = "2026-02-16T14:37:27.862Z" }, + { url = "https://files.pythonhosted.org/packages/fb/66/591424099b4175f59a0162816e0620587190b1149e84a7f246a2e8ab276b/simsimd-6.5.13-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:74fdb0bd3d5962a633351ca5e9add3f9bc7f21c8946de985b2a4c17ec1976ae7", size = 297064, upload-time = "2026-02-16T14:37:29.703Z" }, + { url = "https://files.pythonhosted.org/packages/c5/45/e4b5229a4a293bd3d09d43f9d0e2de237b31ba11745a01ea7a79155317a4/simsimd-6.5.13-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:2bfda53d307df4067c49e5ef6d2871ad94475a70b31d1d9fa0bc6473caf66a46", size = 286826, upload-time = "2026-02-16T14:37:32.216Z" }, + { url = "https://files.pythonhosted.org/packages/a6/d7/35164e6de75f34e51f8ed9dd1ce8e58dc7d5d21d982070322332dd1aea72/simsimd-6.5.13-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cf1d749cefb45765092e8ce4dfb99ce38abda8a8e2f418b3fa48f92b03e3a6a2", size = 584556, upload-time = "2026-02-16T14:37:33.982Z" }, + { url = "https://files.pythonhosted.org/packages/f9/2d/c8af79a19e1d1d1a148aee383df7a058806b0a813c413e369cf32a0408d5/simsimd-6.5.13-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:518211d3899e431ba0d6ca3a0ccb9f1e67f8703fd905e9d66e38ba3816a20b51", size = 422821, upload-time = "2026-02-16T14:37:35.897Z" }, + { url = "https://files.pythonhosted.org/packages/6c/99/b8bf8b85c3ccaaaa0b55ddb0231043bd7c4517ad3af805055a6641780a69/simsimd-6.5.13-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:6c3722fd4db40219bcf1a45486dddf4b3f9207ec5dde187cb3791bfa46733a44", size = 319691, upload-time = "2026-02-16T14:37:37.711Z" }, + { url = "https://files.pythonhosted.org/packages/1b/40/9e78c26e80612f4b06bbc9c2d635e12694c562df174a372db262f6f1f096/simsimd-6.5.13-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:a7673796d2ea073722a473d51be5403a22c62d07536d7d05b2860189e0261b04", size = 339961, upload-time = "2026-02-16T14:37:39.659Z" }, + { url = "https://files.pythonhosted.org/packages/32/5a/b01c8d0dfe51b08587ffb06143204e50fcfa75e0cc8c64764e26eff2e1c0/simsimd-6.5.13-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:7e7e17530bbbd9123daae5c6338fdb6539d52778da1e9bb4628c09b489f0b393", size = 317306, upload-time = "2026-02-16T14:37:41.355Z" }, + { url = "https://files.pythonhosted.org/packages/d3/23/2e29ebecb9144609fac977089d926e73cc160b14c299364ac07581e36355/simsimd-6.5.13-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:3094f00710a6907442ad028152834b6c40e79296010c231f31815b1c9164ed5b", size = 620213, upload-time = "2026-02-16T14:37:43.131Z" }, + { url = "https://files.pythonhosted.org/packages/1d/59/5a24ef51d20932b353bc1ba9110a81c13fda7c5d7c4c883b5be3135a80a8/simsimd-6.5.13-cp313-cp313t-win_amd64.whl", hash = "sha256:0dd29d6be80f2119849d5fe1cde3cff7863db5d74ee68ebbdf1a41eb3da9a27a", size = 87598, upload-time = "2026-02-16T14:37:44.824Z" }, + { url = "https://files.pythonhosted.org/packages/91/e5/9f681465243ae2a6a7242044f3f282b5f9ac66cbd5b2cd99ea224eb87757/simsimd-6.5.13-cp313-cp313t-win_arm64.whl", hash = "sha256:e8a12c285e8bdfd5bdd4526637ff0b1820e5c6316fcb91a2e1fc465b155a1d22", size = 63065, upload-time = "2026-02-16T14:37:46.423Z" }, + { url = "https://files.pythonhosted.org/packages/1a/7d/441e898d1046317e805b6c55e0445cb36f4453d81e24fd05ac3137794c7c/simsimd-6.5.13-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:894cd01fa84e6fd094cd965b975c2b017d2af628314759d03f94d9ad16681bd0", size = 105172, upload-time = "2026-02-16T14:37:48.034Z" }, + { url = "https://files.pythonhosted.org/packages/f5/bc/dab202fcf4ad9be5cc7cbc94ae3d843871ee05a103b7186c5b550f4e796b/simsimd-6.5.13-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:41a54b669ce5447201ee0b17ad9e652ed72fa86835cd48f9bae8afbc679286b9", size = 94574, upload-time = "2026-02-16T14:37:49.757Z" }, + { url = "https://files.pythonhosted.org/packages/86/1b/90d6863735eb22ddcba5972e43dbdebb4e14e663d49a2551c2c1017e7f49/simsimd-6.5.13-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:755bbb9b49264ac8b8099048060907fc7243bd34d12a49767c3041e240e4bf4c", size = 385216, upload-time = "2026-02-16T14:37:51.843Z" }, + { url = "https://files.pythonhosted.org/packages/10/83/580f36d239d9806fc3bc1ca982fe825ce28e02fa6e296d02e5f9c857e079/simsimd-6.5.13-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:be33f0358a82bc195a4c7bb97da9640f96495e5f479e2403c6613f09ac0950f0", size = 274343, upload-time = "2026-02-16T14:37:54.262Z" }, + { url = "https://files.pythonhosted.org/packages/42/ae/9ec865d109d12f4636cd42e796f79cf2216c28898a7968c71c4cb158b017/simsimd-6.5.13-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8a476876840f561b95068fc0b68b3ed0d43d4cf3855ae61b8b12f132dc4ccd90", size = 295688, upload-time = "2026-02-16T14:37:56.131Z" }, + { url = "https://files.pythonhosted.org/packages/01/7e/11cc30915fbb580f65e0498ab8292e63be6cce5936204a0023f6082751b5/simsimd-6.5.13-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:fc6598d87ce53f2bea642bd93b107baebc0d73ef8e01040169867fa0925a49c1", size = 285642, upload-time = "2026-02-16T14:37:58.586Z" }, + { url = "https://files.pythonhosted.org/packages/21/02/5d01571c8a109a43338528edfe0a2f0974b18d83ed6f3497005661db0d07/simsimd-6.5.13-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:86837bc84b448a7937e8cc54514af2ffa42ed1193bdd35f78aeab4a5886b5d87", size = 583195, upload-time = "2026-02-16T14:38:00.51Z" }, + { url = "https://files.pythonhosted.org/packages/6c/c3/c6094ff273bd1f61c656fd96fc9ec5b374a2352b0f05e304089605c49075/simsimd-6.5.13-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:017beb9310535e3bbfcc3b3dddb446fca99dd41d7dff7743dc716baf6864fc06", size = 421452, upload-time = "2026-02-16T14:38:02.691Z" }, + { url = "https://files.pythonhosted.org/packages/b3/29/6853a36e9f988c037c5a7158d6d36965d5356f2b034e2ed6d692b6456dd5/simsimd-6.5.13-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:d7e6c641d1a394f5c0d2b8c3ea2b54d210fd38a9bd6846a4932ac23fceeb599f", size = 318507, upload-time = "2026-02-16T14:38:04.552Z" }, + { url = "https://files.pythonhosted.org/packages/c0/99/4849ab7fcdd6843ccd47618fcc86037219eb6dbe8ff7c01913c6dd5312e5/simsimd-6.5.13-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:76699073b2c88b7bf2eb6d3123ffe7f21a1d997194b21e05b08f09f8417fb4bf", size = 338534, upload-time = "2026-02-16T14:38:06.487Z" }, + { url = "https://files.pythonhosted.org/packages/fc/b5/d3d11ec6d38ebf8ba7c549253c2eaf416ae90e86ef0c48156a84846c4fca/simsimd-6.5.13-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:cd915285f1dce2daac586f85f31651332713d117a77f89b044ca8c5e31434f49", size = 316055, upload-time = "2026-02-16T14:38:08.573Z" }, + { url = "https://files.pythonhosted.org/packages/03/69/8431f224459f5092bafe23cd6a13b2420b99521f1849608ff3b05e25d539/simsimd-6.5.13-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:03e370f5c971ad82c8c0e5c1c535c6f4f7a8f85e82976b159f43464e2c303bf0", size = 619177, upload-time = "2026-02-16T14:38:10.416Z" }, + { url = "https://files.pythonhosted.org/packages/19/9d/5bde0ebb3091154baafda376cbaeced71fce9c99e2fdfe0760e8221d8f20/simsimd-6.5.13-cp314-cp314-win_amd64.whl", hash = "sha256:b3d3192ab37fbcfe960850ceb40654f02d2fc423514186acbf638ece7b9e9822", size = 90103, upload-time = "2026-02-16T14:38:12.188Z" }, + { url = "https://files.pythonhosted.org/packages/d7/ce/d12886514073f02e3496047014aa93127f658a594491f34310984cf07bac/simsimd-6.5.13-cp314-cp314-win_arm64.whl", hash = "sha256:c7eea07b35a5ac145230aa2ee6af5efd1a20cac6a513aa373e106ae6aa1c4806", size = 64854, upload-time = "2026-02-16T14:38:14.662Z" }, + { url = "https://files.pythonhosted.org/packages/a0/61/b1cff0f231a011330d11460b792e3ec0e9aa5ba544dd63a2d2a263cb9fa8/simsimd-6.5.13-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:c0b3e1c178725163062b7ee41050d8f0c35cc25570dc11be77c413f38188f39d", size = 105328, upload-time = "2026-02-16T14:38:16.32Z" }, + { url = "https://files.pythonhosted.org/packages/da/a4/bfa6cc5c3ecd846e9e9b5a0b25f10a310ad12290b7318b4f1145ac51559c/simsimd-6.5.13-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:2c763db27d9ea608297673837086ced998be011a909fc1e6093e798ae7483f53", size = 94737, upload-time = "2026-02-16T14:38:18.567Z" }, + { url = "https://files.pythonhosted.org/packages/ff/32/1c29a757ff18f36c1260cead15e0283fe108e5520c031fdb9f7167e6dd88/simsimd-6.5.13-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c3f81fd7dabb0a43bc4f99479cbc4a4754d531df7abdab80c1acc185209f2df4", size = 387079, upload-time = "2026-02-16T14:38:20.415Z" }, + { url = "https://files.pythonhosted.org/packages/9e/9a/3205a72cce3157691632389ecc3b658383d78488f318d6b479c2ee80e1ae/simsimd-6.5.13-cp314-cp314t-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:09b47c8a19488d4699d3ff64db55daedb29c5579b6f7ba6ab44a9adf82828dad", size = 275463, upload-time = "2026-02-16T14:38:22.657Z" }, + { url = "https://files.pythonhosted.org/packages/01/b1/923ea91692d3c259df1087ff84f6234b5a06cff27b7c923183761366eb6e/simsimd-6.5.13-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ed4b5e3388d6ce265ed6cd8157dbd782aaa4e6ef64729a6f827ced9dce9d8fe9", size = 297226, upload-time = "2026-02-16T14:38:25.175Z" }, + { url = "https://files.pythonhosted.org/packages/93/1a/84b1505fe1291749986e56b10aa2f4dd1de41fba1385ac3dffd18560c4c3/simsimd-6.5.13-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:e92f395969e40a0c021be615b00737f4de27d239116755f5840cdcc182c4d1bc", size = 286941, upload-time = "2026-02-16T14:38:27.067Z" }, + { url = "https://files.pythonhosted.org/packages/ac/63/61d7dd7fff8cd0302d83d9bc054e51236fff64ddeffa17e85d9aeaceccd5/simsimd-6.5.13-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4e96fc6f8b7024330103a3a4065a3b2e382921a638d565eec5f8f11d9b8213b6", size = 584686, upload-time = "2026-02-16T14:38:28.904Z" }, + { url = "https://files.pythonhosted.org/packages/bc/df/79416e6df8bcb5648dbdebb585bf68f12b7f77274b9d94fea5bce9a7c0fe/simsimd-6.5.13-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:8da2de7290767ff9c9dd338c63a236ef218d4c3c12ee5c61735e5f2aae039df0", size = 422925, upload-time = "2026-02-16T14:38:30.922Z" }, + { url = "https://files.pythonhosted.org/packages/77/d8/ad1f1bd43f1d46637ad025e59704ff7acfe6a42ae4b1bada66c69f0cd244/simsimd-6.5.13-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:c0c3ac0612aaaea23c1716cbda7fcc10ce8b871cbda3ac5d914918c88f7a2238", size = 319789, upload-time = "2026-02-16T14:38:32.926Z" }, + { url = "https://files.pythonhosted.org/packages/a2/38/b400e1fabd0afa382a6c1e9fea302d49378803e81e2bc337188582b3be80/simsimd-6.5.13-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:4b4592931c1b1d05ac162b95f6bf7715f5954709582b1694f2388bec0449dc0d", size = 340093, upload-time = "2026-02-16T14:38:34.887Z" }, + { url = "https://files.pythonhosted.org/packages/0a/ce/56fa3170f8159609a3a84a28a26d88db2736e6222a07ebfd699370b07aa9/simsimd-6.5.13-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:8addbd217475fce1cffaa81fe9b79c075b86e31dfd0a1b7b5e297fe30c879250", size = 317415, upload-time = "2026-02-16T14:38:36.753Z" }, + { url = "https://files.pythonhosted.org/packages/64/56/d1fc4627033b77ed3b12f4374b27f51773a952b2dfde90b2bdab0706f17a/simsimd-6.5.13-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:4454e0dc94dbdbacab2e3b995b409008c2cc8c5b1aa19737b4a336106ace6bbb", size = 620297, upload-time = "2026-02-16T14:38:39.351Z" }, + { url = "https://files.pythonhosted.org/packages/92/54/3b0084f9a7029cf477c73fac3a902d0624e8ed7565c26e373ec36a0940bf/simsimd-6.5.13-cp314-cp314t-win_amd64.whl", hash = "sha256:a92327e490d75ef583eb08e3b89a3711c0a7a26bbc0435d01f92e7361a5966cb", size = 90308, upload-time = "2026-02-16T14:38:43.273Z" }, + { url = "https://files.pythonhosted.org/packages/6a/db/865739bf469d7bfbb32f8d65dff1be0eb2b43ee9ccfda64319570c75333e/simsimd-6.5.13-cp314-cp314t-win_arm64.whl", hash = "sha256:d7214bfa3ba0d7784558a9526964f2af787edc2b0509e43f60a591590b5e7d4a", size = 65049, upload-time = "2026-02-16T14:38:45.746Z" }, ] [[package]] @@ -1731,6 +4908,33 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050, upload-time = "2024-12-04T17:35:26.475Z" }, ] +[[package]] +name = "sniffio" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a2/87/a6771e1546d97e7e041b6ae58d80074f81b7d5121207425c964ddf5cfdbd/sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc", size = 20372, upload-time = "2024-02-25T23:20:04.057Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", size = 10235, upload-time = "2024-02-25T23:20:01.196Z" }, +] + +[[package]] +name = "sortedcontainers" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e8/c4/ba2f8066cceb6f23394729afe52f3bf7adec04bf9ed2c820b39e19299111/sortedcontainers-2.4.0.tar.gz", hash = "sha256:25caa5a06cc30b6b83d11423433f65d1f9d76c4c6a0c90e3379eaa43b9bfdb88", size = 30594, upload-time = "2021-05-16T22:03:42.897Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/32/46/9cb0e58b2deb7f82b84065f37f3bffeb12413f947f9388e4cac22c4621ce/sortedcontainers-2.4.0-py2.py3-none-any.whl", hash = "sha256:a163dcaede0f1c021485e957a39245190e74249897e2ae4b2aa38595db237ee0", size = 29575, upload-time = "2021-05-16T22:03:41.177Z" }, +] + +[[package]] +name = "soupsieve" +version = "2.8.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7b/ae/2d9c981590ed9999a0d91755b47fc74f74de286b0f5cee14c9269041e6c4/soupsieve-2.8.3.tar.gz", hash = "sha256:3267f1eeea4251fb42728b6dfb746edc9acaffc4a45b27e19450b676586e8349", size = 118627, upload-time = "2026-01-20T04:27:02.457Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/46/2c/1462b1d0a634697ae9e55b3cecdcb64788e8b7d63f54d923fcd0bb140aed/soupsieve-2.8.3-py3-none-any.whl", hash = "sha256:ed64f2ba4eebeab06cc4962affce381647455978ffc1e36bb79a545b91f45a95", size = 37016, upload-time = "2026-01-20T04:27:01.012Z" }, +] + [[package]] name = "sqlalchemy" version = "2.0.46" @@ -1780,6 +4984,71 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/fc/a1/9c4efa03300926601c19c18582531b45aededfb961ab3c3585f1e24f120b/sqlalchemy-2.0.46-py3-none-any.whl", hash = "sha256:f9c11766e7e7c0a2767dda5acb006a118640c9fc0a4104214b96269bfb78399e", size = 1937882, upload-time = "2026-01-21T18:22:10.456Z" }, ] +[[package]] +name = "stack-data" +version = "0.6.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "asttokens" }, + { name = "executing" }, + { name = "pure-eval" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/28/e3/55dcc2cfbc3ca9c29519eb6884dd1415ecb53b0e934862d3559ddcb7e20b/stack_data-0.6.3.tar.gz", hash = "sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9", size = 44707, upload-time = "2023-09-30T13:58:05.479Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695", size = 24521, upload-time = "2023-09-30T13:58:03.53Z" }, +] + +[[package]] +name = "statsmodels" +version = "0.14.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "packaging" }, + { name = "pandas" }, + { name = "patsy" }, + { name = "scipy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0d/81/e8d74b34f85285f7335d30c5e3c2d7c0346997af9f3debf9a0a9a63de184/statsmodels-0.14.6.tar.gz", hash = "sha256:4d17873d3e607d398b85126cd4ed7aad89e4e9d89fc744cdab1af3189a996c2a", size = 20689085, upload-time = "2025-12-05T23:08:39.522Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a9/4d/df4dd089b406accfc3bb5ee53ba29bb3bdf5ae61643f86f8f604baa57656/statsmodels-0.14.6-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6ad5c2810fc6c684254a7792bf1cbaf1606cdee2a253f8bd259c43135d87cfb4", size = 10121514, upload-time = "2025-12-05T19:28:16.521Z" }, + { url = "https://files.pythonhosted.org/packages/82/af/ec48daa7f861f993b91a0dcc791d66e1cf56510a235c5cbd2ab991a31d5c/statsmodels-0.14.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:341fa68a7403e10a95c7b6e41134b0da3a7b835ecff1eb266294408535a06eb6", size = 10003346, upload-time = "2025-12-05T19:28:29.568Z" }, + { url = "https://files.pythonhosted.org/packages/a9/2c/c8f7aa24cd729970728f3f98822fb45149adc216f445a9301e441f7ac760/statsmodels-0.14.6-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bdf1dfe2a3ca56f5529118baf33a13efed2783c528f4a36409b46bbd2d9d48eb", size = 10129872, upload-time = "2025-12-05T23:09:25.724Z" }, + { url = "https://files.pythonhosted.org/packages/40/c6/9ae8e9b0721e9b6eb5f340c3a0ce8cd7cce4f66e03dd81f80d60f111987f/statsmodels-0.14.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a3764ba8195c9baf0925a96da0743ff218067a269f01d155ca3558deed2658ca", size = 10381964, upload-time = "2025-12-05T23:09:41.326Z" }, + { url = "https://files.pythonhosted.org/packages/28/8c/cf3d30c8c2da78e2ad1f50ade8b7fabec3ff4cdfc56fbc02e097c4577f90/statsmodels-0.14.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9e8d2e519852adb1b420e018f5ac6e6684b2b877478adf7fda2cfdb58f5acb5d", size = 10409611, upload-time = "2025-12-05T23:09:57.131Z" }, + { url = "https://files.pythonhosted.org/packages/bf/cc/018f14ecb58c6cb89de9d52695740b7d1f5a982aa9ea312483ea3c3d5f77/statsmodels-0.14.6-cp311-cp311-win_amd64.whl", hash = "sha256:2738a00fca51196f5a7d44b06970ace6b8b30289839e4808d656f8a98e35faa7", size = 9580385, upload-time = "2025-12-05T19:28:42.778Z" }, + { url = "https://files.pythonhosted.org/packages/25/ce/308e5e5da57515dd7cab3ec37ea2d5b8ff50bef1fcc8e6d31456f9fae08e/statsmodels-0.14.6-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:fe76140ae7adc5ff0e60a3f0d56f4fffef484efa803c3efebf2fcd734d72ecb5", size = 10091932, upload-time = "2025-12-05T19:28:55.446Z" }, + { url = "https://files.pythonhosted.org/packages/05/30/affbabf3c27fb501ec7b5808230c619d4d1a4525c07301074eb4bda92fa9/statsmodels-0.14.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:26d4f0ed3b31f3c86f83a92f5c1f5cbe63fc992cd8915daf28ca49be14463a1c", size = 9997345, upload-time = "2025-12-05T19:29:10.278Z" }, + { url = "https://files.pythonhosted.org/packages/48/f5/3a73b51e6450c31652c53a8e12e24eac64e3824be816c0c2316e7dbdcb7d/statsmodels-0.14.6-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d8c00a42863e4f4733ac9d078bbfad816249c01451740e6f5053ecc7db6d6368", size = 10058649, upload-time = "2025-12-05T23:10:12.775Z" }, + { url = "https://files.pythonhosted.org/packages/81/68/dddd76117df2ef14c943c6bbb6618be5c9401280046f4ddfc9fb4596a1b8/statsmodels-0.14.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:19b58cf7474aa9e7e3b0771a66537148b2df9b5884fbf156096c0e6c1ff0469d", size = 10339446, upload-time = "2025-12-05T23:10:28.503Z" }, + { url = "https://files.pythonhosted.org/packages/56/4a/dce451c74c4050535fac1ec0c14b80706d8fc134c9da22db3c8a0ec62c33/statsmodels-0.14.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:81e7dcc5e9587f2567e52deaff5220b175bf2f648951549eae5fc9383b62bc37", size = 10368705, upload-time = "2025-12-05T23:10:44.339Z" }, + { url = "https://files.pythonhosted.org/packages/60/15/3daba2df40be8b8a9a027d7f54c8dedf24f0d81b96e54b52293f5f7e3418/statsmodels-0.14.6-cp312-cp312-win_amd64.whl", hash = "sha256:b5eb07acd115aa6208b4058211138393a7e6c2cf12b6f213ede10f658f6a714f", size = 9543991, upload-time = "2025-12-05T23:10:58.536Z" }, + { url = "https://files.pythonhosted.org/packages/81/59/a5aad5b0cc266f5be013db8cde563ac5d2a025e7efc0c328d83b50c72992/statsmodels-0.14.6-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:47ee7af083623d2091954fa71c7549b8443168f41b7c5dce66510274c50fd73e", size = 10072009, upload-time = "2025-12-05T23:11:14.021Z" }, + { url = "https://files.pythonhosted.org/packages/53/dd/d8cfa7922fc6dc3c56fa6c59b348ea7de829a94cd73208c6f8202dd33f17/statsmodels-0.14.6-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:aa60d82e29fcd0a736e86feb63a11d2380322d77a9369a54be8b0965a3985f71", size = 9980018, upload-time = "2025-12-05T23:11:30.907Z" }, + { url = "https://files.pythonhosted.org/packages/ee/77/0ec96803eba444efd75dba32f2ef88765ae3e8f567d276805391ec2c98c6/statsmodels-0.14.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:89ee7d595f5939cc20bf946faedcb5137d975f03ae080f300ebb4398f16a5bd4", size = 10060269, upload-time = "2025-12-05T23:11:46.338Z" }, + { url = "https://files.pythonhosted.org/packages/10/b9/fd41f1f6af13a1a1212a06bb377b17762feaa6d656947bf666f76300fc05/statsmodels-0.14.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:730f3297b26749b216a06e4327fe0be59b8d05f7d594fb6caff4287b69654589", size = 10324155, upload-time = "2025-12-05T23:12:01.805Z" }, + { url = "https://files.pythonhosted.org/packages/ee/0f/a6900e220abd2c69cd0a07e3ad26c71984be6061415a60e0f17b152ecf08/statsmodels-0.14.6-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f1c08befa85e93acc992b72a390ddb7bd876190f1360e61d10cf43833463bc9c", size = 10349765, upload-time = "2025-12-05T23:12:18.018Z" }, + { url = "https://files.pythonhosted.org/packages/98/08/b79f0c614f38e566eebbdcff90c0bcacf3c6ba7a5bbb12183c09c29ca400/statsmodels-0.14.6-cp313-cp313-win_amd64.whl", hash = "sha256:8021271a79f35b842c02a1794465a651a9d06ec2080f76ebc3b7adce77d08233", size = 9540043, upload-time = "2025-12-05T23:12:33.887Z" }, + { url = "https://files.pythonhosted.org/packages/71/de/09540e870318e0c7b58316561d417be45eff731263b4234fdd2eee3511a8/statsmodels-0.14.6-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:00781869991f8f02ad3610da6627fd26ebe262210287beb59761982a8fa88cae", size = 10069403, upload-time = "2025-12-05T23:12:48.424Z" }, + { url = "https://files.pythonhosted.org/packages/ab/f0/63c1bfda75dc53cee858006e1f46bd6d6f883853bea1b97949d0087766ca/statsmodels-0.14.6-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:73f305fbf31607b35ce919fae636ab8b80d175328ed38fdc6f354e813b86ee37", size = 9989253, upload-time = "2025-12-05T23:13:05.274Z" }, + { url = "https://files.pythonhosted.org/packages/c1/98/b0dfb4f542b2033a3341aa5f1bdd97024230a4ad3670c5b0839d54e3dcab/statsmodels-0.14.6-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e443e7077a6e2d3faeea72f5a92c9f12c63722686eb80bb40a0f04e4a7e267ad", size = 10090802, upload-time = "2025-12-05T23:13:20.653Z" }, + { url = "https://files.pythonhosted.org/packages/34/0e/2408735aca9e764643196212f9069912100151414dd617d39ffc72d77eee/statsmodels-0.14.6-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:3414e40c073d725007a6603a18247ab7af3467e1af4a5e5a24e4c27bc26673b4", size = 10337587, upload-time = "2025-12-05T23:13:37.597Z" }, + { url = "https://files.pythonhosted.org/packages/0f/36/4d44f7035ab3c0b2b6a4c4ebb98dedf36246ccbc1b3e2f51ebcd7ac83abb/statsmodels-0.14.6-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:a518d3f9889ef920116f9fa56d0338069e110f823926356946dae83bc9e33e19", size = 10363350, upload-time = "2025-12-05T23:13:53.08Z" }, + { url = "https://files.pythonhosted.org/packages/26/33/f1652d0c59fa51de18492ee2345b65372550501ad061daa38f950be390b6/statsmodels-0.14.6-cp314-cp314-win_amd64.whl", hash = "sha256:151b73e29f01fe619dbce7f66d61a356e9d1fe5e906529b78807df9189c37721", size = 9588010, upload-time = "2025-12-05T23:14:07.28Z" }, +] + +[[package]] +name = "sympy" +version = "1.14.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mpmath" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/83/d3/803453b36afefb7c2bb238361cd4ae6125a569b4db67cd9e79846ba2d68c/sympy-1.14.0.tar.gz", hash = "sha256:d3d3fe8df1e5a0b42f0e7bdf50541697dbe7d23746e894990c030e2b05e72517", size = 7793921, upload-time = "2025-04-27T18:05:01.611Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a2/09/77d55d46fd61b4a135c444fc97158ef34a095e5681d0a6c10b75bf356191/sympy-1.14.0-py3-none-any.whl", hash = "sha256:e091cc3e99d2141a0ba2847328f5479b05d94a6635cb96148ccb3f34671bd8f5", size = 6299353, upload-time = "2025-04-27T18:04:59.103Z" }, +] + [[package]] name = "tenacity" version = "9.1.4" @@ -1789,6 +5058,200 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/d7/c1/eb8f9debc45d3b7918a32ab756658a0904732f75e555402972246b0b8e71/tenacity-9.1.4-py3-none-any.whl", hash = "sha256:6095a360c919085f28c6527de529e76a06ad89b23659fa881ae0649b867a9d55", size = 28926, upload-time = "2026-02-07T10:45:32.24Z" }, ] +[[package]] +name = "terminado" +version = "0.18.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ptyprocess", marker = "os_name != 'nt'" }, + { name = "pywinpty", marker = "os_name == 'nt'" }, + { name = "tornado" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8a/11/965c6fd8e5cc254f1fe142d547387da17a8ebfd75a3455f637c663fb38a0/terminado-0.18.1.tar.gz", hash = "sha256:de09f2c4b85de4765f7714688fff57d3e75bad1f909b589fde880460c753fd2e", size = 32701, upload-time = "2024-03-12T14:34:39.026Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6a/9e/2064975477fdc887e47ad42157e214526dcad8f317a948dee17e1659a62f/terminado-0.18.1-py3-none-any.whl", hash = "sha256:a4468e1b37bb318f8a86514f65814e1afc977cf29b3992a4500d9dd305dcceb0", size = 14154, upload-time = "2024-03-12T14:34:36.569Z" }, +] + +[[package]] +name = "threadpoolctl" +version = "3.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b7/4d/08c89e34946fce2aec4fbb45c9016efd5f4d7f24af8e5d93296e935631d8/threadpoolctl-3.6.0.tar.gz", hash = "sha256:8ab8b4aa3491d812b623328249fab5302a68d2d71745c8a4c719a2fcaba9f44e", size = 21274, upload-time = "2025-03-13T13:49:23.031Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/32/d5/f9a850d79b0851d1d4ef6456097579a9005b31fea68726a4ae5f2d82ddd9/threadpoolctl-3.6.0-py3-none-any.whl", hash = "sha256:43a0b8fd5a2928500110039e43a5eed8480b918967083ea48dc3ab9f13c4a7fb", size = 18638, upload-time = "2025-03-13T13:49:21.846Z" }, +] + +[[package]] +name = "tiktoken" +version = "0.12.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "regex" }, + { name = "requests" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7d/ab/4d017d0f76ec3171d469d80fc03dfbb4e48a4bcaddaa831b31d526f05edc/tiktoken-0.12.0.tar.gz", hash = "sha256:b18ba7ee2b093863978fcb14f74b3707cdc8d4d4d3836853ce7ec60772139931", size = 37806, upload-time = "2025-10-06T20:22:45.419Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/de/46/21ea696b21f1d6d1efec8639c204bdf20fde8bafb351e1355c72c5d7de52/tiktoken-0.12.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:6e227c7f96925003487c33b1b32265fad2fbcec2b7cf4817afb76d416f40f6bb", size = 1051565, upload-time = "2025-10-06T20:21:44.566Z" }, + { url = "https://files.pythonhosted.org/packages/c9/d9/35c5d2d9e22bb2a5f74ba48266fb56c63d76ae6f66e02feb628671c0283e/tiktoken-0.12.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c06cf0fcc24c2cb2adb5e185c7082a82cba29c17575e828518c2f11a01f445aa", size = 995284, upload-time = "2025-10-06T20:21:45.622Z" }, + { url = "https://files.pythonhosted.org/packages/01/84/961106c37b8e49b9fdcf33fe007bb3a8fdcc380c528b20cc7fbba80578b8/tiktoken-0.12.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:f18f249b041851954217e9fd8e5c00b024ab2315ffda5ed77665a05fa91f42dc", size = 1129201, upload-time = "2025-10-06T20:21:47.074Z" }, + { url = "https://files.pythonhosted.org/packages/6a/d0/3d9275198e067f8b65076a68894bb52fd253875f3644f0a321a720277b8a/tiktoken-0.12.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:47a5bc270b8c3db00bb46ece01ef34ad050e364b51d406b6f9730b64ac28eded", size = 1152444, upload-time = "2025-10-06T20:21:48.139Z" }, + { url = "https://files.pythonhosted.org/packages/78/db/a58e09687c1698a7c592e1038e01c206569b86a0377828d51635561f8ebf/tiktoken-0.12.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:508fa71810c0efdcd1b898fda574889ee62852989f7c1667414736bcb2b9a4bd", size = 1195080, upload-time = "2025-10-06T20:21:49.246Z" }, + { url = "https://files.pythonhosted.org/packages/9e/1b/a9e4d2bf91d515c0f74afc526fd773a812232dd6cda33ebea7f531202325/tiktoken-0.12.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a1af81a6c44f008cba48494089dd98cccb8b313f55e961a52f5b222d1e507967", size = 1255240, upload-time = "2025-10-06T20:21:50.274Z" }, + { url = "https://files.pythonhosted.org/packages/9d/15/963819345f1b1fb0809070a79e9dd96938d4ca41297367d471733e79c76c/tiktoken-0.12.0-cp311-cp311-win_amd64.whl", hash = "sha256:3e68e3e593637b53e56f7237be560f7a394451cb8c11079755e80ae64b9e6def", size = 879422, upload-time = "2025-10-06T20:21:51.734Z" }, + { url = "https://files.pythonhosted.org/packages/a4/85/be65d39d6b647c79800fd9d29241d081d4eeb06271f383bb87200d74cf76/tiktoken-0.12.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:b97f74aca0d78a1ff21b8cd9e9925714c15a9236d6ceacf5c7327c117e6e21e8", size = 1050728, upload-time = "2025-10-06T20:21:52.756Z" }, + { url = "https://files.pythonhosted.org/packages/4a/42/6573e9129bc55c9bf7300b3a35bef2c6b9117018acca0dc760ac2d93dffe/tiktoken-0.12.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2b90f5ad190a4bb7c3eb30c5fa32e1e182ca1ca79f05e49b448438c3e225a49b", size = 994049, upload-time = "2025-10-06T20:21:53.782Z" }, + { url = "https://files.pythonhosted.org/packages/66/c5/ed88504d2f4a5fd6856990b230b56d85a777feab84e6129af0822f5d0f70/tiktoken-0.12.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:65b26c7a780e2139e73acc193e5c63ac754021f160df919add909c1492c0fb37", size = 1129008, upload-time = "2025-10-06T20:21:54.832Z" }, + { url = "https://files.pythonhosted.org/packages/f4/90/3dae6cc5436137ebd38944d396b5849e167896fc2073da643a49f372dc4f/tiktoken-0.12.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:edde1ec917dfd21c1f2f8046b86348b0f54a2c0547f68149d8600859598769ad", size = 1152665, upload-time = "2025-10-06T20:21:56.129Z" }, + { url = "https://files.pythonhosted.org/packages/a3/fe/26df24ce53ffde419a42f5f53d755b995c9318908288c17ec3f3448313a3/tiktoken-0.12.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:35a2f8ddd3824608b3d650a000c1ef71f730d0c56486845705a8248da00f9fe5", size = 1194230, upload-time = "2025-10-06T20:21:57.546Z" }, + { url = "https://files.pythonhosted.org/packages/20/cc/b064cae1a0e9fac84b0d2c46b89f4e57051a5f41324e385d10225a984c24/tiktoken-0.12.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:83d16643edb7fa2c99eff2ab7733508aae1eebb03d5dfc46f5565862810f24e3", size = 1254688, upload-time = "2025-10-06T20:21:58.619Z" }, + { url = "https://files.pythonhosted.org/packages/81/10/b8523105c590c5b8349f2587e2fdfe51a69544bd5a76295fc20f2374f470/tiktoken-0.12.0-cp312-cp312-win_amd64.whl", hash = "sha256:ffc5288f34a8bc02e1ea7047b8d041104791d2ddbf42d1e5fa07822cbffe16bd", size = 878694, upload-time = "2025-10-06T20:21:59.876Z" }, + { url = "https://files.pythonhosted.org/packages/00/61/441588ee21e6b5cdf59d6870f86beb9789e532ee9718c251b391b70c68d6/tiktoken-0.12.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:775c2c55de2310cc1bc9a3ad8826761cbdc87770e586fd7b6da7d4589e13dab3", size = 1050802, upload-time = "2025-10-06T20:22:00.96Z" }, + { url = "https://files.pythonhosted.org/packages/1f/05/dcf94486d5c5c8d34496abe271ac76c5b785507c8eae71b3708f1ad9b45a/tiktoken-0.12.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a01b12f69052fbe4b080a2cfb867c4de12c704b56178edf1d1d7b273561db160", size = 993995, upload-time = "2025-10-06T20:22:02.788Z" }, + { url = "https://files.pythonhosted.org/packages/a0/70/5163fe5359b943f8db9946b62f19be2305de8c3d78a16f629d4165e2f40e/tiktoken-0.12.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:01d99484dc93b129cd0964f9d34eee953f2737301f18b3c7257bf368d7615baa", size = 1128948, upload-time = "2025-10-06T20:22:03.814Z" }, + { url = "https://files.pythonhosted.org/packages/0c/da/c028aa0babf77315e1cef357d4d768800c5f8a6de04d0eac0f377cb619fa/tiktoken-0.12.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:4a1a4fcd021f022bfc81904a911d3df0f6543b9e7627b51411da75ff2fe7a1be", size = 1151986, upload-time = "2025-10-06T20:22:05.173Z" }, + { url = "https://files.pythonhosted.org/packages/a0/5a/886b108b766aa53e295f7216b509be95eb7d60b166049ce2c58416b25f2a/tiktoken-0.12.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:981a81e39812d57031efdc9ec59fa32b2a5a5524d20d4776574c4b4bd2e9014a", size = 1194222, upload-time = "2025-10-06T20:22:06.265Z" }, + { url = "https://files.pythonhosted.org/packages/f4/f8/4db272048397636ac7a078d22773dd2795b1becee7bc4922fe6207288d57/tiktoken-0.12.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9baf52f84a3f42eef3ff4e754a0db79a13a27921b457ca9832cf944c6be4f8f3", size = 1255097, upload-time = "2025-10-06T20:22:07.403Z" }, + { url = "https://files.pythonhosted.org/packages/8e/32/45d02e2e0ea2be3a9ed22afc47d93741247e75018aac967b713b2941f8ea/tiktoken-0.12.0-cp313-cp313-win_amd64.whl", hash = "sha256:b8a0cd0c789a61f31bf44851defbd609e8dd1e2c8589c614cc1060940ef1f697", size = 879117, upload-time = "2025-10-06T20:22:08.418Z" }, + { url = "https://files.pythonhosted.org/packages/ce/76/994fc868f88e016e6d05b0da5ac24582a14c47893f4474c3e9744283f1d5/tiktoken-0.12.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:d5f89ea5680066b68bcb797ae85219c72916c922ef0fcdd3480c7d2315ffff16", size = 1050309, upload-time = "2025-10-06T20:22:10.939Z" }, + { url = "https://files.pythonhosted.org/packages/f6/b8/57ef1456504c43a849821920d582a738a461b76a047f352f18c0b26c6516/tiktoken-0.12.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:b4e7ed1c6a7a8a60a3230965bdedba8cc58f68926b835e519341413370e0399a", size = 993712, upload-time = "2025-10-06T20:22:12.115Z" }, + { url = "https://files.pythonhosted.org/packages/72/90/13da56f664286ffbae9dbcfadcc625439142675845baa62715e49b87b68b/tiktoken-0.12.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:fc530a28591a2d74bce821d10b418b26a094bf33839e69042a6e86ddb7a7fb27", size = 1128725, upload-time = "2025-10-06T20:22:13.541Z" }, + { url = "https://files.pythonhosted.org/packages/05/df/4f80030d44682235bdaecd7346c90f67ae87ec8f3df4a3442cb53834f7e4/tiktoken-0.12.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:06a9f4f49884139013b138920a4c393aa6556b2f8f536345f11819389c703ebb", size = 1151875, upload-time = "2025-10-06T20:22:14.559Z" }, + { url = "https://files.pythonhosted.org/packages/22/1f/ae535223a8c4ef4c0c1192e3f9b82da660be9eb66b9279e95c99288e9dab/tiktoken-0.12.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:04f0e6a985d95913cabc96a741c5ffec525a2c72e9df086ff17ebe35985c800e", size = 1194451, upload-time = "2025-10-06T20:22:15.545Z" }, + { url = "https://files.pythonhosted.org/packages/78/a7/f8ead382fce0243cb625c4f266e66c27f65ae65ee9e77f59ea1653b6d730/tiktoken-0.12.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:0ee8f9ae00c41770b5f9b0bb1235474768884ae157de3beb5439ca0fd70f3e25", size = 1253794, upload-time = "2025-10-06T20:22:16.624Z" }, + { url = "https://files.pythonhosted.org/packages/93/e0/6cc82a562bc6365785a3ff0af27a2a092d57c47d7a81d9e2295d8c36f011/tiktoken-0.12.0-cp313-cp313t-win_amd64.whl", hash = "sha256:dc2dd125a62cb2b3d858484d6c614d136b5b848976794edfb63688d539b8b93f", size = 878777, upload-time = "2025-10-06T20:22:18.036Z" }, + { url = "https://files.pythonhosted.org/packages/72/05/3abc1db5d2c9aadc4d2c76fa5640134e475e58d9fbb82b5c535dc0de9b01/tiktoken-0.12.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:a90388128df3b3abeb2bfd1895b0681412a8d7dc644142519e6f0a97c2111646", size = 1050188, upload-time = "2025-10-06T20:22:19.563Z" }, + { url = "https://files.pythonhosted.org/packages/e3/7b/50c2f060412202d6c95f32b20755c7a6273543b125c0985d6fa9465105af/tiktoken-0.12.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:da900aa0ad52247d8794e307d6446bd3cdea8e192769b56276695d34d2c9aa88", size = 993978, upload-time = "2025-10-06T20:22:20.702Z" }, + { url = "https://files.pythonhosted.org/packages/14/27/bf795595a2b897e271771cd31cb847d479073497344c637966bdf2853da1/tiktoken-0.12.0-cp314-cp314-manylinux_2_28_aarch64.whl", hash = "sha256:285ba9d73ea0d6171e7f9407039a290ca77efcdb026be7769dccc01d2c8d7fff", size = 1129271, upload-time = "2025-10-06T20:22:22.06Z" }, + { url = "https://files.pythonhosted.org/packages/f5/de/9341a6d7a8f1b448573bbf3425fa57669ac58258a667eb48a25dfe916d70/tiktoken-0.12.0-cp314-cp314-manylinux_2_28_x86_64.whl", hash = "sha256:d186a5c60c6a0213f04a7a802264083dea1bbde92a2d4c7069e1a56630aef830", size = 1151216, upload-time = "2025-10-06T20:22:23.085Z" }, + { url = "https://files.pythonhosted.org/packages/75/0d/881866647b8d1be4d67cb24e50d0c26f9f807f994aa1510cb9ba2fe5f612/tiktoken-0.12.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:604831189bd05480f2b885ecd2d1986dc7686f609de48208ebbbddeea071fc0b", size = 1194860, upload-time = "2025-10-06T20:22:24.602Z" }, + { url = "https://files.pythonhosted.org/packages/b3/1e/b651ec3059474dab649b8d5b69f5c65cd8fcd8918568c1935bd4136c9392/tiktoken-0.12.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:8f317e8530bb3a222547b85a58583238c8f74fd7a7408305f9f63246d1a0958b", size = 1254567, upload-time = "2025-10-06T20:22:25.671Z" }, + { url = "https://files.pythonhosted.org/packages/80/57/ce64fd16ac390fafde001268c364d559447ba09b509181b2808622420eec/tiktoken-0.12.0-cp314-cp314-win_amd64.whl", hash = "sha256:399c3dd672a6406719d84442299a490420b458c44d3ae65516302a99675888f3", size = 921067, upload-time = "2025-10-06T20:22:26.753Z" }, + { url = "https://files.pythonhosted.org/packages/ac/a4/72eed53e8976a099539cdd5eb36f241987212c29629d0a52c305173e0a68/tiktoken-0.12.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:c2c714c72bc00a38ca969dae79e8266ddec999c7ceccd603cc4f0d04ccd76365", size = 1050473, upload-time = "2025-10-06T20:22:27.775Z" }, + { url = "https://files.pythonhosted.org/packages/e6/d7/0110b8f54c008466b19672c615f2168896b83706a6611ba6e47313dbc6e9/tiktoken-0.12.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:cbb9a3ba275165a2cb0f9a83f5d7025afe6b9d0ab01a22b50f0e74fee2ad253e", size = 993855, upload-time = "2025-10-06T20:22:28.799Z" }, + { url = "https://files.pythonhosted.org/packages/5f/77/4f268c41a3957c418b084dd576ea2fad2e95da0d8e1ab705372892c2ca22/tiktoken-0.12.0-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:dfdfaa5ffff8993a3af94d1125870b1d27aed7cb97aa7eb8c1cefdbc87dbee63", size = 1129022, upload-time = "2025-10-06T20:22:29.981Z" }, + { url = "https://files.pythonhosted.org/packages/4e/2b/fc46c90fe5028bd094cd6ee25a7db321cb91d45dc87531e2bdbb26b4867a/tiktoken-0.12.0-cp314-cp314t-manylinux_2_28_x86_64.whl", hash = "sha256:584c3ad3d0c74f5269906eb8a659c8bfc6144a52895d9261cdaf90a0ae5f4de0", size = 1150736, upload-time = "2025-10-06T20:22:30.996Z" }, + { url = "https://files.pythonhosted.org/packages/28/c0/3c7a39ff68022ddfd7d93f3337ad90389a342f761c4d71de99a3ccc57857/tiktoken-0.12.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:54c891b416a0e36b8e2045b12b33dd66fb34a4fe7965565f1b482da50da3e86a", size = 1194908, upload-time = "2025-10-06T20:22:32.073Z" }, + { url = "https://files.pythonhosted.org/packages/ab/0d/c1ad6f4016a3968c048545f5d9b8ffebf577774b2ede3e2e352553b685fe/tiktoken-0.12.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:5edb8743b88d5be814b1a8a8854494719080c28faaa1ccbef02e87354fe71ef0", size = 1253706, upload-time = "2025-10-06T20:22:33.385Z" }, + { url = "https://files.pythonhosted.org/packages/af/df/c7891ef9d2712ad774777271d39fdef63941ffba0a9d59b7ad1fd2765e57/tiktoken-0.12.0-cp314-cp314t-win_amd64.whl", hash = "sha256:f61c0aea5565ac82e2ec50a05e02a6c44734e91b51c10510b084ea1b8e633a71", size = 920667, upload-time = "2025-10-06T20:22:34.444Z" }, +] + +[[package]] +name = "tinycss2" +version = "1.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "webencodings" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7a/fd/7a5ee21fd08ff70d3d33a5781c255cbe779659bd03278feb98b19ee550f4/tinycss2-1.4.0.tar.gz", hash = "sha256:10c0972f6fc0fbee87c3edb76549357415e94548c1ae10ebccdea16fb404a9b7", size = 87085, upload-time = "2024-10-24T14:58:29.895Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e6/34/ebdc18bae6aa14fbee1a08b63c015c72b64868ff7dae68808ab500c492e2/tinycss2-1.4.0-py3-none-any.whl", hash = "sha256:3a49cf47b7675da0b15d0c6e1df8df4ebd96e9394bb905a5775adb0d884c5289", size = 26610, upload-time = "2024-10-24T14:58:28.029Z" }, +] + +[[package]] +name = "tokenizers" +version = "0.22.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "huggingface-hub" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/73/6f/f80cfef4a312e1fb34baf7d85c72d4411afde10978d4657f8cdd811d3ccc/tokenizers-0.22.2.tar.gz", hash = "sha256:473b83b915e547aa366d1eee11806deaf419e17be16310ac0a14077f1e28f917", size = 372115, upload-time = "2026-01-05T10:45:15.988Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/92/97/5dbfabf04c7e348e655e907ed27913e03db0923abb5dfdd120d7b25630e1/tokenizers-0.22.2-cp39-abi3-macosx_10_12_x86_64.whl", hash = "sha256:544dd704ae7238755d790de45ba8da072e9af3eea688f698b137915ae959281c", size = 3100275, upload-time = "2026-01-05T10:41:02.158Z" }, + { url = "https://files.pythonhosted.org/packages/2e/47/174dca0502ef88b28f1c9e06b73ce33500eedfac7a7692108aec220464e7/tokenizers-0.22.2-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:1e418a55456beedca4621dbab65a318981467a2b188e982a23e117f115ce5001", size = 2981472, upload-time = "2026-01-05T10:41:00.276Z" }, + { url = "https://files.pythonhosted.org/packages/d6/84/7990e799f1309a8b87af6b948f31edaa12a3ed22d11b352eaf4f4b2e5753/tokenizers-0.22.2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2249487018adec45d6e3554c71d46eb39fa8ea67156c640f7513eb26f318cec7", size = 3290736, upload-time = "2026-01-05T10:40:32.165Z" }, + { url = "https://files.pythonhosted.org/packages/78/59/09d0d9ba94dcd5f4f1368d4858d24546b4bdc0231c2354aa31d6199f0399/tokenizers-0.22.2-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:25b85325d0815e86e0bac263506dd114578953b7b53d7de09a6485e4a160a7dd", size = 3168835, upload-time = "2026-01-05T10:40:38.847Z" }, + { url = "https://files.pythonhosted.org/packages/47/50/b3ebb4243e7160bda8d34b731e54dd8ab8b133e50775872e7a434e524c28/tokenizers-0.22.2-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bfb88f22a209ff7b40a576d5324bf8286b519d7358663db21d6246fb17eea2d5", size = 3521673, upload-time = "2026-01-05T10:40:56.614Z" }, + { url = "https://files.pythonhosted.org/packages/e0/fa/89f4cb9e08df770b57adb96f8cbb7e22695a4cb6c2bd5f0c4f0ebcf33b66/tokenizers-0.22.2-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1c774b1276f71e1ef716e5486f21e76333464f47bece56bbd554485982a9e03e", size = 3724818, upload-time = "2026-01-05T10:40:44.507Z" }, + { url = "https://files.pythonhosted.org/packages/64/04/ca2363f0bfbe3b3d36e95bf67e56a4c88c8e3362b658e616d1ac185d47f2/tokenizers-0.22.2-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:df6c4265b289083bf710dff49bc51ef252f9d5be33a45ee2bed151114a56207b", size = 3379195, upload-time = "2026-01-05T10:40:51.139Z" }, + { url = "https://files.pythonhosted.org/packages/2e/76/932be4b50ef6ccedf9d3c6639b056a967a86258c6d9200643f01269211ca/tokenizers-0.22.2-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:369cc9fc8cc10cb24143873a0d95438bb8ee257bb80c71989e3ee290e8d72c67", size = 3274982, upload-time = "2026-01-05T10:40:58.331Z" }, + { url = "https://files.pythonhosted.org/packages/1d/28/5f9f5a4cc211b69e89420980e483831bcc29dade307955cc9dc858a40f01/tokenizers-0.22.2-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:29c30b83d8dcd061078b05ae0cb94d3c710555fbb44861139f9f83dcca3dc3e4", size = 9478245, upload-time = "2026-01-05T10:41:04.053Z" }, + { url = "https://files.pythonhosted.org/packages/6c/fb/66e2da4704d6aadebf8cb39f1d6d1957df667ab24cff2326b77cda0dcb85/tokenizers-0.22.2-cp39-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:37ae80a28c1d3265bb1f22464c856bd23c02a05bb211e56d0c5301a435be6c1a", size = 9560069, upload-time = "2026-01-05T10:45:10.673Z" }, + { url = "https://files.pythonhosted.org/packages/16/04/fed398b05caa87ce9b1a1bb5166645e38196081b225059a6edaff6440fac/tokenizers-0.22.2-cp39-abi3-musllinux_1_2_i686.whl", hash = "sha256:791135ee325f2336f498590eb2f11dc5c295232f288e75c99a36c5dbce63088a", size = 9899263, upload-time = "2026-01-05T10:45:12.559Z" }, + { url = "https://files.pythonhosted.org/packages/05/a1/d62dfe7376beaaf1394917e0f8e93ee5f67fea8fcf4107501db35996586b/tokenizers-0.22.2-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:38337540fbbddff8e999d59970f3c6f35a82de10053206a7562f1ea02d046fa5", size = 10033429, upload-time = "2026-01-05T10:45:14.333Z" }, + { url = "https://files.pythonhosted.org/packages/fd/18/a545c4ea42af3df6effd7d13d250ba77a0a86fb20393143bbb9a92e434d4/tokenizers-0.22.2-cp39-abi3-win32.whl", hash = "sha256:a6bf3f88c554a2b653af81f3204491c818ae2ac6fbc09e76ef4773351292bc92", size = 2502363, upload-time = "2026-01-05T10:45:20.593Z" }, + { url = "https://files.pythonhosted.org/packages/65/71/0670843133a43d43070abeb1949abfdef12a86d490bea9cd9e18e37c5ff7/tokenizers-0.22.2-cp39-abi3-win_amd64.whl", hash = "sha256:c9ea31edff2968b44a88f97d784c2f16dc0729b8b143ed004699ebca91f05c48", size = 2747786, upload-time = "2026-01-05T10:45:18.411Z" }, + { url = "https://files.pythonhosted.org/packages/72/f4/0de46cfa12cdcbcd464cc59fde36912af405696f687e53a091fb432f694c/tokenizers-0.22.2-cp39-abi3-win_arm64.whl", hash = "sha256:9ce725d22864a1e965217204946f830c37876eee3b2ba6fc6255e8e903d5fcbc", size = 2612133, upload-time = "2026-01-05T10:45:17.232Z" }, +] + +[[package]] +name = "torch" +version = "2.10.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cuda-bindings", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "filelock" }, + { name = "fsspec" }, + { name = "jinja2" }, + { name = "networkx" }, + { name = "nvidia-cublas-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cuda-cupti-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cuda-nvrtc-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cuda-runtime-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cudnn-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cufft-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cufile-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-curand-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cusolver-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cusparse-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cusparselt-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-nccl-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-nvjitlink-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-nvshmem-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-nvtx-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "setuptools", marker = "python_full_version >= '3.12'" }, + { name = "sympy" }, + { name = "triton", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "typing-extensions" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/0f/8b/4b61d6e13f7108f36910df9ab4b58fd389cc2520d54d81b88660804aad99/torch-2.10.0-2-cp311-none-macosx_11_0_arm64.whl", hash = "sha256:418997cb02d0a0f1497cf6a09f63166f9f5df9f3e16c8a716ab76a72127c714f", size = 79423467, upload-time = "2026-02-10T21:44:48.711Z" }, + { url = "https://files.pythonhosted.org/packages/d3/54/a2ba279afcca44bbd320d4e73675b282fcee3d81400ea1b53934efca6462/torch-2.10.0-2-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:13ec4add8c3faaed8d13e0574f5cd4a323c11655546f91fbe6afa77b57423574", size = 79498202, upload-time = "2026-02-10T21:44:52.603Z" }, + { url = "https://files.pythonhosted.org/packages/ec/23/2c9fe0c9c27f7f6cb865abcea8a4568f29f00acaeadfc6a37f6801f84cb4/torch-2.10.0-2-cp313-none-macosx_11_0_arm64.whl", hash = "sha256:e521c9f030a3774ed770a9c011751fb47c4d12029a3d6522116e48431f2ff89e", size = 79498254, upload-time = "2026-02-10T21:44:44.095Z" }, + { url = "https://files.pythonhosted.org/packages/78/89/f5554b13ebd71e05c0b002f95148033e730d3f7067f67423026cc9c69410/torch-2.10.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:3282d9febd1e4e476630a099692b44fdc214ee9bf8ee5377732d9d9dfe5712e4", size = 145992610, upload-time = "2026-01-21T16:25:26.327Z" }, + { url = "https://files.pythonhosted.org/packages/ae/30/a3a2120621bf9c17779b169fc17e3dc29b230c29d0f8222f499f5e159aa8/torch-2.10.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:a2f9edd8dbc99f62bc4dfb78af7bf89499bca3d753423ac1b4e06592e467b763", size = 915607863, upload-time = "2026-01-21T16:25:06.696Z" }, + { url = "https://files.pythonhosted.org/packages/6f/3d/c87b33c5f260a2a8ad68da7147e105f05868c281c63d65ed85aa4da98c66/torch-2.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:29b7009dba4b7a1c960260fc8ac85022c784250af43af9fb0ebafc9883782ebd", size = 113723116, upload-time = "2026-01-21T16:25:21.916Z" }, + { url = "https://files.pythonhosted.org/packages/61/d8/15b9d9d3a6b0c01b883787bd056acbe5cc321090d4b216d3ea89a8fcfdf3/torch-2.10.0-cp311-none-macosx_11_0_arm64.whl", hash = "sha256:b7bd80f3477b830dd166c707c5b0b82a898e7b16f59a7d9d42778dd058272e8b", size = 79423461, upload-time = "2026-01-21T16:24:50.266Z" }, + { url = "https://files.pythonhosted.org/packages/cc/af/758e242e9102e9988969b5e621d41f36b8f258bb4a099109b7a4b4b50ea4/torch-2.10.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:5fd4117d89ffd47e3dcc71e71a22efac24828ad781c7e46aaaf56bf7f2796acf", size = 145996088, upload-time = "2026-01-21T16:24:44.171Z" }, + { url = "https://files.pythonhosted.org/packages/23/8e/3c74db5e53bff7ed9e34c8123e6a8bfef718b2450c35eefab85bb4a7e270/torch-2.10.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:787124e7db3b379d4f1ed54dd12ae7c741c16a4d29b49c0226a89bea50923ffb", size = 915711952, upload-time = "2026-01-21T16:23:53.503Z" }, + { url = "https://files.pythonhosted.org/packages/6e/01/624c4324ca01f66ae4c7cd1b74eb16fb52596dce66dbe51eff95ef9e7a4c/torch-2.10.0-cp312-cp312-win_amd64.whl", hash = "sha256:2c66c61f44c5f903046cc696d088e21062644cbe541c7f1c4eaae88b2ad23547", size = 113757972, upload-time = "2026-01-21T16:24:39.516Z" }, + { url = "https://files.pythonhosted.org/packages/c9/5c/dee910b87c4d5c0fcb41b50839ae04df87c1cfc663cf1b5fca7ea565eeaa/torch-2.10.0-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:6d3707a61863d1c4d6ebba7be4ca320f42b869ee657e9b2c21c736bf17000294", size = 79498198, upload-time = "2026-01-21T16:24:34.704Z" }, + { url = "https://files.pythonhosted.org/packages/c9/6f/f2e91e34e3fcba2e3fc8d8f74e7d6c22e74e480bbd1db7bc8900fdf3e95c/torch-2.10.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:5c4d217b14741e40776dd7074d9006fd28b8a97ef5654db959d8635b2fe5f29b", size = 146004247, upload-time = "2026-01-21T16:24:29.335Z" }, + { url = "https://files.pythonhosted.org/packages/98/fb/5160261aeb5e1ee12ee95fe599d0541f7c976c3701d607d8fc29e623229f/torch-2.10.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:6b71486353fce0f9714ca0c9ef1c850a2ae766b409808acd58e9678a3edb7738", size = 915716445, upload-time = "2026-01-21T16:22:45.353Z" }, + { url = "https://files.pythonhosted.org/packages/6a/16/502fb1b41e6d868e8deb5b0e3ae926bbb36dab8ceb0d1b769b266ad7b0c3/torch-2.10.0-cp313-cp313-win_amd64.whl", hash = "sha256:c2ee399c644dc92ef7bc0d4f7e74b5360c37cdbe7c5ba11318dda49ffac2bc57", size = 113757050, upload-time = "2026-01-21T16:24:19.204Z" }, + { url = "https://files.pythonhosted.org/packages/1a/0b/39929b148f4824bc3ad6f9f72a29d4ad865bcf7ebfc2fa67584773e083d2/torch-2.10.0-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:3202429f58309b9fa96a614885eace4b7995729f44beb54d3e4a47773649d382", size = 79851305, upload-time = "2026-01-21T16:24:09.209Z" }, + { url = "https://files.pythonhosted.org/packages/d8/14/21fbce63bc452381ba5f74a2c0a959fdf5ad5803ccc0c654e752e0dbe91a/torch-2.10.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:aae1b29cd68e50a9397f5ee897b9c24742e9e306f88a807a27d617f07adb3bd8", size = 146005472, upload-time = "2026-01-21T16:22:29.022Z" }, + { url = "https://files.pythonhosted.org/packages/54/fd/b207d1c525cb570ef47f3e9f836b154685011fce11a2f444ba8a4084d042/torch-2.10.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:6021db85958db2f07ec94e1bc77212721ba4920c12a18dc552d2ae36a3eb163f", size = 915612644, upload-time = "2026-01-21T16:21:47.019Z" }, + { url = "https://files.pythonhosted.org/packages/36/53/0197f868c75f1050b199fe58f9bf3bf3aecac9b4e85cc9c964383d745403/torch-2.10.0-cp313-cp313t-win_amd64.whl", hash = "sha256:ff43db38af76fda183156153983c9a096fc4c78d0cd1e07b14a2314c7f01c2c8", size = 113997015, upload-time = "2026-01-21T16:23:00.767Z" }, + { url = "https://files.pythonhosted.org/packages/0e/13/e76b4d9c160e89fff48bf16b449ea324bda84745d2ab30294c37c2434c0d/torch-2.10.0-cp313-none-macosx_11_0_arm64.whl", hash = "sha256:cdf2a523d699b70d613243211ecaac14fe9c5df8a0b0a9c02add60fb2a413e0f", size = 79498248, upload-time = "2026-01-21T16:23:09.315Z" }, + { url = "https://files.pythonhosted.org/packages/4f/93/716b5ac0155f1be70ed81bacc21269c3ece8dba0c249b9994094110bfc51/torch-2.10.0-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:bf0d9ff448b0218e0433aeb198805192346c4fd659c852370d5cc245f602a06a", size = 79464992, upload-time = "2026-01-21T16:23:05.162Z" }, + { url = "https://files.pythonhosted.org/packages/69/2b/51e663ff190c9d16d4a8271203b71bc73a16aa7619b9f271a69b9d4a936b/torch-2.10.0-cp314-cp314-manylinux_2_28_aarch64.whl", hash = "sha256:233aed0659a2503b831d8a67e9da66a62c996204c0bba4f4c442ccc0c68a3f60", size = 146018567, upload-time = "2026-01-21T16:22:23.393Z" }, + { url = "https://files.pythonhosted.org/packages/5e/cd/4b95ef7f293b927c283db0b136c42be91c8ec6845c44de0238c8c23bdc80/torch-2.10.0-cp314-cp314-manylinux_2_28_x86_64.whl", hash = "sha256:682497e16bdfa6efeec8cde66531bc8d1fbbbb4d8788ec6173c089ed3cc2bfe5", size = 915721646, upload-time = "2026-01-21T16:21:16.983Z" }, + { url = "https://files.pythonhosted.org/packages/56/97/078a007208f8056d88ae43198833469e61a0a355abc0b070edd2c085eb9a/torch-2.10.0-cp314-cp314-win_amd64.whl", hash = "sha256:6528f13d2a8593a1a412ea07a99812495bec07e9224c28b2a25c0a30c7da025c", size = 113752373, upload-time = "2026-01-21T16:22:13.471Z" }, + { url = "https://files.pythonhosted.org/packages/d8/94/71994e7d0d5238393df9732fdab607e37e2b56d26a746cb59fdb415f8966/torch-2.10.0-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:f5ab4ba32383061be0fb74bda772d470140a12c1c3b58a0cfbf3dae94d164c28", size = 79850324, upload-time = "2026-01-21T16:22:09.494Z" }, + { url = "https://files.pythonhosted.org/packages/e2/65/1a05346b418ea8ccd10360eef4b3e0ce688fba544e76edec26913a8d0ee0/torch-2.10.0-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:716b01a176c2a5659c98f6b01bf868244abdd896526f1c692712ab36dbaf9b63", size = 146006482, upload-time = "2026-01-21T16:22:18.42Z" }, + { url = "https://files.pythonhosted.org/packages/1d/b9/5f6f9d9e859fc3235f60578fa64f52c9c6e9b4327f0fe0defb6de5c0de31/torch-2.10.0-cp314-cp314t-manylinux_2_28_x86_64.whl", hash = "sha256:d8f5912ba938233f86361e891789595ff35ca4b4e2ac8fe3670895e5976731d6", size = 915613050, upload-time = "2026-01-21T16:20:49.035Z" }, + { url = "https://files.pythonhosted.org/packages/66/4d/35352043ee0eaffdeff154fad67cd4a31dbed7ff8e3be1cc4549717d6d51/torch-2.10.0-cp314-cp314t-win_amd64.whl", hash = "sha256:71283a373f0ee2c89e0f0d5f446039bdabe8dbc3c9ccf35f0f784908b0acd185", size = 113995816, upload-time = "2026-01-21T16:22:05.312Z" }, +] + +[[package]] +name = "tornado" +version = "6.5.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/37/1d/0a336abf618272d53f62ebe274f712e213f5a03c0b2339575430b8362ef2/tornado-6.5.4.tar.gz", hash = "sha256:a22fa9047405d03260b483980635f0b041989d8bcc9a313f8fe18b411d84b1d7", size = 513632, upload-time = "2025-12-15T19:21:03.836Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ab/a9/e94a9d5224107d7ce3cc1fab8d5dc97f5ea351ccc6322ee4fb661da94e35/tornado-6.5.4-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:d6241c1a16b1c9e4cc28148b1cda97dd1c6cb4fb7068ac1bedc610768dff0ba9", size = 443909, upload-time = "2025-12-15T19:20:48.382Z" }, + { url = "https://files.pythonhosted.org/packages/db/7e/f7b8d8c4453f305a51f80dbb49014257bb7d28ccb4bbb8dd328ea995ecad/tornado-6.5.4-cp39-abi3-macosx_10_9_x86_64.whl", hash = "sha256:2d50f63dda1d2cac3ae1fa23d254e16b5e38153758470e9956cbc3d813d40843", size = 442163, upload-time = "2025-12-15T19:20:49.791Z" }, + { url = "https://files.pythonhosted.org/packages/ba/b5/206f82d51e1bfa940ba366a8d2f83904b15942c45a78dd978b599870ab44/tornado-6.5.4-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d1cf66105dc6acb5af613c054955b8137e34a03698aa53272dbda4afe252be17", size = 445746, upload-time = "2025-12-15T19:20:51.491Z" }, + { url = "https://files.pythonhosted.org/packages/8e/9d/1a3338e0bd30ada6ad4356c13a0a6c35fbc859063fa7eddb309183364ac1/tornado-6.5.4-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:50ff0a58b0dc97939d29da29cd624da010e7f804746621c78d14b80238669335", size = 445083, upload-time = "2025-12-15T19:20:52.778Z" }, + { url = "https://files.pythonhosted.org/packages/50/d4/e51d52047e7eb9a582da59f32125d17c0482d065afd5d3bc435ff2120dc5/tornado-6.5.4-cp39-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e5fb5e04efa54cf0baabdd10061eb4148e0be137166146fff835745f59ab9f7f", size = 445315, upload-time = "2025-12-15T19:20:53.996Z" }, + { url = "https://files.pythonhosted.org/packages/27/07/2273972f69ca63dbc139694a3fc4684edec3ea3f9efabf77ed32483b875c/tornado-6.5.4-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:9c86b1643b33a4cd415f8d0fe53045f913bf07b4a3ef646b735a6a86047dda84", size = 446003, upload-time = "2025-12-15T19:20:56.101Z" }, + { url = "https://files.pythonhosted.org/packages/d1/83/41c52e47502bf7260044413b6770d1a48dda2f0246f95ee1384a3cd9c44a/tornado-6.5.4-cp39-abi3-musllinux_1_2_i686.whl", hash = "sha256:6eb82872335a53dd063a4f10917b3efd28270b56a33db69009606a0312660a6f", size = 445412, upload-time = "2025-12-15T19:20:57.398Z" }, + { url = "https://files.pythonhosted.org/packages/10/c7/bc96917f06cbee182d44735d4ecde9c432e25b84f4c2086143013e7b9e52/tornado-6.5.4-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:6076d5dda368c9328ff41ab5d9dd3608e695e8225d1cd0fd1e006f05da3635a8", size = 445392, upload-time = "2025-12-15T19:20:58.692Z" }, + { url = "https://files.pythonhosted.org/packages/0c/1a/d7592328d037d36f2d2462f4bc1fbb383eec9278bc786c1b111cbbd44cfa/tornado-6.5.4-cp39-abi3-win32.whl", hash = "sha256:1768110f2411d5cd281bac0a090f707223ce77fd110424361092859e089b38d1", size = 446481, upload-time = "2025-12-15T19:21:00.008Z" }, + { url = "https://files.pythonhosted.org/packages/d6/6d/c69be695a0a64fd37a97db12355a035a6d90f79067a3cf936ec2b1dc38cd/tornado-6.5.4-cp39-abi3-win_amd64.whl", hash = "sha256:fa07d31e0cd85c60713f2b995da613588aa03e1303d75705dca6af8babc18ddc", size = 446886, upload-time = "2025-12-15T19:21:01.287Z" }, + { url = "https://files.pythonhosted.org/packages/50/49/8dc3fd90902f70084bd2cd059d576ddb4f8bb44c2c7c0e33a11422acb17e/tornado-6.5.4-cp39-abi3-win_arm64.whl", hash = "sha256:053e6e16701eb6cbe641f308f4c1a9541f91b6261991160391bfc342e8a551a1", size = 445910, upload-time = "2025-12-15T19:21:02.571Z" }, +] + [[package]] name = "tqdm" version = "4.67.3" @@ -1801,6 +5264,197 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/16/e1/3079a9ff9b8e11b846c6ac5c8b5bfb7ff225eee721825310c91b3b50304f/tqdm-4.67.3-py3-none-any.whl", hash = "sha256:ee1e4c0e59148062281c49d80b25b67771a127c85fc9676d3be5f243206826bf", size = 78374, upload-time = "2026-02-03T17:35:50.982Z" }, ] +[[package]] +name = "traitlets" +version = "5.14.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/eb/79/72064e6a701c2183016abbbfedaba506d81e30e232a68c9f0d6f6fcd1574/traitlets-5.14.3.tar.gz", hash = "sha256:9ed0579d3502c94b4b3732ac120375cda96f923114522847de4b3bb98b96b6b7", size = 161621, upload-time = "2024-04-19T11:11:49.746Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl", hash = "sha256:b74e89e397b1ed28cc831db7aea759ba6640cb3de13090ca145426688ff1ac4f", size = 85359, upload-time = "2024-04-19T11:11:46.763Z" }, +] + +[[package]] +name = "transformers" +version = "4.57.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock" }, + { name = "huggingface-hub" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pyyaml" }, + { name = "regex" }, + { name = "requests" }, + { name = "safetensors" }, + { name = "tokenizers" }, + { name = "tqdm" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c4/35/67252acc1b929dc88b6602e8c4a982e64f31e733b804c14bc24b47da35e6/transformers-4.57.6.tar.gz", hash = "sha256:55e44126ece9dc0a291521b7e5492b572e6ef2766338a610b9ab5afbb70689d3", size = 10134912, upload-time = "2026-01-16T10:38:39.284Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/03/b8/e484ef633af3887baeeb4b6ad12743363af7cce68ae51e938e00aaa0529d/transformers-4.57.6-py3-none-any.whl", hash = "sha256:4c9e9de11333ddfe5114bc872c9f370509198acf0b87a832a0ab9458e2bd0550", size = 11993498, upload-time = "2026-01-16T10:38:31.289Z" }, +] + +[[package]] +name = "tree-sitter" +version = "0.25.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/66/7c/0350cfc47faadc0d3cf7d8237a4e34032b3014ddf4a12ded9933e1648b55/tree-sitter-0.25.2.tar.gz", hash = "sha256:fe43c158555da46723b28b52e058ad444195afd1db3ca7720c59a254544e9c20", size = 177961, upload-time = "2025-09-25T17:37:59.751Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7c/22/88a1e00b906d26fa8a075dd19c6c3116997cb884bf1b3c023deb065a344d/tree_sitter-0.25.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b8ca72d841215b6573ed0655b3a5cd1133f9b69a6fa561aecad40dca9029d75b", size = 146752, upload-time = "2025-09-25T17:37:24.775Z" }, + { url = "https://files.pythonhosted.org/packages/57/1c/22cc14f3910017b7a76d7358df5cd315a84fe0c7f6f7b443b49db2e2790d/tree_sitter-0.25.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:cc0351cfe5022cec5a77645f647f92a936b38850346ed3f6d6babfbeeeca4d26", size = 137765, upload-time = "2025-09-25T17:37:26.103Z" }, + { url = "https://files.pythonhosted.org/packages/1c/0c/d0de46ded7d5b34631e0f630d9866dab22d3183195bf0f3b81de406d6622/tree_sitter-0.25.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1799609636c0193e16c38f366bda5af15b1ce476df79ddaae7dd274df9e44266", size = 604643, upload-time = "2025-09-25T17:37:27.398Z" }, + { url = "https://files.pythonhosted.org/packages/34/38/b735a58c1c2f60a168a678ca27b4c1a9df725d0bf2d1a8a1c571c033111e/tree_sitter-0.25.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:3e65ae456ad0d210ee71a89ee112ac7e72e6c2e5aac1b95846ecc7afa68a194c", size = 632229, upload-time = "2025-09-25T17:37:28.463Z" }, + { url = "https://files.pythonhosted.org/packages/32/f6/cda1e1e6cbff5e28d8433578e2556d7ba0b0209d95a796128155b97e7693/tree_sitter-0.25.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:49ee3c348caa459244ec437ccc7ff3831f35977d143f65311572b8ba0a5f265f", size = 629861, upload-time = "2025-09-25T17:37:29.593Z" }, + { url = "https://files.pythonhosted.org/packages/f9/19/427e5943b276a0dd74c2a1f1d7a7393443f13d1ee47dedb3f8127903c080/tree_sitter-0.25.2-cp311-cp311-win_amd64.whl", hash = "sha256:56ac6602c7d09c2c507c55e58dc7026b8988e0475bd0002f8a386cce5e8e8adc", size = 127304, upload-time = "2025-09-25T17:37:30.549Z" }, + { url = "https://files.pythonhosted.org/packages/eb/d9/eef856dc15f784d85d1397a17f3ee0f82df7778efce9e1961203abfe376a/tree_sitter-0.25.2-cp311-cp311-win_arm64.whl", hash = "sha256:b3d11a3a3ac89bb8a2543d75597f905a9926f9c806f40fcca8242922d1cc6ad5", size = 113990, upload-time = "2025-09-25T17:37:31.852Z" }, + { url = "https://files.pythonhosted.org/packages/3c/9e/20c2a00a862f1c2897a436b17edb774e831b22218083b459d0d081c9db33/tree_sitter-0.25.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:ddabfff809ffc983fc9963455ba1cecc90295803e06e140a4c83e94c1fa3d960", size = 146941, upload-time = "2025-09-25T17:37:34.813Z" }, + { url = "https://files.pythonhosted.org/packages/ef/04/8512e2062e652a1016e840ce36ba1cc33258b0dcc4e500d8089b4054afec/tree_sitter-0.25.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c0c0ab5f94938a23fe81928a21cc0fac44143133ccc4eb7eeb1b92f84748331c", size = 137699, upload-time = "2025-09-25T17:37:36.349Z" }, + { url = "https://files.pythonhosted.org/packages/47/8a/d48c0414db19307b0fb3bb10d76a3a0cbe275bb293f145ee7fba2abd668e/tree_sitter-0.25.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:dd12d80d91d4114ca097626eb82714618dcdfacd6a5e0955216c6485c350ef99", size = 607125, upload-time = "2025-09-25T17:37:37.725Z" }, + { url = "https://files.pythonhosted.org/packages/39/d1/b95f545e9fc5001b8a78636ef942a4e4e536580caa6a99e73dd0a02e87aa/tree_sitter-0.25.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b43a9e4c89d4d0839de27cd4d6902d33396de700e9ff4c5ab7631f277a85ead9", size = 635418, upload-time = "2025-09-25T17:37:38.922Z" }, + { url = "https://files.pythonhosted.org/packages/de/4d/b734bde3fb6f3513a010fa91f1f2875442cdc0382d6a949005cd84563d8f/tree_sitter-0.25.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fbb1706407c0e451c4f8cc016fec27d72d4b211fdd3173320b1ada7a6c74c3ac", size = 631250, upload-time = "2025-09-25T17:37:40.039Z" }, + { url = "https://files.pythonhosted.org/packages/46/f2/5f654994f36d10c64d50a192239599fcae46677491c8dd53e7579c35a3e3/tree_sitter-0.25.2-cp312-cp312-win_amd64.whl", hash = "sha256:6d0302550bbe4620a5dc7649517c4409d74ef18558276ce758419cf09e578897", size = 127156, upload-time = "2025-09-25T17:37:41.132Z" }, + { url = "https://files.pythonhosted.org/packages/67/23/148c468d410efcf0a9535272d81c258d840c27b34781d625f1f627e2e27d/tree_sitter-0.25.2-cp312-cp312-win_arm64.whl", hash = "sha256:0c8b6682cac77e37cfe5cf7ec388844957f48b7bd8d6321d0ca2d852994e10d5", size = 113984, upload-time = "2025-09-25T17:37:42.074Z" }, + { url = "https://files.pythonhosted.org/packages/8c/67/67492014ce32729b63d7ef318a19f9cfedd855d677de5773476caf771e96/tree_sitter-0.25.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0628671f0de69bb279558ef6b640bcfc97864fe0026d840f872728a86cd6b6cd", size = 146926, upload-time = "2025-09-25T17:37:43.041Z" }, + { url = "https://files.pythonhosted.org/packages/4e/9c/a278b15e6b263e86c5e301c82a60923fa7c59d44f78d7a110a89a413e640/tree_sitter-0.25.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f5ddcd3e291a749b62521f71fc953f66f5fd9743973fd6dd962b092773569601", size = 137712, upload-time = "2025-09-25T17:37:44.039Z" }, + { url = "https://files.pythonhosted.org/packages/54/9a/423bba15d2bf6473ba67846ba5244b988cd97a4b1ea2b146822162256794/tree_sitter-0.25.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bd88fbb0f6c3a0f28f0a68d72df88e9755cf5215bae146f5a1bdc8362b772053", size = 607873, upload-time = "2025-09-25T17:37:45.477Z" }, + { url = "https://files.pythonhosted.org/packages/ed/4c/b430d2cb43f8badfb3a3fa9d6cd7c8247698187b5674008c9d67b2a90c8e/tree_sitter-0.25.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b878e296e63661c8e124177cc3084b041ba3f5936b43076d57c487822426f614", size = 636313, upload-time = "2025-09-25T17:37:46.68Z" }, + { url = "https://files.pythonhosted.org/packages/9d/27/5f97098dbba807331d666a0997662e82d066e84b17d92efab575d283822f/tree_sitter-0.25.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:d77605e0d353ba3fe5627e5490f0fbfe44141bafa4478d88ef7954a61a848dae", size = 631370, upload-time = "2025-09-25T17:37:47.993Z" }, + { url = "https://files.pythonhosted.org/packages/d4/3c/87caaed663fabc35e18dc704cd0e9800a0ee2f22bd18b9cbe7c10799895d/tree_sitter-0.25.2-cp313-cp313-win_amd64.whl", hash = "sha256:463c032bd02052d934daa5f45d183e0521ceb783c2548501cf034b0beba92c9b", size = 127157, upload-time = "2025-09-25T17:37:48.967Z" }, + { url = "https://files.pythonhosted.org/packages/d5/23/f8467b408b7988aff4ea40946a4bd1a2c1a73d17156a9d039bbaff1e2ceb/tree_sitter-0.25.2-cp313-cp313-win_arm64.whl", hash = "sha256:b3f63a1796886249bd22c559a5944d64d05d43f2be72961624278eff0dcc5cb8", size = 113975, upload-time = "2025-09-25T17:37:49.922Z" }, + { url = "https://files.pythonhosted.org/packages/07/e3/d9526ba71dfbbe4eba5e51d89432b4b333a49a1e70712aa5590cd22fc74f/tree_sitter-0.25.2-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:65d3c931013ea798b502782acab986bbf47ba2c452610ab0776cf4a8ef150fc0", size = 146776, upload-time = "2025-09-25T17:37:50.898Z" }, + { url = "https://files.pythonhosted.org/packages/42/97/4bd4ad97f85a23011dd8a535534bb1035c4e0bac1234d58f438e15cff51f/tree_sitter-0.25.2-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:bda059af9d621918efb813b22fb06b3fe00c3e94079c6143fcb2c565eb44cb87", size = 137732, upload-time = "2025-09-25T17:37:51.877Z" }, + { url = "https://files.pythonhosted.org/packages/b6/19/1e968aa0b1b567988ed522f836498a6a9529a74aab15f09dd9ac1e41f505/tree_sitter-0.25.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:eac4e8e4c7060c75f395feec46421eb61212cb73998dbe004b7384724f3682ab", size = 609456, upload-time = "2025-09-25T17:37:52.925Z" }, + { url = "https://files.pythonhosted.org/packages/48/b6/cf08f4f20f4c9094006ef8828555484e842fc468827ad6e56011ab668dbd/tree_sitter-0.25.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:260586381b23be33b6191a07cea3d44ecbd6c01aa4c6b027a0439145fcbc3358", size = 636772, upload-time = "2025-09-25T17:37:54.647Z" }, + { url = "https://files.pythonhosted.org/packages/57/e2/d42d55bf56360987c32bc7b16adb06744e425670b823fb8a5786a1cea991/tree_sitter-0.25.2-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:7d2ee1acbacebe50ba0f85fff1bc05e65d877958f00880f49f9b2af38dce1af0", size = 631522, upload-time = "2025-09-25T17:37:55.833Z" }, + { url = "https://files.pythonhosted.org/packages/03/87/af9604ebe275a9345d88c3ace0cf2a1341aa3f8ef49dd9fc11662132df8a/tree_sitter-0.25.2-cp314-cp314-win_amd64.whl", hash = "sha256:4973b718fcadfb04e59e746abfbb0288694159c6aeecd2add59320c03368c721", size = 130864, upload-time = "2025-09-25T17:37:57.453Z" }, + { url = "https://files.pythonhosted.org/packages/a6/6e/e64621037357acb83d912276ffd30a859ef117f9c680f2e3cb955f47c680/tree_sitter-0.25.2-cp314-cp314-win_arm64.whl", hash = "sha256:b8d4429954a3beb3e844e2872610d2a4800ba4eb42bb1990c6a4b1949b18459f", size = 117470, upload-time = "2025-09-25T17:37:58.431Z" }, +] + +[[package]] +name = "tree-sitter-c-sharp" +version = "0.23.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/22/85/a61c782afbb706a47d990eaee6977e7c2bd013771c5bf5c81c617684f286/tree_sitter_c_sharp-0.23.1.tar.gz", hash = "sha256:322e2cfd3a547a840375276b2aea3335fa6458aeac082f6c60fec3f745c967eb", size = 1317728, upload-time = "2024-11-11T05:25:32.535Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/58/04/f6c2df4c53a588ccd88d50851155945cff8cd887bd70c175e00aaade7edf/tree_sitter_c_sharp-0.23.1-cp39-abi3-macosx_10_9_x86_64.whl", hash = "sha256:2b612a6e5bd17bb7fa2aab4bb6fc1fba45c94f09cb034ab332e45603b86e32fd", size = 372235, upload-time = "2024-11-11T05:25:19.424Z" }, + { url = "https://files.pythonhosted.org/packages/99/10/1aa9486f1e28fc22810fa92cbdc54e1051e7f5536a5e5b5e9695f609b31e/tree_sitter_c_sharp-0.23.1-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:1a8b98f62bc53efcd4d971151950c9b9cd5cbe3bacdb0cd69fdccac63350d83e", size = 419046, upload-time = "2024-11-11T05:25:20.679Z" }, + { url = "https://files.pythonhosted.org/packages/0f/21/13df29f8fcb9ba9f209b7b413a4764b673dfd58989a0dd67e9c7e19e9c2e/tree_sitter_c_sharp-0.23.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:986e93d845a438ec3c4416401aa98e6a6f6631d644bbbc2e43fcb915c51d255d", size = 415999, upload-time = "2024-11-11T05:25:22.359Z" }, + { url = "https://files.pythonhosted.org/packages/ca/72/fc6846795bcdae2f8aa94cc8b1d1af33d634e08be63e294ff0d6794b1efc/tree_sitter_c_sharp-0.23.1-cp39-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8024e466b2f5611c6dc90321f232d8584893c7fb88b75e4a831992f877616d2", size = 402830, upload-time = "2024-11-11T05:25:24.198Z" }, + { url = "https://files.pythonhosted.org/packages/fe/3a/b6028c5890ce6653807d5fa88c72232c027c6ceb480dbeb3b186d60e5971/tree_sitter_c_sharp-0.23.1-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:7f9bf876866835492281d336b9e1f9626ab668737f74e914c31d285261507da7", size = 397880, upload-time = "2024-11-11T05:25:25.937Z" }, + { url = "https://files.pythonhosted.org/packages/47/d2/4facaa34b40f8104d8751746d0e1cd2ddf0beb9f1404b736b97f372bd1f3/tree_sitter_c_sharp-0.23.1-cp39-abi3-win_amd64.whl", hash = "sha256:ae9a9e859e8f44e2b07578d44f9a220d3fa25b688966708af6aa55d42abeebb3", size = 377562, upload-time = "2024-11-11T05:25:27.539Z" }, + { url = "https://files.pythonhosted.org/packages/d8/88/3cf6bd9959d94d1fec1e6a9c530c5f08ff4115a474f62aedb5fedb0f7241/tree_sitter_c_sharp-0.23.1-cp39-abi3-win_arm64.whl", hash = "sha256:c81548347a93347be4f48cb63ec7d60ef4b0efa91313330e69641e49aa5a08c5", size = 375157, upload-time = "2024-11-11T05:25:30.839Z" }, +] + +[[package]] +name = "tree-sitter-embedded-template" +version = "0.25.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/fd/a7/77729fefab8b1b5690cfc54328f2f629d1c076d16daf32c96ba39d3a3a3a/tree_sitter_embedded_template-0.25.0.tar.gz", hash = "sha256:7d72d5e8a1d1d501a7c90e841b51f1449a90cc240be050e4fb85c22dab991d50", size = 14114, upload-time = "2025-08-29T00:42:51.078Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1f/9d/3e3c8ee0c019d3bace728300a1ca807c03df39e66cc51e9a5e7c9d1e1909/tree_sitter_embedded_template-0.25.0-cp310-abi3-macosx_10_9_x86_64.whl", hash = "sha256:fa0d06467199aeb33fb3d6fa0665bf9b7d5a32621ffdaf37fd8249f8a8050649", size = 10266, upload-time = "2025-08-29T00:42:44.148Z" }, + { url = "https://files.pythonhosted.org/packages/e8/ab/6d4e43b736b2a895d13baea3791dc8ce7245bedf4677df9e7deb22e23a2a/tree_sitter_embedded_template-0.25.0-cp310-abi3-macosx_11_0_arm64.whl", hash = "sha256:fc7aacbc2985a5d7e7fe7334f44dffe24c38fb0a8295c4188a04cf21a3d64a73", size = 10650, upload-time = "2025-08-29T00:42:45.147Z" }, + { url = "https://files.pythonhosted.org/packages/9f/97/ea3d1ea4b320fe66e0468b9f6602966e544c9fe641882484f9105e50ee0c/tree_sitter_embedded_template-0.25.0-cp310-abi3-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:a7c88c3dd8b94b3c9efe8ae071ff6b1b936a27ac5f6e651845c3b9631fa4c1c2", size = 18268, upload-time = "2025-08-29T00:42:46.03Z" }, + { url = "https://files.pythonhosted.org/packages/64/40/0f42ca894a8f7c298cf336080046ccc14c10e8f4ea46d455f640193181b2/tree_sitter_embedded_template-0.25.0-cp310-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:025f7ca84218dcd8455efc901bdbcc2689fb694f3a636c0448e322a23d4bc96b", size = 19068, upload-time = "2025-08-29T00:42:46.699Z" }, + { url = "https://files.pythonhosted.org/packages/d0/2a/0b720bcae7c2dd0a44889c09e800a2f8eb08c496dede9f2b97683506c4c3/tree_sitter_embedded_template-0.25.0-cp310-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:b5dc1aef6ffa3fae621fe037d85dd98948b597afba20df29d779c426be813ee5", size = 18518, upload-time = "2025-08-29T00:42:47.694Z" }, + { url = "https://files.pythonhosted.org/packages/14/8a/d745071afa5e8bdf5b381cf84c4dc6be6c79dee6af8e0ff07476c3d8e4aa/tree_sitter_embedded_template-0.25.0-cp310-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:d0a35cfe634c44981a516243bc039874580e02a2990669313730187ce83a5bc6", size = 18267, upload-time = "2025-08-29T00:42:48.635Z" }, + { url = "https://files.pythonhosted.org/packages/5d/74/728355e594fca140f793f234fdfec195366b6956b35754d00ea97ca18b21/tree_sitter_embedded_template-0.25.0-cp310-abi3-win_amd64.whl", hash = "sha256:3e05a4ac013d54505e75ae48e1a0e9db9aab19949fe15d9f4c7345b11a84a069", size = 13049, upload-time = "2025-08-29T00:42:49.589Z" }, + { url = "https://files.pythonhosted.org/packages/d8/de/afac475e694d0e626b0808f3c86339c349cd15c5163a6a16a53cc11cf892/tree_sitter_embedded_template-0.25.0-cp310-abi3-win_arm64.whl", hash = "sha256:2751d402179ac0e83f2065b249d8fe6df0718153f1636bcb6a02bde3e5730db9", size = 11978, upload-time = "2025-08-29T00:42:50.226Z" }, +] + +[[package]] +name = "tree-sitter-language-pack" +version = "0.13.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "tree-sitter" }, + { name = "tree-sitter-c-sharp" }, + { name = "tree-sitter-embedded-template" }, + { name = "tree-sitter-yaml" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c1/83/d1bc738d6f253f415ee54a8afb99640f47028871436f53f2af637c392c4f/tree_sitter_language_pack-0.13.0.tar.gz", hash = "sha256:032034c5e27b1f6e00730b9e7c2dbc8203b4700d0c681fd019d6defcf61183ec", size = 51353370, upload-time = "2025-11-26T14:01:04.586Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e9/38/aec1f450ae5c4796de8345442f297fcf8912c7d2e00a66d3236ff0f825ed/tree_sitter_language_pack-0.13.0-cp310-abi3-macosx_10_15_universal2.whl", hash = "sha256:0e7eae812b40a2dc8a12eb2f5c55e130eb892706a0bee06215dd76affeb00d07", size = 32991857, upload-time = "2025-11-26T14:00:51.459Z" }, + { url = "https://files.pythonhosted.org/packages/90/09/11f51c59ede786dccddd2d348d5d24a1d99c54117d00f88b477f5fae4bd5/tree_sitter_language_pack-0.13.0-cp310-abi3-manylinux2014_aarch64.whl", hash = "sha256:7fdacf383418a845b20772118fcb53ad245f9c5d409bd07dae16acec65151756", size = 20092989, upload-time = "2025-11-26T14:00:54.202Z" }, + { url = "https://files.pythonhosted.org/packages/72/9d/644db031047ab1a70fc5cb6a79a4d4067080fac628375b2320752d2d7b58/tree_sitter_language_pack-0.13.0-cp310-abi3-manylinux2014_x86_64.whl", hash = "sha256:0d4f261fce387ae040dae7e4d1c1aca63d84c88320afcc0961c123bec0be8377", size = 19952029, upload-time = "2025-11-26T14:00:56.699Z" }, + { url = "https://files.pythonhosted.org/packages/48/92/5fd749bbb3f5e4538492c77de7bc51a5e479fec6209464ddc25be9153b13/tree_sitter_language_pack-0.13.0-cp310-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:78f369dc4d456c5b08d659939e662c2f9b9fba8c0ec5538a1f973e01edfcf04d", size = 19944614, upload-time = "2025-11-26T14:00:59.381Z" }, + { url = "https://files.pythonhosted.org/packages/97/59/2287f07723c063475d6657babed0d5569f4b499e393ab51354d529c3e7b5/tree_sitter_language_pack-0.13.0-cp310-abi3-win_amd64.whl", hash = "sha256:1cdbc88a03dacd47bec69e56cc20c48eace1fbb6f01371e89c3ee6a2e8f34db1", size = 16896852, upload-time = "2025-11-26T14:01:01.788Z" }, +] + +[[package]] +name = "tree-sitter-yaml" +version = "0.7.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/57/b6/941d356ac70c90b9d2927375259e3a4204f38f7499ec6e7e8a95b9664689/tree_sitter_yaml-0.7.2.tar.gz", hash = "sha256:756db4c09c9d9e97c81699e8f941cb8ce4e51104927f6090eefe638ee567d32c", size = 84882, upload-time = "2025-10-07T14:40:36.071Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/38/29/c0b8dbff302c49ff4284666ffb6f2f21145006843bb4c3a9a85d0ec0b7ae/tree_sitter_yaml-0.7.2-cp310-abi3-macosx_10_9_x86_64.whl", hash = "sha256:7e269ddcfcab8edb14fbb1f1d34eed1e1e26888f78f94eedfe7cc98c60f8bc9f", size = 43898, upload-time = "2025-10-07T14:40:29.486Z" }, + { url = "https://files.pythonhosted.org/packages/18/0d/15a5add06b3932b5e4ce5f5e8e179197097decfe82a0ef000952c8b98216/tree_sitter_yaml-0.7.2-cp310-abi3-macosx_11_0_arm64.whl", hash = "sha256:0807b7966e23ddf7dddc4545216e28b5a58cdadedcecca86b8d8c74271a07870", size = 44691, upload-time = "2025-10-07T14:40:30.369Z" }, + { url = "https://files.pythonhosted.org/packages/72/92/c4b896c90d08deb8308fadbad2210fdcc4c66c44ab4292eac4e80acb4b61/tree_sitter_yaml-0.7.2-cp310-abi3-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:f1a5c60c98b6c4c037aae023569f020d0c489fad8dc26fdfd5510363c9c29a41", size = 91430, upload-time = "2025-10-07T14:40:31.16Z" }, + { url = "https://files.pythonhosted.org/packages/89/59/61f1fed31eb6d46ff080b8c0d53658cf29e10263f41ef5fe34768908037a/tree_sitter_yaml-0.7.2-cp310-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:88636d19d0654fd24f4f242eaaafa90f6f5ebdba8a62e4b32d251ed156c51a2a", size = 92428, upload-time = "2025-10-07T14:40:31.954Z" }, + { url = "https://files.pythonhosted.org/packages/e3/62/a33a04d19b7f9a0ded780b9c9fcc6279e37c5d00b89b00425bb807a22cc2/tree_sitter_yaml-0.7.2-cp310-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:1d2e8f0bb14aa4537320952d0f9607eef3021d5aada8383c34ebeece17db1e06", size = 90580, upload-time = "2025-10-07T14:40:33.037Z" }, + { url = "https://files.pythonhosted.org/packages/6c/e7/9525defa7b30792623f56b1fba9bbba361752348875b165b8975b87398fd/tree_sitter_yaml-0.7.2-cp310-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:74ca712c50fc9d7dbc68cb36b4a7811d6e67a5466b5a789f19bf8dd6084ef752", size = 90455, upload-time = "2025-10-07T14:40:33.778Z" }, + { url = "https://files.pythonhosted.org/packages/4a/d6/8d1e1ace03db3b02e64e91daf21d1347941d1bbecc606a5473a1a605250d/tree_sitter_yaml-0.7.2-cp310-abi3-win_amd64.whl", hash = "sha256:7587b5ca00fc4f9a548eff649697a3b395370b2304b399ceefa2087d8a6c9186", size = 45514, upload-time = "2025-10-07T14:40:34.562Z" }, + { url = "https://files.pythonhosted.org/packages/d8/c7/dcf3ea1c4f5da9b10353b9af4455d756c92d728a8f58f03c480d3ef0ead5/tree_sitter_yaml-0.7.2-cp310-abi3-win_arm64.whl", hash = "sha256:f63c227b18e7ce7587bce124578f0bbf1f890ac63d3e3cd027417574273642c4", size = 44065, upload-time = "2025-10-07T14:40:35.337Z" }, +] + +[[package]] +name = "trio" +version = "0.33.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs" }, + { name = "cffi", marker = "implementation_name != 'pypy' and os_name == 'nt'" }, + { name = "idna" }, + { name = "outcome" }, + { name = "sniffio" }, + { name = "sortedcontainers" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/52/b6/c744031c6f89b18b3f5f4f7338603ab381d740a7f45938c4607b2302481f/trio-0.33.0.tar.gz", hash = "sha256:a29b92b73f09d4b48ed249acd91073281a7f1063f09caba5dc70465b5c7aa970", size = 605109, upload-time = "2026-02-14T18:40:55.386Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1c/93/dab25dc87ac48da0fe0f6419e07d0bfd98799bed4e05e7b9e0f85a1a4b4b/trio-0.33.0-py3-none-any.whl", hash = "sha256:3bd5d87f781d9b0192d592aef28691f8951d6c2e41b7e1da4c25cde6c180ae9b", size = 510294, upload-time = "2026-02-14T18:40:53.313Z" }, +] + +[[package]] +name = "trio-websocket" +version = "0.12.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "outcome" }, + { name = "trio" }, + { name = "wsproto" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d1/3c/8b4358e81f2f2cfe71b66a267f023a91db20a817b9425dd964873796980a/trio_websocket-0.12.2.tar.gz", hash = "sha256:22c72c436f3d1e264d0910a3951934798dcc5b00ae56fc4ee079d46c7cf20fae", size = 33549, upload-time = "2025-02-25T05:16:58.947Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c7/19/eb640a397bba49ba49ef9dbe2e7e5c04202ba045b6ce2ec36e9cadc51e04/trio_websocket-0.12.2-py3-none-any.whl", hash = "sha256:df605665f1db533f4a386c94525870851096a223adcb97f72a07e8b4beba45b6", size = 21221, upload-time = "2025-02-25T05:16:57.545Z" }, +] + +[[package]] +name = "triton" +version = "3.6.0" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e0/12/b05ba554d2c623bffa59922b94b0775673de251f468a9609bc9e45de95e9/triton-3.6.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e8e323d608e3a9bfcc2d9efcc90ceefb764a82b99dea12a86d643c72539ad5d3", size = 188214640, upload-time = "2026-01-20T16:00:35.869Z" }, + { url = "https://files.pythonhosted.org/packages/ab/a8/cdf8b3e4c98132f965f88c2313a4b493266832ad47fb52f23d14d4f86bb5/triton-3.6.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:74caf5e34b66d9f3a429af689c1c7128daba1d8208df60e81106b115c00d6fca", size = 188266850, upload-time = "2026-01-20T16:00:43.041Z" }, + { url = "https://files.pythonhosted.org/packages/f9/0b/37d991d8c130ce81a8728ae3c25b6e60935838e9be1b58791f5997b24a54/triton-3.6.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:10c7f76c6e72d2ef08df639e3d0d30729112f47a56b0c81672edc05ee5116ac9", size = 188289450, upload-time = "2026-01-20T16:00:49.136Z" }, + { url = "https://files.pythonhosted.org/packages/35/f8/9c66bfc55361ec6d0e4040a0337fb5924ceb23de4648b8a81ae9d33b2b38/triton-3.6.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d002e07d7180fd65e622134fbd980c9a3d4211fb85224b56a0a0efbd422ab72f", size = 188400296, upload-time = "2026-01-20T16:00:56.042Z" }, + { url = "https://files.pythonhosted.org/packages/df/3d/9e7eee57b37c80cec63322c0231bb6da3cfe535a91d7a4d64896fcb89357/triton-3.6.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a17a5d5985f0ac494ed8a8e54568f092f7057ef60e1b0fa09d3fd1512064e803", size = 188273063, upload-time = "2026-01-20T16:01:07.278Z" }, + { url = "https://files.pythonhosted.org/packages/f6/56/6113c23ff46c00aae423333eb58b3e60bdfe9179d542781955a5e1514cb3/triton-3.6.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:46bd1c1af4b6704e554cad2eeb3b0a6513a980d470ccfa63189737340c7746a7", size = 188397994, upload-time = "2026-01-20T16:01:14.236Z" }, +] + +[[package]] +name = "typer" +version = "0.24.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "annotated-doc" }, + { name = "click" }, + { name = "rich" }, + { name = "shellingham" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f5/24/cb09efec5cc954f7f9b930bf8279447d24618bb6758d4f6adf2574c41780/typer-0.24.1.tar.gz", hash = "sha256:e39b4732d65fbdcde189ae76cf7cd48aeae72919dea1fdfc16593be016256b45", size = 118613, upload-time = "2026-02-21T16:54:40.609Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4a/91/48db081e7a63bb37284f9fbcefda7c44c277b18b0e13fbc36ea2335b71e6/typer-0.24.1-py3-none-any.whl", hash = "sha256:112c1f0ce578bfb4cab9ffdabc68f031416ebcc216536611ba21f04e9aa84c9e", size = 56085, upload-time = "2026-02-21T16:54:41.616Z" }, +] + [[package]] name = "typing-extensions" version = "4.15.0" @@ -1844,6 +5498,84 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/c7/b0/003792df09decd6849a5e39c28b513c06e84436a54440380862b5aeff25d/tzdata-2025.3-py2.py3-none-any.whl", hash = "sha256:06a47e5700f3081aab02b2e513160914ff0694bce9947d6b76ebd6bf57cfc5d1", size = 348521, upload-time = "2025-12-13T17:45:33.889Z" }, ] +[[package]] +name = "ujson" +version = "5.11.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/43/d9/3f17e3c5773fb4941c68d9a37a47b1a79c9649d6c56aefbed87cc409d18a/ujson-5.11.0.tar.gz", hash = "sha256:e204ae6f909f099ba6b6b942131cee359ddda2b6e4ea39c12eb8b991fe2010e0", size = 7156583, upload-time = "2025-08-20T11:57:02.452Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/ea/80346b826349d60ca4d612a47cdf3533694e49b45e9d1c07071bb867a184/ujson-5.11.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d7c46cb0fe5e7056b9acb748a4c35aa1b428025853032540bb7e41f46767321f", size = 55248, upload-time = "2025-08-20T11:55:19.033Z" }, + { url = "https://files.pythonhosted.org/packages/57/df/b53e747562c89515e18156513cc7c8ced2e5e3fd6c654acaa8752ffd7cd9/ujson-5.11.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d8951bb7a505ab2a700e26f691bdfacf395bc7e3111e3416d325b513eea03a58", size = 53156, upload-time = "2025-08-20T11:55:20.174Z" }, + { url = "https://files.pythonhosted.org/packages/41/b8/ab67ec8c01b8a3721fd13e5cb9d85ab2a6066a3a5e9148d661a6870d6293/ujson-5.11.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:952c0be400229940248c0f5356514123d428cba1946af6fa2bbd7503395fef26", size = 57657, upload-time = "2025-08-20T11:55:21.296Z" }, + { url = "https://files.pythonhosted.org/packages/7b/c7/fb84f27cd80a2c7e2d3c6012367aecade0da936790429801803fa8d4bffc/ujson-5.11.0-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl", hash = "sha256:94fcae844f1e302f6f8095c5d1c45a2f0bfb928cccf9f1b99e3ace634b980a2a", size = 59779, upload-time = "2025-08-20T11:55:22.772Z" }, + { url = "https://files.pythonhosted.org/packages/5d/7c/48706f7c1e917ecb97ddcfb7b1d756040b86ed38290e28579d63bd3fcc48/ujson-5.11.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7e0ec1646db172beb8d3df4c32a9d78015e671d2000af548252769e33079d9a6", size = 57284, upload-time = "2025-08-20T11:55:24.01Z" }, + { url = "https://files.pythonhosted.org/packages/ec/ce/48877c6eb4afddfd6bd1db6be34456538c07ca2d6ed233d3f6c6efc2efe8/ujson-5.11.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:da473b23e3a54448b008d33f742bcd6d5fb2a897e42d1fc6e7bf306ea5d18b1b", size = 1036395, upload-time = "2025-08-20T11:55:25.725Z" }, + { url = "https://files.pythonhosted.org/packages/8b/7a/2c20dc97ad70cd7c31ad0596ba8e2cf8794d77191ba4d1e0bded69865477/ujson-5.11.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:aa6b3d4f1c0d3f82930f4cbd7fe46d905a4a9205a7c13279789c1263faf06dba", size = 1195731, upload-time = "2025-08-20T11:55:27.915Z" }, + { url = "https://files.pythonhosted.org/packages/15/f5/ca454f2f6a2c840394b6f162fff2801450803f4ff56c7af8ce37640b8a2a/ujson-5.11.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4843f3ab4fe1cc596bb7e02228ef4c25d35b4bb0809d6a260852a4bfcab37ba3", size = 1088710, upload-time = "2025-08-20T11:55:29.426Z" }, + { url = "https://files.pythonhosted.org/packages/fe/d3/9ba310e07969bc9906eb7548731e33a0f448b122ad9705fed699c9b29345/ujson-5.11.0-cp311-cp311-win32.whl", hash = "sha256:e979fbc469a7f77f04ec2f4e853ba00c441bf2b06720aa259f0f720561335e34", size = 39648, upload-time = "2025-08-20T11:55:31.194Z" }, + { url = "https://files.pythonhosted.org/packages/57/f7/da05b4a8819f1360be9e71fb20182f0bb3ec611a36c3f213f4d20709e099/ujson-5.11.0-cp311-cp311-win_amd64.whl", hash = "sha256:683f57f0dd3acdd7d9aff1de0528d603aafcb0e6d126e3dc7ce8b020a28f5d01", size = 43717, upload-time = "2025-08-20T11:55:32.241Z" }, + { url = "https://files.pythonhosted.org/packages/9a/cc/f3f9ac0f24f00a623a48d97dc3814df5c2dc368cfb00031aa4141527a24b/ujson-5.11.0-cp311-cp311-win_arm64.whl", hash = "sha256:7855ccea3f8dad5e66d8445d754fc1cf80265a4272b5f8059ebc7ec29b8d0835", size = 38402, upload-time = "2025-08-20T11:55:33.641Z" }, + { url = "https://files.pythonhosted.org/packages/b9/ef/a9cb1fce38f699123ff012161599fb9f2ff3f8d482b4b18c43a2dc35073f/ujson-5.11.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7895f0d2d53bd6aea11743bd56e3cb82d729980636cd0ed9b89418bf66591702", size = 55434, upload-time = "2025-08-20T11:55:34.987Z" }, + { url = "https://files.pythonhosted.org/packages/b1/05/dba51a00eb30bd947791b173766cbed3492269c150a7771d2750000c965f/ujson-5.11.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:12b5e7e22a1fe01058000d1b317d3b65cc3daf61bd2ea7a2b76721fe160fa74d", size = 53190, upload-time = "2025-08-20T11:55:36.384Z" }, + { url = "https://files.pythonhosted.org/packages/03/3c/fd11a224f73fbffa299fb9644e425f38b38b30231f7923a088dd513aabb4/ujson-5.11.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0180a480a7d099082501cad1fe85252e4d4bf926b40960fb3d9e87a3a6fbbc80", size = 57600, upload-time = "2025-08-20T11:55:37.692Z" }, + { url = "https://files.pythonhosted.org/packages/55/b9/405103cae24899df688a3431c776e00528bd4799e7d68820e7ebcf824f92/ujson-5.11.0-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl", hash = "sha256:fa79fdb47701942c2132a9dd2297a1a85941d966d8c87bfd9e29b0cf423f26cc", size = 59791, upload-time = "2025-08-20T11:55:38.877Z" }, + { url = "https://files.pythonhosted.org/packages/17/7b/2dcbc2bbfdbf68f2368fb21ab0f6735e872290bb604c75f6e06b81edcb3f/ujson-5.11.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8254e858437c00f17cb72e7a644fc42dad0ebb21ea981b71df6e84b1072aaa7c", size = 57356, upload-time = "2025-08-20T11:55:40.036Z" }, + { url = "https://files.pythonhosted.org/packages/d1/71/fea2ca18986a366c750767b694430d5ded6b20b6985fddca72f74af38a4c/ujson-5.11.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1aa8a2ab482f09f6c10fba37112af5f957689a79ea598399c85009f2f29898b5", size = 1036313, upload-time = "2025-08-20T11:55:41.408Z" }, + { url = "https://files.pythonhosted.org/packages/a3/bb/d4220bd7532eac6288d8115db51710fa2d7d271250797b0bfba9f1e755af/ujson-5.11.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:a638425d3c6eed0318df663df44480f4a40dc87cc7c6da44d221418312f6413b", size = 1195782, upload-time = "2025-08-20T11:55:43.357Z" }, + { url = "https://files.pythonhosted.org/packages/80/47/226e540aa38878ce1194454385701d82df538ccb5ff8db2cf1641dde849a/ujson-5.11.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:7e3cff632c1d78023b15f7e3a81c3745cd3f94c044d1e8fa8efbd6b161997bbc", size = 1088817, upload-time = "2025-08-20T11:55:45.262Z" }, + { url = "https://files.pythonhosted.org/packages/7e/81/546042f0b23c9040d61d46ea5ca76f0cc5e0d399180ddfb2ae976ebff5b5/ujson-5.11.0-cp312-cp312-win32.whl", hash = "sha256:be6b0eaf92cae8cdee4d4c9e074bde43ef1c590ed5ba037ea26c9632fb479c88", size = 39757, upload-time = "2025-08-20T11:55:46.522Z" }, + { url = "https://files.pythonhosted.org/packages/44/1b/27c05dc8c9728f44875d74b5bfa948ce91f6c33349232619279f35c6e817/ujson-5.11.0-cp312-cp312-win_amd64.whl", hash = "sha256:b7b136cc6abc7619124fd897ef75f8e63105298b5ca9bdf43ebd0e1fa0ee105f", size = 43859, upload-time = "2025-08-20T11:55:47.987Z" }, + { url = "https://files.pythonhosted.org/packages/22/2d/37b6557c97c3409c202c838aa9c960ca3896843b4295c4b7bb2bbd260664/ujson-5.11.0-cp312-cp312-win_arm64.whl", hash = "sha256:6cd2df62f24c506a0ba322d5e4fe4466d47a9467b57e881ee15a31f7ecf68ff6", size = 38361, upload-time = "2025-08-20T11:55:49.122Z" }, + { url = "https://files.pythonhosted.org/packages/1c/ec/2de9dd371d52c377abc05d2b725645326c4562fc87296a8907c7bcdf2db7/ujson-5.11.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:109f59885041b14ee9569bf0bb3f98579c3fa0652317b355669939e5fc5ede53", size = 55435, upload-time = "2025-08-20T11:55:50.243Z" }, + { url = "https://files.pythonhosted.org/packages/5b/a4/f611f816eac3a581d8a4372f6967c3ed41eddbae4008d1d77f223f1a4e0a/ujson-5.11.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a31c6b8004438e8c20fc55ac1c0e07dad42941db24176fe9acf2815971f8e752", size = 53193, upload-time = "2025-08-20T11:55:51.373Z" }, + { url = "https://files.pythonhosted.org/packages/e9/c5/c161940967184de96f5cbbbcce45b562a4bf851d60f4c677704b1770136d/ujson-5.11.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:78c684fb21255b9b90320ba7e199780f653e03f6c2528663768965f4126a5b50", size = 57603, upload-time = "2025-08-20T11:55:52.583Z" }, + { url = "https://files.pythonhosted.org/packages/2b/d6/c7b2444238f5b2e2d0e3dab300b9ddc3606e4b1f0e4bed5a48157cebc792/ujson-5.11.0-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl", hash = "sha256:4c9f5d6a27d035dd90a146f7761c2272cf7103de5127c9ab9c4cd39ea61e878a", size = 59794, upload-time = "2025-08-20T11:55:53.69Z" }, + { url = "https://files.pythonhosted.org/packages/fe/a3/292551f936d3d02d9af148f53e1bc04306b00a7cf1fcbb86fa0d1c887242/ujson-5.11.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:837da4d27fed5fdc1b630bd18f519744b23a0b5ada1bbde1a36ba463f2900c03", size = 57363, upload-time = "2025-08-20T11:55:54.843Z" }, + { url = "https://files.pythonhosted.org/packages/90/a6/82cfa70448831b1a9e73f882225980b5c689bf539ec6400b31656a60ea46/ujson-5.11.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:787aff4a84da301b7f3bac09bc696e2e5670df829c6f8ecf39916b4e7e24e701", size = 1036311, upload-time = "2025-08-20T11:55:56.197Z" }, + { url = "https://files.pythonhosted.org/packages/84/5c/96e2266be50f21e9b27acaee8ca8f23ea0b85cb998c33d4f53147687839b/ujson-5.11.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:6dd703c3e86dc6f7044c5ac0b3ae079ed96bf297974598116aa5fb7f655c3a60", size = 1195783, upload-time = "2025-08-20T11:55:58.081Z" }, + { url = "https://files.pythonhosted.org/packages/8d/20/78abe3d808cf3bb3e76f71fca46cd208317bf461c905d79f0d26b9df20f1/ujson-5.11.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:3772e4fe6b0c1e025ba3c50841a0ca4786825a4894c8411bf8d3afe3a8061328", size = 1088822, upload-time = "2025-08-20T11:55:59.469Z" }, + { url = "https://files.pythonhosted.org/packages/d8/50/8856e24bec5e2fc7f775d867aeb7a3f137359356200ac44658f1f2c834b2/ujson-5.11.0-cp313-cp313-win32.whl", hash = "sha256:8fa2af7c1459204b7a42e98263b069bd535ea0cd978b4d6982f35af5a04a4241", size = 39753, upload-time = "2025-08-20T11:56:01.345Z" }, + { url = "https://files.pythonhosted.org/packages/5b/d8/1baee0f4179a4d0f5ce086832147b6cc9b7731c24ca08e14a3fdb8d39c32/ujson-5.11.0-cp313-cp313-win_amd64.whl", hash = "sha256:34032aeca4510a7c7102bd5933f59a37f63891f30a0706fb46487ab6f0edf8f0", size = 43866, upload-time = "2025-08-20T11:56:02.552Z" }, + { url = "https://files.pythonhosted.org/packages/a9/8c/6d85ef5be82c6d66adced3ec5ef23353ed710a11f70b0b6a836878396334/ujson-5.11.0-cp313-cp313-win_arm64.whl", hash = "sha256:ce076f2df2e1aa62b685086fbad67f2b1d3048369664b4cdccc50707325401f9", size = 38363, upload-time = "2025-08-20T11:56:03.688Z" }, + { url = "https://files.pythonhosted.org/packages/28/08/4518146f4984d112764b1dfa6fb7bad691c44a401adadaa5e23ccd930053/ujson-5.11.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:65724738c73645db88f70ba1f2e6fb678f913281804d5da2fd02c8c5839af302", size = 55462, upload-time = "2025-08-20T11:56:04.873Z" }, + { url = "https://files.pythonhosted.org/packages/29/37/2107b9a62168867a692654d8766b81bd2fd1e1ba13e2ec90555861e02b0c/ujson-5.11.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:29113c003ca33ab71b1b480bde952fbab2a0b6b03a4ee4c3d71687cdcbd1a29d", size = 53246, upload-time = "2025-08-20T11:56:06.054Z" }, + { url = "https://files.pythonhosted.org/packages/9b/f8/25583c70f83788edbe3ca62ce6c1b79eff465d78dec5eb2b2b56b3e98b33/ujson-5.11.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c44c703842024d796b4c78542a6fcd5c3cb948b9fc2a73ee65b9c86a22ee3638", size = 57631, upload-time = "2025-08-20T11:56:07.374Z" }, + { url = "https://files.pythonhosted.org/packages/ed/ca/19b3a632933a09d696f10dc1b0dfa1d692e65ad507d12340116ce4f67967/ujson-5.11.0-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl", hash = "sha256:e750c436fb90edf85585f5c62a35b35082502383840962c6983403d1bd96a02c", size = 59877, upload-time = "2025-08-20T11:56:08.534Z" }, + { url = "https://files.pythonhosted.org/packages/55/7a/4572af5324ad4b2bfdd2321e898a527050290147b4ea337a79a0e4e87ec7/ujson-5.11.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f278b31a7c52eb0947b2db55a5133fbc46b6f0ef49972cd1a80843b72e135aba", size = 57363, upload-time = "2025-08-20T11:56:09.758Z" }, + { url = "https://files.pythonhosted.org/packages/7b/71/a2b8c19cf4e1efe53cf439cdf7198ac60ae15471d2f1040b490c1f0f831f/ujson-5.11.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ab2cb8351d976e788669c8281465d44d4e94413718af497b4e7342d7b2f78018", size = 1036394, upload-time = "2025-08-20T11:56:11.168Z" }, + { url = "https://files.pythonhosted.org/packages/7a/3e/7b98668cba3bb3735929c31b999b374ebc02c19dfa98dfebaeeb5c8597ca/ujson-5.11.0-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:090b4d11b380ae25453100b722d0609d5051ffe98f80ec52853ccf8249dfd840", size = 1195837, upload-time = "2025-08-20T11:56:12.6Z" }, + { url = "https://files.pythonhosted.org/packages/a1/ea/8870f208c20b43571a5c409ebb2fe9b9dba5f494e9e60f9314ac01ea8f78/ujson-5.11.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:80017e870d882d5517d28995b62e4e518a894f932f1e242cbc802a2fd64d365c", size = 1088837, upload-time = "2025-08-20T11:56:14.15Z" }, + { url = "https://files.pythonhosted.org/packages/63/b6/c0e6607e37fa47929920a685a968c6b990a802dec65e9c5181e97845985d/ujson-5.11.0-cp314-cp314-win32.whl", hash = "sha256:1d663b96eb34c93392e9caae19c099ec4133ba21654b081956613327f0e973ac", size = 41022, upload-time = "2025-08-20T11:56:15.509Z" }, + { url = "https://files.pythonhosted.org/packages/4e/56/f4fe86b4c9000affd63e9219e59b222dc48b01c534533093e798bf617a7e/ujson-5.11.0-cp314-cp314-win_amd64.whl", hash = "sha256:849e65b696f0d242833f1df4182096cedc50d414215d1371fca85c541fbff629", size = 45111, upload-time = "2025-08-20T11:56:16.597Z" }, + { url = "https://files.pythonhosted.org/packages/0a/f3/669437f0280308db4783b12a6d88c00730b394327d8334cc7a32ef218e64/ujson-5.11.0-cp314-cp314-win_arm64.whl", hash = "sha256:e73df8648c9470af2b6a6bf5250d4744ad2cf3d774dcf8c6e31f018bdd04d764", size = 39682, upload-time = "2025-08-20T11:56:17.763Z" }, + { url = "https://files.pythonhosted.org/packages/6e/cd/e9809b064a89fe5c4184649adeb13c1b98652db3f8518980b04227358574/ujson-5.11.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:de6e88f62796372fba1de973c11138f197d3e0e1d80bcb2b8aae1e826096d433", size = 55759, upload-time = "2025-08-20T11:56:18.882Z" }, + { url = "https://files.pythonhosted.org/packages/1b/be/ae26a6321179ebbb3a2e2685b9007c71bcda41ad7a77bbbe164005e956fc/ujson-5.11.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:49e56ef8066f11b80d620985ae36869a3ff7e4b74c3b6129182ec5d1df0255f3", size = 53634, upload-time = "2025-08-20T11:56:20.012Z" }, + { url = "https://files.pythonhosted.org/packages/ae/e9/fb4a220ee6939db099f4cfeeae796ecb91e7584ad4d445d4ca7f994a9135/ujson-5.11.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1a325fd2c3a056cf6c8e023f74a0c478dd282a93141356ae7f16d5309f5ff823", size = 58547, upload-time = "2025-08-20T11:56:21.175Z" }, + { url = "https://files.pythonhosted.org/packages/bd/f8/fc4b952b8f5fea09ea3397a0bd0ad019e474b204cabcb947cead5d4d1ffc/ujson-5.11.0-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl", hash = "sha256:a0af6574fc1d9d53f4ff371f58c96673e6d988ed2b5bf666a6143c782fa007e9", size = 60489, upload-time = "2025-08-20T11:56:22.342Z" }, + { url = "https://files.pythonhosted.org/packages/2e/e5/af5491dfda4f8b77e24cf3da68ee0d1552f99a13e5c622f4cef1380925c3/ujson-5.11.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:10f29e71ecf4ecd93a6610bd8efa8e7b6467454a363c3d6416db65de883eb076", size = 58035, upload-time = "2025-08-20T11:56:23.92Z" }, + { url = "https://files.pythonhosted.org/packages/c4/09/0945349dd41f25cc8c38d78ace49f14c5052c5bbb7257d2f466fa7bdb533/ujson-5.11.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:1a0a9b76a89827a592656fe12e000cf4f12da9692f51a841a4a07aa4c7ecc41c", size = 1037212, upload-time = "2025-08-20T11:56:25.274Z" }, + { url = "https://files.pythonhosted.org/packages/49/44/8e04496acb3d5a1cbee3a54828d9652f67a37523efa3d3b18a347339680a/ujson-5.11.0-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:b16930f6a0753cdc7d637b33b4e8f10d5e351e1fb83872ba6375f1e87be39746", size = 1196500, upload-time = "2025-08-20T11:56:27.517Z" }, + { url = "https://files.pythonhosted.org/packages/64/ae/4bc825860d679a0f208a19af2f39206dfd804ace2403330fdc3170334a2f/ujson-5.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:04c41afc195fd477a59db3a84d5b83a871bd648ef371cf8c6f43072d89144eef", size = 1089487, upload-time = "2025-08-20T11:56:29.07Z" }, + { url = "https://files.pythonhosted.org/packages/30/ed/5a057199fb0a5deabe0957073a1c1c1c02a3e99476cd03daee98ea21fa57/ujson-5.11.0-cp314-cp314t-win32.whl", hash = "sha256:aa6d7a5e09217ff93234e050e3e380da62b084e26b9f2e277d2606406a2fc2e5", size = 41859, upload-time = "2025-08-20T11:56:30.495Z" }, + { url = "https://files.pythonhosted.org/packages/aa/03/b19c6176bdf1dc13ed84b886e99677a52764861b6cc023d5e7b6ebda249d/ujson-5.11.0-cp314-cp314t-win_amd64.whl", hash = "sha256:48055e1061c1bb1f79e75b4ac39e821f3f35a9b82de17fce92c3140149009bec", size = 46183, upload-time = "2025-08-20T11:56:31.574Z" }, + { url = "https://files.pythonhosted.org/packages/5d/ca/a0413a3874b2dc1708b8796ca895bf363292f9c70b2e8ca482b7dbc0259d/ujson-5.11.0-cp314-cp314t-win_arm64.whl", hash = "sha256:1194b943e951092db611011cb8dbdb6cf94a3b816ed07906e14d3bc6ce0e90ab", size = 40264, upload-time = "2025-08-20T11:56:32.773Z" }, + { url = "https://files.pythonhosted.org/packages/50/17/30275aa2933430d8c0c4ead951cc4fdb922f575a349aa0b48a6f35449e97/ujson-5.11.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:abae0fb58cc820092a0e9e8ba0051ac4583958495bfa5262a12f628249e3b362", size = 51206, upload-time = "2025-08-20T11:56:48.797Z" }, + { url = "https://files.pythonhosted.org/packages/c3/15/42b3924258eac2551f8f33fa4e35da20a06a53857ccf3d4deb5e5d7c0b6c/ujson-5.11.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:fac6c0649d6b7c3682a0a6e18d3de6857977378dce8d419f57a0b20e3d775b39", size = 48907, upload-time = "2025-08-20T11:56:50.136Z" }, + { url = "https://files.pythonhosted.org/packages/94/7e/0519ff7955aba581d1fe1fb1ca0e452471250455d182f686db5ac9e46119/ujson-5.11.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4b42c115c7c6012506e8168315150d1e3f76e7ba0f4f95616f4ee599a1372bbc", size = 50319, upload-time = "2025-08-20T11:56:51.63Z" }, + { url = "https://files.pythonhosted.org/packages/74/cf/209d90506b7d6c5873f82c5a226d7aad1a1da153364e9ebf61eff0740c33/ujson-5.11.0-pp311-pypy311_pp73-manylinux_2_24_i686.manylinux_2_28_i686.whl", hash = "sha256:86baf341d90b566d61a394869ce77188cc8668f76d7bb2c311d77a00f4bdf844", size = 56584, upload-time = "2025-08-20T11:56:52.89Z" }, + { url = "https://files.pythonhosted.org/packages/e9/97/bd939bb76943cb0e1d2b692d7e68629f51c711ef60425fa5bb6968037ecd/ujson-5.11.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4598bf3965fc1a936bd84034312bcbe00ba87880ef1ee33e33c1e88f2c398b49", size = 51588, upload-time = "2025-08-20T11:56:54.054Z" }, + { url = "https://files.pythonhosted.org/packages/52/5b/8c5e33228f7f83f05719964db59f3f9f276d272dc43752fa3bbf0df53e7b/ujson-5.11.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:416389ec19ef5f2013592f791486bef712ebce0cd59299bf9df1ba40bb2f6e04", size = 43835, upload-time = "2025-08-20T11:56:55.237Z" }, +] + +[[package]] +name = "uri-template" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/31/c7/0336f2bd0bcbada6ccef7aaa25e443c118a704f828a0620c6fa0207c1b64/uri-template-1.3.0.tar.gz", hash = "sha256:0e00f8eb65e18c7de20d595a14336e9f337ead580c70934141624b6d1ffdacc7", size = 21678, upload-time = "2023-06-21T01:49:05.374Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/00/3fca040d7cf8a32776d3d81a00c8ee7457e00f80c649f1e4a863c8321ae9/uri_template-1.3.0-py3-none-any.whl", hash = "sha256:a44a133ea12d44a0c0f06d7d42a52d71282e77e2f937d8abd5655b8d56fc1363", size = 11140, upload-time = "2023-06-21T01:49:03.467Z" }, +] + [[package]] name = "urllib3" version = "2.6.3" @@ -1853,33 +5585,327 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/39/08/aaaad47bc4e9dc8c725e68f9d04865dbcb2052843ff09c97b08904852d84/urllib3-2.6.3-py3-none-any.whl", hash = "sha256:bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4", size = 131584, upload-time = "2026-01-07T16:24:42.685Z" }, ] +[package.optional-dependencies] +socks = [ + { name = "pysocks" }, +] + [[package]] name = "uuid-utils" -version = "0.14.0" +version = "0.14.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/57/7c/3a926e847516e67bc6838634f2e54e24381105b4e80f9338dc35cca0086b/uuid_utils-0.14.0.tar.gz", hash = "sha256:fc5bac21e9933ea6c590433c11aa54aaca599f690c08069e364eb13a12f670b4", size = 22072, upload-time = "2026-01-20T20:37:15.729Z" } +sdist = { url = "https://files.pythonhosted.org/packages/7b/d1/38a573f0c631c062cf42fa1f5d021d4dd3c31fb23e4376e4b56b0c9fbbed/uuid_utils-0.14.1.tar.gz", hash = "sha256:9bfc95f64af80ccf129c604fb6b8ca66c6f256451e32bc4570f760e4309c9b69", size = 22195, upload-time = "2026-02-20T22:50:38.833Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/a7/42/42d003f4a99ddc901eef2fd41acb3694163835e037fb6dde79ad68a72342/uuid_utils-0.14.0-cp39-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:f6695c0bed8b18a904321e115afe73b34444bc8451d0ce3244a1ec3b84deb0e5", size = 601786, upload-time = "2026-01-20T20:37:09.843Z" }, - { url = "https://files.pythonhosted.org/packages/96/e6/775dfb91f74b18f7207e3201eb31ee666d286579990dc69dd50db2d92813/uuid_utils-0.14.0-cp39-abi3-macosx_10_12_x86_64.whl", hash = "sha256:4f0a730bbf2d8bb2c11b93e1005e91769f2f533fa1125ed1f00fd15b6fcc732b", size = 303943, upload-time = "2026-01-20T20:37:18.767Z" }, - { url = "https://files.pythonhosted.org/packages/17/82/ea5f5e85560b08a1f30cdc65f75e76494dc7aba9773f679e7eaa27370229/uuid_utils-0.14.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40ce3fd1a4fdedae618fc3edc8faf91897012469169d600133470f49fd699ed3", size = 340467, upload-time = "2026-01-20T20:37:11.794Z" }, - { url = "https://files.pythonhosted.org/packages/ca/33/54b06415767f4569882e99b6470c6c8eeb97422686a6d432464f9967fd91/uuid_utils-0.14.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:09ae4a98416a440e78f7d9543d11b11cae4bab538b7ed94ec5da5221481748f2", size = 346333, upload-time = "2026-01-20T20:37:12.818Z" }, - { url = "https://files.pythonhosted.org/packages/cb/10/a6bce636b8f95e65dc84bf4a58ce8205b8e0a2a300a38cdbc83a3f763d27/uuid_utils-0.14.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:971e8c26b90d8ae727e7f2ac3ee23e265971d448b3672882f2eb44828b2b8c3e", size = 470859, upload-time = "2026-01-20T20:37:01.512Z" }, - { url = "https://files.pythonhosted.org/packages/8a/27/84121c51ea72f013f0e03d0886bcdfa96b31c9b83c98300a7bd5cc4fa191/uuid_utils-0.14.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d5cde1fa82804a8f9d2907b7aec2009d440062c63f04abbdb825fce717a5e860", size = 341988, upload-time = "2026-01-20T20:37:22.881Z" }, - { url = "https://files.pythonhosted.org/packages/90/a4/01c1c7af5e6a44f20b40183e8dac37d6ed83e7dc9e8df85370a15959b804/uuid_utils-0.14.0-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c7343862a2359e0bd48a7f3dfb5105877a1728677818bb694d9f40703264a2db", size = 365784, upload-time = "2026-01-20T20:37:10.808Z" }, - { url = "https://files.pythonhosted.org/packages/04/f0/65ee43ec617b8b6b1bf2a5aecd56a069a08cca3d9340c1de86024331bde3/uuid_utils-0.14.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:c51e4818fdb08ccec12dc7083a01f49507b4608770a0ab22368001685d59381b", size = 523750, upload-time = "2026-01-20T20:37:06.152Z" }, - { url = "https://files.pythonhosted.org/packages/95/d3/6bf503e3f135a5dfe705a65e6f89f19bccd55ac3fb16cb5d3ec5ba5388b8/uuid_utils-0.14.0-cp39-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:181bbcccb6f93d80a8504b5bd47b311a1c31395139596edbc47b154b0685b533", size = 615818, upload-time = "2026-01-20T20:37:21.816Z" }, - { url = "https://files.pythonhosted.org/packages/df/6c/99937dd78d07f73bba831c8dc9469dfe4696539eba2fc269ae1b92752f9e/uuid_utils-0.14.0-cp39-abi3-musllinux_1_2_i686.whl", hash = "sha256:5c8ae96101c3524ba8dbf762b6f05e9e9d896544786c503a727c5bf5cb9af1a7", size = 580831, upload-time = "2026-01-20T20:37:19.691Z" }, - { url = "https://files.pythonhosted.org/packages/44/fa/bbc9e2c25abd09a293b9b097a0d8fc16acd6a92854f0ec080f1ea7ad8bb3/uuid_utils-0.14.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:00ac3c6edfdaff7e1eed041f4800ae09a3361287be780d7610a90fdcde9befdc", size = 546333, upload-time = "2026-01-20T20:37:03.117Z" }, - { url = "https://files.pythonhosted.org/packages/e7/9b/e5e99b324b1b5f0c62882230455786df0bc66f67eff3b452447e703f45d2/uuid_utils-0.14.0-cp39-abi3-win32.whl", hash = "sha256:ec2fd80adf8e0e6589d40699e6f6df94c93edcc16dd999be0438dd007c77b151", size = 177319, upload-time = "2026-01-20T20:37:04.208Z" }, - { url = "https://files.pythonhosted.org/packages/d3/28/2c7d417ea483b6ff7820c948678fdf2ac98899dc7e43bb15852faa95acaf/uuid_utils-0.14.0-cp39-abi3-win_amd64.whl", hash = "sha256:efe881eb43a5504fad922644cb93d725fd8a6a6d949bd5a4b4b7d1a1587c7fd1", size = 182566, upload-time = "2026-01-20T20:37:16.868Z" }, - { url = "https://files.pythonhosted.org/packages/b8/86/49e4bdda28e962fbd7266684171ee29b3d92019116971d58783e51770745/uuid_utils-0.14.0-cp39-abi3-win_arm64.whl", hash = "sha256:32b372b8fd4ebd44d3a219e093fe981af4afdeda2994ee7db208ab065cfcd080", size = 182809, upload-time = "2026-01-20T20:37:05.139Z" }, - { url = "https://files.pythonhosted.org/packages/f1/03/1f1146e32e94d1f260dfabc81e1649102083303fb4ad549775c943425d9a/uuid_utils-0.14.0-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:762e8d67992ac4d2454e24a141a1c82142b5bde10409818c62adbe9924ebc86d", size = 587430, upload-time = "2026-01-20T20:37:24.998Z" }, - { url = "https://files.pythonhosted.org/packages/87/ba/d5a7469362594d885fd9219fe9e851efbe65101d3ef1ef25ea321d7ce841/uuid_utils-0.14.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:40be5bf0b13aa849d9062abc86c198be6a25ff35316ce0b89fc25f3bac6d525e", size = 298106, upload-time = "2026-01-20T20:37:23.896Z" }, - { url = "https://files.pythonhosted.org/packages/8a/11/3dafb2a5502586f59fd49e93f5802cd5face82921b3a0f3abb5f357cb879/uuid_utils-0.14.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:191a90a6f3940d1b7322b6e6cceff4dd533c943659e0a15f788674407856a515", size = 333423, upload-time = "2026-01-20T20:37:17.828Z" }, - { url = "https://files.pythonhosted.org/packages/7c/f2/c8987663f0cdcf4d717a36d85b5db2a5589df0a4e129aa10f16f4380ef48/uuid_utils-0.14.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4aa4525f4ad82f9d9c842f9a3703f1539c1808affbaec07bb1b842f6b8b96aa5", size = 338659, upload-time = "2026-01-20T20:37:14.286Z" }, - { url = "https://files.pythonhosted.org/packages/d1/c8/929d81665d83f0b2ffaecb8e66c3091a50f62c7cb5b65e678bd75a96684e/uuid_utils-0.14.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cdbd82ff20147461caefc375551595ecf77ebb384e46267f128aca45a0f2cdfc", size = 467029, upload-time = "2026-01-20T20:37:08.277Z" }, - { url = "https://files.pythonhosted.org/packages/8e/a0/27d7daa1bfed7163f4ccaf52d7d2f4ad7bb1002a85b45077938b91ee584f/uuid_utils-0.14.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eff57e8a5d540006ce73cf0841a643d445afe78ba12e75ac53a95ca2924a56be", size = 333298, upload-time = "2026-01-20T20:37:07.271Z" }, - { url = "https://files.pythonhosted.org/packages/63/d4/acad86ce012b42ce18a12f31ee2aa3cbeeb98664f865f05f68c882945913/uuid_utils-0.14.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3fd9112ca96978361201e669729784f26c71fecc9c13a7f8a07162c31bd4d1e2", size = 359217, upload-time = "2026-01-20T20:36:59.687Z" }, + { url = "https://files.pythonhosted.org/packages/43/b7/add4363039a34506a58457d96d4aa2126061df3a143eb4d042aedd6a2e76/uuid_utils-0.14.1-cp39-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:93a3b5dc798a54a1feb693f2d1cb4cf08258c32ff05ae4929b5f0a2ca624a4f0", size = 604679, upload-time = "2026-02-20T22:50:27.469Z" }, + { url = "https://files.pythonhosted.org/packages/dd/84/d1d0bef50d9e66d31b2019997c741b42274d53dde2e001b7a83e9511c339/uuid_utils-0.14.1-cp39-abi3-macosx_10_12_x86_64.whl", hash = "sha256:ccd65a4b8e83af23eae5e56d88034b2fe7264f465d3e830845f10d1591b81741", size = 309346, upload-time = "2026-02-20T22:50:31.857Z" }, + { url = "https://files.pythonhosted.org/packages/ef/ed/b6d6fd52a6636d7c3eddf97d68da50910bf17cd5ac221992506fb56cf12e/uuid_utils-0.14.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b56b0cacd81583834820588378e432b0696186683b813058b707aedc1e16c4b1", size = 344714, upload-time = "2026-02-20T22:50:42.642Z" }, + { url = "https://files.pythonhosted.org/packages/a8/a7/a19a1719fb626fe0b31882db36056d44fe904dc0cf15b06fdf56b2679cf7/uuid_utils-0.14.1-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bb3cf14de789097320a3c56bfdfdd51b1225d11d67298afbedee7e84e3837c96", size = 350914, upload-time = "2026-02-20T22:50:36.487Z" }, + { url = "https://files.pythonhosted.org/packages/1d/fc/f6690e667fdc3bb1a73f57951f97497771c56fe23e3d302d7404be394d4f/uuid_utils-0.14.1-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:60e0854a90d67f4b0cc6e54773deb8be618f4c9bad98d3326f081423b5d14fae", size = 482609, upload-time = "2026-02-20T22:50:37.511Z" }, + { url = "https://files.pythonhosted.org/packages/54/6e/dcd3fa031320921a12ec7b4672dea3bd1dd90ddffa363a91831ba834d559/uuid_utils-0.14.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce6743ba194de3910b5feb1a62590cd2587e33a73ab6af8a01b642ceb5055862", size = 345699, upload-time = "2026-02-20T22:50:46.87Z" }, + { url = "https://files.pythonhosted.org/packages/04/28/e5220204b58b44ac0047226a9d016a113fde039280cc8732d9e6da43b39f/uuid_utils-0.14.1-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:043fb58fde6cf1620a6c066382f04f87a8e74feb0f95a585e4ed46f5d44af57b", size = 372205, upload-time = "2026-02-20T22:50:28.438Z" }, + { url = "https://files.pythonhosted.org/packages/c7/d9/3d2eb98af94b8dfffc82b6a33b4dfc87b0a5de2c68a28f6dde0db1f8681b/uuid_utils-0.14.1-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:c915d53f22945e55fe0d3d3b0b87fd965a57f5fd15666fd92d6593a73b1dd297", size = 521836, upload-time = "2026-02-20T22:50:23.057Z" }, + { url = "https://files.pythonhosted.org/packages/a8/15/0eb106cc6fe182f7577bc0ab6e2f0a40be247f35c5e297dbf7bbc460bd02/uuid_utils-0.14.1-cp39-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:0972488e3f9b449e83f006ead5a0e0a33ad4a13e4462e865b7c286ab7d7566a3", size = 625260, upload-time = "2026-02-20T22:50:25.949Z" }, + { url = "https://files.pythonhosted.org/packages/3c/17/f539507091334b109e7496830af2f093d9fc8082411eafd3ece58af1f8ba/uuid_utils-0.14.1-cp39-abi3-musllinux_1_2_i686.whl", hash = "sha256:1c238812ae0c8ffe77d8d447a32c6dfd058ea4631246b08b5a71df586ff08531", size = 587824, upload-time = "2026-02-20T22:50:35.225Z" }, + { url = "https://files.pythonhosted.org/packages/2e/c2/d37a7b2e41f153519367d4db01f0526e0d4b06f1a4a87f1c5dfca5d70a8b/uuid_utils-0.14.1-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:bec8f8ef627af86abf8298e7ec50926627e29b34fa907fcfbedb45aaa72bca43", size = 551407, upload-time = "2026-02-20T22:50:44.915Z" }, + { url = "https://files.pythonhosted.org/packages/65/36/2d24b2cbe78547c6532da33fb8613debd3126eccc33a6374ab788f5e46e9/uuid_utils-0.14.1-cp39-abi3-win32.whl", hash = "sha256:b54d6aa6252d96bac1fdbc80d26ba71bad9f220b2724d692ad2f2310c22ef523", size = 183476, upload-time = "2026-02-20T22:50:32.745Z" }, + { url = "https://files.pythonhosted.org/packages/83/92/2d7e90df8b1a69ec4cff33243ce02b7a62f926ef9e2f0eca5a026889cd73/uuid_utils-0.14.1-cp39-abi3-win_amd64.whl", hash = "sha256:fc27638c2ce267a0ce3e06828aff786f91367f093c80625ee21dad0208e0f5ba", size = 187147, upload-time = "2026-02-20T22:50:45.807Z" }, + { url = "https://files.pythonhosted.org/packages/d9/26/529f4beee17e5248e37e0bc17a2761d34c0fa3b1e5729c88adb2065bae6e/uuid_utils-0.14.1-cp39-abi3-win_arm64.whl", hash = "sha256:b04cb49b42afbc4ff8dbc60cf054930afc479d6f4dd7f1ec3bbe5dbfdde06b7a", size = 188132, upload-time = "2026-02-20T22:50:41.718Z" }, + { url = "https://files.pythonhosted.org/packages/91/f9/6c64bdbf71f58ccde7919e00491812556f446a5291573af92c49a5e9aaef/uuid_utils-0.14.1-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:b197cd5424cf89fb019ca7f53641d05bfe34b1879614bed111c9c313b5574cd8", size = 591617, upload-time = "2026-02-20T22:50:24.532Z" }, + { url = "https://files.pythonhosted.org/packages/d0/f0/758c3b0fb0c4871c7704fef26a5bc861de4f8a68e4831669883bebe07b0f/uuid_utils-0.14.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:12c65020ba6cb6abe1d57fcbfc2d0ea0506c67049ee031714057f5caf0f9bc9c", size = 303702, upload-time = "2026-02-20T22:50:40.687Z" }, + { url = "https://files.pythonhosted.org/packages/85/89/d91862b544c695cd58855efe3201f83894ed82fffe34500774238ab8eba7/uuid_utils-0.14.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0b5d2ad28063d422ccc2c28d46471d47b61a58de885d35113a8f18cb547e25bf", size = 337678, upload-time = "2026-02-20T22:50:39.768Z" }, + { url = "https://files.pythonhosted.org/packages/ee/6b/cf342ba8a898f1de024be0243fac67c025cad530c79ea7f89c4ce718891a/uuid_utils-0.14.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:da2234387b45fde40b0fedfee64a0ba591caeea9c48c7698ab6e2d85c7991533", size = 343711, upload-time = "2026-02-20T22:50:43.965Z" }, + { url = "https://files.pythonhosted.org/packages/b3/20/049418d094d396dfa6606b30af925cc68a6670c3b9103b23e6990f84b589/uuid_utils-0.14.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:50fffc2827348c1e48972eed3d1c698959e63f9d030aa5dd82ba451113158a62", size = 476731, upload-time = "2026-02-20T22:50:30.589Z" }, + { url = "https://files.pythonhosted.org/packages/77/a1/0857f64d53a90321e6a46a3d4cc394f50e1366132dcd2ae147f9326ca98b/uuid_utils-0.14.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1dbe718765f70f5b7f9b7f66b6a937802941b1cc56bcf642ce0274169741e01", size = 338902, upload-time = "2026-02-20T22:50:33.927Z" }, + { url = "https://files.pythonhosted.org/packages/ed/d0/5bf7cbf1ac138c92b9ac21066d18faf4d7e7f651047b700eb192ca4b9fdb/uuid_utils-0.14.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:258186964039a8e36db10810c1ece879d229b01331e09e9030bc5dcabe231bd2", size = 364700, upload-time = "2026-02-20T22:50:21.732Z" }, +] + +[[package]] +name = "uuid6" +version = "2025.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ca/b7/4c0f736ca824b3a25b15e8213d1bcfc15f8ac2ae48d1b445b310892dc4da/uuid6-2025.0.1.tar.gz", hash = "sha256:cd0af94fa428675a44e32c5319ec5a3485225ba2179eefcf4c3f205ae30a81bd", size = 13932, upload-time = "2025-07-04T18:30:35.186Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3d/b2/93faaab7962e2aa8d6e174afb6f76be2ca0ce89fde14d3af835acebcaa59/uuid6-2025.0.1-py3-none-any.whl", hash = "sha256:80530ce4d02a93cdf82e7122ca0da3ebbbc269790ec1cb902481fa3e9cc9ff99", size = 6979, upload-time = "2025-07-04T18:30:34.001Z" }, +] + +[[package]] +name = "uvicorn" +version = "0.41.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, + { name = "h11" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/32/ce/eeb58ae4ac36fe09e3842eb02e0eb676bf2c53ae062b98f1b2531673efdd/uvicorn-0.41.0.tar.gz", hash = "sha256:09d11cf7008da33113824ee5a1c6422d89fbc2ff476540d69a34c87fab8b571a", size = 82633, upload-time = "2026-02-16T23:07:24.1Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/83/e4/d04a086285c20886c0daad0e026f250869201013d18f81d9ff5eada73a88/uvicorn-0.41.0-py3-none-any.whl", hash = "sha256:29e35b1d2c36a04b9e180d4007ede3bcb32a85fbdfd6c6aeb3f26839de088187", size = 68783, upload-time = "2026-02-16T23:07:22.357Z" }, +] + +[package.optional-dependencies] +standard = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "httptools" }, + { name = "python-dotenv" }, + { name = "pyyaml" }, + { name = "uvloop", marker = "platform_python_implementation != 'PyPy' and sys_platform != 'cygwin' and sys_platform != 'win32'" }, + { name = "watchfiles" }, + { name = "websockets" }, +] + +[[package]] +name = "uvloop" +version = "0.22.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/06/f0/18d39dbd1971d6d62c4629cc7fa67f74821b0dc1f5a77af43719de7936a7/uvloop-0.22.1.tar.gz", hash = "sha256:6c84bae345b9147082b17371e3dd5d42775bddce91f885499017f4607fdaf39f", size = 2443250, upload-time = "2025-10-16T22:17:19.342Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c7/d5/69900f7883235562f1f50d8184bb7dd84a2fb61e9ec63f3782546fdbd057/uvloop-0.22.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c60ebcd36f7b240b30788554b6f0782454826a0ed765d8430652621b5de674b9", size = 1352420, upload-time = "2025-10-16T22:16:21.187Z" }, + { url = "https://files.pythonhosted.org/packages/a8/73/c4e271b3bce59724e291465cc936c37758886a4868787da0278b3b56b905/uvloop-0.22.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3b7f102bf3cb1995cfeaee9321105e8f5da76fdb104cdad8986f85461a1b7b77", size = 748677, upload-time = "2025-10-16T22:16:22.558Z" }, + { url = "https://files.pythonhosted.org/packages/86/94/9fb7fad2f824d25f8ecac0d70b94d0d48107ad5ece03769a9c543444f78a/uvloop-0.22.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:53c85520781d84a4b8b230e24a5af5b0778efdb39142b424990ff1ef7c48ba21", size = 3753819, upload-time = "2025-10-16T22:16:23.903Z" }, + { url = "https://files.pythonhosted.org/packages/74/4f/256aca690709e9b008b7108bc85fba619a2bc37c6d80743d18abad16ee09/uvloop-0.22.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:56a2d1fae65fd82197cb8c53c367310b3eabe1bbb9fb5a04d28e3e3520e4f702", size = 3804529, upload-time = "2025-10-16T22:16:25.246Z" }, + { url = "https://files.pythonhosted.org/packages/7f/74/03c05ae4737e871923d21a76fe28b6aad57f5c03b6e6bfcfa5ad616013e4/uvloop-0.22.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:40631b049d5972c6755b06d0bfe8233b1bd9a8a6392d9d1c45c10b6f9e9b2733", size = 3621267, upload-time = "2025-10-16T22:16:26.819Z" }, + { url = "https://files.pythonhosted.org/packages/75/be/f8e590fe61d18b4a92070905497aec4c0e64ae1761498cad09023f3f4b3e/uvloop-0.22.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:535cc37b3a04f6cd2c1ef65fa1d370c9a35b6695df735fcff5427323f2cd5473", size = 3723105, upload-time = "2025-10-16T22:16:28.252Z" }, + { url = "https://files.pythonhosted.org/packages/3d/ff/7f72e8170be527b4977b033239a83a68d5c881cc4775fca255c677f7ac5d/uvloop-0.22.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:fe94b4564e865d968414598eea1a6de60adba0c040ba4ed05ac1300de402cd42", size = 1359936, upload-time = "2025-10-16T22:16:29.436Z" }, + { url = "https://files.pythonhosted.org/packages/c3/c6/e5d433f88fd54d81ef4be58b2b7b0cea13c442454a1db703a1eea0db1a59/uvloop-0.22.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:51eb9bd88391483410daad430813d982010f9c9c89512321f5b60e2cddbdddd6", size = 752769, upload-time = "2025-10-16T22:16:30.493Z" }, + { url = "https://files.pythonhosted.org/packages/24/68/a6ac446820273e71aa762fa21cdcc09861edd3536ff47c5cd3b7afb10eeb/uvloop-0.22.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:700e674a166ca5778255e0e1dc4e9d79ab2acc57b9171b79e65feba7184b3370", size = 4317413, upload-time = "2025-10-16T22:16:31.644Z" }, + { url = "https://files.pythonhosted.org/packages/5f/6f/e62b4dfc7ad6518e7eff2516f680d02a0f6eb62c0c212e152ca708a0085e/uvloop-0.22.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7b5b1ac819a3f946d3b2ee07f09149578ae76066d70b44df3fa990add49a82e4", size = 4426307, upload-time = "2025-10-16T22:16:32.917Z" }, + { url = "https://files.pythonhosted.org/packages/90/60/97362554ac21e20e81bcef1150cb2a7e4ffdaf8ea1e5b2e8bf7a053caa18/uvloop-0.22.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e047cc068570bac9866237739607d1313b9253c3051ad84738cbb095be0537b2", size = 4131970, upload-time = "2025-10-16T22:16:34.015Z" }, + { url = "https://files.pythonhosted.org/packages/99/39/6b3f7d234ba3964c428a6e40006340f53ba37993f46ed6e111c6e9141d18/uvloop-0.22.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:512fec6815e2dd45161054592441ef76c830eddaad55c8aa30952e6fe1ed07c0", size = 4296343, upload-time = "2025-10-16T22:16:35.149Z" }, + { url = "https://files.pythonhosted.org/packages/89/8c/182a2a593195bfd39842ea68ebc084e20c850806117213f5a299dfc513d9/uvloop-0.22.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:561577354eb94200d75aca23fbde86ee11be36b00e52a4eaf8f50fb0c86b7705", size = 1358611, upload-time = "2025-10-16T22:16:36.833Z" }, + { url = "https://files.pythonhosted.org/packages/d2/14/e301ee96a6dc95224b6f1162cd3312f6d1217be3907b79173b06785f2fe7/uvloop-0.22.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:1cdf5192ab3e674ca26da2eada35b288d2fa49fdd0f357a19f0e7c4e7d5077c8", size = 751811, upload-time = "2025-10-16T22:16:38.275Z" }, + { url = "https://files.pythonhosted.org/packages/b7/02/654426ce265ac19e2980bfd9ea6590ca96a56f10c76e63801a2df01c0486/uvloop-0.22.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6e2ea3d6190a2968f4a14a23019d3b16870dd2190cd69c8180f7c632d21de68d", size = 4288562, upload-time = "2025-10-16T22:16:39.375Z" }, + { url = "https://files.pythonhosted.org/packages/15/c0/0be24758891ef825f2065cd5db8741aaddabe3e248ee6acc5e8a80f04005/uvloop-0.22.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0530a5fbad9c9e4ee3f2b33b148c6a64d47bbad8000ea63704fa8260f4cf728e", size = 4366890, upload-time = "2025-10-16T22:16:40.547Z" }, + { url = "https://files.pythonhosted.org/packages/d2/53/8369e5219a5855869bcee5f4d317f6da0e2c669aecf0ef7d371e3d084449/uvloop-0.22.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bc5ef13bbc10b5335792360623cc378d52d7e62c2de64660616478c32cd0598e", size = 4119472, upload-time = "2025-10-16T22:16:41.694Z" }, + { url = "https://files.pythonhosted.org/packages/f8/ba/d69adbe699b768f6b29a5eec7b47dd610bd17a69de51b251126a801369ea/uvloop-0.22.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:1f38ec5e3f18c8a10ded09742f7fb8de0108796eb673f30ce7762ce1b8550cad", size = 4239051, upload-time = "2025-10-16T22:16:43.224Z" }, + { url = "https://files.pythonhosted.org/packages/90/cd/b62bdeaa429758aee8de8b00ac0dd26593a9de93d302bff3d21439e9791d/uvloop-0.22.1-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:3879b88423ec7e97cd4eba2a443aa26ed4e59b45e6b76aabf13fe2f27023a142", size = 1362067, upload-time = "2025-10-16T22:16:44.503Z" }, + { url = "https://files.pythonhosted.org/packages/0d/f8/a132124dfda0777e489ca86732e85e69afcd1ff7686647000050ba670689/uvloop-0.22.1-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:4baa86acedf1d62115c1dc6ad1e17134476688f08c6efd8a2ab076e815665c74", size = 752423, upload-time = "2025-10-16T22:16:45.968Z" }, + { url = "https://files.pythonhosted.org/packages/a3/94/94af78c156f88da4b3a733773ad5ba0b164393e357cc4bd0ab2e2677a7d6/uvloop-0.22.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:297c27d8003520596236bdb2335e6b3f649480bd09e00d1e3a99144b691d2a35", size = 4272437, upload-time = "2025-10-16T22:16:47.451Z" }, + { url = "https://files.pythonhosted.org/packages/b5/35/60249e9fd07b32c665192cec7af29e06c7cd96fa1d08b84f012a56a0b38e/uvloop-0.22.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c1955d5a1dd43198244d47664a5858082a3239766a839b2102a269aaff7a4e25", size = 4292101, upload-time = "2025-10-16T22:16:49.318Z" }, + { url = "https://files.pythonhosted.org/packages/02/62/67d382dfcb25d0a98ce73c11ed1a6fba5037a1a1d533dcbb7cab033a2636/uvloop-0.22.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:b31dc2fccbd42adc73bc4e7cdbae4fc5086cf378979e53ca5d0301838c5682c6", size = 4114158, upload-time = "2025-10-16T22:16:50.517Z" }, + { url = "https://files.pythonhosted.org/packages/f0/7a/f1171b4a882a5d13c8b7576f348acfe6074d72eaf52cccef752f748d4a9f/uvloop-0.22.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:93f617675b2d03af4e72a5333ef89450dfaa5321303ede6e67ba9c9d26878079", size = 4177360, upload-time = "2025-10-16T22:16:52.646Z" }, + { url = "https://files.pythonhosted.org/packages/79/7b/b01414f31546caf0919da80ad57cbfe24c56b151d12af68cee1b04922ca8/uvloop-0.22.1-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:37554f70528f60cad66945b885eb01f1bb514f132d92b6eeed1c90fd54ed6289", size = 1454790, upload-time = "2025-10-16T22:16:54.355Z" }, + { url = "https://files.pythonhosted.org/packages/d4/31/0bb232318dd838cad3fa8fb0c68c8b40e1145b32025581975e18b11fab40/uvloop-0.22.1-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:b76324e2dc033a0b2f435f33eb88ff9913c156ef78e153fb210e03c13da746b3", size = 796783, upload-time = "2025-10-16T22:16:55.906Z" }, + { url = "https://files.pythonhosted.org/packages/42/38/c9b09f3271a7a723a5de69f8e237ab8e7803183131bc57c890db0b6bb872/uvloop-0.22.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:badb4d8e58ee08dad957002027830d5c3b06aea446a6a3744483c2b3b745345c", size = 4647548, upload-time = "2025-10-16T22:16:57.008Z" }, + { url = "https://files.pythonhosted.org/packages/c1/37/945b4ca0ac27e3dc4952642d4c900edd030b3da6c9634875af6e13ae80e5/uvloop-0.22.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b91328c72635f6f9e0282e4a57da7470c7350ab1c9f48546c0f2866205349d21", size = 4467065, upload-time = "2025-10-16T22:16:58.206Z" }, + { url = "https://files.pythonhosted.org/packages/97/cc/48d232f33d60e2e2e0b42f4e73455b146b76ebe216487e862700457fbf3c/uvloop-0.22.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:daf620c2995d193449393d6c62131b3fbd40a63bf7b307a1527856ace637fe88", size = 4328384, upload-time = "2025-10-16T22:16:59.36Z" }, + { url = "https://files.pythonhosted.org/packages/e4/16/c1fd27e9549f3c4baf1dc9c20c456cd2f822dbf8de9f463824b0c0357e06/uvloop-0.22.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:6cde23eeda1a25c75b2e07d39970f3374105d5eafbaab2a4482be82f272d5a5e", size = 4296730, upload-time = "2025-10-16T22:17:00.744Z" }, +] + +[[package]] +name = "watchdog" +version = "6.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/db/7d/7f3d619e951c88ed75c6037b246ddcf2d322812ee8ea189be89511721d54/watchdog-6.0.0.tar.gz", hash = "sha256:9ddf7c82fda3ae8e24decda1338ede66e1c99883db93711d8fb941eaa2d8c282", size = 131220, upload-time = "2024-11-01T14:07:13.037Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e0/24/d9be5cd6642a6aa68352ded4b4b10fb0d7889cb7f45814fb92cecd35f101/watchdog-6.0.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:6eb11feb5a0d452ee41f824e271ca311a09e250441c262ca2fd7ebcf2461a06c", size = 96393, upload-time = "2024-11-01T14:06:31.756Z" }, + { url = "https://files.pythonhosted.org/packages/63/7a/6013b0d8dbc56adca7fdd4f0beed381c59f6752341b12fa0886fa7afc78b/watchdog-6.0.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ef810fbf7b781a5a593894e4f439773830bdecb885e6880d957d5b9382a960d2", size = 88392, upload-time = "2024-11-01T14:06:32.99Z" }, + { url = "https://files.pythonhosted.org/packages/d1/40/b75381494851556de56281e053700e46bff5b37bf4c7267e858640af5a7f/watchdog-6.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:afd0fe1b2270917c5e23c2a65ce50c2a4abb63daafb0d419fde368e272a76b7c", size = 89019, upload-time = "2024-11-01T14:06:34.963Z" }, + { url = "https://files.pythonhosted.org/packages/39/ea/3930d07dafc9e286ed356a679aa02d777c06e9bfd1164fa7c19c288a5483/watchdog-6.0.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:bdd4e6f14b8b18c334febb9c4425a878a2ac20efd1e0b231978e7b150f92a948", size = 96471, upload-time = "2024-11-01T14:06:37.745Z" }, + { url = "https://files.pythonhosted.org/packages/12/87/48361531f70b1f87928b045df868a9fd4e253d9ae087fa4cf3f7113be363/watchdog-6.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:c7c15dda13c4eb00d6fb6fc508b3c0ed88b9d5d374056b239c4ad1611125c860", size = 88449, upload-time = "2024-11-01T14:06:39.748Z" }, + { url = "https://files.pythonhosted.org/packages/5b/7e/8f322f5e600812e6f9a31b75d242631068ca8f4ef0582dd3ae6e72daecc8/watchdog-6.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6f10cb2d5902447c7d0da897e2c6768bca89174d0c6e1e30abec5421af97a5b0", size = 89054, upload-time = "2024-11-01T14:06:41.009Z" }, + { url = "https://files.pythonhosted.org/packages/68/98/b0345cabdce2041a01293ba483333582891a3bd5769b08eceb0d406056ef/watchdog-6.0.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:490ab2ef84f11129844c23fb14ecf30ef3d8a6abafd3754a6f75ca1e6654136c", size = 96480, upload-time = "2024-11-01T14:06:42.952Z" }, + { url = "https://files.pythonhosted.org/packages/85/83/cdf13902c626b28eedef7ec4f10745c52aad8a8fe7eb04ed7b1f111ca20e/watchdog-6.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:76aae96b00ae814b181bb25b1b98076d5fc84e8a53cd8885a318b42b6d3a5134", size = 88451, upload-time = "2024-11-01T14:06:45.084Z" }, + { url = "https://files.pythonhosted.org/packages/fe/c4/225c87bae08c8b9ec99030cd48ae9c4eca050a59bf5c2255853e18c87b50/watchdog-6.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a175f755fc2279e0b7312c0035d52e27211a5bc39719dd529625b1930917345b", size = 89057, upload-time = "2024-11-01T14:06:47.324Z" }, + { url = "https://files.pythonhosted.org/packages/a9/c7/ca4bf3e518cb57a686b2feb4f55a1892fd9a3dd13f470fca14e00f80ea36/watchdog-6.0.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:7607498efa04a3542ae3e05e64da8202e58159aa1fa4acddf7678d34a35d4f13", size = 79079, upload-time = "2024-11-01T14:06:59.472Z" }, + { url = "https://files.pythonhosted.org/packages/5c/51/d46dc9332f9a647593c947b4b88e2381c8dfc0942d15b8edc0310fa4abb1/watchdog-6.0.0-py3-none-manylinux2014_armv7l.whl", hash = "sha256:9041567ee8953024c83343288ccc458fd0a2d811d6a0fd68c4c22609e3490379", size = 79078, upload-time = "2024-11-01T14:07:01.431Z" }, + { url = "https://files.pythonhosted.org/packages/d4/57/04edbf5e169cd318d5f07b4766fee38e825d64b6913ca157ca32d1a42267/watchdog-6.0.0-py3-none-manylinux2014_i686.whl", hash = "sha256:82dc3e3143c7e38ec49d61af98d6558288c415eac98486a5c581726e0737c00e", size = 79076, upload-time = "2024-11-01T14:07:02.568Z" }, + { url = "https://files.pythonhosted.org/packages/ab/cc/da8422b300e13cb187d2203f20b9253e91058aaf7db65b74142013478e66/watchdog-6.0.0-py3-none-manylinux2014_ppc64.whl", hash = "sha256:212ac9b8bf1161dc91bd09c048048a95ca3a4c4f5e5d4a7d1b1a7d5752a7f96f", size = 79077, upload-time = "2024-11-01T14:07:03.893Z" }, + { url = "https://files.pythonhosted.org/packages/2c/3b/b8964e04ae1a025c44ba8e4291f86e97fac443bca31de8bd98d3263d2fcf/watchdog-6.0.0-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:e3df4cbb9a450c6d49318f6d14f4bbc80d763fa587ba46ec86f99f9e6876bb26", size = 79078, upload-time = "2024-11-01T14:07:05.189Z" }, + { url = "https://files.pythonhosted.org/packages/62/ae/a696eb424bedff7407801c257d4b1afda455fe40821a2be430e173660e81/watchdog-6.0.0-py3-none-manylinux2014_s390x.whl", hash = "sha256:2cce7cfc2008eb51feb6aab51251fd79b85d9894e98ba847408f662b3395ca3c", size = 79077, upload-time = "2024-11-01T14:07:06.376Z" }, + { url = "https://files.pythonhosted.org/packages/b5/e8/dbf020b4d98251a9860752a094d09a65e1b436ad181faf929983f697048f/watchdog-6.0.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:20ffe5b202af80ab4266dcd3e91aae72bf2da48c0d33bdb15c66658e685e94e2", size = 79078, upload-time = "2024-11-01T14:07:07.547Z" }, + { url = "https://files.pythonhosted.org/packages/07/f6/d0e5b343768e8bcb4cda79f0f2f55051bf26177ecd5651f84c07567461cf/watchdog-6.0.0-py3-none-win32.whl", hash = "sha256:07df1fdd701c5d4c8e55ef6cf55b8f0120fe1aef7ef39a1c6fc6bc2e606d517a", size = 79065, upload-time = "2024-11-01T14:07:09.525Z" }, + { url = "https://files.pythonhosted.org/packages/db/d9/c495884c6e548fce18a8f40568ff120bc3a4b7b99813081c8ac0c936fa64/watchdog-6.0.0-py3-none-win_amd64.whl", hash = "sha256:cbafb470cf848d93b5d013e2ecb245d4aa1c8fd0504e863ccefa32445359d680", size = 79070, upload-time = "2024-11-01T14:07:10.686Z" }, + { url = "https://files.pythonhosted.org/packages/33/e8/e40370e6d74ddba47f002a32919d91310d6074130fe4e17dabcafc15cbf1/watchdog-6.0.0-py3-none-win_ia64.whl", hash = "sha256:a1914259fa9e1454315171103c6a30961236f508b9b623eae470268bbcc6a22f", size = 79067, upload-time = "2024-11-01T14:07:11.845Z" }, +] + +[[package]] +name = "watchfiles" +version = "1.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c2/c9/8869df9b2a2d6c59d79220a4db37679e74f807c559ffe5265e08b227a210/watchfiles-1.1.1.tar.gz", hash = "sha256:a173cb5c16c4f40ab19cecf48a534c409f7ea983ab8fed0741304a1c0a31b3f2", size = 94440, upload-time = "2025-10-14T15:06:21.08Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1f/f8/2c5f479fb531ce2f0564eda479faecf253d886b1ab3630a39b7bf7362d46/watchfiles-1.1.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:f57b396167a2565a4e8b5e56a5a1c537571733992b226f4f1197d79e94cf0ae5", size = 406529, upload-time = "2025-10-14T15:04:32.899Z" }, + { url = "https://files.pythonhosted.org/packages/fe/cd/f515660b1f32f65df671ddf6f85bfaca621aee177712874dc30a97397977/watchfiles-1.1.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:421e29339983e1bebc281fab40d812742268ad057db4aee8c4d2bce0af43b741", size = 394384, upload-time = "2025-10-14T15:04:33.761Z" }, + { url = "https://files.pythonhosted.org/packages/7b/c3/28b7dc99733eab43fca2d10f55c86e03bd6ab11ca31b802abac26b23d161/watchfiles-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6e43d39a741e972bab5d8100b5cdacf69db64e34eb19b6e9af162bccf63c5cc6", size = 448789, upload-time = "2025-10-14T15:04:34.679Z" }, + { url = "https://files.pythonhosted.org/packages/4a/24/33e71113b320030011c8e4316ccca04194bf0cbbaeee207f00cbc7d6b9f5/watchfiles-1.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f537afb3276d12814082a2e9b242bdcf416c2e8fd9f799a737990a1dbe906e5b", size = 460521, upload-time = "2025-10-14T15:04:35.963Z" }, + { url = "https://files.pythonhosted.org/packages/f4/c3/3c9a55f255aa57b91579ae9e98c88704955fa9dac3e5614fb378291155df/watchfiles-1.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b2cd9e04277e756a2e2d2543d65d1e2166d6fd4c9b183f8808634fda23f17b14", size = 488722, upload-time = "2025-10-14T15:04:37.091Z" }, + { url = "https://files.pythonhosted.org/packages/49/36/506447b73eb46c120169dc1717fe2eff07c234bb3232a7200b5f5bd816e9/watchfiles-1.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5f3f58818dc0b07f7d9aa7fe9eb1037aecb9700e63e1f6acfed13e9fef648f5d", size = 596088, upload-time = "2025-10-14T15:04:38.39Z" }, + { url = "https://files.pythonhosted.org/packages/82/ab/5f39e752a9838ec4d52e9b87c1e80f1ee3ccdbe92e183c15b6577ab9de16/watchfiles-1.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9bb9f66367023ae783551042d31b1d7fd422e8289eedd91f26754a66f44d5cff", size = 472923, upload-time = "2025-10-14T15:04:39.666Z" }, + { url = "https://files.pythonhosted.org/packages/af/b9/a419292f05e302dea372fa7e6fda5178a92998411f8581b9830d28fb9edb/watchfiles-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aebfd0861a83e6c3d1110b78ad54704486555246e542be3e2bb94195eabb2606", size = 456080, upload-time = "2025-10-14T15:04:40.643Z" }, + { url = "https://files.pythonhosted.org/packages/b0/c3/d5932fd62bde1a30c36e10c409dc5d54506726f08cb3e1d8d0ba5e2bc8db/watchfiles-1.1.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:5fac835b4ab3c6487b5dbad78c4b3724e26bcc468e886f8ba8cc4306f68f6701", size = 629432, upload-time = "2025-10-14T15:04:41.789Z" }, + { url = "https://files.pythonhosted.org/packages/f7/77/16bddd9779fafb795f1a94319dc965209c5641db5bf1edbbccace6d1b3c0/watchfiles-1.1.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:399600947b170270e80134ac854e21b3ccdefa11a9529a3decc1327088180f10", size = 623046, upload-time = "2025-10-14T15:04:42.718Z" }, + { url = "https://files.pythonhosted.org/packages/46/ef/f2ecb9a0f342b4bfad13a2787155c6ee7ce792140eac63a34676a2feeef2/watchfiles-1.1.1-cp311-cp311-win32.whl", hash = "sha256:de6da501c883f58ad50db3a32ad397b09ad29865b5f26f64c24d3e3281685849", size = 271473, upload-time = "2025-10-14T15:04:43.624Z" }, + { url = "https://files.pythonhosted.org/packages/94/bc/f42d71125f19731ea435c3948cad148d31a64fccde3867e5ba4edee901f9/watchfiles-1.1.1-cp311-cp311-win_amd64.whl", hash = "sha256:35c53bd62a0b885bf653ebf6b700d1bf05debb78ad9292cf2a942b23513dc4c4", size = 287598, upload-time = "2025-10-14T15:04:44.516Z" }, + { url = "https://files.pythonhosted.org/packages/57/c9/a30f897351f95bbbfb6abcadafbaca711ce1162f4db95fc908c98a9165f3/watchfiles-1.1.1-cp311-cp311-win_arm64.whl", hash = "sha256:57ca5281a8b5e27593cb7d82c2ac927ad88a96ed406aa446f6344e4328208e9e", size = 277210, upload-time = "2025-10-14T15:04:45.883Z" }, + { url = "https://files.pythonhosted.org/packages/74/d5/f039e7e3c639d9b1d09b07ea412a6806d38123f0508e5f9b48a87b0a76cc/watchfiles-1.1.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:8c89f9f2f740a6b7dcc753140dd5e1ab9215966f7a3530d0c0705c83b401bd7d", size = 404745, upload-time = "2025-10-14T15:04:46.731Z" }, + { url = "https://files.pythonhosted.org/packages/a5/96/a881a13aa1349827490dab2d363c8039527060cfcc2c92cc6d13d1b1049e/watchfiles-1.1.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:bd404be08018c37350f0d6e34676bd1e2889990117a2b90070b3007f172d0610", size = 391769, upload-time = "2025-10-14T15:04:48.003Z" }, + { url = "https://files.pythonhosted.org/packages/4b/5b/d3b460364aeb8da471c1989238ea0e56bec24b6042a68046adf3d9ddb01c/watchfiles-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8526e8f916bb5b9a0a777c8317c23ce65de259422bba5b31325a6fa6029d33af", size = 449374, upload-time = "2025-10-14T15:04:49.179Z" }, + { url = "https://files.pythonhosted.org/packages/b9/44/5769cb62d4ed055cb17417c0a109a92f007114a4e07f30812a73a4efdb11/watchfiles-1.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2edc3553362b1c38d9f06242416a5d8e9fe235c204a4072e988ce2e5bb1f69f6", size = 459485, upload-time = "2025-10-14T15:04:50.155Z" }, + { url = "https://files.pythonhosted.org/packages/19/0c/286b6301ded2eccd4ffd0041a1b726afda999926cf720aab63adb68a1e36/watchfiles-1.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:30f7da3fb3f2844259cba4720c3fc7138eb0f7b659c38f3bfa65084c7fc7abce", size = 488813, upload-time = "2025-10-14T15:04:51.059Z" }, + { url = "https://files.pythonhosted.org/packages/c7/2b/8530ed41112dd4a22f4dcfdb5ccf6a1baad1ff6eed8dc5a5f09e7e8c41c7/watchfiles-1.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f8979280bdafff686ba5e4d8f97840f929a87ed9cdf133cbbd42f7766774d2aa", size = 594816, upload-time = "2025-10-14T15:04:52.031Z" }, + { url = "https://files.pythonhosted.org/packages/ce/d2/f5f9fb49489f184f18470d4f99f4e862a4b3e9ac2865688eb2099e3d837a/watchfiles-1.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dcc5c24523771db3a294c77d94771abcfcb82a0e0ee8efd910c37c59ec1b31bb", size = 475186, upload-time = "2025-10-14T15:04:53.064Z" }, + { url = "https://files.pythonhosted.org/packages/cf/68/5707da262a119fb06fbe214d82dd1fe4a6f4af32d2d14de368d0349eb52a/watchfiles-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1db5d7ae38ff20153d542460752ff397fcf5c96090c1230803713cf3147a6803", size = 456812, upload-time = "2025-10-14T15:04:55.174Z" }, + { url = "https://files.pythonhosted.org/packages/66/ab/3cbb8756323e8f9b6f9acb9ef4ec26d42b2109bce830cc1f3468df20511d/watchfiles-1.1.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:28475ddbde92df1874b6c5c8aaeb24ad5be47a11f87cde5a28ef3835932e3e94", size = 630196, upload-time = "2025-10-14T15:04:56.22Z" }, + { url = "https://files.pythonhosted.org/packages/78/46/7152ec29b8335f80167928944a94955015a345440f524d2dfe63fc2f437b/watchfiles-1.1.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:36193ed342f5b9842edd3532729a2ad55c4160ffcfa3700e0d54be496b70dd43", size = 622657, upload-time = "2025-10-14T15:04:57.521Z" }, + { url = "https://files.pythonhosted.org/packages/0a/bf/95895e78dd75efe9a7f31733607f384b42eb5feb54bd2eb6ed57cc2e94f4/watchfiles-1.1.1-cp312-cp312-win32.whl", hash = "sha256:859e43a1951717cc8de7f4c77674a6d389b106361585951d9e69572823f311d9", size = 272042, upload-time = "2025-10-14T15:04:59.046Z" }, + { url = "https://files.pythonhosted.org/packages/87/0a/90eb755f568de2688cb220171c4191df932232c20946966c27a59c400850/watchfiles-1.1.1-cp312-cp312-win_amd64.whl", hash = "sha256:91d4c9a823a8c987cce8fa2690923b069966dabb196dd8d137ea2cede885fde9", size = 288410, upload-time = "2025-10-14T15:05:00.081Z" }, + { url = "https://files.pythonhosted.org/packages/36/76/f322701530586922fbd6723c4f91ace21364924822a8772c549483abed13/watchfiles-1.1.1-cp312-cp312-win_arm64.whl", hash = "sha256:a625815d4a2bdca61953dbba5a39d60164451ef34c88d751f6c368c3ea73d404", size = 278209, upload-time = "2025-10-14T15:05:01.168Z" }, + { url = "https://files.pythonhosted.org/packages/bb/f4/f750b29225fe77139f7ae5de89d4949f5a99f934c65a1f1c0b248f26f747/watchfiles-1.1.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:130e4876309e8686a5e37dba7d5e9bc77e6ed908266996ca26572437a5271e18", size = 404321, upload-time = "2025-10-14T15:05:02.063Z" }, + { url = "https://files.pythonhosted.org/packages/2b/f9/f07a295cde762644aa4c4bb0f88921d2d141af45e735b965fb2e87858328/watchfiles-1.1.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:5f3bde70f157f84ece3765b42b4a52c6ac1a50334903c6eaf765362f6ccca88a", size = 391783, upload-time = "2025-10-14T15:05:03.052Z" }, + { url = "https://files.pythonhosted.org/packages/bc/11/fc2502457e0bea39a5c958d86d2cb69e407a4d00b85735ca724bfa6e0d1a/watchfiles-1.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:14e0b1fe858430fc0251737ef3824c54027bedb8c37c38114488b8e131cf8219", size = 449279, upload-time = "2025-10-14T15:05:04.004Z" }, + { url = "https://files.pythonhosted.org/packages/e3/1f/d66bc15ea0b728df3ed96a539c777acfcad0eb78555ad9efcaa1274688f0/watchfiles-1.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f27db948078f3823a6bb3b465180db8ebecf26dd5dae6f6180bd87383b6b4428", size = 459405, upload-time = "2025-10-14T15:05:04.942Z" }, + { url = "https://files.pythonhosted.org/packages/be/90/9f4a65c0aec3ccf032703e6db02d89a157462fbb2cf20dd415128251cac0/watchfiles-1.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:059098c3a429f62fc98e8ec62b982230ef2c8df68c79e826e37b895bc359a9c0", size = 488976, upload-time = "2025-10-14T15:05:05.905Z" }, + { url = "https://files.pythonhosted.org/packages/37/57/ee347af605d867f712be7029bb94c8c071732a4b44792e3176fa3c612d39/watchfiles-1.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bfb5862016acc9b869bb57284e6cb35fdf8e22fe59f7548858e2f971d045f150", size = 595506, upload-time = "2025-10-14T15:05:06.906Z" }, + { url = "https://files.pythonhosted.org/packages/a8/78/cc5ab0b86c122047f75e8fc471c67a04dee395daf847d3e59381996c8707/watchfiles-1.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:319b27255aacd9923b8a276bb14d21a5f7ff82564c744235fc5eae58d95422ae", size = 474936, upload-time = "2025-10-14T15:05:07.906Z" }, + { url = "https://files.pythonhosted.org/packages/62/da/def65b170a3815af7bd40a3e7010bf6ab53089ef1b75d05dd5385b87cf08/watchfiles-1.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c755367e51db90e75b19454b680903631d41f9e3607fbd941d296a020c2d752d", size = 456147, upload-time = "2025-10-14T15:05:09.138Z" }, + { url = "https://files.pythonhosted.org/packages/57/99/da6573ba71166e82d288d4df0839128004c67d2778d3b566c138695f5c0b/watchfiles-1.1.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:c22c776292a23bfc7237a98f791b9ad3144b02116ff10d820829ce62dff46d0b", size = 630007, upload-time = "2025-10-14T15:05:10.117Z" }, + { url = "https://files.pythonhosted.org/packages/a8/51/7439c4dd39511368849eb1e53279cd3454b4a4dbace80bab88feeb83c6b5/watchfiles-1.1.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:3a476189be23c3686bc2f4321dd501cb329c0a0469e77b7b534ee10129ae6374", size = 622280, upload-time = "2025-10-14T15:05:11.146Z" }, + { url = "https://files.pythonhosted.org/packages/95/9c/8ed97d4bba5db6fdcdb2b298d3898f2dd5c20f6b73aee04eabe56c59677e/watchfiles-1.1.1-cp313-cp313-win32.whl", hash = "sha256:bf0a91bfb5574a2f7fc223cf95eeea79abfefa404bf1ea5e339c0c1560ae99a0", size = 272056, upload-time = "2025-10-14T15:05:12.156Z" }, + { url = "https://files.pythonhosted.org/packages/1f/f3/c14e28429f744a260d8ceae18bf58c1d5fa56b50d006a7a9f80e1882cb0d/watchfiles-1.1.1-cp313-cp313-win_amd64.whl", hash = "sha256:52e06553899e11e8074503c8e716d574adeeb7e68913115c4b3653c53f9bae42", size = 288162, upload-time = "2025-10-14T15:05:13.208Z" }, + { url = "https://files.pythonhosted.org/packages/dc/61/fe0e56c40d5cd29523e398d31153218718c5786b5e636d9ae8ae79453d27/watchfiles-1.1.1-cp313-cp313-win_arm64.whl", hash = "sha256:ac3cc5759570cd02662b15fbcd9d917f7ecd47efe0d6b40474eafd246f91ea18", size = 277909, upload-time = "2025-10-14T15:05:14.49Z" }, + { url = "https://files.pythonhosted.org/packages/79/42/e0a7d749626f1e28c7108a99fb9bf524b501bbbeb9b261ceecde644d5a07/watchfiles-1.1.1-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:563b116874a9a7ce6f96f87cd0b94f7faf92d08d0021e837796f0a14318ef8da", size = 403389, upload-time = "2025-10-14T15:05:15.777Z" }, + { url = "https://files.pythonhosted.org/packages/15/49/08732f90ce0fbbc13913f9f215c689cfc9ced345fb1bcd8829a50007cc8d/watchfiles-1.1.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3ad9fe1dae4ab4212d8c91e80b832425e24f421703b5a42ef2e4a1e215aff051", size = 389964, upload-time = "2025-10-14T15:05:16.85Z" }, + { url = "https://files.pythonhosted.org/packages/27/0d/7c315d4bd5f2538910491a0393c56bf70d333d51bc5b34bee8e68e8cea19/watchfiles-1.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce70f96a46b894b36eba678f153f052967a0d06d5b5a19b336ab0dbbd029f73e", size = 448114, upload-time = "2025-10-14T15:05:17.876Z" }, + { url = "https://files.pythonhosted.org/packages/c3/24/9e096de47a4d11bc4df41e9d1e61776393eac4cb6eb11b3e23315b78b2cc/watchfiles-1.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:cb467c999c2eff23a6417e58d75e5828716f42ed8289fe6b77a7e5a91036ca70", size = 460264, upload-time = "2025-10-14T15:05:18.962Z" }, + { url = "https://files.pythonhosted.org/packages/cc/0f/e8dea6375f1d3ba5fcb0b3583e2b493e77379834c74fd5a22d66d85d6540/watchfiles-1.1.1-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:836398932192dae4146c8f6f737d74baeac8b70ce14831a239bdb1ca882fc261", size = 487877, upload-time = "2025-10-14T15:05:20.094Z" }, + { url = "https://files.pythonhosted.org/packages/ac/5b/df24cfc6424a12deb41503b64d42fbea6b8cb357ec62ca84a5a3476f654a/watchfiles-1.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:743185e7372b7bc7c389e1badcc606931a827112fbbd37f14c537320fca08620", size = 595176, upload-time = "2025-10-14T15:05:21.134Z" }, + { url = "https://files.pythonhosted.org/packages/8f/b5/853b6757f7347de4e9b37e8cc3289283fb983cba1ab4d2d7144694871d9c/watchfiles-1.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:afaeff7696e0ad9f02cbb8f56365ff4686ab205fcf9c4c5b6fdfaaa16549dd04", size = 473577, upload-time = "2025-10-14T15:05:22.306Z" }, + { url = "https://files.pythonhosted.org/packages/e1/f7/0a4467be0a56e80447c8529c9fce5b38eab4f513cb3d9bf82e7392a5696b/watchfiles-1.1.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3f7eb7da0eb23aa2ba036d4f616d46906013a68caf61b7fdbe42fc8b25132e77", size = 455425, upload-time = "2025-10-14T15:05:23.348Z" }, + { url = "https://files.pythonhosted.org/packages/8e/e0/82583485ea00137ddf69bc84a2db88bd92ab4a6e3c405e5fb878ead8d0e7/watchfiles-1.1.1-cp313-cp313t-musllinux_1_1_aarch64.whl", hash = "sha256:831a62658609f0e5c64178211c942ace999517f5770fe9436be4c2faeba0c0ef", size = 628826, upload-time = "2025-10-14T15:05:24.398Z" }, + { url = "https://files.pythonhosted.org/packages/28/9a/a785356fccf9fae84c0cc90570f11702ae9571036fb25932f1242c82191c/watchfiles-1.1.1-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:f9a2ae5c91cecc9edd47e041a930490c31c3afb1f5e6d71de3dc671bfaca02bf", size = 622208, upload-time = "2025-10-14T15:05:25.45Z" }, + { url = "https://files.pythonhosted.org/packages/c3/f4/0872229324ef69b2c3edec35e84bd57a1289e7d3fe74588048ed8947a323/watchfiles-1.1.1-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:d1715143123baeeaeadec0528bb7441103979a1d5f6fd0e1f915383fea7ea6d5", size = 404315, upload-time = "2025-10-14T15:05:26.501Z" }, + { url = "https://files.pythonhosted.org/packages/7b/22/16d5331eaed1cb107b873f6ae1b69e9ced582fcf0c59a50cd84f403b1c32/watchfiles-1.1.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:39574d6370c4579d7f5d0ad940ce5b20db0e4117444e39b6d8f99db5676c52fd", size = 390869, upload-time = "2025-10-14T15:05:27.649Z" }, + { url = "https://files.pythonhosted.org/packages/b2/7e/5643bfff5acb6539b18483128fdc0ef2cccc94a5b8fbda130c823e8ed636/watchfiles-1.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7365b92c2e69ee952902e8f70f3ba6360d0d596d9299d55d7d386df84b6941fb", size = 449919, upload-time = "2025-10-14T15:05:28.701Z" }, + { url = "https://files.pythonhosted.org/packages/51/2e/c410993ba5025a9f9357c376f48976ef0e1b1aefb73b97a5ae01a5972755/watchfiles-1.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bfff9740c69c0e4ed32416f013f3c45e2ae42ccedd1167ef2d805c000b6c71a5", size = 460845, upload-time = "2025-10-14T15:05:30.064Z" }, + { url = "https://files.pythonhosted.org/packages/8e/a4/2df3b404469122e8680f0fcd06079317e48db58a2da2950fb45020947734/watchfiles-1.1.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b27cf2eb1dda37b2089e3907d8ea92922b673c0c427886d4edc6b94d8dfe5db3", size = 489027, upload-time = "2025-10-14T15:05:31.064Z" }, + { url = "https://files.pythonhosted.org/packages/ea/84/4587ba5b1f267167ee715b7f66e6382cca6938e0a4b870adad93e44747e6/watchfiles-1.1.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:526e86aced14a65a5b0ec50827c745597c782ff46b571dbfe46192ab9e0b3c33", size = 595615, upload-time = "2025-10-14T15:05:32.074Z" }, + { url = "https://files.pythonhosted.org/packages/6a/0f/c6988c91d06e93cd0bb3d4a808bcf32375ca1904609835c3031799e3ecae/watchfiles-1.1.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:04e78dd0b6352db95507fd8cb46f39d185cf8c74e4cf1e4fbad1d3df96faf510", size = 474836, upload-time = "2025-10-14T15:05:33.209Z" }, + { url = "https://files.pythonhosted.org/packages/b4/36/ded8aebea91919485b7bbabbd14f5f359326cb5ec218cd67074d1e426d74/watchfiles-1.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c85794a4cfa094714fb9c08d4a218375b2b95b8ed1666e8677c349906246c05", size = 455099, upload-time = "2025-10-14T15:05:34.189Z" }, + { url = "https://files.pythonhosted.org/packages/98/e0/8c9bdba88af756a2fce230dd365fab2baf927ba42cd47521ee7498fd5211/watchfiles-1.1.1-cp314-cp314-musllinux_1_1_aarch64.whl", hash = "sha256:74d5012b7630714b66be7b7b7a78855ef7ad58e8650c73afc4c076a1f480a8d6", size = 630626, upload-time = "2025-10-14T15:05:35.216Z" }, + { url = "https://files.pythonhosted.org/packages/2a/84/a95db05354bf2d19e438520d92a8ca475e578c647f78f53197f5a2f17aaf/watchfiles-1.1.1-cp314-cp314-musllinux_1_1_x86_64.whl", hash = "sha256:8fbe85cb3201c7d380d3d0b90e63d520f15d6afe217165d7f98c9c649654db81", size = 622519, upload-time = "2025-10-14T15:05:36.259Z" }, + { url = "https://files.pythonhosted.org/packages/1d/ce/d8acdc8de545de995c339be67711e474c77d643555a9bb74a9334252bd55/watchfiles-1.1.1-cp314-cp314-win32.whl", hash = "sha256:3fa0b59c92278b5a7800d3ee7733da9d096d4aabcfabb9a928918bd276ef9b9b", size = 272078, upload-time = "2025-10-14T15:05:37.63Z" }, + { url = "https://files.pythonhosted.org/packages/c4/c9/a74487f72d0451524be827e8edec251da0cc1fcf111646a511ae752e1a3d/watchfiles-1.1.1-cp314-cp314-win_amd64.whl", hash = "sha256:c2047d0b6cea13b3316bdbafbfa0c4228ae593d995030fda39089d36e64fc03a", size = 287664, upload-time = "2025-10-14T15:05:38.95Z" }, + { url = "https://files.pythonhosted.org/packages/df/b8/8ac000702cdd496cdce998c6f4ee0ca1f15977bba51bdf07d872ebdfc34c/watchfiles-1.1.1-cp314-cp314-win_arm64.whl", hash = "sha256:842178b126593addc05acf6fce960d28bc5fae7afbaa2c6c1b3a7b9460e5be02", size = 277154, upload-time = "2025-10-14T15:05:39.954Z" }, + { url = "https://files.pythonhosted.org/packages/47/a8/e3af2184707c29f0f14b1963c0aace6529f9d1b8582d5b99f31bbf42f59e/watchfiles-1.1.1-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:88863fbbc1a7312972f1c511f202eb30866370ebb8493aef2812b9ff28156a21", size = 403820, upload-time = "2025-10-14T15:05:40.932Z" }, + { url = "https://files.pythonhosted.org/packages/c0/ec/e47e307c2f4bd75f9f9e8afbe3876679b18e1bcec449beca132a1c5ffb2d/watchfiles-1.1.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:55c7475190662e202c08c6c0f4d9e345a29367438cf8e8037f3155e10a88d5a5", size = 390510, upload-time = "2025-10-14T15:05:41.945Z" }, + { url = "https://files.pythonhosted.org/packages/d5/a0/ad235642118090f66e7b2f18fd5c42082418404a79205cdfca50b6309c13/watchfiles-1.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3f53fa183d53a1d7a8852277c92b967ae99c2d4dcee2bfacff8868e6e30b15f7", size = 448408, upload-time = "2025-10-14T15:05:43.385Z" }, + { url = "https://files.pythonhosted.org/packages/df/85/97fa10fd5ff3332ae17e7e40e20784e419e28521549780869f1413742e9d/watchfiles-1.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6aae418a8b323732fa89721d86f39ec8f092fc2af67f4217a2b07fd3e93c6101", size = 458968, upload-time = "2025-10-14T15:05:44.404Z" }, + { url = "https://files.pythonhosted.org/packages/47/c2/9059c2e8966ea5ce678166617a7f75ecba6164375f3b288e50a40dc6d489/watchfiles-1.1.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f096076119da54a6080e8920cbdaac3dbee667eb91dcc5e5b78840b87415bd44", size = 488096, upload-time = "2025-10-14T15:05:45.398Z" }, + { url = "https://files.pythonhosted.org/packages/94/44/d90a9ec8ac309bc26db808a13e7bfc0e4e78b6fc051078a554e132e80160/watchfiles-1.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:00485f441d183717038ed2e887a7c868154f216877653121068107b227a2f64c", size = 596040, upload-time = "2025-10-14T15:05:46.502Z" }, + { url = "https://files.pythonhosted.org/packages/95/68/4e3479b20ca305cfc561db3ed207a8a1c745ee32bf24f2026a129d0ddb6e/watchfiles-1.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a55f3e9e493158d7bfdb60a1165035f1cf7d320914e7b7ea83fe22c6023b58fc", size = 473847, upload-time = "2025-10-14T15:05:47.484Z" }, + { url = "https://files.pythonhosted.org/packages/4f/55/2af26693fd15165c4ff7857e38330e1b61ab8c37d15dc79118cdba115b7a/watchfiles-1.1.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c91ed27800188c2ae96d16e3149f199d62f86c7af5f5f4d2c61a3ed8cd3666c", size = 455072, upload-time = "2025-10-14T15:05:48.928Z" }, + { url = "https://files.pythonhosted.org/packages/66/1d/d0d200b10c9311ec25d2273f8aad8c3ef7cc7ea11808022501811208a750/watchfiles-1.1.1-cp314-cp314t-musllinux_1_1_aarch64.whl", hash = "sha256:311ff15a0bae3714ffb603e6ba6dbfba4065ab60865d15a6ec544133bdb21099", size = 629104, upload-time = "2025-10-14T15:05:49.908Z" }, + { url = "https://files.pythonhosted.org/packages/e3/bd/fa9bb053192491b3867ba07d2343d9f2252e00811567d30ae8d0f78136fe/watchfiles-1.1.1-cp314-cp314t-musllinux_1_1_x86_64.whl", hash = "sha256:a916a2932da8f8ab582f242c065f5c81bed3462849ca79ee357dd9551b0e9b01", size = 622112, upload-time = "2025-10-14T15:05:50.941Z" }, + { url = "https://files.pythonhosted.org/packages/d3/8e/e500f8b0b77be4ff753ac94dc06b33d8f0d839377fee1b78e8c8d8f031bf/watchfiles-1.1.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:db476ab59b6765134de1d4fe96a1a9c96ddf091683599be0f26147ea1b2e4b88", size = 408250, upload-time = "2025-10-14T15:06:10.264Z" }, + { url = "https://files.pythonhosted.org/packages/bd/95/615e72cd27b85b61eec764a5ca51bd94d40b5adea5ff47567d9ebc4d275a/watchfiles-1.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:89eef07eee5e9d1fda06e38822ad167a044153457e6fd997f8a858ab7564a336", size = 396117, upload-time = "2025-10-14T15:06:11.28Z" }, + { url = "https://files.pythonhosted.org/packages/c9/81/e7fe958ce8a7fb5c73cc9fb07f5aeaf755e6aa72498c57d760af760c91f8/watchfiles-1.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce19e06cbda693e9e7686358af9cd6f5d61312ab8b00488bc36f5aabbaf77e24", size = 450493, upload-time = "2025-10-14T15:06:12.321Z" }, + { url = "https://files.pythonhosted.org/packages/6e/d4/ed38dd3b1767193de971e694aa544356e63353c33a85d948166b5ff58b9e/watchfiles-1.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3e6f39af2eab0118338902798b5aa6664f46ff66bc0280de76fca67a7f262a49", size = 457546, upload-time = "2025-10-14T15:06:13.372Z" }, +] + +[[package]] +name = "wcwidth" +version = "0.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/35/a2/8e3becb46433538a38726c948d3399905a4c7cabd0df578ede5dc51f0ec2/wcwidth-0.6.0.tar.gz", hash = "sha256:cdc4e4262d6ef9a1a57e018384cbeb1208d8abbc64176027e2c2455c81313159", size = 159684, upload-time = "2026-02-06T19:19:40.919Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/68/5a/199c59e0a824a3db2b89c5d2dade7ab5f9624dbf6448dc291b46d5ec94d3/wcwidth-0.6.0-py3-none-any.whl", hash = "sha256:1a3a1e510b553315f8e146c54764f4fb6264ffad731b3d78088cdb1478ffbdad", size = 94189, upload-time = "2026-02-06T19:19:39.646Z" }, +] + +[[package]] +name = "webcolors" +version = "25.10.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1d/7a/eb316761ec35664ea5174709a68bbd3389de60d4a1ebab8808bfc264ed67/webcolors-25.10.0.tar.gz", hash = "sha256:62abae86504f66d0f6364c2a8520de4a0c47b80c03fc3a5f1815fedbef7c19bf", size = 53491, upload-time = "2025-10-31T07:51:03.977Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e2/cc/e097523dd85c9cf5d354f78310927f1656c422bd7b2613b2db3e3f9a0f2c/webcolors-25.10.0-py3-none-any.whl", hash = "sha256:032c727334856fc0b968f63daa252a1ac93d33db2f5267756623c210e57a4f1d", size = 14905, upload-time = "2025-10-31T07:51:01.778Z" }, +] + +[[package]] +name = "webencodings" +version = "0.5.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0b/02/ae6ceac1baeda530866a85075641cec12989bd8d31af6d5ab4a3e8c92f47/webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923", size = 9721, upload-time = "2017-04-05T20:21:34.189Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/24/2a3e3df732393fed8b3ebf2ec078f05546de641fe1b667ee316ec1dcf3b7/webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78", size = 11774, upload-time = "2017-04-05T20:21:32.581Z" }, +] + +[[package]] +name = "websocket-client" +version = "1.9.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2c/41/aa4bf9664e4cda14c3b39865b12251e8e7d239f4cd0e3cc1b6c2ccde25c1/websocket_client-1.9.0.tar.gz", hash = "sha256:9e813624b6eb619999a97dc7958469217c3176312b3a16a4bd1bc7e08a46ec98", size = 70576, upload-time = "2025-10-07T21:16:36.495Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/34/db/b10e48aa8fff7407e67470363eac595018441cf32d5e1001567a7aeba5d2/websocket_client-1.9.0-py3-none-any.whl", hash = "sha256:af248a825037ef591efbf6ed20cc5faa03d3b47b9e5a2230a529eeee1c1fc3ef", size = 82616, upload-time = "2025-10-07T21:16:34.951Z" }, +] + +[[package]] +name = "websockets" +version = "16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/04/24/4b2031d72e840ce4c1ccb255f693b15c334757fc50023e4db9537080b8c4/websockets-16.0.tar.gz", hash = "sha256:5f6261a5e56e8d5c42a4497b364ea24d94d9563e8fbd44e78ac40879c60179b5", size = 179346, upload-time = "2026-01-10T09:23:47.181Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f2/db/de907251b4ff46ae804ad0409809504153b3f30984daf82a1d84a9875830/websockets-16.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:31a52addea25187bde0797a97d6fc3d2f92b6f72a9370792d65a6e84615ac8a8", size = 177340, upload-time = "2026-01-10T09:22:34.539Z" }, + { url = "https://files.pythonhosted.org/packages/f3/fa/abe89019d8d8815c8781e90d697dec52523fb8ebe308bf11664e8de1877e/websockets-16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:417b28978cdccab24f46400586d128366313e8a96312e4b9362a4af504f3bbad", size = 175022, upload-time = "2026-01-10T09:22:36.332Z" }, + { url = "https://files.pythonhosted.org/packages/58/5d/88ea17ed1ded2079358b40d31d48abe90a73c9e5819dbcde1606e991e2ad/websockets-16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:af80d74d4edfa3cb9ed973a0a5ba2b2a549371f8a741e0800cb07becdd20f23d", size = 175319, upload-time = "2026-01-10T09:22:37.602Z" }, + { url = "https://files.pythonhosted.org/packages/d2/ae/0ee92b33087a33632f37a635e11e1d99d429d3d323329675a6022312aac2/websockets-16.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:08d7af67b64d29823fed316505a89b86705f2b7981c07848fb5e3ea3020c1abe", size = 184631, upload-time = "2026-01-10T09:22:38.789Z" }, + { url = "https://files.pythonhosted.org/packages/c8/c5/27178df583b6c5b31b29f526ba2da5e2f864ecc79c99dae630a85d68c304/websockets-16.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7be95cfb0a4dae143eaed2bcba8ac23f4892d8971311f1b06f3c6b78952ee70b", size = 185870, upload-time = "2026-01-10T09:22:39.893Z" }, + { url = "https://files.pythonhosted.org/packages/87/05/536652aa84ddc1c018dbb7e2c4cbcd0db884580bf8e95aece7593fde526f/websockets-16.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d6297ce39ce5c2e6feb13c1a996a2ded3b6832155fcfc920265c76f24c7cceb5", size = 185361, upload-time = "2026-01-10T09:22:41.016Z" }, + { url = "https://files.pythonhosted.org/packages/6d/e2/d5332c90da12b1e01f06fb1b85c50cfc489783076547415bf9f0a659ec19/websockets-16.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:1c1b30e4f497b0b354057f3467f56244c603a79c0d1dafce1d16c283c25f6e64", size = 184615, upload-time = "2026-01-10T09:22:42.442Z" }, + { url = "https://files.pythonhosted.org/packages/77/fb/d3f9576691cae9253b51555f841bc6600bf0a983a461c79500ace5a5b364/websockets-16.0-cp311-cp311-win32.whl", hash = "sha256:5f451484aeb5cafee1ccf789b1b66f535409d038c56966d6101740c1614b86c6", size = 178246, upload-time = "2026-01-10T09:22:43.654Z" }, + { url = "https://files.pythonhosted.org/packages/54/67/eaff76b3dbaf18dcddabc3b8c1dba50b483761cccff67793897945b37408/websockets-16.0-cp311-cp311-win_amd64.whl", hash = "sha256:8d7f0659570eefb578dacde98e24fb60af35350193e4f56e11190787bee77dac", size = 178684, upload-time = "2026-01-10T09:22:44.941Z" }, + { url = "https://files.pythonhosted.org/packages/84/7b/bac442e6b96c9d25092695578dda82403c77936104b5682307bd4deb1ad4/websockets-16.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:71c989cbf3254fbd5e84d3bff31e4da39c43f884e64f2551d14bb3c186230f00", size = 177365, upload-time = "2026-01-10T09:22:46.787Z" }, + { url = "https://files.pythonhosted.org/packages/b0/fe/136ccece61bd690d9c1f715baaeefd953bb2360134de73519d5df19d29ca/websockets-16.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:8b6e209ffee39ff1b6d0fa7bfef6de950c60dfb91b8fcead17da4ee539121a79", size = 175038, upload-time = "2026-01-10T09:22:47.999Z" }, + { url = "https://files.pythonhosted.org/packages/40/1e/9771421ac2286eaab95b8575b0cb701ae3663abf8b5e1f64f1fd90d0a673/websockets-16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:86890e837d61574c92a97496d590968b23c2ef0aeb8a9bc9421d174cd378ae39", size = 175328, upload-time = "2026-01-10T09:22:49.809Z" }, + { url = "https://files.pythonhosted.org/packages/18/29/71729b4671f21e1eaa5d6573031ab810ad2936c8175f03f97f3ff164c802/websockets-16.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:9b5aca38b67492ef518a8ab76851862488a478602229112c4b0d58d63a7a4d5c", size = 184915, upload-time = "2026-01-10T09:22:51.071Z" }, + { url = "https://files.pythonhosted.org/packages/97/bb/21c36b7dbbafc85d2d480cd65df02a1dc93bf76d97147605a8e27ff9409d/websockets-16.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e0334872c0a37b606418ac52f6ab9cfd17317ac26365f7f65e203e2d0d0d359f", size = 186152, upload-time = "2026-01-10T09:22:52.224Z" }, + { url = "https://files.pythonhosted.org/packages/4a/34/9bf8df0c0cf88fa7bfe36678dc7b02970c9a7d5e065a3099292db87b1be2/websockets-16.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a0b31e0b424cc6b5a04b8838bbaec1688834b2383256688cf47eb97412531da1", size = 185583, upload-time = "2026-01-10T09:22:53.443Z" }, + { url = "https://files.pythonhosted.org/packages/47/88/4dd516068e1a3d6ab3c7c183288404cd424a9a02d585efbac226cb61ff2d/websockets-16.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:485c49116d0af10ac698623c513c1cc01c9446c058a4e61e3bf6c19dff7335a2", size = 184880, upload-time = "2026-01-10T09:22:55.033Z" }, + { url = "https://files.pythonhosted.org/packages/91/d6/7d4553ad4bf1c0421e1ebd4b18de5d9098383b5caa1d937b63df8d04b565/websockets-16.0-cp312-cp312-win32.whl", hash = "sha256:eaded469f5e5b7294e2bdca0ab06becb6756ea86894a47806456089298813c89", size = 178261, upload-time = "2026-01-10T09:22:56.251Z" }, + { url = "https://files.pythonhosted.org/packages/c3/f0/f3a17365441ed1c27f850a80b2bc680a0fa9505d733fe152fdf5e98c1c0b/websockets-16.0-cp312-cp312-win_amd64.whl", hash = "sha256:5569417dc80977fc8c2d43a86f78e0a5a22fee17565d78621b6bb264a115d4ea", size = 178693, upload-time = "2026-01-10T09:22:57.478Z" }, + { url = "https://files.pythonhosted.org/packages/cc/9c/baa8456050d1c1b08dd0ec7346026668cbc6f145ab4e314d707bb845bf0d/websockets-16.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:878b336ac47938b474c8f982ac2f7266a540adc3fa4ad74ae96fea9823a02cc9", size = 177364, upload-time = "2026-01-10T09:22:59.333Z" }, + { url = "https://files.pythonhosted.org/packages/7e/0c/8811fc53e9bcff68fe7de2bcbe75116a8d959ac699a3200f4847a8925210/websockets-16.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:52a0fec0e6c8d9a784c2c78276a48a2bdf099e4ccc2a4cad53b27718dbfd0230", size = 175039, upload-time = "2026-01-10T09:23:01.171Z" }, + { url = "https://files.pythonhosted.org/packages/aa/82/39a5f910cb99ec0b59e482971238c845af9220d3ab9fa76dd9162cda9d62/websockets-16.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:e6578ed5b6981005df1860a56e3617f14a6c307e6a71b4fff8c48fdc50f3ed2c", size = 175323, upload-time = "2026-01-10T09:23:02.341Z" }, + { url = "https://files.pythonhosted.org/packages/bd/28/0a25ee5342eb5d5f297d992a77e56892ecb65e7854c7898fb7d35e9b33bd/websockets-16.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:95724e638f0f9c350bb1c2b0a7ad0e83d9cc0c9259f3ea94e40d7b02a2179ae5", size = 184975, upload-time = "2026-01-10T09:23:03.756Z" }, + { url = "https://files.pythonhosted.org/packages/f9/66/27ea52741752f5107c2e41fda05e8395a682a1e11c4e592a809a90c6a506/websockets-16.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c0204dc62a89dc9d50d682412c10b3542d748260d743500a85c13cd1ee4bde82", size = 186203, upload-time = "2026-01-10T09:23:05.01Z" }, + { url = "https://files.pythonhosted.org/packages/37/e5/8e32857371406a757816a2b471939d51c463509be73fa538216ea52b792a/websockets-16.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:52ac480f44d32970d66763115edea932f1c5b1312de36df06d6b219f6741eed8", size = 185653, upload-time = "2026-01-10T09:23:06.301Z" }, + { url = "https://files.pythonhosted.org/packages/9b/67/f926bac29882894669368dc73f4da900fcdf47955d0a0185d60103df5737/websockets-16.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6e5a82b677f8f6f59e8dfc34ec06ca6b5b48bc4fcda346acd093694cc2c24d8f", size = 184920, upload-time = "2026-01-10T09:23:07.492Z" }, + { url = "https://files.pythonhosted.org/packages/3c/a1/3d6ccdcd125b0a42a311bcd15a7f705d688f73b2a22d8cf1c0875d35d34a/websockets-16.0-cp313-cp313-win32.whl", hash = "sha256:abf050a199613f64c886ea10f38b47770a65154dc37181bfaff70c160f45315a", size = 178255, upload-time = "2026-01-10T09:23:09.245Z" }, + { url = "https://files.pythonhosted.org/packages/6b/ae/90366304d7c2ce80f9b826096a9e9048b4bb760e44d3b873bb272cba696b/websockets-16.0-cp313-cp313-win_amd64.whl", hash = "sha256:3425ac5cf448801335d6fdc7ae1eb22072055417a96cc6b31b3861f455fbc156", size = 178689, upload-time = "2026-01-10T09:23:10.483Z" }, + { url = "https://files.pythonhosted.org/packages/f3/1d/e88022630271f5bd349ed82417136281931e558d628dd52c4d8621b4a0b2/websockets-16.0-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:8cc451a50f2aee53042ac52d2d053d08bf89bcb31ae799cb4487587661c038a0", size = 177406, upload-time = "2026-01-10T09:23:12.178Z" }, + { url = "https://files.pythonhosted.org/packages/f2/78/e63be1bf0724eeb4616efb1ae1c9044f7c3953b7957799abb5915bffd38e/websockets-16.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:daa3b6ff70a9241cf6c7fc9e949d41232d9d7d26fd3522b1ad2b4d62487e9904", size = 175085, upload-time = "2026-01-10T09:23:13.511Z" }, + { url = "https://files.pythonhosted.org/packages/bb/f4/d3c9220d818ee955ae390cf319a7c7a467beceb24f05ee7aaaa2414345ba/websockets-16.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:fd3cb4adb94a2a6e2b7c0d8d05cb94e6f1c81a0cf9dc2694fb65c7e8d94c42e4", size = 175328, upload-time = "2026-01-10T09:23:14.727Z" }, + { url = "https://files.pythonhosted.org/packages/63/bc/d3e208028de777087e6fb2b122051a6ff7bbcca0d6df9d9c2bf1dd869ae9/websockets-16.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:781caf5e8eee67f663126490c2f96f40906594cb86b408a703630f95550a8c3e", size = 185044, upload-time = "2026-01-10T09:23:15.939Z" }, + { url = "https://files.pythonhosted.org/packages/ad/6e/9a0927ac24bd33a0a9af834d89e0abc7cfd8e13bed17a86407a66773cc0e/websockets-16.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:caab51a72c51973ca21fa8a18bd8165e1a0183f1ac7066a182ff27107b71e1a4", size = 186279, upload-time = "2026-01-10T09:23:17.148Z" }, + { url = "https://files.pythonhosted.org/packages/b9/ca/bf1c68440d7a868180e11be653c85959502efd3a709323230314fda6e0b3/websockets-16.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:19c4dc84098e523fd63711e563077d39e90ec6702aff4b5d9e344a60cb3c0cb1", size = 185711, upload-time = "2026-01-10T09:23:18.372Z" }, + { url = "https://files.pythonhosted.org/packages/c4/f8/fdc34643a989561f217bb477cbc47a3a07212cbda91c0e4389c43c296ebf/websockets-16.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:a5e18a238a2b2249c9a9235466b90e96ae4795672598a58772dd806edc7ac6d3", size = 184982, upload-time = "2026-01-10T09:23:19.652Z" }, + { url = "https://files.pythonhosted.org/packages/dd/d1/574fa27e233764dbac9c52730d63fcf2823b16f0856b3329fc6268d6ae4f/websockets-16.0-cp314-cp314-win32.whl", hash = "sha256:a069d734c4a043182729edd3e9f247c3b2a4035415a9172fd0f1b71658a320a8", size = 177915, upload-time = "2026-01-10T09:23:21.458Z" }, + { url = "https://files.pythonhosted.org/packages/8a/f1/ae6b937bf3126b5134ce1f482365fde31a357c784ac51852978768b5eff4/websockets-16.0-cp314-cp314-win_amd64.whl", hash = "sha256:c0ee0e63f23914732c6d7e0cce24915c48f3f1512ec1d079ed01fc629dab269d", size = 178381, upload-time = "2026-01-10T09:23:22.715Z" }, + { url = "https://files.pythonhosted.org/packages/06/9b/f791d1db48403e1f0a27577a6beb37afae94254a8c6f08be4a23e4930bc0/websockets-16.0-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:a35539cacc3febb22b8f4d4a99cc79b104226a756aa7400adc722e83b0d03244", size = 177737, upload-time = "2026-01-10T09:23:24.523Z" }, + { url = "https://files.pythonhosted.org/packages/bd/40/53ad02341fa33b3ce489023f635367a4ac98b73570102ad2cdd770dacc9a/websockets-16.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:b784ca5de850f4ce93ec85d3269d24d4c82f22b7212023c974c401d4980ebc5e", size = 175268, upload-time = "2026-01-10T09:23:25.781Z" }, + { url = "https://files.pythonhosted.org/packages/74/9b/6158d4e459b984f949dcbbb0c5d270154c7618e11c01029b9bbd1bb4c4f9/websockets-16.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:569d01a4e7fba956c5ae4fc988f0d4e187900f5497ce46339c996dbf24f17641", size = 175486, upload-time = "2026-01-10T09:23:27.033Z" }, + { url = "https://files.pythonhosted.org/packages/e5/2d/7583b30208b639c8090206f95073646c2c9ffd66f44df967981a64f849ad/websockets-16.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:50f23cdd8343b984957e4077839841146f67a3d31ab0d00e6b824e74c5b2f6e8", size = 185331, upload-time = "2026-01-10T09:23:28.259Z" }, + { url = "https://files.pythonhosted.org/packages/45/b0/cce3784eb519b7b5ad680d14b9673a31ab8dcb7aad8b64d81709d2430aa8/websockets-16.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:152284a83a00c59b759697b7f9e9cddf4e3c7861dd0d964b472b70f78f89e80e", size = 186501, upload-time = "2026-01-10T09:23:29.449Z" }, + { url = "https://files.pythonhosted.org/packages/19/60/b8ebe4c7e89fb5f6cdf080623c9d92789a53636950f7abacfc33fe2b3135/websockets-16.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:bc59589ab64b0022385f429b94697348a6a234e8ce22544e3681b2e9331b5944", size = 186062, upload-time = "2026-01-10T09:23:31.368Z" }, + { url = "https://files.pythonhosted.org/packages/88/a8/a080593f89b0138b6cba1b28f8df5673b5506f72879322288b031337c0b8/websockets-16.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:32da954ffa2814258030e5a57bc73a3635463238e797c7375dc8091327434206", size = 185356, upload-time = "2026-01-10T09:23:32.627Z" }, + { url = "https://files.pythonhosted.org/packages/c2/b6/b9afed2afadddaf5ebb2afa801abf4b0868f42f8539bfe4b071b5266c9fe/websockets-16.0-cp314-cp314t-win32.whl", hash = "sha256:5a4b4cc550cb665dd8a47f868c8d04c8230f857363ad3c9caf7a0c3bf8c61ca6", size = 178085, upload-time = "2026-01-10T09:23:33.816Z" }, + { url = "https://files.pythonhosted.org/packages/9f/3e/28135a24e384493fa804216b79a6a6759a38cc4ff59118787b9fb693df93/websockets-16.0-cp314-cp314t-win_amd64.whl", hash = "sha256:b14dc141ed6d2dde437cddb216004bcac6a1df0935d79656387bd41632ba0bbd", size = 178531, upload-time = "2026-01-10T09:23:35.016Z" }, + { url = "https://files.pythonhosted.org/packages/72/07/c98a68571dcf256e74f1f816b8cc5eae6eb2d3d5cfa44d37f801619d9166/websockets-16.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:349f83cd6c9a415428ee1005cadb5c2c56f4389bc06a9af16103c3bc3dcc8b7d", size = 174947, upload-time = "2026-01-10T09:23:36.166Z" }, + { url = "https://files.pythonhosted.org/packages/7e/52/93e166a81e0305b33fe416338be92ae863563fe7bce446b0f687b9df5aea/websockets-16.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:4a1aba3340a8dca8db6eb5a7986157f52eb9e436b74813764241981ca4888f03", size = 175260, upload-time = "2026-01-10T09:23:37.409Z" }, + { url = "https://files.pythonhosted.org/packages/56/0c/2dbf513bafd24889d33de2ff0368190a0e69f37bcfa19009ef819fe4d507/websockets-16.0-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:f4a32d1bd841d4bcbffdcb3d2ce50c09c3909fbead375ab28d0181af89fd04da", size = 176071, upload-time = "2026-01-10T09:23:39.158Z" }, + { url = "https://files.pythonhosted.org/packages/a5/8f/aea9c71cc92bf9b6cc0f7f70df8f0b420636b6c96ef4feee1e16f80f75dd/websockets-16.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0298d07ee155e2e9fda5be8a9042200dd2e3bb0b8a38482156576f863a9d457c", size = 176968, upload-time = "2026-01-10T09:23:41.031Z" }, + { url = "https://files.pythonhosted.org/packages/9a/3f/f70e03f40ffc9a30d817eef7da1be72ee4956ba8d7255c399a01b135902a/websockets-16.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:a653aea902e0324b52f1613332ddf50b00c06fdaf7e92624fbf8c77c78fa5767", size = 178735, upload-time = "2026-01-10T09:23:42.259Z" }, + { url = "https://files.pythonhosted.org/packages/6f/28/258ebab549c2bf3e64d2b0217b973467394a9cea8c42f70418ca2c5d0d2e/websockets-16.0-py3-none-any.whl", hash = "sha256:1637db62fad1dc833276dded54215f2c7fa46912301a24bd94d45d46a011ceec", size = 171598, upload-time = "2026-01-10T09:23:45.395Z" }, +] + +[[package]] +name = "widgetsnbextension" +version = "4.0.15" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bd/f4/c67440c7fb409a71b7404b7aefcd7569a9c0d6bd071299bf4198ae7a5d95/widgetsnbextension-4.0.15.tar.gz", hash = "sha256:de8610639996f1567952d763a5a41af8af37f2575a41f9852a38f947eb82a3b9", size = 1097402, upload-time = "2025-11-01T21:15:55.178Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3f/0e/fa3b193432cfc60c93b42f3be03365f5f909d2b3ea410295cf36df739e31/widgetsnbextension-4.0.15-py3-none-any.whl", hash = "sha256:8156704e4346a571d9ce73b84bee86a29906c9abfd7223b7228a28899ccf3366", size = 2196503, upload-time = "2025-11-01T21:15:53.565Z" }, ] [[package]] @@ -1891,6 +5917,77 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/e1/07/c6fe3ad3e685340704d314d765b7912993bcb8dc198f0e7a89382d37974b/win32_setctime-1.2.0-py3-none-any.whl", hash = "sha256:95d644c4e708aba81dc3704a116d8cbc974d70b3bdb8be1d150e36be6e9d1390", size = 4083, upload-time = "2024-12-07T15:28:26.465Z" }, ] +[[package]] +name = "wrapt" +version = "1.17.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/95/8f/aeb76c5b46e273670962298c23e7ddde79916cb74db802131d49a85e4b7d/wrapt-1.17.3.tar.gz", hash = "sha256:f66eb08feaa410fe4eebd17f2a2c8e2e46d3476e9f8c783daa8e09e0faa666d0", size = 55547, upload-time = "2025-08-12T05:53:21.714Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/52/db/00e2a219213856074a213503fdac0511203dceefff26e1daa15250cc01a0/wrapt-1.17.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:273a736c4645e63ac582c60a56b0acb529ef07f78e08dc6bfadf6a46b19c0da7", size = 53482, upload-time = "2025-08-12T05:51:45.79Z" }, + { url = "https://files.pythonhosted.org/packages/5e/30/ca3c4a5eba478408572096fe9ce36e6e915994dd26a4e9e98b4f729c06d9/wrapt-1.17.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5531d911795e3f935a9c23eb1c8c03c211661a5060aab167065896bbf62a5f85", size = 38674, upload-time = "2025-08-12T05:51:34.629Z" }, + { url = "https://files.pythonhosted.org/packages/31/25/3e8cc2c46b5329c5957cec959cb76a10718e1a513309c31399a4dad07eb3/wrapt-1.17.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0610b46293c59a3adbae3dee552b648b984176f8562ee0dba099a56cfbe4df1f", size = 38959, upload-time = "2025-08-12T05:51:56.074Z" }, + { url = "https://files.pythonhosted.org/packages/5d/8f/a32a99fc03e4b37e31b57cb9cefc65050ea08147a8ce12f288616b05ef54/wrapt-1.17.3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:b32888aad8b6e68f83a8fdccbf3165f5469702a7544472bdf41f582970ed3311", size = 82376, upload-time = "2025-08-12T05:52:32.134Z" }, + { url = "https://files.pythonhosted.org/packages/31/57/4930cb8d9d70d59c27ee1332a318c20291749b4fba31f113c2f8ac49a72e/wrapt-1.17.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8cccf4f81371f257440c88faed6b74f1053eef90807b77e31ca057b2db74edb1", size = 83604, upload-time = "2025-08-12T05:52:11.663Z" }, + { url = "https://files.pythonhosted.org/packages/a8/f3/1afd48de81d63dd66e01b263a6fbb86e1b5053b419b9b33d13e1f6d0f7d0/wrapt-1.17.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8a210b158a34164de8bb68b0e7780041a903d7b00c87e906fb69928bf7890d5", size = 82782, upload-time = "2025-08-12T05:52:12.626Z" }, + { url = "https://files.pythonhosted.org/packages/1e/d7/4ad5327612173b144998232f98a85bb24b60c352afb73bc48e3e0d2bdc4e/wrapt-1.17.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:79573c24a46ce11aab457b472efd8d125e5a51da2d1d24387666cd85f54c05b2", size = 82076, upload-time = "2025-08-12T05:52:33.168Z" }, + { url = "https://files.pythonhosted.org/packages/bb/59/e0adfc831674a65694f18ea6dc821f9fcb9ec82c2ce7e3d73a88ba2e8718/wrapt-1.17.3-cp311-cp311-win32.whl", hash = "sha256:c31eebe420a9a5d2887b13000b043ff6ca27c452a9a22fa71f35f118e8d4bf89", size = 36457, upload-time = "2025-08-12T05:53:03.936Z" }, + { url = "https://files.pythonhosted.org/packages/83/88/16b7231ba49861b6f75fc309b11012ede4d6b0a9c90969d9e0db8d991aeb/wrapt-1.17.3-cp311-cp311-win_amd64.whl", hash = "sha256:0b1831115c97f0663cb77aa27d381237e73ad4f721391a9bfb2fe8bc25fa6e77", size = 38745, upload-time = "2025-08-12T05:53:02.885Z" }, + { url = "https://files.pythonhosted.org/packages/9a/1e/c4d4f3398ec073012c51d1c8d87f715f56765444e1a4b11e5180577b7e6e/wrapt-1.17.3-cp311-cp311-win_arm64.whl", hash = "sha256:5a7b3c1ee8265eb4c8f1b7d29943f195c00673f5ab60c192eba2d4a7eae5f46a", size = 36806, upload-time = "2025-08-12T05:52:53.368Z" }, + { url = "https://files.pythonhosted.org/packages/9f/41/cad1aba93e752f1f9268c77270da3c469883d56e2798e7df6240dcb2287b/wrapt-1.17.3-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:ab232e7fdb44cdfbf55fc3afa31bcdb0d8980b9b95c38b6405df2acb672af0e0", size = 53998, upload-time = "2025-08-12T05:51:47.138Z" }, + { url = "https://files.pythonhosted.org/packages/60/f8/096a7cc13097a1869fe44efe68dace40d2a16ecb853141394047f0780b96/wrapt-1.17.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:9baa544e6acc91130e926e8c802a17f3b16fbea0fd441b5a60f5cf2cc5c3deba", size = 39020, upload-time = "2025-08-12T05:51:35.906Z" }, + { url = "https://files.pythonhosted.org/packages/33/df/bdf864b8997aab4febb96a9ae5c124f700a5abd9b5e13d2a3214ec4be705/wrapt-1.17.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6b538e31eca1a7ea4605e44f81a48aa24c4632a277431a6ed3f328835901f4fd", size = 39098, upload-time = "2025-08-12T05:51:57.474Z" }, + { url = "https://files.pythonhosted.org/packages/9f/81/5d931d78d0eb732b95dc3ddaeeb71c8bb572fb01356e9133916cd729ecdd/wrapt-1.17.3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:042ec3bb8f319c147b1301f2393bc19dba6e176b7da446853406d041c36c7828", size = 88036, upload-time = "2025-08-12T05:52:34.784Z" }, + { url = "https://files.pythonhosted.org/packages/ca/38/2e1785df03b3d72d34fc6252d91d9d12dc27a5c89caef3335a1bbb8908ca/wrapt-1.17.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3af60380ba0b7b5aeb329bc4e402acd25bd877e98b3727b0135cb5c2efdaefe9", size = 88156, upload-time = "2025-08-12T05:52:13.599Z" }, + { url = "https://files.pythonhosted.org/packages/b3/8b/48cdb60fe0603e34e05cffda0b2a4adab81fd43718e11111a4b0100fd7c1/wrapt-1.17.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:0b02e424deef65c9f7326d8c19220a2c9040c51dc165cddb732f16198c168396", size = 87102, upload-time = "2025-08-12T05:52:14.56Z" }, + { url = "https://files.pythonhosted.org/packages/3c/51/d81abca783b58f40a154f1b2c56db1d2d9e0d04fa2d4224e357529f57a57/wrapt-1.17.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:74afa28374a3c3a11b3b5e5fca0ae03bef8450d6aa3ab3a1e2c30e3a75d023dc", size = 87732, upload-time = "2025-08-12T05:52:36.165Z" }, + { url = "https://files.pythonhosted.org/packages/9e/b1/43b286ca1392a006d5336412d41663eeef1ad57485f3e52c767376ba7e5a/wrapt-1.17.3-cp312-cp312-win32.whl", hash = "sha256:4da9f45279fff3543c371d5ababc57a0384f70be244de7759c85a7f989cb4ebe", size = 36705, upload-time = "2025-08-12T05:53:07.123Z" }, + { url = "https://files.pythonhosted.org/packages/28/de/49493f962bd3c586ab4b88066e967aa2e0703d6ef2c43aa28cb83bf7b507/wrapt-1.17.3-cp312-cp312-win_amd64.whl", hash = "sha256:e71d5c6ebac14875668a1e90baf2ea0ef5b7ac7918355850c0908ae82bcb297c", size = 38877, upload-time = "2025-08-12T05:53:05.436Z" }, + { url = "https://files.pythonhosted.org/packages/f1/48/0f7102fe9cb1e8a5a77f80d4f0956d62d97034bbe88d33e94699f99d181d/wrapt-1.17.3-cp312-cp312-win_arm64.whl", hash = "sha256:604d076c55e2fdd4c1c03d06dc1a31b95130010517b5019db15365ec4a405fc6", size = 36885, upload-time = "2025-08-12T05:52:54.367Z" }, + { url = "https://files.pythonhosted.org/packages/fc/f6/759ece88472157acb55fc195e5b116e06730f1b651b5b314c66291729193/wrapt-1.17.3-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a47681378a0439215912ef542c45a783484d4dd82bac412b71e59cf9c0e1cea0", size = 54003, upload-time = "2025-08-12T05:51:48.627Z" }, + { url = "https://files.pythonhosted.org/packages/4f/a9/49940b9dc6d47027dc850c116d79b4155f15c08547d04db0f07121499347/wrapt-1.17.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:54a30837587c6ee3cd1a4d1c2ec5d24e77984d44e2f34547e2323ddb4e22eb77", size = 39025, upload-time = "2025-08-12T05:51:37.156Z" }, + { url = "https://files.pythonhosted.org/packages/45/35/6a08de0f2c96dcdd7fe464d7420ddb9a7655a6561150e5fc4da9356aeaab/wrapt-1.17.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:16ecf15d6af39246fe33e507105d67e4b81d8f8d2c6598ff7e3ca1b8a37213f7", size = 39108, upload-time = "2025-08-12T05:51:58.425Z" }, + { url = "https://files.pythonhosted.org/packages/0c/37/6faf15cfa41bf1f3dba80cd3f5ccc6622dfccb660ab26ed79f0178c7497f/wrapt-1.17.3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:6fd1ad24dc235e4ab88cda009e19bf347aabb975e44fd5c2fb22a3f6e4141277", size = 88072, upload-time = "2025-08-12T05:52:37.53Z" }, + { url = "https://files.pythonhosted.org/packages/78/f2/efe19ada4a38e4e15b6dff39c3e3f3f73f5decf901f66e6f72fe79623a06/wrapt-1.17.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0ed61b7c2d49cee3c027372df5809a59d60cf1b6c2f81ee980a091f3afed6a2d", size = 88214, upload-time = "2025-08-12T05:52:15.886Z" }, + { url = "https://files.pythonhosted.org/packages/40/90/ca86701e9de1622b16e09689fc24b76f69b06bb0150990f6f4e8b0eeb576/wrapt-1.17.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:423ed5420ad5f5529db9ce89eac09c8a2f97da18eb1c870237e84c5a5c2d60aa", size = 87105, upload-time = "2025-08-12T05:52:17.914Z" }, + { url = "https://files.pythonhosted.org/packages/fd/e0/d10bd257c9a3e15cbf5523025252cc14d77468e8ed644aafb2d6f54cb95d/wrapt-1.17.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e01375f275f010fcbf7f643b4279896d04e571889b8a5b3f848423d91bf07050", size = 87766, upload-time = "2025-08-12T05:52:39.243Z" }, + { url = "https://files.pythonhosted.org/packages/e8/cf/7d848740203c7b4b27eb55dbfede11aca974a51c3d894f6cc4b865f42f58/wrapt-1.17.3-cp313-cp313-win32.whl", hash = "sha256:53e5e39ff71b3fc484df8a522c933ea2b7cdd0d5d15ae82e5b23fde87d44cbd8", size = 36711, upload-time = "2025-08-12T05:53:10.074Z" }, + { url = "https://files.pythonhosted.org/packages/57/54/35a84d0a4d23ea675994104e667ceff49227ce473ba6a59ba2c84f250b74/wrapt-1.17.3-cp313-cp313-win_amd64.whl", hash = "sha256:1f0b2f40cf341ee8cc1a97d51ff50dddb9fcc73241b9143ec74b30fc4f44f6cb", size = 38885, upload-time = "2025-08-12T05:53:08.695Z" }, + { url = "https://files.pythonhosted.org/packages/01/77/66e54407c59d7b02a3c4e0af3783168fff8e5d61def52cda8728439d86bc/wrapt-1.17.3-cp313-cp313-win_arm64.whl", hash = "sha256:7425ac3c54430f5fc5e7b6f41d41e704db073309acfc09305816bc6a0b26bb16", size = 36896, upload-time = "2025-08-12T05:52:55.34Z" }, + { url = "https://files.pythonhosted.org/packages/02/a2/cd864b2a14f20d14f4c496fab97802001560f9f41554eef6df201cd7f76c/wrapt-1.17.3-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:cf30f6e3c077c8e6a9a7809c94551203c8843e74ba0c960f4a98cd80d4665d39", size = 54132, upload-time = "2025-08-12T05:51:49.864Z" }, + { url = "https://files.pythonhosted.org/packages/d5/46/d011725b0c89e853dc44cceb738a307cde5d240d023d6d40a82d1b4e1182/wrapt-1.17.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:e228514a06843cae89621384cfe3a80418f3c04aadf8a3b14e46a7be704e4235", size = 39091, upload-time = "2025-08-12T05:51:38.935Z" }, + { url = "https://files.pythonhosted.org/packages/2e/9e/3ad852d77c35aae7ddebdbc3b6d35ec8013af7d7dddad0ad911f3d891dae/wrapt-1.17.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:5ea5eb3c0c071862997d6f3e02af1d055f381b1d25b286b9d6644b79db77657c", size = 39172, upload-time = "2025-08-12T05:51:59.365Z" }, + { url = "https://files.pythonhosted.org/packages/c3/f7/c983d2762bcce2326c317c26a6a1e7016f7eb039c27cdf5c4e30f4160f31/wrapt-1.17.3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:281262213373b6d5e4bb4353bc36d1ba4084e6d6b5d242863721ef2bf2c2930b", size = 87163, upload-time = "2025-08-12T05:52:40.965Z" }, + { url = "https://files.pythonhosted.org/packages/e4/0f/f673f75d489c7f22d17fe0193e84b41540d962f75fce579cf6873167c29b/wrapt-1.17.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:dc4a8d2b25efb6681ecacad42fca8859f88092d8732b170de6a5dddd80a1c8fa", size = 87963, upload-time = "2025-08-12T05:52:20.326Z" }, + { url = "https://files.pythonhosted.org/packages/df/61/515ad6caca68995da2fac7a6af97faab8f78ebe3bf4f761e1b77efbc47b5/wrapt-1.17.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:373342dd05b1d07d752cecbec0c41817231f29f3a89aa8b8843f7b95992ed0c7", size = 86945, upload-time = "2025-08-12T05:52:21.581Z" }, + { url = "https://files.pythonhosted.org/packages/d3/bd/4e70162ce398462a467bc09e768bee112f1412e563620adc353de9055d33/wrapt-1.17.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:d40770d7c0fd5cbed9d84b2c3f2e156431a12c9a37dc6284060fb4bec0b7ffd4", size = 86857, upload-time = "2025-08-12T05:52:43.043Z" }, + { url = "https://files.pythonhosted.org/packages/2b/b8/da8560695e9284810b8d3df8a19396a6e40e7518059584a1a394a2b35e0a/wrapt-1.17.3-cp314-cp314-win32.whl", hash = "sha256:fbd3c8319de8e1dc79d346929cd71d523622da527cca14e0c1d257e31c2b8b10", size = 37178, upload-time = "2025-08-12T05:53:12.605Z" }, + { url = "https://files.pythonhosted.org/packages/db/c8/b71eeb192c440d67a5a0449aaee2310a1a1e8eca41676046f99ed2487e9f/wrapt-1.17.3-cp314-cp314-win_amd64.whl", hash = "sha256:e1a4120ae5705f673727d3253de3ed0e016f7cd78dc463db1b31e2463e1f3cf6", size = 39310, upload-time = "2025-08-12T05:53:11.106Z" }, + { url = "https://files.pythonhosted.org/packages/45/20/2cda20fd4865fa40f86f6c46ed37a2a8356a7a2fde0773269311f2af56c7/wrapt-1.17.3-cp314-cp314-win_arm64.whl", hash = "sha256:507553480670cab08a800b9463bdb881b2edeed77dc677b0a5915e6106e91a58", size = 37266, upload-time = "2025-08-12T05:52:56.531Z" }, + { url = "https://files.pythonhosted.org/packages/77/ed/dd5cf21aec36c80443c6f900449260b80e2a65cf963668eaef3b9accce36/wrapt-1.17.3-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:ed7c635ae45cfbc1a7371f708727bf74690daedc49b4dba310590ca0bd28aa8a", size = 56544, upload-time = "2025-08-12T05:51:51.109Z" }, + { url = "https://files.pythonhosted.org/packages/8d/96/450c651cc753877ad100c7949ab4d2e2ecc4d97157e00fa8f45df682456a/wrapt-1.17.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:249f88ed15503f6492a71f01442abddd73856a0032ae860de6d75ca62eed8067", size = 40283, upload-time = "2025-08-12T05:51:39.912Z" }, + { url = "https://files.pythonhosted.org/packages/d1/86/2fcad95994d9b572db57632acb6f900695a648c3e063f2cd344b3f5c5a37/wrapt-1.17.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:5a03a38adec8066d5a37bea22f2ba6bbf39fcdefbe2d91419ab864c3fb515454", size = 40366, upload-time = "2025-08-12T05:52:00.693Z" }, + { url = "https://files.pythonhosted.org/packages/64/0e/f4472f2fdde2d4617975144311f8800ef73677a159be7fe61fa50997d6c0/wrapt-1.17.3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:5d4478d72eb61c36e5b446e375bbc49ed002430d17cdec3cecb36993398e1a9e", size = 108571, upload-time = "2025-08-12T05:52:44.521Z" }, + { url = "https://files.pythonhosted.org/packages/cc/01/9b85a99996b0a97c8a17484684f206cbb6ba73c1ce6890ac668bcf3838fb/wrapt-1.17.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:223db574bb38637e8230eb14b185565023ab624474df94d2af18f1cdb625216f", size = 113094, upload-time = "2025-08-12T05:52:22.618Z" }, + { url = "https://files.pythonhosted.org/packages/25/02/78926c1efddcc7b3aa0bc3d6b33a822f7d898059f7cd9ace8c8318e559ef/wrapt-1.17.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:e405adefb53a435f01efa7ccdec012c016b5a1d3f35459990afc39b6be4d5056", size = 110659, upload-time = "2025-08-12T05:52:24.057Z" }, + { url = "https://files.pythonhosted.org/packages/dc/ee/c414501ad518ac3e6fe184753632fe5e5ecacdcf0effc23f31c1e4f7bfcf/wrapt-1.17.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:88547535b787a6c9ce4086917b6e1d291aa8ed914fdd3a838b3539dc95c12804", size = 106946, upload-time = "2025-08-12T05:52:45.976Z" }, + { url = "https://files.pythonhosted.org/packages/be/44/a1bd64b723d13bb151d6cc91b986146a1952385e0392a78567e12149c7b4/wrapt-1.17.3-cp314-cp314t-win32.whl", hash = "sha256:41b1d2bc74c2cac6f9074df52b2efbef2b30bdfe5f40cb78f8ca22963bc62977", size = 38717, upload-time = "2025-08-12T05:53:15.214Z" }, + { url = "https://files.pythonhosted.org/packages/79/d9/7cfd5a312760ac4dd8bf0184a6ee9e43c33e47f3dadc303032ce012b8fa3/wrapt-1.17.3-cp314-cp314t-win_amd64.whl", hash = "sha256:73d496de46cd2cdbdbcce4ae4bcdb4afb6a11234a1df9c085249d55166b95116", size = 41334, upload-time = "2025-08-12T05:53:14.178Z" }, + { url = "https://files.pythonhosted.org/packages/46/78/10ad9781128ed2f99dbc474f43283b13fea8ba58723e98844367531c18e9/wrapt-1.17.3-cp314-cp314t-win_arm64.whl", hash = "sha256:f38e60678850c42461d4202739f9bf1e3a737c7ad283638251e79cc49effb6b6", size = 38471, upload-time = "2025-08-12T05:52:57.784Z" }, + { url = "https://files.pythonhosted.org/packages/1f/f6/a933bd70f98e9cf3e08167fc5cd7aaaca49147e48411c0bd5ae701bb2194/wrapt-1.17.3-py3-none-any.whl", hash = "sha256:7171ae35d2c33d326ac19dd8facb1e82e5fd04ef8c6c0e394d7af55a55051c22", size = 23591, upload-time = "2025-08-12T05:53:20.674Z" }, +] + +[[package]] +name = "wsproto" +version = "1.3.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "h11" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c7/79/12135bdf8b9c9367b8701c2c19a14c913c120b882d50b014ca0d38083c2c/wsproto-1.3.2.tar.gz", hash = "sha256:b86885dcf294e15204919950f666e06ffc6c7c114ca900b060d6e16293528294", size = 50116, upload-time = "2025-11-20T18:18:01.871Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a4/f5/10b68b7b1544245097b2a1b8238f66f2fc6dcaeb24ba5d917f52bd2eed4f/wsproto-1.3.2-py3-none-any.whl", hash = "sha256:61eea322cdf56e8cc904bd3ad7573359a242ba65688716b0710a5eb12beab584", size = 24405, upload-time = "2025-11-20T18:18:00.454Z" }, +] + [[package]] name = "xxhash" version = "3.6.0" @@ -2104,6 +6201,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/73/ae/b48f95715333080afb75a4504487cbe142cae1268afc482d06692d605ae6/yarl-1.22.0-py3-none-any.whl", hash = "sha256:1380560bdba02b6b6c90de54133c81c9f2a453dee9912fe58c1dcced1edb7cff", size = 46814, upload-time = "2025-10-06T14:12:53.872Z" }, ] +[[package]] +name = "zipp" +version = "3.23.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e3/02/0f2892c661036d50ede074e376733dca2ae7c6eb617489437771209d4180/zipp-3.23.0.tar.gz", hash = "sha256:a07157588a12518c9d4034df3fbbee09c814741a33ff63c05fa29d26a2404166", size = 25547, upload-time = "2025-06-08T17:06:39.4Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2e/54/647ade08bf0db230bfea292f893923872fd20be6ac6f53b2b936ba839d75/zipp-3.23.0-py3-none-any.whl", hash = "sha256:071652d6115ed432f5ce1d34c336c0adfd6a884660d1e9712a256d3d3bd4b14e", size = 10276, upload-time = "2025-06-08T17:06:38.034Z" }, +] + [[package]] name = "zstandard" version = "0.25.0"