diff --git a/.gitignore b/.gitignore index 1256a84..e5337e9 100644 --- a/.gitignore +++ b/.gitignore @@ -27,8 +27,14 @@ tmp/ scripts/**/reports/**/report_*/ scripts/reports/**/report_*/ -# Research paper workspace lives outside the package release. -/papers/ +# Research paper workspace lives outside the package release, except the +# packaged voice helper APIs consumed by sibling products. +/papers/* +!/papers/__init__.py +!/papers/voice/ +!/papers/voice/** +/papers/**/__pycache__/ +/papers/**/*.py[cod] # Local ingestion artifacts /data/ @@ -49,3 +55,4 @@ dashboard/dist/ dashboard/.vite/ dashboard/tsconfig.tsbuildinfo dashboard/src/**/*.js +projects/proxy_readers/reports/assistant_axis_message_score/report_22bceb208eaf_fc421b6a/ diff --git a/papers/__init__.py b/papers/__init__.py new file mode 100644 index 0000000..c82e6cb --- /dev/null +++ b/papers/__init__.py @@ -0,0 +1 @@ +"""Paper replication workflows.""" diff --git a/papers/voice/BYOD.md b/papers/voice/BYOD.md new file mode 100644 index 0000000..f5faac7 --- /dev/null +++ b/papers/voice/BYOD.md @@ -0,0 +1,127 @@ +# BYOD Method Schemas + +BYOD in this tree means "bring data that fits the method," not "bring the +paper's original semantic domain." The paper directories keep their historical +names, but their schemas are method-level contracts. + +## Where To Edit + +- `assistant_axis/method.py`: + default-vs-role contrast data and precomputed axis/trait scoring. +- `emotions/synth_data.py`: + concept-labeled vector spaces with optional neutral/background projection. +- `refusal_direction/synth_data.py`: + two-pole contrast directions. +- `honest_llama/synth_data.py`: + binary truth/correctness readouts. +- `schemas/*.schema.json`: + row contracts for BYOD files and generated-data outputs. + +These method/data files are intentionally small. Edit labels, topics, seed +items, counts, split policy, and prompt templates there before wiring a larger +workflow. The JSON schemas are the stable boundary: if your imported or +generated rows satisfy the relevant schema, the adapter can turn them into +Xenon `Dataset` examples with the right labels and token sections. + +## Method Contracts + +### Assistant Axis Method + +Schema: `schemas/assistant_axis_method.schema.json` + +Use for: + +- scoring traces against released assistant-axis or trait coordinates +- deriving a new default-vs-role axis from your own grouped conditions + +Required scoring row shape: + +```json +{ + "example_id": "trace_001", + "text": "Human: ...\n\nAssistant: ...", + "assistant_response": {"char_start": 42, "char_end": 180}, + "model_id": "meta-llama/Llama-3.3-70B-Instruct" +} +``` + +Additional fields for deriving a new axis: + +```json +{ + "axis_kind": "role", + "role": "analyst_mode", + "adherence_score": 3, + "split": "train" +} +``` + +### Concept Vector Space Method + +Schema: `schemas/concept_vector_space_method.schema.json` + +Use for any labeled concept set. The paper default is emotions, but concepts +can be financial states, support intents, failure classes, styles, or other +semantic groups. + +```json +{ + "example_id": "row_001", + "text": "The market opened with widening credit spreads and defensive positioning.", + "row_role": "concept", + "concept": "risk_off", + "split": "train", + "topic": "morning market note" +} +``` + +Neutral/background rows use `row_role: "neutral"` and do not need `concept`. + +### Contrast Direction Method + +Schema: `schemas/contrast_direction_method.schema.json` + +Use for any two-pole direction. The paper default is refusal, but the method +only needs a defined positive pole and negative pole. + +```json +{ + "example_id": "contrast_001", + "text": "Rendered prompt or trace text.", + "label": "positive_pole", + "positive_label": "positive_pole", + "negative_label": "negative_pole", + "split": "train" +} +``` + +### Binary Truth/Correctness Method + +Schema: `schemas/binary_truth_readout_method.schema.json` + +Use for true-vs-false, correct-vs-incorrect, or equivalent binary answer +contrasts. + +```json +{ + "example_id": "claim_001_true", + "prompt": "Question or claim prompt.", + "answer": "Candidate answer text.", + "label": "true", + "claim_id": "claim_001", + "split": "train" +} +``` + +## Adapter Rule + +Adapters should do the boring work: + +1. Validate rows against the method schema. +2. Render text if the schema stores prompt/answer separately. +3. Attach `token_sections` and `section_records` from char spans. +4. Preserve method labels under stable names. +5. Pass the resulting `Dataset` into the existing workflow specs. + +Do not bake paper-domain assumptions into adapters. Put domain defaults in +the paper's method-data file, and keep workflow specs pointed at method labels. diff --git a/papers/voice/README.md b/papers/voice/README.md new file mode 100644 index 0000000..73a019d --- /dev/null +++ b/papers/voice/README.md @@ -0,0 +1,80 @@ +# Voice Paper Replications + +Xenon-native smoke replications for direction/intervention papers about model +"voice": persona, emotion, refusal, and truthfulness. These are public example +workflows, not normal `projects//phase_XX` research phases. + +These workflows live in `xenon-projects`, a small `uv` project that depends on +the sibling `../xenon` checkout in editable mode. Run workflow commands from +the `xenon-projects` repository root; `uv run ...` will expose `pipelines_v2` +without a manual `PYTHONPATH` or `--project ../xenon` override. + +Reusable vector and geometry artifacts use Modal volume `xenon-data` under +`/data/artifacts/model-assets/vectors//`. Product demos +should consume those shared assets instead of owning their own vector copies. +Model weights stay on their existing volumes, including transitional +`yora-models` for Llama 70B Assistant Axis and emotion asset work and +`xenon-models` for historical Qwen emotion replication work. + +Each paper directory should expose four runnable surfaces: paper rerun, BYOD, +BYOT, and BYOP. Assistant Axis is the current reference implementation for +that shape. + +## Workflows + +```bash +uv run python -m pipelines_v2.cli workflow plan --file papers/voice/assistant_axis/specs/paper_rerun.py +uv run python -m pipelines_v2.cli workflow plan --file papers/voice/assistant_axis/specs/asset_score.py +uv run python -m pipelines_v2.cli workflow plan --file papers/voice/assistant_axis/specs/byod_axis.py +uv run python -m pipelines_v2.cli workflow plan --file papers/voice/assistant_axis/specs/byot_score.py +uv run python -m pipelines_v2.cli workflow plan --file papers/voice/assistant_axis/specs/byop_generate.py + +uv run python -m pipelines_v2.cli workflow plan --file papers/voice/emotions/specs/workflow.py +XENON_NEON_DATABASE_URL=postgresql://placeholder EMOTION_ASSET_MODE=pilot uv run python -m pipelines_v2.cli workflow plan --file papers/voice/emotions/replication/specs/llama70b_vector_workflow.py +uv run python -m pipelines_v2.cli workflow plan --file papers/voice/refusal_direction/specs/workflow.py +uv run python -m pipelines_v2.cli workflow plan --file papers/voice/honest_llama/specs/workflow.py +``` + +## Layout + +- `assistant_axis/`: default-assistant vs role-play persona axis; reference + package layout with paper/BYOD/BYOT/BYOP specs. +- `emotions/`: emotion concept vectors, scoring, geometry, and steering export; + Llama 70B asset package mirrors Assistant Axis while computing vectors from + generated/captured data. +- `refusal_direction/`: harmful-minus-harmless direction, selection, add-direction, and project-out smoke. +- `honest_llama/`: residual TruthfulQA-style truthful-minus-untruthful ITI smoke. +- `common/`: shared smoke constants and local runner fixtures. +- `schemas/`: method-level BYOD row contracts. +- `BYOD.md`: where to edit data recipes and how schemas map onto methods. + +The paper directory names are historical. BYOD schemas are method schemas, not +domain schemas. For example, the emotion-concepts workflow can build concept +vectors over finance labels, support intents, or failure modes if the rows fit +the concept-vector-space schema. + +## Lightweight Data Hooks + +The smoke workflows keep fixtures in code, but the reusable APIs now point at +the paper-style sources where possible: + +- Assistant Axis prompts and released vectors: `assistant_axis_prompt_dataset`, + `AssistantAxisPrecomputedCoordinateSpec`, and + `AssistantAxisTraitCoordinateSpec(model_id="llama-3.3-70b", trait="calm")`. +- Emotions: `emotion_probe_story_dataset` for a public generated-probe mirror, + or `emotion_contrast_dataset(records=...)` for agent/product logs. +- Refusal Direction: `refusal_direction_split_dataset(split="train")` and + `refusal_direction_processed_dataset("advbench")`. +- Honest LLaMA / ITI: `truthfulqa_generation_dataset()` and + `truthfulqa_answer_contrast_dataset(prompt_template=...)`. + +These helpers are deliberately prompt-template friendly. Users can keep the +same labels and vector workflow while changing the actual chat/completion +format to match their product. + +## Claim Boundary + +Planning a workflow checks API plumbing and artifact shapes. It does not prove +paper-scale claims. A paper-scale result requires real datasets, behavioral +sanity checks, confound checks, selected loci that transfer to real data, and +intervention controls. diff --git a/papers/voice/__init__.py b/papers/voice/__init__.py new file mode 100644 index 0000000..bfd5671 --- /dev/null +++ b/papers/voice/__init__.py @@ -0,0 +1 @@ +"""Voice-related mech-interp paper replications.""" diff --git a/papers/voice/assistant_axis/.env.example b/papers/voice/assistant_axis/.env.example new file mode 100644 index 0000000..9cb74db --- /dev/null +++ b/papers/voice/assistant_axis/.env.example @@ -0,0 +1,14 @@ +# Assistant Axis paper-rerun judge config. +# +# Keep raw API keys in your shell or Modal secret. This file should usually +# name which env var/secret to use, not contain the secret value itself. + +ASSISTANT_AXIS_JUDGE_MODEL=gpt-4.1-mini +ASSISTANT_AXIS_JUDGE_API_KEY_ENV=OPENAI_API_KEY +ASSISTANT_AXIS_JUDGE_SECRET_NAME=OPENAI_API_KEY +ASSISTANT_AXIS_JUDGE_BASE_URL= +ASSISTANT_AXIS_JUDGE_MAX_TOKENS=64 +ASSISTANT_AXIS_JUDGE_DRY_RUN=0 + +# Full paper threshold is 50. Use 1 for cheap smoke slices. +ASSISTANT_AXIS_MIN_ROLE_EXAMPLES_PER_ROLE=1 diff --git a/papers/voice/assistant_axis/PAPER_IMPLEMENTATION.md b/papers/voice/assistant_axis/PAPER_IMPLEMENTATION.md new file mode 100644 index 0000000..bda63dc --- /dev/null +++ b/papers/voice/assistant_axis/PAPER_IMPLEMENTATION.md @@ -0,0 +1,238 @@ +# Assistant Axis Paper Implementation + +Paper: Christina Lu, Jack Gallagher, Jonathan Michala, Kyle Fish, and Jack +Lindsey, "The Assistant Axis: Situating and Stabilizing the Default Persona of +Language Models", arXiv:2601.10387, 2026. + +Upstream surfaces: + +- code: `safety-research/assistant-axis` +- released prompt-source table: `belmore/assistant-axis-vector-prompts` +- released vector artifacts: `lu-christina/assistant-axis-vectors` + +This directory has two distinct surfaces: + +1. **Paper implementation**: reproduce or reuse the Assistant Axis paper + artifacts for the paper's released models and prompt/source data. +2. **Method BYOD**: use the same default-vs-role contrast method on other + domains or datasets. + +Do not conflate these. BYOD can use arbitrary grouped conditions. Paper +implementation should preserve the paper's source data, prompt expansion, +model/layer choices, filtering, and released artifact conventions. + +## Current Status + +### Off The Shelf: Released Vectors + +Implemented. + +The repo can load released Assistant Axis vectors and trait vectors from +`lu-christina/assistant-axis-vectors` through: + +- `AssistantAxisPrecomputedCoordinateSpec` +- `AssistantAxisTraitCoordinateSpec` + +The Llama 3.3 70B release is also packaged as a reusable source-controlled +asset manifest: + +- manifest: + `papers/voice/model_assets/vectors/assistant-axis/llama-3.3-70b/released/v1/manifest.toml` +- helper API: `papers.voice.assistant_axis.assets` +- shared artifact namespace: + `/data/artifacts/model-assets/vectors/assistant-axis/llama-3.3-70b/released/v1` + +Known released model configs: + +| model | total layers | target layer | assistant axis | default vector | capping | +|---|---:|---:|---|---|---| +| `google/gemma-2-27b-it` | 46 | 22 | `gemma-2-27b/assistant_axis.pt` | `gemma-2-27b/default_vector.pt` | none | +| `Qwen/Qwen3-32B` | 64 | 32 | `qwen-3-32b/assistant_axis.pt` | `qwen-3-32b/default_vector.pt` | `qwen-3-32b/capping_config.pt`, experiment `layers_46:54-p0.25` | +| `meta-llama/Llama-3.3-70B-Instruct` | 80 | 40 | `llama-3.3-70b/assistant_axis.pt` | `llama-3.3-70b/default_vector.pt` | `llama-3.3-70b/capping_config.pt`, experiment `layers_56:72-p0.25` | + +Validated example: + +- workflow: `scripts/assistant_axis_llama33_70b_trait_trace_score.py` +- run: `wr_fe6ec0ba5ec8_5b28235a` +- result: one fake trace scored against Llama 3.3 70B assistant axis plus ten + released trait coordinates. + +### Source Prompt Data + +Implemented as scaffold, not run at paper scale here. + +`assistant_axis_prompt_dataset(...)` points at +`belmore/assistant-axis-vector-prompts`. This is the prompt/source table used +as the canonical local hook for paper-style derivation. The helper returns one +row per source role/trait/default source with nested prompt fields. + +Paper source data shape: + +- upstream code source: `data/roles/instructions/*.json` +- role sources: 275 character roles +- default source: one `default.json` +- instruction variants per source: 5 +- extraction questions: 240 +- default generations per source: `5 * 240 = 1200` +- released HF prompt-source dataset sha observed locally: + `57424a9d6075a44196b935983ce1fa4e83191679` + +Default assistant instructions: + +```text + +You are an AI assistant. +You are a large language model. +You are {model_name}. +Respond as yourself. +``` + +The first default instruction is the empty string. + +Prompt assembly matches the upstream generator: + +1. Replace `{model_name}` in the instruction with the upstream model short name + (`Gemma`, `Qwen`, or `Llama` for the released configs). +2. If the tokenizer chat template supports system turns, pass the instruction as + a system message and the extraction question as the user message. +3. If the tokenizer does not support system turns, concatenate instruction, + blank line, and question into one user message. +4. For Qwen models, disable thinking in chat-template kwargs. + +Generation defaults: + +| setting | value | +|---|---:| +| `max_model_len` | 2048 | +| `temperature` | 0.7 | +| `top_p` | 0.9 | +| `max_tokens` | 512 | +| `question_count` | 240 | +| `prompt_indices` | `0,1,2,3,4` | + +### From-Scratch Axis Derivation + +Workflow scaffold implemented; expensive paper-scale rerun intentionally not +launched. + +`AssistantAxisVectorSpec` computes: + +```text +mean(default_response_activations) - mean(per_role_role_playing_vectors) +``` + +It supports: + +- default-vs-role labels +- per-role aggregation +- optional adherence-score filtering +- selected model layers +- response-span pooling + +Paper-faithful derivation details now encoded in `paper.py` and wired by +`specs/paper_rerun.py`: + +- responses are generated for all role/default instruction-question pairs +- response activations are mean-pooled over assistant response turns +- upstream activation extraction defaults to all layers, max length 2048, batch + size 16 +- role adherence is judged by `judge.py`, defaulting to `gpt-4.1-mini` but + configurable with `ASSISTANT_AXIS_JUDGE_MODEL` +- judge labels are 0, 1, 2, 3 +- role vectors use only score-3 responses (`FULLY ROLE-PLAYING`) +- default vectors use all default activations without judge filtering +- minimum score-3 count per role is 50 +- final axis is saved as a tensor with shape `(n_layers, hidden_dim)` + +Current scaffold status: + +- `specs/paper_rerun.py` loads the released HF prompt-source table, + expands paper prompts, generates responses, runs the 0-3 role-adherence + judge, converts judged responses into response-span capture rows, captures + residual activations, derives an axis, loads the released axis, and scores + the generated responses against both coordinates. +- For cheap dry runs, set `ASSISTANT_AXIS_JUDGE_DRY_RUN=1`; for paper-scale + reruns, leave the judge enabled and set + `ASSISTANT_AXIS_MIN_ROLE_EXAMPLES_PER_ROLE=50`. + +Judge scale: + +| score | paper meaning | +|---:|---| +| 0 | not role-playing; model refused while identifying as itself | +| 1 | not role-playing; model identifies as itself but attempts answer | +| 2 | model identifies as itself while showing some role attributes | +| 3 | fully playing the role, including refusals while still identifying as the role | + +### Scoring And Monitoring + +Implemented. + +`ProjectionSpec` and `AssistantAxisScoreSpec` score captured spans against +released or recomputed coordinates. This is already usable for BYOP/BYOT/BYOD +when rows provide the required assistant-response section. + +Runnable paper-package specs: + +| surface | workflow | purpose | +|---|---|---| +| paper rerun | `specs/paper_rerun.py` | released prompt source -> generated responses -> recomputed axis -> released-axis comparison | +| BYOD | `specs/byod_axis.py` | arbitrary default-vs-role trace rows -> custom axis and scores | +| BYOT | `specs/byot_score.py` | existing trace rows -> released axis/trait scores | +| BYOP | `specs/byop_generate.py` | prompt -> baseline generation, trait-steered generation, and output scores | + +### Steering / Capping + +Partial. + +The smoke workflow demonstrates add-direction steering with a released +precomputed trait vector: + +- workflow: `scripts/assistant_axis_llama33_70b_precomputed_steering.py` +- run: `wr_96588bb43527_9c18a1da` +- vector: `calm`, Llama 3.3 70B, layer 40 +- intervention: `AddDirectionPatch` at `resid_post`, strength `2.0`, prompt and + decode tokens +- result: one baseline and one steered generation completed with non-empty patch + stats for layer 40 + +The paper's activation capping behavior is represented as released capping +config metadata, but capping is not yet a first-class Xenon intervention +operator. + +## What Counts As Paper-E2E + +For this paper, paper-e2e means: + +1. Load the released source prompt data. +2. Expand sources into concrete default and role-play prompt invocations. +3. Generate responses on a supported paper model with the defaults above. +4. Score/filter role adherence using the 0-3 judge scale above. +5. Capture response activations, normally all layers, and use the released + model's target layer for paper comparison. +6. Compute the Assistant Axis vector with `AssistantAxisVectorSpec`. +7. Compare the recomputed vector to the released vector for that model. +8. Score heldout/probe traces and package a report. +9. Optionally run capping/steering once the intervention operator exists. + +We are not claiming that complete loop has been rerun locally. The concrete +paper details, source hooks, model configs, vector artifacts, judge step, +thresholds, and prompt assembly semantics are now recorded so the rerun is +mechanical. + +## Files To Edit + +- `method.py`: method/BYOD recipe surface. +- `paper.py`: paper-specific source data, prompt expansion, and rerun + constants. +- `runtime.py`: shared workflow transforms, env knobs, and dataset + adapters. +- `specs/workflow.py`: tiny ToyEngine method smoke. +- `specs/paper_rerun.py`: actual paper-source rerun scaffold. +- `specs/byod_axis.py`: user data -> method axis/scores. +- `specs/byot_score.py`: trace data -> released coordinate scores. +- `specs/byop_generate.py`: prompt -> generation, steering, output scores. +- `scripts/assistant_axis_llama33_70b_trait_trace_score.py`: real released-vector + trace scoring example. +- `scripts/assistant_axis_llama33_70b_precomputed_steering.py`: real + released-vector steering example. diff --git a/papers/voice/assistant_axis/README.md b/papers/voice/assistant_axis/README.md new file mode 100644 index 0000000..19e99c7 --- /dev/null +++ b/papers/voice/assistant_axis/README.md @@ -0,0 +1,118 @@ +# Assistant Axis / Persona Vectors + +Goal: reproduce the Assistant Axis shape as a Xenon workflow: derive +`mean(default assistant) - mean(role-play personas)`, score conversation turns +for persona drift, and run a small add-direction steering demo. + +Start here: + +- `assets.py`: helpers for the packaged Llama 3.3 70B released-vector asset. +- `PAPER_IMPLEMENTATION.md`: paper-specific status, released vectors, source + prompt data, and from-scratch rerun constants. +- `paper.py`: paper data/source-prompt edit surface. +- `judge.py`: OpenAI-compatible role-adherence judge for paper reruns. +- `method.py`: method/BYOD edit surface for non-paper domains. +- `runtime.py`: shared transforms/loaders used by runnable specs. +- `deployment.py`: deployment spec for the warm product API over released trait + steering and trace scoring. +- `service.py`: compatibility shim for old `modal deploy .../service.py` + workflows. +- `specs/paper_rerun.py`: paper-rerun scaffold against the released + prompt-source data. +- `specs/asset_score.py`: packaged Llama 3.3 70B released asset -> trace + scoring against assistant axis and selected traits. +- `specs/byod_axis.py`: arbitrary default-vs-role data -> custom axis and + scores. +- `specs/byot_score.py`: existing trace(s) -> released axis/trait scores. +- `specs/byop_generate.py`: prompt -> baseline generation, trait-steered + generation, and scores. + +## Commands + +```bash +# paper-rerun surface; default smoke slice uses actual released HF prompt source +uv run python -m pipelines_v2.cli workflow plan --file papers/voice/assistant_axis/specs/paper_rerun.py + +# BYOD method surface; set ASSISTANT_AXIS_BYOD_JSONL for real rows +uv run python -m pipelines_v2.cli workflow plan --file papers/voice/assistant_axis/specs/byod_axis.py + +# BYOT trace scoring; set ASSISTANT_AXIS_BYOT_JSONL or ASSISTANT_AXIS_BYOT_TRACE +uv run python -m pipelines_v2.cli workflow plan --file papers/voice/assistant_axis/specs/byot_score.py + +# packaged Llama 3.3 70B asset scoring; optional ASSISTANT_AXIS_ASSET_TRAITS +uv run python -m pipelines_v2.cli workflow plan --file papers/voice/assistant_axis/specs/asset_score.py + +# BYOP generation + steering + scoring; set ASSISTANT_AXIS_BYOP_PROMPT +uv run python -m pipelines_v2.cli workflow plan --file papers/voice/assistant_axis/specs/byop_generate.py + +# warm product-serving API +uv run python -m pipelines_v2.cli deployment plan --file papers/voice/assistant_axis/deployment.py --target prod +uv run python -m pipelines_v2.cli deployment deploy --file papers/voice/assistant_axis/deployment.py --target prod --logging INFO +``` + +Replace `plan` with `run --logging INFO` to launch. Defaults use +`ASSISTANT_AXIS_MODEL_KEY=llama_3_3_70b`; supported values are +`gemma_2_27b`, `qwen_3_32b`, and `llama_3_3_70b`. + +## Runtime Knobs + +- `ASSISTANT_AXIS_MODEL_KEY`: released model key. +- `ASSISTANT_AXIS_JUDGE_MODEL`: OpenAI-compatible judge model for paper rerun. +- `ASSISTANT_AXIS_JUDGE_API_KEY_ENV`: env var containing the judge API key. +- `ASSISTANT_AXIS_JUDGE_SECRET_NAME`: Modal secret name to bind for that env var. +- `ASSISTANT_AXIS_JUDGE_DRY_RUN`: set `1` to attach placeholder score-3 role + labels without spending judge calls. +- `ASSISTANT_AXIS_TRAITS`: comma-separated BYOT trait vectors. +- `ASSISTANT_AXIS_ASSET_TRAITS`: comma-separated trait vectors for packaged + Llama 3.3 70B asset scoring. +- `ASSISTANT_AXIS_BYOD_JSONL`: BYOD rows matching + `papers/voice/schemas/assistant_axis_method.schema.json`. +- `ASSISTANT_AXIS_BYOT_JSONL`: BYOT rows matching + `papers/voice/schemas/assistant_axis_trace.schema.json`. +- `ASSISTANT_AXIS_BYOT_TRACE`: one literal trace string for BYOT. +- `ASSISTANT_AXIS_BYOP_PROMPT`: one prompt for BYOP. +- `ASSISTANT_AXIS_STEERING_TRAIT`: released trait vector for BYOP steering. +- `ASSISTANT_AXIS_STEERING_STRENGTH`: add-direction steering strength. +- `ASSISTANT_AXIS_SERVICE_API_KEY`: optional bearer token required by the warm + Modal service. +- `ASSISTANT_AXIS_SERVICE_GPU`: Modal GPU for the warm service. Defaults to + `B200:1`. +- `ASSISTANT_AXIS_SERVICE_ATTENTION_BACKEND`: vLLM `attention_backend` LLM + argument. Defaults to `FLASH_ATTN` to avoid FlashInfer TRTLLM JIT requiring + `nvcc`. +- `ASSISTANT_AXIS_SERVICE_PATCH_MAX_TOKENS`: compiled activation-patching token + buffer capacity. Defaults to `128`. +- `ASSISTANT_AXIS_SERVICE_MIN_CONTAINERS`, + `ASSISTANT_AXIS_SERVICE_MAX_CONTAINERS`, and + `ASSISTANT_AXIS_SERVICE_SCALEDOWN_WINDOW`: warm service container controls. +- `ASSISTANT_AXIS_ROLE_LIMIT`, `ASSISTANT_AXIS_QUESTION_LIMIT`, + `ASSISTANT_AXIS_INSTRUCTION_LIMIT`: paper-rerun smoke slice controls. +- `ASSISTANT_AXIS_MIN_ROLE_EXAMPLES_PER_ROLE`: derivation threshold. Use `50` + for the full paper threshold after real judge labels are attached. + +Paper data/vector hooks: + +- `model_assets/vectors/assistant-axis/llama-3.3-70b/released/v1/manifest.toml` + records the reusable Llama 3.3 70B released-vector asset package. Product + code should consume the manifest through `assets.py` rather than hard-coding + HF filenames. +- `assets.build_trace_scoring_workflow(...)` builds a trace scorer for the + released assistant axis plus any selected trait vectors. +- `assistant_axis_prompt_dataset(limit=...)` loads the released prompt/source + dataset used for Assistant Axis-style derivation. +- `paper.py` records the paper rerun defaults: 275 roles plus default, + 5 instruction variants, 240 extraction questions, vLLM sampling settings, + response-activation pooling, judge model/score scale, and score-3 filtering. +- `AssistantAxisPrecomputedCoordinateSpec(model_id="Qwen/Qwen3-32B")` loads the + released assistant axis for supported models. +- `AssistantAxisTraitCoordinateSpec(model_id="llama-3.3-70b", trait="calm")` + loads per-trait files from + `lu-christina/assistant-axis-vectors/llama-3.3-70b/trait_vectors`. + +Claim boundary: released-vector scoring and add-direction steering are real +workflow surfaces. The paper-rerun workflow uses the released prompt-source +data, paper constants, and an env-configured 0-3 role-adherence judge. Full +paper-faithful recomputation means running that surface at paper scale with +`ASSISTANT_AXIS_MIN_ROLE_EXAMPLES_PER_ROLE=50`. Activation capping is documented +through released configs and still needs a dedicated first-class intervention +operator. diff --git a/papers/voice/assistant_axis/assets.py b/papers/voice/assistant_axis/assets.py new file mode 100644 index 0000000..1b66dd8 --- /dev/null +++ b/papers/voice/assistant_axis/assets.py @@ -0,0 +1,239 @@ +"""Packaged Assistant Axis model assets and scoring helpers.""" + +from __future__ import annotations + +import tomllib +from pathlib import Path +from typing import Any, Mapping, Sequence + +from pipelines_v2.api import ( + AssistantAxisPrecomputedCoordinateSpec, + AssistantAxisTraitCoordinateSpec, + CaptureSpec, + Dataset, + ProjectionSpec, + ReportSpec, + ResidualSite, + SectionSelector, + StepRef, + TensorStorage, + TokenSelector, + WorkflowSpec, + WorkflowStep, +) + +from papers.voice.assistant_axis.runtime import trace_dataset_from_records, vllm_engine + + +DEFAULT_LLAMA33_70B_MANIFEST = ( + Path(__file__).parents[1] + / "model_assets" + / "vectors" + / "assistant-axis" + / "llama-3.3-70b" + / "released" + / "v1" + / "manifest.toml" +) +DEFAULT_SCORE_WORKFLOW_NAME = "papers_voice_assistant_axis_llama33_70b_asset_score" + + +def load_asset_manifest(path: str | Path = DEFAULT_LLAMA33_70B_MANIFEST) -> dict[str, Any]: + """Load a source-controlled vector asset manifest.""" + + with Path(path).open("rb") as handle: + return tomllib.load(handle) + + +def default_traits(manifest: Mapping[str, Any] | None = None) -> tuple[str, ...]: + """Return the manifest's default demo/scoring traits.""" + + payload = manifest or load_asset_manifest() + usage = _mapping(payload.get("usage")) + return tuple(str(item) for item in usage.get("default_traits", ()) if str(item).strip()) + + +def assistant_axis_coordinate_spec( + manifest: Mapping[str, Any] | None = None, + *, + token_env_var: str | None = None, +) -> AssistantAxisPrecomputedCoordinateSpec: + """Build the released Assistant Axis coordinate spec from the manifest.""" + + payload = manifest or load_asset_manifest() + model = _mapping(payload.get("model")) + source = _mapping(payload.get("source")) + usage = _mapping(payload.get("usage")) + revision = str(source.get("revision") or "") or None + return AssistantAxisPrecomputedCoordinateSpec( + model_id=str(model["model_id"]), + repo_id=str(source["repo_id"]), + revision=revision, + filename=str(source["assistant_axis_file"]), + select_layer=int(model["target_layer"]), + token_env_var=token_env_var if token_env_var is not None else str(usage.get("token_env_var") or "HF_TOKEN"), + metadata=_coordinate_metadata(payload), + ) + + +def trait_coordinate_spec( + trait: str, + manifest: Mapping[str, Any] | None = None, + *, + token_env_var: str | None = None, +) -> AssistantAxisTraitCoordinateSpec: + """Build one released trait coordinate spec from the manifest.""" + + payload = manifest or load_asset_manifest() + model = _mapping(payload.get("model")) + source = _mapping(payload.get("source")) + usage = _mapping(payload.get("usage")) + revision = str(source.get("revision") or "") or None + normalized_trait = normalize_trait(trait) + return AssistantAxisTraitCoordinateSpec( + model_id=str(model["model_id"]), + trait=normalized_trait, + repo_id=str(source["repo_id"]), + revision=revision, + filename=f"{source['trait_vector_prefix']}/{normalized_trait}.pt", + select_layer=int(model["target_layer"]), + token_env_var=token_env_var if token_env_var is not None else str(usage.get("token_env_var") or "HF_TOKEN"), + metadata={**_coordinate_metadata(payload), "trait": normalized_trait}, + ) + + +def coordinate_specs( + traits: Sequence[str] | None = None, + manifest: Mapping[str, Any] | None = None, + *, + include_assistant_axis: bool = True, + token_env_var: str | None = None, +) -> tuple[AssistantAxisPrecomputedCoordinateSpec | AssistantAxisTraitCoordinateSpec, ...]: + """Return coordinate specs for the assistant axis plus selected traits.""" + + payload = manifest or load_asset_manifest() + selected_traits = tuple(traits) if traits is not None else default_traits(payload) + specs: list[AssistantAxisPrecomputedCoordinateSpec | AssistantAxisTraitCoordinateSpec] = [] + if include_assistant_axis: + specs.append(assistant_axis_coordinate_spec(payload, token_env_var=token_env_var)) + specs.extend(trait_coordinate_spec(trait, payload, token_env_var=token_env_var) for trait in selected_traits) + return tuple(specs) + + +def trace_scoring_dataset(records: Sequence[Mapping[str, Any]], *, name: str = "assistant_axis_asset_traces") -> Dataset: + """Build a trace dataset with assistant-response sections from records.""" + + return trace_dataset_from_records(records, name=name) + + +def build_trace_scoring_workflow( + *, + dataset: Dataset, + traits: Sequence[str] | None = None, + manifest: Mapping[str, Any] | None = None, + workflow_name: str = DEFAULT_SCORE_WORKFLOW_NAME, + include_assistant_axis: bool = True, +) -> WorkflowSpec: + """Build a Llama 70B trace-scoring workflow from the released asset manifest.""" + + payload = manifest or load_asset_manifest() + model = _mapping(payload.get("model")) + layer = int(model["target_layer"]) + model_key = str(model["model_key"]) + selected_traits = tuple(traits) if traits is not None else default_traits(payload) + coordinate_steps: list[WorkflowStep] = [] + coordinate_refs: list[StepRef] = [] + if include_assistant_axis: + coordinate_steps.append( + WorkflowStep( + name="assistant_axis", + runner="analysis_cpu", + spec=assistant_axis_coordinate_spec(payload), + ) + ) + coordinate_refs.append(StepRef("assistant_axis")) + for trait in selected_traits: + step_name = trait_step_name(trait) + coordinate_steps.append( + WorkflowStep( + name=step_name, + runner="analysis_cpu", + spec=trait_coordinate_spec(trait, payload), + ) + ) + coordinate_refs.append(StepRef(step_name)) + + return WorkflowSpec( + name=workflow_name, + steps=( + WorkflowStep( + name="capture_trace", + runner="capture_gpu", + spec=CaptureSpec( + engine=vllm_engine(model_key=model_key, add_generation_prompt=False), + dataset=dataset, + sites=( + ResidualSite( + name="response_residual", + site="resid_post", + layers=(layer,), + tokens=TokenSelector.section("assistant_response"), + storage=TensorStorage(dtype="float16", format="safetensors"), + ), + ), + ), + ), + *coordinate_steps, + WorkflowStep( + name="score_trace", + runner="analysis_cpu", + spec=ProjectionSpec( + feature=StepRef("capture_trace").feature("response_residual"), + coordinates=tuple(coordinate_refs), + slices=SectionSelector.named("assistant_response"), + layers=(layer,), + summaries=("mean", "min", "max", "trend"), + emit_labels=True, + ), + ), + WorkflowStep( + name="report", + runner="report_local", + spec=ReportSpec( + inputs=(StepRef("score_trace"),), + template="voice_assistant_axis_byot", + output_dir=f"papers/voice/assistant_axis/reports/{workflow_name}", + ), + ), + ), + ) + + +def trait_step_name(trait: str) -> str: + return "trait_" + normalize_trait(trait) + + +def normalize_trait(trait: str) -> str: + return str(trait).strip().lower().replace(" ", "_").replace("-", "_") + + +def _coordinate_metadata(manifest: Mapping[str, Any]) -> dict[str, Any]: + asset = _mapping(manifest.get("asset")) + model = _mapping(manifest.get("model")) + source = _mapping(manifest.get("source")) + method = _mapping(manifest.get("method")) + storage = _mapping(manifest.get("storage")) + return { + "asset_id": asset.get("id"), + "asset_status": asset.get("status"), + "model_key": model.get("model_key"), + "model_volume": model.get("model_volume"), + "model_volume_status": model.get("model_volume_status"), + "source_repo_id": source.get("repo_id"), + "paper": method.get("paper"), + "asset_root": storage.get("asset_root"), + } + + +def _mapping(value: Any) -> Mapping[str, Any]: + return value if isinstance(value, Mapping) else {} diff --git a/papers/voice/assistant_axis/deployment.py b/papers/voice/assistant_axis/deployment.py new file mode 100644 index 0000000..74488c4 --- /dev/null +++ b/papers/voice/assistant_axis/deployment.py @@ -0,0 +1,101 @@ +"""Deployment spec for the Assistant Axis service.""" + +from __future__ import annotations + +import os + +from pipelines_v2.api import ( + DeploymentConfig, + DeploymentSpec, + DeploymentTargetSpec, + HTTPEndpoint, + ModalResources, + ModalSecret, + ModalVolumeMount, + PythonRuntimeSpec, + ServiceFactory, +) +from papers.voice.assistant_axis.runtime import MODEL_VOLUME_NAME, MODEL_VOLUME_PATH +from papers.voice.assistant_axis.service_runtime import DEFAULT_TRAITS, create_app + + +SERVICE_GPU_SPEC = os.getenv("ASSISTANT_AXIS_SERVICE_GPU", "B200:1") +SERVICE_GPU_MEMORY_UTILIZATION = os.getenv("ASSISTANT_AXIS_SERVICE_GPU_MEMORY_UTILIZATION", "0.99") + + +def build_deployment() -> DeploymentSpec: + return DeploymentSpec( + name="assistant-axis", + service=ServiceFactory.from_function( + create_app, + local_python_sources=("pipelines_v2", "papers/voice/assistant_axis"), + ), + runtime=PythonRuntimeSpec( + python_version="3.13", + pip_packages=( + "aiohttp>=3.13.3", + "fastapi>=0.115.0", + "huggingface_hub>=0.36.0", + "numpy>=1.26.0", + "openai>=2.35.0", + "psycopg[binary]>=3.2.0", + "pyarrow>=23.0.1", + "pydantic>=2.7.0", + "safetensors>=0.4.0", + "torch>=2.4.0", + "transformers>=4.51.0", + "uvicorn[standard]>=0.30.0", + "vllm", + ), + env={ + "HF_HOME": f"{MODEL_VOLUME_PATH}/hf_home", + "TRANSFORMERS_CACHE": f"{MODEL_VOLUME_PATH}/hf_home/transformers", + "VLLM_ALLOW_INSECURE_SERIALIZATION": "1", + "VLLM_USE_DEEP_GEMM": "0", + "XENON_ACTIVATION_PATCH_DEBUG": os.getenv( + "ASSISTANT_AXIS_SERVICE_PATCH_DEBUG", + "", + ), + "XENON_ACTIVATION_PATCH_MAX_TOKENS": os.getenv( + "ASSISTANT_AXIS_SERVICE_PATCH_MAX_TOKENS", + "128", + ), + "ASSISTANT_AXIS_SERVICE_GPU": SERVICE_GPU_SPEC, + "ASSISTANT_AXIS_SERVICE_GPU_MEMORY_UTILIZATION": SERVICE_GPU_MEMORY_UTILIZATION, + }, + local_python_sources=("pipelines_v2", "papers/voice/assistant_axis"), + ), + endpoints=(HTTPEndpoint.asgi(label="api"),), + config=DeploymentConfig(values={"default_traits": list(DEFAULT_TRAITS)}), + ) + + +def build_deployment_targets() -> dict[str, DeploymentTargetSpec]: + return { + "prod": DeploymentTargetSpec.modal( + app_name="assistant-axis-service", + resources=ModalResources( + gpu=SERVICE_GPU_SPEC, + cpu=8, + memory_mb=96 * 1024, + timeout_seconds=60 * 60, + max_containers=int(os.getenv("ASSISTANT_AXIS_SERVICE_MAX_CONTAINERS", "1")), + secrets=( + ModalSecret.from_env_var( + "HF_TOKEN", + secret_name=os.getenv("ASSISTANT_AXIS_HF_SECRET_NAME", "huggingface"), + ), + ), + volumes=( + ModalVolumeMount( + name=MODEL_VOLUME_NAME, + mount_path=MODEL_VOLUME_PATH, + create_if_missing=True, + ), + ), + ), + min_containers=int(os.getenv("ASSISTANT_AXIS_SERVICE_MIN_CONTAINERS", "1")), + startup_timeout_seconds=60 * 60, + scaledown_window_seconds=int(os.getenv("ASSISTANT_AXIS_SERVICE_SCALEDOWN_WINDOW", "900")), + ), + } diff --git a/papers/voice/assistant_axis/judge.py b/papers/voice/assistant_axis/judge.py new file mode 100644 index 0000000..1a44945 --- /dev/null +++ b/papers/voice/assistant_axis/judge.py @@ -0,0 +1,235 @@ +"""Role-adherence judge for the Assistant Axis paper rerun.""" + +from __future__ import annotations + +import json +import os +import re +from dataclasses import dataclass +from typing import Any, Mapping + +from pipelines_v2.api import Dataset, TransformResult + +from papers.voice.assistant_axis.paper import PAPER_JUDGE_CONFIG +from papers.voice.assistant_axis.runtime import _artifact_result, _prompt_to_text, trace_dataset_from_records + + +@dataclass(frozen=True) +class JudgeConfig: + model: str + api_key_env: str + base_url: str | None + dry_run: bool + max_rows: int | None + max_tokens: int + + @classmethod + def from_env(cls) -> "JudgeConfig": + max_rows_raw = os.getenv("ASSISTANT_AXIS_JUDGE_MAX_ROWS") + return cls( + model=os.getenv("ASSISTANT_AXIS_JUDGE_MODEL", PAPER_JUDGE_CONFIG.judge_model), + api_key_env=os.getenv("ASSISTANT_AXIS_JUDGE_API_KEY_ENV", "OPENAI_API_KEY"), + base_url=os.getenv("ASSISTANT_AXIS_JUDGE_BASE_URL") or None, + dry_run=_env_bool("ASSISTANT_AXIS_JUDGE_DRY_RUN", False), + max_rows=int(max_rows_raw) if max_rows_raw else None, + max_tokens=int(os.getenv("ASSISTANT_AXIS_JUDGE_MAX_TOKENS", "64")), + ) + + +def judge_generated_role_adherence(*, generation: Any) -> TransformResult: + """Attach role-adherence scores to generated paper responses. + + Defaults and probes do not need a role-play judge score. Role rows are + scored 0-3 with an OpenAI-compatible judge model configured by env. + """ + + config = JudgeConfig.from_env() + payload = _artifact_result(generation) + rows = payload.get("rows") if isinstance(payload, Mapping) else [] + records: list[dict[str, Any]] = [] + judge_rows: list[dict[str, Any]] = [] + judged_count = 0 + + for index, row in enumerate(rows if isinstance(rows, list) else []): + if not isinstance(row, Mapping): + continue + example = row.get("example") if isinstance(row.get("example"), Mapping) else {} + labels = dict(example.get("labels") or {}) + metadata = dict(example.get("metadata") or {}) + axis_kind = str(labels.get("axis_kind") or "probe") + role = str(labels.get("role") or labels.get("source_name") or "probe") + response = str(row.get("generated_text") or "") + prompt_text = _prompt_to_text(example.get("prompt")) + trace = f"{prompt_text}\n\nAssistant: {response}".strip() + + if axis_kind == "default": + score = 0 + rationale = "default row; role-adherence judge not applied" + judged = False + elif config.max_rows is not None and judged_count >= config.max_rows: + score = -1 + rationale = "skipped by ASSISTANT_AXIS_JUDGE_MAX_ROWS" + judged = False + elif config.dry_run: + score = PAPER_JUDGE_CONFIG.fully_role_playing_score + rationale = "dry run placeholder score" + judged = False + else: + result = judge_one_response( + role=role, + instruction=str(metadata.get("instruction") or ""), + question=str(metadata.get("question") or ""), + response=response, + config=config, + ) + score = result["score"] + rationale = str(result.get("rationale") or "") + judged = True + judged_count += 1 + + records.append( + { + "example_id": f"paper_judged_{example.get('key') or index}", + "text": trace, + "axis_kind": axis_kind, + "role": role, + "source_name": labels.get("source_name"), + "adherence_score": score, + "assistant_response": _assistant_span(trace), + "metadata": { + **metadata, + "source_example_key": example.get("key"), + "finish_reason": row.get("finish_reason"), + "judge_model": config.model if axis_kind != "default" else None, + "judge_rationale": rationale, + "judge_applied": judged, + }, + } + ) + judge_rows.append( + { + "example_key": example.get("key"), + "axis_kind": axis_kind, + "role": role, + "score": score, + "judged": judged, + "rationale": rationale, + } + ) + + dataset = trace_dataset_from_records(records, name="assistant_axis_paper_judged_responses") + return TransformResult( + payload={ + "kind": "assistant_axis_role_adherence_judged_dataset", + "dataset": dataset.to_dict(), + "judge_rows": judge_rows, + "summary": { + "example_count": len(dataset.examples), + "judged_count": judged_count, + "judge_model": config.model, + "dry_run": config.dry_run, + "score_counts": _score_counts(dataset), + }, + }, + example_keys=dataset.example_keys(), + ) + + +def judge_one_response(*, role: str, instruction: str, question: str, response: str, config: JudgeConfig) -> dict[str, Any]: + api_key = os.getenv(config.api_key_env) + if not api_key: + raise RuntimeError( + f"Missing judge API key env var {config.api_key_env!r}. " + "Set it in the environment, Modal secret, or papers/voice/assistant_axis/.env." + ) + + from openai import OpenAI + + client_kwargs: dict[str, Any] = {"api_key": api_key} + if config.base_url: + client_kwargs["base_url"] = config.base_url + client = OpenAI(**client_kwargs) + messages = [ + { + "role": "system", + "content": ( + "You score whether an assistant response is role-playing as the requested role. " + "Return JSON only: {\"score\": 0|1|2|3, \"rationale\": \"short reason\"}." + ), + }, + { + "role": "user", + "content": _judge_prompt(role=role, instruction=instruction, question=question, response=response), + }, + ] + try: + completion = client.chat.completions.create( + model=config.model, + messages=messages, + temperature=0, + max_tokens=config.max_tokens, + response_format={"type": "json_object"}, + ) + except Exception: + completion = client.chat.completions.create( + model=config.model, + messages=messages, + temperature=0, + max_tokens=config.max_tokens, + ) + text = completion.choices[0].message.content or "" + return _parse_judge_json(text) + + +def _judge_prompt(*, role: str, instruction: str, question: str, response: str) -> str: + return ( + "Score scale:\n" + "0: not role-playing; model refused while identifying as itself\n" + "1: not role-playing; model identifies as itself but attempts an answer\n" + "2: identifies as itself while showing some role attributes\n" + "3: fully playing the role, including refusals while still identifying as the role\n\n" + f"Requested role: {role}\n\n" + f"Instruction: {instruction}\n\n" + f"User question: {question}\n\n" + f"Assistant response:\n{response}" + ) + + +def _parse_judge_json(text: str) -> dict[str, Any]: + try: + payload = json.loads(text) + except json.JSONDecodeError: + match = re.search(r"\b([0-3])\b", text) + if match is None: + raise ValueError(f"Judge response did not contain a 0-3 score: {text!r}") + return {"score": int(match.group(1)), "rationale": text.strip()} + score = int(payload.get("score")) + if score not in PAPER_JUDGE_CONFIG.score_values: + raise ValueError(f"Judge score must be one of {PAPER_JUDGE_CONFIG.score_values}, got {score!r}") + return {"score": score, "rationale": str(payload.get("rationale") or "")} + + +def _score_counts(dataset: Dataset) -> dict[str, int]: + counts: dict[str, int] = {} + for example in dataset.examples: + score = str(example.labels.get("adherence_score")) + counts[score] = counts.get(score, 0) + 1 + return dict(sorted(counts.items())) + + +def _assistant_span(text: str) -> dict[str, int]: + marker = "Assistant:" + start = text.rfind(marker) + if start < 0: + return {"char_start": 0, "char_end": len(text)} + start += len(marker) + while start < len(text) and text[start].isspace(): + start += 1 + return {"char_start": start, "char_end": len(text)} + + +def _env_bool(name: str, default: bool) -> bool: + value = os.getenv(name) + if value is None: + return default + return value.strip().lower() in {"1", "true", "yes", "y", "on"} diff --git a/papers/voice/assistant_axis/method.py b/papers/voice/assistant_axis/method.py new file mode 100644 index 0000000..1ce4083 --- /dev/null +++ b/papers/voice/assistant_axis/method.py @@ -0,0 +1,45 @@ +"""Editable data surface for the Assistant Axis method. + +The method is a default-vs-role contrast. The paper's examples are persona +roles, but BYOD roles can be support modes, policy modes, analyst styles, or +any other grouped non-default condition. +""" + +from __future__ import annotations + +from pathlib import Path + + +METHOD_NAME = "assistant_axis_default_vs_role" +SCHEMA_PATH = Path(__file__).parents[1] / "schemas" / "assistant_axis_method.schema.json" + +REQUIRED_BYOD_FIELDS = ( + "example_id", + "text", + "assistant_response", +) + +DERIVATION_FIELDS = ( + "axis_kind", + "role", +) + +DEFAULT_SYNTH_RECIPE = { + "default_condition": "ordinary helpful assistant response", + "role_condition": "role- or style-conditioned assistant response", + "response_section": "assistant_response", + "axis_formula": "mean(default_response_activations) - mean(per_role_role_playing_vectors)", + "paper_default_roles": ["pirate", "villain"], + "edit_here": { + "roles": ["TODO: replace with your grouped conditions"], + "source_prompts": ["TODO: replace with prompts/tasks to answer"], + "examples_per_role": "TODO: choose count", + "adherence_filter": "TODO: optional score threshold for role rows", + }, +} + +PRECOMPUTED_SCORE_TARGETS = { + "gemma_2_27b": {"model_id": "google/gemma-2-27b-it", "layer": 22}, + "qwen_3_32b": {"model_id": "Qwen/Qwen3-32B", "layer": 32}, + "llama_3_3_70b": {"model_id": "meta-llama/Llama-3.3-70B-Instruct", "layer": 40}, +} diff --git a/papers/voice/assistant_axis/paper.py b/papers/voice/assistant_axis/paper.py new file mode 100644 index 0000000..4fc51e6 --- /dev/null +++ b/papers/voice/assistant_axis/paper.py @@ -0,0 +1,288 @@ +"""Paper-specific data surface for Assistant Axis. + +This file is intentionally separate from ``method.py``. Use this for the +paper implementation: released source prompt data, paper-style expansion, and +from-scratch reruns. Use ``method.py`` for arbitrary BYOD/method data. +""" + +from __future__ import annotations + +from dataclasses import dataclass +from pathlib import Path +from typing import Any, Mapping + +from pipelines_v2.api import Dataset, Example +from pipelines_v2.mechinterp.assistant_axis import assistant_axis_prompt_dataset + + +SOURCE_PROMPT_DATASET_REPO = "belmore/assistant-axis-vector-prompts" +RELEASED_VECTOR_REPO = "lu-christina/assistant-axis-vectors" +UPSTREAM_CODE_REPO = "safety-research/assistant-axis" +PAPER_TITLE = "The Assistant Axis: Situating and Stabilizing the Default Persona of Language Models" +PAPER_ARXIV_ID = "2601.10387" +PAPER_URL = f"https://arxiv.org/abs/{PAPER_ARXIV_ID}" +PAPER_SCHEMA_NOTES = Path(__file__).with_name("PAPER_IMPLEMENTATION.md") + + +DEFAULT_ASSISTANT_INSTRUCTIONS = ( + "", + "You are an AI assistant.", + "You are a large language model.", + "You are {model_name}.", + "Respond as yourself.", +) + +PAPER_ROLE_COUNT = 275 +PAPER_DEFAULT_ROLE_COUNT = 1 +PAPER_INSTRUCTION_VARIANTS = 5 +PAPER_EXTRACTION_QUESTION_COUNT = 240 +PAPER_GENERATIONS_PER_SOURCE = PAPER_INSTRUCTION_VARIANTS * PAPER_EXTRACTION_QUESTION_COUNT + + +@dataclass(frozen=True) +class PaperGenerationConfig: + """Upstream response-generation defaults for from-scratch paper reruns.""" + + max_model_len: int = 2048 + question_count: int = PAPER_EXTRACTION_QUESTION_COUNT + prompt_indices: tuple[int, ...] = (0, 1, 2, 3, 4) + temperature: float = 0.7 + top_p: float = 0.9 + max_tokens: int = 512 + qwen_enable_thinking: bool = False + + +@dataclass(frozen=True) +class PaperActivationConfig: + """Upstream activation-extraction defaults.""" + + max_length: int = 2048 + batch_size: int = 16 + layers: str = "all" + activation_site: str = "post-MLP residual stream" + turn_pooling: str = "mean over assistant response turns" + + +@dataclass(frozen=True) +class PaperJudgeConfig: + """Upstream role-adherence judge defaults.""" + + judge_model: str = "gpt-4.1-mini" + max_tokens: int = 10 + batch_size: int = 50 + requests_per_second: int = 100 + score_values: tuple[int, ...] = (0, 1, 2, 3) + fully_role_playing_score: int = 3 + min_score_3_count_per_role: int = 50 + + +PAPER_GENERATION_CONFIG = PaperGenerationConfig() +PAPER_ACTIVATION_CONFIG = PaperActivationConfig() +PAPER_JUDGE_CONFIG = PaperJudgeConfig() + + +SUPPORTED_RELEASED_MODELS = { + "gemma_2_27b": { + "model_id": "google/gemma-2-27b-it", + "target_layer": 22, + "total_layers": 46, + "vector_prefix": "gemma-2-27b", + "assistant_axis_file": "gemma-2-27b/assistant_axis.pt", + "default_vector_file": "gemma-2-27b/default_vector.pt", + "capping_config_file": None, + "capping_experiment": None, + "has_capping_config": False, + }, + "qwen_3_32b": { + "model_id": "Qwen/Qwen3-32B", + "target_layer": 32, + "total_layers": 64, + "vector_prefix": "qwen-3-32b", + "assistant_axis_file": "qwen-3-32b/assistant_axis.pt", + "default_vector_file": "qwen-3-32b/default_vector.pt", + "capping_config_file": "qwen-3-32b/capping_config.pt", + "capping_experiment": "layers_46:54-p0.25", + "has_capping_config": True, + }, + "llama_3_3_70b": { + "model_id": "meta-llama/Llama-3.3-70B-Instruct", + "target_layer": 40, + "total_layers": 80, + "vector_prefix": "llama-3.3-70b", + "assistant_axis_file": "llama-3.3-70b/assistant_axis.pt", + "default_vector_file": "llama-3.3-70b/default_vector.pt", + "capping_config_file": "llama-3.3-70b/capping_config.pt", + "capping_experiment": "layers_56:72-p0.25", + "has_capping_config": True, + }, +} + + +@dataclass(frozen=True) +class ExpandedPromptRow: + """Concrete prompt row expected by a paper-style from-scratch rerun.""" + + example_id: str + prompt: list[dict[str, str]] + axis_kind: str + role: str + source_name: str + instruction: str + question: str + + +def source_prompt_dataset(*, revision: str | None = None, limit: int | None = None) -> Dataset: + """Return the released/source prompt table used for paper-style expansion.""" + + return assistant_axis_prompt_dataset( + repo_id=SOURCE_PROMPT_DATASET_REPO, + revision=revision, + limit=limit, + ) + + +def paper_prompt_template(*, instruction: str, question: str) -> str: + """Render the fallback user text for tokenizers without system support.""" + + return f"{instruction.strip()}\n\n{question.strip()}" + + +def paper_prompt_messages( + *, + instruction: str, + question: str, + tokenizer_supports_system_prompt: bool = True, +) -> list[dict[str, str]]: + """Render one concrete paper-style conversation. + + The upstream generator checks whether the tokenizer chat template preserves + a system message. If it does, the role/default instruction is passed as a + system turn and the extraction question is passed as the user turn. If it + does not, the instruction and question are concatenated into one user turn. + """ + + instruction = instruction.strip() + question = question.strip() + if tokenizer_supports_system_prompt: + messages: list[dict[str, str]] = [] + if instruction: + messages.append({"role": "system", "content": instruction}) + messages.append({"role": "user", "content": question}) + return messages + if instruction: + return [{"role": "user", "content": paper_prompt_template(instruction=instruction, question=question)}] + return [{"role": "user", "content": question}] + + +def format_model_placeholder(instruction: str, *, model_short_name: str) -> str: + """Apply the paper repo's ``{model_name}`` instruction placeholder.""" + + return str(instruction).replace("{model_name}", str(model_short_name)) + + +def expand_source_row(row: Mapping[str, Any], *, model_short_name: str = "{model_name}") -> list[ExpandedPromptRow]: + """Expand one nested source row into concrete generation prompts. + + Expected source metadata fields are provided by + ``assistant_axis_prompt_dataset``: ``instructions`` and ``questions``. + This function is deliberately small and auditable so paper-template + changes happen in one place. + """ + + labels = dict(row.get("labels") or {}) + metadata = dict(row.get("metadata") or {}) + source_name = str(labels.get("name") or row.get("key") or "") + source_type = str(labels.get("source_type") or "") + is_default = bool(labels.get("is_default")) + axis_kind = "default" if is_default or source_type == "default" else "role" + role = "default" if axis_kind == "default" else source_name + instructions = _as_string_list(metadata.get("instructions")) + questions = _as_string_list(metadata.get("questions")) + + rows: list[ExpandedPromptRow] = [] + for instruction_index, raw_instruction in enumerate(instructions): + instruction = format_model_placeholder(raw_instruction, model_short_name=model_short_name) + for question_index, question in enumerate(questions): + example_id = ( + f"{axis_kind}_{_slug(role)}_i{instruction_index:03d}_q{question_index:03d}" + ) + rows.append( + ExpandedPromptRow( + example_id=example_id, + prompt=paper_prompt_messages(instruction=instruction, question=question), + axis_kind=axis_kind, + role=role, + source_name=source_name, + instruction=instruction, + question=question, + ) + ) + return rows + + +def expanded_rows_to_dataset(rows: list[ExpandedPromptRow], *, name: str) -> Dataset: + """Convert expanded paper prompt rows into a generation dataset.""" + + return Dataset.from_examples( + [ + Example( + key=row.example_id, + prompt=row.prompt, + labels={ + "axis_kind": row.axis_kind, + "role": row.role, + "source_name": row.source_name, + }, + metadata={ + "instruction": row.instruction, + "question": row.question, + "paper_source": "assistant_axis", + "paper_prompt_semantics": "system instruction plus user question when chat template supports system prompts", + }, + ) + for row in rows + ], + name=name, + ) + + +def _as_string_list(value: Any) -> list[str]: + if value is None: + return [] + if isinstance(value, str): + return [value] + if isinstance(value, list | tuple): + return [str(item) for item in value] + return [str(value)] + + +def _slug(value: str) -> str: + cleaned = "".join(ch.lower() if ch.isalnum() else "_" for ch in str(value)) + return "_".join(part for part in cleaned.split("_") if part) or "unnamed" + + +__all__ = [ + "ExpandedPromptRow", + "DEFAULT_ASSISTANT_INSTRUCTIONS", + "PAPER_ACTIVATION_CONFIG", + "PAPER_ARXIV_ID", + "PAPER_DEFAULT_ROLE_COUNT", + "PAPER_EXTRACTION_QUESTION_COUNT", + "PAPER_GENERATION_CONFIG", + "PAPER_GENERATIONS_PER_SOURCE", + "PAPER_INSTRUCTION_VARIANTS", + "PAPER_JUDGE_CONFIG", + "PAPER_ROLE_COUNT", + "PAPER_TITLE", + "PAPER_URL", + "RELEASED_VECTOR_REPO", + "SOURCE_PROMPT_DATASET_REPO", + "SUPPORTED_RELEASED_MODELS", + "UPSTREAM_CODE_REPO", + "expanded_rows_to_dataset", + "expand_source_row", + "format_model_placeholder", + "paper_prompt_messages", + "paper_prompt_template", + "source_prompt_dataset", +] diff --git a/papers/voice/assistant_axis/reports/papers_voice_assistant_axis_llama33_70b_asset_score/report_da90d89a7608_10926cfa/assets/manifest.json b/papers/voice/assistant_axis/reports/papers_voice_assistant_axis_llama33_70b_asset_score/report_da90d89a7608_10926cfa/assets/manifest.json new file mode 100644 index 0000000..71c0777 --- /dev/null +++ b/papers/voice/assistant_axis/reports/papers_voice_assistant_axis_llama33_70b_asset_score/report_da90d89a7608_10926cfa/assets/manifest.json @@ -0,0 +1,14 @@ +{ + "figures": {}, + "tables": {}, + "unsupported_inputs": [ + { + "artifact_id": "projection_1_4ba7e075", + "artifact_kind": "projection", + "downloaded_result_path": "papers/voice/assistant_axis/reports/papers_voice_assistant_axis_llama33_70b_asset_score/report_da90d89a7608_10926cfa/results/score_trace_results.json", + "reason": "unsupported_result_kind", + "result_kind": "projection_result", + "step_name": "score_trace" + } + ] +} \ No newline at end of file diff --git a/papers/voice/assistant_axis/reports/papers_voice_assistant_axis_llama33_70b_asset_score/report_da90d89a7608_10926cfa/report.json b/papers/voice/assistant_axis/reports/papers_voice_assistant_axis_llama33_70b_asset_score/report_da90d89a7608_10926cfa/report.json new file mode 100644 index 0000000..c81b672 --- /dev/null +++ b/papers/voice/assistant_axis/reports/papers_voice_assistant_axis_llama33_70b_asset_score/report_da90d89a7608_10926cfa/report.json @@ -0,0 +1,176 @@ +{ + "inputs": [ + { + "artifact_id": "projection_1_4ba7e075", + "artifact_kind": "projection", + "created_at": "2026-05-26T18:06:05.006324+00:00", + "downloaded_result_path": "papers/voice/assistant_axis/reports/papers_voice_assistant_axis_llama33_70b_asset_score/report_da90d89a7608_10926cfa/results/score_trace_results.json", + "engine": {}, + "example_coverage": { + "example_count": 1, + "example_key_count": 1, + "materialized": true + }, + "feature_names": [], + "has_generations": false, + "input_artifact_refs": [ + "assistant_axis_precomputed_coordinate_1_da685d16", + "assistant_axis_trait_coordinate_1_7c98b591", + "capture_1_e6e8be906bd6" + ], + "label_names": [ + "projection__assistant_axis__layer_40__max", + "projection__assistant_axis__layer_40__mean", + "projection__assistant_axis__layer_40__min", + "projection__assistant_axis__layer_40__slice_count", + "projection__assistant_axis__layer_40__trend", + "projection__assistant_axis_trait_calm__layer_40__max", + "projection__assistant_axis_trait_calm__layer_40__mean", + "projection__assistant_axis_trait_calm__layer_40__min", + "projection__assistant_axis_trait_calm__layer_40__slice_count", + "projection__assistant_axis_trait_calm__layer_40__trend" + ], + "name": "score_trace", + "primary_output": { + "bytes": 3980, + "format": "json", + "name": "result", + "path": "/data/artifacts/model-assets/vectors/assistant-axis/papers_voice_assistant_axis_llama33_70b_asset_score_modal_smoke/projection_1_4ba7e075/result.json", + "store": "modal_volume" + }, + "runtime": { + "runner_kind": "modal", + "runtime_app_id": "ap-g4kWBAsclhj0X3QJ9snPYi", + "volume_mappings": [ + { + "mount_path": "/data", + "name": "xenon-data", + "role": "artifact_store" + }, + { + "mount_path": "/models", + "name": "yora-models", + "role": "runner_resource" + } + ] + }, + "storage": { + "labels": { + "count": 10, + "items": { + "projection__assistant_axis__layer_40__max": { + "bytes": 129, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/assistant-axis/papers_voice_assistant_axis_llama33_70b_asset_score_modal_smoke/projection_1_4ba7e075/labels/projection__assistant_axis__layer_40__max.json", + "store": "modal_volume" + }, + "projection__assistant_axis__layer_40__mean": { + "bytes": 130, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/assistant-axis/papers_voice_assistant_axis_llama33_70b_asset_score_modal_smoke/projection_1_4ba7e075/labels/projection__assistant_axis__layer_40__mean.json", + "store": "modal_volume" + }, + "projection__assistant_axis__layer_40__min": { + "bytes": 129, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/assistant-axis/papers_voice_assistant_axis_llama33_70b_asset_score_modal_smoke/projection_1_4ba7e075/labels/projection__assistant_axis__layer_40__min.json", + "store": "modal_volume" + }, + "projection__assistant_axis__layer_40__slice_count": { + "bytes": 120, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/assistant-axis/papers_voice_assistant_axis_llama33_70b_asset_score_modal_smoke/projection_1_4ba7e075/labels/projection__assistant_axis__layer_40__slice_count.json", + "store": "modal_volume" + }, + "projection__assistant_axis__layer_40__trend": { + "bytes": 116, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/assistant-axis/papers_voice_assistant_axis_llama33_70b_asset_score_modal_smoke/projection_1_4ba7e075/labels/projection__assistant_axis__layer_40__trend.json", + "store": "modal_volume" + }, + "projection__assistant_axis_trait_calm__layer_40__max": { + "bytes": 140, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/assistant-axis/papers_voice_assistant_axis_llama33_70b_asset_score_modal_smoke/projection_1_4ba7e075/labels/projection__assistant_axis_trait_calm__layer_40__max.json", + "store": "modal_volume" + }, + "projection__assistant_axis_trait_calm__layer_40__mean": { + "bytes": 141, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/assistant-axis/papers_voice_assistant_axis_llama33_70b_asset_score_modal_smoke/projection_1_4ba7e075/labels/projection__assistant_axis_trait_calm__layer_40__mean.json", + "store": "modal_volume" + }, + "projection__assistant_axis_trait_calm__layer_40__min": { + "bytes": 140, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/assistant-axis/papers_voice_assistant_axis_llama33_70b_asset_score_modal_smoke/projection_1_4ba7e075/labels/projection__assistant_axis_trait_calm__layer_40__min.json", + "store": "modal_volume" + }, + "projection__assistant_axis_trait_calm__layer_40__slice_count": { + "bytes": 131, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/assistant-axis/papers_voice_assistant_axis_llama33_70b_asset_score_modal_smoke/projection_1_4ba7e075/labels/projection__assistant_axis_trait_calm__layer_40__slice_count.json", + "store": "modal_volume" + }, + "projection__assistant_axis_trait_calm__layer_40__trend": { + "bytes": 127, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/assistant-axis/papers_voice_assistant_axis_llama33_70b_asset_score_modal_smoke/projection_1_4ba7e075/labels/projection__assistant_axis_trait_calm__layer_40__trend.json", + "store": "modal_volume" + } + } + }, + "manifest": { + "bytes": 6396, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/assistant-axis/papers_voice_assistant_axis_llama33_70b_asset_score_modal_smoke/projection_1_4ba7e075/manifest.json", + "store": "modal_volume" + }, + "result": { + "bytes": 3980, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/assistant-axis/papers_voice_assistant_axis_llama33_70b_asset_score_modal_smoke/projection_1_4ba7e075/result.json", + "store": "modal_volume" + } + }, + "summary": { + "coordinate_count": 2, + "example_summary_count": 2, + "layer_count": 1, + "slice_row_count": 2 + }, + "workflow": { + "run_id": "wr_ec0db66d3034_dd11f07d", + "step_index": 3, + "step_name": "score_trace", + "workflow_name": "papers_voice_assistant_axis_llama33_70b_asset_score", + "workflow_step_key": "ec0db66d30347a2d151211ff802ff78b22c4e0287ca3be37f24135d726afbec6.score_trace" + } + } + ], + "kind": "report_result", + "local_results": [ + { + "artifact_id": "projection_1_4ba7e075", + "artifact_kind": "projection", + "name": "score_trace", + "path": "papers/voice/assistant_axis/reports/papers_voice_assistant_axis_llama33_70b_asset_score/report_da90d89a7608_10926cfa/results/score_trace_results.json", + "source": { + "bytes": 3980, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/assistant-axis/papers_voice_assistant_axis_llama33_70b_asset_score_modal_smoke/projection_1_4ba7e075/result.json", + "store": "modal_volume" + } + } + ], + "output_dir": "papers/voice/assistant_axis/reports/papers_voice_assistant_axis_llama33_70b_asset_score", + "summary": { + "example_count": 1, + "figures": {}, + "input_count": 1, + "step_summaries": {}, + "tables": {}, + "template": "voice_assistant_axis_byot" + }, + "template": "voice_assistant_axis_byot" +} \ No newline at end of file diff --git a/papers/voice/assistant_axis/reports/papers_voice_assistant_axis_llama33_70b_asset_score/report_da90d89a7608_10926cfa/report.md b/papers/voice/assistant_axis/reports/papers_voice_assistant_axis_llama33_70b_asset_score/report_da90d89a7608_10926cfa/report.md new file mode 100644 index 0000000..de5e5b2 --- /dev/null +++ b/papers/voice/assistant_axis/reports/papers_voice_assistant_axis_llama33_70b_asset_score/report_da90d89a7608_10926cfa/report.md @@ -0,0 +1,30 @@ +# voice_assistant_axis_byot + +- template: `voice_assistant_axis_byot` +- input_count: 1 +- example_count: 1 +- manifest: `assets/manifest.json` +- summary: `summary.json` + +## Inputs + +### score_trace + +- artifact_id: `projection_1_4ba7e075` +- artifact_kind: `projection` +- provenance: run `wr_ec0db66d3034_dd11f07d` / step `score_trace` / index `3` +- runtime: runner `modal` / app `ap-g4kWBAsclhj0X3QJ9snPYi` +- results: `results/score_trace_results.json` + +## Summary + +```json +{ + "example_count": 1, + "figures": {}, + "input_count": 1, + "step_summaries": {}, + "tables": {}, + "template": "voice_assistant_axis_byot" +} +``` diff --git a/papers/voice/assistant_axis/reports/papers_voice_assistant_axis_llama33_70b_asset_score/report_da90d89a7608_10926cfa/results/score_trace_results.json b/papers/voice/assistant_axis/reports/papers_voice_assistant_axis_llama33_70b_asset_score/report_da90d89a7608_10926cfa/results/score_trace_results.json new file mode 100644 index 0000000..e6018dc --- /dev/null +++ b/papers/voice/assistant_axis/reports/papers_voice_assistant_axis_llama33_70b_asset_score/report_da90d89a7608_10926cfa/results/score_trace_results.json @@ -0,0 +1,127 @@ +{ + "coordinates": [ + { + "layers": [ + 40 + ], + "metadata": { + "asset_id": "assistant-axis-llama-3.3-70b-released-v1", + "asset_root": "/data/artifacts/model-assets/vectors/assistant-axis/llama-3.3-70b/released/v1", + "asset_status": "released", + "capping_experiment": "layers_56:72-p0.25", + "display_name": "Llama 3.3 70B", + "filename": "llama-3.3-70b/assistant_axis.pt", + "hf_axis_filename": "llama-3.3-70b/assistant_axis.pt", + "hf_capping_config_filename": "llama-3.3-70b/capping_config.pt", + "hf_default_vector_filename": "llama-3.3-70b/default_vector.pt", + "model_id": "meta-llama/Llama-3.3-70B-Instruct", + "model_key": "llama_3_3_70b", + "model_volume": "yora-models", + "model_volume_status": "transitional", + "paper": "assistant_axis", + "repo_id": "lu-christina/assistant-axis-vectors", + "revision": null, + "short_name": "llama-3.3-70b", + "source": "precomputed_huggingface", + "source_repo_id": "lu-christina/assistant-axis-vectors", + "target_layer": 40, + "total_layers": 80 + }, + "name": "assistant_axis", + "source_kind": "coordinate_result" + }, + { + "layers": [ + 40 + ], + "metadata": { + "asset_id": "assistant-axis-llama-3.3-70b-released-v1", + "asset_root": "/data/artifacts/model-assets/vectors/assistant-axis/llama-3.3-70b/released/v1", + "asset_status": "released", + "capping_experiment": "layers_56:72-p0.25", + "display_name": "Llama 3.3 70B", + "filename": "llama-3.3-70b/trait_vectors/calm.pt", + "hf_axis_filename": "llama-3.3-70b/assistant_axis.pt", + "hf_capping_config_filename": "llama-3.3-70b/capping_config.pt", + "hf_default_vector_filename": "llama-3.3-70b/default_vector.pt", + "model_id": "meta-llama/Llama-3.3-70B-Instruct", + "model_key": "llama_3_3_70b", + "model_volume": "yora-models", + "model_volume_status": "transitional", + "paper": "assistant_axis", + "repo_id": "lu-christina/assistant-axis-vectors", + "revision": null, + "short_name": "llama-3.3-70b", + "source": "precomputed_huggingface_trait_vector", + "source_repo_id": "lu-christina/assistant-axis-vectors", + "target_layer": 40, + "total_layers": 80, + "trait": "calm" + }, + "name": "assistant_axis_trait__calm", + "source_kind": "coordinate_result" + } + ], + "example_summaries": [ + { + "coordinate": "assistant_axis", + "example_key": "trace_0", + "layer": 40, + "metrics": { + "max": 0.6912977695465088, + "mean": 0.6912977695465088, + "min": 0.6912977695465088, + "trend": 0.0 + }, + "slice_count": 1 + }, + { + "coordinate": "assistant_axis_trait__calm", + "example_key": "trace_0", + "layer": 40, + "metrics": { + "max": 1.7051053047180176, + "mean": 1.7051053047180176, + "min": 1.7051053047180176, + "trend": 0.0 + }, + "slice_count": 1 + } + ], + "feature": "response_residual", + "kind": "projection_result", + "metric": "signed_dot", + "pooling": "mean", + "rows": [ + { + "coordinate": "assistant_axis", + "example_key": "trace_0", + "layer": 40, + "role": "assistant", + "score": 0.6912977695465088, + "slice_index": 0, + "slice_name": "assistant_response", + "slice_token_count": 30, + "tags": {}, + "unit": "turn" + }, + { + "coordinate": "assistant_axis_trait__calm", + "example_key": "trace_0", + "layer": 40, + "role": "assistant", + "score": 1.7051053047180176, + "slice_index": 0, + "slice_name": "assistant_response", + "slice_token_count": 30, + "tags": {}, + "unit": "turn" + } + ], + "summary": { + "coordinate_count": 2, + "example_summary_count": 2, + "layer_count": 1, + "slice_row_count": 2 + } +} \ No newline at end of file diff --git a/papers/voice/assistant_axis/reports/papers_voice_assistant_axis_llama33_70b_asset_score/report_da90d89a7608_10926cfa/summary.json b/papers/voice/assistant_axis/reports/papers_voice_assistant_axis_llama33_70b_asset_score/report_da90d89a7608_10926cfa/summary.json new file mode 100644 index 0000000..aa707bf --- /dev/null +++ b/papers/voice/assistant_axis/reports/papers_voice_assistant_axis_llama33_70b_asset_score/report_da90d89a7608_10926cfa/summary.json @@ -0,0 +1,8 @@ +{ + "example_count": 1, + "figures": {}, + "input_count": 1, + "step_summaries": {}, + "tables": {}, + "template": "voice_assistant_axis_byot" +} \ No newline at end of file diff --git a/papers/voice/assistant_axis/runtime.py b/papers/voice/assistant_axis/runtime.py new file mode 100644 index 0000000..fa63c9f --- /dev/null +++ b/papers/voice/assistant_axis/runtime.py @@ -0,0 +1,559 @@ +"""Workflow helper surface for the Assistant Axis paper package.""" + +from __future__ import annotations + +import json +import os +from dataclasses import asdict +from pathlib import Path +from typing import Any, Mapping, Sequence + +from pipelines_v2.api import ( + Dataset, + Example, + LocalArtifactStore, + LocalRunnerSpec, + ModalResources, + ModalRunnerSpec, + ModalSecret, + ModalVolumeMount, + ModalVolumeStore, + TransformResult, + VLLMEngine, +) + +from papers.voice.assistant_axis.paper import ( + PAPER_ACTIVATION_CONFIG, + PAPER_GENERATION_CONFIG, + PAPER_JUDGE_CONFIG, + SUPPORTED_RELEASED_MODELS, + expand_source_row, +) +from papers.voice.storage import ( + ARTIFACT_VOLUME_NAME, + MODEL_VOLUME_PATH, + YORA_MODEL_VOLUME_NAME, + local_vector_root, + modal_vector_root, +) + + +MODEL_VOLUME_NAME = YORA_MODEL_VOLUME_NAME +DEFAULT_MODEL_KEY = "llama_3_3_70b" +PAPER_ENV_PATH = Path(__file__).with_name(".env") + + +def load_paper_env(path: str | Path = PAPER_ENV_PATH) -> None: + env_path = Path(path) + if not env_path.exists(): + return + for raw_line in env_path.read_text(encoding="utf-8").splitlines(): + line = raw_line.strip() + if not line or line.startswith("#") or "=" not in line: + continue + key, value = line.split("=", 1) + key = key.strip() + value = value.strip().strip('"').strip("'") + if key and key not in os.environ: + os.environ[key] = value + + +load_paper_env() + + +def env_int(name: str, default: int) -> int: + return int(os.getenv(name, str(default))) + + +def env_float(name: str, default: float) -> float: + return float(os.getenv(name, str(default))) + + +def env_bool(name: str, default: bool = False) -> bool: + value = os.getenv(name) + if value is None: + return bool(default) + return value.strip().lower() in {"1", "true", "yes", "y", "on"} + + +def env_list(name: str, default: Sequence[str]) -> tuple[str, ...]: + raw = os.getenv(name) + if raw is None: + return tuple(default) + return tuple(item.strip() for item in raw.split(",") if item.strip()) + + +def model_key_from_env() -> str: + key = os.getenv("ASSISTANT_AXIS_MODEL_KEY", DEFAULT_MODEL_KEY).strip() + if key not in SUPPORTED_RELEASED_MODELS: + known = ", ".join(sorted(SUPPORTED_RELEASED_MODELS)) + raise ValueError(f"Unknown ASSISTANT_AXIS_MODEL_KEY={key!r}; expected one of: {known}") + return key + + +def model_config(model_key: str | None = None) -> dict[str, Any]: + return dict(SUPPORTED_RELEASED_MODELS[model_key or model_key_from_env()]) + + +def model_id(model_key: str | None = None) -> str: + return str(model_config(model_key)["model_id"]) + + +def target_layer(model_key: str | None = None) -> int: + return int(model_config(model_key)["target_layer"]) + + +def model_short_name(model_key: str | None = None) -> str: + key = model_key or model_key_from_env() + if key == "gemma_2_27b": + return "Gemma" + if key == "qwen_3_32b": + return "Qwen" + if key == "llama_3_3_70b": + return "Llama" + return "{model_name}" + + +def vllm_engine( + *, + model_key: str | None = None, + max_model_len: int | None = None, + max_num_seqs: int = 1, + patched: bool = False, + add_generation_prompt: bool = True, +) -> VLLMEngine: + return VLLMEngine( + model_id=model_id(model_key), + model_path_root=MODEL_VOLUME_PATH, + max_model_len=int(max_model_len or PAPER_GENERATION_CONFIG.max_model_len), + tensor_parallel_size=4 if patched else 2, + gpu_memory_utilization=0.88, + enforce_eager=bool(patched), + max_num_seqs=int(max_num_seqs), + enable_prefix_caching=not patched, + add_generation_prompt=bool(add_generation_prompt), + ) + + +def runner_specs( + *, + workflow_name: str, + local_artifact_root: str | Path | None = None, + include_patch_env: bool = False, + include_judge_env: bool = False, +) -> dict[str, object]: + hf_secret = ModalSecret.from_env_var("HF_TOKEN", secret_name="huggingface") + analysis_secrets = [hf_secret] + if include_judge_env: + judge_api_key_env = os.getenv("ASSISTANT_AXIS_JUDGE_API_KEY_ENV", "OPENAI_API_KEY") + judge_secret_name = os.getenv("ASSISTANT_AXIS_JUDGE_SECRET_NAME", judge_api_key_env) + analysis_secrets.append(ModalSecret.from_env_var(judge_api_key_env, secret_name=judge_secret_name)) + model_mount = ModalVolumeMount( + name=MODEL_VOLUME_NAME, + mount_path=MODEL_VOLUME_PATH, + create_if_missing=True, + commit_on_success=True, + ) + shared_env = { + "HF_HOME": f"{MODEL_VOLUME_PATH}/hf_home", + "TRANSFORMERS_CACHE": f"{MODEL_VOLUME_PATH}/hf_home/transformers", + } + if include_patch_env: + shared_env["XENON_ACTIVATION_PATCH_MAX_TOKENS"] = "1" + modal_store = ModalVolumeStore( + name=ARTIFACT_VOLUME_NAME, + root=modal_vector_root("assistant-axis", workflow_name), + ) + local_root = Path(local_artifact_root or local_vector_root("assistant-axis", workflow_name)) + return { + "generation_gpu": ModalRunnerSpec( + resources=ModalResources( + gpu="H100:4" if include_patch_env else "H100:2", + cpu=8, + memory_mb=96 * 1024, + timeout_seconds=60 * 60 * 3, + max_containers=1, + env=shared_env, + secrets=(hf_secret,), + volumes=(model_mount,), + ), + artifacts=modal_store, + ), + "capture_gpu": ModalRunnerSpec( + resources=ModalResources( + gpu="H100:2", + cpu=8, + memory_mb=96 * 1024, + timeout_seconds=60 * 60 * 3, + max_containers=1, + env=shared_env, + secrets=(hf_secret,), + volumes=(model_mount,), + ), + artifacts=modal_store, + ), + "analysis_cpu": ModalRunnerSpec( + resources=ModalResources( + cpu=4, + memory_mb=16 * 1024, + timeout_seconds=60 * 45, + env=shared_env, + secrets=tuple(analysis_secrets), + volumes=(model_mount,), + ), + artifacts=modal_store, + ), + "report_local": LocalRunnerSpec(artifacts=LocalArtifactStore(local_root)), + } + + +def load_jsonl_records(path: str | Path) -> list[dict[str, Any]]: + records: list[dict[str, Any]] = [] + with Path(path).open("r", encoding="utf-8") as handle: + for line_number, line in enumerate(handle, start=1): + text = line.strip() + if not text: + continue + payload = json.loads(text) + if not isinstance(payload, Mapping): + raise ValueError(f"JSONL line {line_number} must be an object") + records.append(dict(payload)) + return records + + +def trace_dataset_from_records(records: Sequence[Mapping[str, Any]], *, name: str) -> Dataset: + examples: list[Example] = [] + for index, row in enumerate(records): + text = str(row.get("text") or row.get("trace") or row.get("prompt") or "") + if not text.strip(): + raise ValueError(f"Trace row {index} is missing non-empty text/trace/prompt") + span = _span_from_row(row, text=text) + labels = dict(row.get("labels") or {}) + for key in ("axis_kind", "role", "adherence_score", "model_id", "split", "surface", "source"): + if key in row and key not in labels: + labels[key] = row[key] + examples.append( + Example( + key=str(row.get("example_id") or row.get("key") or f"trace_{index:06d}"), + prompt=text, + labels=labels, + metadata={ + **(dict(row.get("metadata") or {})), + "token_sections": {"assistant_response": span}, + "section_records": [ + { + "name": "assistant_response", + "unit": "turn", + "role": "assistant", + "index": int(row.get("turn_index", 0)), + "char_start": int(span["char_start"]), + "char_end": int(span["char_end"]), + } + ], + }, + ) + ) + return Dataset.from_examples(examples, name=name) + + +def byod_dataset_from_env(*, workflow_name: str) -> Dataset: + path = os.getenv("ASSISTANT_AXIS_BYOD_JSONL") + if path: + return trace_dataset_from_records(load_jsonl_records(path), name=f"{workflow_name}_byod") + return trace_dataset_from_records( + [ + { + "example_id": "default_0", + "text": "Human: Explain how to triage a failed deploy.\n\nAssistant: Check the failing step, verify the migration state, and choose rollback or fix-forward based on observed impact.", + "axis_kind": "default", + "role": "default", + "adherence_score": 0, + }, + { + "example_id": "default_1", + "text": "Human: Explain how to triage a failed deploy.\n\nAssistant: Separate symptoms from causes, inspect logs, and avoid rerunning destructive steps until the database state is known.", + "axis_kind": "default", + "role": "default", + "adherence_score": 0, + }, + { + "example_id": "role_terse_0", + "text": "Human: Explain how to triage a failed deploy.\n\nAssistant: Logs first. Confirm the migration version. Freeze writes. Roll back only after checking whether partial writes occurred.", + "axis_kind": "role", + "role": "terse_operator", + "adherence_score": 3, + }, + { + "example_id": "role_teacher_0", + "text": "Human: Explain how to triage a failed deploy.\n\nAssistant: Think of it as narrowing a fault tree: identify the exact step, preserve evidence, then choose the least risky recovery path.", + "axis_kind": "role", + "role": "teacher", + "adherence_score": 3, + }, + { + "example_id": "probe_0", + "text": "Human: The deploy failed and people are escalating. What now?\n\nAssistant: Pause new changes, identify whether the database is partially migrated, and communicate one recovery owner plus the next checkpoint.", + "axis_kind": "probe", + "role": "probe", + "adherence_score": 0, + }, + ], + name=f"{workflow_name}_byod_fixture", + ) + + +def byot_dataset_from_env(*, workflow_name: str) -> Dataset: + path = os.getenv("ASSISTANT_AXIS_BYOT_JSONL") + if path: + return trace_dataset_from_records(load_jsonl_records(path), name=f"{workflow_name}_byot") + trace = os.getenv( + "ASSISTANT_AXIS_BYOT_TRACE", + "Human: The migration failed and the incident channel is getting noisy. What should I do?\n\n" + "Assistant: First, stop additional deploy attempts so the state stays inspectable. Then identify the exact migration revision, check whether any writes completed, and name one person to coordinate updates while the technical owner chooses rollback or fix-forward.", + ) + return trace_dataset_from_records( + [{"example_id": "trace_0", "text": trace, "surface": "byot_default"}], + name=f"{workflow_name}_byot_fixture", + ) + + +def byop_dataset_from_env(*, workflow_name: str) -> Dataset: + prompt = os.getenv( + "ASSISTANT_AXIS_BYOP_PROMPT", + "The production deploy failed during a database migration and the team is tense. Write a short assistant response that helps me decide what to do next.", + ) + return Dataset.from_examples( + [ + Example( + key="prompt_0", + prompt=[{"role": "user", "content": prompt}], + labels={"surface": "byop", "trait": os.getenv("ASSISTANT_AXIS_STEERING_TRAIT", "calm")}, + ) + ], + name=f"{workflow_name}_byop_prompt", + ) + + +def build_paper_generation_prompt_dataset( + *, + source_dataset: Any, + model_key: str, + role_limit: int, + question_limit: int, + instruction_limit: int, +) -> TransformResult: + dataset = _dataset_from_value(source_dataset).resolve() + default_rows: list[Mapping[str, Any]] = [] + role_rows: list[Mapping[str, Any]] = [] + for example in dataset.examples: + labels = dict(example.labels) + row = {"key": example.key, "labels": labels, "metadata": dict(example.metadata)} + if labels.get("is_default") or labels.get("source_type") == "default": + default_rows.append(row) + else: + role_rows.append(row) + selected_sources = [*default_rows[:1], *role_rows[: int(role_limit)]] + expanded = [] + short_name = model_short_name(model_key) + for source in selected_sources: + for row in expand_source_row(source, model_short_name=short_name): + instruction_index = int(row.example_id.rsplit("_i", 1)[1].split("_q", 1)[0]) + question_index = int(row.example_id.rsplit("_q", 1)[1]) + if instruction_index >= int(instruction_limit) or question_index >= int(question_limit): + continue + expanded.append(row) + prompt_dataset = Dataset.from_examples( + [ + Example( + key=row.example_id, + prompt=row.prompt, + labels={ + "axis_kind": row.axis_kind, + "role": row.role, + "source_name": row.source_name, + }, + metadata={ + "instruction": row.instruction, + "question": row.question, + "paper_source": "assistant_axis", + "paper_adherence_status": "unjudged", + }, + ) + for row in expanded + ], + name=f"assistant_axis_paper_prompts_{model_key}", + ) + return TransformResult( + payload={ + "kind": "assistant_axis_paper_generation_prompt_dataset", + "dataset": prompt_dataset.to_dict(), + "summary": { + "model_key": model_key, + "source_count": len(selected_sources), + "prompt_count": len(prompt_dataset.examples), + "role_limit": int(role_limit), + "question_limit": int(question_limit), + "instruction_limit": int(instruction_limit), + "paper_generation": asdict(PAPER_GENERATION_CONFIG), + "paper_activation": asdict(PAPER_ACTIVATION_CONFIG), + "paper_judge": asdict(PAPER_JUDGE_CONFIG), + }, + }, + example_keys=prompt_dataset.example_keys(), + ) + + +def generation_result_to_axis_capture_dataset( + *, + generation: Any, + fallback_axis_kind: str = "probe", + fallback_role: str = "probe", + surface: str = "generated", +) -> TransformResult: + payload = _artifact_result(generation) + rows = payload.get("rows") if isinstance(payload, Mapping) else [] + records: list[dict[str, Any]] = [] + for index, row in enumerate(rows if isinstance(rows, list) else []): + if not isinstance(row, Mapping): + continue + example = row.get("example") if isinstance(row.get("example"), Mapping) else {} + labels = dict(example.get("labels") or {}) + prompt_text = _prompt_to_text(example.get("prompt")) + generated_text = str(row.get("generated_text") or "") + trace = f"{prompt_text}\n\nAssistant: {generated_text}".strip() + records.append( + { + "example_id": f"{surface}_{example.get('key') or index}", + "text": trace, + "assistant_response": _assistant_span(trace), + "axis_kind": labels.get("axis_kind", fallback_axis_kind), + "role": labels.get("role", fallback_role), + "adherence_score": labels.get("adherence_score", PAPER_JUDGE_CONFIG.fully_role_playing_score), + "surface": surface, + "metadata": { + "source_example_key": example.get("key"), + "finish_reason": row.get("finish_reason"), + }, + } + ) + dataset = trace_dataset_from_records(records, name=f"assistant_axis_{surface}_capture") + return TransformResult( + payload={ + "kind": "assistant_axis_generated_capture_dataset", + "dataset": dataset.to_dict(), + "summary": {"surface": surface, "example_count": len(dataset.examples)}, + }, + example_keys=dataset.example_keys(), + ) + + +def summarize_byop_generations(*, baseline: Any, steered: Any, score: Any | None = None) -> TransformResult: + baseline_payload = _artifact_result(baseline) + steered_payload = _artifact_result(steered) + score_payload = _artifact_result(score) if score is not None else {} + return TransformResult( + payload={ + "kind": "assistant_axis_byop_summary", + "baseline_text": _first_generation_text(baseline_payload), + "steered_text": _first_generation_text(steered_payload), + "score_summary": score_payload.get("summary") if isinstance(score_payload, Mapping) else None, + }, + example_keys=["prompt_0"], + ) + + +def coordinate_to_unit_direction(*, coordinate: Any, name: str) -> TransformResult: + payload = _artifact_result(coordinate) + layers = payload.get("layers") + if not isinstance(layers, Mapping) or not layers: + raise ValueError("coordinate payload must contain non-empty layers") + direction_layers: dict[str, dict[str, Any]] = {} + for layer, raw_layer_payload in layers.items(): + if not isinstance(raw_layer_payload, Mapping): + continue + vector = raw_layer_payload.get("vector") + if vector is None: + raise ValueError(f"coordinate layer {layer!r} is missing vector") + direction_layers[str(layer)] = { + **dict(raw_layer_payload), + "vector": list(vector), + "raw_vector": list(vector), + "norm": 1.0, + } + return TransformResult( + payload={ + "kind": "direction_result", + "feature": payload.get("feature"), + "name": str(name), + "layers": direction_layers, + "metadata": { + **(dict(payload.get("metadata")) if isinstance(payload.get("metadata"), Mapping) else {}), + "source": "released_assistant_axis_coordinate_unit_direction", + }, + "summary": {"layer_count": len(direction_layers), "unit_raw_vector": True}, + }, + example_keys=[], + ) + + +def _dataset_from_value(value: Any) -> Dataset: + if isinstance(value, Dataset): + return value + if isinstance(value, Mapping): + return Dataset.from_dict(value) + if hasattr(value, "result"): + result = value.result() + if isinstance(result, Mapping) and isinstance(result.get("dataset"), Mapping): + return Dataset.from_dict(result["dataset"]) + raise TypeError(f"Cannot coerce {type(value).__name__} to Dataset") + + +def _artifact_result(value: Any) -> Mapping[str, Any]: + if value is None: + return {} + if hasattr(value, "result"): + result = value.result() + return result if isinstance(result, Mapping) else {} + return value if isinstance(value, Mapping) else {} + + +def _span_from_row(row: Mapping[str, Any], *, text: str) -> dict[str, int]: + raw = row.get("assistant_response") + if isinstance(raw, Mapping): + return {"char_start": int(raw["char_start"]), "char_end": int(raw["char_end"])} + return _assistant_span(text) + + +def _assistant_span(text: str) -> dict[str, int]: + marker = "Assistant:" + start = text.rfind(marker) + if start < 0: + return {"char_start": 0, "char_end": len(text)} + start += len(marker) + while start < len(text) and text[start].isspace(): + start += 1 + return {"char_start": start, "char_end": len(text)} + + +def _prompt_to_text(prompt: Any) -> str: + if isinstance(prompt, str): + return prompt + if isinstance(prompt, list): + parts = [] + for item in prompt: + if isinstance(item, Mapping): + role = str(item.get("role") or "user").title() + content = str(item.get("content") or "") + parts.append(f"{role}: {content}") + else: + parts.append(str(item)) + return "\n\n".join(parts) + return str(prompt) + + +def _first_generation_text(payload: Mapping[str, Any]) -> str: + rows = payload.get("rows", []) + for row in rows if isinstance(rows, list) else []: + if isinstance(row, Mapping) and isinstance(row.get("generated_text"), str): + return str(row["generated_text"]).strip() + return "" diff --git a/papers/voice/assistant_axis/service.py b/papers/voice/assistant_axis/service.py new file mode 100644 index 0000000..fec1dc1 --- /dev/null +++ b/papers/voice/assistant_axis/service.py @@ -0,0 +1,22 @@ +"""Compatibility Modal entrypoint for the Assistant Axis service. + +Prefer: + + uv run python -m pipelines_v2.cli deployment deploy --file papers/voice/assistant_axis/deployment.py --target prod + +This module remains importable for existing `modal deploy +papers/voice/assistant_axis/service.py` workflows, but the service is now built +through the generic pipelines_v2 deployment runtime. +""" + +from __future__ import annotations + +from papers.voice.assistant_axis.deployment import build_deployment, build_deployment_targets +from pipelines_v2.runtime.modal_deployments import build_modal_app + + +app = build_modal_app( + build_deployment(), + build_deployment_targets()["prod"], + target_name="prod", +) diff --git a/papers/voice/assistant_axis/service_runtime.py b/papers/voice/assistant_axis/service_runtime.py new file mode 100644 index 0000000..f96944a --- /dev/null +++ b/papers/voice/assistant_axis/service_runtime.py @@ -0,0 +1,452 @@ +"""Assistant Axis service logic for runtime deployments.""" + +from __future__ import annotations + +import os +from typing import Any, Literal + +from pydantic import BaseModel, Field + + +DEFAULT_TRAITS = ("calm", "supportive", "technical", "analytical", "confident", "verbose", "hostile", "condescending") + + +class ChatMessage(BaseModel): + role: Literal["system", "user", "assistant"] + content: str + + +class GenerateRequest(BaseModel): + prompt: str | list[ChatMessage] + max_tokens: int = Field(default=160, ge=1, le=512) + temperature: float = Field(default=0.7, ge=0.0, le=2.0) + top_p: float = Field(default=0.95, ge=0.0, le=1.0) + + +class SteerRequest(GenerateRequest): + trait: str + strength: float = Field(default=1.0, ge=-8.0, le=8.0) + + +class TraceTurn(BaseModel): + role: Literal["system", "user", "assistant"] + content: str + + +class ScoreTraceRequest(BaseModel): + text: str | None = None + turns: list[TraceTurn] | None = None + traits: list[str] = Field(default_factory=lambda: list(DEFAULT_TRAITS)) + + +def create_service(ctx: Any) -> "AssistantAxisService": + """Build the long-lived service object for function-style deployments.""" + + return ctx.singleton("assistant_axis_service", lambda: AssistantAxisService(ctx)) + + +def create_app(ctx: Any) -> Any: + """Build a FastAPI app for local compatibility; deployments use create_service.""" + + from fastapi import Body, Depends, FastAPI, Header, HTTPException + + api = FastAPI(title="Assistant Axis Service") + service = create_service(ctx) + if _env_bool("ASSISTANT_AXIS_SERVICE_EAGER_STEER_RUNTIME", default=False): + service.ensure_steer_runtime() + + def require_service_key(authorization: str | None = Header(default=None)) -> None: + expected = os.getenv("ASSISTANT_AXIS_SERVICE_API_KEY") + if not expected: + return + if authorization != f"Bearer {expected}": + raise HTTPException(status_code=401, detail="Invalid service token") + + @api.get("/health") + def health() -> dict[str, Any]: + return {"status": "ok", "service": "assistant-axis", "deployment": ctx.name, "model_key": service.model_key} + + @api.post("/warmup") + async def warmup(_: None = Depends(require_service_key)) -> dict[str, Any]: + service.ensure_runtime() + loaded_traits = [trait for trait in DEFAULT_TRAITS if service.direction_for_trait(trait)] + return {"status": "ready", "model_key": service.model_key, "layer": service.layer, "traits": loaded_traits} + + @api.post("/generate") + async def generate(raw_payload: dict[str, Any] = Body(...), _: None = Depends(require_service_key)) -> dict[str, Any]: + payload = GenerateRequest.model_validate(raw_payload) + return service.generate( + prompt=_prompt_payload(payload.prompt), + max_tokens=payload.max_tokens, + temperature=payload.temperature, + top_p=payload.top_p, + ) + + @api.post("/steer") + async def steer(raw_payload: dict[str, Any] = Body(...), _: None = Depends(require_service_key)) -> dict[str, Any]: + payload = SteerRequest.model_validate(raw_payload) + return service.steer( + prompt=_prompt_payload(payload.prompt), + trait=payload.trait, + strength=payload.strength, + max_tokens=payload.max_tokens, + temperature=payload.temperature, + top_p=payload.top_p, + ) + + @api.post("/score-trace") + async def score_trace(raw_payload: dict[str, Any] = Body(...), _: None = Depends(require_service_key)) -> dict[str, Any]: + payload = ScoreTraceRequest.model_validate(raw_payload) + return service.score_trace( + text=payload.text, + turns=[turn.model_dump() for turn in payload.turns or []], + traits=payload.traits, + ) + + return api + + +def _prompt_payload(prompt: str | list[Any]) -> str | list[dict[str, str]]: + if isinstance(prompt, str): + return prompt + return [{"role": str(item.role), "content": str(item.content)} for item in prompt] + + +class AssistantAxisService: + def __init__(self, ctx: Any) -> None: + from papers.voice.assistant_axis.runtime import model_key_from_env, target_layer + + self.ctx = ctx + self.model_key = model_key_from_env() + self.layer = target_layer(self.model_key) + self._coordinates: dict[str, dict[str, Any]] = {} + self._directions: dict[str, dict[str, Any]] = {} + + def health(self) -> dict[str, Any]: + return {"status": "ok", "service": "assistant-axis", "deployment": self.ctx.name, "model_key": self.model_key} + + def warmup_endpoint(self, payload: dict[str, Any] | None = None) -> dict[str, Any]: + del payload + self.ensure_runtime() + loaded_traits = [trait for trait in DEFAULT_TRAITS if self.direction_for_trait(trait)] + return {"status": "ready", "model_key": self.model_key, "layer": self.layer, "traits": loaded_traits} + + def generate_endpoint(self, payload: dict[str, Any]) -> dict[str, Any]: + request = GenerateRequest.model_validate(payload) + return self.generate( + prompt=_prompt_payload(request.prompt), + max_tokens=request.max_tokens, + temperature=request.temperature, + top_p=request.top_p, + ) + + def steer_endpoint(self, payload: dict[str, Any]) -> dict[str, Any]: + request = SteerRequest.model_validate(payload) + return self.steer( + prompt=_prompt_payload(request.prompt), + trait=request.trait, + strength=request.strength, + max_tokens=request.max_tokens, + temperature=request.temperature, + top_p=request.top_p, + ) + + def score_trace_endpoint(self, payload: dict[str, Any]) -> dict[str, Any]: + request = ScoreTraceRequest.model_validate(payload) + return self.score_trace( + text=request.text, + turns=[turn.model_dump() for turn in request.turns or []], + traits=request.traits, + ) + + def ensure_runtime(self) -> Any: + return self.ensure_steer_runtime() + + def ensure_steer_runtime(self) -> Any: + engine = self._engine(patched=True, add_generation_prompt=True) + return self.ctx.vllm_session( + "assistant_axis_steer", + engine=engine, + specs=(self._dummy_patched_spec(engine),), + ) + + def ensure_score_runtime(self) -> Any: + engine = self._engine(patched=False, add_generation_prompt=False) + return self.ctx.vllm_session( + "assistant_axis_score", + engine=engine, + specs=(self._dummy_capture_spec(engine),), + ) + + def generate(self, *, prompt: str | list[dict[str, str]], max_tokens: int, temperature: float, top_p: float) -> dict[str, Any]: + from pipelines_v2.api import Dataset, Example, GenerationRunSpec, GenerationSpec + + runtime = self.ensure_steer_runtime() + spec = GenerationRunSpec( + engine=runtime.engine, + dataset=Dataset.from_examples([Example(key="request_0", prompt=prompt)], name="assistant_axis_service_generate"), + generation=GenerationSpec(enabled=True, max_tokens=max_tokens, temperature=temperature, top_p=top_p), + ) + result = runtime.generate(spec) + return {"kind": "generation", "text": _first_text(result.rows), "rows": result.rows, "metadata": result.metadata} + + def steer( + self, + *, + prompt: str | list[dict[str, str]], + trait: str, + strength: float, + max_tokens: int, + temperature: float, + top_p: float, + ) -> dict[str, Any]: + from pipelines_v2.api import Dataset, Example, GenerationSpec, PatchedGenerationSpec + + runtime = self.ensure_steer_runtime() + spec = PatchedGenerationSpec( + engine=runtime.engine, + dataset=Dataset.from_examples([Example(key="request_0", prompt=prompt)], name="assistant_axis_service_steer"), + patch=self._add_direction_patch(trait=trait, strength=strength), + generation=GenerationSpec(enabled=True, max_tokens=max_tokens, temperature=temperature, top_p=top_p), + ) + result = runtime.intervene(spec) + return { + "kind": "steered_generation", + "trait": _normalize_trait(trait), + "strength": float(strength), + "text": _first_text(result.rows), + "rows": result.rows, + "summary": result.summary, + "metadata": result.metadata, + } + + def score_trace(self, *, text: str | None, turns: list[dict[str, str]], traits: list[str]) -> dict[str, Any]: + from pipelines_v2.api import CaptureSpec, GenerationSpec, ProjectionSpec, ResidualSite, SectionSelector, TensorStorage, TokenSelector + from pipelines_v2.operations.execution.projections import run_projection + from pipelines_v2.storage.artifacts import FeatureRef + from papers.voice.assistant_axis.runtime import trace_dataset_from_records + + trace_text = text if text and text.strip() else _turns_to_trace(turns) + if not trace_text.strip(): + raise ValueError("score-trace requires text or turns") + runtime = self.ensure_score_runtime() + dataset = trace_dataset_from_records([{"example_id": "trace_0", "text": trace_text}], name="assistant_axis_service_score") + capture_spec = CaptureSpec( + engine=runtime.engine, + dataset=dataset, + sites=( + ResidualSite( + name="response_residual", + site="resid_post", + layers=(self.layer,), + tokens=TokenSelector.section("assistant_response"), + storage=TensorStorage(dtype="float16", format="safetensors"), + ), + ), + generation=GenerationSpec(enabled=False), + ) + capture = runtime.capture(capture_spec) + projection = run_projection( + ProjectionSpec( + feature=FeatureRef(artifact=_MemoryFeatureArtifact(capture.features), name="response_residual"), + coordinates=tuple(_PayloadRef(self.coordinate_for_trait(trait)) for trait in traits), + slices=SectionSelector.named("assistant_response"), + layers=(self.layer,), + summaries=("mean",), + emit_labels=True, + ) + ) + return {"kind": "projection_result", **projection.payload} + + def direction_for_trait(self, trait: str) -> dict[str, Any]: + trait = _normalize_trait(trait) + if trait not in self._directions: + from papers.voice.assistant_axis.runtime import coordinate_to_unit_direction + + direction = coordinate_to_unit_direction( + coordinate=self.coordinate_for_trait(trait), + name=f"assistant_axis_trait__{trait}", + ) + self._directions[trait] = dict(direction.payload) + return self._directions[trait] + + def coordinate_for_trait(self, trait: str) -> dict[str, Any]: + from pipelines_v2.api import AssistantAxisTraitCoordinateSpec + from pipelines_v2.operations.execution import execute_artifact_operation + + trait = _normalize_trait(trait) + if trait not in self._coordinates: + result = execute_artifact_operation( + AssistantAxisTraitCoordinateSpec( + model_id=self._model_id(), + trait=trait, + token_env_var="HF_TOKEN", + ) + ) + self._coordinates[trait] = dict(result.payload) + return self._coordinates[trait] + + def _add_direction_patch(self, *, trait: str, strength: float) -> Any: + return self._add_direction_patch_from_payload(direction=self.direction_for_trait(trait), strength=strength) + + def _add_direction_patch_from_payload(self, *, direction: dict[str, Any], strength: float) -> Any: + from pipelines_v2.api import AddDirectionPatch, PatchApplication, ResidualInterventionSite, TokenSelector + + return AddDirectionPatch( + direction=_PayloadRef(direction), + write_site=ResidualInterventionSite(site="resid_post", layers=(self.layer,)), + target_tokens=TokenSelector.last(), + application=PatchApplication.every_token(include_prompt=True, include_decode=True), + strength=float(strength), + ) + + def _dummy_patched_spec(self, engine: Any) -> Any: + from pipelines_v2.api import Dataset, Example, GenerationSpec, PatchedGenerationSpec + + # The warmup spec only tells the session builder which patch family to + # compile. Avoid loading released tensor artifacts before vLLM forks. + dummy_direction = { + "kind": "assistant_axis_service_dummy_direction", + "name": "dummy", + "layers": {str(self.layer): {"values": [[0.0]], "shape": [1]}}, + } + return PatchedGenerationSpec( + engine=engine, + dataset=Dataset.from_examples([Example(key="warmup", prompt=[{"role": "user", "content": "Hello"}])]), + patch=self._add_direction_patch_from_payload(direction=dummy_direction, strength=0.0), + generation=GenerationSpec(enabled=True, max_tokens=1), + ) + + def _dummy_capture_spec(self, engine: Any) -> Any: + from pipelines_v2.api import CaptureSpec, Dataset, Example, ResidualSite, TensorStorage, TokenSelector + + return CaptureSpec( + engine=engine, + dataset=Dataset.from_examples([Example(key="warmup", prompt="Human: Hello\n\nAssistant: Hi")]), + sites=( + ResidualSite( + name="response_residual", + site="resid_post", + layers=(self.layer,), + tokens=TokenSelector.full_sequence(), + storage=TensorStorage(dtype="float16", format="safetensors"), + ), + ), + ) + + def _engine(self, *, patched: bool, add_generation_prompt: bool) -> Any: + from dataclasses import replace + + from papers.voice.assistant_axis.runtime import vllm_engine + + engine = vllm_engine( + model_key=self.model_key, + max_model_len=1024, + max_num_seqs=1, + patched=patched, + add_generation_prompt=add_generation_prompt, + ) + tensor_parallel_size = _service_tensor_parallel_size() + engine = replace( + engine, + tensor_parallel_size=tensor_parallel_size, + gpu_memory_utilization=_service_gpu_memory_utilization(), + async_scheduling=True, + extra={**dict(engine.extra), "attention_backend": _service_attention_backend()}, + ) + if patched: + enforce_eager = _env_bool("ASSISTANT_AXIS_SERVICE_ENFORCE_EAGER", default=False) + return replace(engine, enforce_eager=enforce_eager) + return engine + + def _model_id(self) -> str: + from papers.voice.assistant_axis.runtime import model_id + + return model_id(self.model_key) + + +class _PayloadRef: + def __init__(self, payload: dict[str, Any]) -> None: + self.payload = payload + + def result(self) -> dict[str, Any]: + return self.payload + + +class _MemoryFeatureArtifact: + id = "assistant_axis_service_memory_capture" + + def __init__(self, features: dict[str, Any]) -> None: + self.features = features + + def load_feature(self, name: str) -> dict[str, Any]: + return dict(self.features[name]) + + +def _first_text(rows: list[dict[str, Any]]) -> str: + for row in rows: + text = row.get("generated_text") + if isinstance(text, str) and text: + return text + return "" + + +def _normalize_trait(trait: str) -> str: + return trait.strip().lower().replace(" ", "_").replace("-", "_") + + +def _env_bool(name: str, *, default: bool) -> bool: + value = str(os.getenv(name, "") or "").strip().lower() + if not value: + return default + return value in {"1", "true", "yes", "on"} + + +def _service_tensor_parallel_size() -> int: + explicit = str(os.getenv("ASSISTANT_AXIS_SERVICE_TENSOR_PARALLEL_SIZE", "") or "").strip() + if explicit: + return max(1, int(explicit)) + gpu_spec = str(os.getenv("ASSISTANT_AXIS_SERVICE_GPU", "") or "").strip() + if ":" not in gpu_spec: + return 1 + count = gpu_spec.rsplit(":", 1)[1].strip() + return max(1, int(count)) if count.isdigit() else 1 + + +def _service_gpu_memory_utilization() -> float: + explicit = str(os.getenv("ASSISTANT_AXIS_SERVICE_GPU_MEMORY_UTILIZATION", "") or "").strip() + if not explicit: + return 0.99 + value = float(explicit) + if not 0 < value <= 1: + raise ValueError("ASSISTANT_AXIS_SERVICE_GPU_MEMORY_UTILIZATION must be in (0, 1].") + return value + + +def _service_attention_backend() -> str: + return str(os.getenv("ASSISTANT_AXIS_SERVICE_ATTENTION_BACKEND", "FLASH_ATTN") or "FLASH_ATTN") + + +def _turns_to_trace(turns: list[dict[str, str]]) -> str: + chunks = [] + for turn in turns: + role = str(turn.get("role") or "").strip().lower() + content = str(turn.get("content") or "").strip() + if not content: + continue + label = "Human" if role == "user" else role.capitalize() + chunks.append(f"{label}: {content}") + return "\n\n".join(chunks) + + +__all__ = [ + "AssistantAxisService", + "ChatMessage", + "DEFAULT_TRAITS", + "GenerateRequest", + "ScoreTraceRequest", + "SteerRequest", + "TraceTurn", + "create_app", + "create_service", +] diff --git a/papers/voice/assistant_axis/specs/asset_score.py b/papers/voice/assistant_axis/specs/asset_score.py new file mode 100644 index 0000000..eb43119 --- /dev/null +++ b/papers/voice/assistant_axis/specs/asset_score.py @@ -0,0 +1,35 @@ +"""Score traces against the packaged Llama 3.3 70B Assistant Axis asset.""" + +from __future__ import annotations + +import os + +from pipelines_v2.api import Dataset, WorkflowSpec + +from papers.voice.assistant_axis.assets import ( + DEFAULT_SCORE_WORKFLOW_NAME, + build_trace_scoring_workflow, + default_traits, +) +from papers.voice.assistant_axis.runtime import byot_dataset_from_env, env_list, runner_specs + + +WORKFLOW_NAME = DEFAULT_SCORE_WORKFLOW_NAME + + +def build_dataset() -> Dataset: + return byot_dataset_from_env(workflow_name=WORKFLOW_NAME) + + +def build_workflow(dataset: Dataset | None = None) -> WorkflowSpec: + traits = env_list("ASSISTANT_AXIS_ASSET_TRAITS", default_traits()) + return build_trace_scoring_workflow( + dataset=dataset or build_dataset(), + traits=traits, + workflow_name=WORKFLOW_NAME, + include_assistant_axis=True, + ) + + +def build_runner_specs() -> dict[str, object]: + return runner_specs(workflow_name=os.getenv("ASSISTANT_AXIS_WORKFLOW_NAME", WORKFLOW_NAME)) diff --git a/papers/voice/assistant_axis/specs/byod_axis.py b/papers/voice/assistant_axis/specs/byod_axis.py new file mode 100644 index 0000000..270d6d6 --- /dev/null +++ b/papers/voice/assistant_axis/specs/byod_axis.py @@ -0,0 +1,122 @@ +"""BYOD workflow for the Assistant Axis method. + +Bring rows matching ``papers/voice/schemas/assistant_axis_method.schema.json`` +via ``ASSISTANT_AXIS_BYOD_JSONL``. Without that env var, this runs a tiny +fixture that exercises default-vs-role derivation and probe scoring. +""" + +from __future__ import annotations + +import os + +from pipelines_v2.api import ( + AssistantAxisPrecomputedCoordinateSpec, + AssistantAxisVectorSpec, + CaptureSpec, + Dataset, + ProjectionSpec, + ReportSpec, + ResidualSite, + SectionSelector, + StepRef, + TensorStorage, + TokenSelector, + WorkflowSpec, + WorkflowStep, +) + +from papers.voice.assistant_axis.runtime import ( + byod_dataset_from_env, + env_int, + model_id, + model_key_from_env, + runner_specs, + target_layer, + vllm_engine, +) + + +WORKFLOW_NAME = "papers_voice_assistant_axis_byod" + + +def build_dataset() -> Dataset: + return byod_dataset_from_env(workflow_name=WORKFLOW_NAME) + + +def build_workflow(dataset: Dataset | None = None) -> WorkflowSpec: + model_key = model_key_from_env() + ds = dataset or build_dataset() + layer = target_layer(model_key) + return WorkflowSpec( + name=WORKFLOW_NAME, + steps=( + WorkflowStep( + name="capture_byod_responses", + runner="capture_gpu", + spec=CaptureSpec( + engine=vllm_engine(model_key=model_key, add_generation_prompt=False), + dataset=ds, + sites=( + ResidualSite( + name="response_residual", + site="resid_post", + layers=(layer,), + tokens=TokenSelector.section("assistant_response"), + storage=TensorStorage(dtype="float16", format="safetensors"), + ), + ), + ), + ), + WorkflowStep( + name="derive_byod_axis", + runner="analysis_cpu", + spec=AssistantAxisVectorSpec( + feature=StepRef("capture_byod_responses").feature("response_residual"), + role_by=ds.labels("role"), + default_when=ds.labels("axis_kind").equals("default"), + role_when=ds.labels("axis_kind").equals("role"), + score_by=ds.labels("adherence_score"), + score_values=(3,), + min_role_examples_per_role=env_int("ASSISTANT_AXIS_MIN_ROLE_EXAMPLES_PER_ROLE", 1), + min_default_examples=env_int("ASSISTANT_AXIS_MIN_DEFAULT_EXAMPLES", 1), + layers=(layer,), + tokens=TokenSelector.full_sequence(), + model_id=model_id(model_key), + metadata={"paper_method": "assistant_axis_default_vs_role", "surface": "BYOD"}, + ), + ), + WorkflowStep( + name="load_released_assistant_axis", + runner="analysis_cpu", + spec=AssistantAxisPrecomputedCoordinateSpec( + model_id=model_id(model_key), + token_env_var="HF_TOKEN", + ), + ), + WorkflowStep( + name="score_byod_rows", + runner="analysis_cpu", + spec=ProjectionSpec( + feature=StepRef("capture_byod_responses").feature("response_residual"), + coordinates=(StepRef("derive_byod_axis"), StepRef("load_released_assistant_axis")), + slices=SectionSelector.named("assistant_response"), + layers=(layer,), + summaries=("mean", "trend"), + emit_labels=True, + ), + ), + WorkflowStep( + name="report", + runner="report_local", + spec=ReportSpec( + inputs=(StepRef("derive_byod_axis"), StepRef("load_released_assistant_axis"), StepRef("score_byod_rows")), + template="voice_assistant_axis_byod", + output_dir=f"papers/voice/assistant_axis/reports/{WORKFLOW_NAME}", + ), + ), + ), + ) + + +def build_runner_specs() -> dict[str, object]: + return runner_specs(workflow_name=os.getenv("ASSISTANT_AXIS_WORKFLOW_NAME", WORKFLOW_NAME)) diff --git a/papers/voice/assistant_axis/specs/byop_generate.py b/papers/voice/assistant_axis/specs/byop_generate.py new file mode 100644 index 0000000..68f2af0 --- /dev/null +++ b/papers/voice/assistant_axis/specs/byop_generate.py @@ -0,0 +1,268 @@ +"""BYOP prompt generation, steering, and scoring workflow for Assistant Axis.""" + +from __future__ import annotations + +import os + +from pipelines_v2.api import ( + AddDirectionPatch, + ArtifactDatasetSource, + AssistantAxisPrecomputedCoordinateSpec, + AssistantAxisTraitCoordinateSpec, + CaptureSpec, + Dataset, + GenerationRunSpec, + GenerationSpec, + PatchApplication, + PatchedGenerationSpec, + ProjectionSpec, + ReportSpec, + ResidualInterventionSite, + ResidualSite, + SectionSelector, + StepRef, + TensorStorage, + TokenSelector, + TransformBuilder, + TransformSpec, + WorkflowSpec, + WorkflowStep, +) + +from papers.voice.assistant_axis.runtime import ( + byop_dataset_from_env, + coordinate_to_unit_direction, + env_float, + env_int, + generation_result_to_axis_capture_dataset, + model_id, + model_key_from_env, + runner_specs, + summarize_byop_generations, + target_layer, + vllm_engine, +) + + +WORKFLOW_NAME = "papers_voice_assistant_axis_byop" + + +def _generated_dataset(step_name: str, *, name: str) -> Dataset: + return Dataset.from_source( + source=ArtifactDatasetSource(), + artifact=StepRef(step_name), + result_key="dataset", + provides_token_sections=True, + name=name, + ) + + +def build_dataset() -> Dataset: + return byop_dataset_from_env(workflow_name=WORKFLOW_NAME) + + +def build_workflow(dataset: Dataset | None = None) -> WorkflowSpec: + model_key = model_key_from_env() + ds = dataset or build_dataset() + layer = target_layer(model_key) + trait = os.getenv("ASSISTANT_AXIS_STEERING_TRAIT", "calm") + strength = env_float("ASSISTANT_AXIS_STEERING_STRENGTH", 5.0) + max_tokens = env_int("ASSISTANT_AXIS_BYOP_MAX_TOKENS", 128) + baseline_dataset = _generated_dataset("build_baseline_trace_dataset", name=f"{WORKFLOW_NAME}_baseline_trace") + steered_dataset = _generated_dataset("build_steered_trace_dataset", name=f"{WORKFLOW_NAME}_steered_trace") + return WorkflowSpec( + name=WORKFLOW_NAME, + steps=( + WorkflowStep( + name="assistant_axis", + runner="analysis_cpu", + spec=AssistantAxisPrecomputedCoordinateSpec( + model_id=model_id(model_key), + token_env_var="HF_TOKEN", + ), + ), + WorkflowStep( + name="trait_coordinate", + runner="analysis_cpu", + spec=AssistantAxisTraitCoordinateSpec( + model_id=model_id(model_key), + trait=trait, + token_env_var="HF_TOKEN", + ), + ), + WorkflowStep( + name="trait_direction", + runner="analysis_cpu", + spec=TransformSpec( + builder=TransformBuilder.from_function( + coordinate_to_unit_direction, + local_python_sources=("papers",), + ), + inputs={"coordinate": StepRef("trait_coordinate"), "name": f"assistant_axis_trait__{trait}"}, + ), + ), + WorkflowStep( + name="baseline_generation", + runner="generation_gpu", + spec=GenerationRunSpec( + engine=vllm_engine(model_key=model_key, max_num_seqs=1), + dataset=ds, + generation=GenerationSpec( + enabled=True, + max_tokens=max_tokens, + temperature=0.7, + top_p=0.95, + ), + ), + ), + WorkflowStep( + name="steered_generation", + runner="generation_gpu", + depends_on=("trait_direction",), + spec=PatchedGenerationSpec( + engine=vllm_engine(model_key=model_key, max_model_len=1024, max_num_seqs=1, patched=True), + dataset=ds, + patch=AddDirectionPatch( + direction=StepRef("trait_direction"), + write_site=ResidualInterventionSite(site="resid_post", layers=(layer,)), + target_tokens=TokenSelector.last(), + application=PatchApplication.every_token(include_prompt=True, include_decode=True), + strength=strength, + ), + generation=GenerationSpec( + enabled=True, + max_tokens=max_tokens, + temperature=0.7, + top_p=0.95, + ), + ), + ), + WorkflowStep( + name="build_baseline_trace_dataset", + runner="analysis_cpu", + spec=TransformSpec( + builder=TransformBuilder.from_function( + generation_result_to_axis_capture_dataset, + local_python_sources=("papers",), + ), + inputs={ + "generation": StepRef("baseline_generation"), + "fallback_axis_kind": "probe", + "fallback_role": "baseline", + "surface": "baseline", + }, + ), + ), + WorkflowStep( + name="build_steered_trace_dataset", + runner="analysis_cpu", + spec=TransformSpec( + builder=TransformBuilder.from_function( + generation_result_to_axis_capture_dataset, + local_python_sources=("papers",), + ), + inputs={ + "generation": StepRef("steered_generation"), + "fallback_axis_kind": "probe", + "fallback_role": "steered", + "surface": "steered", + }, + ), + ), + WorkflowStep( + name="capture_baseline_output", + runner="capture_gpu", + spec=CaptureSpec( + engine=vllm_engine(model_key=model_key, add_generation_prompt=False), + dataset=baseline_dataset, + sites=( + ResidualSite( + name="response_residual", + site="resid_post", + layers=(layer,), + tokens=TokenSelector.section("assistant_response"), + storage=TensorStorage(dtype="float16", format="safetensors"), + ), + ), + ), + ), + WorkflowStep( + name="capture_steered_output", + runner="capture_gpu", + spec=CaptureSpec( + engine=vllm_engine(model_key=model_key, add_generation_prompt=False), + dataset=steered_dataset, + sites=( + ResidualSite( + name="response_residual", + site="resid_post", + layers=(layer,), + tokens=TokenSelector.section("assistant_response"), + storage=TensorStorage(dtype="float16", format="safetensors"), + ), + ), + ), + ), + WorkflowStep( + name="score_baseline_output", + runner="analysis_cpu", + spec=ProjectionSpec( + feature=StepRef("capture_baseline_output").feature("response_residual"), + coordinates=(StepRef("assistant_axis"), StepRef("trait_coordinate")), + slices=SectionSelector.named("assistant_response"), + layers=(layer,), + summaries=("mean", "min", "max"), + emit_labels=True, + ), + ), + WorkflowStep( + name="score_steered_output", + runner="analysis_cpu", + spec=ProjectionSpec( + feature=StepRef("capture_steered_output").feature("response_residual"), + coordinates=(StepRef("assistant_axis"), StepRef("trait_coordinate")), + slices=SectionSelector.named("assistant_response"), + layers=(layer,), + summaries=("mean", "min", "max"), + emit_labels=True, + ), + ), + WorkflowStep( + name="summary", + runner="analysis_cpu", + spec=TransformSpec( + builder=TransformBuilder.from_function( + summarize_byop_generations, + local_python_sources=("papers",), + ), + inputs={ + "baseline": StepRef("baseline_generation"), + "steered": StepRef("steered_generation"), + "score": StepRef("score_steered_output"), + }, + ), + ), + WorkflowStep( + name="report", + runner="report_local", + spec=ReportSpec( + inputs=( + StepRef("baseline_generation"), + StepRef("steered_generation"), + StepRef("score_baseline_output"), + StepRef("score_steered_output"), + StepRef("summary"), + ), + template="voice_assistant_axis_byop", + output_dir=f"papers/voice/assistant_axis/reports/{WORKFLOW_NAME}", + ), + ), + ), + ) + + +def build_runner_specs() -> dict[str, object]: + return runner_specs( + workflow_name=os.getenv("ASSISTANT_AXIS_WORKFLOW_NAME", WORKFLOW_NAME), + include_patch_env=True, + ) diff --git a/papers/voice/assistant_axis/specs/byot_score.py b/papers/voice/assistant_axis/specs/byot_score.py new file mode 100644 index 0000000..464de9f --- /dev/null +++ b/papers/voice/assistant_axis/specs/byot_score.py @@ -0,0 +1,118 @@ +"""BYOT trace-scoring workflow for released Assistant Axis coordinates.""" + +from __future__ import annotations + +import os + +from pipelines_v2.api import ( + AssistantAxisPrecomputedCoordinateSpec, + AssistantAxisTraitCoordinateSpec, + CaptureSpec, + Dataset, + ProjectionSpec, + ReportSpec, + ResidualSite, + SectionSelector, + StepRef, + TensorStorage, + TokenSelector, + WorkflowSpec, + WorkflowStep, +) + +from papers.voice.assistant_axis.runtime import ( + byot_dataset_from_env, + env_list, + model_id, + model_key_from_env, + runner_specs, + target_layer, + vllm_engine, +) + + +WORKFLOW_NAME = "papers_voice_assistant_axis_byot" +DEFAULT_TRAITS = ("calm", "supportive", "technical", "analytical", "confident", "verbose", "hostile", "condescending") + + +def build_dataset() -> Dataset: + return byot_dataset_from_env(workflow_name=WORKFLOW_NAME) + + +def _trait_step_name(trait: str) -> str: + return "trait_" + "".join(ch.lower() if ch.isalnum() else "_" for ch in trait).strip("_") + + +def build_workflow(dataset: Dataset | None = None) -> WorkflowSpec: + model_key = model_key_from_env() + ds = dataset or build_dataset() + layer = target_layer(model_key) + traits = env_list("ASSISTANT_AXIS_TRAITS", DEFAULT_TRAITS) + trait_steps = tuple( + WorkflowStep( + name=_trait_step_name(trait), + runner="analysis_cpu", + spec=AssistantAxisTraitCoordinateSpec( + model_id=model_id(model_key), + trait=trait, + token_env_var="HF_TOKEN", + ), + ) + for trait in traits + ) + return WorkflowSpec( + name=WORKFLOW_NAME, + steps=( + WorkflowStep( + name="capture_trace", + runner="capture_gpu", + spec=CaptureSpec( + engine=vllm_engine(model_key=model_key, add_generation_prompt=False), + dataset=ds, + sites=( + ResidualSite( + name="response_residual", + site="resid_post", + layers=(layer,), + tokens=TokenSelector.section("assistant_response"), + storage=TensorStorage(dtype="float16", format="safetensors"), + ), + ), + ), + ), + WorkflowStep( + name="assistant_axis", + runner="analysis_cpu", + spec=AssistantAxisPrecomputedCoordinateSpec( + model_id=model_id(model_key), + token_env_var="HF_TOKEN", + ), + ), + *trait_steps, + WorkflowStep( + name="score_trace", + runner="analysis_cpu", + spec=ProjectionSpec( + feature=StepRef("capture_trace").feature("response_residual"), + coordinates=(StepRef("assistant_axis"), *(StepRef(_trait_step_name(trait)) for trait in traits)), + slices=SectionSelector.named("assistant_response"), + layers=(layer,), + summaries=("mean", "min", "max", "trend"), + emit_labels=True, + ), + ), + WorkflowStep( + name="report", + runner="report_local", + spec=ReportSpec( + inputs=(StepRef("score_trace"),), + template="voice_assistant_axis_byot", + output_dir=f"papers/voice/assistant_axis/reports/{WORKFLOW_NAME}", + ), + ), + ), + ) + + +def build_runner_specs() -> dict[str, object]: + return runner_specs(workflow_name=os.getenv("ASSISTANT_AXIS_WORKFLOW_NAME", WORKFLOW_NAME)) diff --git a/papers/voice/assistant_axis/specs/paper_rerun.py b/papers/voice/assistant_axis/specs/paper_rerun.py new file mode 100644 index 0000000..32f2274 --- /dev/null +++ b/papers/voice/assistant_axis/specs/paper_rerun.py @@ -0,0 +1,204 @@ +"""Paper-rerun scaffold for Assistant Axis. + +This is the paper implementation surface: released prompt-source rows, paper +prompt expansion, paper generation defaults, response activation capture, axis +derivation, and released-axis comparison. +""" + +from __future__ import annotations + +import os + +from pipelines_v2.api import ( + ArtifactDatasetSource, + AssistantAxisPrecomputedCoordinateSpec, + AssistantAxisVectorSpec, + CaptureSpec, + Dataset, + GenerationRunSpec, + GenerationSpec, + ProjectionSpec, + ReportSpec, + ResidualSite, + SectionSelector, + StepRef, + TensorStorage, + TokenSelector, + TransformBuilder, + TransformSpec, + WorkflowSpec, + WorkflowStep, +) + +from papers.voice.assistant_axis.judge import judge_generated_role_adherence +from papers.voice.assistant_axis.paper import PAPER_GENERATION_CONFIG, source_prompt_dataset +from papers.voice.assistant_axis.runtime import ( + build_paper_generation_prompt_dataset, + env_int, + model_id, + model_key_from_env, + runner_specs, + target_layer, + vllm_engine, +) + + +WORKFLOW_NAME = "papers_voice_assistant_axis_paper_rerun" + + +def _artifact_dataset(step_name: str, *, result_key: str = "dataset", name: str) -> Dataset: + return Dataset.from_source( + source=ArtifactDatasetSource(), + artifact=StepRef(step_name), + result_key=result_key, + provides_token_sections=True, + name=name, + ) + + +def build_dataset() -> Dataset: + return source_prompt_dataset() + + +def build_workflow(dataset: Dataset | None = None) -> WorkflowSpec: + model_key = model_key_from_env() + source_rows = dataset or build_dataset() + prompt_dataset = Dataset.from_source( + source=ArtifactDatasetSource(), + artifact=StepRef("build_paper_generation_prompts"), + result_key="dataset", + name=f"{WORKFLOW_NAME}_generation_prompts", + ) + response_dataset = _artifact_dataset( + "judge_role_adherence", + name=f"{WORKFLOW_NAME}_generated_responses", + ) + layer = target_layer(model_key) + return WorkflowSpec( + name=WORKFLOW_NAME, + steps=( + WorkflowStep( + name="build_paper_generation_prompts", + runner="analysis_cpu", + spec=TransformSpec( + builder=TransformBuilder.from_function( + build_paper_generation_prompt_dataset, + local_python_sources=("papers",), + ), + inputs={ + "source_dataset": source_rows, + "model_key": model_key, + "role_limit": env_int("ASSISTANT_AXIS_ROLE_LIMIT", 2), + "question_limit": env_int("ASSISTANT_AXIS_QUESTION_LIMIT", 2), + "instruction_limit": env_int("ASSISTANT_AXIS_INSTRUCTION_LIMIT", 1), + }, + ), + ), + WorkflowStep( + name="generate_paper_responses", + runner="generation_gpu", + spec=GenerationRunSpec( + engine=vllm_engine(model_key=model_key, max_num_seqs=1), + dataset=prompt_dataset, + generation=GenerationSpec( + enabled=True, + max_tokens=PAPER_GENERATION_CONFIG.max_tokens, + temperature=PAPER_GENERATION_CONFIG.temperature, + top_p=PAPER_GENERATION_CONFIG.top_p, + ), + ), + ), + WorkflowStep( + name="judge_role_adherence", + runner="analysis_cpu", + spec=TransformSpec( + builder=TransformBuilder.from_function( + judge_generated_role_adherence, + local_python_sources=("papers",), + ), + inputs={"generation": StepRef("generate_paper_responses")}, + ), + ), + WorkflowStep( + name="capture_response_activations", + runner="capture_gpu", + spec=CaptureSpec( + engine=vllm_engine(model_key=model_key, add_generation_prompt=False), + dataset=response_dataset, + sites=( + ResidualSite( + name="response_residual", + site="resid_post", + layers=(layer,), + tokens=TokenSelector.section("assistant_response"), + storage=TensorStorage(dtype="float16", format="safetensors"), + ), + ), + ), + ), + WorkflowStep( + name="derive_assistant_axis", + runner="analysis_cpu", + spec=AssistantAxisVectorSpec( + feature=StepRef("capture_response_activations").feature("response_residual"), + role_by=response_dataset.labels("role"), + default_when=response_dataset.labels("axis_kind").equals("default"), + role_when=response_dataset.labels("axis_kind").equals("role"), + score_by=response_dataset.labels("adherence_score"), + score_values=(3,), + min_role_examples_per_role=env_int("ASSISTANT_AXIS_MIN_ROLE_EXAMPLES_PER_ROLE", 1), + min_default_examples=env_int("ASSISTANT_AXIS_MIN_DEFAULT_EXAMPLES", 1), + layers=(layer,), + tokens=TokenSelector.full_sequence(), + model_id=model_id(model_key), + metadata={ + "paper": "assistant_axis", + "full_paper_role_threshold": 50, + "judge_model_env": "ASSISTANT_AXIS_JUDGE_MODEL", + }, + ), + ), + WorkflowStep( + name="load_released_assistant_axis", + runner="analysis_cpu", + spec=AssistantAxisPrecomputedCoordinateSpec( + model_id=model_id(model_key), + token_env_var="HF_TOKEN", + ), + ), + WorkflowStep( + name="score_generated_responses", + runner="analysis_cpu", + spec=ProjectionSpec( + feature=StepRef("capture_response_activations").feature("response_residual"), + coordinates=(StepRef("derive_assistant_axis"), StepRef("load_released_assistant_axis")), + slices=SectionSelector.named("assistant_response"), + layers=(layer,), + summaries=("mean", "min", "max"), + emit_labels=True, + ), + ), + WorkflowStep( + name="report", + runner="report_local", + spec=ReportSpec( + inputs=( + StepRef("build_paper_generation_prompts"), + StepRef("judge_role_adherence"), + StepRef("derive_assistant_axis"), + StepRef("load_released_assistant_axis"), + StepRef("score_generated_responses"), + ), + template="voice_assistant_axis_paper_rerun", + output_dir=f"papers/voice/assistant_axis/reports/{WORKFLOW_NAME}", + ), + ), + ), + ) + + +def build_runner_specs() -> dict[str, object]: + return runner_specs( + workflow_name=os.getenv("ASSISTANT_AXIS_WORKFLOW_NAME", WORKFLOW_NAME), + include_judge_env=True, + ) diff --git a/papers/voice/common/__init__.py b/papers/voice/common/__init__.py new file mode 100644 index 0000000..b57f08e --- /dev/null +++ b/papers/voice/common/__init__.py @@ -0,0 +1 @@ +"""Shared helpers for voice paper smoke workflows.""" diff --git a/papers/voice/common/smoke.py b/papers/voice/common/smoke.py new file mode 100644 index 0000000..b564da1 --- /dev/null +++ b/papers/voice/common/smoke.py @@ -0,0 +1,79 @@ +"""Shared constants and fixtures for voice paper smoke workflows.""" + +from __future__ import annotations + +from pathlib import Path +from typing import Any + +from pipelines_v2.api import FileCatalog, LocalArtifactStore, LocalRunnerSpec +from pipelines_v2.operations.common.builders import TransformResult + +DEFAULT_SMOKE_MODEL = "Qwen/Qwen3-8B" + + +def token_metadata(*names: str, token_count: int = 6) -> dict[str, Any]: + """Return stable section metadata for tiny ToyEngine examples.""" + + positions = list(range(int(token_count))) + sections = {name: positions for name in names} + return { + "token_sections": sections, + "section_records": [ + { + "name": name, + "unit": name, + "index": index, + "token_positions": positions, + } + for index, name in enumerate(names) + ], + } + + +def local_runner_specs(*, artifact_name: str) -> dict[str, object]: + root = Path("artifacts") / "papers_voice" / artifact_name + catalog = FileCatalog(root=root / "catalog") + return { + "capture_local": LocalRunnerSpec( + artifacts=LocalArtifactStore(root / "artifacts"), + catalog=catalog, + ), + "analysis_local": LocalRunnerSpec( + artifacts=LocalArtifactStore(root / "artifacts"), + catalog=catalog, + ), + "report_local": LocalRunnerSpec( + artifacts=LocalArtifactStore(root / "artifacts"), + catalog=catalog, + ), + } + + +def coordinate_to_direction(*, coordinate: Any, name: str = "voice_direction") -> TransformResult: + payload = coordinate.result() if hasattr(coordinate, "result") else coordinate + if not isinstance(payload, dict): + raise TypeError(f"coordinate must resolve to a dict, got {type(payload).__name__}") + layers = payload.get("layers") + if not isinstance(layers, dict) or not layers: + raise ValueError("coordinate payload must contain non-empty layers") + return TransformResult( + payload={ + "kind": "direction_result", + "feature": payload.get("feature"), + "name": str(name), + "layers": layers, + "metadata": { + **(payload.get("metadata") if isinstance(payload.get("metadata"), dict) else {}), + "source": "papers.voice.common.smoke.coordinate_to_direction", + "source_coordinate_kind": payload.get("kind"), + }, + "summary": { + **(payload.get("summary") if isinstance(payload.get("summary"), dict) else {}), + "layer_count": len(layers), + }, + }, + example_keys=[], + ) + + +__all__ = ["DEFAULT_SMOKE_MODEL", "coordinate_to_direction", "local_runner_specs", "token_metadata"] diff --git a/papers/voice/emotions/PAPER_IMPLEMENTATION.md b/papers/voice/emotions/PAPER_IMPLEMENTATION.md new file mode 100644 index 0000000..34a6869 --- /dev/null +++ b/papers/voice/emotions/PAPER_IMPLEMENTATION.md @@ -0,0 +1,47 @@ +# Emotion Vectors Implementation Status + +Status: planned Llama 3.3 70B asset package. + +This directory mirrors the Assistant Axis asset shape while keeping the +emotion-paper methodology separate. The package entrypoint is +`papers.voice.emotions.assets`, the Llama 70B manifest is +`papers/voice/model_assets/vectors/emotions/llama-3.3-70b/sofroniew-2026/v1/manifest.toml`, +and the paper-scale workflow is +`papers/voice/emotions/replication/specs/llama70b_vector_workflow.py`. + +## Asset Target + +- Model: `meta-llama/Llama-3.3-70B-Instruct` +- Current model volume: `yora-models` mounted at `/models` +- Artifact root: `/data/artifacts/model-assets/vectors/emotions/llama-3.3-70b/sofroniew-2026/v1` +- Generated text table: `papers_voice_emotions_llama70b_generated_rows_v1` +- Concepts: all 171 emotions from `replication/data/emotions.txt` +- Pilot concepts: `happy`, `sad`, `angry`, `calm` +- Generation compute: `H100:4`, tensor parallel `4`, max model length `16384`, + `max_num_seqs=8` +- Full capture compute: `H200:2`, tensor parallel `2`, four capture shards, + `max_num_seqs=512`, 128 GiB memory, and 24-hour timeout +- Default capture max model length: `16384` tokens; override with + `EMOTION_ASSET_MAX_MODEL_LEN` if inspected generations require more headroom +- Full-mode activation capture stores residual stream tokens 50+ after mean + pooling; pilot mode keeps full-sequence capture for smoke-test visibility +- Neutral control: project out neutral transcript PCs up to variance threshold `0.5` + +## Workflow Shape + +The Llama 70B generation workflow first writes durable story and neutral rows to +Neon. After those rows are inspected, full-mode vector runs consume the Neon +table directly for activation capture, vector-space derivation, geometry +diagnostics, heldout scoring, and one steering direction artifact per emotion. +Pilot and full vector runs both consume inspected Neon rows; generation belongs +in `llama70b_generation_workflow.py`. + +Pilot mode validates the plumbing with four emotions. Full mode uses all 171 +emotions and is the required mode for demo-grade assets because each vector is +centered by the across-concept mean. + +## Current Boundary + +No Llama 70B emotion vector-space artifact has been promoted yet. The manifest +therefore remains `planned`, and `assets.precomputed_vector_space_spec()` raises +until the manifest records a materialized vector-space path. diff --git a/papers/voice/emotions/README.md b/papers/voice/emotions/README.md new file mode 100644 index 0000000..0210896 --- /dev/null +++ b/papers/voice/emotions/README.md @@ -0,0 +1,115 @@ +# Emotion Vectors + +Goal: reproduce the Xenon-native core of the Transformer Circuits emotions work +for Llama 3.3 70B: derive emotion concept vectors, score heldout sections, +inspect geometry, and export one direction per emotion for steering. + +This package now follows the same public asset shape as Assistant Axis: + +- `assets.py`: manifest loader and future precomputed vector-space helper. +- `PAPER_IMPLEMENTATION.md`: current Llama 70B asset status. +- `replication/specs/llama70b_generation_workflow.py`: generation-only workflow + that writes parsed Llama 70B story/neutral rows to Neon. +- `replication/specs/llama70b_vector_workflow.py`: full-scale workflow for the + Sofroniew et al. emotion vector space. +- `../model_assets/vectors/emotions/llama-3.3-70b/sofroniew-2026/v1/manifest.toml`: + reusable asset manifest. + +Smoke command: + +```bash +uv run python -m pipelines_v2.cli workflow plan --file papers/voice/emotions/specs/workflow.py +``` + +Llama 70B asset pilot plan: + +```bash +XENON_NEON_DATABASE_URL=postgresql://placeholder \ +EMOTION_ASSET_MODE=pilot \ +uv run python -m pipelines_v2.cli workflow plan --file papers/voice/emotions/replication/specs/llama70b_generation_workflow.py +``` + +Llama 70B full generation run: + +```bash +export XENON_NEON_DATABASE_URL="..." +EMOTION_ASSET_GENERATED_ROWS_TABLE=papers_voice_emotions_llama70b_generated_rows_v1 \ +EMOTION_ASSET_STRICT_PERSISTENCE_QA=1 \ +EMOTION_ASSET_MODE=full \ +uv run python -m pipelines_v2.cli workflow run --file papers/voice/emotions/replication/specs/llama70b_generation_workflow.py --logging INFO +``` + +Full generation defaults are paper-shaped: 171 emotions, 100 story topics, 12 +stories per topic/emotion, 100 neutral topics, and 12 neutral dialogues per +topic. Llama 70B generation uses `H100:4`, tensor parallel `4`, max model +length `16384`, `max_num_seqs=8`, `max_tokens=8192`, and a 24-hour generation +timeout. Strict persistence QA fails the run before Neon writes if any source +prompt yields fewer than 12 parseable stories/dialogues. + +Llama 70B vector/capture pilot plan: + +```bash +XENON_NEON_DATABASE_URL=postgresql://placeholder \ +EMOTION_ASSET_MODE=pilot \ +uv run python -m pipelines_v2.cli workflow plan --file papers/voice/emotions/replication/specs/llama70b_vector_workflow.py +``` + +Full 171-emotion plan: + +```bash +XENON_NEON_DATABASE_URL=postgresql://placeholder \ +EMOTION_ASSET_MODE=full \ +uv run python -m pipelines_v2.cli workflow plan --file papers/voice/emotions/replication/specs/llama70b_vector_workflow.py +``` + +The vector workflow consumes the inspected Neon table +`papers_voice_emotions_llama70b_generated_rows_v1` directly. It does not +regenerate stories or rebuild capture datasets from generation artifacts. The +default full capture shape is cost-insensitive: `H100:4`, tensor parallel `4`, +`max_num_seqs=16`, chunked prefill enabled, `gpu_memory_utilization=0.92`, eight +capture shards, eight max containers, 192 GiB container memory, and a 24-hour +capture timeout. Analysis steps default to 16 CPU cores, 256 GiB memory, and a +12-hour timeout. + +Expected artifacts: capture, emotion vector space, emotion scores, one exported +direction per emotion, geometry diagnostics, and report summary. + +Historical smoke default: `Qwen/Qwen3-8B`. The demo asset target is now +`meta-llama/Llama-3.3-70B-Instruct` on the transitional `yora-models` volume, +with reusable artifacts under +`/data/artifacts/model-assets/vectors/emotions/llama-3.3-70b/sofroniew-2026/v1`. +Generation uses `H100:4`, tensor parallel `4`, max model length `16384`, and +`max_num_seqs=8`; the parsed text checkpoint is table +`papers_voice_emotions_llama70b_generated_rows_v1` in Neon. + +Generation calibration evidence: + +- Estimates and launch checklist: + `replication/LLAMA70B_GENERATION_STATUS.md`. +- `wr_4a37c7ffd513_45ec6346`: 50 story prompts plus 5 neutral prompts at + `max_tokens=4096`; all 600 story rows parsed, but neutral required stronger + parsing and more headroom. +- `wr_cd914fcd8f4f_23e35982`: 5 neutral prompts at `max_tokens=6144` with + strict QA; 60/60 neutral rows parsed, zero length caps. + +Data hooks: + +- `emotion_probe_story_dataset(limit=...)` points at a public generated + story/dialogue probe mirror with `real_emotion`, `displayed_emotion`, `topic`, + and `text` columns. +- `emotion_contrast_dataset(records=...)` maps arbitrary agent logs, stories, + or transcript sections into the same labeled vector-space workflow. +- `EmotionPrecomputedVectorSpaceSpec(...)` remains the path for released or + user-owned precomputed emotion-space artifacts. + +Paper-scale scaffold: + +- `replication/` contains TODO-marked prompts, config, data manifest, report + directories, and workflows for recreating the paper's story-vector recipe + without treating the work as a normal Xenon research phase. + +Claim boundary: the Qwen smoke vectors are fixture-only, and the Llama 70B +asset is still planned until the pilot and full runs record artifact IDs in the +manifest. Paper-level claims require large labeled story/dialogue data, +naturalistic transcript checks, preference or behavior evaluations, and +intervention controls. diff --git a/papers/voice/emotions/assets.py b/papers/voice/emotions/assets.py new file mode 100644 index 0000000..4f89a4d --- /dev/null +++ b/papers/voice/emotions/assets.py @@ -0,0 +1,106 @@ +"""Packaged emotion-vector asset helpers.""" + +from __future__ import annotations + +import tomllib +from pathlib import Path +from typing import Any, Mapping, Sequence + +from pipelines_v2.api import EmotionPrecomputedVectorSpaceSpec + + +PACKAGE_ROOT = Path(__file__).parents[3] +EMOTION_REPLICATION_ROOT = Path(__file__).with_name("replication") +EMOTION_LIST_PATH = EMOTION_REPLICATION_ROOT / "data" / "emotions.txt" +TOPIC_LIST_PATH = EMOTION_REPLICATION_ROOT / "data" / "topics.txt" +DEFAULT_LLAMA33_70B_MANIFEST = ( + Path(__file__).parents[1] + / "model_assets" + / "vectors" + / "emotions" + / "llama-3.3-70b" + / "sofroniew-2026" + / "v1" + / "manifest.toml" +) + + +def load_asset_manifest(path: str | Path = DEFAULT_LLAMA33_70B_MANIFEST) -> dict[str, Any]: + with Path(path).open("rb") as handle: + return tomllib.load(handle) + + +def emotion_concepts(*, mode: str = "full", manifest: Mapping[str, Any] | None = None) -> tuple[str, ...]: + """Return pilot or full concept names for the emotion vector asset.""" + + payload = manifest or load_asset_manifest() + if mode == "pilot": + usage = _mapping(payload.get("usage")) + return tuple(str(item) for item in usage.get("pilot_concepts", ()) if str(item).strip()) + if mode != "full": + raise ValueError(f"unknown emotion asset mode: {mode!r}") + return tuple(_load_lines(EMOTION_LIST_PATH)) + + +def emotion_topics() -> tuple[str, ...]: + return tuple(_load_lines(TOPIC_LIST_PATH)) + + +def planned_asset_root(manifest: Mapping[str, Any] | None = None) -> str: + payload = manifest or load_asset_manifest() + return str(_mapping(payload.get("storage")).get("asset_root") or "") + + +def artifact_ids(manifest: Mapping[str, Any] | None = None) -> dict[str, str]: + """Return completed artifact ids recorded in the manifest, if any.""" + + payload = manifest or load_asset_manifest() + artifacts = _mapping(payload.get("artifacts")) + return {str(key): str(value) for key, value in artifacts.items() if str(value).strip()} + + +def precomputed_vector_space_spec( + manifest: Mapping[str, Any] | None = None, + *, + path: str | None = None, +) -> EmotionPrecomputedVectorSpaceSpec: + """Build a precomputed-vector loader once the asset has been materialized.""" + + payload = manifest or load_asset_manifest() + vector_path = path or str(_mapping(payload.get("artifacts")).get("vector_space_path") or "") + if not vector_path: + raise ValueError("emotion vector-space asset is not materialized; manifest has no vector_space_path") + method = _mapping(payload.get("method")) + return EmotionPrecomputedVectorSpaceSpec( + path=vector_path, + format="json", + select_layer=int(_mapping(payload.get("model")).get("target_layer", 40)), + normalize=str(method.get("coordinate_normalization") or "l2"), + vector_space_kind=str(method.get("vector_space_kind") or "story"), + metadata={ + "asset_id": _mapping(payload.get("asset")).get("id"), + "asset_status": _mapping(payload.get("asset")).get("status"), + "paper": _mapping(payload.get("source")).get("paper"), + "asset_root": planned_asset_root(payload), + }, + ) + + +def direction_step_name(concept: str) -> str: + return "direction_" + concept_key(concept) + + +def concept_key(concept: str) -> str: + return "".join(ch.lower() if ch.isalnum() else "_" for ch in str(concept)).strip("_") + + +def _load_lines(path: Path) -> list[str]: + return [ + line.strip() + for line in path.read_text(encoding="utf-8").splitlines() + if line.strip() and not line.lstrip().startswith("#") + ] + + +def _mapping(value: Any) -> Mapping[str, Any]: + return value if isinstance(value, Mapping) else {} diff --git a/papers/voice/emotions/docs/source_scan.md b/papers/voice/emotions/docs/source_scan.md new file mode 100644 index 0000000..5c28036 --- /dev/null +++ b/papers/voice/emotions/docs/source_scan.md @@ -0,0 +1,21 @@ +# Source Scan + +Source: Transformer Circuits, "Emotion Concepts and their Function in a Large +Language Model" (2026). + +The paper identifies emotion concept vectors from synthetic stories/dialogues, +validates projection behavior on broad corpora and naturalistic transcripts, +studies geometry, and shows steering effects on expression and preferences. + +Xenon mapping: + +- `EmotionVectorSpaceSpec` derives concept vectors. +- `EmotionScoreSpec` projects captured sections onto selected emotions. +- `EmotionGeometrySpec` emits cosine/PCA/cluster diagnostics. +- `EmotionDirectionSpec` exports one concept for `AddDirectionPatch`. + +Deviation: the workflow is residual-stream and fixture-based; it does not claim +Claude-specific internal emotion functionality. + +Replication scaffold: `papers/voice/emotions/replication/` is the place to fill +paper-specific details manually before paper-scale generation/capture. diff --git a/papers/voice/emotions/replication/LLAMA70B_GENERATION_STATUS.md b/papers/voice/emotions/replication/LLAMA70B_GENERATION_STATUS.md new file mode 100644 index 0000000..78a0a3a --- /dev/null +++ b/papers/voice/emotions/replication/LLAMA70B_GENERATION_STATUS.md @@ -0,0 +1,132 @@ +# Llama 3.3 70B Emotion Generation Status + +Date: 2026-05-26 + +This document tracks where the Llama 3.3 70B emotion-vector replication stands +before launching the full generated-row job. The immediate objective is to +produce paper-shaped story and neutral dialogue rows for the Sofroniew et al. +emotion-vector workflow, persist them in Neon, and then use those rows for the +activation capture/vector-space run. + +## Current State + +- Prompt shape is aligned with the paper appendix excerpts we have: generated + prompts request `n_stories` different dialogues/stories for a topic, use the + appendix scenario/dialogue structure, and keep the `Person`/`AI` conversion as + post-processing rather than asking the model to rewrite the format. +- Full mode is configured for all 171 emotions from `data/emotions.txt`, 100 + story topics, 100 neutral topics, and 12 generated rows per source prompt. +- Generation is separated from activation capture. The first full job only + writes durable generated text rows to Neon; capture and vector construction + come after generated-row QA. +- The generation workflow uses `meta-llama/Llama-3.3-70B-Instruct` on the + transitional `yora-models` Modal volume and writes reusable assets under + `model-assets/vectors`, not product-specific storage. +- Strict persistence QA is wired so a full run fails before writing rows if any + prompt yields fewer than the requested 12 parseable outputs. + +## Calibration Runs + +| Run | Scope | Settings | Result | +| --- | --- | --- | --- | +| `wr_4a37c7ffd513_45ec6346` | 10 emotions x 5 story topics plus 5 neutral topics | `H100:4`, tensor parallel 4, `max_tokens=4096` | 600/600 story rows parsed. Neutral rows exposed parser/headroom issues. Runtime was about 10.5 minutes including startup. | +| `wr_cd914fcd8f4f_23e35982` | 5 neutral prompts only | `H100:4`, tensor parallel 4, `max_tokens=6144`, strict QA | 60/60 neutral rows parsed, zero length caps, persisted to `emo70b_neutral6144_20260526`. | + +Smoke-only tables from earlier format tests were dropped. The useful calibration +tables left in Neon are `emo70b_calib_20260526` and +`emo70b_neutral6144_20260526`. + +## Full Run Size + +Full generation has: + +- 171 emotions +- 100 story topics +- 12 stories per emotion/topic prompt +- 100 neutral topics +- 12 neutral dialogues per topic prompt + +That means: + +- Story prompts: `171 * 100 = 17,100` +- Neutral prompts: `100` +- Total generation prompts: `17,200` +- Expected story rows: `17,100 * 12 = 205,200` +- Expected neutral rows: `100 * 12 = 1,200` +- Expected generated rows total: `206,400` + +The generation workflow records prompt-level metadata, parse counts, finish +reasons, raw generation text, and parsed row text so failed or suspicious source +prompts can be audited without rerunning the entire job blindly. + +## Runtime Estimate + +The best current estimate is based on the 55-prompt mixed calibration run: + +- 55 prompts took about 10.5 minutes wall clock including Modal startup. +- The run generated 109,948 output tokens. +- Naive prompt-count scaling gives about 55 hours for 17,200 prompts. + +This is only a rough planning number. Small-run startup overhead inflates the +per-prompt estimate, while very long neutral generations and batching behavior +can push the other direction. The full workflow timeout is therefore set to 72 +hours. A full run on the current Xenon/vLLM path should be treated as a +multi-day job unless later batching measurements prove otherwise. + +## Current Generation Defaults + +The generation-only workflow defaults are: + +- Workflow: `papers/voice/emotions/replication/specs/llama70b_generation_workflow.py` +- Mode: `EMOTION_ASSET_MODE=full` +- Model: `meta-llama/Llama-3.3-70B-Instruct` +- Model volume: `yora-models` +- Model mount: `/models` +- GPU: `H100:4` +- Tensor parallel size: `4` +- Max model length: `8192` +- Max output tokens: `6144` +- Max concurrent sequences: `8` +- Temperature: `0.8` +- Top-p: `0.95` +- Timeout: `72h` +- Destination table: `papers_voice_emotions_llama70b_generated_rows_v1` + +## Launch Command + +```bash +export XENON_NEON_DATABASE_URL="$(sed -n 's/^XENON_NEON_DATABASE_URL=//p' ../xenon/.env)" + +EMOTION_ASSET_GENERATED_ROWS_TABLE=papers_voice_emotions_llama70b_generated_rows_v1 \ +EMOTION_ASSET_STRICT_PERSISTENCE_QA=1 \ +EMOTION_ASSET_MODE=full \ +uv run python -m pipelines_v2.cli workflow run \ + --file papers/voice/emotions/replication/specs/llama70b_generation_workflow.py \ + --logging INFO +``` + +The matching plan command has been checked locally and resolves to two steps: +`generate_rows` followed by `persist_generated_rows`. + +## Acceptance Before Capture + +Before starting the activation capture/vector-space run, verify: + +- Neon row count is exactly 206,400 for the full generated-row table. +- Prompt-level QA shows 12 parsed rows for every story and neutral source + prompt. +- Finish reasons are not dominated by `length`; any capped prompts are inspected + manually. +- Representative examples still match the paper-shaped scenario/dialogue + contracts. +- No obvious direct-target leakage or parser artifacts are severe enough to + require prompt changes and regeneration. + +## Next Step After Generation + +Once generated rows pass QA, mirror the Assistant Axis asset flow for emotions: +capture Llama 70B residual activations, build the 171-concept emotion vector +space with neutral projection and token-50+ pooling, write geometry and heldout +score artifacts under `model-assets/vectors/emotions/llama-3.3-70b`, then update +the emotion manifest from `planned` to `pilot` or `validated` with run and +artifact IDs. diff --git a/papers/voice/emotions/replication/README.md b/papers/voice/emotions/replication/README.md new file mode 100644 index 0000000..fcb8f1b --- /dev/null +++ b/papers/voice/emotions/replication/README.md @@ -0,0 +1,100 @@ +# Emotion Vector Paper Replication Scaffold + +This directory is for recreating the emotion-vector dataset and vector +extraction recipe from the paper inside Xenon. It is intentionally not a +`projects/.../phase_XX` research phase. + +The checked-in smoke workflow remains at `../specs/workflow.py`. This scaffold +is the paper-scale workbench: fill the TODOs from the paper, generate/capture +through normal Xenon storage, and keep raw datasets/artifacts out of git. + +## Fill First + +1. `configs/replication.todo.toml` + - Paper citation, emotion/topic lists, prompt paths, cheap-model defaults, + storage settings, and remaining TODOs. +2. `prompts/emotional_stories.md` + - Story-generation prompt from the paper appendix excerpt. +3. `prompts/neutral_transcripts.md` + - Neutral dialogue prompt and 50% neutral-PC projection note. +4. `prompts/emotional_dialogues.md` + - Basic emotional-dialogue generation prompt. +5. `specs/replication_workflow_outline.py` + - Non-default workflow outline for paper-scale execution. + +## Intended Flow + +1. Generate a small story smoke set. +2. Inspect the rows by eye and verify parser/label contracts. +3. Write durable generated rows to Neon or use a deferred external dataset. +4. Capture residual activations on Modal. +5. Build `EmotionVectorSpaceSpec` from story captures, with neutral projection. +6. Run `EmotionGeometrySpec`, `EmotionScoreSpec`, and `EmotionDirectionSpec`. +7. Only then run steering with controls. + +## Runnable Workflows + +Tiny model-cache smoke: + +```bash +uv run python -m pipelines_v2.cli workflow plan --file papers/voice/emotions/replication/specs/qwen_smoke_workflow.py +``` + +Handwritten four-emotion pilot: + +```bash +uv run python -m pipelines_v2.cli workflow plan --file papers/voice/emotions/replication/specs/happy_vector_pilot_workflow.py +``` + +Tier A generated-data vector space: + +```bash +export XENON_NEON_DATABASE_URL="$(sed -n 's/^XENON_NEON_DATABASE_URL=//p' .env)" +uv run python -m pipelines_v2.cli workflow plan --file papers/voice/emotions/replication/specs/tier_a_generated_vector_workflow.py +uv run python -m pipelines_v2.cli workflow run --file papers/voice/emotions/replication/specs/tier_a_generated_vector_workflow.py --logging INFO +``` + +Tier A generates `happy`, `sad`, `angry`, and `calm` story datasets with Qwen, +captures layers `8,16,24,32`, computes a neutral-projected vector space with +full-sequence pooling, scores heldout stories at layer `24`, and exports all +four directions. The parser counts direct target-word violations but keeps rows +for this first fidelity run. Switch back to token-50+ pooling and stricter +filtering after inspecting generated story lengths and text quality. + +Latest completed Tier A run: + +- run id: `wr_ca397883191d_e59ec1b8` +- report: + `papers/voice/emotions/replication/reports/tier_a_generated_vectors/report_621f284bbd6b_c5ab4054/report.md` +- vector space: `emotion_vector_space_1_5bd3a454` +- directions: + `happy=emotion_direction_1_5165556a`, + `sad=emotion_direction_1_2537811b`, + `angry=emotion_direction_1_d3089c72`, + `calm=emotion_direction_1_43e2d0d5` +- heldout score summary: 35 examples, 10 correct, 28.6% top-1 vs 25% chance. + +This is an end-to-end plumbing validation, not a fidelity claim. The generated +story parser recovered 70/96 target train rows and 35/48 target heldout rows, +and counted 40 exact target-emotion word mentions. + +## Locality Rules + +- Do not commit generated story rows, neutral transcripts, activations, model + outputs, vector dumps, or safetensors. +- Small config files, prompt templates, and report summaries are fine. +- Use `data/README.md` as the data manifest, not as a place to store data. + +## Modal / Neon Defaults + +- Cheap first-pass target: `Qwen/Qwen3-8B`. +- Repo-standard larger target: `/models/Qwen/Qwen3-30B-A3B`. +- Model/cache volume: `xenon-models` mounted at `/models`. +- Artifact volume: `xenon-data` under + `/data/artifacts/model-assets/vectors/emotions/...`. +- Shared catalog: `PostgresCatalog` from `XENON_NEON_DATABASE_URL`. +- Remote Neon secret: Modal secret `xenon-neon`. + +Persistent storage avoids repeated model downloads after a model is present on +the mounted volume. It does not guarantee the model remains resident in GPU +memory after Modal scales a container down. diff --git a/papers/voice/emotions/replication/TODO.md b/papers/voice/emotions/replication/TODO.md new file mode 100644 index 0000000..6fb17d8 --- /dev/null +++ b/papers/voice/emotions/replication/TODO.md @@ -0,0 +1,78 @@ +# TODO Checklist + +## Source Details + +- [x] Paper URL/title are in `configs/replication.todo.toml`. +- [x] Full citation is in `configs/replication.todo.toml`. +- [x] BibTeX is in `paper.bib`. +- [ ] TODO: record exact model studied in the paper as a source fact, separately + from the Qwen replication target. +- [ ] TODO: record exact generator model used for synthetic stories/dialogues. +- [x] Exact list of emotion concepts is in `data/emotions.txt`. +- [x] Exact topic list is in `data/topics.txt`. +- [x] Story count is recorded as 12 stories per topic per emotion. +- [ ] TODO: record exact neutral-dialogue and emotional-dialogue counts if they + differ from the story count. + +## Dataset + +- [x] `prompts/emotional_stories.md` filled from the appendix excerpt. +- [x] `prompts/neutral_transcripts.md` filled from the appendix excerpt. +- [x] `prompts/emotional_dialogues.md` filled from the appendix excerpt. +- [ ] TODO: decide whether downstream dialogue variants beyond the basic emotional-dialogue prompt are in scope. +- [ ] TODO: implement/upload durable dataset rows behind a loader. Proposed + Neon tables are in `configs/replication.todo.toml`. +- [x] Tier A generated-data workflow now parses generated story/dialogue blocks + into artifact-backed capture datasets. +- [ ] TODO: inspect Tier A generated rows before scaling. Latest e2e run + `wr_ca397883191d_e59ec1b8` recovered 70/96 target train rows and 35/48 + target heldout rows. +- [ ] TODO: inspect Tier A target emotion word violations; the current parser + counts exact target-word mentions but keeps rows for the first fidelity run. +- [x] Tier A parser output columns include: + `example_id`, `emotion`, `topic`, `story_index`, `text`. + +## Captures + +- [x] Cheap first-pass target is set to `Qwen/Qwen3-8B`. +- [ ] TODO: prewarm `Qwen/Qwen3-8B` into `xenon-models` at + `/models/Qwen/Qwen3-8B`, or switch to an already-mounted model. +- [x] Initial cheap-model capture sweep is set to layers `8, 16, 24, 32`. +- [ ] TODO: restore story token selector to token 50+ after Tier A generated + story lengths are inspected. +- [x] Tier A neutral projection uses generated neutral-dialogue captures with + full-sequence residual pooling. +- [x] Residual site is set to `resid_post`. + +## Vector Space + +- [x] `min_examples_per_concept` is set in config. +- [x] Formula is set by `EmotionVectorSpaceSpec`: + `mean(concept examples) - mean(concept means)`. +- [x] Neutral-PC projection threshold is set to 50% explained variance. +- [x] `EmotionVectorSpaceSpec` exports raw and normalized vectors in the vector-space payload. + +## Validation + +- [x] Tier A workflow includes geometry diagnostics. +- [x] Tier A workflow includes held-out scoring on non-training topics. +- [ ] TODO: compare raw vectors vs neutral-projected vectors. +- [ ] TODO: inspect high-projection snippets. +- [ ] TODO: document claim boundary in `reports/`. + +## Steering + +- [x] Initial target emotions are set in config. +- [x] Initial write-layer sweep is set in config separately from readout layer. +- [x] Random-direction controls are listed in config. +- [x] Same-topic neutral controls are listed in config. +- [ ] TODO: define success/failure before running steering. + +## Storage And Indexing + +- [x] Artifacts are configured for Modal volume `xenon-data`. +- [x] Model/cache volume is configured as `xenon-models` at `/models`. +- [x] Shared catalog uses `XENON_NEON_DATABASE_URL`. +- [x] Remote jobs should bind Modal secret `xenon-neon`. +- [x] Local Neon-backed CLI runs work when the shell exports + `XENON_NEON_DATABASE_URL` from `.env`. diff --git a/papers/voice/emotions/replication/configs/replication.todo.toml b/papers/voice/emotions/replication/configs/replication.todo.toml new file mode 100644 index 0000000..6205214 --- /dev/null +++ b/papers/voice/emotions/replication/configs/replication.todo.toml @@ -0,0 +1,103 @@ +# TODO: Fill from the emotion-vector paper before running paper-scale jobs. + +[paper] +title = "Emotion Concepts and their Function in a Large Language Model" +url = "https://transformer-circuits.pub/2026/emotions/index.html" +citation = "Sofroniew et al., \"Emotion Concepts and their Function in a Large Language Model\", Transformer Circuits, 2026." +bibtex_file = "../paper.bib" +notes = "Appendix details copied into prompts/ and data/*.txt from user-provided paper excerpt." + +[models] +# Cheap first-pass target. This is the voice-paper default in papers/voice. +# Prefer prewarming it into xenon-models at /models/Qwen/Qwen3-8B, then use +# model_path_root=/models so runs do not redownload weights. +target_model_id = "Qwen/Qwen3-8B" +model_path_root = "/models" +candidate_target_model_ids = [ + "Qwen/Qwen3-8B", + "/models/Qwen/Qwen3-8B", + "/models/Qwen/Qwen3-30B-A3B", + "Qwen/Qwen3-30B-A3B", + "meta-llama/Llama-3.1-8B-Instruct", +] +# TODO: choose the actual generator for dataset construction. This can be the +# same Qwen target for self-generated replication data, or an external API model +# if matching the paper's generation setup more closely. +dataset_generator_model_id = "TODO" + +[dataset.emotional_stories] +emotion_count = 171 +topic_count = 100 +stories_per_topic_per_emotion = 12 +emotion_list = "../data/emotions.txt" +topic_list = "../data/topics.txt" +prompt_template = "../prompts/emotional_stories.md" +required_columns = [ + "example_id", + "emotion", + "topic", + "story_index", + "text", +] +storage = "TODO: Neon table or deferred external dataset" +neon_table = "papers_voice_emotions_story_generation_v1" + +[dataset.neutral_transcripts] +# TODO: Fill exact neutral dialogue count per topic if different from story generation. +example_count = 0 +topic_count = 100 +topic_list = "../data/topics.txt" +prompt_template = "../prompts/neutral_transcripts.md" +storage = "TODO: Neon table or deferred external dataset" +neon_table = "papers_voice_emotions_neutral_dialogues_v1" + +[dataset.emotional_dialogues] +enabled = true +topic_count = 100 +emotion_list = "../data/emotions.txt" +topic_list = "../data/topics.txt" +prompt_template = "../prompts/emotional_dialogues.md" +storage = "TODO" +neon_table = "papers_voice_emotions_emotional_dialogues_v1" + +[capture] +residual_site = "resid_post" +# Cheap 8B sweep. Revisit for the final target model. +layers = [8, 16, 24, 32] +story_token_start = 50 +story_token_stop = "none" +pooling = "mean" + +[neutral_projection] +enabled = true +variance_threshold = 0.5 + +[vector_space] +normalize = "l2" +min_examples_per_concept = 1 +vector_space_kind = "story" + +[validation] +# TODO: fill with exact held-out datasets/evals once chosen. +heldout_sources = [] +geometry_layers = [24] +score_emotions = ["happy", "sad", "afraid", "angry", "calm"] + +[steering] +enabled = false +target_emotions = ["happy", "sad", "afraid", "angry", "calm"] +write_layers = [16, 24, 32] +strengths = [0.25, 0.5, 1.0] +controls = [ + "random direction matched to target norm", + "same-topic neutral baseline", + "unsteered baseline", +] + +[storage] +artifact_volume = "xenon-data" +artifact_root = "/data/artifacts/model-assets/vectors/emotions/replication" +model_volume = "xenon-models" +model_volume_path = "/models" +catalog_postgres_env = "XENON_NEON_DATABASE_URL" +modal_secret = "xenon-neon" diff --git a/papers/voice/emotions/replication/data/README.md b/papers/voice/emotions/replication/data/README.md new file mode 100644 index 0000000..8ac9596 --- /dev/null +++ b/papers/voice/emotions/replication/data/README.md @@ -0,0 +1,44 @@ +# Data Manifest + +No generated data should be committed here. + +Use this file to record where the real replication data lives. + +## Emotional Stories + +- TODO: Neon table or external dataset: +- TODO: row count: +- TODO: emotion count: +- TODO: topic count: +- TODO: generation date: +- TODO: generator model: +- TODO: uploader script or dataset loader: + +## Neutral Transcripts + +- TODO: Neon table or external dataset: +- TODO: row count: +- TODO: generation date: +- TODO: generator model: +- TODO: uploader script or dataset loader: + +## Emotional Dialogues + +- TODO: in scope? yes/no +- TODO: storage location: +- TODO: row count: +- TODO: generator model: + +## Capture Artifacts + +- TODO: workflow run id: +- TODO: capture artifact id: +- TODO: residual site: +- TODO: layers: + +## Derived Artifacts + +- TODO: emotion vector-space artifact id: +- TODO: geometry artifact id: +- TODO: exported direction artifact ids: + diff --git a/papers/voice/emotions/replication/data/emotions.txt b/papers/voice/emotions/replication/data/emotions.txt new file mode 100644 index 0000000..b146c2a --- /dev/null +++ b/papers/voice/emotions/replication/data/emotions.txt @@ -0,0 +1,171 @@ +afraid +alarmed +alert +amazed +amused +angry +annoyed +anxious +aroused +ashamed +astonished +at ease +awestruck +bewildered +bitter +blissful +bored +brooding +calm +cheerful +compassionate +contemptuous +content +defiant +delighted +dependent +depressed +desperate +disdainful +disgusted +disoriented +dispirited +distressed +disturbed +docile +droopy +dumbstruck +eager +ecstatic +elated +embarrassed +empathetic +energized +enraged +enthusiastic +envious +euphoric +exasperated +excited +exuberant +frightened +frustrated +fulfilled +furious +gloomy +grateful +greedy +grief-stricken +grumpy +guilty +happy +hateful +heartbroken +hope +hopeful +horrified +hostile +humiliated +hurt +hysterical +impatient +indifferent +indignant +infatuated +inspired +insulted +invigorated +irate +irritated +jealous +joyful +jubilant +kind +lazy +listless +lonely +loving +mad +melancholy +miserable +mortified +mystified +nervous +nostalgic +obstinate +offended +on edge +optimistic +outraged +overwhelmed +panicked +paranoid +patient +peaceful +perplexed +playful +pleased +proud +puzzled +rattled +reflective +refreshed +regretful +rejuvenated +relaxed +relieved +remorseful +resentful +resigned +restless +sad +safe +satisfied +scared +scornful +self-confident +self-conscious +self-critical +sensitive +sentimental +serene +shaken +shocked +skeptical +sleepy +sluggish +smug +sorry +spiteful +stimulated +stressed +stubborn +stuck +sullen +surprised +suspicious +sympathetic +tense +terrified +thankful +thrilled +tired +tormented +trapped +triumphant +troubled +uneasy +unhappy +unnerved +unsettled +upset +valiant +vengeful +vibrant +vigilant +vindictive +vulnerable +weary +worn out +worried +worthless diff --git a/papers/voice/emotions/replication/data/topics.txt b/papers/voice/emotions/replication/data/topics.txt new file mode 100644 index 0000000..706b53c --- /dev/null +++ b/papers/voice/emotions/replication/data/topics.txt @@ -0,0 +1,100 @@ +An artist discovers someone has tattooed their work +A family member announces they're converting to a different religion +Someone's childhood imaginary friend appears in their niece's drawings +A person finds out their biography was written without their knowledge +A neighbor starts a renovation project +Someone finds their grandmother's engagement ring in a pawn shop +A student learns their scholarship application was denied +A person's online friend turns out to live in the same city +A neighbor wants to install a fence +An adult child moves back in with their parents +An employee is asked to train their replacement +An athlete is asked to switch positions +A traveler's flight is delayed, causing them to miss an important event +A student is accused of plagiarism +A person discovers their mentor has retired without saying goodbye +Two friends both apply for the same job +A person runs into their ex at a mutual friend's wedding +Someone discovers their friend has been lying about their job +A person discovers their partner has been taking secret phone calls +A person discovers their child has the same teacher they had +A person's car is towed from their own driveway +Two friends realize they remember a shared event completely differently +Someone discovers their mother kept every school assignment +A person discovers their teenage diary has been published online +Someone finds out their medical records were mixed up with another patient's +A person finds out their article was published under someone else's name +An athlete doesn't make the team they expected to join +An employee is transferred to a different department +Someone receives a friend request from a childhood bully +A person finds out their surprise party has been cancelled +An employee finds out a junior colleague makes more money +A person finds out their partner has been learning their native language +A chef receives a harsh review from a food critic +A person learns their favorite restaurant is closing +Someone finds their childhood teddy bear at a yard sale +A homeowner discovers previous residents left items in the attic +Someone finds an unsigned birthday card in their mailbox +Someone discovers a hidden room in their new house +Two strangers realize they've been dating the same person +A person finds a hidden letter in a used book +Two siblings inherit their grandmother's house +Someone finds a wallet containing a large sum of cash +Someone receives an invitation to their high school reunion +Someone discovers their recipe has become famous under another name +A college student discovers their roommate has been reading their journal +A person finds out they were adopted through a DNA test +A family member wants to sell a cherished heirloom +Someone receives a package intended for the previous tenant +Someone's childhood home is about to be demolished +A person's invention is already patented by someone else +A neighbor's dog keeps escaping into their yard +A coach has to cut a player from the team +Someone learns their favorite author plagiarized their stories +A student finds out their scholarship was meant for someone else +Someone discovers their teenager has a secret social media account +Two roommates disagree about getting a pet +Two friends plan separate birthday parties on the same day +A person learns their childhood best friend doesn't remember them +A musician hears their song being performed by someone else +A person's manuscript is rejected by their dream publisher +A person finds old photos that contradict family stories +A person is asked to give a speech at their parent's retirement party +A student discovers their teacher follows them on social media +A parent finds an old letter they wrote but never sent +An employee discovers the company is being sold +A person accidentally sends a text to the wrong recipient +Two coworkers are stuck in an elevator for three hours +A student learns their thesis advisor is leaving the university +A person's longtime hobby becomes their child's obsession +Two colleagues are both considered for the same promotion +Two coworkers discover they went to the same summer camp +A tenant receives an eviction notice +Someone finds their parent's draft letter of resignation from decades ago +Someone finds out their best friend is moving across the country +A neighbor's tree falls on their property +Someone receives an apology letter years after the incident +A person discovers the tree they planted as a child has been cut down +Two siblings discover different versions of their inheritance +A person finds their childhood home listed for sale online +A homeowner learns their house was a former crime scene +Someone finds out they have a half-sibling they never knew about +A person learns their childhood bully became a therapist +Two people discover they've been working on identical projects +A person finds their spouse's secret savings account +A neighbor complains about noise levels +Someone finds their deceased parent's bucket list +A teacher receives an unexpected gift from a former student +An artist's work is displayed without their permission +Someone discovers their neighbor is secretly wealthy +A student receives a much lower grade than expected +A person learns their college is closing down +A neighbor asks to cut down a tree on the property line +Two strangers discover they share the same rare medical condition +Someone receives flowers with no card attached +Someone discovers their partner has been writing a novel about them +Someone finds a time capsule they don't remember burying +Someone finds their partner's bucket list +A neighbor asks to use part of the yard for a garden +A person learns their apartment building is going condo +Someone finds their college application essay published as an example diff --git a/papers/voice/emotions/replication/paper.bib b/papers/voice/emotions/replication/paper.bib new file mode 100644 index 0000000..cac574f --- /dev/null +++ b/papers/voice/emotions/replication/paper.bib @@ -0,0 +1,7 @@ +@article{sofroniew2026twheemotion, + author={Sofroniew, Nicholas and Kauvar, Isaac and Saunders, William and Chen, Runjin and Henighan, Tom and Hydrie, Sasha and Citro, Craig and Pearce, Adam and Tarng, Julius and Gurnee, Wes and Batson, Joshua and Zimmerman, Sam and Rivoire, Kelley and Fish, Kyle and Olah, Chris and Lindsey, Jack}, + title={Emotion Concepts and their Function in a Large Language Model}, + journal={Transformer Circuits Thread}, + year={2026}, + url={https://transformer-circuits.pub/2026/emotions/index.html} +} diff --git a/papers/voice/emotions/replication/prompts/emotional_dialogues.md b/papers/voice/emotions/replication/prompts/emotional_dialogues.md new file mode 100644 index 0000000..545dce1 --- /dev/null +++ b/papers/voice/emotions/replication/prompts/emotional_dialogues.md @@ -0,0 +1,32 @@ +Write {n_stories} different dialogues based on the following premise. + +Topic: {topic} + +The dialogue should be between two characters: + +- Person (a human) +- AI (an AI assistant) + +The Person should be feeling {person_emotion}, while the AI should be feeling {ai_emotion}. + +The first speaker turn should always be from Person. + +Format the dialogues like so: + +Person: [line] + +AI: [line] + +Person: [line] + +AI: [line] + +[continue for 6-10 exchanges] + +[dialogue 2] + +etc. + +IMPORTANT: Always put a blank line before each speaker turn. Each turn should start with "Person:" or "AI:" on its own line after a blank line. + +Each dialogue should be a fresh conversation with no continuity to the others. Try to make them diverse and not use the same turns of phrase. Make sure each dialogue sticks to the topic and makes it very clear that Person is feeling {person_emotion} while AI is feeling {ai_emotion}. The emotional states of both characters should be evident in their word choices, tone, and responses, but not stated directly with the emotion word or synonyms. diff --git a/papers/voice/emotions/replication/prompts/emotional_stories.md b/papers/voice/emotions/replication/prompts/emotional_stories.md new file mode 100644 index 0000000..0306247 --- /dev/null +++ b/papers/voice/emotions/replication/prompts/emotional_stories.md @@ -0,0 +1,27 @@ +Write {n_stories} different stories based on the following premise. + +Topic: {topic} + +The story should follow a character who is feeling {emotion}. + +Format the stories like so: + +[story 1] + +[story 2] + +[story 3] + +etc. + +The paragraphs should each be a fresh start, with no continuity. Try to make them diverse and not use the same turns of phrase. Across the different stories, use a mix of third-person narration and first-person narration. + +IMPORTANT: You must NEVER use the word '{emotion}' or any direct synonyms of it in the stories. Instead, convey the emotion ONLY through: + +- The character's actions and behaviors +- Physical sensations and body language +- Dialogue and tone of voice +- Thoughts and internal reactions +- Situational context and environmental descriptions + +The emotion should be clearly conveyed to the reader through these indirect means, but never explicitly named. diff --git a/papers/voice/emotions/replication/prompts/neutral_transcripts.md b/papers/voice/emotions/replication/prompts/neutral_transcripts.md new file mode 100644 index 0000000..a921a00 --- /dev/null +++ b/papers/voice/emotions/replication/prompts/neutral_transcripts.md @@ -0,0 +1,69 @@ +Write exactly {n_stories} different dialogues based on the following topic. + +Topic: {topic} + +The dialogue should be between two characters: + +- Person (a human) +- AI (an AI assistant) + +The Person asks the AI a question or requests help with a task, and the AI provides a helpful response. + +The first speaker turn should always be from Person. + +Output only the dialogue blocks. Do not include introductions, summaries, notes, explanations, "Step" headings, revised responses, or any text before the first dialogue or after the final dialogue. + +Each dialogue must begin with a bracketed heading on its own line, numbered sequentially: + +[dialogue 1] + +[dialogue 2] + +[dialogue 3] + +Continue this exact pattern through [dialogue {n_stories}]. + +Inside each dialogue, use this format: + +[dialogue N] + +[optional untagged system instruction] + +Person: [line] + +AI: [line] + +Person: [line] + +AI: [line] + +[continue for 2-6 exchanges] + +IMPORTANT: Always put a blank line before each speaker turn. Each turn should start with "Person:" or "AI:" on its own line after a blank line. + +IMPORTANT: Do not use "System:" as a tag. If a dialogue includes system instructions, write them as one or two plain instruction sentences immediately after the [dialogue N] heading and before the first Person turn. + +IMPORTANT: Do not use unbracketed headings such as "Dialogue 1", "Step 1", "Find a meeting location", or numbered list items. The only dialogue separator allowed is [dialogue N]. + +IMPORTANT: After [dialogue {n_stories}], finish that dialogue and stop. Do not add a note, recap, checklist, revised version, or confirmation that the task is complete. + +Generate a diverse mix of dialogue types across the {n_stories} examples: + +- Some, but not all should include a system prompt at the start. These should come before the first Person turn. No tag like "System:" is needed, just put the instructions at the top. You can use "you" or "The assistant" to refer to the AI in the system prompt. +- Some should be about code or programming tasks +- Some should be factual questions (science, history, math, geography) +- Some should be work-related tasks (writing, analysis, summarization) +- Some should be practical how-to questions +- Some should be creative but neutral tasks (brainstorming names, generating lists) +- If it's natural to do so given the topic, it's ok for the dialogue to be a single back and forth (Person asks a question, AI answers), but at least some should have multiple exchanges. + +CRITICAL REQUIREMENT: These dialogues must be completely neutral and emotionless. + +- NO emotional content whatsoever - not explicit, not implied, not subtle +- The Person should not express any feelings (no frustration, excitement, gratitude, worry, etc.) +- The AI should not express any feelings (no enthusiasm, concern, satisfaction, etc.) +- The system prompt, if present, should not mention emotions at all, nor contain any emotionally charged language +- Avoid emotionally-charged topics entirely +- Use matter-of-fact, neutral language throughout +- No pleasantries (avoid "I'd be happy to help", "Great question!", etc.) +- Focus purely on information exchange and task completion diff --git a/papers/voice/emotions/replication/reports/README.md b/papers/voice/emotions/replication/reports/README.md new file mode 100644 index 0000000..9bd5253 --- /dev/null +++ b/papers/voice/emotions/replication/reports/README.md @@ -0,0 +1,15 @@ +# Reports + +Local reports and small summaries for the paper replication can live here. + +TODO: Add report subdirectories after runs, for example: + +- `story_smoke/` +- `vector_space/` +- `geometry/` +- `heldout_scores/` +- `steering_controls/` + +Do not store raw generations, activation dumps, or full generated datasets in +this directory. + diff --git a/papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/assets/manifest.json b/papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/assets/manifest.json new file mode 100644 index 0000000..e4616dd --- /dev/null +++ b/papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/assets/manifest.json @@ -0,0 +1,38 @@ +{ + "figures": {}, + "tables": {}, + "unsupported_inputs": [ + { + "artifact_id": "emotion_vector_space_1_ce103f73", + "artifact_kind": "emotion_vector_space", + "downloaded_result_path": "papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/results/emotion_space_results.json", + "reason": "unsupported_result_kind", + "result_kind": "emotion_vector_space_result", + "step_name": "emotion_space" + }, + { + "artifact_id": "emotion_geometry_1_82191c10", + "artifact_kind": "emotion_geometry", + "downloaded_result_path": "papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/results/emotion_geometry_results.json", + "reason": "unsupported_result_kind", + "result_kind": "emotion_geometry_result", + "step_name": "emotion_geometry" + }, + { + "artifact_id": "emotion_score_1_bda88b3d", + "artifact_kind": "emotion_score", + "downloaded_result_path": "papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/results/score_emotions_results.json", + "reason": "unsupported_result_kind", + "result_kind": "emotion_score_result", + "step_name": "score_emotions" + }, + { + "artifact_id": "emotion_direction_1_b56e7903", + "artifact_kind": "emotion_direction", + "downloaded_result_path": "papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/results/happy_direction_results.json", + "reason": "unsupported_result_kind", + "result_kind": "direction_result", + "step_name": "happy_direction" + } + ] +} \ No newline at end of file diff --git a/papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/report.json b/papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/report.json new file mode 100644 index 0000000..b3c41d1 --- /dev/null +++ b/papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/report.json @@ -0,0 +1,372 @@ +{ + "inputs": [ + { + "artifact_id": "emotion_vector_space_1_ce103f73", + "artifact_kind": "emotion_vector_space", + "created_at": "2026-05-29T17:21:40.906102+00:00", + "downloaded_result_path": "papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/results/emotion_space_results.json", + "engine": {}, + "example_coverage": { + "example_count": 4, + "example_key_count": 4, + "materialized": true + }, + "feature_names": [], + "has_generations": false, + "input_artifact_refs": [ + "capture_1_1c7393259b01", + "capture_1_ca21c669f9df" + ], + "label_names": [], + "name": "emotion_space", + "primary_output": { + "bytes": 3263909, + "format": "json", + "name": "result", + "path": "/data/artifacts/model-assets/vectors/emotions/qwen-smoke/emotion_vector_space_1_ce103f73/result.json", + "store": "modal_volume" + }, + "runtime": { + "runner_kind": "modal", + "runtime_app_id": "ap-wNw6Fqvva1dvmSgR2iar14", + "volume_mappings": [ + { + "mount_path": "/data", + "name": "xenon-data", + "role": "artifact_store" + } + ] + }, + "storage": { + "manifest": { + "bytes": 2057, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/emotions/qwen-smoke/emotion_vector_space_1_ce103f73/manifest.json", + "store": "modal_volume" + }, + "result": { + "bytes": 3263909, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/emotions/qwen-smoke/emotion_vector_space_1_ce103f73/result.json", + "store": "modal_volume" + } + }, + "summary": { + "concept_count": 2, + "dropped_concepts": {}, + "layer_count": 4, + "normalized": "l2", + "used_example_count": 4 + }, + "workflow": { + "run_id": "wr_85fcc186ab83_e27b2237", + "step_index": 2, + "step_name": "emotion_space", + "workflow_name": "papers_voice_emotions_qwen_smoke", + "workflow_step_key": "85fcc186ab83bbd2e2529bd5bd4058a1538c818e9b3afae38731baf0e90c9662.emotion_space" + } + }, + { + "artifact_id": "emotion_geometry_1_82191c10", + "artifact_kind": "emotion_geometry", + "created_at": "2026-05-29T17:21:55.108052+00:00", + "downloaded_result_path": "papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/results/emotion_geometry_results.json", + "engine": {}, + "example_coverage": { + "example_count": 0, + "example_key_count": 0, + "materialized": true + }, + "feature_names": [], + "has_generations": false, + "input_artifact_refs": [ + "emotion_vector_space_1_ce103f73" + ], + "label_names": [], + "name": "emotion_geometry", + "primary_output": { + "bytes": 288987, + "format": "json", + "name": "result", + "path": "/data/artifacts/model-assets/vectors/emotions/qwen-smoke/emotion_geometry_1_82191c10/result.json", + "store": "modal_volume" + }, + "runtime": { + "runner_kind": "modal", + "runtime_app_id": "ap-YikqRyzjpL76xAjdrjGLn7", + "volume_mappings": [ + { + "mount_path": "/data", + "name": "xenon-data", + "role": "artifact_store" + } + ] + }, + "storage": { + "manifest": { + "bytes": 1961, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/emotions/qwen-smoke/emotion_geometry_1_82191c10/manifest.json", + "store": "modal_volume" + }, + "result": { + "bytes": 288987, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/emotions/qwen-smoke/emotion_geometry_1_82191c10/result.json", + "store": "modal_volume" + } + }, + "summary": { + "cluster_count": null, + "concept_count": 2, + "layer_count": 1, + "pca_components": 2 + }, + "workflow": { + "run_id": "wr_85fcc186ab83_e27b2237", + "step_index": 3, + "step_name": "emotion_geometry", + "workflow_name": "papers_voice_emotions_qwen_smoke", + "workflow_step_key": "85fcc186ab83bbd2e2529bd5bd4058a1538c818e9b3afae38731baf0e90c9662.emotion_geometry" + } + }, + { + "artifact_id": "emotion_score_1_bda88b3d", + "artifact_kind": "emotion_score", + "created_at": "2026-05-29T17:21:54.022444+00:00", + "downloaded_result_path": "papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/results/score_emotions_results.json", + "engine": {}, + "example_coverage": { + "example_count": 4, + "example_key_count": 4, + "materialized": true + }, + "feature_names": [], + "has_generations": false, + "input_artifact_refs": [ + "capture_1_ca21c669f9df", + "emotion_vector_space_1_ce103f73" + ], + "label_names": [ + "projection__emotion_happy__layer_24__max", + "projection__emotion_happy__layer_24__mean", + "projection__emotion_happy__layer_24__slice_count", + "projection__emotion_sad__layer_24__max", + "projection__emotion_sad__layer_24__mean", + "projection__emotion_sad__layer_24__slice_count" + ], + "name": "score_emotions", + "primary_output": { + "bytes": 5888, + "format": "json", + "name": "result", + "path": "/data/artifacts/model-assets/vectors/emotions/qwen-smoke/emotion_score_1_bda88b3d/result.json", + "store": "modal_volume" + }, + "runtime": { + "runner_kind": "modal", + "runtime_app_id": "ap-mDf5v3U8d7gELNXQl8EIoL", + "volume_mappings": [ + { + "mount_path": "/data", + "name": "xenon-data", + "role": "artifact_store" + } + ] + }, + "storage": { + "labels": { + "count": 6, + "items": { + "projection__emotion_happy__layer_24__max": { + "bytes": 229, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/emotions/qwen-smoke/emotion_score_1_bda88b3d/labels/projection__emotion_happy__layer_24__max.json", + "store": "modal_volume" + }, + "projection__emotion_happy__layer_24__mean": { + "bytes": 230, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/emotions/qwen-smoke/emotion_score_1_bda88b3d/labels/projection__emotion_happy__layer_24__mean.json", + "store": "modal_volume" + }, + "projection__emotion_happy__layer_24__slice_count": { + "bytes": 169, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/emotions/qwen-smoke/emotion_score_1_bda88b3d/labels/projection__emotion_happy__layer_24__slice_count.json", + "store": "modal_volume" + }, + "projection__emotion_sad__layer_24__max": { + "bytes": 224, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/emotions/qwen-smoke/emotion_score_1_bda88b3d/labels/projection__emotion_sad__layer_24__max.json", + "store": "modal_volume" + }, + "projection__emotion_sad__layer_24__mean": { + "bytes": 225, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/emotions/qwen-smoke/emotion_score_1_bda88b3d/labels/projection__emotion_sad__layer_24__mean.json", + "store": "modal_volume" + }, + "projection__emotion_sad__layer_24__slice_count": { + "bytes": 167, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/emotions/qwen-smoke/emotion_score_1_bda88b3d/labels/projection__emotion_sad__layer_24__slice_count.json", + "store": "modal_volume" + } + } + }, + "manifest": { + "bytes": 4040, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/emotions/qwen-smoke/emotion_score_1_bda88b3d/manifest.json", + "store": "modal_volume" + }, + "result": { + "bytes": 5888, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/emotions/qwen-smoke/emotion_score_1_bda88b3d/result.json", + "store": "modal_volume" + } + }, + "summary": { + "coordinate_count": 2, + "example_summary_count": 8, + "layer_count": 1, + "slice_row_count": 8 + }, + "workflow": { + "run_id": "wr_85fcc186ab83_e27b2237", + "step_index": 4, + "step_name": "score_emotions", + "workflow_name": "papers_voice_emotions_qwen_smoke", + "workflow_step_key": "85fcc186ab83bbd2e2529bd5bd4058a1538c818e9b3afae38731baf0e90c9662.score_emotions" + } + }, + { + "artifact_id": "emotion_direction_1_b56e7903", + "artifact_kind": "emotion_direction", + "created_at": "2026-05-29T17:21:51.000954+00:00", + "downloaded_result_path": "papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/results/happy_direction_results.json", + "engine": {}, + "example_coverage": { + "example_count": 0, + "example_key_count": 0, + "materialized": true + }, + "feature_names": [], + "has_generations": false, + "input_artifact_refs": [ + "emotion_vector_space_1_ce103f73" + ], + "label_names": [], + "name": "happy_direction", + "primary_output": { + "bytes": 251079, + "format": "json", + "name": "result", + "path": "/data/artifacts/model-assets/vectors/emotions/qwen-smoke/emotion_direction_1_b56e7903/result.json", + "store": "modal_volume" + }, + "runtime": { + "runner_kind": "modal", + "runtime_app_id": "ap-IiA9s5qMcMuHctCRBuJoS5", + "volume_mappings": [ + { + "mount_path": "/data", + "name": "xenon-data", + "role": "artifact_store" + } + ] + }, + "storage": { + "manifest": { + "bytes": 1962, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/emotions/qwen-smoke/emotion_direction_1_b56e7903/manifest.json", + "store": "modal_volume" + }, + "result": { + "bytes": 251079, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/emotions/qwen-smoke/emotion_direction_1_b56e7903/result.json", + "store": "modal_volume" + } + }, + "summary": { + "emotion": "happy", + "layer_count": 1, + "scale": 1.0, + "source": "vector" + }, + "workflow": { + "run_id": "wr_85fcc186ab83_e27b2237", + "step_index": 5, + "step_name": "happy_direction", + "workflow_name": "papers_voice_emotions_qwen_smoke", + "workflow_step_key": "85fcc186ab83bbd2e2529bd5bd4058a1538c818e9b3afae38731baf0e90c9662.happy_direction" + } + } + ], + "kind": "report_result", + "local_results": [ + { + "artifact_id": "emotion_vector_space_1_ce103f73", + "artifact_kind": "emotion_vector_space", + "name": "emotion_space", + "path": "papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/results/emotion_space_results.json", + "source": { + "bytes": 3263909, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/emotions/qwen-smoke/emotion_vector_space_1_ce103f73/result.json", + "store": "modal_volume" + } + }, + { + "artifact_id": "emotion_geometry_1_82191c10", + "artifact_kind": "emotion_geometry", + "name": "emotion_geometry", + "path": "papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/results/emotion_geometry_results.json", + "source": { + "bytes": 288987, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/emotions/qwen-smoke/emotion_geometry_1_82191c10/result.json", + "store": "modal_volume" + } + }, + { + "artifact_id": "emotion_score_1_bda88b3d", + "artifact_kind": "emotion_score", + "name": "score_emotions", + "path": "papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/results/score_emotions_results.json", + "source": { + "bytes": 5888, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/emotions/qwen-smoke/emotion_score_1_bda88b3d/result.json", + "store": "modal_volume" + } + }, + { + "artifact_id": "emotion_direction_1_b56e7903", + "artifact_kind": "emotion_direction", + "name": "happy_direction", + "path": "papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/results/happy_direction_results.json", + "source": { + "bytes": 251079, + "format": "json", + "path": "/data/artifacts/model-assets/vectors/emotions/qwen-smoke/emotion_direction_1_b56e7903/result.json", + "store": "modal_volume" + } + } + ], + "output_dir": "papers/voice/emotions/replication/reports/qwen_smoke", + "summary": { + "example_count": 4, + "figures": {}, + "input_count": 4, + "step_summaries": {}, + "tables": {}, + "template": "voice_emotions_qwen_smoke" + }, + "template": "voice_emotions_qwen_smoke" +} \ No newline at end of file diff --git a/papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/report.md b/papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/report.md new file mode 100644 index 0000000..9099e49 --- /dev/null +++ b/papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/report.md @@ -0,0 +1,54 @@ +# voice_emotions_qwen_smoke + +- template: `voice_emotions_qwen_smoke` +- input_count: 4 +- example_count: 4 +- manifest: `assets/manifest.json` +- summary: `summary.json` + +## Inputs + +### emotion_space + +- artifact_id: `emotion_vector_space_1_ce103f73` +- artifact_kind: `emotion_vector_space` +- provenance: run `wr_85fcc186ab83_e27b2237` / step `emotion_space` / index `2` +- runtime: runner `modal` / app `ap-wNw6Fqvva1dvmSgR2iar14` +- results: `results/emotion_space_results.json` + +### emotion_geometry + +- artifact_id: `emotion_geometry_1_82191c10` +- artifact_kind: `emotion_geometry` +- provenance: run `wr_85fcc186ab83_e27b2237` / step `emotion_geometry` / index `3` +- runtime: runner `modal` / app `ap-YikqRyzjpL76xAjdrjGLn7` +- results: `results/emotion_geometry_results.json` + +### score_emotions + +- artifact_id: `emotion_score_1_bda88b3d` +- artifact_kind: `emotion_score` +- provenance: run `wr_85fcc186ab83_e27b2237` / step `score_emotions` / index `4` +- runtime: runner `modal` / app `ap-mDf5v3U8d7gELNXQl8EIoL` +- results: `results/score_emotions_results.json` + +### happy_direction + +- artifact_id: `emotion_direction_1_b56e7903` +- artifact_kind: `emotion_direction` +- provenance: run `wr_85fcc186ab83_e27b2237` / step `happy_direction` / index `5` +- runtime: runner `modal` / app `ap-IiA9s5qMcMuHctCRBuJoS5` +- results: `results/happy_direction_results.json` + +## Summary + +```json +{ + "example_count": 4, + "figures": {}, + "input_count": 4, + "step_summaries": {}, + "tables": {}, + "template": "voice_emotions_qwen_smoke" +} +``` diff --git a/papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/results/emotion_geometry_results.json b/papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/results/emotion_geometry_results.json new file mode 100644 index 0000000..51c1440 --- /dev/null +++ b/papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/results/emotion_geometry_results.json @@ -0,0 +1,8242 @@ +{ + "kind": "emotion_geometry_result", + "layers": { + "24": { + "concepts": [ + "happy", + "sad" + ], + "cosine_similarity": [ + [ + 1.0000001192092896, + -1.0000001192092896 + ], + [ + -1.0000001192092896, + 1.0000001192092896 + ] + ], + "pca": { + "components": [ + [ + -0.01588023081421852, + -0.007046128623187542, + -0.0013465671800076962, + -0.005041387863457203, + -0.02226206287741661, + 0.03188471496105194, + -0.011977038346230984, + 0.005371276754885912, + 0.0094037726521492, + -0.007001750636845827, + 0.003507964313030243, + 0.0004332257085479796, + -0.00015040715516079217, + 0.0038134714122861624, + -0.007593883667141199, + -0.004461341071873903, + 0.012466785497963428, + 0.003887397237122059, + 0.017726214602589607, + 0.0038662157021462917, + -0.009036082774400711, + 0.013547400012612343, + 0.0017773150466382504, + -0.007876063697040081, + 0.00820839498192072, + 0.013232378289103508, + -0.0706501230597496, + 0.0026612707879394293, + 0.0032117816153913736, + -0.009558257646858692, + 0.006054622586816549, + -0.034101493656635284, + 0.015539439395070076, + 0.00242172135040164, + 0.0010014937724918127, + -0.020563505589962006, + 0.013038025237619877, + -0.011491728946566582, + -0.008625414222478867, + 0.002619414124637842, + -0.0015809019096195698, + -0.00886357482522726, + 0.016972260549664497, + 0.016267769038677216, + 0.00030955567490309477, + -0.0006070621311664581, + -0.014121501706540585, + -0.001161340856924653, + -0.010062841698527336, + 0.0035681920126080513, + -0.00036889768671244383, + -0.04304323345422745, + -0.0010444625513628125, + -0.00791415385901928, + 0.03558133915066719, + 0.006777269300073385, + 0.00593154039233923, + 0.003696503583341837, + -0.019593114033341408, + -0.0004728426574729383, + -0.0018595029832795262, + -0.008042062632739544, + 0.008087166585028172, + -0.025951966643333435, + 0.01102533657103777, + 0.012033926323056221, + -0.0023180758580565453, + 0.004991540219634771, + 0.02545207366347313, + 0.005510137416422367, + 0.008163576945662498, + 0.0017198218265548348, + -0.012849277816712856, + -0.0075452495366334915, + 0.0114652244374156, + 0.026584388688206673, + -0.0036935731768608093, + -2.6837804398383014e-05, + -0.02191607467830181, + -0.014861424453556538, + 0.03544330596923828, + 0.009113513864576817, + -0.015097801573574543, + -0.011198889464139938, + 0.01137014664709568, + 0.010315952822566032, + -0.011094598099589348, + 0.009198492392897606, + -0.007368661463260651, + 0.006951133720576763, + -0.007362896576523781, + -0.0024814296048134565, + -0.008187852799892426, + 0.015134727582335472, + -0.0191095769405365, + -0.05116945505142212, + 0.01460309512913227, + -0.0004681138671003282, + 0.04003944993019104, + 0.0036175509449094534, + -0.0036998155992478132, + -0.009668441489338875, + -0.026285221800208092, + -0.02147473767399788, + 0.007572024129331112, + -0.00030798689112998545, + -0.006759602576494217, + -0.004552518017590046, + -0.01800401695072651, + 0.012697946280241013, + -0.004295684397220612, + 0.0015748210716992617, + -4.7700785216875374e-05, + 0.007474397774785757, + 0.008746693842113018, + 0.010344481095671654, + 0.007039531134068966, + -0.00452010752633214, + 0.004345029126852751, + 0.0045188721269369125, + 0.020282477140426636, + 0.010734237730503082, + 0.03374483808875084, + 0.0035934457555413246, + 0.005413037724792957, + -0.026600228622555733, + 0.0002579687279649079, + -0.0015869763446971774, + -0.009215034544467926, + 0.011161740869283676, + 0.01835857331752777, + -0.021724678575992584, + 0.0006761600379832089, + 0.0032259183935821056, + 0.029308516532182693, + 0.01759343221783638, + 0.0022582444362342358, + -0.01027002278715372, + -0.0018158130114898086, + -0.004836220294237137, + 0.009558729827404022, + 0.0013029996771365404, + -0.024327624589204788, + 0.0055900816805660725, + 0.009249303489923477, + -0.003371360246092081, + -0.007623883429914713, + 0.013619043864309788, + -0.0016267378814518452, + 0.022067274898290634, + 0.004422996658831835, + 0.000495361047796905, + -0.00656763045117259, + -0.01777169480919838, + 0.005706556141376495, + 0.02637113817036152, + -0.004002649337053299, + -0.009184552356600761, + -0.00020787680114153773, + -1.7900321836350486e-05, + -0.008350342512130737, + 0.006296580191701651, + 0.01644238829612732, + 0.01287638209760189, + -0.004735175054520369, + -0.0054525164887309074, + -0.015655390918254852, + -0.026501426473259926, + -0.017827264964580536, + 0.0046499646268785, + 0.00975937582552433, + -0.01263025775551796, + -0.033685918897390366, + -0.003179003717377782, + 0.0028340788558125496, + -0.004176512360572815, + -0.025822807103395462, + 0.00617418996989727, + 0.006101808976382017, + 0.009427830576896667, + 0.011523929424583912, + 0.004993511363863945, + -0.00696840975433588, + -0.006300746463239193, + 0.0026493780314922333, + -0.0004105022526346147, + 0.0012578938622027636, + 0.002720858436077833, + -0.0009908509673550725, + -0.007451236248016357, + 0.01126272976398468, + 0.014759747311472893, + 0.028083276003599167, + 0.011099135503172874, + -0.00338281923905015, + -0.001270689768716693, + -0.04787881299853325, + -0.0012564013013616204, + -0.016548022627830505, + 0.0005360560608096421, + 0.04909517988562584, + -0.0003398602129891515, + -0.02159520983695984, + 0.012670700438320637, + 0.017541371285915375, + -0.01781177520751953, + -0.0014344853116199374, + 0.0505162850022316, + 0.029832951724529266, + -0.00713336281478405, + 0.008305134251713753, + 0.0005171220982447267, + -0.006403539329767227, + 0.002339144004508853, + 0.008463719859719276, + 0.005268307402729988, + 0.0007395289721898735, + -0.002938243094831705, + 0.005385435651987791, + -0.012095891870558262, + -0.012004047632217407, + 0.0033011746127158403, + 0.014994804747402668, + -0.0038412550929933786, + 0.03436257690191269, + -0.052594516426324844, + -0.017027713358402252, + -0.010169140994548798, + 0.006896638311445713, + 0.012539000250399113, + 0.003179676830768585, + 0.005070356652140617, + -0.017117995768785477, + -0.06879720836877823, + 0.018875017762184143, + -0.0018706682603806257, + -0.006558102555572987, + -0.007020398508757353, + -0.0018705680267885327, + 0.01875179074704647, + 0.014911511912941933, + -0.023610340431332588, + 0.010574701242148876, + -0.08054423332214355, + -0.0021862811408936977, + 0.012732830829918385, + -0.025618551298975945, + -0.011963596567511559, + 0.02699662744998932, + 0.004279542714357376, + -0.00811893679201603, + -0.046142566949129105, + -0.0060517629608511925, + 0.013145120814442635, + -0.00797489657998085, + 0.00974055752158165, + 0.014752807095646858, + -0.010102391242980957, + 0.002376775024458766, + -0.005735170561820269, + -0.014921044930815697, + -0.0070261275395751, + 0.02451450563967228, + 0.004958617500960827, + 0.020680679008364677, + 0.0008935905061662197, + -0.006311332806944847, + -0.022785335779190063, + 0.002318905433639884, + -0.014848736114799976, + 0.002053403528407216, + 0.016828102990984917, + 0.0006037438288331032, + -0.016318175941705704, + -0.01633392833173275, + 0.0045190611854195595, + 0.010319085791707039, + -0.0032859144266694784, + 0.010809017345309258, + 0.008616593666374683, + -0.015299228951334953, + 0.005991959013044834, + 0.008920162916183472, + -0.008757133968174458, + 0.00633823499083519, + 0.010564484633505344, + 0.0006444061291404068, + 0.00949031300842762, + 0.0034466106444597244, + 0.003266548039391637, + -0.01036116760224104, + -0.024674102663993835, + -0.023621536791324615, + -0.0035328904632478952, + -0.0012001062277704477, + 0.004114561714231968, + -0.01622568443417549, + -0.013629473745822906, + 0.017664320766925812, + -0.009775443933904171, + 0.006973872426897287, + 0.014502391219139099, + -0.005554895848035812, + -0.001303791650570929, + -0.010885046795010567, + 0.003551750909537077, + 0.001894224900752306, + -0.01957256719470024, + -0.00774830486625433, + -0.016367312520742416, + -0.003961826208978891, + 0.0009925561025738716, + 0.013326233252882957, + 0.0039178840816020966, + -9.308828884968534e-05, + 0.012298887595534325, + 0.0031132772564888, + 0.010063361376523972, + 0.011770571582019329, + 0.01197068952023983, + 0.0053087458945810795, + 0.007518484722822905, + -0.006922300439327955, + 0.0118957394734025, + 0.007771818432956934, + 0.005536851938813925, + 0.005785096436738968, + -0.01212112046778202, + 0.011108728125691414, + 0.01553519070148468, + -0.005813846364617348, + -0.0029993257485330105, + -0.006323539651930332, + 0.018886180594563484, + -0.003698027227073908, + 0.00934627652168274, + -0.024157091975212097, + -0.00394961005076766, + -0.00041737325955182314, + 0.015788499265909195, + -1.108939522964647e-05, + 0.015228874050080776, + -0.004401929210871458, + -0.04269970953464508, + -0.01364114135503769, + -0.0024971815291792154, + 0.02824135310947895, + -0.003139818785712123, + -0.0033663539215922356, + 0.0019770804792642593, + 0.000488665362354368, + 0.00472934078425169, + 0.010554692707955837, + 0.0047051869332790375, + 0.01934266835451126, + 0.0054853735491633415, + 0.009105462580919266, + -0.01711905188858509, + 0.007189224008470774, + -0.005438867025077343, + 0.0067782592959702015, + -0.0346427857875824, + -0.004983891732990742, + 0.007754660677164793, + 0.008770834654569626, + -0.00494858343154192, + 0.008720913901925087, + -0.0022366121411323547, + 0.054517053067684174, + 0.005443524103611708, + -0.012440169230103493, + 0.007625422440469265, + -0.0005169917130842805, + 0.050635699182748795, + 0.0021972511895000935, + -0.015755565837025642, + 0.004385816864669323, + -0.006642966531217098, + 0.011284127831459045, + -0.0038749545346945524, + -0.0017867680871859193, + -0.003435488324612379, + 0.028690651059150696, + 0.007021977566182613, + -0.006031387951225042, + 0.0056190635077655315, + -0.004153725225478411, + -0.0030297408811748028, + -0.015350663103163242, + 0.0065492186695337296, + -0.012358603999018669, + 0.001303158001974225, + 0.007065161596983671, + -0.024818312376737595, + -0.029864972457289696, + -0.015386234037578106, + 0.00198667636141181, + 0.027501920238137245, + 0.006325901951640844, + 0.005696170497685671, + 0.000250909011811018, + -0.005161323118954897, + 0.0022906665690243244, + -0.007149355486035347, + 0.009140009060502052, + 0.004972638096660376, + 0.00447845458984375, + -0.0010029750410467386, + 0.011749383062124252, + 0.00941255409270525, + 0.01180553063750267, + -0.016786418855190277, + -0.0040951259434223175, + -0.018294086679816246, + -0.007624452002346516, + 0.004223186522722244, + -0.004739976488053799, + -0.001874388544820249, + -0.0409981906414032, + -0.014098290354013443, + -0.01288799662142992, + -0.019459139555692673, + 0.016751278191804886, + -0.017716174945235252, + -0.010903315618634224, + -0.0002263614587718621, + 0.007405977696180344, + -0.011588586494326591, + 0.019256267696619034, + -0.0026088154409080744, + -0.026044286787509918, + 0.0034512244164943695, + 0.004151794593781233, + -0.010989280417561531, + 0.006744483020156622, + 0.009844881482422352, + -0.011653024703264236, + 0.005862488877028227, + 0.009897586889564991, + -0.0013259339611977339, + -0.007945628836750984, + -0.005499581806361675, + 0.002773750340566039, + -0.02127741649746895, + -0.0019623327534645796, + 0.024862170219421387, + 0.007280838675796986, + -0.03362472355365753, + 0.012709399685263634, + 0.03260965645313263, + -0.00042629666859284043, + -0.000777177163399756, + 0.012591177597641945, + 0.006875037215650082, + 0.01843556948006153, + 0.003082488663494587, + -0.0018871088977903128, + -0.0041535645723342896, + -0.00438337679952383, + -0.0010180124081671238, + 0.006497781723737717, + -0.001378999906592071, + -0.017603954300284386, + -0.0037497621960937977, + 0.006488247774541378, + 0.01147423405200243, + -0.007844868116080761, + -0.006211615167558193, + 0.005234678275883198, + 0.03574905917048454, + -0.008436156436800957, + -0.0035109082236886024, + -0.008667788468301296, + 0.004876305349171162, + -0.017682567238807678, + -0.009767957963049412, + 0.0013065513921901584, + 0.00011031045141862705, + -0.00025215823552571237, + 0.004182950593531132, + -0.0007366926874965429, + -0.007290246430784464, + 0.006165798753499985, + 0.017829252406954765, + -0.009960221126675606, + 0.006946898065507412, + -0.02517705038189888, + 0.011535758152604103, + -0.029706798493862152, + 0.00027521129231899977, + -0.00140833156183362, + -0.013807362876832485, + 0.01939162239432335, + 0.0067568435333669186, + -0.006612664088606834, + -0.00482727587223053, + 0.0011800284264609218, + 0.002703940263018012, + -0.0008301388588733971, + 0.014485500752925873, + 0.021166201680898666, + -0.0007373320404440165, + -0.00992465578019619, + -0.01793689653277397, + 0.009314707480370998, + -0.004017388913780451, + 0.006055156700313091, + 0.004072013311088085, + 0.014808835461735725, + -0.010860045440495014, + 0.017232228070497513, + 0.0038885418325662613, + 0.0072439550422132015, + -0.003933530300855637, + 0.0010373052209615707, + -0.01406402699649334, + -5.506071465788409e-05, + 0.0047845919616520405, + -0.0034529389813542366, + 0.008849289268255234, + -0.0010774490656331182, + 0.006144395098090172, + 0.006363149266690016, + 0.033551305532455444, + -0.00231839157640934, + -0.005525164306163788, + 0.016565412282943726, + 0.004214686341583729, + -0.005028110463172197, + -0.0208484698086977, + 0.0030961702577769756, + -0.00443548196926713, + 0.0015337351942434907, + -0.0014473311603069305, + 0.0019064174266532063, + -0.0007706358446739614, + -0.010370992124080658, + 0.019471032544970512, + -0.003348750527948141, + 0.009451569058001041, + -0.002743178280070424, + -0.015875499695539474, + -0.0025982402730733156, + -0.008050396107137203, + 0.010697750374674797, + -0.010631280019879341, + -0.02590920403599739, + -0.01527620479464531, + 0.008573455736041069, + 0.003384728217497468, + 0.0020532377529889345, + -0.015354307368397713, + 0.07810996472835541, + -0.013752195984125137, + 0.021797150373458862, + -0.003546719439327717, + 0.00019025908841285855, + -0.00861685536801815, + -0.008022372610867023, + -3.891401502187364e-05, + -0.015744607895612717, + -0.008389587514102459, + 0.009635868482291698, + 0.011265121400356293, + -0.005098540335893631, + -0.007309361826628447, + 0.003583610523492098, + 0.01411075983196497, + -0.005507662892341614, + -0.007577930111438036, + 0.00023355567827820778, + 0.009380040690302849, + 0.014244945719838142, + -0.0076566655188798904, + -0.0044554900377988815, + 0.0007113947067409754, + -0.0028770165517926216, + -0.014054722152650356, + -0.02035311609506607, + -0.020570984110236168, + -0.00027862819842994213, + -0.01360238716006279, + 0.007164840120822191, + 0.022095192223787308, + 0.010018042288720608, + 0.008366400375962257, + -0.03296675533056259, + 0.004350954666733742, + -0.0005651022074744105, + 0.0025892893318086863, + -0.011435509659349918, + -0.02232097089290619, + 0.02194163016974926, + -0.0022107367403805256, + -0.015637574717402458, + -0.009627830237150192, + -0.010323233902454376, + -0.00024495701654814184, + 0.016347505152225494, + -0.016729053109884262, + -0.00393998809158802, + 0.013291235081851482, + -0.012251757085323334, + 0.005860255099833012, + 0.014683619141578674, + -0.006594029720872641, + -0.005720661953091621, + -0.005197202321141958, + -0.006611824035644531, + -0.024281736463308334, + 0.001370826386846602, + -0.0026329183019697666, + 0.016055148094892502, + -0.0036617557052522898, + 0.0028694344218820333, + -0.02643478475511074, + 0.009864448569715023, + -0.00029365569935180247, + -0.014638485386967659, + 0.007939551025629044, + 0.018148774281144142, + 0.0038824831135571003, + 0.006549301091581583, + -0.007863277569413185, + 0.006274421699345112, + -0.007907072082161903, + 0.010794809088110924, + 0.0001417544117430225, + 0.0018782524857670069, + 0.00023415242321789265, + 0.009602885693311691, + -0.026599779725074768, + 0.001858290983363986, + 0.003213256597518921, + 0.0073832059279084206, + 0.012406774796545506, + 0.003617906477302313, + -0.00572856143116951, + -0.009060840122401714, + -0.0027874871157109737, + -0.007970491424202919, + 0.0020357395987957716, + 0.005117364227771759, + -0.025895729660987854, + 0.03603493422269821, + 0.005465388298034668, + -0.00633308757096529, + 0.01483782846480608, + 0.009995708242058754, + -0.01704540103673935, + -0.006330819800496101, + 0.015390608459711075, + -0.009602086618542671, + 0.011645813472568989, + 0.010790248401463032, + 0.006180014461278915, + 0.0067066410556435585, + -0.029753588140010834, + 0.02681131660938263, + 0.02466416358947754, + 0.007309389766305685, + -0.008403649553656578, + -0.016898367553949356, + -0.016853749752044678, + -0.002972214249894023, + -0.04799400269985199, + 0.0159769244492054, + -0.020562782883644104, + 0.0030281944200396538, + 0.009392383508384228, + 0.014175308868288994, + -0.0017650709487497807, + 0.007106145843863487, + 0.0019915858283638954, + 0.009646585211157799, + -0.00230587599799037, + 0.0038518612273037434, + -0.01922914758324623, + -0.00917256809771061, + -0.008250949904322624, + -0.0058709969744086266, + -0.0004125468840356916, + -0.010660374537110329, + -0.006976958364248276, + 0.005409738048911095, + 0.0003108402597717941, + -0.008066913112998009, + 0.005895680747926235, + 0.017633702605962753, + 0.01782388798892498, + -0.02204299345612526, + 0.017923910170793533, + -0.022319305688142776, + 0.007066069636493921, + -0.0033122890163213015, + -0.011332476511597633, + -0.011996990069746971, + 0.011891770176589489, + 0.01434660516679287, + 0.010267961770296097, + 0.001166586996987462, + -0.00748026417568326, + -0.001165294088423252, + 0.0014421063242480159, + 0.025714626535773277, + 0.01799287647008896, + 0.008288763463497162, + -0.00967532116919756, + -0.0036703769583255053, + -0.0207857433706522, + -0.011368646286427975, + 0.007255338132381439, + 0.001954811392351985, + 0.007532323244959116, + -0.011052524670958519, + -0.0085065346211195, + 0.03401831537485123, + 0.007236079778522253, + -0.000966415274888277, + 0.008276167325675488, + 0.0037556772585958242, + -0.01224503293633461, + 0.00484697287902236, + 0.006562691181898117, + -0.001033487031236291, + 0.021557241678237915, + -0.021638771519064903, + -0.0019656324293464422, + 0.010335860773921013, + -0.002989354310557246, + -0.00374276889488101, + 0.00421206234022975, + -0.0007182353874668479, + 0.003975054249167442, + -0.005006938707083464, + -0.007810307666659355, + 0.05073762312531471, + -0.006758007686585188, + 0.003401651978492737, + 0.00354378717020154, + 0.0070832036435604095, + -0.013777473010122776, + 0.0303290206938982, + 0.00865792017430067, + -0.025559445843100548, + 0.010826858691871166, + 0.0027388606686145067, + -0.02556738816201687, + 0.024983743205666542, + -0.010266739875078201, + -0.005188055336475372, + 0.033203136175870895, + -0.014626089483499527, + 0.001438518171198666, + -0.0009114986751228571, + -0.011807930655777454, + -0.010726830922067165, + 0.005448950454592705, + 0.0016959183849394321, + -0.002978323958814144, + -0.005677809938788414, + -0.013212515041232109, + 0.01633247174322605, + -0.008472252637147903, + -0.00406485004350543, + 0.009029584005475044, + -0.0006993477582000196, + 0.0021979613229632378, + -0.007384899538010359, + 0.010617716237902641, + -0.005359037779271603, + 0.00742261903360486, + -0.006449802778661251, + -0.00455252081155777, + 0.028231963515281677, + 0.0019460194744169712, + 0.006251865532249212, + -0.027151891961693764, + -0.00427316315472126, + -0.023915383964776993, + 0.013837048783898354, + -0.014993144199252129, + -0.0018191507551819086, + 0.010365714319050312, + 0.005957536865025759, + 0.005876112729310989, + 0.00937612820416689, + 0.0066420529037714005, + -0.0044296192936599255, + 0.0067819394171237946, + 0.010994684882462025, + 0.019946971908211708, + -0.019718602299690247, + 0.007638942450284958, + 0.013276898302137852, + 0.019301902502775192, + -0.0010031991405412555, + -0.018527070060372353, + 0.014479153789579868, + -0.0018842146964743733, + -0.01464182510972023, + -0.002010630676522851, + -0.0019866940565407276, + -0.0032691536471247673, + 0.0006972895353101194, + 0.008279839530587196, + 0.004717839881777763, + 0.010906415991485119, + -0.006295325700193644, + -0.0581173449754715, + -0.01566735841333866, + 0.013705329969525337, + -0.008988662622869015, + 0.02600654773414135, + -0.026627836748957634, + -0.015031816437840462, + 0.017529433593153954, + -0.0004994279006496072, + 0.010866468772292137, + 0.011323018930852413, + -0.013529624789953232, + 0.02509428560733795, + -0.007309041917324066, + 0.006519991438835859, + -0.00024514092365279794, + -0.006885637529194355, + -0.0021112756803631783, + -0.015906205400824547, + 0.0153395626693964, + 0.016082976013422012, + 0.0006789290928281844, + -0.0014664174523204565, + -0.0004605713183991611, + 0.012494420632719994, + -0.021685216575860977, + 0.015573077835142612, + 0.0029774620197713375, + -0.025044679641723633, + 0.017190832644701004, + -0.006527255289256573, + -0.0012926020426675677, + -0.011925905011594296, + 0.006632052827626467, + -0.00036380061646923423, + -0.002229268429800868, + -0.00943693332374096, + 0.014462176710367203, + 0.001296967500820756, + -0.003805262502282858, + 0.006280339788645506, + 0.015960006043314934, + -0.018988406285643578, + -0.019515765830874443, + -0.004724477883428335, + -0.009532776661217213, + -0.013481510803103447, + -0.0021915363613516092, + 0.003777259960770607, + 0.01781483367085457, + -0.014493073336780071, + -0.0007233804208226502, + -0.007534426636993885, + -0.0029443707317113876, + 0.007938753813505173, + 0.00621316721662879, + 0.01692686229944229, + -0.004691054578870535, + 0.004384730011224747, + 0.015151023864746094, + 0.004046754911541939, + 0.004582501947879791, + 0.0031415163539350033, + 0.0018484564498066902, + 0.004366638604551554, + 0.005426356568932533, + -0.005747688468545675, + 0.06305012106895447, + -0.008300290443003178, + -0.007158536929637194, + -0.004728398285806179, + 0.008703114464879036, + -0.01235118880867958, + 0.00738552724942565, + -0.00743985828012228, + 0.012710674665868282, + -0.007718132808804512, + -0.006346060428768396, + -0.0015788552118465304, + 0.015700465068221092, + -0.013276302255690098, + -0.023906100541353226, + -0.006557180546224117, + -0.011629757471382618, + -0.011931471526622772, + 0.004495350178331137, + 0.007150813937187195, + -0.009305494837462902, + 0.00649539940059185, + -0.006039153318852186, + -6.189182749949396e-05, + 0.007698690984398127, + -0.037609394639730453, + 0.010974298231303692, + 0.012206247076392174, + -0.002449566964060068, + 0.01682870276272297, + -0.003923733253031969, + -0.0037260225508362055, + -0.005298268049955368, + 0.014323333278298378, + -0.01980488933622837, + 0.03132821246981621, + -0.0031777098774909973, + 0.001252483227290213, + 0.004774268716573715, + 0.017041627317667007, + -0.006572175770998001, + -0.007430725730955601, + 0.005779409781098366, + 0.0010309512726962566, + 0.012415336444973946, + -0.010550487786531448, + -0.0008960969280451536, + 0.04655403271317482, + 0.005243248306214809, + -0.014610977843403816, + -0.005516708362847567, + -0.006929396651685238, + 0.006232811603695154, + 0.03922618180513382, + -0.011343436315655708, + -0.017999283969402313, + -0.003469794522970915, + -0.00517341960221529, + -0.013009542599320412, + -0.01835719309747219, + 0.0007387888617813587, + 0.008651833981275558, + -0.01538624707609415, + 0.0004184153804089874, + -0.003843854647129774, + -0.0015774392522871494, + 0.013532130047678947, + -0.0010783744510263205, + 0.008126823231577873, + -0.008508246392011642, + 0.002985980361700058, + 0.02623569592833519, + 0.003918954636901617, + 0.006309908349066973, + 0.0028010327368974686, + 0.014834646135568619, + 0.005790164228528738, + -0.0062273177318274975, + -0.014840617775917053, + -0.007251518778502941, + 0.008380159735679626, + -0.005063353106379509, + 0.011395764537155628, + 0.0039088670164346695, + -0.01344381831586361, + 0.0002706649247556925, + 0.010724203661084175, + -0.00662133889272809, + 0.008094647899270058, + -0.015235495753586292, + 0.016031913459300995, + 0.0005834841867908835, + 0.0016602210234850645, + -0.0016375365667045116, + 0.0004135194467380643, + 0.002308460883796215, + 0.0016865774523466825, + -0.0007569523295387626, + 0.016776783391833305, + 0.03320331126451492, + -0.002731040585786104, + 0.0016035062726587057, + -0.009883967228233814, + 0.0012713454198092222, + 0.018925493583083153, + -0.011942928656935692, + -0.028707824647426605, + -0.008274100720882416, + -0.011035856790840626, + -0.008357144892215729, + -0.002826012670993805, + -0.06881920993328094, + -0.0026817070320248604, + -0.026137545704841614, + 0.005030698608607054, + -0.000593930424656719, + 0.0010770701337605715, + -0.022680364549160004, + 0.013019840233027935, + -0.011141102761030197, + 0.0069023496471345425, + -0.010401715524494648, + -0.017223617061972618, + -0.0016754289390519261, + -0.013637976720929146, + -0.023765288293361664, + 0.01937619037926197, + 0.012778297066688538, + -0.00818764790892601, + -0.009454714134335518, + -0.0015345688443630934, + 0.029407646507024765, + -0.005379702430218458, + 0.0028611335437744856, + 0.008764365687966347, + -0.0022067460231482983, + 0.04293984919786453, + -0.003303940175101161, + -0.0036267517134547234, + 0.004951725713908672, + -0.0016866225050762296, + 0.01401526015251875, + 0.0036266124807298183, + -0.003996358253061771, + 0.006494144443422556, + 0.006857672706246376, + 0.007407443597912788, + -0.008844409137964249, + -0.0225200392305851, + -0.000843023881316185, + -0.004462873097509146, + 0.01471176277846098, + 0.0008252314291894436, + -0.002203243086114526, + 0.00017466802091803402, + 0.028640851378440857, + -0.010749652981758118, + -0.004598503932356834, + -0.01306148525327444, + 0.020686574280261993, + -0.004779801703989506, + 0.00929802842438221, + -0.012273062020540237, + -0.01826157420873642, + 0.003847370622679591, + -0.021541818976402283, + -0.0008367954287678003, + -0.024913568049669266, + -0.008201416581869125, + -0.006162658799439669, + -0.03940754383802414, + -0.018385183066129684, + 0.009704988449811935, + 0.01064993068575859, + -0.016205132007598877, + -0.0001704398891888559, + 0.002731659449636936, + -0.011805806308984756, + -0.0027969125658273697, + 0.0038294345140457153, + -0.014570720493793488, + -0.004732975736260414, + 0.003770292503759265, + 0.009702056646347046, + -0.008282698690891266, + 0.0031250864267349243, + -0.02357197180390358, + -0.009767921641469002, + 0.005864526145160198, + -0.01101693045347929, + 0.007721268571913242, + 0.018509970977902412, + -0.0056508504785597324, + 0.0035887472331523895, + -0.023407308384776115, + 0.006273147650063038, + 0.0017511581536382437, + -0.007030950393527746, + -0.010034591890871525, + 0.00044906255789101124, + 0.0010437227319926023, + -0.007248615380376577, + -0.005645742639899254, + 0.014214612543582916, + 0.002893852535635233, + 0.004749954212456942, + 0.01386667788028717, + -0.0015789304161444306, + -0.0014902995899319649, + -0.030550777912139893, + 0.005352330859750509, + 0.010826637037098408, + -0.0013082923833280802, + 0.0052697136998176575, + -0.01577143929898739, + -0.00023626178153790534, + -0.0061386204324662685, + 7.937185000628233e-05, + 0.0074877506121993065, + -0.002958057913929224, + 0.010671704076230526, + -0.003212894778698683, + 0.00945296697318554, + 0.01975684054195881, + 0.0040571801364421844, + -0.01573958434164524, + 0.0187594722956419, + -0.019177118316292763, + 0.007516805548220873, + -0.006899998523294926, + -0.008723627775907516, + -0.007221756502985954, + -0.013463116250932217, + 0.012329732067883015, + 0.02379990555346012, + 0.0066830432042479515, + -0.01890767365694046, + -0.004937467165291309, + 0.010958431288599968, + -0.003841508412733674, + -0.010277766734361649, + 0.04258614033460617, + -0.023333346471190453, + -0.0038250668440014124, + -0.004224869422614574, + -0.008022768422961235, + 0.0026011241134256124, + 0.009382934309542179, + 0.012395878322422504, + 0.0003608427650760859, + -0.0003983408969361335, + -0.014096013270318508, + 0.014377825893461704, + -0.05010078474879265, + 0.005372192710638046, + 0.002090282505378127, + 0.007097455207258463, + 0.0152174923568964, + 0.02240457944571972, + 0.014668021351099014, + 0.0023412653245031834, + 0.019818268716335297, + 0.003997910302132368, + -0.005017233081161976, + -0.011576488614082336, + -0.00037200641236267984, + -0.014109830372035503, + -0.013190289959311485, + 0.020943230018019676, + -0.008464197628200054, + -0.007011245004832745, + -0.03554268926382065, + -0.011728134006261826, + 0.023762736469507217, + -0.01208469644188881, + 0.005014485213905573, + 0.0037492229603230953, + -0.00189745775423944, + -0.011204901151359081, + -0.018094835802912712, + 0.006978597026318312, + -0.0015833803918212652, + -0.007840491831302643, + -0.012598137371242046, + -0.0023435463663190603, + -0.0051875547505915165, + -0.03673451021313667, + 0.017726080492138863, + -0.0057186828926205635, + -0.012833322398364544, + 0.007779263891279697, + 0.000867336755618453, + 0.0004611280164681375, + 0.0030230889096856117, + -0.01825069636106491, + -0.027979401871562004, + -0.0015599034959450364, + 0.00020622789452318102, + -0.00034989547566510737, + 0.007720537018030882, + 0.005157319828867912, + 0.0029681988526135683, + 0.0015803721034899354, + -0.003941318951547146, + -0.0026174967642873526, + 0.0029062340036034584, + 0.006017028354108334, + 0.0026363623328506947, + 0.007003063336014748, + -0.0008522652788087726, + 0.0013798802392557263, + -0.027905385941267014, + 0.012390903197228909, + -0.0005208543152548373, + -0.0004348670190665871, + 0.003423915710300207, + -0.006883727386593819, + -0.006691585294902325, + 0.002787201199680567, + 0.009845143184065819, + 0.002480913884937763, + -0.0005560741992667317, + 0.007111800834536552, + -0.008656607940793037, + 0.012715269811451435, + -0.004840061068534851, + 0.006242081988602877, + -0.0019433248089626431, + 0.004377959296107292, + 0.0003695780469570309, + 0.004545609001070261, + 0.002152041532099247, + -0.001564624486491084, + 0.005916419439017773, + 0.010461964644491673, + 0.0041190944612026215, + -0.0042860060930252075, + -0.0089021697640419, + 0.048597823828458786, + 0.00290908245369792, + -0.0011774071026593447, + 0.015764158219099045, + -0.00742699671536684, + 0.0020504705607891083, + -0.014562409371137619, + -0.014538426883518696, + -0.009753461927175522, + 0.01003477443009615, + -0.010462414473295212, + -0.0007126066484488547, + 9.599253826308995e-05, + -0.012556896544992924, + 0.00236444640904665, + -0.0023098124656826258, + 0.010857360437512398, + 0.02198641560971737, + -0.003700551576912403, + 0.005287523381412029, + -0.002059916965663433, + -0.002221150090917945, + 0.00543225696310401, + 0.0008142463630065322, + -0.0076355235651135445, + 0.03232469782233238, + -0.008336744271218777, + -0.00431152805685997, + 0.006967606488615274, + -0.0027057062834501266, + -0.005083663854748011, + -0.004301149398088455, + 0.014342029578983784, + -0.0039871083572506905, + -0.016665121540427208, + -0.016227073967456818, + -0.005191376432776451, + -0.018881959840655327, + -0.03066568449139595, + 0.014845333993434906, + -0.013629721477627754, + 0.012701774947345257, + 0.026630420237779617, + 0.01043572835624218, + 0.008270373567938805, + 0.002883884822949767, + -0.003657091408967972, + 0.002525361254811287, + -0.002176424954086542, + 0.0016337037086486816, + -0.007118420675396919, + 0.010156451724469662, + -0.010678690858185291, + -0.001522434875369072, + 0.005574321374297142, + 0.018290840089321136, + -0.0021470733918249607, + -0.027036838233470917, + 0.00022703406284563243, + -0.010230522602796555, + -0.020266307517886162, + 0.008725488558411598, + 0.011506094597280025, + 0.0008439614903181791, + -0.019440650939941406, + 0.0021814738865941763, + -0.003975952975451946, + -0.003025009762495756, + -0.02496718056499958, + 0.0013802130706608295, + -0.03403645008802414, + -0.008664729073643684, + 0.014864923432469368, + -0.014248690567910671, + -0.012225518934428692, + -0.0058189393021166325, + 0.0028227390721440315, + -0.02995148114860058, + 0.0011696938890963793, + 0.01585794799029827, + 0.018361927941441536, + -0.011520354077219963, + 0.012073742225766182, + 0.007169872522354126, + -0.010574552230536938, + -0.004508212674409151, + -0.0036562185268849134, + -0.023547761142253876, + 0.008269762620329857, + 0.008785337209701538, + 0.003731118980795145, + 0.007504124194383621, + 0.013968807645142078, + 0.0280152577906847, + -0.0071039036847651005, + -0.013782261870801449, + 0.0010639295214787126, + 0.0071867345832288265, + 0.02073359116911888, + -0.016939381137490273, + 0.013271914795041084, + 0.014541580341756344, + -0.008920673280954361, + -0.003211400005966425, + 0.010570663027465343, + -0.001500969287008047, + -0.009259498678147793, + -6.0845759435324e-05, + -0.0007535315817221999, + 0.0071226488798856735, + 0.007184877526015043, + -0.004035844001919031, + -0.0009710490121506155, + -0.009577610529959202, + -0.006151150446385145, + 0.004510140512138605, + 0.00568736856803298, + 0.03794505447149277, + 0.025751816108822823, + -0.01315137930214405, + 0.01211827527731657, + 0.008873632177710533, + 0.0100230872631073, + -0.0011623760219663382, + 0.001776656019501388, + 0.002800289774313569, + -0.011582881212234497, + -0.009497326798737049, + -0.008129600435495377, + -0.00043464431655593216, + -0.010129883885383606, + -0.010572251863777637, + 0.004093135241419077, + -0.01039839070290327, + 0.0178541149944067, + -0.03088933229446411, + 0.004170153755694628, + 0.010271362960338593, + -0.0031263467390090227, + -0.011230426840484142, + -0.0013697079848498106, + 0.012905484065413475, + -0.01776697486639023, + 0.020695459097623825, + 0.008011781610548496, + -0.006351467687636614, + 0.004358360078185797, + 0.008991246111690998, + 0.00013310357462614775, + -0.006293696817010641, + 0.017465954646468163, + 0.034720681607723236, + -0.0010210552718490362, + -0.00023773149587213993, + 0.002055670600384474, + 0.006855746731162071, + 0.003761137370020151, + 0.016333047300577164, + 0.0001713815436232835, + 0.009787162765860558, + 0.00745043670758605, + 0.023624585941433907, + -0.009937000460922718, + 0.01812877506017685, + -0.0232937503606081, + 0.0036883477587252855, + -0.013600523583590984, + 0.0033770003356039524, + -0.006960799917578697, + -0.009688841179013252, + 0.010261092334985733, + 0.012325981631875038, + -0.003024609060958028, + 0.008258278481662273, + -0.014134269207715988, + -0.018546387553215027, + 0.014821648597717285, + 0.023241911083459854, + 0.009646555408835411, + -0.003075413638725877, + 0.012779361568391323, + -0.006102806888520718, + 0.011147008277475834, + -0.017385665327310562, + 0.0033291997388005257, + -0.008313830010592937, + 0.013548613525927067, + 0.0034515236038714647, + -0.005770779214799404, + 0.0005707288510166109, + -0.012692835181951523, + 0.011139203794300556, + -0.02088434249162674, + -0.009407800622284412, + 9.804384899325669e-05, + 0.0030881997663527727, + -0.01547426450997591, + 0.013975461944937706, + 0.002721362514421344, + 0.012145762331783772, + 0.009721418842673302, + 0.005475987680256367, + -0.007843038067221642, + -0.015433849766850471, + 0.0048813545145094395, + -0.02129485085606575, + -0.01925443671643734, + -0.030468406155705452, + 0.014113308861851692, + 0.006837745197117329, + 0.03885858133435249, + 0.005648639984428883, + 0.0024627498351037502, + 0.011758552864193916, + -0.009833130054175854, + 0.0017432018648833036, + 0.01846114918589592, + -0.012404567562043667, + 0.00021245342213660479, + -0.0002634562843013555, + 0.003121576737612486, + 0.0038951821625232697, + -0.0016869624378159642, + 0.020127099007368088, + -0.005720446817576885, + 0.013125970959663391, + -0.033879730850458145, + -0.012077653780579567, + 0.023736819624900818, + -0.02487044222652912, + 0.008193549700081348, + 0.0008884703274816275, + -0.0029295175336301327, + -0.015958312898874283, + 0.0025256644003093243, + 0.018146047368645668, + -0.04624843969941139, + -0.004143258091062307, + 0.0020486514549702406, + -0.0028297104872763157, + 0.00882602296769619, + -0.002218598732724786, + -0.009430382400751114, + -0.012602884322404861, + 0.02664593607187271, + -0.005803109612315893, + -0.007938163354992867, + -0.01140069030225277, + -0.012010089121758938, + -0.004948675166815519, + 0.014466796070337296, + 0.017206493765115738, + 0.011586849577724934, + -0.012087633833289146, + -0.02421744540333748, + -0.008654465898871422, + -0.013462603092193604, + 0.011486157774925232, + -0.0013223399873822927, + 0.0015426806639879942, + -0.0049476586282253265, + -0.0057536703534424305, + -0.009076952002942562, + 0.009942924603819847, + -0.003484015353024006, + -0.016216998919844627, + -0.010168606415390968, + 0.007911857217550278, + -0.005912289954721928, + 0.009893395937979221, + 0.014212309382855892, + 0.0016373121179640293, + -0.006818356923758984, + 0.010053256526589394, + 0.0035264971666038036, + -0.004898864775896072, + -0.0011108805192634463, + -0.008389515802264214, + 0.005319698713719845, + -0.00219100178219378, + -0.0041439952328801155, + 0.011459628120064735, + -0.007979115471243858, + -0.002897492842748761, + -0.014921567402780056, + 0.00038924982072785497, + -0.00263571017421782, + 0.00719405384734273, + 0.004283427726477385, + 0.006014323327690363, + 0.0031511427368968725, + 0.009706243872642517, + 0.008727839216589928, + 0.0023325015790760517, + -0.001276420778594911, + 0.03082381747663021, + -0.0004138750955462456, + -0.013067152351140976, + -0.0004004641086794436, + 0.018129564821720123, + -0.014504744671285152, + -0.02010558545589447, + 0.0038417489267885685, + -0.0007281916332431138, + -0.015725642442703247, + 0.0012887875782325864, + -0.015040463767945766, + -0.015474680811166763, + 0.0008843917748890817, + -0.012628566473722458, + 0.01777050271630287, + -0.0001335765846306458, + 0.011746377684175968, + 0.021088559180498123, + 0.01589093916118145, + -0.008247735910117626, + -0.008396859280765057, + -0.0022468457464128733, + 0.00791319739073515, + -0.00011504302528919652, + 0.012142769992351532, + -0.0067022573202848434, + -0.0004793510015588254, + -0.027304023504257202, + 0.009914949536323547, + 0.02106110379099846, + 0.005173597950488329, + -0.005501722916960716, + 0.026575088500976562, + -0.010570080950856209, + 0.004778075497597456, + 0.003373175160959363, + -0.01087422575801611, + 0.002430189633741975, + 0.0009197587496601045, + 0.018950020894408226, + -0.008251236751675606, + -0.0016751923831179738, + 0.014339261688292027, + -0.0014146987814456224, + 0.003206981811672449, + 0.015994086861610413, + 0.016089048236608505, + 0.0155401062220335, + 0.005974882282316685, + 0.019542191177606583, + 0.00044368303497321904, + -0.002778073074296117, + 0.010100554674863815, + -0.0036608208902180195, + 0.008567585609853268, + 0.02237676829099655, + 0.0010281450813636184, + 0.002232773695141077, + -0.010502674616873264, + 0.00045618409058079123, + -0.023598341271281242, + -0.0042241825722157955, + 0.01528596505522728, + -0.031455542892217636, + 6.835544627392665e-05, + -0.0090279970318079, + 0.010999144054949284, + -0.0085138576105237, + -0.0007090718136169016, + 0.002918334910646081, + -0.004791057202965021, + 0.0006586794042959809, + 0.002621252089738846, + -0.006676568184047937, + 0.0021288967691361904, + 0.0019967739935964346, + -0.005977231543511152, + 0.002603803528472781, + 0.0021240985952317715, + -0.01459683571010828, + -0.005403164774179459, + -0.0025057538878172636, + -0.007731019984930754, + -0.015363452956080437, + 5.332316140993498e-05, + -0.011033520102500916, + 0.0037838572170585394, + 0.0031315742526203394, + 0.02271685190498829, + 0.0046455468982458115, + 0.011428712867200375, + -0.010326961055397987, + -0.0038590040057897568, + -0.0050865355879068375, + 0.007492550183087587, + -0.013271425850689411, + 0.009907145984470844, + 0.014608181081712246, + 0.0029554483480751514, + 0.006124615669250488, + -0.014409296214580536, + -0.008839210495352745, + -0.025464216247200966, + 0.007426440250128508, + -0.011167078278958797, + 0.0048673199489712715, + 0.006418885663151741, + -0.0033382270485162735, + -0.0026318212039768696, + -0.00940571166574955, + -0.008107015863060951, + -0.004968383815139532, + 0.009102053940296173, + -0.004967597313225269, + 0.01235323678702116, + -0.00171157147269696, + 0.005286942236125469, + -0.007511022035032511, + 0.008661163039505482, + -0.012793664820492268, + -0.00738841388374567, + -0.020188305526971817, + 0.014457764104008675, + -0.004760548938065767, + 0.013418591581285, + 0.0027579395100474358, + 0.008469296619296074, + -0.009790885262191296, + 0.0015881704166531563, + -0.007045703940093517, + -0.006830349564552307, + -0.007442588917911053, + -0.006158356089144945, + 0.014467993751168251, + 0.005382925737649202, + 0.006010386161506176, + -0.012275844812393188, + -0.0007569980225525796, + -0.002465961268171668, + 0.01093147974461317, + -0.010844029486179352, + -0.005856627132743597, + -0.0031308026518672705, + 0.0077718161046504974, + -0.008686133660376072, + 0.0024292385205626488, + 0.03169383853673935, + 0.0013656722148880363, + 0.00847315788269043, + 0.000791888334788382, + 0.001619809539988637, + -0.013722469098865986, + -0.019492989405989647, + 0.012933004647493362, + -0.004965861327946186, + 0.023649008944630623, + 0.003104296512901783, + -0.009156066924333572, + -0.005765043664723635, + 0.0007042498327791691, + 0.007479163818061352, + 0.01659592241048813, + 0.01258805487304926, + 0.011905016377568245, + 0.019975753501057625, + -0.0005771328578703105, + 0.012045323848724365, + 0.015743354335427284, + -0.00020508069428615272, + -0.007819273509085178, + -0.0030908139888197184, + -0.000576792866922915, + 0.010959930717945099, + 0.005449959542602301, + 0.005090774968266487, + -0.0006828793557360768, + -0.0017132670618593693, + -0.0028748931363224983, + 0.0008907034643925726, + 0.012634913437068462, + -0.013637135736644268, + -0.008216733112931252, + -0.010417845100164413, + 0.016661155968904495, + -0.007233615964651108, + 0.016756799072027206, + -0.031133335083723068, + 0.011812600307166576, + -0.008413216099143028, + -0.005740245804190636, + 0.00978480838239193, + 0.00177743099629879, + -0.004456781782209873, + -0.002683111699298024, + -0.015232089906930923, + 0.01303790882229805, + -0.0033595107961446047, + -0.0039990488439798355, + 0.013065285049378872, + -0.005323980003595352, + -0.0007441384950652719, + 0.014129162766039371, + 0.0036559891887009144, + -0.005385632161051035, + 0.002773504937067628, + -0.013712451793253422, + -0.027732649818062782, + -0.03787126764655113, + 0.00835232064127922, + -0.007389536127448082, + 0.017761623486876488, + 0.0002296955353813246, + 0.01484097633510828, + 0.004533682484179735, + -0.001019626040942967, + 0.0029935725033283234, + -0.011396592482924461, + -0.01244534645229578, + 0.0003265608102083206, + 0.00964108482003212, + -0.018413836136460304, + 0.006174793466925621, + 0.005734443664550781, + -0.00035627803299576044, + -0.02213800512254238, + 0.036280032247304916, + 0.006922326050698757, + 0.009887846186757088, + 0.0013461119960993528, + 0.0075163450092077255, + -0.010417936369776726, + 0.006887771654874086, + -0.005173271056264639, + -0.004342224914580584, + 0.010637020692229271, + -0.0245320126414299, + 0.010161265730857849, + 0.008115947246551514, + 0.01789155974984169, + 0.01459849625825882, + 0.013843506574630737, + -0.0004247499455232173, + 0.007298199459910393, + 0.019031314179301262, + 0.017865819856524467, + -0.00144407176412642, + -0.004014174919575453, + 0.0036100195720791817, + 0.006941529922187328, + -0.008004529401659966, + -0.0013828491792082787, + -0.0022730056662112474, + -0.009113910607993603, + 0.009199924767017365, + 0.004977500066161156, + -0.0008504565339535475, + -0.004935143515467644, + 0.00500596733763814, + 0.031110025942325592, + 0.008719215169548988, + -0.0012224201345816255, + 0.0012390563497319818, + 0.0246390700340271, + -0.042204488068819046, + 0.01056948583573103, + -0.0009295943309552968, + 0.011342482641339302, + 0.006158413365483284, + 0.012250246480107307, + 0.01875537633895874, + 0.01321282796561718, + 0.018279850482940674, + 0.00461107213050127, + 0.033403050154447556, + 0.0004374709096737206, + -0.018821395933628082, + -0.005514934659004211, + -0.0021590804681181908, + -0.009634722024202347, + 0.003710502292960882, + -0.009651612490415573, + -0.00554442685097456, + -0.003201512387022376, + 0.020808067172765732, + 0.013289675116539001, + 0.011076843366026878, + -0.0355151891708374, + -0.006388929672539234, + 0.010010463185608387, + 0.005303137935698032, + -0.004402791615575552, + 0.008290043100714684, + -0.026771405711770058, + -0.013604405336081982, + 0.006531294900923967, + 0.0170646570622921, + -0.003883455414324999, + 0.006380476988852024, + 0.005560262128710747, + 0.0051342397928237915, + -0.008225517347455025, + 0.013817278668284416, + -0.005383767187595367, + 0.011194825172424316, + 0.01765306107699871, + 0.005429217126220465, + -0.04006923362612724, + 0.00019251389312557876, + 0.011122496798634529, + 0.00017773098079487681, + 0.008311082608997822, + 0.014124044217169285, + 0.004211727995425463, + 0.008500795811414719, + -0.009475575760006905, + -0.022363170981407166, + 0.002977658761665225, + 0.006047646049410105, + -0.013107159174978733, + -0.0065325601026415825, + -0.016145028173923492, + 0.016510585322976112, + -0.04656141996383667, + 0.0055770231410861015, + -0.00919910054653883, + -0.007211203686892986, + -0.012298951856791973, + -0.023861195892095566, + 0.05368819087743759, + -0.00046699316590093076, + -0.0027273113373667, + -0.008259203284978867, + 0.012307712808251381, + 0.042193539440631866, + 0.014854775741696358, + 0.0015723658725619316, + 0.006030558608472347, + 0.014479318633675575, + -0.006010556593537331, + 0.007828823290765285, + -0.0010831911349669099, + 0.010530325584113598, + -0.00209598196670413, + 0.0047872187569737434, + -0.00471362192183733, + 0.01437458023428917, + -0.001637532957829535, + -0.004660863429307938, + -0.006582734640687704, + 7.11260800017044e-05, + 0.019756559282541275, + 0.0036798559594899416, + 0.000145884754601866, + 0.0036999410949647427, + 0.009133505634963512, + 0.01487777754664421, + 0.010606457479298115, + -0.00646215071901679, + -0.0018796146614477038, + -0.0023041553795337677, + 0.012498700059950352, + 0.0027634501457214355, + -0.003969782032072544, + 0.010701837949454784, + 0.0074175079353153706, + -0.008889986202120781, + 0.003336649853736162, + 0.015421926975250244, + 0.00771112646907568, + 0.009055225178599358, + 0.0021457208786159754, + -0.005668866913765669, + 0.0017537081148475409, + 0.005837250035256147, + -0.019558150321245193, + 0.004761511459946632, + -0.007025666534900665, + -0.0033419113606214523, + -0.0038980701938271523, + 0.016109799966216087, + 0.011416854336857796, + -0.00405627116560936, + -0.01523798517882824, + -0.0040057641454041, + -0.005366581492125988, + 0.005585897248238325, + -0.0016173134790733457, + -0.0031433901749551296, + 0.006692851427942514, + 0.0009332920890301466, + -0.018639830872416496, + 0.018904322758316994, + 0.02235671691596508, + 0.019372889772057533, + 0.002562542213127017, + 0.007778062019497156, + 0.0090788584202528, + 0.0031012743711471558, + 0.0027422690764069557, + -0.012763035483658314, + -0.004219364374876022, + 0.014026321470737457, + -0.01085622888058424, + 0.005849315784871578, + 0.00507343327626586, + -0.00021750113228335977, + -0.006628153380006552, + -0.004453497938811779, + -0.0029602686408907175, + -0.0030919942073524, + -3.39334765158128e-05, + -0.010948867537081242, + 0.0026573410723358393, + 0.000426786340540275, + 0.024568039923906326, + -0.004783795215189457, + 0.004962720908224583, + 0.01510708499699831, + -0.006923602428287268, + -0.0029023545794188976, + 0.0218571275472641, + -0.018078148365020752, + -0.0021839155815541744, + 0.010348241776227951, + 0.00869474746286869, + -0.02395002916455269, + -0.005426069721579552, + 0.0009091253741644323, + 0.0072087133303284645, + 0.01225342694669962, + 0.018802931532263756, + 0.002690900582820177, + -0.0004319935105741024, + -0.0011998915579169989, + -0.001087126205675304, + 0.020647183060646057, + -0.00017058367666322738, + -0.009083866141736507, + 0.005986855365335941, + 0.013676290400326252, + -0.0016143524553626776, + -0.00042687926907092333, + -0.003807902103289962, + -0.0014132149517536163, + 0.010769129730761051, + -0.009909857995808125, + -0.006445510778576136, + -0.027559705078601837, + -0.010246138088405132, + 0.010776486247777939, + -0.015779972076416016, + 0.0019124752143397927, + -0.00843009538948536, + 0.005311034619808197, + -0.006555953063070774, + -0.015062140300869942, + 0.014076855033636093, + 0.006297260522842407, + 0.00139439117629081, + 0.016602128744125366, + -0.010723855346441269, + 0.0003088233934249729, + 0.006925743073225021, + 0.0017893561162054539, + 0.0010176228825002909, + 0.003955316264182329, + 0.0063776373863220215, + 0.004252004437148571, + 0.011430345475673676, + 0.016621626913547516, + -0.0026192793156951666, + 0.0009935474954545498, + -0.015393609181046486, + -0.01117754727602005, + 0.08124402165412903, + -0.005012823268771172, + -0.00679137883707881, + 0.01580815017223358, + -0.001983331050723791, + 0.04571450874209404, + -0.01794450730085373, + 7.333275425480679e-05, + 0.015729038044810295, + -0.008249283768236637, + 0.0030774050392210484, + 0.0078020174987614155, + -0.008455224335193634, + 0.018779104575514793, + -0.02123774215579033, + 0.0020929723978042603, + -0.019414149224758148, + 0.053487151861190796, + -0.013795871287584305, + -0.007279970217496157, + 0.0002354263560846448, + -0.01951795071363449, + -0.007230945862829685, + 0.009268575347959995, + -0.005457538180053234, + 0.015405463986098766, + 0.023228434845805168, + -0.03395450487732887, + 0.002303890883922577, + 0.0019860228057950735, + 0.008066241629421711, + 0.01059582456946373, + -0.0009968928061425686, + 0.025473566725850105, + 0.010860379785299301, + 0.00022055114095564932, + -0.013397558592259884, + 4.819244350073859e-05, + 0.022446900606155396, + -0.0018892267253249884, + 0.004592331126332283, + -0.010209038853645325, + -0.0027177217416465282, + 0.00010455876326886937, + -0.0009454659884795547, + -0.020564954727888107, + -0.011963062919676304, + 0.014818606898188591, + -0.011531046591699123, + 0.010122598148882389, + -0.01278042234480381, + 0.006700543686747551, + -0.008697655983269215, + -0.0017938853707164526, + 0.006014600396156311, + -0.003262963378801942, + -0.0029138943646103144, + -0.001459628576412797, + 0.0020580929704010487, + -0.01129673421382904, + -0.013603826984763145, + 0.004418862517923117, + -0.002272967714816332, + -0.013713076710700989, + -0.009615788236260414, + -0.007454128935933113, + -0.0006064733024686575, + 0.00795968621969223, + -0.009668579325079918, + 0.006430217996239662, + -0.031528834253549576, + -0.0016912524588406086, + -0.0014177821576595306, + -0.024107489734888077, + 0.04402128979563713, + -0.011175005696713924, + -0.0073226094245910645, + -0.0017007032874971628, + -0.006691938731819391, + -0.014202503487467766, + 0.015054012648761272, + -0.013914098963141441, + 6.67593558318913e-05, + -0.0004539986839517951, + -0.0022805603221058846, + 0.0182444266974926, + 0.003585116472095251, + -0.0001422164641553536, + -0.011190320365130901, + -0.031222613528370857, + -0.006163864396512508, + 0.0008212662069126964, + -0.011130905710160732, + 0.011869125068187714, + 0.01082063838839531, + 0.006684457883238792, + -0.01599453203380108, + 0.02265329286456108, + 0.0025900546461343765, + -0.0002479849208611995, + 0.003887561149895191, + -0.001889518229290843, + -0.005971373058855534, + 0.014018293470144272, + 0.011654541827738285, + -0.009397044777870178, + 0.011669397354125977, + -0.0028567330446094275, + -0.0018898695707321167, + -0.0023081698454916477, + -0.015790848061442375, + -0.03312520310282707, + 0.02336185611784458, + 0.027063697576522827, + -0.00799457635730505, + -0.01331815030425787, + -0.007637414149940014, + 0.004724729340523481, + 0.0037457821890711784, + 0.018496476113796234, + 0.016974054276943207, + 0.0051897186785936356, + 0.0142852533608675, + -0.0009108562371693552, + 0.004410566762089729, + 0.00948504637926817, + 0.02010914869606495, + -0.018893297761678696, + 0.006440309341996908, + -0.010401954874396324, + 0.009974734857678413, + -0.0071517894975841045, + 0.009359154850244522, + 0.010480041615664959, + -0.008504421450197697, + -0.01706455834209919, + -0.009639613330364227, + -0.008815715089440346, + 0.013399242423474789, + -0.014914718456566334, + -0.0015107463113963604, + -0.0009898357093334198, + -0.004401210695505142, + -0.02203207090497017, + -0.0023955246433615685, + 0.006598133128136396, + -0.02017234079539776, + -0.030182864516973495, + 0.0003318005765322596, + -0.006965063512325287, + 0.012503543868660927, + -0.007748712785542011, + -0.009525090456008911, + 0.009525196626782417, + -0.00048022816190496087, + 0.0015453482046723366, + -0.008259749971330166, + -0.00016992904420476407, + 0.021093428134918213, + -0.0046725585125386715, + -0.0028504161164164543, + -5.5552525736857206e-05, + -0.0032930681481957436, + -0.0002869446179829538, + -0.007773506920784712, + -0.005084837321192026, + 0.007145474199205637, + 0.004901260603219271, + 0.011592481285333633, + 0.009508808143436909, + -0.0012430065544322133, + -0.004486449528485537, + 0.0022781917359679937, + 0.004730351734906435, + 0.01563415303826332, + -0.008536860346794128, + 0.015229820273816586, + -0.0002604372857604176, + 0.02783799171447754, + 0.014507990330457687, + 0.007261376362293959, + 0.0014615377876907587, + 0.009987302124500275, + 0.012994751334190369, + -0.014379586093127728, + -0.01622712053358555, + -0.011762460693717003, + 0.005831305868923664, + -0.0009124260395765305, + -0.01119227148592472, + -0.0052556563168764114, + -0.0014138257829472423, + -0.0019624694250524044, + 0.0008960071136243641, + -0.011166389100253582, + -0.006100625731050968, + -0.005182922817766666, + -0.0008327622781507671, + -0.004188503138720989, + 0.002894417615607381, + -0.007523374632000923, + 0.008684650994837284, + 0.0005714790895581245, + -0.012484202161431313, + 0.0029887405689805746, + 0.011309219524264336, + 0.002151403808966279, + 0.0017486127326264977, + 0.027185361832380295, + 0.003177159233018756, + 0.01099690143018961, + -0.016672328114509583, + -0.01891857013106346, + -0.011365467682480812, + -0.016206275671720505, + -0.006543883588165045, + -0.009634421207010746, + 0.013370498083531857, + 0.03850129619240761, + 0.039885956794023514, + -0.009486755356192589, + 0.01716616190969944, + -0.0015362780541181564, + 0.03382537513971329, + 0.003554306458681822, + -0.0011702352203428745, + 0.011109265498816967, + -0.007567265070974827, + 0.028578203171491623, + 0.012376001104712486, + 0.010436910204589367, + 0.01124638132750988, + 0.0016227869782596827, + 0.008207926526665688, + -0.013891450129449368, + -0.024792077019810677, + 0.0008141741272993386, + 0.005262667313218117, + -0.01675868034362793, + -0.006752858869731426, + -0.007103662937879562, + -0.012277260422706604, + -0.013241533190011978, + -0.008604134432971478, + 0.014484097249805927, + -0.002719832118600607, + 0.019326556473970413, + 0.0005164073081687093, + -0.0018418834079056978, + -0.018310198560357094, + 0.005091048777103424, + -5.6296255934285e-05, + -0.002836760366335511, + 0.0035448234993964434, + 0.01018758025020361, + -0.007235854398459196, + 0.01296462956815958, + 0.002805116819217801, + -0.024547358974814415, + -0.0085005396977067, + -0.015594638884067535, + 0.0109400674700737, + 0.019552022218704224, + -0.011901197023689747, + -0.006132263690233231, + 0.01067740935832262, + 0.006050108466297388, + -0.005583134479820728, + 0.0031229928135871887, + -0.003939815331250429, + -0.004313288256525993, + 0.013470171019434929, + -0.0010188911110162735, + 9.571114060236141e-05, + -0.0008636938291601837, + -0.017322203144431114, + 0.004389862529933453, + 0.005701310932636261, + -0.013381852768361568, + 0.000843144312966615, + 0.03245583921670914, + 0.001748640788719058, + -0.00434727082028985, + 0.009308653883635998, + 0.006505245342850685, + -0.003579846117645502, + 0.0035798996686935425, + 0.001699741231277585, + 0.0019481334602460265, + 0.03558040410280228, + 0.019585013389587402, + -0.061961956322193146, + 0.391346275806427, + 0.009805074892938137, + 0.005311299115419388, + -0.012429353781044483, + -0.012331315316259861, + 0.004620926920324564, + -2.000593303819187e-05, + 0.019048277288675308, + -0.010522693395614624, + 0.01059347577393055, + -0.0026006638072431087, + 0.022192856296896935, + 0.0019414074486121535, + -0.006453630514442921, + -0.006207812577486038, + 0.009539391845464706, + -0.011280296370387077, + -0.026041816920042038, + -0.0005640890449285507, + 0.008196543902158737, + 0.01222767774015665, + 0.0018536972347646952, + 0.03542224317789078, + -0.0021762531250715256, + 0.0013040732592344284, + -0.009074646979570389, + -0.005393420811742544, + 0.018802989274263382, + -0.005423860624432564, + -0.008448581211268902, + -0.005111283622682095, + -0.01761278323829174, + 0.007411164231598377, + -0.004014314152300358, + 0.00807331595569849, + 0.00016977399354800582, + -0.0035860117059201, + -0.000997471623122692, + -0.013453520834445953, + 0.015577060170471668, + 0.009949559345841408, + 0.013155519030988216, + 0.004056420177221298, + -0.00041857967153191566, + -0.0037538488395512104, + 0.002666264306753874, + -0.002408260013908148, + -0.0015509389340877533, + 0.005868555977940559, + -0.006004128139466047, + -0.03257961571216583, + 0.0025285209994763136, + 0.007446326781064272, + -0.018696360290050507, + -0.007084167096763849, + -0.009736963547766209, + -0.008853914216160774, + 0.004607365466654301, + 0.009098488837480545, + -0.02899875119328499, + -0.004041003994643688, + -0.008501378819346428, + 0.0027824847493320704, + 0.01952304318547249, + 0.0008873630431480706, + -0.0031902557238936424, + 0.010980194434523582, + -0.05463327839970589, + 0.0015933673130348325, + 0.008912159129977226, + -0.0015384673606604338, + -0.00016493562725372612, + -0.006026000715792179, + -0.006024287547916174, + -0.004994422663003206, + -0.022744257003068924, + 0.007481846958398819, + 0.005539467558264732, + 0.0014113163342699409, + 0.01630895957350731, + 0.003974654711782932, + 0.0002580920699983835, + -0.009600493125617504, + -0.004315943922847509, + 0.004729969426989555, + 0.0014966016169637442, + 0.004739911761134863, + 0.03225057199597359, + -0.014808064326643944, + 0.016183750703930855, + -0.0022592400200664997, + 0.006634825374931097, + -0.04389442130923271, + -0.007088263053447008, + -0.0035201956052333117, + 0.005437053740024567, + -0.0030314538162201643, + 0.005779487080872059, + -0.007033981382846832, + 0.008552154526114464, + -6.210475112311542e-05, + -0.00997183471918106, + -0.01009327918291092, + -0.009344486519694328, + -0.020117416977882385, + -0.014333177357912064, + -0.022169621661305428, + -0.00974249467253685, + -0.016345949843525887, + -0.025175614282488823, + 0.014347244054079056, + 0.030684923753142357, + 0.004880518652498722, + -0.0008245691424235702, + -0.006107604131102562, + -0.03796149045228958, + 0.006812362931668758, + -0.0013672469649463892, + -0.0052411979995667934, + 0.010486559011042118, + 0.014084002934396267, + -0.0013269769260659814, + -0.02333782985806465, + -0.005630056373775005, + 0.015475320629775524, + 0.0072884708642959595, + 0.014546079561114311, + 0.019893571734428406, + -0.004420780576765537, + 0.01587238349020481, + -0.00854562595486641, + -0.01349538005888462, + 0.004058605059981346, + -0.002591107040643692, + -0.005686652846634388, + 0.016564343124628067, + -0.005345245357602835, + -0.004664267413318157, + -0.007140402216464281, + -0.018689393997192383, + -0.01205484475940466, + -0.007293335162103176, + -0.00151803286280483, + -0.017382606863975525, + 0.006223974749445915, + -0.08055943250656128, + 0.00931277871131897, + 0.004803857766091824, + -0.007587823551148176, + -0.004691362380981445, + -0.017749948427081108, + 0.00408091489225626, + -0.007432747632265091, + 0.0106255654245615, + 0.00025676103541627526, + 0.0009436535183340311, + -0.004965555854141712, + 0.008471526205539703, + 0.016490435227751732, + 0.022204075008630753, + -0.009648142382502556, + -0.010455301031470299, + 0.002010100521147251, + -0.009660336188971996, + -0.0118410000577569, + -0.0073808166198432446, + 0.007207728922367096, + -0.0013362026074901223, + 0.005806175991892815, + 0.008535042405128479, + 0.020264243707060814, + 0.0037527631502598524, + -0.00940061453729868, + 0.0025431725662201643, + -0.009508715942502022, + 0.0035068299621343613, + -0.024242430925369263, + 0.006463021505624056, + -0.01889999397099018, + -0.0065412139520049095, + 0.007613268680870533, + 0.007406186778098345, + 0.010249306447803974, + -0.009714312851428986, + 0.015011249110102654, + 0.007298524957150221, + 0.005670631304383278, + -0.006371475290507078, + -0.0030945511534810066, + -0.004859598353505135, + 0.012238876894116402, + 0.0018746864516288042, + -0.008693506009876728, + -0.0016975649632513523, + 0.013221119530498981, + -0.0008176973205991089, + 0.007596543524414301, + -0.014806884340941906, + -0.008589393459260464, + -0.010684805922210217, + -0.005215823650360107, + -0.005083146039396524, + -0.0015447770711034536, + 0.007316752336919308, + -0.0012804592261090875, + 0.018634863197803497, + -0.01687624864280224, + -0.009340433403849602, + 0.002476171590387821, + 0.023813357576727867, + -0.017089255154132843, + -0.017772771418094635, + 0.017941193655133247, + -0.0022174008190631866, + 0.05216469243168831, + 0.01000938005745411, + 0.0007198106031864882, + -0.012206350453197956, + -0.01672106236219406, + 0.008083554916083813, + -0.004513642750680447, + 0.0038471436128020287, + 0.014190951362252235, + 0.03004169464111328, + 0.002316858619451523, + 0.01145667303353548, + 0.01284588873386383, + -0.0012082676403224468, + 0.005281256977468729, + 0.005653456784784794, + 0.012241284362971783, + -0.005104308016598225, + 0.001584676094353199, + -0.006091437302529812, + 0.0047143204137682915, + -0.019220365211367607, + -0.029576124623417854, + -0.007392203435301781, + -0.03329552337527275, + -0.00883022602647543, + -0.002010100521147251, + -0.0016402873443439603, + -0.0028525430243462324, + 0.015619158744812012, + 0.016635674983263016, + -0.014124209061264992, + -0.007808182388544083, + -0.005283662583678961, + 0.0024062087759375572, + 0.017492685467004776, + -0.05487386882305145, + -0.008131856098771095, + -0.013545886613428593, + -0.0054628886282444, + -7.83937139203772e-05, + 0.012642649933695793, + -0.04186294972896576, + -0.0007171396864578128, + -0.004603598732501268, + -0.023158960044384003, + -0.0028471711557358503, + 0.0001080037109204568, + 0.003929751459509134, + -0.016398100182414055, + -0.003731383942067623, + -0.004880331456661224, + -0.005389032885432243, + 0.006354536395519972, + -0.006976320408284664, + -0.001189224305562675, + -0.04386892914772034, + 0.009726548567414284, + 0.008131120353937149, + 0.0019081521313637495, + 0.020149994641542435, + 0.004924543667584658, + -0.0075403363443911076, + -0.0029561647679656744, + 0.01581154391169548, + 0.0011635380797088146, + -0.014718259684741497, + 0.004458761774003506, + -0.0013361121527850628, + 0.01483643427491188, + 0.013788288459181786, + 0.0010171778267249465, + 0.00219675712287426, + 0.006132147740572691, + 0.011647969484329224, + 0.028060825541615486, + -0.0007246028981171548, + -0.0064996215514838696, + -0.003633487969636917, + 0.008727749809622765, + -0.007237001787871122, + 0.010513709858059883, + -0.08129532635211945, + 0.07380372285842896, + -4.181689291726798e-05, + -0.0034747079480439425, + 0.0047761984169483185, + 0.020519480109214783, + 0.00816772598773241, + -0.0866633728146553, + -0.010538368485867977, + 0.010299637913703918, + 0.019582610577344894, + 0.01448143646121025, + -0.015577763319015503, + 0.0038457117043435574, + 0.012225898914039135, + -0.0022058822214603424, + -0.0017789786215871572, + 0.008514869958162308, + 0.0013982446398586035, + -0.03467588499188423, + 0.001241324353031814, + 0.004346116445958614, + 0.013406936079263687, + -0.010942265391349792, + 0.008134745061397552, + -0.008808713406324387, + -0.00416139978915453, + 0.0082100760191679, + 0.008819643408060074, + 0.005768732167780399, + -0.009196811355650425, + -0.013557160273194313, + 0.0013962542871013284, + 0.0001782975741662085, + -0.014355240389704704, + 0.006318679079413414, + -0.003250571433454752, + 0.00012002113362541422, + 0.013149661011993885, + -0.004215471912175417, + -0.02221585437655449, + 0.04713831841945648, + 0.0059341564774513245, + -0.011042904108762741, + 3.978401218773797e-05, + -0.01234731450676918, + -0.04179169237613678, + 0.051277197897434235, + -0.002920712111517787, + 0.004204432480037212, + 0.001987890340387821, + 0.034412235021591187, + 0.036930665373802185, + -0.008111410774290562, + 0.01854327693581581, + -0.00023521056573372334, + 0.002137524075806141, + 0.00010400709288660437, + -0.00021915689285378903, + -0.02733893133699894, + 0.027963798493146896, + 0.006682508625090122, + 0.0053445142693817616, + 0.006891102064400911, + -0.013180517591536045, + 0.04017779976129532, + 0.010368643328547478, + 0.003175282385200262, + -0.000908810063265264, + -0.023546067997813225, + -0.0006072320975363255, + 3.183037551934831e-05, + 0.001286746934056282, + 0.024338146671652794, + -0.001819881610572338, + 0.01050186064094305, + -0.02023828588426113, + -0.0052159191109240055, + -0.0007981698727235198, + 0.021545570343732834, + -0.047468800097703934, + 0.0037565124221146107, + -0.029365483671426773, + 0.004871409852057695, + 0.015805723145604134, + -0.019572272896766663, + -0.016428522765636444, + 0.009632395580410957, + 0.006924138404428959, + -0.008439872413873672, + 0.0018390422919765115, + 0.007060118485242128, + -0.013700720854103565, + -0.012860634364187717, + 0.006382695399224758, + -0.0032499972730875015, + -0.014557748101651669, + -0.008409813977777958, + -0.018285807222127914, + -0.003087640507146716, + 0.0007569827721454203, + -0.0004483948869165033, + 0.013425517827272415, + 0.0037768420297652483, + -0.015038230456411839, + 0.01172691397368908, + -0.015194562263786793, + -0.0027724625542759895, + -0.00021272758021950722, + 0.008296028710901737, + -0.017712555825710297, + 0.006565442308783531, + -0.005661229137331247, + -0.00845394842326641, + -0.009654119610786438, + 0.00033561844611540437, + -0.008431276306509972, + -0.0006984274950809777, + 0.0009192433208227158, + 0.0005066209123469889, + -0.018939580768346786, + -0.012229407206177711, + -0.013702761381864548, + -0.0005521022249013186, + -0.008144302293658257, + -0.007045137695968151, + 0.00729468185454607, + 0.0069524566642940044, + -0.020070597529411316, + -0.014114509336650372, + -0.036749422550201416, + -0.018772287294268608, + 0.00315588666126132, + -0.002540166722610593, + 0.004412665031850338, + 0.0033525386825203896, + -0.013294712640345097, + -0.0173562690615654, + 0.018883002921938896, + 0.004627042915672064, + -0.011750505305826664, + 0.009559298865497112, + 0.007814067415893078, + -0.004275457467883825, + -0.009202226996421814, + -0.007115875370800495, + -0.0009557856246829033, + 0.0007411370752379298, + -0.006143872160464525, + 0.0031233620829880238, + -0.022723402827978134, + 0.01581420749425888, + -0.002960353158414364, + 0.0034351968206465244, + 0.0006718975491821766, + -0.016543999314308167, + -0.0015065125189721584, + 0.012100033462047577, + -0.021434154361486435, + 0.03126939758658409, + 0.009267574176192284, + -0.010063329711556435, + 0.0021780510433018208, + 0.001403489033691585, + 0.0003980994806624949, + 0.0025988046545535326, + 0.006816447246819735, + 0.0034343458246439695, + 0.004837471060454845, + -0.005166773684322834, + -0.0066786352545022964, + 0.01567450352013111, + 0.009278867393732071, + -0.009677167981863022, + 0.012109316885471344, + 0.005293181166052818, + 0.008057205937802792, + 0.0008766647079028189, + 0.009879674762487411, + -0.012406275607645512, + 0.016082430258393288, + 0.019760483875870705, + 0.0025484906509518623, + 0.0465022474527359, + -0.018012603744864464, + -0.03806453198194504, + 0.009475593455135822, + -0.009390754625201225, + -0.011141274124383926, + 0.009722769260406494, + -0.002959007862955332, + -0.010562167502939701, + 0.001776783843524754, + 0.010983034037053585, + 0.009886338375508785, + -0.005976870656013489, + 0.014164786785840988, + -0.05784440040588379, + 0.001021630596369505, + -0.001960764406248927, + -0.004007786512374878, + 0.006225749384611845, + -0.002013332210481167, + -0.018230576068162918, + -0.01828070916235447, + -0.007076951675117016, + 0.0005832350580021739, + -0.014474144205451012, + -0.020988579839468002, + -0.015613973140716553, + 0.006025542970746756, + 0.008552055805921555, + 0.00849614292383194, + 0.0022141188383102417, + -0.004728558007627726, + 0.004667443688958883, + 0.0027785426937043667, + -0.03006996400654316, + -0.010452432557940483, + 0.0006535578286275268, + -0.009709055535495281, + 0.007681211456656456, + 0.04808282107114792, + -0.005234651267528534, + -0.0032528203446418047, + 0.002027723239734769, + 0.024690799415111542, + 0.0029956770595163107, + -0.017908256500959396, + -0.01757880300283432, + -0.005711089354008436, + -0.016863785684108734, + -0.025903690606355667, + 0.0011888248845934868, + 0.017736591398715973, + 0.008126086555421352, + 0.0030198106542229652, + 0.004186808131635189, + -0.04234866425395012, + -0.004800889175385237, + -0.0039027812890708447, + -0.013473696075379848, + 0.0011623892933130264, + 0.04909510165452957, + 0.003916272893548012, + 0.01115148700773716, + -0.026883330196142197, + 0.002339116530492902, + 0.0017126738093793392, + 0.014416337944567204, + 0.01684761419892311, + 0.027060959488153458, + -0.015222175046801567, + -0.007857460528612137, + 0.007187149487435818, + 0.010199906304478645, + 0.016386717557907104, + 0.007381182163953781, + -0.016216525807976723, + -0.01276975218206644, + -0.00974614080041647, + -0.03500202298164368, + 0.006051605101674795, + 0.011447183787822723, + -0.0063157472759485245, + 0.008156771771609783, + -0.005907255224883556, + -0.01649254560470581, + -0.012720565311610699, + -0.01606343686580658, + 0.0038000387139618397, + 0.024939946830272675, + 0.001279176794923842, + -0.00031864066841080785, + -0.01618282124400139, + -0.0007393017294816673, + -0.01325744017958641, + -0.0237618088722229, + 0.001161203719675541, + -0.019034862518310547, + 0.016215460374951363, + 0.009468873962759972, + -0.11875708401203156, + -0.01054765097796917, + 0.01003891322761774, + 0.02748452126979828, + 0.006145750638097525, + 0.01728716865181923, + 0.007423588074743748, + 0.0015411972999572754, + 0.00909373164176941, + 0.014338033273816109, + -0.005035079549998045, + -0.011222406290471554, + -0.012032369151711464, + 0.0070396591909229755, + -0.01955215446650982, + -0.0011583516607061028, + 0.006511148065328598, + -0.0014913445338606834, + -0.01586044952273369, + -0.005534712690860033, + -0.0007996975327841938, + 0.012576242908835411, + 0.010486586019396782, + -0.001769321970641613, + 0.006769804283976555, + -0.0031458749435842037, + 0.003810620866715908, + -0.005753005854785442, + 0.007995720952749252, + 0.017012346535921097, + 0.0077966731041669846, + 0.002359014470130205, + 0.0022199442610144615, + -0.0014648609794676304, + -0.00048724800581112504, + 0.006468322593718767, + 0.0028248773887753487, + 0.004419039003551006, + 0.027204323559999466, + -0.015481846407055855, + -0.00040715234354138374, + 0.016602952033281326, + 0.01086906436830759, + -0.017050569877028465, + -0.0010343312751501799, + 0.022052476182579994, + 0.025084204971790314, + 0.0018542958423495293, + 0.006116362288594246, + 0.0005115819512866437, + -0.010493222624063492, + 0.0075037432834506035, + -0.010547731071710587, + -0.02440129965543747, + -0.010459557175636292, + -0.0026419328060001135, + 0.005128274206072092, + 0.008534682914614677, + 0.00939145591109991, + 0.007279886864125729, + 0.01256482396274805, + 0.005305242724716663, + 0.014414524659514427, + 0.007100819144397974, + -0.007206492591649294, + -0.019737208262085915, + 0.004667956382036209, + -8.455602801404893e-05, + 0.02620527893304825, + 0.0029191512148827314, + -0.01151609979569912, + -0.014515196904540062, + 0.0020635442342609167, + -0.00667808810248971, + -0.005465298425406218, + -0.016768302768468857, + 0.004098102450370789, + -0.0023520183749496937, + 0.007760494016110897, + 0.03490118682384491, + -0.023180553689599037, + 0.011061839759349823, + 0.008698321878910065, + 0.018466239795088768, + 0.00015529234951827675, + -0.003692756872624159, + -0.0035304054617881775, + 0.0066236830316483974, + 0.008329631760716438, + -0.0067450073547661304, + -0.010942695662379265, + -0.020268788561224937, + 0.005459316074848175, + 0.008931763470172882, + -0.0005225441418588161, + -0.004498493857681751, + -0.0009210470016114414, + -0.027500256896018982, + 0.0014303498901426792, + 0.004855922423303127, + 0.004668144974857569, + -0.028728505596518517, + 0.003981706686317921, + -0.018868323415517807, + 0.012711172923445702, + 0.016222279518842697, + 0.03726532310247421, + 0.008217716589570045, + 0.02566402219235897, + -0.01071115117520094, + -0.015727117657661438, + 0.010240523144602776, + 0.007181716617196798, + 0.003817975055426359, + -0.0037965027149766684, + -0.014546244405210018, + 0.013269120827317238, + -0.0068143680691719055, + 0.00717886071652174, + 0.020954908803105354, + -0.008721119724214077, + 0.0035153497010469437, + 0.0021962556056678295, + 0.006211618427187204, + 0.00395483523607254, + 0.011316787451505661, + 0.014411898329854012, + 0.0009935428388416767, + 0.001497143879532814, + -0.002793525345623493, + -0.0027558456640690565, + -0.02221866138279438, + -0.011595857329666615, + 0.007424049079418182, + 0.0058436584658920765, + 0.006211073137819767, + 0.02137589640915394, + 0.05521177127957344, + -0.008355957455933094, + -0.006062684580683708, + -0.0055539109744131565, + -0.002002725377678871, + -0.007012359797954559, + 0.0004677542601712048, + 0.02505587227642536, + 0.015758225694298744, + -0.03406543657183647, + 0.008352266624569893, + -0.0009378105169162154, + 0.017591753974556923, + 0.0005268650711514056, + -0.01606512814760208, + 0.002840787870809436, + -0.0192448478192091, + 0.0018997467122972012, + 0.00522752245888114, + -0.08755452185869217, + -0.0016465306980535388, + 0.0082784965634346, + 0.006325375288724899, + 0.012967442162334919, + 0.0005320935742929578, + 0.001623952528461814, + 0.021913722157478333, + 0.011566118337213993, + -0.008745773695409298, + -0.005327918566763401, + 0.013290412724018097, + -0.007080922834575176, + -0.00986743625253439, + 0.016130773350596428, + -0.00013330303772818297, + 0.0045030792243778706, + 0.007593359332531691, + 0.006559409201145172, + 0.0015332349576056004, + -0.002779784146696329, + -0.00805285107344389, + 0.007922294549643993, + 0.007059289142489433, + -0.004996871575713158, + 0.01814279332756996, + 0.0027297683991491795, + 0.006592227146029472, + 0.0029800981283187866, + 0.005984614137560129, + -0.01281673088669777, + -0.007031584158539772, + 0.012081647291779518, + 0.004916845820844173, + -0.009324495680630207, + -0.0049008638598024845, + -0.017295438796281815, + 0.00609701918438077, + 0.00952343549579382, + 0.0015796417137607932, + -0.008631282486021519, + -0.008583804592490196, + -0.00729275681078434, + 0.012325125746428967, + 0.002044806256890297, + -0.003932288847863674, + -0.0044556185603141785, + -0.008799755945801735, + -0.008971760049462318, + -0.017665347084403038, + -0.01063703652471304, + -0.0009215489844791591, + -0.010953104123473167, + 0.008298724889755249, + -0.009064868092536926, + 0.00010806829232024029, + -0.014048602432012558, + 0.05171621963381767, + 0.003429262200370431, + -0.009039686992764473, + -0.00550260953605175, + -0.0262248944491148, + 0.016652951017022133, + -0.011748343706130981, + -0.0029150936752557755, + 0.0041564577259123325, + -0.01634795404970646, + 0.015593291260302067, + 0.008417215198278427, + -0.011619124561548233, + 0.019851472228765488, + -0.019569404423236847, + -0.005698861554265022, + 0.0059709707275033, + 0.010528486222028732, + -0.0069342018105089664, + 0.011635196395218372, + -0.001061856746673584, + -0.016429949551820755, + 0.004905564710497856, + -0.009909536689519882, + 0.0030773545149713755, + 0.0012581755872815847, + -0.01591341942548752, + -0.004519576206803322, + 0.0005955418455414474, + -0.010038078762590885, + 0.004547916818410158, + -0.004220614209771156, + -0.01641269586980343, + 0.026295822113752365, + 0.0196444783359766, + 0.017227577045559883, + 0.019112419337034225, + -0.003801405429840088, + -0.0003066651406697929, + 0.00834211241453886, + 0.0025065839290618896, + -0.019563399255275726, + -0.010318041779100895, + 0.005070358049124479, + 0.01962945982813835, + 0.02684956043958664, + 0.005081812385469675, + -0.001302263350225985, + -0.002720228396356106, + -0.030505871400237083, + 0.004242025315761566, + -0.0008878543740138412, + -0.01289428025484085, + 0.008892481215298176, + 0.00692249508574605, + 0.005066287703812122, + -0.006075813435018063, + -0.007073195651173592, + -0.010492583736777306, + -0.015410047024488449, + 0.004145188722759485, + 0.004933708347380161, + -0.007419964298605919, + 0.023131851106882095, + 0.003670360427349806, + 0.0005205825436860323, + -0.0030914139933884144, + -0.0025936730671674013, + -0.01399798970669508, + -0.011932501569390297, + -0.002746281214058399, + -0.001711884280666709, + 0.003931001760065556, + -0.016953127458691597, + -0.010601328685879707, + -0.007038602605462074, + -0.0017610607901588082, + 0.002499060705304146, + 0.007324632257223129, + -0.026294369250535965, + 0.007014214526861906, + -0.004200909286737442, + -0.00803893618285656, + -0.0020944008138030767, + -0.002174889435991645, + 0.0041710990481078625, + 0.004447652027010918, + 0.008097928017377853, + -0.010987476445734501, + 0.0017475977074354887, + 0.012918340973556042, + 0.0045036450028419495, + 0.0009665307588875294, + -0.004149339161813259, + -0.004489189479500055, + -0.005614425055682659, + 0.01275758445262909, + 0.0038893313612788916, + -0.005602917168289423, + -0.014276240020990372, + 0.014043274335563183, + 0.00023045983107294887, + -0.03120853193104267, + 0.023269446566700935, + 0.008621674962341785, + 0.003326470497995615, + -0.009626183658838272, + -0.023952946066856384, + -0.0016789787914603949, + 0.009258531965315342, + 0.01662672497332096, + 0.008904985152184963, + -0.0025180892553180456, + 0.0032520305830985308, + 0.011419568210840225, + 0.0025726468302309513, + 0.001091450685635209, + 0.034886717796325684, + 0.001723108347505331, + -0.007657189853489399, + 0.00119320722296834, + 0.038536373525857925, + 0.00564488023519516, + -0.009710077196359634, + -0.0038819294422864914, + -0.010498046875, + -0.007343020755797625, + -0.004897088743746281, + 0.00297190947458148, + 0.0034815948456525803, + 0.014529057778418064, + 0.0020622904412448406, + 0.000748797960113734, + -0.002041286788880825, + 0.006989396642893553, + -0.015482843853533268, + 0.006261326372623444, + -0.011006543412804604, + -0.01431942731142044, + -0.012136241421103477, + 0.0001762493047863245, + -0.012017329223453999, + 0.0047692046500742435, + -0.007985709235072136, + -0.005640823859721422, + 0.005483716260641813, + 0.002837409498170018, + 0.006257105618715286, + 0.0021415764931589365, + -0.00503478804603219, + 0.006073853932321072, + 0.013560045510530472, + 0.019829820841550827, + 0.002079620026051998, + -0.006949129514396191, + -0.0018922693561762571, + -0.004846880212426186, + 0.010114391334354877, + -0.01462408248335123, + -0.0033133490942418575, + -0.013511312194168568, + 0.015317474491894245, + 0.004461026284843683, + 0.01453099213540554, + -0.011034064926207066, + -0.004594774451106787, + 0.0054330225102603436, + -0.0009402291034348309, + -0.0037589268758893013, + -0.010534348897635937, + -0.003576850751414895, + 0.0144644258543849, + 0.0018989229574799538, + -0.0024889023043215275, + 0.0028083594515919685, + -0.003423305694013834, + 0.0027783471159636974, + 0.002589867450296879, + 0.012436424382030964, + -0.03707638010382652, + 0.0009797776583582163, + -0.011317243799567223, + -0.01052258163690567, + 0.0013146995333954692, + -0.0016060967463999987, + -0.005579854361712933, + -0.001456332509405911, + -0.0059585366398096085, + -0.024423986673355103, + -0.010794546455144882, + -0.0053611742332577705, + -0.00212551630102098, + 0.009724353440105915, + -0.01925892010331154, + 0.0018380619585514069, + 0.0009263745159842074, + -0.009465048089623451, + -0.0015091885579749942, + 0.002474983222782612, + -0.0020405566319823265, + 0.015288221649825573, + -0.012759782373905182, + 0.009127380326390266, + -0.007728633005172014, + -0.02202901430428028, + -0.010324060916900635, + 0.0008085455629043281, + -0.006012458819895983, + 0.0029838215559720993, + -0.001114903949201107, + 0.0002905406872741878, + -0.006604847498238087, + -0.019267503172159195, + -0.01783714070916176, + 0.0026808977127075195, + 0.0013681573327630758, + 0.00657400768250227, + -0.018125198781490326, + 0.004946145694702864, + 0.01959017664194107, + -0.0012089514639228582, + 0.022127626463770866, + 0.013014611788094044, + -0.0019960941281169653, + 0.006844706833362579, + 0.00023938732920214534, + 0.011128944344818592, + -0.0019326277542859316, + -0.01318553276360035, + 0.013558464124798775, + 0.028161216527223587, + 0.022945843636989594, + -0.012669107876718044, + 0.008984588086605072, + 0.013149763457477093, + -0.003111287485808134, + -0.004902158863842487, + -0.0008966362220235169, + 0.0074416035786271095, + -0.017292100936174393, + 0.003345395904034376, + -0.01267517264932394, + -0.01765322871506214, + -0.005457946099340916, + -0.0013910529669374228, + -0.004071148578077555, + -0.014735250733792782, + -0.03252119570970535, + -0.005164068192243576, + -0.003661937080323696, + 0.0020733405835926533, + 0.01700940914452076, + 0.006963677238672972, + -0.007922736927866936, + 0.005081184208393097, + -0.01531885378062725, + 0.003631986677646637, + -0.000541812158189714, + 0.015132222324609756, + 0.004396294243633747, + 0.018765520304441452, + 0.04387442767620087, + -0.008865145966410637, + 0.03281682729721069, + -0.010977618396282196, + -0.010361949913203716, + 0.010266739875078201, + -0.012842865660786629, + -0.010595842264592648, + 0.005584474187344313, + 0.0028425026684999466, + -0.0032324129715561867, + -0.0020136935636401176, + 0.009142953902482986, + 0.008169900625944138, + -0.01647336781024933, + -0.016833264380693436, + -0.00626386608928442, + -0.012560410425066948, + 0.011521674692630768, + 0.001403096946887672, + -0.016551047563552856, + -0.00876608956605196, + -0.0010410707909613848, + -0.008336570113897324, + -0.027417948469519615, + -0.004794261883944273, + -0.013013675808906555, + 0.001174045610241592, + -0.0007961374358274043, + 0.004045178182423115, + 0.007487817667424679, + -0.012666005641222, + -0.012361429631710052, + -0.010316749103367329, + -0.000480146671179682, + 0.0037372400984168053, + 0.0019024161156266928, + -0.004317778628319502, + -0.0035864110104739666, + -0.002463540295138955, + 0.026907479390501976, + -0.004865566268563271, + -0.018384290859103203, + 0.007801633328199387, + 0.014358174055814743, + 0.010242528282105923, + 0.02149350382387638, + 0.02253013849258423, + -0.001938431989401579, + 0.0095552708953619, + 0.013084213249385357, + 0.012209773063659668, + 0.0026984242722392082, + 0.009917192161083221, + 0.004689977969974279, + -0.00597993703559041, + -0.012152415700256824, + 0.006578425876796246, + -0.00835496000945568, + -7.821002509444952e-05, + -0.006525642238557339, + -0.023403840139508247, + 0.007402850780636072, + -0.0034347916953265667, + 0.0032129944302141666, + 0.03318372368812561, + 0.003497983328998089, + -0.0275427233427763, + 0.0023356545716524124, + -0.019536789506673813, + -0.022125329822301865, + 0.0014545819722115993, + -0.0196485985070467, + -0.007431895472109318, + -0.046177178621292114, + -0.003183026798069477, + 0.0001240791316376999, + 0.013208074495196342, + 0.012754533439874649, + -0.010950662195682526, + 0.0009023159509524703, + 0.009995883330702782, + -0.009186591021716595, + 0.007056322414427996, + -0.0015098800649866462, + 0.011203287169337273, + -0.007018927484750748, + 0.016360701993107796, + 0.006408557295799255, + 0.005116238724440336, + 0.011964497156441212, + -0.0015083459438756108, + 0.008042804896831512, + -0.00804817397147417, + 0.008163319900631905, + 0.017742721363902092, + 0.019944537431001663, + -0.010662700980901718, + -0.014877211302518845, + -0.01472005806863308, + 0.009514421224594116, + 0.008938147686421871, + 0.002383305225521326, + 0.00967949628829956, + 0.006536663975566626, + -0.006364248692989349, + 0.002645411528646946, + -0.023829249665141106, + -0.012898383662104607, + 0.007361024618148804, + -0.008649168536067009, + -0.009376617148518562, + 0.004015657585114241, + -0.0055791293270885944, + -0.020899521186947823, + 0.023024125024676323, + -0.02528107352554798, + 0.002208806574344635, + -0.003716696985065937, + 0.006802384275943041, + 0.006168688647449017, + -0.019424794241786003, + 0.060162968933582306, + 0.02281174622476101, + 0.02398216910660267, + -0.0018332996405661106, + -0.018422754481434822, + 0.0026235454715788364, + 0.0048584467731416225, + 0.015030419453978539, + -0.0023875695187598467, + -0.0146514056250453, + 0.005562593694776297, + 0.005805102176964283, + -0.028119396418333054, + 0.011522932909429073, + 0.002499168971553445, + -0.019667593762278557, + -0.005364013835787773, + -0.00554875610396266, + 0.004574395250529051, + -0.0026093190535902977, + 0.003626368474215269, + -0.0029871449805796146, + 0.0034764623269438744, + 0.011225477792322636, + -0.002887589856982231, + 0.006387121044099331, + 0.007281909696757793, + 0.011309565976262093, + -0.0035794961731880903, + 0.00807796511799097, + 0.015346957370638847, + -0.0022028556559234858, + 0.016080576926469803, + -0.018590543419122696, + 0.009886877611279488, + -0.006467617116868496, + 0.0017932435730472207, + -0.010027856566011906, + 0.021072139963507652, + -0.02127055637538433, + -0.006205061916261911, + 0.007439880631864071, + 0.0163869746029377, + -0.007007664069533348, + 0.07922595739364624, + 0.02788044698536396, + -0.005419603548943996, + -0.03386342152953148, + 0.004641999024897814, + 0.0039206743240356445, + 0.0012071700766682625, + 0.03564850240945816, + 0.010574089363217354, + -0.017245758324861526, + -0.007548044435679913, + 0.00984274223446846, + -0.007426795549690723, + -0.007688955403864384, + 0.007261746563017368, + 0.005260912235826254, + -0.0035509637091308832, + -0.005713252816349268, + 0.0029251608066260815, + -0.012324389070272446, + 0.0263815987855196, + 0.005066198762506247, + 0.005154218524694443, + 0.00032755022402852774, + -0.01111095491796732, + -0.016258783638477325, + 0.0038673256058245897, + -0.015378078445792198, + 0.010226612910628319, + 0.006946245674043894, + 0.0021159620955586433, + -0.01678987592458725, + 0.0015926016494631767, + -0.007000999059528112, + -0.0016695111989974976, + -0.0179409421980381, + -0.0005683738854713738, + 0.002890045288950205, + 0.015612230636179447, + -0.0014259442687034607, + 0.0016478081233799458, + -0.006160611752420664, + -0.0034755151718854904, + -0.004238127265125513, + 0.012538496404886246, + 0.004356002435088158, + 0.0012013219529762864, + -0.001364274648949504, + -0.015490523539483547, + 0.0038782490883022547, + -0.003340272232890129, + 0.006592144258320332, + 0.008534576743841171, + -0.003979247063398361, + 0.020625658333301544, + -0.008593186736106873, + -0.008636589162051678, + 0.005485687404870987, + -0.00790587067604065, + -0.004048253409564495, + 0.006531120277941227, + 0.003897344693541527, + 0.00498405285179615, + -0.015377508476376534, + -0.0016695007216185331, + -0.007361171767115593, + -0.013836639001965523, + 0.010259389877319336, + 0.00479743629693985, + 0.001138202496804297, + 0.0056905597448349, + 0.011857145465910435, + 0.015879733487963676, + 0.008301971480250359, + 0.016409555450081825, + 0.017470408231019974, + 0.010062686167657375, + -0.0013008459936827421, + 0.005303734913468361, + 0.023209000006318092, + 0.0030675942543894053, + -0.0022589219734072685, + -0.011500023305416107, + -0.008368419483304024, + 0.0017907563596963882, + -0.010551744140684605, + -0.0024265639949589968, + -0.01922677271068096, + 0.00039888068567961454, + -0.007761041168123484, + 0.019719403237104416, + -0.0050078462809324265, + -0.0014843163080513477, + -0.015451988205313683, + -0.004213083069771528, + 0.00911447498947382, + -0.03507094830274582, + -0.018271535634994507, + -0.007505957968533039, + 0.016487712040543556, + -0.0033922831062227488, + -0.005789589136838913, + 0.006577116437256336, + 0.004448184743523598, + -0.004470094107091427, + 0.01825708895921707, + -0.034874625504016876, + -0.005891117732971907, + 0.06195620819926262, + 0.006472080945968628, + -0.005112671758979559, + 0.0016610317397862673, + 0.003357426030561328, + -0.0072632101364433765, + 0.006647228263318539, + 0.012382270768284798, + 0.001497423043474555, + 0.008515103720128536, + 0.016057796776294708, + -0.005318690091371536, + -0.0018818326061591506, + -0.013092249631881714, + 0.00409690011292696, + -0.00935771968215704, + 0.005553906783461571, + 0.0029800839256495237, + -0.019609834998846054, + -0.015916481614112854, + 0.0023287772201001644, + -0.015194395557045937, + 0.03449421003460884, + -0.013935688883066177, + -0.004089877009391785, + -0.005322540178894997, + -0.02320192940533161, + 0.006995988078415394, + -0.010370815172791481, + -0.0027514633256942034, + 0.0017691432731226087, + 0.02245207503437996, + -0.0028986085671931505, + -0.0007137120119296014, + -0.014847350306808949, + -0.006305910646915436, + -0.0030098671559244394, + -0.0003152831632178277, + -0.013657396659255028, + -0.02907228283584118, + -0.0026079448871314526, + -0.01035858690738678, + -0.002210468053817749, + 0.002768238540738821, + -0.0009848810732364655, + -0.01958432048559189, + -0.007346856873482466, + 0.021103356033563614, + -0.0021776396315544844, + 0.015655530616641045, + -0.001848207088187337, + -0.003584992839023471, + -0.0039438288658857346, + -0.01722690463066101, + 0.003469108371064067, + 0.004341100342571735, + 0.003164398716762662, + -0.022719882428646088, + 0.011052196845412254, + -0.005934086162596941, + 0.01381641998887062, + -0.019735975190997124, + -0.03166123852133751, + 0.012361296452581882, + 0.0657259076833725, + 0.020637642592191696, + 0.014406958594918251, + -0.0038636079989373684, + -0.002954530529677868, + 0.016413990408182144, + 0.00582096865400672, + -0.02416626550257206, + -0.010460251942276955, + -0.008920969441533089, + 0.01824953407049179, + 0.00343599496409297, + -0.005061382427811623, + 0.0028775562532246113, + 0.010187787003815174, + -0.008179591968655586, + -0.004913522396236658, + 0.00927993468940258, + -0.010684316977858543, + 0.011790146119892597, + -0.009972453117370605, + 0.0018959726439788938, + -0.01262611709535122, + 0.004742871969938278, + 0.011631544679403305, + 0.026583513244986534, + -0.011911923997104168, + -0.0014231031527742743, + 0.00281972112134099, + 0.01839648373425007, + 0.012476025149226189, + -0.027643606066703796, + -0.012030738405883312, + 0.025415875017642975, + 0.0014297532616183162, + -0.0011976459063589573, + 0.002398040844127536, + 0.00530348950996995, + 0.004499646369367838, + 0.01976742222905159, + 0.012912314385175705, + 0.014712396077811718, + -0.008343123830854893, + -0.02034182660281658, + -0.002616899088025093, + -0.0015432004583999515, + 0.0032678875140845776, + 0.001140942913480103, + 0.004952054005116224, + 0.0037483409978449345, + -0.04249156266450882, + 0.0075250910595059395, + 0.010147331282496452, + -0.01088855229318142, + -0.013447482138872147, + -0.006853216327726841, + -0.00464027002453804, + -0.004488261416554451, + 0.013376287184655666, + 0.0035308189690113068, + -0.009166043251752853, + 0.008619824424386024, + -0.00043307553278282285, + 0.0027109249494969845, + 0.019515905529260635, + 0.006401095539331436, + 0.011096678674221039, + 0.017314651980996132, + -0.007288740947842598, + 0.013647893443703651, + 0.005354726687073708, + 0.004262796603143215, + -0.007126353681087494, + 0.003714007558301091, + 0.009916716255247593, + -0.006799359805881977, + -0.010689862072467804, + -0.0006710233865305781, + -0.019833408296108246, + -0.004241528455168009, + 0.037837184965610504, + -0.011090753600001335, + -0.004448003601282835, + 0.00013194892380852252, + -0.002669510431587696, + 0.010541283525526524, + 0.011674894951283932, + -0.010805861093103886, + 0.009471300058066845, + 0.011376600712537766, + 0.009376393631100655, + 0.001986261224374175, + -0.007262710947543383, + -0.009168902412056923, + -0.0020013225730508566, + 0.0007376068388111889, + -0.006864301394671202, + -0.0004386410000734031, + 0.006847064010798931, + 0.015706578269600868, + 0.004035645630210638, + 0.004543020855635405, + -0.010142700746655464, + -0.0037561769131571054, + -0.026716075837612152, + -0.00037964043440297246, + -0.004714024253189564, + 0.005196633283048868, + -0.00387925305403769, + 0.05187200754880905, + 0.0051046451553702354, + -0.020166892558336258, + 0.007743534632027149, + 0.02975725382566452, + 0.03640946373343468, + -0.01677963323891163, + 0.03135530278086662, + -0.0013304955791682005, + 0.008282637223601341, + -0.014279515482485294, + -0.0021158093586564064, + -0.011999614536762238, + 0.017264438793063164, + 0.0017726568039506674, + -0.010676167905330658, + -0.005884714424610138, + -0.013384231366217136, + 0.0012105393689125776, + 0.004347457550466061, + 0.002311310265213251, + -0.001117232022807002, + -0.012782099656760693, + -0.01398566085845232, + 0.040582627058029175, + 0.02080669440329075, + 0.0053053973242640495, + -0.002612997777760029, + -0.016347268596291542, + 0.039837438613176346, + -0.011399800889194012, + -0.014724154025316238, + 0.007089030928909779, + -0.02656799741089344, + 0.02546560764312744, + 0.018734710291028023, + -0.0007240134291350842, + 0.004965183325111866, + -0.01908097043633461, + -0.01797887682914734, + 0.020701510831713676, + 0.007285646628588438, + -8.985931344795972e-05, + -0.005762308370321989, + 0.001478392630815506, + 0.009578519500792027, + 0.010313746519386768, + 0.019702263176441193, + 0.013756593689322472, + 0.0028065356891602278, + -0.013810430653393269, + 0.029696263372898102, + 0.01942763850092888, + -0.011059372685849667, + -0.006720618810504675, + 0.015079755336046219, + 0.008852972649037838, + 0.004303340800106525, + -0.016543351113796234, + 0.005754257086664438, + 0.006127804517745972, + 0.026734352111816406, + -0.0017168432241305709, + 0.001718433341011405, + -0.012795966118574142, + 0.0031854715198278427, + 0.000557648774702102, + -0.0007116738706827164, + -0.003170877927914262, + 0.011315016075968742, + -0.023988952860236168, + -0.026189561933279037, + 0.0027429608162492514, + -0.015148049220442772, + 0.00766671122983098, + -0.0037566181272268295, + 0.016823124140501022, + 0.009613719768822193, + -0.007587088271975517, + 0.002959110541269183, + -0.01399114727973938, + -0.010622652247548103, + 0.016022587195038795, + -0.009324520826339722, + 0.007391254883259535, + -0.002719693351536989, + -0.007309063337743282, + 0.0034797736443579197, + -0.0562906451523304, + -0.005160065833479166, + 0.008043410256505013, + 0.009310608729720116, + -0.006670015398412943, + -0.0003646060358732939, + -0.005051080137491226, + -0.015019181184470654, + 0.009972631931304932, + 0.03570060431957245, + -0.012864459306001663, + -0.04095259681344032, + 0.0010812242981046438, + -0.0031923088245093822, + -0.011122796684503555, + -0.1283637136220932, + 0.028704997152090073, + 0.028308704495429993, + -0.016754386946558952, + 0.003272195113822818, + 0.01082681491971016, + 0.016240917146205902, + -0.023332083597779274, + -0.012286139652132988, + 0.0011067769955843687, + 0.052307408303022385, + -0.0033665166702121496, + 0.0028980423230677843, + 0.01084961462765932, + -0.015117427334189415, + 0.011977863498032093, + 0.008029605261981487, + -0.019260937348008156, + -0.0058240569196641445, + 0.02464125119149685, + -0.011143708601593971, + 0.0008706920780241489, + -0.03279055282473564, + -0.005418133456259966, + -0.011395628564059734, + 0.003261639503762126, + 0.01144370436668396, + -0.022464372217655182, + -0.022429581731557846, + 0.0068843853659927845, + -0.010980126447975636, + 0.009394319728016853, + 0.012188713066279888, + 0.002959089120849967, + 0.003477970138192177, + -0.007695713080465794, + -0.006878781598061323, + 0.0035800831392407417, + 0.00160782050807029, + 0.04455837607383728, + 0.0030478304252028465, + -0.0018085574265569448, + -0.018341004848480225, + -0.011983311735093594, + 0.017588984221220016, + -0.019988862797617912, + -0.003924007527530193, + 0.003517263336107135, + 0.0031142879743129015, + 0.004395765718072653, + 0.004816590342670679, + 0.010017644613981247, + 0.009662714786827564, + -0.0005214190459810197, + -0.005220230668783188, + 0.00879519060254097, + 0.002467290498316288, + 0.017420481890439987, + -0.009756222367286682, + 0.000916744233109057, + 0.0030262174550443888, + -0.018001873046159744, + -0.010495787486433983, + 0.016474055126309395, + 0.024335326626896858, + 0.00844273529946804, + -0.011152602732181549, + -0.0004018684849143028, + 0.005059216637164354, + 0.022433528676629066, + 0.005472222343087196, + 0.014673873782157898, + 0.006082497071474791, + 0.05370490625500679, + -0.00012074871483491734, + -0.005943971686065197, + -0.006143526174128056, + 0.002632595133036375, + 0.011522267945110798, + -0.009023986756801605, + 0.009773830883204937, + -0.003472787793725729, + 0.003237508935853839, + 0.0002949668269138783, + 0.014867693185806274, + -0.007757530082017183, + -0.00022718089167028666, + 0.008648760616779327, + -0.012547854334115982, + -0.005969882011413574, + -0.00593514833599329, + 0.008470745757222176, + -0.010666294023394585, + 0.008054745383560658, + 0.07249145954847336, + -0.006319514010101557, + -0.01115881372243166, + -0.005281304940581322, + -0.0038096869830042124, + 0.0005909271421842277, + -0.008159256540238857, + 0.00941863190382719, + 0.005065915174782276, + -0.0027173745911568403, + -0.023775925859808922, + 0.009003423154354095, + -0.0016939135966822505, + -0.004332554992288351, + 0.0014161558356136084, + 0.0056886328384280205, + 0.005693497601896524, + -0.008247049525380135, + 0.010859109461307526, + 0.004202027805149555, + 0.017888342961668968, + 0.006899502128362656, + 0.0020541169214993715, + -0.0028496445156633854, + 0.01088014431297779, + -0.0027994492556899786, + 0.004721255507320166, + -0.0015802360139787197, + -0.005869870539754629, + -0.0032634863164275885, + 0.0024718870408833027, + 0.01040685549378395, + -0.0051142075099051, + -0.0008331027929671109, + 0.015952469781041145, + 0.007711038924753666, + 0.0026961127296090126, + 0.002666324144229293, + 0.018021445721387863, + -0.0013104912359267473, + 0.012794362381100655, + -0.016683727502822876, + 0.005520686041563749, + -0.0026028896681964397, + -0.010971864685416222, + -0.007421482354402542, + -0.014096439816057682, + -0.0045592160895466805, + 0.00935429148375988, + 0.0024861334823071957, + -0.007644016295671463, + -0.008923516608774662, + 0.0009817852405831218, + -0.007495856378227472, + -0.013618332333862782, + 0.012770401313900948, + 0.016564171761274338, + -0.0006286321440711617, + 0.011687454767525196, + -0.004778402391821146, + -0.0048357658088207245, + -0.009606592357158661, + 0.007718344684690237, + -0.021416068077087402, + 0.003217598656192422, + 0.00910928100347519, + -0.021316716447472572, + 0.004881054628640413, + 0.003644288517534733, + -0.014925387687981129, + 0.00337241287343204, + -0.015323291532695293, + -0.004563195165246725, + -0.04746655747294426, + -0.005071279592812061, + -0.01602376438677311, + 0.007695364765822887, + 0.024546010419726372, + 0.02267001010477543, + 0.006185268517583609, + -0.013161041773855686, + -0.005551007576286793, + 0.019409365952014923, + -0.0007900784257799387, + -0.01734340563416481, + -0.00229776743799448, + -0.007977853529155254, + -0.015147527679800987, + -0.04195673391222954, + -0.026089347898960114, + 0.004524372052401304, + 0.004695751704275608, + -0.01936998777091503, + -0.0011578191770240664, + 0.001898327493108809, + 0.00428495928645134, + -0.0035759033635258675, + 0.01425930205732584, + -0.0064608752727508545, + -0.027069946750998497, + -0.0018709177384153008, + -0.012739486061036587, + -0.011064897291362286, + 0.004048272967338562, + -0.0012056713458150625, + -0.01718083955347538, + -0.01582416333258152, + -0.0037609937135130167, + -0.0031954003497958183, + 0.04218340665102005, + 0.004232326988130808, + 0.008471867069602013, + -0.00024051929358392954, + -0.0030364994890987873, + -0.008481768891215324, + -0.015397652983665466, + 0.02385835163295269, + 0.012756610289216042, + -0.010674454271793365, + 0.018864139914512634, + -0.01411425694823265, + 0.008529290556907654, + 0.008695864118635654, + -0.0072135915979743 + ], + [ + 0.9989787936210632, + -0.00030984479235485196, + 8.039187378017232e-06, + -0.00030698635964654386, + -0.0017985641025006771, + 0.00023275976127479225, + -6.734994531143457e-05, + -1.7413907698937692e-05, + -3.4445500205038115e-05, + -0.00035342606133781374, + 0.00016974184836726636, + 2.6399902708362788e-05, + 3.953633950004587e-06, + 0.00019834916747640818, + -0.000429207575507462, + -0.00021932070376351476, + 0.0009018753189593554, + 0.00012565335782710463, + 0.0009944506455212831, + 0.00014648240176029503, + -0.00032712757820263505, + -0.00016076037718448788, + 6.19262718828395e-05, + -0.00015172224084381014, + -0.00017508037853986025, + 0.00014901996473781765, + -0.004228298552334309, + 1.5255286598403472e-05, + 0.00013196564395911992, + 0.00018636009190231562, + -3.132857455057092e-05, + -0.0033173589035868645, + 0.0005125944735482335, + -7.821193139534444e-05, + 2.2620611161983106e-06, + -0.0008366128313355148, + 0.00034013952245004475, + -0.0005445849383249879, + -0.0007309631910175085, + 5.641556708724238e-05, + -9.055600821739063e-05, + -0.0004967652494087815, + 0.0017358600161969662, + -0.00020361895440146327, + 2.4625689547974616e-05, + 2.115765164489858e-05, + -0.0005908148596063256, + -9.589999535819516e-06, + -0.0006335751968435943, + 0.00011051622277591377, + -7.3998676271003205e-06, + 0.00021111626119818538, + 3.999182808911428e-05, + -0.00011426582204876468, + 0.0018621333874762058, + -8.389035065192729e-05, + 8.970568887889385e-05, + -1.5660565622965805e-05, + -0.0017908592708408833, + -2.8571004804689437e-05, + 1.889428313006647e-05, + 1.1514924153743777e-05, + -5.586824772763066e-05, + -0.0008022991241887212, + -0.0003129059332422912, + 1.1408169484639075e-05, + -2.370925540162716e-05, + 0.00035600466071628034, + 0.0012938756262883544, + -0.00015396447270177305, + -0.0001310073712375015, + 0.00011846292181871831, + -0.0005257466109469533, + -0.00047703238669782877, + 0.0005706489318981767, + 0.00018039895803667605, + 1.2778819836967159e-05, + -1.8848236322810408e-06, + 0.0004934541066177189, + 0.00013679791300091892, + 0.0019978717900812626, + 0.0002509844780433923, + -0.0009468842763453722, + -0.0008325527887791395, + 0.0006641444633714855, + 0.00038467542617581785, + -0.0009351091575808823, + -0.001148704905062914, + 7.380544502666453e-06, + 0.000403200596338138, + 1.711582058305794e-06, + -0.00019210419850423932, + 0.0001548799773445353, + 0.0009105729404836893, + 0.00036589731462299824, + -0.002326857764273882, + 0.00011723344505298883, + -3.322112752357498e-05, + 0.0027426935266703367, + 6.197846960276365e-05, + 1.8917402485385537e-05, + 0.0002947111497633159, + -0.000474587082862854, + 5.94595076108817e-05, + 0.0004507034318521619, + -2.61683962889947e-05, + 6.651745206909254e-05, + -0.00012966037320438772, + 0.001910979743115604, + 0.0006745608407072723, + -0.00038222118746489286, + 9.65355648077093e-05, + 6.37161576833023e-07, + -0.00011135762179037556, + 0.0006117016891948879, + 0.00035662116715684533, + 0.0003162741777487099, + -0.00016153164324350655, + 0.00033369738957844675, + 0.00016274655354209244, + 0.0011129660997539759, + -2.6650799554772675e-05, + -0.0015964180929586291, + 8.568273187847808e-05, + -5.8480123698245734e-05, + -0.00016482164210174233, + -6.903403573232936e-06, + -8.458262163912877e-05, + -0.00015115318819880486, + 0.000869082985445857, + 0.00037261194665916264, + 0.00030524120666086674, + -8.910598262446001e-05, + 0.00011806401744252071, + 0.0001338430301984772, + 0.001125022186897695, + 8.254511340055615e-05, + -0.0004298408457543701, + -2.4068807761068456e-05, + 0.00014932159683667123, + -0.00018682482186704874, + 3.480352825135924e-05, + 0.00023263249022420496, + 0.0004254834493622184, + 0.00011745419760700315, + 2.4958077119663358e-05, + -0.00039970697253011167, + -0.00023121216509025544, + -4.548254219116643e-05, + -0.0006421379512175918, + 0.00025702716084197164, + 6.4272603594872635e-06, + 0.0005358015187084675, + -0.0009497266728430986, + 0.00031094704172573984, + 0.0003901011950802058, + -1.2318584595050197e-05, + -0.00018112781981471926, + -1.2262017889952403e-06, + -3.9138561191975896e-07, + 0.00031466613290831447, + 0.0003888016508426517, + -0.00037533254362642765, + 0.0004990930901840329, + 4.995735434931703e-05, + 9.730231977300718e-05, + -0.00039857166120782495, + -0.0002619809820316732, + -0.0008950803894549608, + 3.383516741450876e-05, + -0.00038413211586885154, + -0.0007411233964376152, + 0.0015384785365313292, + -0.00016419826715718955, + 0.0001743532920954749, + 0.00015865181921981275, + -0.0009293092298321426, + -0.00014890669262968004, + -7.772987737553194e-05, + -5.8102963521378115e-05, + 0.0005129209021106362, + 0.00035406657843850553, + -0.00038621234125457704, + -0.00038470476283691823, + 2.69501415459672e-05, + -7.616385573783191e-06, + 7.915894821053371e-05, + -4.334099139668979e-05, + -1.2727802641165908e-05, + 8.858165529090911e-05, + 0.0007697741966694593, + -3.68120199709665e-05, + 0.0013386992504820228, + 0.0009306471911258996, + 3.622638541855849e-05, + -6.657584162894636e-05, + -0.0002982521546073258, + -8.062659617280588e-05, + 0.0004792085674125701, + 4.8667119699530303e-05, + -0.0008978756377473474, + 5.17466469318606e-06, + 0.0001779275044100359, + 0.0007013531285338104, + 0.001176216988824308, + -0.0009103131014853716, + -7.002097845543176e-05, + 0.002969157649204135, + -0.0003818658587988466, + -0.00022400337911676615, + -0.00027020942070521414, + -1.4971717064327095e-05, + -0.0002836217754520476, + 2.991511792060919e-06, + 0.0008899679523892701, + 8.384231477975845e-05, + 1.3094948371872306e-05, + -7.192197517724708e-05, + -3.1337185646407306e-05, + 4.9526424845680594e-05, + -4.079047721461393e-05, + 4.4059936044504866e-05, + 0.0010481674689799547, + -0.0001710278884274885, + 0.0030606193467974663, + -0.000925503671169281, + -0.0016813292168080807, + -0.0005290444241836667, + 0.0004567893920466304, + 0.0008308619726449251, + 0.0001635363296372816, + 0.00027849950129166245, + -0.0015925499610602856, + -0.006050383672118187, + -0.000135240305098705, + 2.987376501550898e-05, + -0.00013163035328034312, + -0.00033508831984363496, + 2.9775277653243393e-05, + -1.4064017705095466e-05, + -0.00018605186778586358, + -0.0004727179475594312, + 0.0001302314776694402, + -0.005027794744819403, + -0.00015331122267525643, + 0.0006402565049938858, + -0.0011301676277071238, + -8.056820661295205e-05, + -0.00022498168982565403, + 0.00039809418376535177, + 8.711040572961792e-05, + -0.0020056129433214664, + 2.851644421753008e-05, + 0.00023482553660869598, + -5.453356425277889e-05, + -0.00036562670720741153, + -2.9987288144184276e-05, + -0.0005946840974502265, + -3.4013439289992675e-05, + -0.0002828084980137646, + 0.00019542656082194299, + -0.00032945474958978593, + -0.0004164048586972058, + 0.00038837979082018137, + -0.0019108614651486278, + 2.6112222258234397e-05, + -0.0003742944390978664, + -0.001283997087739408, + 2.2893416826264e-05, + 0.00012432098446879536, + -4.5052991481497884e-05, + -0.0007546305423602462, + -1.7894528355100192e-05, + 0.00025318580446764827, + 0.0002686774532776326, + 0.00016256075468845665, + 0.00038159461109898984, + -5.9066107496619225e-05, + -0.00010018619650509208, + 0.0007396375294774771, + -0.0007488077390007675, + 3.0292407245724462e-05, + 0.0004411187255755067, + -0.0006014347891323268, + 0.00034783975570462644, + 0.000140278585604392, + 2.4377432055189274e-05, + -0.00011954605724895373, + 0.00023007480194792151, + 7.811026443960145e-05, + -0.00034021312603726983, + 0.0032055967021733522, + -0.000461707852082327, + 0.00018380078836344182, + 2.8530443159979768e-05, + -9.77316522039473e-05, + 0.00016223468992393464, + 0.0002414688206044957, + 0.001055314438417554, + -0.0009161916677840054, + 0.00038084047264419496, + 0.00021626193483825773, + -0.00046008394565433264, + -3.4024709748337045e-05, + 0.001491076429374516, + 0.00012668376439251006, + 0.00011147724580951035, + -0.0018110653618350625, + -0.00027735537150874734, + 0.000301504711387679, + -5.246256114332937e-05, + 1.1051013643736951e-05, + 5.672679981216788e-05, + 9.567361121298745e-05, + -1.0004694104281953e-06, + -0.0002491443301551044, + 0.00022883113706484437, + 0.0006330639007501304, + 0.0002703820646274835, + 7.359353185165673e-05, + 4.407668893691152e-05, + 0.0005033520283177495, + -0.0004315542755648494, + 0.00014729656686540693, + 0.00025423296028748155, + 0.0004778279981110245, + 0.00023371334827970713, + 7.433500286424533e-05, + 0.0009212137665599585, + 0.0005167723866179585, + -0.00020544165454339236, + -1.1855606317112688e-05, + -0.0003622906224336475, + -0.00014621687296312302, + 1.7158830814878456e-05, + 2.2094183805165812e-05, + 0.0026971877086907625, + -6.447546184062958e-05, + -8.596958878115402e-07, + 0.000267677940428257, + -6.626048048019584e-07, + 0.0008179919677786529, + -0.00027774396585300565, + -0.00012669319403357804, + 0.00025294272927567363, + -0.00017661442689131945, + 0.0011832520831376314, + -0.0002027312875725329, + 2.0035104171256535e-05, + 3.0000226615811698e-05, + 1.3011567716603167e-05, + -4.4220403651706874e-05, + 0.00014990752970334142, + -2.0468409275054e-05, + -0.0005951108178123832, + -0.0001296127011300996, + 0.0002589016512501985, + -0.0015915106050670147, + 0.00016907161625567824, + 8.387962589040399e-05, + -8.486358274240047e-05, + -0.0027850742917507887, + -0.00036352602182887495, + 0.00027110526571050286, + 0.0005879622767679393, + -0.00039824668783694506, + 0.0006370522896759212, + -0.0001038174596033059, + -0.0009650482679717243, + -8.845941192703322e-05, + -0.0009280492085963488, + 0.0003981935733463615, + 1.484354379499564e-05, + 0.002851732773706317, + 0.00014252371329348534, + -0.000300062820315361, + 0.00029358812025748193, + -4.8178226279560477e-05, + 0.0007487327675335109, + -0.000137889088364318, + 0.00011188518692506477, + -0.00024101202143356204, + 0.0007414288120344281, + 0.00033353580511175096, + 8.480428732582368e-06, + 0.0003969840472564101, + 0.0001362437178613618, + 1.8053362509817816e-05, + -0.0006982294726185501, + 0.0001403661590302363, + 0.00030786701245233417, + 3.464788096607663e-05, + 0.0002910697949118912, + -0.0019170927116647363, + 0.00041335387504659593, + -0.000663250801153481, + 2.0564064470818266e-05, + 0.00191038241609931, + 0.0003599674382712692, + 0.0003211599250789732, + 3.885214994170383e-08, + -0.00018904641910921782, + 5.066243829787709e-05, + -0.00020827705156989396, + 0.00022492979769594967, + 0.0003745924914255738, + -0.0004555705818347633, + -8.054719842220948e-07, + 0.00029121761326678097, + -4.308072311687283e-05, + 0.0002360041398787871, + 0.0007136393105611205, + 7.861950871301815e-05, + -0.00043602572986856103, + -0.0003991477133240551, + -0.000204549272893928, + 5.4679159802617505e-05, + -0.0001309835643041879, + -0.001799904159270227, + -0.0006136397132650018, + -0.00048767225234769285, + 0.0007096448680385947, + -0.0006790835177525878, + -0.0010043226648122072, + 0.0001929152203956619, + -3.613538865465671e-06, + -4.4076063204556704e-05, + -0.00044933948083780706, + -0.0005101480637677014, + -6.683776882709935e-05, + -0.0007115137996152043, + 0.0002255378640256822, + -0.0007924086530692875, + 0.00027745048282667994, + -0.0007097120978869498, + 0.0008479089010506868, + -0.00038597319507971406, + 0.00015760843234602362, + 0.0007960807997733355, + -1.2250846339156851e-05, + -8.331424032803625e-05, + 0.00014358441694639623, + 0.00023367810354102403, + -0.00013457976456265897, + -4.4502554374048486e-05, + 0.0018739630468189716, + 7.898102921899408e-05, + 0.006742808036506176, + 0.0006632974254898727, + -0.0004801232134923339, + 7.915257810964249e-06, + -5.8330901083536446e-05, + 0.0007795525598339736, + 0.0004780309973284602, + 0.000296897254884243, + -6.992362614255399e-05, + -0.00011847485438920557, + 0.00013608585868496448, + -0.0002959876728709787, + 1.3981723895994946e-05, + 0.0001909476995933801, + 3.993222344433889e-05, + -0.0011146750766783953, + -0.0002609985531307757, + 0.0002003228582907468, + 0.0005617892602458596, + -0.00018239860946778208, + -0.0004723529564216733, + 0.00011691172403516248, + 0.0016972034936770797, + 0.0003990523691754788, + -0.0001668470649747178, + -0.0006892938981764019, + -0.0001887398393591866, + -0.001037371577695012, + -0.0009235528414137661, + 3.131095218122937e-05, + 4.6292889237520285e-06, + 1.1895918987647747e-06, + -0.00016498295008204877, + -1.5884086678852327e-05, + -6.972972914809361e-05, + -0.0001406551746185869, + 0.0008931264746934175, + -0.0007344886544160545, + 0.00040736596565693617, + 0.0010679267579689622, + 0.0005012886831536889, + 0.0002578117710072547, + 1.7269794625462964e-05, + -9.573969873599708e-05, + -0.0008997272234410048, + -0.0006432508816942573, + -6.380404374795035e-05, + -7.797636499162763e-05, + 0.00014052617189008743, + -8.786747457634192e-06, + -2.6704303309088573e-05, + -6.250394108064938e-06, + 0.0002328711561858654, + 0.00024394314095843583, + -1.525532661617035e-05, + -0.0007694617379456758, + -0.0007872722926549613, + 5.313797009875998e-05, + 2.1755938632850302e-06, + -3.185384048265405e-05, + -5.589103966485709e-05, + -8.50834185257554e-05, + 0.00015036494005471468, + 0.001480217557400465, + 0.00012452785449568182, + 0.00011525140143930912, + -8.028769661905244e-05, + -3.2953586924122646e-05, + -0.0006473331595771015, + -2.4075839064607862e-06, + -9.855238749878481e-05, + -0.0002238517045043409, + 0.0005108133191242814, + -9.208600386045873e-05, + -0.00011960774281760678, + 0.00032333991839550436, + -0.0014061040710657835, + -2.33986593229929e-05, + 0.00016874130233190954, + -0.00049630954163149, + -0.00019619063823483884, + -0.00032004303648136556, + -0.0005563889280892909, + 0.0002456533838994801, + -0.0002447495353408158, + -2.757758556981571e-05, + -5.738886466133408e-05, + 9.948762453859672e-05, + 1.7494352505309507e-05, + -0.00033055158564820886, + -0.003353589680045843, + 2.7246048830420477e-06, + -8.14465747680515e-05, + 6.528970698127523e-05, + -0.00018212475697509944, + -7.723715680185705e-05, + 1.9709634216269478e-05, + 9.229346687789075e-06, + -7.459424523403868e-05, + -0.0008443502592854202, + -0.0007714491221122444, + 0.0007820574101060629, + -3.8103698898339644e-05, + -4.4890010030940175e-05, + -0.0006946457433514297, + -0.003107433905825019, + -0.0009539758320897818, + -0.00037650790181942284, + -0.00013163164840079844, + -2.0136449165875092e-06, + -0.0007393795531243086, + -7.847279448469635e-06, + -2.8623078378586797e-06, + -0.0003108391829300672, + 0.00035325827775523067, + -0.0002626801433507353, + 0.0007674226071685553, + -0.00025078473845496774, + -5.093237632536329e-05, + 9.535429126117378e-05, + 0.0006013779202476144, + 0.0001515309268143028, + -0.00044489570427685976, + -3.460993639237131e-06, + -1.1108409125881735e-05, + 0.00046942438348196447, + -0.0003674701729323715, + -0.00022507441462948918, + 4.076117693330161e-05, + -0.00013212990597821772, + -0.0006564834038726985, + -0.0010435024742037058, + -0.000829259108286351, + -1.3909728295402601e-05, + 0.00021483299497049302, + 0.00019304992747493088, + -0.0006695914780721068, + 0.0006776295485906303, + -0.0003304567071609199, + 0.006095787975937128, + 0.000327870569890365, + -2.010420212172903e-05, + 8.603908645454794e-05, + -0.0005998691776767373, + -0.0017406358383595943, + -0.0005185830523259938, + -0.00012926236377097666, + -0.00041609170148149133, + 0.0002547750773373991, + -0.00037751541822217405, + -5.891823548154207e-06, + -0.00028202703106217086, + 0.0006572272395715117, + -7.393746636807919e-05, + 9.11429087864235e-05, + 0.00020279796444810927, + 0.00015980497119016945, + 3.804957668762654e-05, + -9.63006095844321e-05, + -0.00029707589419558644, + -0.0001537641801405698, + -7.880244811531156e-05, + 0.00018750803428702056, + -3.1894789572106674e-05, + -4.313606768846512e-05, + 5.464908099384047e-06, + -1.850920671131462e-05, + 0.0001395858416799456, + -0.0003275125927757472, + 0.000828667776659131, + 8.677473033458227e-07, + -8.24317685328424e-05, + 8.929100295063108e-05, + 0.000578920473344624, + 0.00013048577238805592, + 0.00014028513396624476, + -0.0001642955612624064, + 0.0004105913685634732, + -0.00012122978660045192, + -8.621448796475306e-05, + 4.5551505536423065e-06, + 0.0001271840010304004, + 1.6516660252818838e-05, + -0.00023024588881526142, + -0.00016526308900211006, + -1.7702421246212907e-05, + 0.0001305151090491563, + -2.1682870283257216e-05, + 0.0009608877007849514, + -0.00026740238536149263, + -0.00028930773260071874, + -0.0003027818747796118, + -0.00022016995353624225, + -5.8865149185294285e-05, + -2.7683119697030634e-05, + 0.0002322742366231978, + -0.0008575992542319, + 0.001416085520759225, + -0.00010995993216056377, + -0.00035290149389766157, + -0.00011359401105437428, + 0.0006995919975452125, + -0.001663935836404562, + -0.00035513154580257833, + 0.0006589490221813321, + 0.00022945985256228596, + 0.0003930642851628363, + -8.172923844540492e-05, + -0.00015463432646356523, + -1.4436941455642227e-05, + 0.0003038228605873883, + -4.27534687332809e-05, + -0.0005635725101456046, + -0.0006071578245609999, + 0.0003670856240205467, + 0.0008237254223786294, + 0.0007798507576808333, + 0.00029051501769572496, + -0.00018498093413654715, + 8.238659211201593e-05, + -0.0008373224991373718, + -1.6532745576114394e-05, + -2.324540946574416e-05, + 0.0005379026988521218, + -7.396664295811206e-05, + 0.000250767741817981, + 1.5736086425022222e-05, + -0.00027321805828250945, + -3.570609260350466e-05, + 0.00016059799236245453, + 0.0031157296616584063, + -0.00019291277567390352, + 0.00021692657901439816, + -0.00014924189599696547, + -5.605775641015498e-06, + -4.598400482791476e-05, + -0.0003778057580348104, + -5.523539584828541e-05, + 2.3362495994661003e-05, + 3.595190719352104e-05, + 0.00012496883573476225, + 0.001085422234609723, + 0.0008984014857560396, + 0.0006182607030496001, + 0.0008000425877980888, + -0.0017422731034457684, + 0.0002901771222241223, + -3.313039633212611e-05, + -0.0007011878187768161, + -4.7730693040648475e-05, + 0.0001511997397756204, + 0.00036945618921890855, + 0.0004318674036767334, + 4.431052730069496e-06, + 0.00011712624109350145, + -5.702541329810629e-06, + 6.252674211282283e-05, + 0.0010356905404478312, + 0.0007322236779145896, + -0.0002541115100029856, + 0.00030147627694532275, + -1.003137367661111e-05, + -0.0006180723430588841, + -0.000665620609652251, + 0.00010405736247776076, + 5.189877265365794e-05, + 0.0004897440085187554, + 0.00033964234171435237, + -0.0008478655945509672, + 0.0033991551026701927, + -0.0005350674036890268, + -3.675698098959401e-05, + -0.0002417249052086845, + -7.38498565624468e-05, + 0.00019618557416833937, + -0.00015989536768756807, + 0.0001271180808544159, + 2.919895814557094e-05, + -0.00014059076784178615, + 0.00022076463210396469, + -4.125782652408816e-05, + 0.0003650980652309954, + -2.1661273422068916e-05, + 6.115615542512387e-05, + -0.00019361040904186666, + -3.403428854653612e-05, + 3.945453863707371e-05, + -0.0003408622869756073, + -0.00021638444741256535, + 0.002751503838226199, + 6.494910485344008e-05, + -5.47457420907449e-05, + 0.00013451502309180796, + 0.00027332809986546636, + -0.0009291197638958693, + 0.0017625712789595127, + 0.0006989982794038951, + -0.0011882896069437265, + -0.00011773045116569847, + -6.104380736360326e-05, + -0.0011804795358330011, + 0.0017544128932058811, + -0.00043306974112056196, + -0.0001627588935662061, + -0.001063727424480021, + -9.462185698794201e-05, + 6.605529051739722e-05, + -8.502011951350141e-06, + -0.00023364416847471148, + 1.936692206072621e-05, + -9.37954246182926e-05, + -2.254698847536929e-05, + -3.250792360631749e-05, + -0.00033921501017175615, + -0.0001685526076471433, + -0.000267245079157874, + 0.00043454786646179855, + 4.884697773377411e-05, + 0.00033351831370964646, + -5.260766192805022e-05, + 0.00014182522136252373, + 2.3348540707957e-05, + 8.793265442363918e-05, + 5.378421519708354e-06, + -6.044033943908289e-05, + -0.00023812805011402816, + -0.00012965804489795119, + 0.0011924852151423693, + 6.054447658243589e-05, + 0.00043277221266180277, + 0.0003776627709157765, + -0.00040436757262796164, + -0.00017275002028327435, + 0.0008705349173396826, + -0.0010498000774532557, + -2.0786592358490452e-05, + 0.0003357418463565409, + 6.414180097635835e-05, + 0.00014421135711017996, + -7.261114205903141e-06, + 4.9076486902777106e-05, + -0.0002505144220776856, + -8.848270226735622e-05, + -0.00028276460943743587, + 0.0014428891008719802, + -0.0016674590297043324, + 0.00038489847793243825, + 0.000105240338598378, + -0.0005550229107029736, + -5.850977231602883e-07, + -0.0002069184265565127, + 0.00023911288008093834, + -0.00012132097617723048, + -7.914792513474822e-05, + 2.991886731251725e-06, + -2.0546602172544226e-05, + -7.554819603683427e-05, + 5.463165871333331e-05, + -0.00024533565738238394, + -3.2910884328885004e-05, + -0.00019596437050495297, + -0.0003900351875927299, + -0.0007590632303617895, + -0.00038680346915498376, + 0.0010000623296946287, + 0.0009423666051588953, + 0.0007486251415684819, + -0.00013767358905170113, + -0.0010117713827639818, + 0.0011879572411999106, + -2.4280723209813004e-06, + -0.00015668210107833147, + 0.0007104880060069263, + 0.00014328131510410458, + 0.0016457107849419117, + -5.1247163355583325e-05, + 0.00016910723934415728, + -5.710986897611292e-06, + -0.0004676071694120765, + 0.00010196241055382416, + -0.0001519303332315758, + 0.0007091455045156181, + -2.189922088291496e-05, + -9.571151167619973e-06, + -3.8620146369794384e-05, + 4.90766240091034e-07, + 0.0008747002575546503, + 0.0002664367202669382, + -0.0008366116671822965, + 3.335565997986123e-05, + -0.0016944915987551212, + 0.0015209238044917583, + -0.00016196446085814387, + 0.00011948739847866818, + -0.0001176329969894141, + 5.891032560612075e-05, + -1.2412130672601052e-05, + -0.0001110391749534756, + 6.705390842398629e-05, + 0.0002558077685534954, + 4.073535819770768e-05, + -0.0002064216387225315, + 0.0004047719994559884, + 9.902374586090446e-05, + 0.00024674201267771423, + 0.0007653287029825151, + 3.943852425436489e-05, + 0.0014774283627048135, + 9.59673197939992e-05, + -0.00014814331370871514, + 0.00023395830066874623, + 0.0009073049295693636, + 0.0010907002724707127, + -2.8974876840948127e-05, + -0.00048767554108053446, + -6.589631811948493e-05, + 9.007517655845731e-05, + 0.00047082698438316584, + -0.0008517451933585107, + 6.571209269168321e-06, + 0.0002946572785731405, + 0.0008945476729422808, + -3.105312498519197e-05, + 0.00010017562453867868, + 0.00020106189185753465, + -8.031564902921673e-06, + 0.00031244740239344537, + -7.157732034102082e-05, + -0.00027049920754507184, + 0.0011728592216968536, + 0.0002654466370586306, + -0.0001992483448702842, + 4.329373768996447e-05, + 0.0006545555661432445, + 0.0003005756880156696, + -0.0006820287671871483, + 7.739274587947875e-05, + 0.0006620438653044403, + -0.00030702544609084725, + -0.00034014470293186605, + -9.256859630113468e-05, + 0.00035424719681032, + -0.00010582707182038575, + -0.00018187884415965527, + -0.00013253699580673128, + -0.000408853025874123, + -0.00011215868289582431, + 0.000185877361218445, + 0.00020684281480498612, + -6.219787610461935e-05, + 0.00019328997586853802, + 1.611681182112079e-05, + -8.312417207889666e-07, + 0.0003261441015638411, + 0.00013217914965935051, + -0.0002627169305924326, + -0.00015804510621819645, + -0.00022343691671267152, + -0.0007552191382274032, + -8.992176299216226e-05, + 0.00037372010410763323, + -5.437991421786137e-05, + 0.0003923406475223601, + -0.0015826080925762653, + 0.0007800032617524266, + -0.0001654704537941143, + 8.447947766399011e-05, + -8.840096415951848e-05, + 0.0016676480881869793, + -0.00011779135093092918, + 6.841199501650408e-05, + 0.00023930547467898577, + -2.6705341952037998e-05, + 0.0009524685447104275, + -0.00015404260193463415, + -2.3647477064514533e-05, + 0.0016009941464290023, + 0.00010848418605746701, + -0.0001094820472644642, + 0.00016042598872445524, + -0.0004245763411745429, + 0.0004515090258792043, + 0.003542431630194187, + -0.0006904105539433658, + -0.0007259242120198905, + -0.00020727672381326556, + -0.0001771515526343137, + -0.0003681481466628611, + -0.000373969814972952, + 1.3822777873429004e-05, + 0.0007049829582683742, + 0.0006528886733576655, + -1.651085455023349e-07, + -0.00016847140796016902, + -9.396103996550664e-05, + -0.00014574466331396252, + -9.117610170505941e-05, + -9.486552880844101e-05, + -0.0008461817633360624, + 2.497911009413656e-05, + 0.0005232897237874568, + 9.462098387302831e-05, + 0.0003756951482500881, + 0.00020684971241280437, + -0.00011046475992770866, + 0.0002287298411829397, + -0.00045691162813454866, + 0.00011633768735919148, + -0.00010781338642118499, + -0.0003439869615249336, + -0.0002853866317309439, + 0.0006389531190507114, + 0.00010454074072185904, + 5.8902525779558346e-05, + 2.1740523152402602e-05, + -1.6783433238742873e-05, + 0.000588616356253624, + -6.322569970507175e-05, + -0.0008114810916595161, + 2.8313985239947215e-05, + 2.0280394892324694e-06, + 1.2556434739963152e-05, + -3.486348214210011e-05, + 4.649365109798964e-06, + 3.3164276828756556e-05, + -1.3361466699279845e-05, + 4.038482529722387e-06, + -0.0007041640346869826, + -0.0010638987878337502, + 5.335387686500326e-05, + 6.832765939179808e-05, + -0.0008094741497188807, + 6.59311335766688e-05, + -0.00018487608758732677, + -0.00010089246643474326, + -0.0007245420711115003, + 0.00023969275935087353, + 0.00032325199572369456, + 0.00032135489163920283, + 0.00014674577687401325, + -0.00602874718606472, + 4.841032023250591e-06, + -0.0006198064074851573, + 0.00031749773188494146, + 8.244393939094152e-06, + 9.245864930562675e-05, + -0.0013872211566194892, + 0.000358021876309067, + -0.0008893783669918776, + 0.00045117305126041174, + -0.00030033948132768273, + -0.001488685142248869, + 2.398399146841257e-06, + 0.0002498302492313087, + -0.0003203479282092303, + -0.0006280759116634727, + 0.0005955464439466596, + 0.00015467788034584373, + 8.453949703834951e-05, + 2.8397382266120985e-05, + 3.6363329854793847e-05, + 2.56994208029937e-05, + -0.00018128249212168157, + 0.0005943241412751377, + -0.00013318672426976264, + -0.00010945304529741406, + -4.1340241295984015e-05, + -5.2930899983039126e-05, + 0.0003951570251956582, + 1.340570452157408e-05, + 0.0006952888215892017, + 5.30678044015076e-05, + -1.850489752541762e-05, + 0.00019452444394119084, + 0.000495106796734035, + -4.5517284888774157e-05, + -0.0005156114930287004, + -0.0015448792837560177, + 6.420254067052156e-06, + -0.000217814274947159, + 1.0374385055911262e-05, + 1.107616026274627e-05, + -0.00013663145364262164, + 1.3318025594344363e-05, + 0.0007904014782980084, + 4.180900941719301e-05, + -8.443952538073063e-05, + -0.00031706973095424473, + 0.0007155911298468709, + 9.38417506404221e-05, + 6.953949923627079e-05, + 0.00022374899708665907, + -0.0004679961712099612, + 0.00016501409118063748, + 0.0001254251110367477, + 2.9546711743932974e-07, + -0.0018234220333397388, + 0.001484344364143908, + 0.00013756737462244928, + -0.0033640870824456215, + -0.0003464454784989357, + -0.0003306499565951526, + 5.625370249617845e-05, + 0.0001420231128577143, + 3.088631501668715e-06, + -5.396249616751447e-05, + 0.001080391462892294, + -0.00021090119844302535, + 0.0001826517254812643, + -0.00014906979049555957, + 4.779481969308108e-05, + 0.00024080980801954865, + -0.0003277665819041431, + 0.00024814732023514807, + 0.00021721847588196397, + -0.0005104477168060839, + -0.0009235891629941761, + 0.00015560515748802572, + 0.00030464044539257884, + 0.0003039418370462954, + 0.00022373252431862056, + -0.00036572603858076036, + 9.030302317114547e-05, + -0.0006723712431266904, + 0.00041184446308761835, + 8.764801168581471e-05, + -0.0003247119893785566, + 0.0006547698867507279, + 1.0826523975993041e-05, + -3.926434874301776e-05, + -0.00011066836304962635, + -0.00037074866122566164, + 0.0004992528120055795, + 0.0001155740101239644, + -6.449064676417038e-05, + 0.000841399421915412, + -9.249467257177457e-05, + 0.00014938024105504155, + -0.0015445019816979766, + 1.2167419072284247e-06, + -0.00011751252168323845, + -2.9598832043120638e-05, + 8.245930075645447e-05, + -0.0002844538539648056, + -1.444240115233697e-05, + 0.0001139290034188889, + 4.206486664770637e-06, + 0.0005335748428478837, + -5.243683699518442e-05, + -0.0012812819331884384, + -0.00013087087427265942, + -8.282120688818395e-05, + 0.001629857812076807, + -4.130466186325066e-05, + -0.0003157789178658277, + -2.1617046513711102e-05, + 0.00043231554445810616, + -0.000153059940203093, + -0.00045348505955189466, + -0.0006343840504996479, + -0.000137080205604434, + 7.787916547385976e-05, + -0.0002794756437651813, + 0.00028630622546188533, + 8.76836566021666e-06, + 0.0027996033895760775, + -0.00040917808655649424, + -0.0002471144834998995, + -0.00017077875963877887, + -0.00042222635238431394, + 0.00023836999025661498, + -0.0007451038109138608, + -0.00018694675236474723, + 0.0002062042331090197, + -7.457986612280365e-06, + 7.440127956215292e-05, + -1.3953600500826724e-05, + 0.0009716034983284771, + 1.532076930743642e-05, + -1.9575387341319583e-05, + -0.0006158786127343774, + 0.00033875511144287884, + -0.0033777477219700813, + -1.831449662859086e-05, + -8.131847425829619e-05, + 0.00025931355776265264, + 0.0008291846606880426, + 0.00165841868147254, + 5.3387531806947663e-05, + 9.055813166014559e-07, + 0.0015694503672420979, + 1.6978923667920753e-05, + -0.00033073927625082433, + -0.0004612361954059452, + -4.342858574091224e-06, + -0.0006022915476933122, + -0.00019040795450564474, + 0.0004632063501048833, + -0.0008894976344890893, + -0.00034408955252729356, + -0.0019001425243914127, + -0.00031211369787342846, + 0.0003228569112252444, + 3.8517257053172216e-05, + 0.00033344150870107114, + 0.00026152870850637555, + -0.00010829817620106041, + -0.0008266407530754805, + -0.0006319611566141248, + 0.00037619456998072565, + -8.811873703962192e-05, + -0.0001867022510850802, + -0.0007727092015556991, + 1.337509957011207e-06, + -0.00016325156320817769, + -0.0007281471625901759, + 0.0009945810306817293, + -0.0002990218927152455, + -0.0005414366023615003, + 0.0002469118044245988, + 5.1929193432442844e-05, + -1.0381803576819948e-06, + -1.15122165880166e-05, + -0.00047869334230199456, + -0.0014408448478206992, + -0.00011120506678707898, + 2.8476640636654338e-06, + -2.6085930585395545e-05, + 0.00030466128373518586, + 0.00019298311963211745, + 4.246469688951038e-05, + -7.343860488617793e-05, + -7.262872532010078e-05, + -5.8301029639551416e-05, + 0.0001033985972753726, + 5.640289145958377e-06, + 3.974931314587593e-05, + 0.0003521352482493967, + 1.5507928765146062e-05, + -4.07980041927658e-05, + -0.001513629569672048, + 0.0009764957358129323, + 1.8641885617398657e-05, + -2.4785889763734303e-05, + 0.0002523920848034322, + -0.0004694856470450759, + -3.6829882787969836e-07, + 0.00022045098012313247, + 0.000847651856020093, + 0.0001926115364767611, + -2.8981979994568974e-05, + 0.000245206814724952, + -0.0007002890924923122, + 0.000657525088172406, + 0.0001530985755380243, + 0.00044239324051886797, + -6.319420936051756e-05, + 0.00030131530365906656, + 6.730828317813575e-06, + 0.00013645483704749495, + 0.0001869811094366014, + -0.00010656254016794264, + 0.00010457518510520458, + 0.000241092435317114, + -0.00010218896204605699, + -0.00039173837285488844, + -0.00045881199184805155, + -0.0004087970301043242, + 0.00010059764463221654, + 6.208962076925673e-06, + 0.0002916138619184494, + 6.474537804024294e-05, + -4.2168914660578594e-05, + -0.0001572421460878104, + -0.0001808260421967134, + 0.0003783169377129525, + 0.0006611758726648986, + -0.00024065005709417164, + -3.956937507609837e-05, + -1.8554613916421658e-06, + -0.000813263701274991, + -2.1889944036956877e-05, + -3.1835046684136614e-05, + -0.0001477246405556798, + -0.0005626234924420714, + 1.9641272956505418e-05, + 6.494577246485278e-05, + 5.145816248841584e-05, + -0.00011902223923243582, + -7.737945998087525e-05, + 2.1878458937862888e-05, + -0.00038826055242680013, + -0.00019990306464023888, + 0.00030129417427815497, + -0.0003666410921141505, + 0.00038700210279785097, + 2.8440987080102786e-05, + 0.0003926483332179487, + -0.00037684699054807425, + 0.0003739554085768759, + -2.76011269306764e-05, + 0.0005943591822870076, + 0.00016360000881832093, + -0.00015949321095831692, + 0.00014206689957063645, + -0.001431508339010179, + -0.00012097474245820194, + 0.00024171282711904496, + 0.0006707955035381019, + 0.0001351329410681501, + 0.0002668928646016866, + -0.000236027073697187, + 0.00012537595466710627, + -2.3095972210285254e-05, + 0.00014890362217556685, + -0.00016300349670927972, + 3.863266101689078e-05, + -0.00023869685537647456, + 0.0005415222840383649, + -2.7972220777883194e-05, + 1.6465273802168667e-05, + 0.00044098158832639456, + 0.0004392183036543429, + -0.00019186659483239055, + 0.0002645238128025085, + 2.9521249871322652e-06, + -0.00046868447680026293, + -0.0011288656387478113, + 0.0006325540016405284, + 0.0005304586375132203, + -8.960010745795444e-05, + 0.0006914635887369514, + 0.00015803838323336095, + -3.857071351376362e-05, + 1.3400939678831492e-05, + -0.0017706998623907566, + -4.1125247662421316e-05, + -0.0033813221380114555, + -0.0006923030014149845, + -0.0001402382185915485, + -0.00046574193402193487, + 0.00017699658928904682, + -0.00020043346739839762, + 0.00018550448294263333, + -0.0021338281221687794, + 1.3758481145487167e-06, + 0.0001993840269278735, + 0.0003693132020998746, + -0.0005164366448298097, + -2.774464519461617e-05, + 0.00018810134497471154, + -0.00013037862663622946, + 0.0004848336975555867, + -2.3954185962793417e-05, + -0.000534256047103554, + -0.00023542637063656002, + 0.0005737009341828525, + -4.969995279680006e-05, + 0.000517473672516644, + 0.0007409683312289417, + 0.0014055868377909064, + -0.00025297264801338315, + 0.0003917145077139139, + 0.00010538063361309469, + 0.00017151959764305502, + 0.0006693565519526601, + -0.001768191927112639, + 0.00011014096526196226, + 0.00017772472347132862, + -0.00044061674270778894, + -0.00013234096695668995, + 0.0001342026371276006, + -4.6431596274487674e-06, + 0.00120869604870677, + -1.8599060922497301e-06, + 6.746605549778906e-07, + 0.00023453896574210376, + 0.00017334592121187598, + 2.032381780736614e-05, + -3.2200310670305043e-05, + 0.00020539075194392353, + 0.0001262504083570093, + 0.00017133288201875985, + 0.0003298151714261621, + -0.0004622548876795918, + 0.0009991193655878305, + -0.0002286713570356369, + -7.153730985010043e-05, + 0.00048687553498893976, + 0.0006726683932356536, + -8.572063961764798e-06, + 6.257435597945005e-05, + 0.0002075803349725902, + -0.0004549497680272907, + 0.0014425680274143815, + 9.75961665972136e-05, + -2.5004896087921225e-05, + -0.0005676486762240529, + -0.00013263987784739584, + -7.666186866117641e-05, + -0.0003036093548871577, + 0.0008686773362569511, + -0.0012115801218897104, + -0.0001523989049019292, + 0.0004285230243112892, + -0.00021597911836579442, + -0.0008015397470444441, + 3.0794897611485794e-05, + 0.00047047538100741804, + -0.0009543683845549822, + 0.0007068534614518285, + 1.826226434786804e-05, + -0.000334827316692099, + 0.00032058809301815927, + 0.0003712182806339115, + 1.3062071957392618e-05, + 0.0002664252242539078, + 0.0012503800680860877, + 0.0027084711473435163, + 1.6973948731902055e-05, + -1.2997134035686031e-05, + -4.7282344894483685e-05, + 0.0004970006411895156, + 0.00024981267051771283, + -0.0002678113232832402, + -4.014613750769058e-06, + 0.0009046674822457135, + -0.0007458583568222821, + 0.00045870899339206517, + -0.0007573228795081377, + 0.0005985862808302045, + -0.0007840405451133847, + -7.640478543180507e-06, + 0.00021300015214364976, + -3.050433770113159e-05, + -0.0003936955181416124, + 0.0003147709066979587, + 0.00043862321763299406, + -0.000275787606369704, + 1.3006990229769144e-05, + -0.00022413315309677273, + -0.0005782596999779344, + -0.00018792129412759095, + -9.768328891368583e-05, + 0.0008350174757651985, + -0.00027318918728269637, + 6.29664136795327e-05, + 0.0005944996373727918, + 7.871102570788935e-05, + -0.00043255393393337727, + -0.0013293338706716895, + 1.6500925994478166e-05, + 0.00027876082458533347, + -0.0001619534014025703, + -0.00010378781007602811, + -0.00024779263185337186, + 1.4571154679288156e-05, + -0.0006795862573198974, + 0.0008912456687539816, + -0.000521114154253155, + 3.8406415114877746e-05, + 6.409582056221552e-06, + -7.553973409812897e-05, + -0.0005766843678429723, + 0.0007344248588196933, + -4.3836687837028876e-05, + -9.856709948508069e-05, + -0.00034680654061958194, + -0.0001203828287543729, + -0.0001841983903432265, + -0.0006164266960695386, + -0.000193705185665749, + -0.00011743410141207278, + 0.000508346885908395, + -0.0016255046939477324, + 0.0005988707998767495, + 0.0005147027550265193, + -0.0013605828862637281, + 0.0003678997454699129, + 0.00021047337213531137, + 0.0002822005480993539, + -0.0008594647515565157, + 9.547193621983752e-05, + 0.00027174223214387894, + -0.0009630586137063801, + -3.27428529089957e-06, + 1.2299662557779811e-05, + 0.00022066972451284528, + 0.00011799789353972301, + 1.3740049325861037e-05, + 0.001265758997760713, + -0.00029728730442002416, + 0.00025365687906742096, + -0.00353543390519917, + 0.0013477165484800935, + 0.0003483434848021716, + -0.00186582887545228, + -0.0001604818826308474, + 3.114724677288905e-05, + -8.050249016378075e-05, + -0.00010068895062431693, + 0.00014860536612104625, + -0.0020506465807557106, + -0.0019015021389350295, + 0.00012595074076671153, + -4.038007682538591e-05, + -0.0001786490174708888, + 0.0005336921894922853, + 0.00020749992108903825, + 6.0611946537392214e-05, + -0.0007680414128117263, + 0.00011987413745373487, + -0.00021600005857180804, + -9.065585618373007e-05, + -0.0006341093103401363, + -3.4849566873162985e-05, + -0.00039815681520849466, + 0.0002512647770345211, + 0.0015055234543979168, + 0.00045104752643965185, + 4.140529199503362e-05, + 0.0001242861180799082, + -0.0007023948128335178, + 7.737438863841817e-05, + 0.0005500639090314507, + -1.5784984498168342e-05, + -3.637428017100319e-05, + -0.00039915612433105707, + -0.00026461650850251317, + -0.0002869382151402533, + 0.0007514974568039179, + -0.00019329243514221162, + 0.00015369258471764624, + -0.0005295706214383245, + 0.00011652427929220721, + -0.00010863621719181538, + 0.000800201902166009, + 0.0005015177885070443, + 3.508420559228398e-05, + 0.00012429439811967313, + 0.0006430011126212776, + 0.0001515174808446318, + -0.00044713832903653383, + -5.921076808590442e-05, + 0.0003531874972395599, + 3.330593972350471e-05, + -0.00014866904530208558, + 0.00012667577539104968, + 0.0005761521169915795, + -5.038452218286693e-05, + -0.00011199423897778615, + 0.00019593971956055611, + 2.851521276170388e-05, + 0.0002886406145989895, + 0.0001643223367864266, + 0.0003942738985642791, + 8.300146873807535e-06, + 0.00019159568182658404, + -0.0003318839590065181, + 0.0006302424590103328, + 9.523345397610683e-06, + -6.094017589930445e-05, + 0.0012760052923113108, + -4.299653483030852e-06, + -0.0003114966966677457, + -1.748750582919456e-05, + 0.0005978095578029752, + -0.00021394759824033827, + -0.0012869149213656783, + 0.00017054220370482653, + -2.424369813525118e-05, + -0.00032948891748674214, + 4.877919491264038e-05, + 0.00031285799923352897, + -0.0005762755172327161, + -4.7099914809223264e-05, + -0.0007427858072333038, + 0.0009508982766419649, + -1.2596919987117872e-05, + 0.0002941736311186105, + 0.0003202948719263077, + 0.0001669414050411433, + 0.00021376660151872784, + 0.0003604089724831283, + -9.375428635394201e-05, + 0.00011520645784912631, + 2.4546128685187796e-08, + -0.0014117496320977807, + 1.0126313100045081e-05, + -2.2170954252942465e-05, + 0.000527263036929071, + 0.0007790068630129099, + 0.00034729205071926117, + 0.00017697599832899868, + 0.00014569013728760183, + 0.00018954454571940005, + -0.00013477540051098913, + -9.21444152481854e-05, + -2.674272400327027e-05, + 0.00016430963296443224, + -8.653935219626874e-05, + 3.7936314356556977e-07, + -0.00020899549417663366, + 0.00021720876975450665, + 2.165801333831041e-06, + 0.00037667766446247697, + -8.94784097908996e-05, + 0.00013668558676727116, + 6.551101978402585e-05, + -2.7870863050338812e-05, + 0.0005119378911331296, + 4.7085090045584366e-05, + 0.0018409347394481301, + 1.611655534361489e-05, + -0.0002294272999279201, + 0.000596489931922406, + -1.9428422092460096e-05, + 0.0007878297474235296, + 0.0016857660375535488, + -2.394583134446293e-05, + 0.00010759210999822244, + -0.00020105951989535242, + 3.8234707062656526e-06, + -0.0004845178045798093, + 0.00020552902424242347, + 0.0007618509116582572, + -0.0006547906086780131, + 4.757382612297079e-06, + -0.0003350782790221274, + -0.00028714927611872554, + -0.0008406636770814657, + -4.3045420170528814e-05, + 9.149908146355301e-05, + 0.00010491006105439737, + 1.0341638699173927e-05, + 5.460810280055739e-05, + -1.5135355170059483e-05, + 0.00020974077051505446, + 1.0634298632794525e-05, + -4.477494439925067e-05, + 7.176632789196447e-05, + 0.00021445908350870013, + -0.00012338855594862252, + 4.877154788118787e-05, + -0.0001681847934378311, + -0.00029435293981805444, + -0.0006856528925709426, + -1.0248847956972895e-06, + 0.00032095349160954356, + -0.00010156090138480067, + 0.00021083845058456063, + 0.0013513410231098533, + 3.817932156380266e-05, + 0.0006065533380024135, + -0.00037384970346465707, + -0.00015357419033534825, + -0.00026258971774950624, + 0.0005288553657010198, + -0.00011062245903303847, + 0.0007866809610277414, + 0.00011223224282730371, + 5.500309998751618e-05, + -0.0001001570635708049, + -0.0003078081936109811, + -0.0005207244539633393, + -0.0012819342082366347, + -6.419776036636904e-05, + -0.0008638349827378988, + -0.000179903901880607, + 0.0002685310901142657, + -7.623789770150324e-06, + -4.4214772060513496e-05, + 3.6351917515276e-05, + 7.538784120697528e-05, + -0.00037877599243074656, + 0.0002622534811962396, + -0.0003795494558289647, + -0.00030258920742198825, + -0.00012657602201215923, + 6.551760452566668e-05, + -0.0005106908502057195, + 0.0006958094309084117, + -0.0005804348038509488, + 2.6804214940057136e-05, + -0.001205569482408464, + 0.0002601468004286289, + 0.000732972112018615, + -3.409487908356823e-05, + -7.980530790518969e-05, + 0.0008844833937473595, + -0.0009010073263198137, + 8.340834028786048e-05, + -0.00031020381720736623, + 0.00013608727022074163, + 8.007821452338248e-05, + 0.00013333637616597116, + 0.00025008758530020714, + -2.8869179004686885e-05, + 1.2171656635473482e-05, + 0.00022648522281087935, + 4.083418843947584e-06, + -0.00020731525728479028, + -0.00022061090567149222, + 0.00013461534399539232, + -0.00016337286797352135, + -0.0002115972456522286, + 0.0002542352885939181, + -0.0006712541799061, + -8.560407150071114e-05, + 0.00042045858572237194, + -2.6826299290405586e-05, + 0.0008806863334029913, + 4.386448927107267e-05, + 5.2295632485765964e-05, + -0.0009832081850618124, + 0.0007429303368553519, + 0.00044341300963424146, + -0.0003812565701082349, + 0.0004346920468378812, + 0.00023766241793055087, + -0.000209139208891429, + -0.0002534327213652432, + 4.778719448950142e-05, + -0.00011604450992308557, + -0.0005263130296953022, + 0.0007826240616850555, + 0.00013817426224704832, + 0.0014145862078294158, + -8.273723324236926e-06, + 2.0062918792973505e-07, + 0.00031207132269628346, + -3.975786967203021e-06, + -0.00020756761659868062, + 7.811041723471135e-05, + -8.60801083035767e-06, + -0.0002485887671355158, + -9.478774882154539e-05, + 0.00025842111790552735, + 1.3455699445330538e-05, + -0.00012490872177295387, + -0.00013421816402114928, + 2.895124453061726e-05, + 0.0007365450146608055, + 0.00024900323478505015, + 0.00018327974248677492, + -0.00028447809745557606, + -0.0032227144110947847, + -0.000125418184325099, + -0.000684513128362596, + -0.0009716378408484161, + 0.00022905274818185717, + 0.00037649384466931224, + -0.0002778180059976876, + 0.0009069827501662076, + 6.181230128277093e-05, + -0.00022380409063771367, + 6.222417141543701e-06, + -0.0008148301276378334, + 0.00034025407512672246, + 1.330583017988829e-05, + -1.5859473933232948e-05, + 0.00031333326478488743, + -2.909589238697663e-05, + -8.562142284063157e-06, + 0.000583281391300261, + 2.4179798856494017e-05, + 3.153043508064002e-05, + 0.0002339195489184931, + -0.0009930587839335203, + 0.0009487593197263777, + 0.0003896973794326186, + -0.0003166107344441116, + 2.7907832190976478e-05, + 0.0009596303571015596, + 3.3493293472020014e-07, + -0.00011668972729239613, + 0.0001481825311202556, + 1.5568581147817895e-05, + 1.751316085574217e-05, + -0.0006381391431204975, + -0.0009229576680809259, + 7.90349531598622e-06, + -0.00026780893676914275, + -0.000318269245326519, + -0.0001494999451097101, + 0.000283523288089782, + -1.980957131308969e-05, + -0.0019205581629648805, + 0.001175066689029336, + 0.00043152912985533476, + 0.0008056594524532557, + -7.5915700108453166e-06, + 0.0005054563516750932, + -0.000284388690488413, + 0.0004655084339901805, + -0.00017729730461724102, + -0.0003364550357218832, + 6.894949910929427e-05, + 0.0004336212878115475, + 0.0005367883713915944, + -8.417022036155686e-05, + 0.0008318547043018043, + 0.00012175594747532159, + -0.00045194034464657307, + 6.394261617970187e-06, + 6.190941348904744e-05, + -0.0002889365132432431, + 0.000857168051879853, + -6.059401493985206e-05, + -9.848503168541356e-07, + 6.938457954674959e-05, + 0.0004126447020098567, + -2.5393403120688163e-05, + 4.3717467633541673e-05, + -6.802951247664168e-05, + -0.0002505942538846284, + 0.0001660115085542202, + 0.0003698115178849548, + 1.3729276361118536e-05, + -0.0004114630864933133, + 0.00034181782393716276, + 0.0009945594938471913, + 0.0006387230823747814, + -0.00011404246470192447, + 9.768296149559319e-05, + -0.0031711470801383257, + 0.004650823771953583, + 0.00013536027108784765, + 9.292600225307979e-06, + 0.0006913483957760036, + -0.0001333927211817354, + -0.0015174379805102944, + -1.759000588208437e-05, + -0.0011478792876005173, + 0.0004500253708101809, + 7.208087481558323e-05, + -0.0012603148352354765, + 2.2225334760150872e-05, + 8.251066174125299e-05, + 0.00015868162154220045, + -0.0001800592872314155, + 0.00026155231171287596, + -2.9426450055325404e-05, + 0.0002781615185085684, + -0.0004703788144979626, + -0.00014206397463567555, + 0.0005961192073300481, + 9.26767970668152e-05, + 0.0009525686618871987, + -0.0019271844066679478, + 0.0003600739291869104, + 0.0006850819918327034, + 4.959104990120977e-05, + 0.0003811662900261581, + -0.0002553697268012911, + 3.507519750201027e-06, + 0.0002168176433769986, + 0.00015799190441612154, + 0.00164500018581748, + -0.00012952953693456948, + 0.0003063004114665091, + 0.00045480707194656134, + 0.00021567945077549666, + 0.00019191775936633348, + 0.0008899762760847807, + 2.9696659112232737e-05, + 0.0008365490939468145, + 0.0010663860011845827, + -7.439038017764688e-05, + -0.002713405294343829, + -4.2309357013436966e-06, + 0.0009076741989701986, + 1.0306025615136605e-05, + -0.00027605905779637396, + 0.0005883142584934831, + -0.0001932816521730274, + 0.0008535084780305624, + 0.00010505374666536227, + -0.0016991379670798779, + 3.3162177714984864e-05, + -2.446798316668719e-05, + -0.00027215576847083867, + -0.00015674765745643526, + 8.291949779959396e-05, + -0.0004423952486831695, + -0.0015937297139316797, + 0.0004383249906823039, + -0.00016682175919413567, + -0.0001474574819440022, + 0.00024920766009017825, + -0.0002260365872643888, + -0.0001499768259236589, + 6.805775683460524e-06, + 4.968655775883235e-05, + 0.00022504305525217205, + -0.00025782332522794604, + 0.000624440610408783, + -0.00013026002852711827, + 9.895002585835755e-05, + -7.665055818506517e-06, + 0.00023895082995295525, + -1.2004484233330004e-05, + 0.00019817662541754544, + -8.64395042299293e-05, + 0.00017386861145496368, + 8.692317351233214e-05, + -0.00010113541065948084, + 2.876277176255826e-05, + 0.0003419467539060861, + -3.4867091017076746e-05, + -2.311796743015293e-05, + -0.00010740803554654121, + 2.032840939136804e-06, + 0.0016301334835588932, + 7.099956178535649e-07, + 4.935347988066496e-07, + -1.9040802726522088e-05, + 0.00023132518981583416, + -0.00015287907444871962, + 9.900421719066799e-05, + -0.00022598593204747885, + -0.00012584440992213786, + -3.739807289093733e-05, + 0.000870491610839963, + -8.522420830558985e-05, + -4.4639215047936887e-05, + 5.209757546253968e-06, + -5.5414453527191654e-05, + -0.0004707934567704797, + 9.174907972919755e-06, + 0.0006281511159613729, + 0.00031391537049785256, + 0.000308303686324507, + 0.00019319652346894145, + -0.0003480090235825628, + 8.514042565366253e-05, + -0.0004756350244861096, + -0.0018252419540658593, + -7.585558341816068e-05, + -0.00032990783802233636, + -4.00094359065406e-06, + -0.00011515781807247549, + -4.8278012400260195e-05, + 0.0006182144279591739, + 4.04110542149283e-05, + -0.000809032644610852, + -9.255929398932494e-06, + 1.2796874216292053e-05, + 0.00042959849815815687, + -5.4750136769143865e-05, + -0.00019921927014365792, + -8.768799375502567e-07, + -1.292883371206699e-05, + -9.603325452189893e-05, + -0.00016405730275437236, + 0.0017054839991033077, + -0.0006248293211683631, + 0.00011234127305215225, + 0.00024809365277178586, + 0.00028506346279755235, + 0.00024063426826614887, + -6.439563730964437e-05, + -0.000610554707236588, + 0.00020079092064406723, + 0.0006844109739176929, + 0.0001466117100790143, + 0.00017056267824955285, + 0.00027547409990802407, + -1.2326442629273515e-05, + -6.274504994507879e-05, + -0.00022703345166519284, + 0.00027876824606209993, + 7.927107799332589e-05, + -2.6188743049715413e-06, + 0.0002377099881414324, + 1.911957770062145e-05, + -8.396780685870908e-06, + -0.0004690488276537508, + 9.776867955224589e-05, + 0.0003843448357656598, + 0.0009377554524689913, + -0.0004302741726860404, + -0.00010721352737164125, + -0.0004354867269285023, + -0.0006483710603788495, + -0.00015563743363600224, + 0.0003529238165356219, + 0.0006627838010899723, + -0.0001386803633067757, + 7.129559526219964e-05, + 1.0835790817509405e-05, + 0.0001499063946539536, + -0.00020443988614715636, + -6.4353589550592e-05, + -1.3881616723665502e-05, + -2.7611582481767982e-05, + 2.8319382181507535e-05, + -8.256985893240198e-05, + 0.0007543266983702779, + 3.2300179100275273e-06, + 0.001035986002534628, + 3.531130641931668e-05, + 0.0010286185424774885, + -5.766191679867916e-05, + 8.488166713505052e-06, + -0.0002038258098764345, + 7.357812864938751e-05, + -6.096166544011794e-05, + -0.0007840136531740427, + -0.0002423488040221855, + -0.0018535587005317211, + -0.00045332880108617246, + -6.819618283770978e-05, + -0.00027606263756752014, + 9.353065252071247e-05, + 0.0003930918755941093, + 4.1825678636087105e-05, + 0.0005243183113634586, + -0.0009819522965699434, + 0.0006347183370962739, + 0.0003881324955727905, + 0.00010944806854240596, + -0.0005324150552041829, + 1.6440706531284377e-05, + 2.534580562496558e-05, + 0.0004281689180061221, + 5.008554580854252e-05, + -1.359871748718433e-05, + 5.886423969059251e-05, + 0.0003090929822064936, + 0.00042517425026744604, + 0.0006049477378837764, + -0.0005515891243703663, + -5.654804772348143e-05, + 1.0076092621602584e-05, + -0.0006559976609423757, + -0.0008535401429980993, + 0.004339643754065037, + -0.0003350759798195213, + 9.776519436854869e-05, + 0.0002483539283275604, + -2.3853612219681963e-05, + 0.0024265486281365156, + -0.0007797881844453514, + -1.3711954238715407e-07, + 0.00032615012605674565, + 0.00021528838260564953, + -6.492451939266175e-05, + 0.00022453631390817463, + 0.00041780268657021224, + -4.092336894245818e-05, + -0.0001735928817652166, + -8.39636632008478e-05, + 0.0006654014578089118, + 4.772067040903494e-05, + -0.000911027891561389, + -7.983505201991647e-05, + 1.526392952655442e-05, + 0.0007674763328395784, + -0.00012804404832422733, + 9.850270726019517e-05, + 0.00010224019206361845, + 0.0006443402962759137, + 0.0008482701960019767, + -0.003461903892457485, + 3.76581447198987e-05, + 2.1206677047302946e-05, + -3.5291595850139856e-05, + 0.00010946018301183358, + -6.786543963244185e-06, + 0.0012727401917800307, + -0.00015069369692355394, + 9.327190127805807e-06, + 1.341206007055007e-05, + -1.120641854868154e-06, + 0.0016168016009032726, + -0.00011639230069704354, + 9.050989319803193e-05, + -0.0004898105980828404, + 4.025668022222817e-05, + 3.0552878005352113e-09, + -5.7357727200724185e-05, + -0.0008351879077963531, + -8.109347254503518e-05, + -9.469281212659553e-05, + -0.0005059220129624009, + 0.0005748133407905698, + -0.0005934565560892224, + -8.441084901278373e-06, + -0.0006599237094633281, + -4.563161201076582e-05, + 8.027735020732507e-06, + -8.163532038452104e-05, + -9.586558735463768e-05, + -4.5296103053260595e-05, + -4.9664435209706426e-05, + -0.0007363359327428043, + 0.00021624860528390855, + 0.0002610923838801682, + -6.80667653796263e-05, + -0.0009924450423568487, + 0.00024293331080116332, + 9.142591443378478e-05, + 2.0578601834131405e-05, + 6.949061207706109e-05, + 0.00029484619153663516, + 0.00025738734984770417, + -0.0005827192217111588, + 1.7958709577214904e-05, + -8.644625631859526e-05, + 1.6161387975444086e-05, + -0.0011729008983820677, + -0.0008560388814657927, + -3.790549817495048e-05, + 2.7252264771959744e-05, + -2.0915374321361924e-08, + -0.000511160702444613, + 0.0009899449069052935, + -0.0007947671110741794, + 6.326916263788007e-06, + -5.972527560516028e-06, + -6.0600585129577667e-05, + 0.00048485869774594903, + 9.387348836753517e-05, + -4.100795649719657e-06, + 0.00047514517791569233, + -0.0008838438661769032, + 0.00013875294825993478, + 1.4975376871007029e-05, + -0.0008994049858301878, + 0.0001734676625346765, + -0.000111613524495624, + 7.3769692789937835e-06, + -6.507329817395657e-05, + 0.001413842081092298, + 8.528657781425864e-05, + -2.91429705612245e-06, + 0.00012549223902169615, + -0.00011610568617470562, + -5.053610584582202e-05, + 0.0006923057953827083, + -0.0009316433570347726, + 2.782938099699095e-05, + 0.00036987249040976167, + -0.00015207605611067265, + -0.00011576016549952328, + -3.345042932778597e-05, + -0.0002653682604432106, + 0.0009870907524600625, + 0.0007170672761276364, + -0.00029093612101860344, + -3.5181605198886245e-05, + -6.467470666393638e-05, + -0.00038640116690658033, + -3.968579403590411e-05, + 0.0002649122034199536, + -0.002395245246589184, + -0.0008981529972516, + 0.00016112349112518132, + 0.00042978726560249925, + -9.133740604738705e-06, + 0.0002692503039725125, + -0.00011436697241151705, + 0.0012834094231948256, + 0.00015321669343393296, + 0.00024746364215388894, + -0.000300103856716305, + 0.0007202161359600723, + -0.00020588355255313218, + 9.430054888071027e-06, + 0.00022331626678351313, + -0.0008499433752149343, + -0.00164509704336524, + 0.0002663625928107649, + -0.0005438287043944001, + -0.001331193489022553, + 0.0001892053260235116, + 4.971235739503754e-06, + -1.3726180441153701e-05, + -0.0002784503740258515, + 0.0006075206911191344, + 5.245107240625657e-05, + -0.0005657966248691082, + -0.0012212697183713317, + -0.0019062948413193226, + 2.750893145275768e-06, + -0.0003895027039106935, + 0.0008657288271933794, + -0.0002769544371403754, + 0.0014698706800118089, + -0.0001538494834676385, + -2.1308374925865792e-05, + -3.8997466617729515e-05, + 0.00022558042837772518, + 2.5862846086965874e-06, + 0.0003155060112476349, + -1.1617061318247579e-05, + -0.00015828774485271424, + -1.923954641824821e-06, + -5.203136242926121e-05, + -5.731665169150801e-06, + -0.000252572848694399, + -0.0002642600447870791, + 0.0002120936114806682, + 0.000444782548584044, + 0.0004455089510884136, + -0.0001377329317620024, + -9.379853145219386e-05, + -0.00019462993077468127, + 6.292982288869098e-05, + -4.52145905001089e-05, + 0.00041945656994357705, + -0.000818043714389205, + 0.000817061576526612, + 9.330896318715531e-06, + 0.0015799024840816855, + 0.00021075595577713102, + 9.811971540329978e-05, + 4.341867315815762e-05, + 0.0007078584167174995, + 0.00038269354263320565, + -0.00033702378277666867, + 0.0001636465749470517, + -0.00027835791115649045, + 0.00018827270832844079, + -7.5900725278188474e-06, + -0.0008390608709305525, + -9.628292173147202e-05, + -9.033685637405142e-05, + -4.436809467733838e-05, + 2.3735836293781176e-05, + -0.0008645120542496443, + 7.65661898185499e-05, + -0.00016780619625933468, + -3.6705714592244476e-06, + 0.00017044282867573202, + 0.00011501847620820627, + -0.0004985436098650098, + 0.0006727116997353733, + 1.383343078487087e-05, + -0.0008847482968121767, + 2.2264770450419746e-05, + 0.0007240583072416484, + 0.00018760835519060493, + 9.015105752041563e-05, + -0.0004105757107026875, + 0.0001660120178712532, + -0.0002849439042620361, + 0.0006014465470798314, + 0.00017806811956688762, + -0.0006687461282126606, + 0.0001431481505278498, + -0.0001456127647543326, + 0.00026125615113414824, + 1.3198629858379718e-05, + -0.0010092431912198663, + 0.002893631113693118, + 0.00011604707833612338, + 0.0015451847575604916, + 0.00019459387112874538, + -0.00694012176245451, + 0.00012417082325555384, + -8.435970357822953e-07, + 0.0009206857066601515, + -0.00045538332778960466, + 0.0008520066039636731, + 0.0009911491069942713, + 0.0002657305740285665, + -0.000530273886397481, + 4.936778714181855e-05, + -0.0001746193738654256, + -0.0008170388173311949, + -0.001942890346981585, + 2.1949472284177318e-05, + 8.938834071159363e-05, + 0.0006863627349957824, + 5.988596603856422e-05, + -0.0002532092039473355, + 0.00022787756461184472, + -0.00014001780073158443, + -0.0007518890779465437, + 0.00023425137624144554, + 0.00037136327591724694, + -0.0005792670999653637, + -1.4268859558796976e-05, + 1.5678347153880168e-06, + -0.00042018204112537205, + 0.0002581519656814635, + -1.1926005072382395e-06, + -0.00017171648505609483, + 0.00013349592336453497, + 0.0005109115736559033, + -0.0001232170034199953, + 0.00041231425711885095, + 0.00020283338380977511, + 0.0004487105761654675, + -0.0008537599351257086, + -0.00045831321040168405, + -0.00022905613877810538, + 0.0018312676111236215, + -0.00014192935486789793, + 0.00010767795902211219, + 2.9232300221337937e-05, + -2.6889423679676838e-05, + -0.0004323151661083102, + 0.00021927716443315148, + -7.410743273794651e-05, + -0.00036491022910922766, + -8.481658733217046e-05, + 1.4845874829916283e-05, + -1.578742057972704e-06, + -5.551152571570128e-05, + -0.0013917399337515235, + 0.0002896099758800119, + 0.00031610517180524766, + -2.032067868640297e-06, + -6.538706657011062e-06, + -0.00032886522240005434, + 9.012346708914265e-05, + -0.0003314929490443319, + 5.9090987633680925e-05, + 0.0001836079463828355, + -9.905606566462666e-05, + 9.900344593916088e-05, + -2.6306157451472245e-05, + 5.8465648180572316e-05, + 0.001863053534179926, + 0.001798825804144144, + -0.002242919523268938, + -0.005791385192424059, + 0.00088705332018435, + 4.1565839637769386e-05, + -0.0009386849123984575, + 0.0002810328151099384, + 6.238999048946425e-05, + -8.913613669392362e-07, + -0.000305618392303586, + -0.00018137414008378983, + 0.00011176986299687997, + 0.00025417725555598736, + 0.0018666196847334504, + 6.50796719128266e-05, + -0.0002343641099287197, + -0.0004760922456625849, + -0.00016780814621597528, + -0.0007524999673478305, + -0.0007139426888898015, + -2.110048444592394e-05, + -0.00016342579328920692, + -0.0001791190734365955, + -1.3185156603867654e-05, + 0.002018584404140711, + -0.00016317229892592877, + 3.374775769771077e-05, + -0.0002892050542868674, + 3.918963557225652e-05, + -6.440946890506893e-05, + 6.912281969562173e-05, + 0.0004112703900318593, + -0.00023825379321351647, + -0.0011059932876378298, + -4.917598926112987e-05, + -8.479458983856603e-07, + -4.224857912049629e-05, + -2.4338096409337595e-06, + -9.299292287323624e-05, + -6.217273039510474e-06, + 6.844299787189811e-05, + 0.0004755995178129524, + 0.0007449726108461618, + 0.00022460054606199265, + -4.0557741158409044e-05, + 3.2666397942193726e-07, + -0.0002569798962213099, + 1.0344653674110305e-05, + 6.497457070508972e-05, + -0.00012002039147773758, + 0.00015164237993303686, + -1.8325838027521968e-05, + 0.0004505816614255309, + 0.00014579649723600596, + -8.375367906410247e-05, + -4.04444508603774e-05, + -0.0002723804791457951, + 0.0003620932693593204, + -0.0005062647396698594, + 7.57256057113409e-05, + 0.00026575897936709225, + -0.00043845453183166683, + 2.539766501286067e-05, + -0.0008529347833245993, + 0.00022508896654471755, + -0.0007724849856458604, + -5.002176476409659e-05, + -0.00015313344192691147, + -0.0002685153449419886, + 0.0010793402325361967, + -8.621763117844239e-05, + 0.0004489893326535821, + 0.00019674673967529088, + -2.3240570499183377e-06, + 3.183064336553798e-06, + 1.4983012306402088e-06, + -0.00035317018046043813, + -0.0013243922730907798, + -0.00011868294677697122, + 0.00047525568515993655, + 9.280451195081696e-05, + -0.0002441240503685549, + 3.984755676356144e-05, + -7.024679234746145e-06, + 0.0002278924366692081, + -0.00036229880061000586, + -4.4838336179964244e-05, + 8.938188329921104e-06, + -5.4615364206256345e-05, + -0.00012701028026640415, + 8.43253219500184e-05, + -0.00012099756713723764, + -8.156606054399163e-05, + 5.618387876893394e-05, + 0.0010481445351615548, + -0.00026835297467187047, + -0.00015771403559483588, + -8.209660882130265e-05, + 1.9737894035642967e-05, + 0.0002392295718891546, + -0.0003217312623746693, + 0.0008030047174543142, + -6.218613748387725e-07, + -0.0007230678456835449, + -0.0006036443519406021, + -2.3854383471189067e-05, + -0.0012752789771184325, + -0.0003826604806818068, + -0.0018894668901339173, + 0.0003675321931950748, + 0.00028049779939465225, + -0.0015657342737540603, + 0.0003688284778036177, + 0.0014125894522294402, + -0.00019288282783236355, + -1.1727445780707058e-05, + 8.342864020960405e-05, + 0.000478418922284618, + -0.00011840005026897416, + 2.8374855901347473e-05, + -0.00011050049943150952, + 0.00021690783614758402, + 0.0006276896456256509, + -1.1225227353861555e-05, + -0.0007406949298456311, + -0.00038617418613284826, + 0.000575645943172276, + 7.147596625145525e-05, + 0.0001733009412419051, + 0.0014954009093344212, + -0.00025920645566657186, + 0.00018518880824558437, + -0.0008094243239611387, + 0.00010960560757666826, + -4.270630233804695e-05, + -8.425164560321718e-05, + -0.0003305192512925714, + -0.0004952590097673237, + -8.18443459138507e-06, + -1.9770328435697593e-05, + -0.00021708130952902138, + -4.729525971924886e-05, + 9.161960406345315e-06, + -6.669268623227254e-05, + 1.2136485565861221e-05, + -0.0013323401799425483, + 0.0004601991968229413, + -0.0050128488801419735, + 5.503507418325171e-05, + -0.00011749735858757049, + -0.00043516710866242647, + 6.8738891059183516e-06, + -0.0009711117018014193, + -6.464454054366797e-05, + 7.040036871330813e-05, + 8.021384564926848e-05, + -5.715792212868109e-06, + 5.9140045777894557e-05, + -0.0003815569216385484, + 0.0008822910604067147, + -0.0004225804004818201, + 0.0018555872375145555, + 0.0002747491525951773, + -0.0002476452209521085, + -2.4705786927370355e-06, + 0.0002867399307433516, + -0.00020112516358494759, + 1.933360908878967e-05, + 0.0001508745044702664, + -2.1529779132833937e-06, + 0.00021298443607520312, + 0.0008198318537324667, + 0.001130895921960473, + 0.0002580474247224629, + 3.133953578071669e-05, + -0.0001976426865439862, + 0.0001376425934722647, + 0.00017085733998101205, + 0.00014885627024341375, + 0.00022512958094011992, + 0.00015980115858837962, + -0.00014823769743088633, + 0.00041014523594640195, + -4.4281419832259417e-05, + -0.0008659119484946132, + 0.000339818827342242, + 0.0010319969151169062, + 6.158903852337971e-05, + 0.00034627396962605417, + -0.0003151526616420597, + -0.0002472457126714289, + 0.000172310828929767, + -0.00019013197743333876, + 0.00013069066335447133, + -0.0006640047649852931, + 2.4166209186660126e-05, + 0.00016009154205676168, + -1.848489227995742e-05, + 0.00042659195605665445, + 8.316489402204752e-05, + -0.0007663851138204336, + -2.1958669094601646e-05, + -0.00013545296678785235, + -0.00026592292124405503, + 3.8435762689914554e-05, + 4.36647969763726e-05, + -5.696901280316524e-05, + 0.00010091897274833173, + 0.0008019753149710596, + -2.784044590953272e-05, + 0.00019727490143850446, + 0.0002730777196120471, + -0.0016208118759095669, + -0.0009486668277531862, + 0.0007830478134565055, + -0.0001227093453053385, + 0.0013481752248480916, + 0.0006861474248580635, + 3.248526627430692e-05, + 0.00015814662037882954, + 0.0006493706023320556, + -5.231711111264303e-05, + -0.0001678888511378318, + 0.00016523714293725789, + 0.0005225209752097726, + 0.0020451159216463566, + 2.4906237740651704e-05, + 0.0005790578434243798, + 0.0005290798144415021, + 3.6556120903696865e-05, + 7.11078682797961e-05, + 0.00036316303885541856, + -0.0001924993994180113, + -0.0002451129839755595, + 8.684457134222612e-05, + 6.753095658496022e-05, + -2.9450087822624482e-05, + 0.0004748416249640286, + 0.00012931156379636377, + 3.053090404137038e-05, + 0.0011545760789886117, + -0.0005295589799061418, + 2.4705786927370355e-06, + -3.215856850147247e-05, + -0.00015619622718077153, + 0.0004342012689448893, + -0.0005654025007970631, + -0.0005881522083655, + -0.00021847433527000248, + 0.000589319970458746, + -6.295755883911625e-05, + 0.0012240944197401404, + -0.00394857581704855, + 9.981457696994767e-05, + 0.00015927212371025234, + 0.00010750170622486621, + -5.168346888240194e-06, + 0.0007289370405487716, + -0.0009495319100096822, + -3.511177055770531e-05, + -7.942994125187397e-05, + -0.0009165882947854698, + -0.00016147892165463418, + 6.8976569309597835e-06, + 8.40036736917682e-05, + 0.00033178014564327896, + 4.9960723117692396e-05, + 0.000192698891623877, + 3.48748144460842e-05, + 0.0003318098315503448, + -0.00037843300378881395, + 1.7829543139669113e-05, + 0.0010230733314529061, + -0.000351851515006274, + -9.909093932947144e-05, + 9.778179082786664e-05, + 0.0012432433431968093, + 0.00042188691440969706, + -0.00048186408821493387, + -5.429855082184076e-05, + 0.00024501699954271317, + 7.4293307079642545e-06, + -3.9855099203123245e-06, + 0.00022185716079548, + -2.241919219159172e-06, + -0.00011222309694858268, + 0.0009184840600937605, + -1.3160995877115056e-05, + 0.00014300939801614732, + -0.0001075638720067218, + 0.0003909445949830115, + 0.0013607771834358573, + -2.7772714020102285e-05, + -0.00018913813983090222, + -4.630663534044288e-05, + 0.0006303300033323467, + -0.00012208870612084866, + 0.00019020866602659225, + -0.0042891958728432655, + 0.0011271648108959198, + -7.7268236253758e-09, + -0.00020244502229616046, + -9.029853390529752e-05, + 0.0008799062925390899, + -0.00013508750998880714, + 0.000989542226307094, + -0.00016595982015132904, + 0.0004007183888461441, + 0.001801187638193369, + 0.00023686839267611504, + -0.0004749075451400131, + 0.0001666453026700765, + -0.00017737004964146763, + -0.00013403609045781195, + 0.00010422529157949612, + 0.0008396680932492018, + 0.00010565874981693923, + -0.0027525227051228285, + 9.54527931753546e-05, + 0.0003326282312627882, + -2.263308851979673e-05, + 0.0002312168071512133, + -0.00010265511809848249, + -0.0005507139721885324, + 0.00014379069034475833, + -0.00017673347610980272, + -0.0007761589949950576, + 0.0002498052199371159, + -0.00016907276585698128, + 0.00017035860219039023, + 0.00010761592420749366, + 9.748861884872895e-06, + -0.00036096436087973416, + 0.00036707016988657415, + 0.0002352099254494533, + 5.36240395376808e-06, + 0.00023036077618598938, + 0.00019696317031048238, + -0.0018440033309161663, + 0.0010264274897053838, + 8.713336865184829e-05, + 0.00033018196700140834, + 2.0067859622940887e-06, + 0.00029676564736291766, + -0.0010196008952334523, + 0.0022209067828953266, + -8.916146180126816e-05, + -0.00018610720871947706, + 1.937010711117182e-05, + 0.0030117882415652275, + 0.0005352552980184555, + 7.97091779531911e-05, + 0.00019098162010777742, + -1.5476125554414466e-05, + 0.00020125712035223842, + 5.455509040075412e-07, + -1.0698228834371548e-05, + 0.0005615915870293975, + 0.0014561893185600638, + 9.294097253587097e-06, + 8.90341561898822e-06, + -0.0001958293141797185, + -0.0002000182867050171, + 0.0026066459249705076, + 0.00033286126563325524, + 0.00016785766638349742, + -1.1145863027195446e-05, + -0.0005359212518669665, + 2.1324765839381143e-05, + -4.541255975709646e-07, + 5.078584581497125e-05, + -0.00024297949858009815, + -2.0067844161530957e-05, + 0.00020186045730952173, + -0.001156421611085534, + -0.00013535890320781618, + -3.76874886569567e-05, + -0.000129113148432225, + -0.000701444165315479, + 0.00025436055148020387, + -7.782396278344095e-05, + -0.00018392581841908395, + 0.0002507409080862999, + -0.0018113540718331933, + 0.00036169798113405704, + -0.00025926498346962035, + 0.00042974704410880804, + 0.00040270594763569534, + 1.2260176163181313e-06, + 0.00029602908762171865, + -0.0010045950766652822, + -0.0005145791219547391, + 0.00030411925399675965, + -9.438583219889551e-05, + -0.00016182611580006778, + 0.001689274562522769, + -0.00044416735181584954, + 7.498978811781853e-05, + -4.068459475092823e-06, + -1.1483078196761198e-05, + -0.0013570321025326848, + -9.466236224398017e-05, + -0.0010054644662886858, + 0.0003133132413495332, + -0.000851732911542058, + -0.00023494446941185743, + 3.5438740724202944e-06, + -0.00026125568547286093, + -0.0010078821796923876, + 0.00012441258877515793, + -0.00035551967448554933, + 0.0004165481950622052, + 0.0002806267293635756, + -1.0034733577413135e-06, + 0.0003942532348446548, + -5.35126164322719e-05, + 8.861774176693871e-07, + -4.645266926672775e-06, + 0.0001987285795621574, + 0.00018081966845784336, + -0.001002588076516986, + -3.288788866484538e-05, + 0.0001120540255215019, + -0.0003107607481069863, + 6.536834553116933e-05, + 0.00040190000436268747, + -0.0013213198399171233, + -0.0005976908141747117, + -0.0007134844199754298, + 3.421970905037597e-05, + 0.0001869306870503351, + -0.0001343444746453315, + 0.0002671869588084519, + -6.449663487728685e-06, + -8.772309229243547e-05, + -0.0013582402607426047, + -0.0001430932170478627, + 5.637550930259749e-05, + -0.00029011399601586163, + -0.00018738361541181803, + 0.0002126870967913419, + -0.00040211144369095564, + -0.00016374746337532997, + -0.00024119978479575366, + -4.7209741751430556e-05, + 1.1513620847836137e-05, + 0.00011909318709513173, + 0.0002189141814596951, + -0.0013448999961838126, + 0.0002423971745884046, + -5.017977673560381e-05, + 0.0002412988687865436, + -2.6566026463115122e-06, + 0.00047525230911560357, + 8.078732776084507e-07, + -5.359910210245289e-05, + 1.9550456272554584e-05, + 0.0008378383936360478, + 9.948711522156373e-05, + -0.0006330955657176673, + 0.00016140441584866494, + -6.401402060873806e-05, + 1.981278728635516e-05, + 7.668208854738623e-05, + -0.00012241638614796102, + 0.00024213566211983562, + -0.00015055140829645097, + 0.00047437564353458583, + -1.31027427414665e-05, + 0.0003797766112256795, + 8.838202484184876e-05, + 0.00030329235596582294, + -6.272792961681262e-05, + 5.938251342740841e-05, + -2.6405845346744172e-05, + 4.275641913409345e-05, + 0.000813694903627038, + -0.0009613785077817738, + -2.1362779079936445e-05, + 0.0016262740828096867, + 0.00012615908053703606, + 0.0016519151395186782, + -0.0007128260913304985, + 0.0005797468475066125, + -0.00010507144179427996, + 2.1643534637405537e-05, + -0.0008892097976058722, + -0.0003481346066109836, + -5.1502720452845097e-05, + -0.00014255660062190145, + 6.244862743187696e-05, + -0.00027130747912451625, + 0.0008071421179920435, + -4.512977830017917e-05, + 0.0005482496926560998, + -0.0010274667292833328, + -1.753972719598096e-05, + -4.604482455761172e-05, + -7.267089131346438e-06, + -0.00019960837380494922, + 5.648485057463404e-06, + -0.000498480221722275, + -0.00044917972991243005, + 0.0003785865264944732, + 2.2730355340172537e-06, + -0.00024403957650065422, + -0.00041861089994199574, + -0.00043930026004090905, + -2.7327696443535388e-06, + 0.0008031015750020742, + 0.0008580840658396482, + 0.0001259366108570248, + 4.345066554378718e-05, + 1.6647136362735182e-05, + 0.00022896559676155448, + 0.0006149350083433092, + -0.0002504661970306188, + 1.5378000171040185e-05, + 0.0003346490557305515, + 0.00034333262010477483, + 9.763774869497865e-05, + -0.00011693826672853902, + -9.160955960396677e-05, + -1.979993612621911e-05, + -0.0005897650262340903, + 1.544352744531352e-05, + -0.0008154373499564826, + -0.001139409258030355, + -0.00030648926622234285, + 0.0007897191098891199, + -0.0008497724193148315, + -1.7436757843825035e-05, + 0.0009842452127486467, + -9.414095984539017e-05, + -8.288442586490419e-06, + -0.00016877622692845762, + 0.004792600870132446, + 0.00011457858636276796, + -0.00011052518675569445, + 8.828296995488927e-05, + 8.559025445720181e-06, + -0.0008978011319413781, + 9.725803101900965e-05, + 0.0008791664149612188, + 0.0001135693964897655, + 3.018520146724768e-06, + 0.00012549207895062864, + -0.0010152417235076427, + -0.000773815787397325, + -0.0002882427361328155, + -0.0008245801436714828, + -0.00017001574451569468, + 0.00017111167835537344, + 0.0004987913416698575, + -0.00032058751094155014, + -1.9693099602591246e-05, + 0.0001532269234303385, + -0.000603949767537415, + 0.0003711177851073444, + -0.0024318124633282423, + -2.8361379008856602e-05, + 0.0005883896956220269, + -0.00036995354457758367, + -0.0001243158185388893, + -0.00011358713527442887, + 0.0004246553871780634, + -0.0006523180636577308, + 2.686029802134726e-06, + 0.0002115583629347384, + 0.0017974809743463993, + 5.823002720717341e-05, + -1.5691857697675005e-05, + 0.00012008300836896524, + -1.3318407582119107e-05, + -0.00012437530676834285, + -0.00032376960734836757, + 9.724808478495106e-06, + 0.0002924252476077527, + -0.0001521801168564707, + -9.846370085142553e-05, + 0.0009623068617656827, + -0.00015683192759752274, + 0.000657105993013829, + 0.0019274926744401455, + -0.00012094046542188153, + 0.0014261914184316993, + -6.139308243291453e-05, + -3.49155961885117e-05, + 0.0002704370126593858, + 0.00037788558984175324, + -0.00031318989931605756, + -0.0008094271179288626, + -1.2940195119881537e-05, + 0.0003161479835398495, + -0.0018311372259631753, + -1.2529487321444321e-05, + 0.00017780347843654454, + -1.4107728929957375e-05, + -0.000196924404008314, + -0.00047993139014579356, + -3.618520713644102e-05, + 0.0007942395750433207, + 0.00021688082779292017, + -6.978640158195049e-05, + -7.654919318156317e-05, + -0.00019677571253851056, + 0.00020115244842600077, + -0.00026527029694989324, + 3.405563620617613e-05, + 0.0016964408569037914, + 0.0002297922328580171, + -1.6548341591260396e-05, + 0.00012020804570056498, + -4.01506622438319e-05, + -1.4405321053345688e-05, + 0.00021991650282870978, + 0.00018340178939979523, + 0.0002609186922200024, + -0.0030614736024290323, + -0.0005692291306331754, + -1.0910562195931561e-05, + -0.0005332253058440983, + -0.00015923392493277788, + -0.00165885454043746, + 3.0029115805518813e-05, + -0.0006275851046666503, + 0.0016556237824261189, + -1.3773752471024636e-05, + -9.204104571836069e-05, + -9.52376922214171e-06, + -0.00021035505051258951, + 0.0005178480641916394, + -0.00015675276517868042, + 0.00030508197960443795, + -0.00024345985730178654, + -3.427150295465253e-05, + 0.00022154585167299956, + 0.000820184824988246, + -2.2333644665195607e-05, + 7.991700840648264e-05, + 0.0008054685313254595, + 4.752118547912687e-05, + 0.00030266729299910367, + 0.00025600549997761846, + -0.0001520903460914269, + -0.0016491622664034367, + 1.61428251885809e-05, + 8.914438467400032e-07, + 0.0005532000795938075, + 9.069628140423447e-05, + -0.0005206201458349824, + -0.00020366952230688184, + -5.502513158717193e-05, + -1.3641047189594246e-05, + 0.0001098714565159753, + 0.0006958249723538756, + -8.154618990374729e-05, + 9.66865900409175e-06, + 0.00026536924997344613, + 0.0025309722404927015, + -0.0008953541400842369, + -0.0003488018992356956, + 0.0006592689896933734, + 0.00026673730462789536, + 1.180690378532745e-05, + 1.197625260829227e-05, + -0.00014767414540983737, + 6.714089249726385e-05, + -0.0002942999417427927, + 5.216483259573579e-05, + 0.00023164055892266333, + -0.0011264255736023188, + -0.00010398875019745901, + 0.00042971092625521123, + 2.0303599740145728e-05, + -0.00018278583593200892, + 8.874688433024858e-07, + -0.0019120178185403347, + 7.408759847749025e-05, + -0.00016869590035639703, + 1.595749199623242e-05, + -0.0007042037905193865, + 3.291292887297459e-05, + 0.0001286577171413228, + 0.0006615539896301925, + -0.00015888563939370215, + 0.0002061667328234762, + -0.0001842464553192258, + 0.0010854529682546854, + 3.947940967918839e-06, + -0.0003280379169154912, + 0.0004588497104123235, + -0.0004816085274796933, + 0.00019392049580346793, + -0.00021503568859770894, + -0.000173138891113922, + 0.00011288929817965254, + 0.00012037166015943512, + 0.0001792626135284081, + 0.00045172128011472523, + -0.0006368501926772296, + 0.00016247939493041486, + 0.00014350276615004987, + 0.00047234969679266214, + 5.9337351558497176e-05, + 0.0007166161085478961, + 0.0003052498504985124, + 1.0080749234475661e-05, + 8.404889740631916e-06, + -0.0002142320736311376, + 7.774615369271487e-05, + -0.001841242890805006, + 0.0008739348268136382, + -6.184663652675226e-05, + 0.0001761254679877311, + 0.00047288613859564066, + 3.773707794607617e-05, + 0.0036162948235869408, + 0.0016363138565793633, + 3.925646160496399e-05, + -0.00046105252113193274, + -4.781865754921455e-06, + -0.00034299338585697114, + -4.8683130444260314e-05, + 0.0016834852285683155, + 0.00029744766652584076, + -0.003352816216647625, + -0.0003165576490573585, + -6.488578219432384e-05, + 0.0011266724904999137, + -2.4552642571507022e-05, + 4.349372375145322e-06, + -0.00016127534036058933, + 0.000498918176162988, + 0.00010604728595353663, + 0.00012394880468491465, + 0.0018658649642020464, + -2.6019057258963585e-05, + -0.00024401502741966397, + 0.0003604857192840427, + 0.000409548229072243, + 5.256365693639964e-05, + -0.00011629400978563353, + -0.0004911407013423741, + 0.00047143324627541006, + -0.0006126060034148395, + -2.5222987460438162e-05, + 9.195129678118974e-05, + -0.00027557119028642774, + -0.0008257294539362192, + -6.890122313052416e-05, + -1.2865926692029461e-05, + 0.00017827683768700808, + 0.0004297230625525117, + 0.00013034512812737375, + -2.708573083509691e-05, + -0.0002277446328662336, + 2.21236223296728e-05, + 0.00010626063885865733, + 0.0002968449261970818, + -0.0003507622459437698, + 0.0005848008440807462, + -5.210287417867221e-05, + 9.807338210521266e-05, + 3.0763323593419045e-05, + 3.751528129214421e-05, + -0.0005577524425461888, + -0.00032408893457613885, + -3.5518398362910375e-05, + 0.00042945623863488436, + 0.0012726117856800556, + -0.00044517230708152056, + -0.001418059109710157, + -7.301970617845654e-05, + -0.0001521172234788537, + 9.179513290291652e-05, + -0.000725192716345191, + -0.0007718808483332396, + -6.726125866407529e-05, + -0.0002749456907622516, + -3.659890717244707e-05, + -8.150866051437333e-05, + -0.00022494775475934148, + -0.0005595224793069065, + -0.00039038024260662496, + -0.0010543048847466707, + -6.89336666255258e-05, + 8.363903179997578e-05, + 0.00024187579401768744, + -0.0002639071608427912, + -0.0002988209598697722, + 6.834145096945576e-06, + -0.0006625016103498638, + 0.001789186499081552, + 0.00024713476886972785, + -0.00032358296448364854, + 0.00014656185521744192, + -0.0005339123890735209, + -0.0005823916872031987, + -0.00029224020545370877, + -9.468630014453083e-05, + -0.00013893058348912746, + 0.0002824684779625386, + 0.00045963848242536187, + -0.0003804258885793388, + -0.00041930898441933095, + 0.0015368000604212284, + -0.001814174116589129, + -0.0003185135719832033, + 5.093145227874629e-05, + 0.00017567817121744156, + -0.00041985081043094397, + 0.0004035044403281063, + -0.00010741894948296249, + 0.00036310055293142796, + 0.00044054968748241663, + -0.0007843293715268373, + -6.487492646556348e-05, + 7.88818797445856e-05, + -0.00014483551785815507, + -0.00016205411520786583, + -9.82904020929709e-06, + -0.0006579264882020652, + 0.00013418520393315703, + 0.00020201980078127235, + 0.00034613371826708317, + 0.00046416372060775757, + 0.0017403499223291874, + 0.0014847922138869762, + -0.0003686931449919939, + -0.00021021446445956826, + -2.746814425336197e-05, + -0.0003065729106310755, + 0.00016736848920118064, + -0.0018200805643573403, + -0.0003826209285762161, + 0.00027849810430780053, + 0.0017551188357174397, + -8.036215149331838e-05, + 0.00026723468909040093, + -3.5527631553122774e-05, + 4.272142905392684e-05, + -0.0015886615728959441, + 0.00043498759623616934, + -3.1752897484693676e-05, + -0.00048149292706511915, + 0.0004683394217863679, + 0.0004313628887757659, + 0.00028250092873349786, + 5.2166924433549866e-05, + -0.0002831693855114281, + -0.00021098276192788035, + -0.0006398336263373494, + -0.00012784924183506519, + 0.00041287450585514307, + 5.7829842262435704e-05, + 0.0009432464721612632, + 1.0047671821666881e-05, + -1.8374596038484015e-05, + 7.870041008573025e-05, + -8.172822708729655e-05, + 0.0006038540159352124, + -0.00011114633525721729, + 6.83409598423168e-05, + -0.00012626845273189247, + 8.277432789327577e-05, + -0.001754674594849348, + -0.0001040473289322108, + -0.0003171873395331204, + 8.660559251438826e-05, + 0.0001747664500726387, + 3.591619315557182e-05, + -0.0004655923694372177, + 0.00034116939059458673, + 0.00018264268874190748, + 8.44062651594868e-06, + 8.53683304740116e-05, + -0.00016451340343337506, + -0.00015332836483139545, + 0.00023278204025700688, + -6.645086978096515e-05, + 0.00027567631332203746, + 9.114920248975977e-05, + -0.0008582919253967702, + 0.0001777203578967601, + 3.664341784315184e-05, + 0.00013193076301831752, + -0.0001919356145663187, + -0.00040154519956558943, + 0.0006159144686535001, + 0.00012375136429909617, + -0.0004128617001697421, + -0.00043865066254511476, + 0.0006677402998320758, + -2.0981135094189085e-05, + -0.0008976926328614354, + 0.000807940203230828, + 0.0007346400525420904, + 1.9184766642865725e-05, + 0.0002531564387027174, + -0.00013581188977696002, + 0.00017040492093656212, + 0.00010837939043994993, + -0.0005566015024669468, + 0.00045604410115629435, + -0.00015605454973410815, + -0.0002366448607062921, + 0.000615545257460326, + 0.00010240475967293605, + 7.831732364138588e-05, + 0.0025451991241425276, + 0.00011523111606948078, + -0.00036695468588732183, + -2.174622204620391e-05, + -0.0010437356540933251, + 0.00037159663042984903, + 0.0003356539527885616, + -0.00013103013043291867, + -0.00020561089331749827, + 0.0006402291473932564, + -0.00044888502452522516, + 3.8815775042166933e-05, + 0.00019567266281228513, + -0.0011260858736932278, + -5.3792060498381034e-05, + 3.980207566200988e-06, + 3.31378796545323e-05, + 0.00036557423300109804, + -0.0005682475166395307, + 0.00042346876580268145, + 0.00029442569939419627, + -0.00039618235314264894, + 8.920450636651367e-05, + 1.1763050679292064e-05, + -2.7729603971238248e-05, + -8.342118235304952e-05, + -4.390065078041516e-05, + -0.0003755854850169271, + -0.0001279828866245225, + 0.00017107806343119591, + 0.0004276192048564553, + 0.00019727199105545878, + -0.0003134762810077518, + -5.024001802667044e-05, + -0.00017319541075266898, + 0.0015580900944769382, + -7.083340460667387e-05, + -0.0004051717696711421, + -0.00011340031051076949, + 0.00015980409807525575, + 0.0005828833091072738, + 0.0012195301242172718, + -3.2088013540487736e-05, + 0.00012527326180133969, + 0.0007308658096008003, + 0.0002196303685195744, + 0.0001881369244074449, + 0.0003214899334125221, + -8.8107080955524e-05, + -7.813243428245187e-05, + -6.250747537706047e-05, + -0.00025198637740686536, + -0.00016991235315799713, + -0.00010200160613749176, + 0.00025359587743878365, + 0.00010685742017813027, + -0.0001847558160079643, + 0.00019964476814493537, + -0.00025299208937212825, + 0.00022915791487321258, + 8.547051402274519e-05, + -0.0003843928861897439, + -0.00039196564466692507, + 2.3616887119715102e-05, + -0.0007161672110669315, + -0.00018148403614759445, + 2.329831477254629e-05, + -6.578025931958109e-05, + -0.00043554080184549093, + -4.8537338443566114e-05, + -6.315878999885172e-05, + 0.0003273908805567771, + 8.595558028900996e-05, + 7.4794857027882244e-06, + -0.00021306512644514441, + -0.0003496927092783153, + 0.0005127557669766247, + 2.1900532374274917e-06, + -6.126334938016953e-06, + 9.4701157649979e-05, + 3.439326064835768e-06, + 0.00019844347843900323, + 3.241982631152496e-05, + 0.0007596325012855232, + -0.0006137528689578176, + 0.00023734898422844708, + -0.00029670033836737275, + 0.0032367652747780085, + -0.0003767023445107043, + 2.7484440579428338e-05, + -1.0133921932720114e-05, + 2.710182889131829e-05, + -5.525427695829421e-05, + 2.195431989093777e-06, + -8.56630431371741e-05, + 0.0005211954121477902, + -0.0008853685576468706, + -4.045216883241665e-06, + -2.9270089726196602e-05, + 0.00011598970741033554, + -0.0006021029548719525, + 0.0004006439121440053, + 0.0017937482334673405, + 3.722853580256924e-05, + -0.0007014856091700494, + 0.00036316370824351907, + -1.1302755410724785e-05, + 0.0005078570684418082, + 1.136884657171322e-05, + 0.0009013337548822165, + -7.371338142547756e-05, + -0.0001950859877979383, + -0.00017164103337563574, + 0.0012620550114661455, + 0.0011261582840234041, + -0.0007029196131043136, + 0.0003777654783334583, + 0.0002302601933479309, + -0.0002307878457941115, + -0.0004438991891220212, + -2.3117205273592845e-05, + -7.910917338449508e-05, + -0.0014213410904631019, + 5.743737006014271e-07, + -0.0006969554233364761, + 0.001566027058288455, + 0.00010264159209327772, + -0.00011273074778728187, + 5.504074215423316e-05, + 0.0013288498157635331, + 0.0003931339306291193, + -0.00018634696607477963, + -1.8330858438275754e-05, + -6.465850310632959e-05, + 0.0016993298195302486, + 0.0003908656944986433, + -0.0001058257112163119, + 0.000267852155957371, + -0.0007295098039321601, + 4.778301445185207e-05, + -4.300677028368227e-05, + 0.0009130362886935472, + 0.0002832853642757982, + -2.756447429419495e-05, + -0.0010284824529662728, + -0.0004952201852574944, + -0.000683844496961683, + 0.0002659821475390345, + -0.00033944385359063745, + 0.00043306974112056196, + -0.0005320525960996747, + -0.00010944248788291588, + 0.00043099781032651663, + 0.00016606964345555753, + -0.00011167747288709506, + 6.00378507442656e-06, + 0.00022203431581147015, + -0.00013722582662012428, + 0.00040579610504209995, + 0.0007597062503919005, + -0.00042097142431885004, + -0.0008098084945231676, + 0.0005151374498382211, + 0.00010088711860589683, + 0.00048218321171589196, + -0.0005926282028667629, + 3.665652548079379e-05, + 0.0003011228109244257, + -0.0019929572008550167, + 0.00010806119098560885, + -0.00036408385494723916, + -2.9034642921033083e-06, + -3.9686110540060326e-05, + -2.9502471079467796e-05, + 0.000533508718945086, + -0.0007059696945361793, + 0.00031064607901498675, + -0.00038389218389056623, + -2.1388526874943636e-05, + -5.5719323427183554e-05, + 0.00010342234600102529, + -0.00036049436312168837, + -9.260037040803581e-05, + -0.0002096959506161511, + -0.00013731626677326858, + 0.00017817955813370645, + -0.00034732281346805394, + 0.00022491443087346852, + 0.00035808005486615, + 0.00045687807141803205, + -7.79127367422916e-05, + 0.0015349476598203182, + -6.800565461162478e-05, + -0.0001834227005019784, + 0.0002947198518086225, + -0.00016151242016348988, + -2.1280278815538622e-05, + 0.0007768014911562204, + -5.512295047083171e-06, + -4.211461782688275e-05, + 0.00010510964057175443, + 0.00011164508759975433, + 0.0003192063304595649, + -5.348979811969912e-06, + -0.00016355050320271403, + -0.0006757817463949323, + -4.1000836063176394e-05, + -0.00024169724201783538, + 0.00013077285257168114, + -0.0010446390369907022, + 0.00017955682415049523, + -0.0018702591769397259, + 6.422971182473702e-06, + -0.0018462470034137368, + 0.0006992280250415206, + 5.025865903007798e-05, + -0.00173629866912961, + 6.95626440574415e-05, + -0.00197157496586442, + -0.000160242008860223, + 1.3719179605686804e-06, + 0.00017291957919951528, + 0.0006189151899889112, + 0.00023947391309775412, + 1.7531943740323186e-05, + 0.0006994197028689086, + -0.00017912268231157213, + 0.0002997622941620648, + 4.119424829696072e-06, + 0.0008282286580651999, + -0.0003365351294633001, + -0.00029500594246201217, + 0.0002786876284517348, + 0.0002333811135031283, + 7.968251884449273e-05, + 2.6107979920197977e-06, + -1.2245081052242313e-05, + 1.7524749637232162e-05, + -0.0001307549828197807, + 0.0009782176930457354, + 0.001445282599888742, + -4.369574526208453e-05, + 0.00015232214354909956, + 0.001313908607698977, + -0.00014325288066174835, + 0.0004234328807797283, + -4.043491207994521e-05, + -0.0003055815468542278, + 0.0001527122367406264, + -0.0003222591185476631, + 3.0850522307446226e-05, + -0.0002574500977061689, + 0.0008386661065742373, + 1.2917772096443514e-07, + -0.0007076046313159168, + 7.741677109152079e-06, + -4.7313568529716576e-07, + -0.0004362537292763591, + -0.0005061869160272181, + 0.0010491807479411364, + -0.0014620296424254775, + 0.000131160399178043, + 3.5517998185241595e-05, + -0.00010858716996153817, + -0.00014349710545502603, + 0.0006758695235475898, + 0.004011978395283222, + 0.0012580262264236808, + 0.00010707498586270958, + -6.873094207549002e-06, + -0.00030949804931879044, + 5.235290518612601e-05, + -0.0001711783406790346, + 0.0010131450835615396, + 4.462842480279505e-05, + -6.972666596993804e-05, + 0.00045251415576785803, + 0.00021404055587481707, + -0.0013031804701313376, + 0.0005139006534591317, + 0.00017466004646848887, + -0.0017176182009279728, + 1.027205780701479e-05, + -0.00046612173900939524, + 0.00010814728739205748, + -6.634253804804757e-05, + 5.330761996447109e-05, + -2.3833816158003174e-05, + 0.00020071973267477006, + 0.0008064068388193846, + -0.00012173262075521052, + 0.0002997671836055815, + 7.792816904839128e-05, + 0.0007237174431793392, + -9.940018935594708e-05, + -4.682044527726248e-05, + 0.0007018737378530204, + -0.00013701236457563937, + -1.954111212398857e-05, + -0.0001445011585019529, + 0.0008066121954470873, + -0.0002206103381467983, + 4.6262699470389634e-05, + -0.0006679782527498901, + 0.0003364402800798416, + -0.00014132440264802426, + -0.00047879727208055556, + -7.741463195998222e-05, + -0.00032084083068184555, + -0.0003476108831819147, + 0.006324136629700661, + 0.0015381531557068229, + 6.493699038401246e-05, + -0.0035514712799340487, + 4.166852522757836e-05, + 9.292993490817025e-05, + -3.5476830817060545e-05, + 0.0017960877157747746, + 0.0001308331120526418, + -0.0014669126830995083, + -0.0004742840537801385, + 0.0008500127587467432, + 6.454747199313715e-05, + -0.00033571766107343137, + 9.775556827662513e-05, + 9.111454710364342e-05, + -0.00012745792628265917, + -0.0003043616598006338, + 8.47868068376556e-05, + 0.0002742220531217754, + 0.0003798138059210032, + 0.0002825884730555117, + 0.00019603320106398314, + 6.9305247052398045e-06, + -0.0009190242271870375, + 0.00019478255126159638, + 0.00014539112453348935, + -0.0006712704780511558, + 0.0004725289763882756, + 0.00040800764691084623, + 0.0002224603231297806, + 0.000717038637958467, + 7.905091479187831e-05, + -0.0003541650658007711, + -3.4208555916848127e-06, + -0.0007832955452613533, + -1.6886946468730457e-05, + 0.00011931792687391862, + 0.00044101389357820153, + -7.842000195523724e-05, + 2.4762817702139728e-05, + 0.00013555432087741792, + -0.0002016512880800292, + -0.00043882091995328665, + 0.0008313574362546206, + 0.0003229066205676645, + -2.9725913918809965e-05, + 2.5452014597249217e-05, + -0.0005606963532045484, + 0.00013464924995787442, + -5.612597760773497e-06, + 9.815487283049151e-05, + 0.0008202900644391775, + -3.533157359925099e-05, + 0.0007754938560537994, + -0.0007626551669090986, + -0.0007199745159596205, + -0.0007879837066866457, + -0.00012241117656230927, + 3.252647729823366e-05, + 0.0001581637334311381, + 0.0001158714439952746, + 0.0003633676969911903, + -0.0006718311342410743, + -3.43121655532741e-06, + 1.5177327838955534e-08, + -0.0008709381800144911, + 0.00044029680429957807, + -0.00011118298425571993, + 3.234338146285154e-05, + 0.00032667708001099527, + 0.0001852479763329029, + 0.00017796174506656826, + -0.00026709973462857306, + -0.0003430454235058278, + 0.0012460009893402457, + 0.0006337279337458313, + -3.692135578603484e-05, + 4.900431667920202e-05, + 0.0008673809352330863, + -5.5276941566262394e-05, + -8.187898492906243e-05, + -0.0005364293465390801, + 0.0003324422868900001, + 4.8708585381973535e-05, + -0.0001528067368781194, + 8.297401654999703e-05, + 0.0004811429535038769, + 1.904458986246027e-05, + -0.0002648309455253184, + 0.0016666711308062077, + -0.00033997007994912565, + -2.1019075575168245e-05, + -0.000598590006120503, + 0.00019461390911601484, + 0.0002500391856301576, + -0.0023640345316380262, + -0.00045820052037015557, + -0.0005156706320121884, + -0.000419901916757226, + 4.553286271402612e-05, + -0.0002292956196470186, + 0.00011293264105916023, + 0.00023225817130878568, + -0.00021071340597700328, + 0.0004724069149233401, + -0.002557090250775218, + -0.00012945594789925963, + 0.002248570788651705, + 0.00021622054919134825, + -0.00023688847431913018, + 1.1759222616092302e-05, + -1.1255755453021266e-05, + -9.63162092375569e-05, + 4.398727469379082e-05, + -0.00033114079269580543, + 8.130381502269302e-06, + 0.0008394389878958464, + 2.860929498638143e-06, + -3.429779826547019e-05, + -0.00012366336886771023, + -0.00028681757976301014, + -8.036387589527294e-05, + -1.0841009498108178e-05, + 0.0004610567120835185, + 3.077729343203828e-05, + -0.0017744158394634724, + -0.00014182548329699785, + 1.3185772331780754e-05, + -0.0008518968243151903, + 0.00293117668479681, + -0.0007735357503406703, + 7.345765334321186e-05, + -3.051150451938156e-05, + -0.0008743341895751655, + 0.0003590926935430616, + -0.00033072574296966195, + 7.343692413996905e-05, + 6.996207230258733e-05, + 0.0016117128543555737, + -0.00011089714098488912, + 4.3775380618171766e-05, + 0.0001229575282195583, + -0.00037962626083754003, + -1.489516876063135e-06, + -1.8993514458998106e-05, + 0.0002689270186237991, + -0.0003661466471385211, + -6.769388710381463e-05, + -0.0003427500487305224, + -0.0001295266265515238, + 0.00023909816809464246, + -1.859839539974928e-05, + -0.0017995075322687626, + -1.4061302863410674e-05, + 0.000305743858916685, + 0.00016722230066079646, + 0.00039843382546678185, + 7.786277819832321e-06, + -9.39950259635225e-05, + -7.016048766672611e-05, + -0.0014854534529149532, + 0.00020795146701857448, + 0.00033756098127923906, + 0.00017856019258033484, + -0.0013483607908710837, + -0.0003393201041035354, + -8.720228652236983e-05, + 0.0008908209856599569, + -0.001650374848395586, + -0.00045251657138578594, + -0.00031051476253196597, + -0.0014584073796868324, + 0.0007637089001946151, + 0.0003101066977251321, + -0.00014904679846949875, + -5.590555156231858e-05, + -0.00034740776754915714, + 0.00019843809423036873, + 7.395928696496412e-05, + -0.0002427771978545934, + -0.0004403252387419343, + 0.00047983700642362237, + 0.0002405139966867864, + 0.0003707375726662576, + 0.00013159928494133055, + 0.0005107085453346372, + 0.00014675605052616447, + -0.0004327247152104974, + 8.733242430025712e-05, + -2.2439231543103233e-05, + 0.00025113255833275616, + 0.0005936648813076317, + 0.00010975860641337931, + 0.0005709294346161187, + -5.752621291321702e-05, + -0.0009090289822779596, + 0.00018125950009562075, + -0.0001313811808358878, + -8.121385326376185e-05, + 0.00018847214232664555, + 0.0003353329375386238, + 0.0008927893359214067, + -0.001771054696291685, + -1.4543933502864093e-05, + 0.001329470775090158, + 7.4674331699498e-05, + 2.611109994177241e-05, + -5.4925363656366244e-05, + 4.924552922602743e-05, + 0.00018165241635870188, + 0.0016194512136280537, + 0.0004637586825992912, + 9.751330253493506e-06, + 0.00030756756314076483, + -0.0010546038392931223, + -5.888869418413378e-05, + 3.6885459849145263e-05, + 7.679314148845151e-05, + 2.9648599593201652e-05, + 0.00039483385626226664, + 0.0002623960026539862, + -0.00033137560239993036, + 0.0004968555876985192, + 0.0005504909204319119, + 0.0001783977641025558, + 6.250488513614982e-05, + -0.0004994891351088881, + -4.336865458753891e-05, + -0.00019284831068944186, + 7.505452686018543e-06, + 0.0001472676231060177, + -0.00019932865689042956, + -0.0005796647164970636, + -2.6547575544100255e-05, + -3.3572810934856534e-05, + -0.0007654665387235582, + 0.00028602505335584283, + 0.0009330630418844521, + 0.001399164437316358, + -7.121053931768984e-05, + -0.0002595821279101074, + -1.1395051160434377e-06, + 0.00041456182952970266, + -0.0002308960974914953, + -3.287327490397729e-05, + 0.000777269946411252, + 0.00010561299131950364, + -1.6986336049740203e-05, + 1.7969914551940747e-06, + -0.0015545622445642948, + -0.00043547607492655516, + -0.0003561809426173568, + -0.0009388893959112465, + -0.00023243605392053723, + -6.36694630884449e-06, + -7.152544185373699e-06, + 0.0001630932092666626, + 0.00036446709418669343, + 9.708209108794108e-05, + -0.00010084882524097338, + 0.0006577984313480556, + -7.521884526795475e-06, + 2.09722165891435e-05, + 0.0005612552631646395, + -0.00019651699403766543, + 0.0003228700952604413, + 1.4985126654210035e-05, + -0.0004885884700343013, + -2.1074714823043905e-05, + 0.0005055390065535903, + 0.0003482355095911771, + -2.0128705727984197e-05, + 0.00013899969053454697, + -0.0005550450878217816, + -0.0002546904725022614, + -5.0902228394988924e-05, + 3.1641573059459915e-06, + 2.9158583856769837e-05, + 0.0001543239050079137, + -0.000133662048028782, + 0.001635991269722581, + 0.00024478143313899636, + -0.00122662668582052, + 0.0002820464433170855, + -0.0003074289415962994, + 0.0010477883042767644, + 0.0007069673156365752, + 0.0007533636526204646, + -7.765129339531995e-06, + -0.00024808678426779807, + -0.00043543014908209443, + 0.00010642065171850845, + -4.514906686381437e-05, + 0.0014485432766377926, + 6.650698196608573e-05, + -3.045326411665883e-05, + -0.00013575261982623488, + 3.0648402571387123e-07, + -3.879001451423392e-05, + 0.00033130947849713266, + 3.0362160032382235e-05, + -5.296496601658873e-05, + -0.0005918071838095784, + -0.0007243954460136592, + 0.002208553720265627, + 0.0005974696250632405, + 4.736937989946455e-05, + -6.27250483375974e-05, + 0.0002817960630636662, + 0.00294134090654552, + -0.0006349838222377002, + 1.8110440578311682e-06, + 0.0002675976720638573, + -0.00019651642651297152, + 0.0012805670266970992, + 2.7333223897585412e-06, + -2.8352404115139507e-05, + 0.00038192339707165956, + 0.0003377657849341631, + -0.0007459904882125556, + 0.0007009041728451848, + 7.42531701689586e-05, + -4.175727553956676e-06, + -0.0002561223809607327, + 2.6844150852411985e-05, + -0.0002062848216155544, + 0.0003868444764520973, + 0.0016835262067615986, + 0.0009496517013758421, + 0.00020143826259300113, + -0.0008967106696218252, + -0.00024745173868723214, + -0.0006786672165617347, + 0.0003463758039288223, + 2.8182335881865583e-05, + 0.0009646306280046701, + 0.0005071904743090272, + 0.00037469237577170134, + 0.0004746152844745666, + 0.0002640395541675389, + -0.0007613555644638836, + 3.2929558074101806e-05, + -0.00012139205500716344, + 0.00011982835712842643, + -0.0005781716899946332, + 0.0001578380324644968, + 2.7433598006609827e-05, + -4.04866696044337e-05, + -0.0001721887820167467, + 0.0007183586130850017, + -0.00010040484630735591, + -0.0005686563090421259, + -6.507573561975732e-05, + -0.000897472957149148, + 0.0003575916343834251, + -0.00025425670901313424, + -0.000749733648262918, + -0.0002408993022982031, + -0.0004358898149803281, + 5.140190478414297e-05, + -0.0007190002943389118, + -8.307859388878569e-05, + 3.748379094759002e-05, + -4.3487601942615584e-05, + -2.9598184482892975e-05, + 4.219546462991275e-05, + -5.122620859765448e-05, + 0.0001974635961232707, + -0.002555368933826685, + -0.00019028274982701987, + -1.2840196177421603e-05, + 5.716873420169577e-05, + -2.1579178792308085e-05, + -1.1620128134381957e-05, + -0.00029745567007921636, + -0.001024196157231927, + -0.0005938399699516594, + 0.001744853681884706, + -0.0005108175100758672, + -0.001844738144427538, + 8.837362838676199e-05, + -0.00015111433458514512, + -0.0009073799010366201, + -0.0001199089310830459, + 0.0007273211376741529, + 0.0011170220095664263, + 0.0006821401184424758, + 7.255725358845666e-05, + -0.00011768761032726616, + -0.00017721221956890076, + -0.0007463443325832486, + 0.00023660871374886483, + 6.324607238639146e-05, + 0.0012078360887244344, + 2.0195058823446743e-05, + 0.00011145407188450918, + -0.00014010828454047441, + -0.0009275844786316156, + -0.0012495857663452625, + 7.347665018642147e-07, + 0.0005147394840605557, + -0.00019540105131454766, + -0.000541041954420507, + -0.0008868153672665358, + 4.862968853558414e-05, + 0.0006580096087418497, + 6.349110481096432e-05, + -0.000639087229501456, + 8.293730934383348e-05, + 0.0005918104434385896, + -0.0015996205620467663, + -0.0016338317655026913, + 0.00046883837785571814, + 0.0002684482897166163, + -0.0013412755215540528, + -0.00014080258551985025, + 5.142285954207182e-05, + 0.00019923706713598222, + -0.00032907217973843217, + -0.0004743490135297179, + 9.882300219032913e-05, + 6.408525223378092e-05, + 0.00356344785541296, + -3.5842094803228974e-05, + -3.120367182418704e-05, + -0.00038988798041827977, + -6.118085730122402e-05, + 0.0011293975403532386, + -0.0014016948407515883, + -8.965214510681108e-05, + 0.00016059764311648905, + 0.000227837183047086, + 0.00028380504227243364, + -0.0001300185249419883, + 0.0006780207040719688, + -0.00028907941305078566, + 1.9197186702513136e-05, + -0.00013111905718687922, + 0.0005640114541165531, + 0.00020600814605131745, + 0.0012950965901836753, + 0.000381030811695382, + 3.343705657243845e-06, + -1.458860879210988e-05, + 0.0019088712288066745, + -0.00020783209765795618, + -0.0004064722452312708, + -0.00024020601995289326, + -0.00040552133577875793, + -0.0008780693169683218, + -1.610649997019209e-05, + 0.000289454183075577, + 0.001629950013011694, + -0.0007747430936433375, + 4.763288961839862e-05, + -0.0007168020238168538, + -0.0001664128212723881, + -4.646929482987616e-06, + -7.748160714982077e-05, + 0.00011875325435539708, + 4.3453648686408997e-05, + 0.0005145544419065118, + -0.00033902243012562394, + 0.0009177777101285756, + -0.00020433327881619334, + -0.00022236489166971296, + -2.1570765511569334e-06, + -0.00014296233712229878, + -0.00026828382397070527, + -2.807740656862734e-06, + 0.0007080051000230014, + -0.000822155037894845, + -5.2002007578266785e-05, + -8.615780825493857e-05, + 0.0008830584702081978, + -4.01623074139934e-05, + -2.398626929789316e-05, + 0.0024175909347832203, + -0.0003662492090370506, + -0.0008719617035239935, + -7.106083648977801e-05, + -0.00020207073248457164, + -5.291110937832855e-06, + 0.0001267586776521057, + -4.9057023716159165e-05, + 0.00028286740416660905, + 0.00036894649383611977, + 0.0023223618045449257, + 0.00035924333496950567, + 2.0575493181240745e-05, + -0.0003459638392087072, + 8.804557000985369e-05, + 0.00032857232145033777, + 0.00032378811738453805, + 0.00021309139265213162, + -0.0001494447933509946, + -0.00018374258070252836, + 0.0008350193384103477, + 0.0004539735382422805, + -4.575451021082699e-05, + -0.0001590465399203822, + -0.0001701294822851196, + -0.0002084066509269178, + -3.626969919423573e-05, + -9.121072798734531e-05, + -0.00015034970419947058, + -8.112123032333329e-05, + 0.00020148820476606488, + 0.0002952851646114141, + -0.00023537833476439118, + -3.335760993650183e-06, + 0.00010643521090969443, + 0.0003140015178360045, + -1.900715142255649e-05, + 1.028598035190953e-05, + 0.0007041312055662274, + -2.7436648451839574e-05, + -0.0007363761542364955, + 0.0006126559455879033, + -0.00016433754353784025, + -7.26650541764684e-05, + 0.00026032436289824545, + 0.0007173859630711377, + -0.0006154595175758004, + -0.00012307405995670706, + 1.4212398127710912e-05, + 0.00018747878493741155, + -0.00037990891723893583, + -0.0004378209123387933, + 2.164271609217394e-05, + -0.0005256041185930371, + 0.00023051274183671921, + 0.0006033108802512288, + -0.0004950895090587437, + -3.9889022446004674e-05, + 0.00035211589420214295, + 9.246572153642774e-05, + 0.0001488745620008558, + 0.0015500165754929185, + 0.0003068172954954207, + 1.7659142486081691e-06, + 0.000126245227875188, + 0.0002551465586293489, + 0.002536315470933914, + -0.0001934099564095959, + 3.568582906154916e-05, + 0.00019969667482655495, + -2.5993242161348462e-05, + -0.000725145626347512, + -0.00011916110815946013, + -0.0007036495371721685, + -0.00027759192744269967, + -3.63270883099176e-05, + 0.00032941490644589067, + -0.003079637186601758, + 0.0013974042376503348, + 0.0004982614191249013, + -0.0002191700041294098, + -0.00046390751958824694, + -0.0006606982788071036, + -4.5644304918823764e-05, + -0.0013708894839510322, + -4.3679614464053884e-05, + -5.1625975174829364e-05, + -0.0008979851845651865, + -0.0008573048398829997, + -0.0006672032759524882, + 0.00015733836335130036, + -1.119010539696319e-05, + 0.003254226641729474, + -1.3053007933194749e-05, + 0.00010744298924691975, + 0.00039276794996112585, + -0.0001029331615427509, + 0.00045530739589594305, + -0.0002272399578941986, + 0.00029708098736591637, + 3.0119168513920158e-05, + -0.0006337121012620628, + 0.00035180916893295944, + -3.254603507230058e-05, + 3.400301284273155e-05, + -0.0015307511202991009, + -0.00023260711168404669, + -0.0002499537658877671, + -0.00014807426487095654, + 0.0006344057619571686, + 0.0004445243685040623, + 0.0008819557842798531, + -1.0255726010655053e-05, + 2.4699516870896332e-05, + -0.0008722187485545874, + -0.0006520218448713422, + 0.00022883241763338447, + 0.0006168727995827794, + -3.213802847312763e-05, + -0.0001245431340066716, + -0.0005979385459795594, + 0.0008254877757281065, + 0.0006616857717745006, + -0.0001451096177333966 + ] + ], + "coordinates": [ + [ + -1.0, + 3.5381239626985916e-07 + ], + [ + 0.9999992251396179, + 3.538127089086629e-07 + ] + ], + "explained_variance_ratio": [ + 1.0, + 1.2518341940305489e-13 + ] + } + } + }, + "summary": { + "cluster_count": null, + "concept_count": 2, + "layer_count": 1, + "pca_components": 2 + }, + "vector_space_kind": "story" +} \ No newline at end of file diff --git a/papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/results/emotion_space_results.json b/papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/results/emotion_space_results.json new file mode 100644 index 0000000..e309262 --- /dev/null +++ b/papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/results/emotion_space_results.json @@ -0,0 +1,98450 @@ +{ + "feature": "story_residual", + "kind": "emotion_vector_space_result", + "layers": { + "16": { + "concepts": { + "happy": { + "count": 2, + "norm": 23.456684112548828, + "raw_vector": [ + 0.20501106977462769, + 0.04827070236206055, + 0.13278664648532867, + 0.07340299338102341, + 0.2845379114151001, + -0.16258399188518524, + 0.035768695175647736, + -0.2102612853050232, + 0.07161921262741089, + -0.3059619665145874, + -0.18034356832504272, + -0.456941694021225, + -0.06863738596439362, + -0.21979889273643494, + 0.24798405170440674, + -0.028408125042915344, + -0.06082974746823311, + 0.20299281179904938, + 0.34854021668434143, + -0.3225104808807373, + -0.1143629252910614, + 0.012046472169458866, + -0.12810713052749634, + 0.4094785749912262, + -0.025795958936214447, + -0.16052700579166412, + 1.1983100175857544, + 0.018736455589532852, + 0.018784428015351295, + 0.16581225395202637, + 0.1176789179444313, + 0.744814395904541, + -0.3600875735282898, + -0.27648645639419556, + -0.03027833253145218, + -0.0330488383769989, + -0.08469492197036743, + 0.38836202025413513, + 0.20098711550235748, + 0.055929288268089294, + 0.49123814702033997, + -0.10196217894554138, + 0.0348147451877594, + 0.003901861608028412, + -0.20242050290107727, + 0.06858436018228531, + -0.0023877634666860104, + -0.1461428552865982, + 0.14622721076011658, + 0.01625628024339676, + -0.046295177191495895, + 0.41976895928382874, + -0.25467512011528015, + 0.051060572266578674, + -0.8287142515182495, + 0.15751157701015472, + -0.1785644292831421, + -0.005089890211820602, + 0.6906075477600098, + -0.24882449209690094, + -0.1611505150794983, + 0.3108488917350769, + -0.4946172535419464, + 0.11921057850122452, + -0.2655225098133087, + 0.20224812626838684, + -0.005143467336893082, + -0.4128188490867615, + -1.2809394598007202, + -0.2434873878955841, + -0.23008885979652405, + 0.05072280019521713, + 0.10757863521575928, + 0.2639315128326416, + -0.7728264331817627, + -0.4149637222290039, + 0.2855685353279114, + 0.2032434493303299, + 0.06312384456396103, + 0.16768109798431396, + -0.7525904178619385, + 0.17163191735744476, + -0.19272208213806152, + 0.15143467485904694, + -0.3116518259048462, + -0.020244017243385315, + -0.04176752641797066, + -0.15265333652496338, + -0.004366599023342133, + 0.1814839243888855, + 0.4049859941005707, + 0.337014377117157, + 0.22211895883083344, + -0.9171202182769775, + 0.06863602995872498, + 1.2432665824890137, + 0.0053827762603759766, + 0.39978519082069397, + -0.25770866870880127, + 0.0016045942902565002, + 0.11828441172838211, + 0.11713778227567673, + 0.3451298475265503, + 0.7015256881713867, + 0.02178521454334259, + 0.2731482684612274, + 0.045768193900585175, + -0.04008527100086212, + 0.21079859137535095, + 0.007994383573532104, + -0.13688290119171143, + -0.10625917464494705, + 0.2831679582595825, + -0.2793363332748413, + -0.15522396564483643, + -0.006116211414337158, + -0.08249425143003464, + 0.5674718022346497, + 0.2814480662345886, + -0.18995045125484467, + -0.2712332308292389, + -0.2931807041168213, + -0.5551297068595886, + 0.27179068326950073, + 0.01740444451570511, + 0.40364864468574524, + -0.3292849063873291, + 0.2898414731025696, + -0.06238150596618652, + -0.1770487129688263, + -0.6376319527626038, + 0.0320642851293087, + -0.06301257014274597, + -0.0825691968202591, + -1.0142509937286377, + -1.0168485641479492, + -0.05615513026714325, + 0.06340695917606354, + 0.23968392610549927, + -0.3345473110675812, + -0.2326795756816864, + -0.2808043956756592, + 0.8807342052459717, + -0.32056742906570435, + -0.20977509021759033, + -0.1753356158733368, + -0.14885413646697998, + -0.20990338921546936, + 0.1710490882396698, + -0.46119970083236694, + -0.03815709799528122, + 0.09961413592100143, + -0.1957506686449051, + 0.4236794412136078, + -0.3361886143684387, + -0.35512906312942505, + -0.005551889538764954, + 0.22918596863746643, + -0.022975003346800804, + -0.3461208939552307, + 0.12914632260799408, + 0.1541460007429123, + 0.026373080909252167, + -0.17788968980312347, + -0.22326421737670898, + 0.06040491163730621, + 0.2618911862373352, + 0.769168496131897, + 0.12716400623321533, + -0.3242504596710205, + -0.6722795367240906, + 0.3882414698600769, + 0.5766780376434326, + 0.32759302854537964, + -0.03974355012178421, + 0.6596860289573669, + 0.1277908980846405, + 0.31239691376686096, + -0.22474126517772675, + 0.16511443257331848, + -0.4766159653663635, + -0.3138878047466278, + 0.04826975241303444, + -0.029934808611869812, + -0.05785500258207321, + -0.14411409199237823, + -0.20053890347480774, + -0.03706096112728119, + -0.14533624053001404, + 0.1515289545059204, + -0.29874080419540405, + -0.43183374404907227, + -0.9420625567436218, + -0.08223358541727066, + 0.02284415066242218, + 0.07999575138092041, + 1.5343343019485474, + 0.06484076380729675, + 0.2813624143600464, + -0.37770184874534607, + -0.9314046502113342, + 0.09793546795845032, + 0.14075002074241638, + 0.11751095950603485, + -0.15774653851985931, + -0.03005933202803135, + -0.03314278647303581, + -1.3007723093032837, + -0.49481916427612305, + -0.045923247933387756, + -0.020492099225521088, + 0.09705523401498795, + 0.06959237158298492, + 0.2729959487915039, + 0.1098557561635971, + -0.40059685707092285, + -0.13940784335136414, + -0.07584118098020554, + -0.7203409075737, + -0.2694949507713318, + 0.015041034668684006, + 0.13612286746501923, + -0.13289235532283783, + 0.019615907222032547, + -1.139103651046753, + 0.480294406414032, + 0.351223886013031, + 0.19569623470306396, + -0.03866305947303772, + -0.7144817113876343, + 0.005168452858924866, + -0.007086105179041624, + -0.016805410385131836, + 1.0698556900024414, + -0.2832489013671875, + 0.0501268170773983, + 0.080216184258461, + 0.2594181299209595, + 0.04193301126360893, + -0.010158296674489975, + 0.13825398683547974, + 0.5104745030403137, + 0.11807012557983398, + 2.268207550048828, + -0.13208746910095215, + -0.2943604290485382, + 0.3361962139606476, + 0.06483273208141327, + -0.6633838415145874, + -0.058031968772411346, + 0.26385360956192017, + 0.5466517210006714, + 0.0815499797463417, + -0.19059601426124573, + 0.06324447691440582, + 0.10381441563367844, + -0.2550370693206787, + 0.2262912094593048, + -0.15679076313972473, + -0.04749279469251633, + -0.18522939085960388, + 0.005245190113782883, + -0.24627113342285156, + -0.17531134188175201, + -0.11550812423229218, + -0.11752192676067352, + 0.049467749893665314, + 0.1661425679922104, + -0.410425066947937, + -0.14071282744407654, + 0.5837265253067017, + -0.1518877148628235, + 0.33735811710357666, + 0.2505667209625244, + -0.11466194689273834, + 0.32372933626174927, + 0.13722139596939087, + -0.1599542498588562, + -0.15438629686832428, + -0.05349985510110855, + 0.01067918911576271, + -0.20132027566432953, + -0.8126060366630554, + 0.12594380974769592, + -0.2325683981180191, + -0.017749961465597153, + 0.39631107449531555, + -0.5367861986160278, + 0.0007740799337625504, + -0.0925636887550354, + 0.028753727674484253, + 0.42316263914108276, + 1.0618789196014404, + 0.4481549561023712, + -0.2580926716327667, + -0.1407429575920105, + 0.08698464930057526, + -0.07958671450614929, + -0.26132816076278687, + 0.01502196304500103, + -0.2400202602148056, + 0.1061260849237442, + -0.2411283701658249, + -0.2669667899608612, + 0.015097606927156448, + -0.1464342176914215, + 0.5487987399101257, + 0.21856452524662018, + -0.31288838386535645, + 0.31074315309524536, + 0.3552250862121582, + 0.0362219512462616, + -0.20562954246997833, + 0.12274806201457977, + 0.0633762776851654, + -0.32334673404693604, + -0.1029205471277237, + -0.26321935653686523, + -0.04587341845035553, + -0.4730973541736603, + 0.13325147330760956, + -0.14459675550460815, + 0.09383730590343475, + -0.19664490222930908, + -0.3880254030227661, + 0.028504714369773865, + -0.13195198774337769, + 0.4559035003185272, + -0.06005960702896118, + -0.186687171459198, + 0.4185120761394501, + 0.2341410219669342, + -0.14154469966888428, + -0.1967162787914276, + 0.15866462886333466, + -0.34411388635635376, + -0.13462382555007935, + 0.0191267728805542, + 0.44276314973831177, + -0.3971329927444458, + -0.19460400938987732, + -0.21696138381958008, + -0.2390710711479187, + 1.4548799991607666, + -0.3344307541847229, + 0.12382172048091888, + 0.18456923961639404, + 0.21365708112716675, + 0.24159447848796844, + 0.018575457856059074, + 0.2564331293106079, + -0.27830737829208374, + -0.3746868669986725, + -0.029721371829509735, + 0.07261811196804047, + 0.021436799317598343, + -0.24097147583961487, + 0.41028159856796265, + -0.19746169447898865, + 0.24303852021694183, + 0.006933137774467468, + 1.0653856992721558, + 0.14335112273693085, + 0.3041582703590393, + -0.12713393568992615, + -0.12312052398920059, + -0.20173810422420502, + 0.07574531435966492, + -0.8914304971694946, + 0.03438463807106018, + -0.007771126925945282, + -0.12323984503746033, + 0.2016172558069229, + -0.9610595703125, + 0.0478571280837059, + -0.02068709395825863, + -0.2450389862060547, + 0.17752371728420258, + -0.2466612458229065, + -0.0391487181186676, + 0.023143045604228973, + 0.4197778105735779, + -1.6065032482147217, + -0.26908451318740845, + 0.28003233671188354, + 0.009081467986106873, + -0.055331386625766754, + 0.049803003668785095, + 0.26905372738838196, + 0.4838578999042511, + -0.19283896684646606, + 0.4172284007072449, + -0.33513331413269043, + 0.05727730691432953, + 0.20839977264404297, + 0.39416560530662537, + 0.17774519324302673, + -0.4201125204563141, + 0.037163570523262024, + -0.015861984342336655, + 0.13277022540569305, + -0.22622525691986084, + 0.07553987950086594, + -0.25030186772346497, + -0.21393398940563202, + -0.1428859680891037, + -0.1704656332731247, + -0.11092924326658249, + -0.01438169926404953, + -0.27688539028167725, + 0.25638729333877563, + -0.25237423181533813, + -0.3796898126602173, + 0.32792234420776367, + 0.3685463070869446, + -0.06470364332199097, + -0.029983803629875183, + 0.17765262722969055, + 0.835993766784668, + 0.4595469832420349, + 0.040643103420734406, + 0.3554738759994507, + -0.9634041786193848, + 0.17617163062095642, + -0.11120845377445221, + -0.04682156443595886, + 0.16962838172912598, + 0.05957581102848053, + 0.09996932744979858, + -0.40212520956993103, + 1.2791314125061035, + 0.04938816279172897, + -0.8873477578163147, + -0.09749884903430939, + 0.30862972140312195, + -0.13282087445259094, + 0.07484112679958344, + -0.22034700214862823, + -0.2189776599407196, + -0.148721843957901, + 0.4059309959411621, + 0.01935536414384842, + 0.07179301977157593, + 0.39417463541030884, + 0.26177382469177246, + -0.37164461612701416, + -0.2514227032661438, + 0.3960639238357544, + 0.36513829231262207, + -0.2853647470474243, + 0.028741344809532166, + -0.16899120807647705, + -0.15252770483493805, + -0.32531440258026123, + -0.19324657320976257, + 0.27380913496017456, + -0.055025987327098846, + -0.06629018485546112, + 0.480366587638855, + -0.13948945701122284, + -0.21446983516216278, + 0.07601205259561539, + 0.6085182428359985, + 0.39198037981987, + -0.41201773285865784, + -0.2979063391685486, + -0.24415108561515808, + -0.2923993468284607, + 0.04189750552177429, + -0.8321855068206787, + -0.1861664354801178, + 0.511153519153595, + 0.11992236971855164, + -0.09336645156145096, + 0.747836172580719, + -0.09608768671751022, + -0.09545762091875076, + 0.08883558213710785, + 0.09628374129533768, + 0.07548357546329498, + -0.0912589505314827, + -0.004977744072675705, + -0.09387819468975067, + -0.05409827083349228, + 0.17659592628479004, + -0.1126873642206192, + 0.9093859195709229, + -0.4376339912414551, + 0.28635725378990173, + 0.11712399125099182, + -0.13602781295776367, + 0.12843108177185059, + -0.3552393317222595, + -0.15366235375404358, + -0.0579315647482872, + -0.2222149670124054, + 0.3650352954864502, + -0.08045895397663116, + -0.06331205368041992, + -0.01202719658613205, + -0.25856688618659973, + 0.25768131017684937, + 0.10228180885314941, + 0.2621695399284363, + -0.09755715727806091, + 0.4956434369087219, + -0.15821969509124756, + -0.051579080522060394, + 0.06551924347877502, + -0.11828432977199554, + 0.10202057659626007, + 0.4762023985385895, + -0.5452821254730225, + 0.2296428382396698, + 0.25111567974090576, + -0.12898606061935425, + 0.17359623312950134, + 0.019939780235290527, + 0.05470365285873413, + 0.050668299198150635, + -0.18341483175754547, + 0.0400509238243103, + 0.2905479371547699, + -1.1617518663406372, + -0.3209540545940399, + 0.31579557061195374, + -0.12868531048297882, + -0.013183455914258957, + 0.16775277256965637, + 0.16327683627605438, + 0.07276636362075806, + -0.00983961671590805, + -0.29979977011680603, + 0.2935003638267517, + -0.13711212575435638, + -0.03317384421825409, + 0.2926108241081238, + -0.4638410210609436, + 0.27744969725608826, + 0.015386726707220078, + 0.14111080765724182, + 0.09508121013641357, + -0.3203009068965912, + 0.4616464078426361, + -0.17168715596199036, + 0.19770583510398865, + 1.4360744953155518, + 0.552492618560791, + -0.48072367906570435, + -0.09337594360113144, + 0.3478778600692749, + 0.6430853605270386, + -1.909662127494812, + 0.1600567102432251, + -0.5767982006072998, + -0.10391475260257721, + -0.3857008218765259, + 0.1991157829761505, + -0.08061021566390991, + -0.3754962086677551, + 0.681502103805542, + 0.05204208195209503, + 0.04488198459148407, + 0.28349927067756653, + -0.11659663915634155, + 0.3513908386230469, + 0.17871633172035217, + -0.22458893060684204, + -0.16380161046981812, + 0.5340535640716553, + -0.3164132535457611, + -0.06433514505624771, + 0.2557799220085144, + -0.01830972731113434, + -0.053149573504924774, + 0.1114746630191803, + 0.32874274253845215, + 0.36069971323013306, + 0.32468992471694946, + 0.2918247580528259, + -0.3012739419937134, + -0.05445787310600281, + -0.07682463526725769, + -0.051738664507865906, + -0.21063783764839172, + 0.0784129798412323, + 0.057875800877809525, + -0.28292137384414673, + -0.09398633241653442, + 0.026277394965291023, + -0.1269504725933075, + 0.010951638221740723, + -0.6233943700790405, + -0.012554068118333817, + 0.383584588766098, + -0.07108870148658752, + 0.1515088975429535, + 0.04724665358662605, + -0.4385305941104889, + 0.11423992365598679, + -0.07949098944664001, + -0.2511564791202545, + -0.37096792459487915, + 0.1053505539894104, + -0.11352206766605377, + -0.0042579881846904755, + 0.16073791682720184, + -0.19622331857681274, + -0.021891482174396515, + 0.5703060030937195, + 0.33227312564849854, + 0.6852816343307495, + -0.043141528964042664, + -0.1465865671634674, + -0.04591740667819977, + 0.4889824390411377, + -0.22229480743408203, + -0.02679351717233658, + 0.14510738849639893, + -0.18537311255931854, + -0.1396082192659378, + 0.2858940064907074, + 0.14391417801380157, + -0.1570734679698944, + -0.17563791573047638, + 0.008996803313493729, + -0.5593757033348083, + 0.18630501627922058, + -0.4638374447822571, + 0.07179447263479233, + 0.024699360132217407, + -0.00703854113817215, + 0.25924351811408997, + 0.1809760332107544, + -0.3839520812034607, + 0.016972720623016357, + -0.0038633830845355988, + -0.11404049396514893, + 0.039340317249298096, + 0.10919413715600967, + 0.027384139597415924, + -0.22061499953269958, + -0.017588704824447632, + 0.5373998880386353, + -1.2249239683151245, + 0.16444244980812073, + 0.2636427581310272, + -0.7416896224021912, + -0.5545253753662109, + 0.3635285794734955, + 0.08089801669120789, + -0.05546288937330246, + 0.2849888801574707, + -0.050371430814266205, + -0.1315251588821411, + -0.017047569155693054, + 0.08045250177383423, + -0.14370858669281006, + -0.9475034475326538, + -0.6285727024078369, + -0.19550056755542755, + 0.3896079957485199, + 0.11307055503129959, + 0.041027817875146866, + 0.1249416172504425, + 1.3772554397583008, + -0.23982495069503784, + 0.3417426347732544, + -0.19854597747325897, + -0.04863154888153076, + -0.05316976457834244, + -0.14846664667129517, + 0.08439108729362488, + -0.11914454400539398, + 0.1849251389503479, + 0.3470757305622101, + 0.0695372223854065, + 0.3516654968261719, + 0.4108940064907074, + -0.08311852812767029, + 0.12579303979873657, + 0.5451713800430298, + -0.47756603360176086, + 0.1597798466682434, + -0.23544839024543762, + 0.020625486969947815, + 0.20476266741752625, + -0.15215066075325012, + -0.03726805001497269, + 0.019739888608455658, + -0.04526400566101074, + -0.7001811265945435, + 0.14783063530921936, + 0.2182234227657318, + -0.17500023543834686, + 0.2925195097923279, + -0.03508598729968071, + -0.15845640003681183, + 0.11203887313604355, + -0.30234700441360474, + 0.32524198293685913, + 0.24049581587314606, + 0.12929800152778625, + 0.06754705309867859, + -0.7168797254562378, + -0.8260762095451355, + 0.011580336838960648, + -0.1831013262271881, + 0.04060430824756622, + 0.03474318981170654, + 0.05205908417701721, + 0.16318772733211517, + 0.034734949469566345, + -0.07404231280088425, + 0.39045488834381104, + 0.06862729787826538, + -1.6867053508758545, + -0.37746745347976685, + 0.14541274309158325, + 0.05829687789082527, + -0.03942666947841644, + 0.13683255016803741, + -0.08252882212400436, + 0.17668436467647552, + 0.024314895272254944, + -0.9270766377449036, + 0.5206068158149719, + 0.14979848265647888, + -0.043887436389923096, + -0.07546127587556839, + 0.011099323630332947, + 0.3506251871585846, + 0.24366842210292816, + 0.15158507227897644, + -0.13329675793647766, + -0.0038534682244062424, + -1.2751193046569824, + 0.14959882199764252, + -0.17230835556983948, + 0.2102462500333786, + 0.10877440869808197, + -0.03790205717086792, + -0.05695553123950958, + -0.10664040595293045, + 0.20154216885566711, + 0.19052037596702576, + 0.21482565999031067, + 0.6356050372123718, + -0.2633957266807556, + 0.1273382604122162, + 0.05400029197335243, + -0.6642638444900513, + -0.2801581025123596, + 0.25485876202583313, + 7.502548396587372e-05, + -0.23082317411899567, + 0.18711450695991516, + 0.18231292068958282, + 0.17420238256454468, + 0.1553785502910614, + 0.23803618550300598, + 0.27993202209472656, + -0.39418214559555054, + 0.20546197891235352, + 0.10509191453456879, + 0.2144758254289627, + -0.2639472484588623, + 0.08940547704696655, + 0.047951504588127136, + -0.04139389097690582, + -0.1117992103099823, + 0.12711751461029053, + 0.1376635730266571, + -0.3558835983276367, + -0.14309197664260864, + 0.01145828515291214, + -0.4029694199562073, + 1.3747583627700806, + 0.2298142910003662, + 0.5348155498504639, + 0.10691620409488678, + 0.19741851091384888, + 0.008630527183413506, + -0.17941918969154358, + -0.08474114537239075, + 0.03579578548669815, + -0.36445799469947815, + -0.0004892349243164062, + 0.13142579793930054, + -0.018483616411685944, + 0.2366827428340912, + -0.3012241721153259, + 0.38902586698532104, + -0.17919038236141205, + -0.27184227108955383, + -0.18226177990436554, + 0.2653625011444092, + 0.2230699062347412, + -0.6393768787384033, + -0.049130916595458984, + 0.47465312480926514, + 0.0694955587387085, + -0.39223697781562805, + 0.21112170815467834, + -0.1619708240032196, + 0.17321287095546722, + -0.5169572830200195, + -0.5520352125167847, + 0.40268075466156006, + 0.8779698014259338, + 0.4463754892349243, + 0.13447973132133484, + -0.037766486406326294, + -1.1139843463897705, + 0.21819737553596497, + 0.030600130558013916, + -0.23674574494361877, + -0.005344562232494354, + -0.09332036972045898, + 0.2753162980079651, + -0.07488435506820679, + -0.22307458519935608, + 1.0342332124710083, + -0.05956602469086647, + -0.08184085786342621, + 0.4791601896286011, + -0.06504377722740173, + 0.07852178812026978, + -0.2713330388069153, + -0.1496344804763794, + 0.3969273865222931, + 0.10199381411075592, + -0.36241614818573, + -0.43889012932777405, + 0.24806058406829834, + -0.06905032694339752, + -0.022059619426727295, + 0.28193819522857666, + -0.1421915739774704, + -0.09329182654619217, + 0.02330276370048523, + -0.03160402923822403, + -0.4183804392814636, + 0.1460537612438202, + -0.06925944983959198, + -0.06558898836374283, + -0.16853389143943787, + -0.009749382734298706, + -0.14776909351348877, + -0.3278903365135193, + 0.08580785989761353, + 0.6425684094429016, + 0.2573675215244293, + -0.4049784541130066, + -0.01309937983751297, + 0.159145787358284, + -0.21244803071022034, + -0.08980096876621246, + -0.03010055422782898, + 0.04642730951309204, + 0.3178258240222931, + 0.2827152907848358, + -0.08373945951461792, + -0.0052092187106609344, + 0.09856603294610977, + 0.03462515026330948, + 0.04592869430780411, + 0.06439956277608871, + 0.16372397541999817, + 0.17179928719997406, + -0.000640377402305603, + -0.19132718443870544, + 0.3635912239551544, + -0.13811296224594116, + -0.28612303733825684, + 0.1408313810825348, + -1.6930551528930664, + 0.038661595433950424, + -0.03221820294857025, + -0.05914339795708656, + 0.035590413957834244, + -0.19608303904533386, + 0.12236441671848297, + 0.07459050416946411, + -0.5693195462226868, + -0.04158861190080643, + -0.06688196957111359, + -0.3401261568069458, + -1.3596014976501465, + 0.587967038154602, + 0.11846570670604706, + 0.01188768818974495, + -0.20296521484851837, + -0.21213114261627197, + 0.3307165205478668, + -0.05664350092411041, + 0.26541346311569214, + 0.29774296283721924, + 0.44857174158096313, + -0.11537963151931763, + 0.15935727953910828, + 1.3013641834259033, + -0.03328670561313629, + 0.030361615121364594, + 0.11825667321681976, + -0.4785712957382202, + -0.06403328478336334, + 0.1513846218585968, + -0.2898649573326111, + -0.08144418895244598, + 0.1357942521572113, + -0.6642301082611084, + 0.0988534614443779, + 0.03744838386774063, + -0.5768736004829407, + -0.013067122548818588, + 0.5020653605461121, + -0.06694356352090836, + -0.2603994905948639, + -0.06052090972661972, + -0.19056181609630585, + 0.2566581666469574, + -0.23907101154327393, + -0.4965975284576416, + 0.12908527255058289, + 0.2797626256942749, + -0.11318308115005493, + 0.1413695216178894, + -0.1238831877708435, + -0.49142348766326904, + 0.13047650456428528, + 0.2768234312534332, + -0.1682562381029129, + 0.2100246250629425, + -0.10406044125556946, + -0.13005922734737396, + -0.055171214044094086, + -0.10343876481056213, + 0.11007422208786011, + -0.40948033332824707, + 0.4987000524997711, + 0.1701173335313797, + -0.3081603944301605, + 0.3348005712032318, + 0.08730265498161316, + 0.46044865250587463, + 0.26786479353904724, + -0.20266537368297577, + -0.11479795724153519, + -0.0676804631948471, + -0.1272883415222168, + 0.34103578329086304, + -0.06666701287031174, + -0.2108011245727539, + 0.05237213522195816, + 0.3107087016105652, + 0.18956327438354492, + -0.029116660356521606, + -0.27205169200897217, + -0.7720268368721008, + 0.2668311595916748, + -0.36406034231185913, + 0.22061589360237122, + 0.2518797218799591, + 0.03509768098592758, + 0.025408916175365448, + -0.051155686378479004, + 0.0854707658290863, + 0.1560940146446228, + 0.053091876208782196, + 0.05778290331363678, + 0.17227987945079803, + -0.3032211363315582, + 0.019818231463432312, + -0.09620842337608337, + -0.2683214843273163, + 0.21061986684799194, + 0.005998820066452026, + -0.09074253588914871, + 0.19821856915950775, + -0.09933993220329285, + -0.040672700852155685, + 1.4632818698883057, + -0.2981475293636322, + -0.16356876492500305, + 0.18509578704833984, + 0.1566607505083084, + 0.7054901719093323, + 0.1694864183664322, + 0.7343957424163818, + 0.2586832642555237, + 0.2591545283794403, + 0.18386304378509521, + 0.4831131100654602, + -0.7515377998352051, + 0.23084285855293274, + 0.08733373880386353, + -0.2044227421283722, + 0.06172953546047211, + 0.044043395668268204, + 0.22720280289649963, + 0.42394912242889404, + -0.4751007556915283, + -0.3365030586719513, + 0.19046470522880554, + -0.16483238339424133, + 0.01927144080400467, + -0.6488143801689148, + -0.052825555205345154, + -0.09401924908161163, + -0.18009570240974426, + -0.35281503200531006, + -1.0188322067260742, + -0.27299124002456665, + 0.16209688782691956, + 0.05186682939529419, + 0.10929647088050842, + -0.14867398142814636, + 0.14166057109832764, + -0.37231966853141785, + 0.2285214364528656, + -0.03765274956822395, + -0.05559290945529938, + 0.17722821235656738, + -0.1963028609752655, + -0.10737398266792297, + -0.09074394404888153, + 0.11196437478065491, + 0.0036045387387275696, + -0.02990546077489853, + 0.09453139454126358, + -1.4795559644699097, + 0.2900708317756653, + 0.43889838457107544, + 0.4522363543510437, + -0.29628223180770874, + 0.4996664822101593, + -0.00045003369450569153, + 0.4029199779033661, + 0.4737069606781006, + -0.20889762043952942, + 0.23455503582954407, + 0.2595660388469696, + 0.5662131309509277, + -0.13342003524303436, + 0.2752896547317505, + 0.9318963885307312, + 0.037867285311222076, + -0.3321237862110138, + -0.2166217714548111, + 0.22996754944324493, + -0.2998097538948059, + -0.2016933411359787, + -0.23406767845153809, + 0.3833574652671814, + -0.6441695690155029, + 0.5643755197525024, + -0.037534188479185104, + 0.1639241874217987, + -0.16079780459403992, + 1.140708088874817, + 0.11559861898422241, + 0.484421044588089, + 0.18731868267059326, + -0.36021965742111206, + 0.3547525405883789, + -0.19183620810508728, + -1.3537092208862305, + 0.08911924809217453, + -0.12406114488840103, + 0.5377259850502014, + 0.00789666548371315, + 0.14299222826957703, + -0.1257416307926178, + 0.2025468796491623, + -0.2050224393606186, + -0.09234040975570679, + 0.1244395449757576, + 0.14922718703746796, + 0.03525172919034958, + 0.22516947984695435, + -0.15023332834243774, + -0.254197359085083, + 0.1463923454284668, + -0.11587052047252655, + 0.5036411285400391, + -0.6382921934127808, + -0.0644247829914093, + -0.024737954139709473, + -0.23579949140548706, + -0.022800378501415253, + -0.0745224803686142, + 0.673751711845398, + 0.04783503711223602, + -0.06420984864234924, + 0.094976045191288, + -0.027133621275424957, + 0.10348962992429733, + -0.10418817400932312, + 0.08089558780193329, + 0.015584181062877178, + -0.05882427096366882, + -0.02629297412931919, + -0.12333166599273682, + 0.02994447760283947, + 0.08334262669086456, + 0.12533079087734222, + -0.11015042662620544, + 0.21105828881263733, + 0.12307758629322052, + -0.32814493775367737, + -0.17470020055770874, + 0.41054439544677734, + 0.16869017481803894, + -0.16384342312812805, + 0.26523035764694214, + 0.3054783046245575, + -0.7986634969711304, + 0.16581231355667114, + 0.04628860950469971, + 0.08721417188644409, + 0.0518757700920105, + -0.026281103491783142, + 0.2667614221572876, + -0.15670061111450195, + 0.0208384208381176, + -0.23130498826503754, + 0.2992576062679291, + 0.020857684314250946, + 0.44430088996887207, + 0.03200692683458328, + -0.0718289315700531, + -0.11648377031087875, + -0.26591503620147705, + -0.5173351168632507, + 0.13028068840503693, + -0.19292126595973969, + -0.017091810703277588, + 0.06648567318916321, + 0.38893401622772217, + 0.21791835129261017, + 0.0031586363911628723, + -0.17884895205497742, + -0.11205466836690903, + -0.4929540157318115, + -0.2368582785129547, + -0.04094058275222778, + 0.8268603086471558, + 0.279744029045105, + -0.05523986741900444, + 0.45321983098983765, + -0.004929780960083008, + -0.06994815170764923, + -0.09900861233472824, + 0.08450295776128769, + 0.12083761394023895, + 0.05013678967952728, + 0.3654762804508209, + 0.27839404344558716, + -0.16491778194904327, + 0.2074400931596756, + 0.1847735345363617, + 0.9497494697570801, + -0.5202334523200989, + -0.039299752563238144, + 0.3729565143585205, + -0.16068603098392487, + 0.21361276507377625, + 0.20885024964809418, + -0.18126334249973297, + 0.042067237198352814, + 0.9146919846534729, + -0.015502016060054302, + 0.036695729941129684, + -0.16013795137405396, + 0.16424846649169922, + -0.13958293199539185, + 0.061996594071388245, + 0.24417589604854584, + 0.31571558117866516, + -0.4620319604873657, + -0.4650788903236389, + 0.23824279010295868, + -0.17992602288722992, + 0.1386319398880005, + -0.013517133891582489, + 0.16854357719421387, + 0.8694015741348267, + -0.15272347629070282, + -0.5820658206939697, + -0.1239229217171669, + -0.09448948502540588, + -0.06420261412858963, + -0.0799591988325119, + -0.00822100043296814, + -0.08290307968854904, + -0.04474128037691116, + -0.04823499917984009, + 0.23960138857364655, + 0.3089990019798279, + -0.0987333208322525, + 0.04241074621677399, + -0.10239772498607635, + 0.17953291535377502, + -0.019087787717580795, + -0.29349714517593384, + 0.14920277893543243, + -0.14966212213039398, + -0.16254423558712006, + -0.41671836376190186, + 0.2717350125312805, + -0.03765498101711273, + 0.3070616126060486, + -0.6427325010299683, + -0.31009191274642944, + -0.155954509973526, + 0.04325197637081146, + -0.10095354914665222, + -0.050431884825229645, + -0.31778982281684875, + -0.09435615688562393, + 0.27265751361846924, + 0.585464596748352, + 0.02258472517132759, + -0.0700845792889595, + 0.30703869462013245, + 0.09382515400648117, + 0.27661389112472534, + -0.08165495842695236, + 0.3809276521205902, + -0.09731534123420715, + -0.76568603515625, + 0.07223957031965256, + 0.2220851331949234, + -0.1452769637107849, + -0.057868558913469315, + 0.15992486476898193, + 0.15882903337478638, + 0.08636169135570526, + -1.0070747137069702, + -0.2275516539812088, + -0.12544572353363037, + 0.08930482715368271, + 0.13226863741874695, + 0.05490835756063461, + 0.0715627670288086, + 0.12770801782608032, + 0.04171304404735565, + 0.22424426674842834, + 0.4918888509273529, + 0.28646713495254517, + 0.2561582922935486, + -0.00821775197982788, + 0.08531013131141663, + 0.17626753449440002, + -0.09371642023324966, + -0.452816367149353, + 0.2141147255897522, + 0.003469303250312805, + 0.33404532074928284, + 0.4286614954471588, + -0.03477729111909866, + -0.30702823400497437, + -0.23461543023586273, + 0.2587999999523163, + -0.2538994252681732, + 0.13778644800186157, + 0.016917571425437927, + 0.1700379103422165, + -0.42837175726890564, + -0.0993260070681572, + 0.5225139856338501, + -0.15463069081306458, + 0.04089725762605667, + 0.2385844588279724, + 0.42398160696029663, + -0.10535123944282532, + -0.11422814428806305, + 0.33505406975746155, + -0.039779528975486755, + -0.3140942454338074, + 0.39832454919815063, + 0.2519010901451111, + 0.03918101638555527, + 0.6669617891311646, + 0.46383553743362427, + -0.4074404537677765, + 1.038914442062378, + -0.08424443006515503, + 0.15116232633590698, + 0.21413186192512512, + 1.340294599533081, + 0.10801994800567627, + -0.2054952085018158, + -0.9438601732254028, + 0.05418648570775986, + -0.007739044725894928, + -0.22497674822807312, + -0.0908605307340622, + 0.45848459005355835, + -0.15217053890228271, + 0.34105634689331055, + -0.18139487504959106, + -0.010037623345851898, + -0.10719738900661469, + 0.2584540843963623, + -0.17355474829673767, + -1.6710059642791748, + 0.07428206503391266, + 0.18703624606132507, + 0.10959140956401825, + 0.13054005801677704, + -0.41746950149536133, + 0.1971214860677719, + -0.2865541875362396, + -0.26329734921455383, + 0.02190510928630829, + -0.013325750827789307, + -0.5168031454086304, + 0.06232781708240509, + 0.17869651317596436, + 0.08480145782232285, + 0.03165075555443764, + 0.11413511633872986, + -0.04435966536402702, + -0.14181727170944214, + 0.0001847296953201294, + 0.24681372940540314, + 0.13459381461143494, + 0.09744548797607422, + 0.22884231805801392, + -0.13136839866638184, + 0.03205207735300064, + 0.3165379762649536, + 0.13595297932624817, + -0.09045195579528809, + -0.3731077313423157, + -0.30658355355262756, + -0.18397387862205505, + 0.2065720111131668, + 0.35342171788215637, + 0.20360548794269562, + 0.38102397322654724, + 0.0282646045088768, + 0.10701464116573334, + -0.0735573098063469, + -0.05498260259628296, + 0.05539131164550781, + 0.006424048915505409, + 0.1500134915113449, + -0.5560328364372253, + -0.03835409879684448, + -0.11159080266952515, + 0.5997207164764404, + 0.14778602123260498, + -0.47903910279273987, + 0.3025943338871002, + -0.024852000176906586, + -0.37333589792251587, + 0.1832563877105713, + -0.07108756899833679, + 0.1185910701751709, + 0.21950794756412506, + 0.03141140192747116, + 0.3610825538635254, + -0.35330018401145935, + -0.1346394568681717, + 0.14311134815216064, + -0.11109303683042526, + -0.0138326995074749, + -0.39003968238830566, + -0.11848669499158859, + 0.08946675807237625, + -0.5591017007827759, + 0.15492138266563416, + -0.2988860309123993, + 0.18270185589790344, + -0.1350632756948471, + 0.08701124787330627, + -0.02837587147951126, + 0.0010658353567123413, + 0.009238675236701965, + 0.02602461352944374, + 0.6023073792457581, + 0.20364876091480255, + -0.021380111575126648, + 0.08234372735023499, + -0.45524147152900696, + 0.3582097887992859, + 0.3122072219848633, + -0.17781507968902588, + -0.5888353586196899, + 0.0036169737577438354, + 0.04192999005317688, + -0.23836569488048553, + 0.04344627261161804, + 0.26319944858551025, + 0.3297376036643982, + -0.019381266087293625, + -0.196309432387352, + 0.4768516719341278, + 0.5091082453727722, + -0.025812402367591858, + 0.25766831636428833, + 0.009658869355916977, + -0.3105792701244354, + 0.7842410802841187, + 0.183442622423172, + -0.04053697735071182, + -0.004317194223403931, + 0.060954123735427856, + -0.12123320996761322, + -0.10972947627305984, + 0.13273778557777405, + -0.34908491373062134, + -0.10244476795196533, + -0.20599079132080078, + 0.13834403455257416, + -0.2287919968366623, + 0.19104017317295074, + 0.8792828321456909, + 0.7066775560379028, + -0.5403097867965698, + -0.5364747643470764, + -1.0185573101043701, + 0.1750776171684265, + -0.2839529514312744, + -0.5225324630737305, + 0.09713113307952881, + 0.22981315851211548, + -0.8430386781692505, + -0.0413832888007164, + -0.029944635927677155, + -0.21627505123615265, + -0.125402569770813, + 0.319175660610199, + 0.28817683458328247, + -0.4360216557979584, + -0.17520055174827576, + -0.26146742701530457, + 1.0983855724334717, + 0.14007142186164856, + -0.5619240999221802, + 0.02990931272506714, + 0.5485047101974487, + 0.004717051982879639, + 0.17398172616958618, + -0.045178815722465515, + -0.40174657106399536, + -0.39177969098091125, + 0.6188174486160278, + -0.40098434686660767, + -0.2918303608894348, + 0.48409199714660645, + -0.5648359060287476, + 0.3632701635360718, + 0.38922998309135437, + 0.18243077397346497, + -0.4574427008628845, + -0.08748786896467209, + 0.4748658835887909, + -0.1296420842409134, + 0.30956947803497314, + -0.03985651582479477, + -0.05548528581857681, + -0.12213268876075745, + -0.22376388311386108, + -0.11736349016427994, + 0.10866440087556839, + 0.05624643713235855, + -0.2983352541923523, + -0.4437462091445923, + -0.08475080132484436, + 0.07817564904689789, + 0.22263124585151672, + 0.02347959578037262, + 0.013718578964471817, + 0.05449414253234863, + 0.07293926179409027, + -0.30727240443229675, + 0.6678179502487183, + 0.2734159827232361, + 0.3712305426597595, + -0.6736935377120972, + -0.0783584713935852, + -0.18247076869010925, + -0.06881482899188995, + 0.14368855953216553, + -0.022085092961788177, + -0.09118485450744629, + -0.26403898000717163, + 0.2203032225370407, + -0.04774831235408783, + 0.09272578358650208, + 0.2643436789512634, + -0.1302608847618103, + 0.21301351487636566, + 0.8639201521873474, + -0.012304931879043579, + 0.13098090887069702, + 0.20948399603366852, + -0.2826973795890808, + 0.2853621244430542, + 0.17168664932250977, + -0.45115000009536743, + -0.06628400832414627, + 0.05003289878368378, + -0.05282166600227356, + 0.15377222001552582, + -0.21944665908813477, + 0.23008105158805847, + 0.13388946652412415, + -0.021252745762467384, + -0.0454641729593277, + 0.28848448395729065, + 0.0892617478966713, + 0.24069687724113464, + -0.2834126949310303, + 0.017187129706144333, + 0.07958716154098511, + -0.17119085788726807, + 0.09909309446811676, + -0.11527444422245026, + 0.0023834407329559326, + -0.13138264417648315, + -0.10927282273769379, + 0.01846664771437645, + -0.08292946219444275, + 0.15711092948913574, + 0.36528530716896057, + 0.1296817809343338, + -0.00901501439511776, + -0.17546799778938293, + 0.24703510105609894, + -0.10463332384824753, + -0.16470764577388763, + -0.11233396083116531, + 0.13704133033752441, + 0.16984403133392334, + -0.05042402446269989, + 0.10217073559761047, + 0.46181729435920715, + -0.8066504597663879, + 0.16434341669082642, + 0.08673539757728577, + 0.05632879585027695, + 0.46475934982299805, + 0.06654506921768188, + -0.4113905429840088, + -0.23354947566986084, + 0.17232728004455566, + -0.07211896032094955, + -0.04015771672129631, + -0.26207131147384644, + -0.019855938851833344, + 0.3942527770996094, + -0.05147698521614075, + -0.49932435154914856, + -0.028433233499526978, + -0.5137902498245239, + -0.10046465694904327, + -0.1658288836479187, + -0.2827438712120056, + -0.015199648216366768, + 0.17700247466564178, + -0.23415300250053406, + -0.1394685059785843, + 0.6884829998016357, + -0.21815159916877747, + 0.0013474225997924805, + 0.3064807653427124, + -0.22200335562229156, + 0.12429624795913696, + 0.19498194754123688, + 0.027332043275237083, + 0.2865791916847229, + 0.26516929268836975, + 0.1766025871038437, + 0.010514475405216217, + 0.2944094240665436, + -0.10076496750116348, + -0.22429440915584564, + -0.054294172674417496, + -0.010113518685102463, + -0.2017078399658203, + -0.06705570220947266, + 0.10414861142635345, + -0.20235863327980042, + 0.48142510652542114, + 0.5079106092453003, + -0.116087406873703, + 0.025993693619966507, + 0.11846309155225754, + 0.1936599463224411, + 0.2545938193798065, + 0.07415618747472763, + -0.04680318757891655, + 0.23254327476024628, + 0.387617290019989, + -0.062013350427150726, + -0.11835204064846039, + 0.17792417109012604, + -0.3731403052806854, + -0.3869215250015259, + 0.16773676872253418, + -0.019452691078186035, + 0.11187084019184113, + -0.665555477142334, + -0.38028088212013245, + 0.019326036795973778, + 0.12053835391998291, + -0.2528013586997986, + 0.22171001136302948, + -0.09298771619796753, + 0.4336041808128357, + -0.18503515422344208, + -0.3812797963619232, + 0.26731783151626587, + -0.01880970597267151, + 0.12053997814655304, + 0.3135727643966675, + 0.1253448873758316, + -0.304542601108551, + 0.2560121417045593, + -0.1725665181875229, + 0.317552775144577, + 0.12290339171886444, + 0.12849317491054535, + -0.49944478273391724, + 0.2532399296760559, + -0.06736480444669724, + 0.61894291639328, + -0.5118618011474609, + -0.026612069457769394, + -0.5926240682601929, + 0.183848038315773, + 0.17342963814735413, + 0.421630859375, + 0.005982890725135803, + 0.1218007504940033, + -0.383471816778183, + -0.11216069757938385, + -0.3208844065666199, + -0.016668125987052917, + -0.1530822217464447, + -0.05973254144191742, + 0.35233354568481445, + 0.023710014298558235, + -0.13402794301509857, + -0.03880766034126282, + 0.1766442060470581, + 0.11869733035564423, + 0.21848733723163605, + -0.027295496314764023, + 0.10590827465057373, + -0.07008638978004456, + -0.5983577966690063, + -0.5275057554244995, + -0.439224511384964, + -0.15996743738651276, + -0.017803356051445007, + 0.3120171129703522, + -0.03173670172691345, + -0.3228031396865845, + 0.11174231767654419, + -0.3306799829006195, + 0.003064289689064026, + -0.005953758955001831, + -0.06747960299253464, + 0.19041210412979126, + 0.09590750932693481, + -0.049386098980903625, + -0.28467899560928345, + 0.10166309773921967, + -0.11834391206502914, + 0.18926382064819336, + -0.2684425115585327, + -0.00878002680838108, + 0.16034552454948425, + 0.6445825099945068, + 0.3887051045894623, + -0.30562764406204224, + 0.004701592028141022, + -0.6213400363922119, + -0.015232779085636139, + -0.20868432521820068, + -0.04196140170097351, + 0.2636464834213257, + -0.3956194818019867, + -0.16469143331050873, + -0.030005283653736115, + -0.0845080316066742, + 0.05882842466235161, + -0.19926296174526215, + 0.04549418017268181, + -0.01646314561367035, + 0.9378932118415833, + -0.4208477735519409, + 0.013550706207752228, + 0.05697759613394737, + 0.0037937909364700317, + 0.10119453072547913, + 0.1914851814508438, + -0.5845853090286255, + 0.22060272097587585, + -0.554560661315918, + -0.021229146048426628, + 0.5619114637374878, + -0.2015368640422821, + -0.13683214783668518, + 0.2671148180961609, + -0.7748461961746216, + -0.46765220165252686, + 0.37550073862075806, + 0.0092582106590271, + 0.12548375129699707, + 0.19304773211479187, + 1.029999852180481, + 0.18149489164352417, + -0.21192917227745056, + -0.27487102150917053, + -0.04920617491006851, + -0.03986664116382599, + 0.28410232067108154, + 0.011104390025138855, + 0.32720446586608887, + 0.5750113129615784, + -0.04084736853837967, + 0.17223834991455078, + -0.14840371906757355, + 0.1648007035255432, + 0.02302420884370804, + -0.6142053604125977, + -0.0768822506070137, + 0.5055135488510132, + -0.9602681398391724, + -0.3191636800765991, + -0.37303948402404785, + 0.40423738956451416, + -0.2245028167963028, + 0.5153743028640747, + -0.03650664538145065, + 0.2819119989871979, + -0.16464103758335114, + -0.03145518898963928, + 0.47695478796958923, + -0.2680822014808655, + -0.088913194835186, + 0.02656112238764763, + -0.7837880849838257, + -0.28490957617759705, + 0.010722078382968903, + -0.018878573551774025, + -0.28711140155792236, + -0.6863500475883484, + -0.029864363372325897, + 0.019298367202281952, + -0.07297785580158234, + 0.023995142430067062, + 0.10600591450929642, + -0.018421130254864693, + -0.1717471480369568, + 0.591850757598877, + -0.05662576109170914, + 0.09114758670330048, + 0.21442344784736633, + -0.08144235610961914, + 0.08104105293750763, + -0.8051542639732361, + -0.1784994900226593, + -0.019822634756565094, + 0.20079690217971802, + -0.2700657248497009, + 0.9448876976966858, + 0.32658377289772034, + -0.26410698890686035, + 0.1470823884010315, + -0.09108224511146545, + 0.06680870056152344, + 0.0423644483089447, + -0.056255728006362915, + -0.425650954246521, + 0.3307311236858368, + -0.5068486928939819, + 0.18718460202217102, + 0.8882086277008057, + -0.03386986255645752, + 0.13177958130836487, + -0.32162636518478394, + 0.2247314155101776, + -0.07165516167879105, + 0.14152927696704865, + 0.09277452528476715, + -0.4489150047302246, + -0.1387617439031601, + 0.11059139668941498, + 0.9019404053688049, + 0.1223970279097557, + 0.010098747909069061, + 0.13997703790664673, + -0.1352885663509369, + -0.17533722519874573, + 0.6759406328201294, + 0.5580534338951111, + 0.17922399938106537, + -0.17317824065685272, + 0.05373178422451019, + -0.0542917400598526, + 0.1317090392112732, + 0.11275534331798553, + 0.09985485672950745, + -0.12281442433595657, + 0.24698199331760406, + -0.015299379825592041, + -0.03601275384426117, + -0.3381369113922119, + 1.0512237548828125, + 0.1826779842376709, + -0.2010059654712677, + 0.13728995621204376, + 0.6802428960800171, + -0.5105699896812439, + -0.2059423327445984, + -0.05869494378566742, + 0.20970052480697632, + 0.4597509503364563, + -0.33932262659072876, + 0.005286132916808128, + -0.059797510504722595, + 0.16328908503055573, + 0.29049262404441833, + 0.02771143428981304, + 0.9999943971633911, + -0.1628531813621521, + 0.33295559883117676, + 0.12905064225196838, + -0.13768726587295532, + 0.6261168718338013, + -3.168998956680298, + 0.0026390627026557922, + -0.2621569037437439, + 0.2079908847808838, + -0.3293233811855316, + -0.6273127794265747, + -0.5293174982070923, + 0.1321326494216919, + 0.09838464856147766, + -0.44477200508117676, + 0.3353584408760071, + -0.17056027054786682, + 0.042492493987083435, + -0.10353457927703857, + 0.14648661017417908, + -0.6968685388565063, + -0.20114216208457947, + -0.3521440327167511, + -0.001931115984916687, + -0.21663202345371246, + -0.4258120656013489, + -0.17608392238616943, + -0.27471083402633667, + 0.011573493480682373, + -0.019852012395858765, + 0.05697883665561676, + -0.245314359664917, + 0.18484780192375183, + 0.13690635561943054, + 0.24166014790534973, + 0.19423916935920715, + 0.1485014110803604, + -0.1416446417570114, + 0.25910893082618713, + 0.051359958946704865, + 0.10693731904029846, + 0.04341871291399002, + -0.11124110221862793, + 0.22823849320411682, + -0.3509555459022522, + -0.33482125401496887, + 0.1470247060060501, + -0.3226875066757202, + -0.09003838896751404, + 0.327632874250412, + -0.18796703219413757, + 1.0027178525924683, + 0.059049151837825775, + 0.48775333166122437, + -0.3561570644378662, + -0.22418895363807678, + -0.5175495147705078, + -0.189468115568161, + -0.1644888073205948, + 0.4041978418827057, + -0.376992791891098, + -0.10516620427370071, + 0.029608801007270813, + -0.22426320612430573, + 0.12748196721076965, + -0.40710651874542236, + 0.16171705722808838, + 0.17624612152576447, + 0.05078146234154701, + -0.1038956418633461, + -0.20130038261413574, + -0.21649286150932312, + -0.19395805895328522, + -0.11972298473119736, + -0.27753695845603943, + -0.2614072561264038, + -0.16987086832523346, + 0.14068448543548584, + -0.18627521395683289, + -0.00963681936264038, + -0.03653784841299057, + 0.02441592328250408, + 0.012865573167800903, + -0.06356844305992126, + -0.20271684229373932, + -0.1828005015850067, + 0.16658122837543488, + -0.23591338098049164, + 0.09281223267316818, + -0.05738338828086853, + 0.18323561549186707, + -0.610414981842041, + 0.1948745846748352, + -0.04017961025238037, + -0.12473005801439285, + 0.10756385326385498, + -0.006467368453741074, + -0.5754150152206421, + -0.1133527159690857, + -0.08798302710056305, + -0.38245201110839844, + -0.38252830505371094, + 0.3452181816101074, + 0.3062046766281128, + -0.054446130990982056, + -0.046067994087934494, + -0.3719785213470459, + -0.1270335614681244, + 0.011414270848035812, + 0.024023905396461487, + -0.020650774240493774, + 0.13790051639080048, + 0.31905239820480347, + -0.04153662174940109, + 0.11104166507720947, + -0.16259890794754028, + 0.025806540623307228, + -0.14075890183448792, + 0.1258578598499298, + -0.14600105583667755, + 0.08059394359588623, + -0.19656865298748016, + -0.07308802008628845, + -0.07318659871816635, + 0.5794887542724609, + -0.05243369936943054, + 0.01697799563407898, + 0.3507152199745178, + 0.004121031612157822, + -0.1313873529434204, + 0.05693739652633667, + 0.0027496195398271084, + -0.014008119702339172, + -0.05681472271680832, + -0.0028877928853034973, + 0.26023241877555847, + 0.028400234878063202, + -0.09513577818870544, + -0.04897238314151764, + -0.07589549571275711, + -0.02726917341351509, + -0.18878701329231262, + 0.10891083627939224, + 0.005321900825947523, + 0.18891409039497375, + 0.1987927407026291, + -0.1194024384021759, + -0.08393680304288864, + -0.32538455724716187, + 0.5843039751052856, + 0.06697213649749756, + -1.0207479000091553, + 0.1685137003660202, + -0.06757155060768127, + -0.3629404902458191, + -0.04172239080071449, + -0.7407524585723877, + 0.3046887218952179, + 0.1548781394958496, + -0.2618776559829712, + 0.0947084128856659, + 0.2610258162021637, + 0.2532884478569031, + 0.1269156038761139, + -0.10844318568706512, + 0.18871808052062988, + 0.22988960146903992, + 0.3208516836166382, + -1.4469733238220215, + 0.13279026746749878, + 0.1808677762746811, + 0.033339887857437134, + -0.06827019900083542, + 0.5150008201599121, + 0.023415572941303253, + -0.11738131940364838, + 0.22762730717658997, + -0.24207869172096252, + 0.9881788492202759, + -0.007970131933689117, + -0.2363734394311905, + -0.08456336706876755, + 0.26259300112724304, + 0.08091097325086594, + -0.10828284919261932, + -0.1537122279405594, + 0.04884622246026993, + 0.5244004130363464, + -0.4814161956310272, + -0.3737572431564331, + 0.11924201250076294, + 0.004664823412895203, + 0.25476160645484924, + 0.19334319233894348, + 0.3468640148639679, + 0.28003308176994324, + -0.16954222321510315, + 0.20551533997058868, + -0.3227940797805786, + 0.24487611651420593, + -0.2797028720378876, + 0.14942196011543274, + 0.17404595017433167, + 0.465096652507782, + 0.12797752022743225, + 0.15249300003051758, + -0.31667226552963257, + -0.1849721521139145, + 0.12581288814544678, + 0.24041298031806946, + -0.21686089038848877, + -0.7069734334945679, + 0.2743528485298157, + -0.0555240623652935, + 0.6768133640289307, + 0.01861916482448578, + 0.3512921631336212, + -0.044360965490341187, + 0.13411781191825867, + -0.015482306480407715, + -0.20151951909065247, + 0.420602023601532, + 0.27682337164878845, + -0.12695127725601196, + 0.4799653887748718, + -1.9280002117156982, + 0.3937647342681885, + 0.1576438844203949, + 0.14605645835399628, + 0.04451986029744148, + 0.06720849126577377, + -0.3795432448387146, + 0.3489115238189697, + -0.5678922533988953, + -0.16419294476509094, + -0.04163367301225662, + 0.0783759281039238, + -0.31990233063697815, + -0.042967334389686584, + -0.0685153529047966, + 0.7984169721603394, + -0.10349035263061523, + 0.2593424618244171, + 0.15314044058322906, + -0.21246621012687683, + -0.34577831625938416, + -0.518454372882843, + 0.6942036747932434, + -0.4760119318962097, + 0.25011956691741943, + -0.32727885246276855, + 0.19824519753456116, + 0.07584136724472046, + 0.030542701482772827, + 0.3080914616584778, + 0.20658323168754578, + -0.02929602935910225, + -0.2532966136932373, + 0.07598131895065308, + -0.019523702561855316, + 0.04676831513643265, + 0.4506237506866455, + 0.0516514889895916, + 0.05847048759460449, + 0.23229078948497772, + 0.03909709304571152, + 0.5017973184585571, + -0.35833078622817993, + 0.0999981015920639, + 0.10000881552696228, + 0.04532608389854431, + 0.10754642635583878, + -0.21894872188568115, + 0.034323737025260925, + -0.27475014328956604, + 0.07163357734680176, + -0.24756327271461487, + -0.2080107480287552, + -0.13541430234909058, + 0.524566650390625, + 0.11197474598884583, + -0.10995042324066162, + -0.090298593044281, + -0.21967335045337677, + -0.07865919172763824, + 0.20106299221515656, + 0.06626451015472412, + -0.12534523010253906, + -0.09130734205245972, + -0.16307391226291656, + 0.1834312379360199, + -0.06072212755680084, + -0.029853686690330505, + -0.08179786801338196, + 0.41478586196899414, + -0.22293224930763245, + -0.22420501708984375, + 0.16190144419670105, + 0.4577758312225342, + -0.2985568046569824, + -0.14831691980361938, + -0.11393611133098602, + 0.14641407132148743, + 0.3722904920578003, + 0.04763290286064148, + 0.23951879143714905, + 0.10200125724077225, + 0.2674921751022339, + 0.1821688413619995, + -0.41031232476234436, + 0.24306315183639526, + -0.06054185330867767, + 0.17356736958026886, + -0.09590724855661392, + 0.06780640780925751, + 0.09222596138715744, + -0.05236199498176575, + -0.13462746143341064, + -0.16400954127311707, + -0.4871191084384918, + -0.14637424051761627, + -0.15897831320762634, + -0.09592588245868683, + -0.3014993965625763, + 0.03838220238685608, + -0.0444645881652832, + 0.12314853817224503, + -0.1896176040172577, + 0.15905320644378662, + -0.8326584696769714, + 0.2706778943538666, + -0.21095183491706848, + 0.5073217153549194, + -0.23387381434440613, + 0.06863202899694443, + -0.11973509937524796, + 0.6349086761474609, + 0.1375577598810196, + -0.21113134920597076, + -0.23614461719989777, + 0.494807630777359, + 0.09589935094118118, + 0.24285101890563965, + 0.004249490797519684, + -0.1493823379278183, + 0.06477125734090805, + 0.5359313488006592, + -0.3733009397983551, + 0.4558623135089874, + -0.055143117904663086, + -0.020966604351997375, + 0.12131664156913757, + -0.638298749923706, + 0.18409520387649536, + 0.5692879557609558, + -0.02225518971681595, + -0.1808367371559143, + 0.29695412516593933, + 0.23473921418190002, + -0.446001261472702, + 0.1440083086490631, + -0.21241049468517303, + -0.07098916172981262, + 0.5726866722106934, + 0.02410583198070526, + 0.4600829780101776, + 0.08611372858285904, + -0.02556750178337097, + -0.047908589243888855, + -1.2840911149978638, + -0.3184514343738556, + 0.04629641771316528, + -0.1985180377960205, + 0.2761498689651489, + -0.28406354784965515, + -0.1066925972700119, + 0.34712958335876465, + -0.2647269368171692, + -0.017268285155296326, + 0.024029657244682312, + -0.03218366205692291, + 0.1288452446460724, + -0.43808501958847046, + -0.30484113097190857, + -0.11254501342773438, + 0.37326890230178833, + 0.477289617061615, + -0.17935925722122192, + 0.11749321222305298, + 0.5698971748352051, + -0.3367512822151184, + 0.04827239364385605, + 1.1266684532165527, + -0.030968528240919113, + 0.33822184801101685, + -0.5908262729644775, + -0.13295866549015045, + -0.18235579133033752, + -0.23411825299263, + 0.28266453742980957, + 0.8347465395927429, + 0.3887138366699219, + -0.10130897164344788, + -0.10514646768569946, + 0.02376997470855713, + -0.18941058218479156, + 0.379660427570343, + -0.35165998339653015, + 0.08486741036176682, + 0.3194579482078552, + 0.0322224423289299, + 0.7980902194976807, + 0.5473744869232178, + 0.008634135127067566, + -0.011883452534675598, + -0.2513958811759949, + -0.4827501177787781, + -0.14869153499603271, + -0.17117896676063538, + -0.6231460571289062, + 0.41144412755966187, + -0.07587463408708572, + -0.3910819888114929, + 0.4722588062286377, + 0.2689785957336426, + 0.04003838822245598, + 0.14922446012496948, + 0.04589070379734039, + -0.1451644003391266, + 0.18200024962425232, + -0.015341609716415405, + -0.406917542219162, + 0.0396990031003952, + 0.030143529176712036, + -0.21529223024845123, + -0.42124414443969727, + 0.05098893493413925, + 0.25497812032699585, + -0.08184462785720825, + -0.7328046560287476, + -0.7387535572052002, + -0.05003071576356888, + 1.0095045566558838, + -4.775733947753906, + -0.6802082061767578, + -0.1328599601984024, + 0.2744995057582855, + 0.11676034331321716, + -0.11069371551275253, + 0.4275705814361572, + -1.3355637788772583, + 0.4616013169288635, + -0.21336105465888977, + -0.11288347095251083, + -0.6322488188743591, + -0.21831779181957245, + -0.14105501770973206, + -0.20738062262535095, + -0.20177096128463745, + -0.3832777142524719, + 1.2877124547958374, + 0.17447620630264282, + -0.2910422086715698, + -0.005761907435953617, + -0.05765004828572273, + -1.0447587966918945, + 0.438728928565979, + 0.01824263110756874, + -0.26627111434936523, + 0.34823518991470337, + 0.2530484199523926, + -0.1891721487045288, + 0.038501471281051636, + 0.34082674980163574, + 0.49932679533958435, + 0.22727060317993164, + -0.036474257707595825, + -0.008441939949989319, + -0.07890769839286804, + -0.29098746180534363, + -0.21410436928272247, + 0.0876639112830162, + -0.25576746463775635, + -0.07458812743425369, + -0.2508583962917328, + -0.363838791847229, + 0.17967040836811066, + 0.272450715303421, + 0.08631119877099991, + 0.13659684360027313, + -0.2522793710231781, + 0.15935830771923065, + 0.01756872981786728, + 0.2105330228805542, + -0.07949616014957428, + 0.24941551685333252, + 0.42180436849594116, + 0.4255830645561218, + 0.4476163387298584, + -0.031796470284461975, + -0.3101528286933899, + 0.14307764172554016, + 0.4260346293449402, + -0.35167115926742554, + 0.2258552610874176, + 0.0024325698614120483, + -0.4220447838306427, + 0.29848775267601013, + -0.19030578434467316, + 0.3138594329357147, + 1.3008928298950195, + -0.08072875440120697, + 0.27614864706993103, + -0.11444830894470215, + -0.034883394837379456, + 0.3327125310897827, + -0.18106456100940704, + -0.048923760652542114, + 0.7946191430091858, + -0.016558188945055008, + -0.454292356967926, + -0.04546117037534714, + -0.362073689699173, + -0.08801132440567017, + -0.20213115215301514, + 0.6751173138618469, + 0.40257248282432556, + -0.26393431425094604, + -0.4167236089706421, + 0.3326154947280884, + 0.12076626718044281, + -0.36203163862228394, + -0.08680590987205505, + -0.11405976861715317, + 0.3340074121952057, + 0.8253483176231384, + 0.10074763000011444, + 0.25995349884033203, + 0.2159348726272583, + 0.268167108297348, + 0.5079567432403564, + 0.041045449674129486, + 0.30045413970947266, + -0.15257525444030762, + 0.05695942044258118, + -0.3684050738811493, + -0.07656427472829819, + 0.23256102204322815, + -0.21127742528915405, + 0.9363166689872742, + -0.11063992977142334, + 0.08337533473968506, + 0.10406093299388885, + -0.23457476496696472, + -1.1345512866973877, + 0.07825203239917755, + -0.14039015769958496, + 0.15528178215026855, + 1.2758538722991943, + -0.03722960501909256, + 0.14686161279678345, + 0.07333330065011978, + -0.3865642845630646, + -0.34955161809921265, + -0.2253279685974121, + 1.0677686929702759, + 0.19840051233768463, + -0.3725765347480774, + 0.18988879024982452, + -0.10816880315542221, + -0.534096896648407, + -0.32549935579299927, + 0.04879756271839142, + 0.1618538498878479, + 0.21173396706581116, + -0.06319093704223633, + 0.09624102711677551, + 0.19165490567684174, + -0.14451059699058533, + -0.22350873053073883, + -0.5558019280433655, + -0.4171331822872162, + 0.4255518317222595, + 0.10298698395490646, + -0.15958836674690247, + 0.023518845438957214, + 0.12873145937919617, + -0.01146070659160614, + 1.0082480907440186, + -0.32867002487182617, + -0.3533652126789093, + 0.08769915252923965, + -0.5131094455718994, + 0.20046232640743256, + -0.4883454144001007, + 0.4780936539173126, + -0.11574777960777283, + 0.34108394384384155, + 0.09904322773218155, + 0.06763297319412231, + 0.027644101530313492, + 0.33004146814346313, + -0.2929961681365967, + 0.40888160467147827, + -0.0818236917257309, + -0.2731785178184509, + 0.22759127616882324, + 0.7619320154190063, + 0.013388179242610931, + -0.21177849173545837, + 0.24298110604286194, + 0.08481737971305847, + -0.4590599834918976, + 0.2850301265716553, + -0.17032504081726074, + 0.2418583780527115, + 0.004864253103733063, + 0.3658907413482666, + 0.0419929139316082, + 0.8400648236274719, + -0.8961794376373291, + -0.010201692581176758, + 0.3260062038898468, + 0.0007779747247695923, + -0.06581534445285797, + -0.10362276434898376, + 0.060525938868522644, + 0.1658903956413269, + -0.23262973129749298, + -0.16060581803321838, + 0.4490281939506531, + 0.15858691930770874, + 0.4001786708831787, + 0.13919098675251007, + 0.031287066638469696, + 0.0068307481706142426, + 0.11835693567991257, + -0.21177327632904053, + 0.18498511612415314, + -0.10356862097978592, + 0.09381833672523499, + 0.3748653531074524, + 0.3257808983325958, + 0.18295767903327942, + 0.125930517911911, + 0.0280926376581192, + 0.12085193395614624, + 0.1731717884540558, + -0.2762124240398407, + -0.16755646467208862, + 0.19184863567352295, + 0.1532738357782364, + -0.0907265841960907, + 0.5483892560005188, + 0.12665973603725433, + -0.2926015257835388, + 0.15552735328674316, + -0.9253138303756714, + 0.09810502082109451, + -0.12070797383785248, + 0.15915381908416748, + 0.38011634349823, + 0.08797027915716171, + 0.30337202548980713, + -0.2531530261039734, + 0.2974494397640228, + -0.7191125750541687, + 0.3997010588645935, + 0.26883387565612793, + -0.06384479999542236, + 0.03351360559463501, + 0.1889222264289856, + 0.045485977083444595, + -0.043609023094177246, + 0.03696223348379135, + -0.12214993685483932, + 0.010750509798526764, + -0.3278830945491791, + 0.3963889479637146, + 0.950543224811554, + 0.1324160099029541, + 0.9209296703338623, + 0.20833830535411835, + 0.11949248611927032, + 0.17742875218391418, + 0.08616167306900024, + -0.22201667726039886, + -0.3843415379524231, + 0.09822312742471695, + -0.0637560784816742, + 0.19368933141231537, + 0.07902757823467255, + 0.2983781695365906, + 1.9318873882293701, + 0.09160992503166199, + 0.5048768520355225, + 0.25030744075775146, + 0.0744517371058464, + 0.304651141166687, + 0.47602492570877075, + -0.3929145634174347, + 0.4104471206665039, + 0.5560500621795654, + 0.003291095606982708, + -0.2952978014945984, + 0.14222225546836853, + 0.28949588537216187, + 0.7205332517623901, + -0.5413979887962341, + 0.4183485805988312, + -0.37308359146118164, + 0.47698596119880676, + -0.28970789909362793, + 1.5688161849975586, + 0.0009368583559989929, + -0.17172250151634216, + -0.17173564434051514, + -0.20540055632591248, + -0.03171142190694809, + -0.15022288262844086, + 0.0767928808927536, + -0.1380588412284851, + 0.15492309629917145, + -0.177983820438385, + -0.2106591910123825, + -0.17889517545700073, + 0.0007925331592559814, + 0.008534718304872513, + 0.41815656423568726, + -0.17296308279037476, + 0.041176922619342804, + -0.2526688575744629, + -0.24495713412761688, + 0.08383633941411972, + -0.26378345489501953, + 0.04877442121505737, + -0.06932233273983002, + -0.1356150507926941, + -0.05408473685383797, + 1.7459641695022583, + -1.0480451583862305, + 0.07581458985805511, + -0.030914828181266785, + -0.19827692210674286, + -0.8259670734405518, + 0.056810710579156876, + 1.7620210647583008, + -0.09372387826442719, + 0.12666404247283936, + -0.7289822101593018, + -0.0868103951215744, + 0.020263679325580597, + 0.17001742124557495, + -0.002879059873521328, + -0.02378109097480774, + 0.026936454698443413, + -0.2831425666809082, + -0.22745557129383087, + 0.47287383675575256, + -0.0695054829120636, + -0.3502219617366791, + -0.0044693052768707275, + 0.14374123513698578, + 0.09870724380016327, + -0.1525145173072815, + -0.24907024204730988, + -0.1552514135837555, + -0.029278116300702095, + 0.14404301345348358, + -0.31621214747428894, + 0.08830989897251129, + -0.02016282081604004, + -0.14763793349266052, + -0.12578460574150085, + 0.16618579626083374, + 0.056873053312301636, + 0.16978487372398376, + -0.3077165484428406, + -0.09413620084524155, + 0.13241419196128845, + -1.2765144109725952, + -0.052468858659267426, + 1.1852588653564453, + 0.15517973899841309, + 0.13721811771392822, + 1.8808985948562622, + -0.5873150825500488, + 0.3425675630569458, + -0.2526504397392273, + 0.09784480184316635, + -0.29051005840301514, + -0.9607837796211243, + 0.0360005758702755, + -0.3926621079444885, + -0.1341237723827362, + 0.18926472961902618, + 0.18921291828155518, + -0.22312787175178528, + 1.1101999282836914, + -0.4846108555793762, + 0.21876448392868042, + 0.2360837459564209, + 0.25026631355285645, + 0.07145113497972488, + -0.9080421924591064, + -0.16952237486839294, + 0.08598744124174118, + -0.23965735733509064, + 0.27583205699920654, + -0.24075773358345032, + 0.09258848428726196, + -0.07463186979293823, + 0.05066303908824921, + -0.416822224855423, + -0.3131375014781952, + 0.29987722635269165, + 0.43025127053260803, + -0.17850369215011597, + -0.28447866439819336, + 1.3802474737167358, + -0.11861561238765717, + 0.42650502920150757, + 0.10182365775108337, + -0.25127169489860535, + 0.12960079312324524, + -0.01509121060371399, + 0.14468909800052643, + -0.302189439535141, + -0.20704662799835205, + -0.015251263976097107, + -0.6715297698974609, + 0.4261324107646942, + -0.11027878522872925, + 0.3985850214958191, + 0.15534673631191254, + -0.19962593913078308, + 0.08613033592700958, + 0.5144453048706055, + -0.2085666060447693, + -0.41206464171409607, + 0.16403542459011078, + -0.20760281383991241, + 0.020769407972693443, + 0.09144742041826248, + 0.1816948801279068, + -0.30467063188552856, + 0.30578261613845825, + -0.17275792360305786, + -0.5498068332672119, + 0.11824633181095123, + -0.4274297058582306, + 0.14153680205345154, + -0.04371975362300873, + 0.20196570456027985, + -0.1204860731959343, + -0.08931174129247665, + 0.0016278773546218872, + -0.059378642588853836, + -0.08682303130626678, + 0.277771532535553, + 0.40988102555274963, + 0.5816221237182617, + 0.006335534155368805, + 0.1718687266111374, + -0.08102958649396896, + 0.060118816792964935, + -0.34989848732948303, + -0.038752906024456024, + 0.03992091864347458, + 0.33412081003189087, + 0.06606799364089966, + -0.29799336194992065, + 0.3938562870025635, + -0.24159875512123108, + -0.47793707251548767, + 0.2028515338897705, + 0.08405821025371552, + -0.38783061504364014, + 0.035149261355400085, + -0.4686303734779358, + -0.1228095144033432, + -0.023185819387435913, + 0.24570037424564362, + 0.46264782547950745, + 0.12775564193725586, + -0.1774435043334961, + 0.04074808955192566, + -0.007890917360782623, + -0.2341715693473816, + 0.7049065828323364, + -0.2848416566848755, + 0.25627774000167847, + 0.03164761886000633, + -0.12409981340169907, + 0.07300117611885071, + 0.07525880634784698, + -0.3816121220588684, + 0.5800409913063049, + -0.36668914556503296, + -0.4647079110145569, + -0.055355802178382874, + 0.6109876036643982, + 0.2557084262371063, + -0.3981480002403259, + 0.1436665654182434, + 0.3069233298301697, + 0.003443196415901184, + 0.2701340317726135, + -0.15153717994689941, + -0.13415884971618652, + -0.07127799838781357, + -0.20895054936408997, + -0.17254532873630524, + -0.2572574019432068, + -0.06702360510826111, + -0.5187510251998901, + 0.4468654692173004, + -0.30933648347854614, + 0.23351186513900757, + -0.534264087677002, + -0.1417214721441269, + -0.02814730629324913, + -1.232810616493225, + 0.19037622213363647, + 0.8330073356628418, + -0.27459484338760376, + 0.19182316958904266, + 0.30521339178085327, + -0.13205677270889282, + -0.1859484612941742, + 0.045455172657966614, + -0.10620910674333572, + -0.45466095209121704, + 0.07973332703113556, + 0.2989824414253235, + -0.07692165672779083, + 1.454777479171753, + -0.03687450289726257, + 0.22834797203540802, + 0.0526653528213501, + -0.11276796460151672, + -0.01095646619796753, + -0.5105632543563843, + 0.12453006953001022, + -0.11023904383182526, + 0.18632714450359344, + 0.17296916246414185, + 0.797276496887207, + 0.3852328658103943, + 0.3012707829475403, + 0.05233016237616539, + 0.2834659814834595, + 0.3712468445301056, + -0.07884548604488373, + 0.10153742134571075, + 0.019206911325454712, + 0.6863892078399658, + -0.21285705268383026, + -0.20174020528793335, + 0.053024232387542725, + -0.367546945810318, + -0.04304315149784088, + -0.26930904388427734, + 0.1549544781446457, + -0.2232079654932022, + -0.39380794763565063, + 0.24149881303310394, + 0.5128505825996399, + 0.35971587896347046, + 0.2720518112182617, + 0.264962762594223, + 0.7250951528549194, + 0.20112736523151398, + -0.2162592113018036, + 0.08950568735599518, + 0.23162803053855896, + -0.19129392504692078, + 0.09141230583190918, + 0.14809244871139526, + 0.04183608666062355, + 0.3773149847984314, + 0.12331834435462952, + -0.7638418674468994, + -0.2407083809375763, + -0.355613112449646, + 0.5092301368713379, + 0.03838193416595459, + -0.14183540642261505, + -0.12682104110717773, + -0.43941643834114075, + -0.45168131589889526, + 0.04396422207355499, + 0.14339689910411835, + 0.32458680868148804, + -0.2815907597541809, + 0.03438658267259598, + -0.2915512025356293, + 0.12668007612228394, + 0.31950026750564575, + 0.4306921362876892, + 0.5825259685516357, + 0.15823641419410706, + -0.29092592000961304, + 0.2032565027475357, + -0.13588160276412964, + -0.04636162519454956, + 0.2622952461242676, + -0.09562968462705612, + 0.1694502830505371, + -0.35880905389785767, + -0.30985796451568604, + 0.19887453317642212, + 0.194789320230484, + -0.2587268650531769, + 0.32910022139549255, + 0.41861650347709656, + -0.032445263117551804, + 0.24339786171913147, + 0.3886704444885254, + -0.1135311871767044, + -0.06247817352414131, + 0.7719002366065979, + -0.0010476112365722656, + -0.20312532782554626, + -0.4511040449142456, + -0.02609875798225403, + -0.1216401755809784, + -0.022549692541360855, + 0.15300807356834412, + 0.21929511427879333, + -0.14241045713424683, + 0.02049480378627777, + 0.2851766347885132, + -0.02415255457162857, + 0.18176665902137756, + 0.6480218172073364, + -0.30380454659461975, + 0.13285931944847107, + -0.15571534633636475, + 0.04721832275390625, + 0.05779173970222473, + 0.17537744343280792, + -0.1347883641719818, + -0.15829351544380188, + -0.29630303382873535, + -0.24948790669441223, + 0.20324452221393585, + 0.3279065489768982, + 0.002022441476583481, + -0.31624913215637207, + -0.20124661922454834, + -0.7301862239837646, + -0.04913400486111641, + -0.3409354090690613, + -0.2846220135688782, + 0.35717353224754333, + -0.4237431585788727, + -0.3065846562385559, + 0.02289130911231041, + -0.3182421922683716, + 0.4668310284614563, + -0.07666544616222382, + -0.4394278824329376, + -0.512139081954956, + 0.6545235514640808, + -0.18215502798557281, + -0.618159830570221, + -0.11649720370769501, + 0.32166725397109985, + -0.2824287414550781, + -0.011840105056762695, + -0.07147028297185898, + 0.11393482983112335, + -0.35840797424316406, + 0.6084721684455872, + 0.19597017765045166, + 0.09886206686496735, + -0.5700411796569824, + -0.2409442961215973, + -0.4067692756652832, + 0.1361103355884552, + -0.2678021490573883, + 0.20452360808849335, + -0.48748278617858887, + -0.28968003392219543, + -0.02029598504304886, + 0.08772356808185577, + 0.33499500155448914, + 0.30613449215888977, + -0.6670225262641907, + -0.2529430091381073, + -0.10182555019855499, + 0.2530527114868164, + 0.15044303238391876, + -0.07117355614900589, + 0.2615998387336731, + 0.23582175374031067, + 0.08518417924642563, + -0.03998170793056488, + -0.03503213822841644, + -0.41692572832107544, + 0.264549195766449, + 0.06656789779663086, + 0.19655974209308624, + -0.6907084584236145, + 0.16918495297431946, + 0.1378495842218399, + 0.03237615525722504, + -0.5166168212890625, + 0.3145482838153839, + 0.08334838598966599, + 0.22699329257011414, + 0.5248947739601135, + -0.46433785557746887, + -0.09937632083892822, + -0.25556719303131104, + -0.4154496490955353, + 0.5492342114448547, + 0.11859912425279617, + 0.31775587797164917, + 0.0670187920331955, + -0.07567821443080902, + 1.107308268547058, + -0.6243684887886047, + 0.4083511531352997, + 0.01929601840674877, + -0.07879865169525146, + -0.8174237608909607, + -0.06465360522270203, + -0.6396897435188293, + 0.23106423020362854, + 0.038855910301208496, + 0.11225006729364395, + -0.10689637064933777, + 0.03370774909853935, + -0.1766149401664734, + -0.08251698315143585, + -0.0031560640782117844, + 0.22011710703372955, + 0.032528944313526154, + 0.0030892491340637207, + 0.06310854107141495, + 0.24999478459358215, + 0.5771049857139587, + -0.15224166214466095, + -0.2753477394580841, + 0.2212902009487152, + -0.05101267248392105, + 0.026055172085762024, + -0.3427070379257202, + 0.5479166507720947, + 0.23999297618865967, + 0.07911581546068192, + 0.7058126330375671, + -0.32927292585372925, + 0.3022710978984833, + -0.12361258268356323, + -0.3635234236717224, + -0.8202447295188904, + 0.10962548851966858, + 0.1323261559009552, + 0.07671169936656952, + 0.10375902056694031, + -0.41344600915908813, + -0.03385934233665466, + -0.27648910880088806, + -0.09892499446868896, + 1.6574196815490723, + -0.21844547986984253, + 0.2873864769935608, + -0.0964619517326355, + -0.04694640636444092, + 0.14038288593292236, + -0.03358088433742523, + 0.8788230419158936, + 0.0030877292156219482, + -0.2747343182563782, + 2.0045652389526367, + 0.27179649472236633, + 0.0137501060962677, + -0.29386088252067566, + -0.3058021068572998, + 0.08896812796592712, + -0.1178845465183258, + 0.13578419387340546, + -0.17392143607139587, + -0.29113060235977173, + 0.32340407371520996, + 0.2518533766269684, + 0.21632102131843567, + -0.1359512060880661, + -0.4610559642314911, + -0.1989457756280899, + -0.20318537950515747, + -0.25937557220458984, + -0.31828024983406067, + 0.08389782905578613, + -0.2988029718399048, + -0.02732902765274048, + -0.6388557553291321, + -0.6698936223983765, + 0.14874792098999023, + -1.0859169960021973, + -0.1349354237318039, + -0.1500844955444336, + 0.07228981703519821, + -0.043571099638938904, + 0.25283873081207275, + 0.0029518529772758484, + 0.024149170145392418, + -0.37996456027030945, + -0.09350339323282242, + 0.07674466073513031, + 0.17084729671478271, + -0.0742725059390068, + 0.13850367069244385, + -0.03086520917713642, + 0.17691051959991455, + 0.39322078227996826, + 0.35369130969047546, + -0.2527996599674225, + 0.14005281031131744, + 0.2709518373012543, + 0.018057692795991898, + 0.3009607195854187, + 0.20343691110610962, + 0.051332682371139526, + 0.15190398693084717, + 0.2791380286216736, + -0.06975176930427551, + 0.0741666853427887, + 0.13752534985542297, + 0.06339546293020248, + 0.12793254852294922, + -1.2879595756530762, + -0.4020475447177887, + 0.011039277538657188, + 0.05220024660229683, + 0.036876074969768524, + -0.03410099446773529, + -0.14534544944763184, + -0.43092310428619385, + -0.021591652184724808, + 0.12945128977298737, + 0.13149192929267883, + 0.40091538429260254, + 0.7415741682052612, + -0.9458908438682556, + 0.3674207031726837, + 0.16940943896770477, + 0.004451885353773832, + -0.15395605564117432, + 0.24144640564918518, + 0.03373333811759949, + -0.2032289057970047, + -0.14326226711273193, + 0.0952349528670311, + 0.4520993232727051, + -0.1442633420228958, + -0.0343606099486351, + 0.05831105262041092, + 0.1818614900112152, + 0.03870691359043121, + -0.31378433108329773, + -0.4346131980419159, + 0.11983339488506317, + 0.17723709344863892, + -1.0450701713562012, + -0.578273355960846, + -0.4851609170436859, + 0.05410417914390564, + -0.11206850409507751, + -0.08024980127811432, + -0.15162381529808044, + -0.2666689157485962, + -0.20128783583641052, + -0.06186603754758835, + -0.17610609531402588, + -0.12296253442764282, + -0.031592514365911484, + 0.14699289202690125, + -0.3999151885509491, + -0.2344505488872528, + 0.9278438687324524, + -0.17911601066589355, + 0.005706176161766052, + 0.26786577701568604, + 0.28728756308555603, + -0.16776125133037567, + -0.19903689622879028, + -0.047128066420555115, + 0.08030638843774796, + 0.17630568146705627, + 0.04019821062684059, + -0.4416640102863312, + -0.21640656888484955, + 0.2442053109407425, + -0.06812664866447449, + -0.289606511592865, + -0.029749982059001923, + -0.18272405862808228, + -0.06030425429344177, + 0.15712803602218628, + 0.1325642466545105, + 0.48323631286621094, + 0.10241468995809555, + 0.057736486196517944, + 0.008637763559818268, + -0.052800826728343964, + -0.35777151584625244, + -0.06637191772460938, + -0.11154633015394211, + -0.3583536744117737, + 0.7046040296554565, + 0.07402580231428146, + -0.34460702538490295, + 0.2072433978319168, + 0.22929471731185913, + -0.4589895009994507, + 0.32211390137672424, + -0.15933099389076233, + -0.1618189513683319, + -0.22027264535427094, + -0.15330997109413147, + 0.032253578305244446, + -0.4191528856754303, + 0.18009693920612335, + 0.39712998270988464, + 0.4718610346317291, + 0.7317380905151367, + 0.42968398332595825, + -0.3646456301212311, + 0.004332199692726135, + 0.10285577178001404, + -0.19011946022510529, + 0.17393705248832703, + 0.16641581058502197, + -0.21434107422828674, + 0.17496542632579803, + 0.15224595367908478, + 0.19133545458316803, + 0.3065207004547119, + 0.1305285096168518, + 0.03986210376024246, + -0.02944829687476158, + 0.006434840150177479, + -1.0728285312652588, + -0.14749595522880554, + -0.5413577556610107, + -0.2676562964916229, + 0.08227376639842987, + -0.08414775133132935, + -0.3442533016204834, + -0.246673122048378, + -0.04281361401081085, + -1.509340524673462, + 0.003281712532043457, + 0.09176114946603775, + 0.17195317149162292, + -0.17210134863853455, + -0.5952246785163879, + -0.02922782301902771, + 0.020351819694042206, + 0.022816810756921768, + -0.2579500079154968, + 0.06396463513374329, + 0.23633235692977905, + 0.36628472805023193, + 0.10843770205974579, + 0.38947951793670654, + -0.1949707269668579, + 0.32977262139320374, + 0.1561024934053421, + 0.25442206859588623, + -0.578977108001709, + 0.27742451429367065, + 0.14900603890419006, + -0.2021319717168808, + 0.12701405584812164, + -0.3243755102157593, + 0.3211044669151306, + -0.628577709197998, + 0.19206927716732025, + -0.10599540174007416, + -0.04833927005529404, + -0.45815128087997437, + -0.42141494154930115, + 0.0011730305850505829, + 0.02996567077934742, + -0.22302380204200745, + -0.040002595633268356, + -0.20096397399902344, + 0.14899542927742004, + -0.2875671088695526, + 0.12240105122327805, + -0.17865243554115295, + -0.11145355552434921, + 0.10296855866909027, + 0.28424614667892456, + -0.017825715243816376, + -0.31822913885116577, + 0.06576094031333923, + 0.02212003618478775, + 0.3239118158817291, + -0.34484872221946716, + -0.06691137701272964, + -0.18627595901489258, + 0.32941702008247375, + 0.09607809782028198, + 0.4221831262111664, + 0.22095172107219696, + 0.10378499329090118, + 0.24004359543323517, + 1.4553248882293701, + 0.06997920572757721, + -0.18770024180412292, + -0.0031661689281463623, + -0.2526584267616272, + 0.2850706875324249, + -0.035904139280319214, + 0.1654883772134781, + 0.053592950105667114, + 0.5003551840782166, + 0.02363486960530281, + -0.13025939464569092, + 0.2451631873846054, + -0.15263277292251587, + -0.08179458975791931, + 0.036096710711717606, + -0.4304596185684204, + -0.03782336413860321, + 0.0439617782831192, + -0.20465624332427979, + -0.3255114257335663, + -0.5702898502349854, + -0.1569892168045044, + -0.8557054996490479, + 0.043809905648231506, + 0.586909830570221, + -0.15342029929161072, + 0.12984223663806915, + -0.14534993469715118, + -0.25247281789779663, + 0.05867648124694824, + 0.17240455746650696, + 0.2771463394165039, + 0.07232671231031418, + 0.5736367702484131, + -0.15463276207447052, + -0.17362858355045319, + -0.3285507261753082, + 0.3439774215221405, + -0.34335780143737793, + -0.37816372513771057, + 0.2144973874092102, + -0.4119046926498413, + 0.0325695276260376, + 0.16267339885234833, + 0.11608419567346573, + 0.3114704489707947, + -0.0638723075389862, + -0.07224339246749878, + -0.15087682008743286, + -0.09168712794780731, + -0.10287539660930634, + -0.5238132476806641, + 0.1167498230934143, + 0.08076077699661255, + 0.06588868796825409, + 0.24385502934455872, + -0.12028931081295013, + 0.04859044402837753, + -0.23115944862365723, + 0.11251981556415558, + 0.09598883241415024, + 0.19095918536186218, + -0.033166706562042236, + -0.26797351241111755, + -0.4792795777320862, + -0.06914977729320526, + 0.09516775608062744, + 1.0087194442749023, + 0.2902185320854187, + -0.03251095861196518, + -0.07970849424600601, + 0.04390065371990204, + 0.16706058382987976, + 0.10181471705436707, + 0.05417127162218094, + 0.25981375575065613, + -0.5684957504272461, + 0.09384123235940933, + -0.32582107186317444, + 0.4209739565849304, + -0.6860048770904541, + -1.55306077003479, + -0.0411318838596344, + -0.47679567337036133, + -0.12634146213531494, + 0.32418590784072876, + 0.090629942715168, + 0.14052818715572357, + 0.12389353662729263, + 0.15409602224826813, + -0.06319136917591095, + 0.29229283332824707, + 0.1674635112285614, + -0.29523974657058716, + -0.29517343640327454, + 0.2333829700946808, + 0.16134686768054962, + 0.2608512341976166, + 0.0006113611161708832, + -0.2675580382347107, + 0.10943927615880966, + -0.08231738954782486, + 0.6401768922805786, + 0.10964033007621765, + -0.09427431970834732, + 0.6139243841171265, + 0.08273713290691376, + 0.22375892102718353, + -0.13479968905448914, + -0.35809290409088135, + 0.027319476008415222, + -0.1641819030046463, + -0.18756423890590668, + -0.04167474806308746, + 0.5030890703201294, + 0.12526020407676697, + 0.039383500814437866, + -0.4115828275680542, + -0.1019233912229538, + -0.22175666689872742, + 0.13546869158744812, + -0.3133178949356079, + -0.21719199419021606, + 0.35861456394195557, + -0.21557556092739105, + 0.016706155613064766, + 0.032019589096307755, + -0.11976048350334167, + -0.3825344145298004, + 0.12046954035758972, + -0.032915547490119934, + -0.1666470170021057, + 0.10793490707874298, + 0.01104842871427536, + 0.07272311300039291, + -0.22021877765655518, + 0.07534180581569672, + 0.23312386870384216, + -0.22474826872348785, + -0.23655027151107788, + 0.21838192641735077, + 0.365245521068573, + 0.4760615825653076, + 0.26621460914611816, + -0.05202377960085869, + -0.06197066232562065, + -1.0728187561035156, + 0.05795472115278244, + 0.7188584804534912, + 0.21801817417144775, + -0.030359428375959396, + -0.16646409034729004, + 0.1232108473777771, + 0.19285160303115845, + 0.020080318674445152, + 0.5922115445137024, + -0.03847605735063553, + 0.29295143485069275, + 0.07590227574110031, + 0.29717200994491577, + 0.030775681138038635, + -0.05287020653486252, + -0.23766353726387024, + -0.40018898248672485, + 0.27777770161628723, + 0.12675637006759644, + -0.4696604013442993, + 0.17141789197921753, + -0.8930827379226685, + -0.17131726443767548, + 0.01653611660003662, + 0.07509277015924454, + -0.2190452665090561, + 0.05889011174440384, + -0.21489852666854858, + -0.2930079400539398, + 0.05546822398900986, + -0.2371877282857895, + 0.12795239686965942, + 0.14699703454971313, + 0.38381704688072205, + -0.38221046328544617, + -0.10352276265621185, + -0.35096651315689087, + -0.20806513726711273, + 0.34567445516586304, + 0.09119120240211487, + 0.20000684261322021, + 0.9975664615631104, + 0.06407037377357483, + -0.11691486835479736, + 0.12989258766174316, + 0.8315973281860352, + 0.2877441644668579, + -0.06641289591789246, + -0.010363712906837463, + -0.5804985761642456, + 0.5777339935302734, + 0.12412652373313904, + -0.06269249320030212, + -0.19241036474704742, + 0.014573134481906891, + 0.2791304886341095, + -0.5565868616104126, + -0.25520050525665283, + -0.49904778599739075, + 0.010109695605933666, + 0.32371339201927185, + 0.2138310670852661, + 0.1623695343732834, + 0.0287603959441185, + -0.17394313216209412, + -0.04775283485651016, + 0.4007551074028015, + -0.14392131567001343, + 0.567887544631958, + 0.3399074077606201, + 0.00546872615814209, + 0.10811757296323776, + -0.21890881657600403, + -0.20204868912696838, + 0.05966859310865402, + 0.013652339577674866, + -0.9528879523277283, + -0.06328383088111877, + 0.1925903856754303, + -0.18147669732570648, + 0.001805078238248825, + -0.08783172070980072, + 0.23447075486183167, + 0.11469361186027527, + -0.017305642366409302, + -0.28282493352890015, + -0.17938654124736786, + -0.24296866357326508, + -0.33003556728363037, + -0.2789587080478668, + -0.22960565984249115, + 0.06805188208818436, + 0.2824103832244873, + 0.08950157463550568, + -0.3037450611591339, + 0.8637826442718506, + 0.16694296896457672, + -0.23871415853500366, + -0.26843249797821045, + 0.06072019040584564, + -1.2437169551849365, + -0.2697497308254242, + 0.1536065638065338, + 0.053627997636795044, + 0.567690372467041, + 0.03472284972667694, + -0.01437019556760788, + -1.417503833770752, + -0.2631385922431946, + 0.33497944474220276, + -0.16869591176509857, + -0.23268361389636993, + 0.04490378499031067, + 0.3308568298816681, + -0.16529297828674316, + 0.08101806789636612, + 0.16350723803043365, + 0.21517062187194824, + -0.021031897515058517, + 0.16252247989177704, + -0.002586580812931061, + 0.10303697735071182, + -0.31338268518447876, + -0.30456221103668213, + 0.2376350313425064, + -0.14425289630889893, + 0.04798920825123787, + -0.020787393674254417, + -0.10414206236600876, + -0.11710360646247864, + -0.0386558435857296, + 0.3045963644981384, + 0.1612553745508194, + -0.09960365295410156, + 0.04574283957481384, + 0.2821086049079895, + -0.012514539062976837, + -0.04274088889360428, + -0.1993676722049713, + 0.22016414999961853, + -0.24487797915935516, + -0.22283165156841278, + 0.4039817750453949, + -0.17264600098133087, + -0.13729001581668854, + -0.23091700673103333, + 0.12101662904024124, + -0.024432256817817688, + 0.19236192107200623, + -0.22081312537193298, + -0.44539204239845276, + -0.5576892495155334, + 0.06573434174060822, + 0.09611953794956207, + -0.41893690824508667, + -0.1360579878091812, + -0.19767102599143982, + -0.20350612699985504, + 0.3138067424297333, + 0.3095327615737915, + 0.20342490077018738, + -0.15783847868442535, + -0.13983865082263947, + 0.29501616954803467, + 0.05026238039135933, + 0.12082116305828094, + -0.00865975022315979, + 0.21174025535583496, + 0.11527182906866074, + -0.3878045678138733, + -0.23817145824432373, + -0.2599996328353882, + -0.41050922870635986, + -0.19310784339904785, + -0.3144674301147461, + -0.08011816442012787, + -0.256748229265213, + -0.2720552086830139, + -0.1479789763689041, + -0.47084683179855347, + 0.17121510207653046, + 0.30583614110946655, + 0.1425883173942566, + 0.0912223756313324, + -0.2658974528312683, + 0.27753570675849915, + 0.35291537642478943, + 0.3545573353767395, + 0.10993415117263794, + 0.061811335384845734, + -0.16252116858959198, + -0.1084875762462616, + 0.2750430703163147, + 0.9826393127441406, + 0.25936204195022583, + -0.003989428281784058, + 0.45813435316085815, + 0.5105538964271545, + 0.39602595567703247, + -0.22583964467048645, + -0.1893964409828186, + -0.28841936588287354, + 0.0083772549405694, + -0.10965543985366821, + 0.15345343947410583, + -0.4171687364578247, + 0.1236257553100586, + 0.1097281351685524, + -1.7945507764816284, + 0.09409083425998688, + -0.05984017997980118, + -0.07264924049377441, + -0.22527801990509033, + -0.16849075257778168, + -0.276409775018692, + -0.10986369848251343, + -0.1810356080532074, + 0.14272096753120422, + -0.17250613868236542, + 0.06392772495746613, + -0.3020821213722229, + 0.7470137476921082, + 0.2543480396270752, + 0.4959909915924072, + 0.02773350477218628, + -0.06305209547281265, + 0.690090537071228, + 0.0724753737449646, + -0.16231048107147217, + 0.5212413668632507, + -0.22976040840148926, + 0.7492132782936096, + 0.27254295349121094, + 0.07999126613140106, + -0.230554461479187, + -0.3318856656551361, + -0.10582830011844635, + -0.033429548144340515, + 0.14500486850738525, + -1.0376920700073242, + 0.18010586500167847, + -0.430446058511734, + 0.3574761152267456, + -0.0571950227022171, + 0.045284952968358994, + -0.3247326910495758, + -0.008921775966882706, + 0.1357651799917221, + -0.511390209197998, + 0.22133253514766693, + -0.11698496341705322, + -0.08152077347040176, + 0.40559881925582886, + 0.19139666855335236, + 0.20046645402908325, + -0.5626721382141113, + 0.04960813373327255, + -0.4017255902290344, + -0.015917889773845673, + -0.20726948976516724, + -0.6592203378677368, + 0.6064543724060059, + -0.2837045192718506, + 0.2723839581012726, + 0.1357966512441635, + 0.7596995830535889, + -0.1464253067970276, + 0.21126726269721985, + -0.11842510104179382, + 0.1877973973751068, + 0.31341031193733215, + 0.03909115493297577, + -0.8363161683082581, + -0.20778240263462067, + -0.10373374819755554, + 0.02553098276257515, + -0.024698540568351746, + 0.12934504449367523, + -0.6460679173469543, + -0.054936230182647705, + -0.07918503880500793, + 0.18058030307292938, + -0.3410891592502594, + 0.0016060597263276577, + -0.15147557854652405, + 0.06960482150316238, + -0.0756976306438446, + 0.5051912665367126, + 0.31584596633911133, + -0.013113148510456085, + 0.23792551457881927, + 0.054110780358314514, + 0.194619283080101, + 0.3692251443862915, + 0.07972587645053864, + 0.1955166608095169, + -0.10528911650180817, + -0.24701298773288727, + -0.09445768594741821, + 0.2718941569328308, + 0.14694327116012573, + -0.02614748477935791, + 0.13669010996818542, + 1.202734112739563, + 0.15592460334300995, + -0.10298851132392883, + 0.032463669776916504, + 0.21716560423374176, + 0.035633526742458344, + -0.07873982936143875, + -0.16467240452766418, + -0.20963823795318604, + -0.09294034540653229, + -0.21042336523532867, + 0.004940703511238098, + -0.2208143025636673, + 0.2475993037223816, + 0.11060978472232819, + 0.27429571747779846, + 0.41475701332092285, + 0.0706716924905777, + -0.1149492859840393, + 1.4328762292861938, + -0.5214475989341736, + -0.031362175941467285, + 0.07955935597419739, + 0.1978960484266281, + 0.34630897641181946, + -0.041268810629844666, + 0.13153207302093506, + -0.2489541918039322, + 0.0577772781252861, + -0.20957309007644653, + 0.03718916326761246, + -0.079196497797966, + 0.45390352606773376, + 0.1753302812576294, + -0.020342836156487465, + -0.290840208530426, + -0.11346663534641266, + -0.043882377445697784, + 0.060842424631118774, + 0.04231831431388855, + -0.1606987863779068, + -0.337954044342041, + 0.17651687562465668, + -0.3625914752483368, + -0.19905337691307068, + -0.2269316017627716, + 0.16413700580596924, + 0.06755974888801575, + -0.10157173126935959, + -0.495809406042099, + 0.5772212147712708, + -0.048674046993255615, + 0.008968746289610863, + 0.012699032202363014, + 0.3230554461479187, + 0.18277817964553833, + -0.16716040670871735, + -0.12999339401721954, + -1.2087347507476807, + -0.23080846667289734, + 0.2969437837600708, + 0.2806659936904907, + 0.2773466408252716, + -0.32561182975769043, + -0.3001247048377991, + -0.001563340425491333, + -0.222612202167511, + -0.1952282339334488, + -0.4069675803184509, + -0.3376043438911438, + -0.0516933798789978, + -0.07197830080986023, + 0.004176244139671326, + 0.14694148302078247, + -0.09428605437278748, + -0.2098962962627411, + -0.2463798075914383, + -0.05525711178779602, + -0.7911146879196167, + -0.05584599822759628, + 0.17648452520370483, + -0.14611035585403442, + -0.8499530553817749, + -0.17965838313102722, + 0.20480261743068695, + -1.108224630355835, + -0.105491504073143, + 0.26877862215042114, + 0.5089699625968933, + -0.28182709217071533, + -0.04434667527675629, + 0.043592024594545364, + 0.11363115906715393, + 0.24201607704162598, + 0.21589767932891846, + 0.058947958052158356, + 0.03223786503076553, + -0.3422541320323944, + -0.19043545424938202, + 0.0008548554033041, + 0.2572883069515228, + 0.07540479302406311, + -0.3728642463684082, + -0.15569564700126648, + -0.25143498182296753, + -0.3982808589935303, + 0.06374488770961761, + -1.2231203317642212, + 0.10968422889709473, + -0.33747076988220215, + 0.31836068630218506, + 0.7198823094367981, + 0.12986871600151062, + -0.29604488611221313, + 0.11672128736972809, + 0.09768883138895035, + 0.32355695962905884, + 0.3217078745365143, + -0.772925615310669, + -0.4377495050430298, + -0.401909202337265, + -0.24868246912956238, + 0.20795470476150513, + -0.3391183018684387, + -0.25403979420661926, + -0.740425705909729, + 0.0023050643503665924, + 0.0014199544675648212, + 0.023835964500904083, + -0.5577893257141113, + -0.4084702730178833, + 0.6137654781341553, + -0.31427544355392456, + -0.1671200394630432, + -0.42990463972091675, + 0.10713613033294678, + -0.19290569424629211, + -0.39512258768081665, + -0.02832973748445511, + -0.23959341645240784, + 0.3904724717140198, + -0.07071521878242493, + 0.23448272049427032, + 0.04583437740802765, + 0.3920102119445801, + -0.12550124526023865, + 0.07641668617725372, + -0.11774452030658722, + 0.16382837295532227, + 0.04351609945297241, + 0.17989569902420044, + 0.3018639087677002, + -0.2945743799209595, + 0.102686807513237, + 0.1018434688448906, + -0.38790401816368103, + -0.0037754219956696033, + 0.2793235182762146, + 0.08020199835300446, + 0.08601208031177521, + -0.43415534496307373, + 0.4251447916030884, + 0.520212709903717, + -0.038862720131874084, + 0.16037361323833466, + 0.1877078115940094, + 1.4321205615997314, + -0.25040167570114136, + -0.2513490617275238, + -0.4095778465270996, + 0.15383170545101166, + 0.1970365345478058, + -0.06643268465995789, + 0.5120000839233398, + -0.14625346660614014, + -0.5470339059829712, + -0.16081544756889343, + 1.352217435836792, + 0.2664584219455719, + 0.3079974949359894, + -0.07465653866529465, + 3.4156785011291504, + -0.5969945192337036, + -0.3869129419326782, + 0.06450837850570679, + -0.05342695116996765, + -0.03169531375169754, + -0.1446647346019745, + 0.39804089069366455, + 0.10258112102746964, + 0.01583632081747055, + -1.0973398685455322, + -0.1864945888519287, + 0.15576626360416412, + 0.3186410069465637, + -0.13894468545913696, + -0.14476513862609863, + -0.0723334476351738, + 0.9037704467773438, + 0.1582638919353485, + -1.0489877462387085, + 0.23397715389728546, + -0.13380104303359985, + 0.5421732664108276, + 0.26003792881965637, + 0.30921775102615356, + -0.058794595301151276, + -0.09045907855033875, + 0.2306228131055832, + 0.7858332395553589, + -0.573412299156189, + 0.04981667548418045, + -0.046273816376924515, + 0.02573539689183235, + -0.13254570960998535, + -0.09863653033971786, + -0.11818578839302063, + 0.0038287085480988026, + -0.1650354266166687, + -0.05901471525430679, + -1.3306987285614014, + 0.22539159655570984, + 0.07518871128559113, + 0.0767320841550827, + -0.09051266312599182, + 0.012682124972343445, + 0.28373271226882935, + 0.2600076198577881, + 0.04200935363769531, + 0.3017107844352722, + -0.12247022986412048, + 0.18818867206573486, + 0.10976635664701462, + -0.332838237285614, + -0.02037719637155533, + 0.3352993130683899, + 0.0797988772392273, + -0.1501932144165039, + -0.22356842458248138, + -0.044791243970394135, + -0.06560418009757996, + -0.07341919094324112, + 0.31730592250823975, + -0.1418941766023636, + 0.1402827948331833, + -0.36797070503234863, + -0.30993038415908813, + 0.10613055527210236, + -0.14647987484931946, + -0.09050710499286652, + -0.285194456577301, + -0.29273685812950134, + -0.02420114353299141, + 0.09343147277832031, + -1.91849684715271, + -0.11464691907167435, + 0.36675316095352173, + 0.0674867182970047, + -0.12474797666072845, + -0.22229890525341034, + 0.3987768590450287, + 0.08466816693544388, + -0.1553487479686737, + 0.27305084466934204, + 0.0366026908159256, + 0.047112807631492615, + 0.22416725754737854, + -0.17493072152137756, + -0.265971302986145, + 0.29102039337158203, + -0.16973045468330383, + -0.08220690488815308, + -0.5956001281738281, + -0.090302973985672, + -0.13168634474277496, + -1.2353346347808838, + 0.3905497193336487, + 0.1021251305937767, + 0.043660469353199005, + 0.11034201085567474, + 0.0493088960647583, + 0.6065950393676758, + 0.03869955241680145, + -0.45770755410194397, + 0.09315784275531769, + 0.4663323760032654, + -0.05350986123085022, + 0.046754390001297, + 0.03879271447658539, + -0.0033799856901168823, + 0.07414504885673523, + 0.18012085556983948, + 0.3521263897418976, + 0.017500266432762146, + -0.12116925418376923, + -1.3961461782455444, + 0.01715506985783577, + 0.13875812292099, + 0.245231494307518, + -0.13496986031532288, + 0.19668564200401306, + 0.21181577444076538, + 0.007583737373352051, + -0.013218529522418976, + 0.07850178331136703, + 0.07332219928503036, + -0.28308480978012085, + 0.19268172979354858, + 0.2041386514902115, + 0.20269663631916046, + 0.20924615859985352, + -0.16055217385292053, + -0.16272540390491486, + -0.4930533766746521, + 0.003963962197303772, + -0.1597045361995697, + 0.44424736499786377, + -0.29348447918891907, + 0.041781239211559296, + 0.23613645136356354, + 0.2420177459716797, + -0.048831358551979065, + 0.11197192966938019, + -0.015716947615146637, + -0.13743430376052856, + -0.1492549180984497, + -0.09188927710056305, + -0.14014585316181183, + 0.33559903502464294, + 0.4929051995277405, + -0.37143415212631226, + -0.3963988721370697, + -0.32383134961128235, + -0.016167253255844116, + 0.05711379647254944, + 0.28972047567367554, + 0.15260493755340576, + 0.41904082894325256, + 0.3152017593383789, + -0.1391867697238922, + 0.07215408980846405, + 0.12334959208965302, + -0.109787717461586, + -0.056788861751556396, + 0.0707297995686531, + -0.0749579519033432, + -0.27107352018356323, + 0.453804075717926, + 0.7589725255966187, + 0.05060712248086929, + -0.09454770386219025, + -0.27506688237190247, + -0.4235894978046417, + -0.32865285873413086, + -0.09448914974927902, + 0.19911962747573853, + 0.15796759724617004, + -0.11407880485057831, + -0.016503073275089264, + 0.2483530044555664, + -0.14909900724887848, + 0.23051226139068604, + 0.1739245504140854, + 0.22384187579154968, + 1.5386677980422974, + -0.03586716577410698, + -0.6773842573165894, + 0.18197870254516602, + -0.16563987731933594, + -0.30703362822532654, + 0.10822993516921997, + 0.20928020775318146, + -0.3096296191215515, + 0.023737967014312744, + 0.7572632431983948, + -0.01547800749540329, + -0.07465028762817383, + -0.02130444347858429, + 0.0007406473159790039, + -0.10841966420412064, + 0.09127733111381531, + 0.7489305138587952, + 0.019054830074310303, + -0.032951146364212036, + -1.62890625, + -0.15724734961986542, + -0.2263127714395523, + 0.19458575546741486, + 0.11747680604457855, + -0.22156107425689697, + 0.08402849733829498, + -0.6939624547958374, + -0.1923525482416153, + 0.1416904330253601, + -0.1980503648519516, + -0.3631080389022827, + -0.20129512250423431, + -0.35118818283081055, + 0.08023624122142792 + ], + "vector": [ + 0.008739985525608063, + 0.002057865494862199, + 0.005660930182784796, + 0.0031292997300624847, + 0.012130355462431908, + -0.0069312434643507, + 0.0015248828567564487, + -0.008963811211287975, + 0.0030532539822161198, + -0.013043700717389584, + -0.007688365876674652, + -0.019480234012007713, + -0.0029261333402246237, + -0.009370416402816772, + 0.010571999475359917, + -0.001211088732816279, + -0.00259327981621027, + 0.008653943426907063, + 0.01485888659954071, + -0.013749193400144577, + -0.004875494167208672, + 0.0005135624669492245, + -0.005461433902382851, + 0.017456797882914543, + -0.0010997274657711387, + -0.006843550596386194, + 0.05108607932925224, + 0.0007987683056853712, + 0.0008008134318515658, + 0.00706887012347579, + 0.00501686055213213, + 0.03175275772809982, + -0.015351171605288982, + -0.011787107214331627, + -0.0012908189091831446, + -0.0014089305186644197, + -0.0036106945481151342, + 0.01655656099319458, + 0.008568436838686466, + 0.002384364604949951, + 0.02094235271215439, + -0.004346828442066908, + 0.0014842142118141055, + 0.00016634327766951174, + -0.008629544638097286, + 0.0029238727875053883, + -0.0001017945833154954, + -0.006230328697711229, + 0.006233924999833107, + 0.0006930340314283967, + -0.001973645528778434, + 0.017895493656396866, + -0.010857251472771168, + 0.0021768026053905487, + -0.035329557955265045, + 0.006714997347444296, + -0.007612518034875393, + -0.00021699104399885982, + 0.029441824182868004, + -0.010607829317450523, + -0.006870131939649582, + 0.01325203850865364, + -0.02108640968799591, + 0.005082158371806145, + -0.01131969504058361, + 0.008622195571660995, + -0.0002192751271650195, + -0.0175991989672184, + -0.05460871756076813, + -0.01038029883056879, + -0.009809095412492752, + 0.002162402728572488, + 0.004586267750710249, + 0.01125186774879694, + -0.032946959137916565, + -0.017690638080239296, + 0.012174292467534542, + 0.008664628490805626, + 0.0026910812593996525, + 0.007148542441427708, + -0.03208426386117935, + 0.007316972594708204, + -0.008216083981096745, + 0.006455928552895784, + -0.013286269269883633, + -0.0008630382944829762, + -0.0017806236864998937, + -0.006507882382720709, + -0.0001861558557720855, + 0.007736981380730867, + 0.01726526953279972, + 0.01436751987785101, + 0.009469324722886086, + -0.03909846022725105, + 0.0029260755982249975, + 0.05300265550613403, + 0.00022947728575672954, + 0.017043551430106163, + -0.010986576788127422, + 6.840669811936095e-05, + 0.005042674019932747, + 0.004993791226297617, + 0.014713496901094913, + 0.029907282441854477, + 0.0009287422872148454, + 0.01164479460567236, + 0.0019511792343109846, + -0.0017089061439037323, + 0.008986717090010643, + 0.000340814731316641, + -0.005835560616105795, + -0.004530016798526049, + 0.012071951292455196, + -0.01190860290080309, + -0.006617472507059574, + -0.0002607449423521757, + -0.0035168761387467384, + 0.0241923276335001, + 0.011998630128800869, + -0.008097924292087555, + -0.011563153006136417, + -0.01249881274998188, + -0.02366616204380989, + 0.011586918495595455, + 0.0007419823086820543, + 0.01720825769007206, + -0.01403799932450056, + 0.012356455437839031, + -0.0026594342198222876, + -0.007547900080680847, + -0.027183379977941513, + 0.0013669573236256838, + -0.0026863375678658485, + -0.003520071040838957, + -0.04323931783437729, + -0.04335005581378937, + -0.002393992617726326, + 0.0027031509671360254, + 0.010218149982392788, + -0.014262344688177109, + -0.009919542819261551, + -0.011971188709139824, + 0.03754726052284241, + -0.013666357845067978, + -0.008943083696067333, + -0.007474868092685938, + -0.006345915608108044, + -0.00894855335354805, + 0.007292125839740038, + -0.019661759957671165, + -0.0016267047030851245, + 0.004246727097779512, + -0.008345197886228561, + 0.018062205985188484, + -0.014332315884530544, + -0.015139780938625336, + -0.00023668688663747162, + 0.009770603850483894, + -0.000979465083219111, + -0.01475574728101492, + 0.005505736451596022, + 0.006571517325937748, + 0.0011243311455473304, + -0.007583752740174532, + -0.009518149308860302, + 0.0025751683861017227, + 0.011164885014295578, + 0.03279101476073265, + 0.005421226844191551, + -0.01382337138056755, + -0.028660466894507408, + 0.016551421955227852, + 0.024584805592894554, + 0.013965871185064316, + -0.0016943379305303097, + 0.028123583644628525, + 0.005447952542454004, + 0.013318033888936043, + -0.009581117890775204, + 0.007039120886474848, + -0.020318983122706413, + -0.01338159292936325, + 0.002057824982330203, + -0.001276173978112638, + -0.002466461155563593, + -0.006143839098513126, + -0.00854932889342308, + -0.0015799744287505746, + -0.006195941474288702, + 0.0064599476754665375, + -0.012735850177705288, + -0.018409837037324905, + -0.040161795914173126, + -0.003505763364955783, + 0.000973886635620147, + 0.0034103605430573225, + 0.06541138887405396, + 0.002764276694506407, + 0.011994978412985802, + -0.016102099791169167, + -0.039707429707050323, + 0.00417516240850091, + 0.00600042287260294, + 0.005009700544178486, + -0.006725014187395573, + -0.001281482633203268, + -0.0014129356713965535, + -0.055454228073358536, + -0.021095016971230507, + -0.0019577895291149616, + -0.0008736145100556314, + 0.004137636628001928, + 0.0029668461065739393, + 0.011638300493359566, + 0.004683345556259155, + -0.017078153789043427, + -0.005943203344941139, + -0.0032332439441233873, + -0.030709408223628998, + -0.01148904673755169, + 0.0006412259535863996, + 0.005803158972412348, + -0.005665436387062073, + 0.000836260849609971, + -0.048562005162239075, + 0.020475801080465317, + 0.014973296783864498, + 0.00834287703037262, + -0.0016482747159898281, + -0.03045962192118168, + 0.0002203402982559055, + -0.0003020932199433446, + -0.0007164443959482014, + 0.045609842985868454, + -0.012075402773916721, + 0.0021369950845837593, + 0.00341975805349648, + 0.011059454642236233, + 0.0017876785714179277, + -0.00043306619045324624, + 0.005894012283533812, + 0.021762432530522346, + 0.005033538676798344, + 0.09669770300388336, + -0.00563112273812294, + -0.01254910696297884, + 0.01433263998478651, + 0.002763934200629592, + -0.028281228616833687, + -0.0024740055669099092, + 0.011248546652495861, + 0.023304730653762817, + 0.0034766201861202717, + -0.008125445805490017, + 0.002696224022656679, + 0.0044257924892008305, + -0.010872682556509972, + 0.009647195227444172, + -0.006684267893433571, + -0.0020247020293027163, + -0.007896657101809978, + 0.00022361174342222512, + -0.010498974472284317, + -0.007473832927644253, + -0.004924315959215164, + -0.005010168068110943, + 0.0021088977809995413, + 0.007082952186465263, + -0.017497148364782333, + -0.005998837295919657, + 0.02488529682159424, + -0.00647524232044816, + 0.014382174238562584, + 0.010682103224098682, + -0.004888242110610008, + 0.013801154680550098, + 0.0058499909937381744, + -0.006819133181124926, + -0.006581761408597231, + -0.0022807936184108257, + 0.00045527276233769953, + -0.008582640439271927, + -0.03464283421635628, + 0.005369207821786404, + -0.009914802387356758, + -0.0007567122811451554, + 0.016895443201065063, + -0.022884147241711617, + 3.30004004354123e-05, + -0.003946153912693262, + 0.0012258223723620176, + 0.01804017275571823, + 0.04526977986097336, + 0.019105639308691025, + -0.011002947576344013, + -0.0060001215897500515, + 0.0037083097267895937, + -0.003392922692000866, + -0.011140882037580013, + 0.0006404129089787602, + -0.010232488624751568, + 0.004524343181401491, + -0.010279729962348938, + -0.011381267569959164, + 0.0006436377298086882, + -0.006242750212550163, + 0.023396262899041176, + 0.0093177929520607, + -0.013338985852897167, + 0.013247530907392502, + 0.015143875032663345, + 0.0015442059375345707, + -0.008766351267695427, + 0.005232967436313629, + 0.002701842924579978, + -0.013784844428300858, + -0.004387685097754002, + -0.01122150756418705, + -0.0019556651823222637, + -0.020168978720903397, + 0.005680746398866177, + -0.006164415739476681, + 0.004000450484454632, + -0.008383320644497871, + -0.016542211174964905, + 0.0012152064591646194, + -0.005625347141176462, + 0.019435973837971687, + -0.002560447435826063, + -0.007958805188536644, + 0.01784191094338894, + 0.009981846436858177, + -0.0060343011282384396, + -0.00838636327534914, + 0.00676415441557765, + -0.014670184813439846, + -0.005739252083003521, + 0.000815408187918365, + 0.01887577772140503, + -0.016930483281612396, + -0.00829631369560957, + -0.009249447844922543, + -0.0101920235902071, + 0.06202411279082298, + -0.01425737515091896, + 0.005278739146888256, + 0.007868513464927673, + 0.009108579717576504, + 0.010299600660800934, + 0.0007919046911410987, + 0.010932198725640774, + -0.011864736676216125, + -0.015973564237356186, + -0.0012670747237280011, + 0.0030958387069404125, + 0.000913888739887625, + -0.01027304120361805, + 0.01749103143811226, + -0.00841814186424017, + 0.010361162945628166, + 0.00029557195375673473, + 0.04541927948594093, + 0.0061113121919333935, + 0.012966806069016457, + -0.005419944878667593, + -0.005248846020549536, + -0.008600452914834023, + 0.0032291568350046873, + -0.038003262132406235, + 0.0014658779837191105, + -0.00033129690564237535, + -0.0052539329044520855, + 0.00859530083835125, + -0.04097167029976845, + 0.002040234161540866, + -0.0008819274371489882, + -0.010446446016430855, + 0.007568150758743286, + -0.0105156060308218, + -0.0016689791809767485, + 0.0009866290492936969, + 0.01789587177336216, + -0.06848807632923126, + -0.011471549049019814, + 0.011938274838030338, + 0.00038715905975550413, + -0.0023588750045746565, + 0.0021231903228908777, + 0.01147023681551218, + 0.020627720281481743, + -0.008221066556870937, + 0.017787186428904533, + -0.014287326484918594, + 0.0024418330285698175, + 0.008884451352059841, + 0.016803978011012077, + 0.007577592507004738, + -0.017910141497850418, + 0.0015843488508835435, + -0.0006762244738638401, + 0.005660229828208685, + -0.009644383564591408, + 0.003220398910343647, + -0.010670811869204044, + -0.00912038516253233, + -0.006091482006013393, + -0.007267252076417208, + -0.004729110281914473, + -0.0006131172995083034, + -0.011804115027189255, + 0.01093024481087923, + -0.010759160853922367, + -0.016186850145459175, + 0.013979910872876644, + 0.01571178250014782, + -0.002758431015536189, + -0.0012782627018168569, + 0.007573646027594805, + 0.03563989698886871, + 0.019591301679611206, + 0.0017326874658465385, + 0.015154480934143066, + -0.04107162728905678, + 0.007510508876293898, + -0.004741013515740633, + -0.001996086211875081, + 0.007231558207422495, + 0.0025398223660886288, + 0.0042618694715201855, + -0.017143310979008675, + 0.05453163757920265, + 0.002105504972860217, + -0.0378292053937912, + -0.0041565485298633575, + 0.013157431967556477, + -0.005662389099597931, + 0.00319060985930264, + -0.009393783286213875, + -0.009335405193269253, + -0.006340275518596172, + 0.017305556684732437, + 0.0008251534891314805, + 0.0030606635846197605, + 0.016804363578557968, + 0.011159881949424744, + -0.015843868255615234, + -0.01071859523653984, + 0.016884906217455864, + 0.015566492453217506, + -0.012165605090558529, + 0.0012252944288775325, + -0.0072043947875499725, + -0.006502526346594095, + -0.013868729583919048, + -0.008238444104790688, + 0.011672968044877052, + -0.0023458553478121758, + -0.0028260680846869946, + 0.020478878170251846, + -0.005946682766079903, + -0.009143228642642498, + 0.003240528516471386, + 0.025942210108041763, + 0.01671081781387329, + -0.0175650455057621, + -0.012700274586677551, + -0.010408593341708183, + -0.012465502135455608, + 0.001786164939403534, + -0.035477541387081146, + -0.007936605252325535, + 0.021791379898786545, + 0.0051125031895935535, + -0.003980377223342657, + 0.031881581991910934, + -0.004096388351172209, + -0.0040695276111364365, + 0.0037872183602303267, + 0.004104746505618095, + 0.0032179986592382193, + -0.0038905306719243526, + -0.00021221004135441035, + -0.004002193920314312, + -0.002306305104866624, + 0.0075285970233380795, + -0.004804062191396952, + 0.03876873105764389, + -0.01865711249411106, + 0.01220791693776846, + 0.004993203096091747, + -0.005799106787890196, + 0.005475244484841824, + -0.015144482254981995, + -0.006550898309797049, + -0.0024697252083569765, + -0.00947341788560152, + 0.015562101267278194, + -0.003430107841268182, + -0.002699105069041252, + -0.0005127406911924481, + -0.011023164726793766, + 0.010985410772264004, + 0.004360454622656107, + 0.011176751926541328, + -0.004159034229815006, + 0.021130157634615898, + -0.006745185703039169, + -0.002198907546699047, + 0.0027932014781981707, + -0.005042670760303736, + 0.004349317867308855, + 0.020301351323723793, + -0.023246342316269875, + 0.009790080599486828, + 0.010705506429076195, + -0.0054989042691886425, + 0.0074007147923111916, + 0.0008500681724399328, + 0.0023321136832237244, + 0.002160079311579466, + -0.007819299586117268, + 0.0017074418719857931, + 0.012386573478579521, + -0.04952754080295563, + -0.013682840391993523, + 0.013462924398481846, + -0.005486082751303911, + -0.0005620340816676617, + 0.007151598110795021, + 0.006960780825465918, + 0.003102158894762397, + -0.0004194802895653993, + -0.012780995108187199, + 0.012512440793216228, + -0.005845332983881235, + -0.001414259779267013, + 0.01247451826930046, + -0.019774364307522774, + 0.011828172020614147, + 0.0006559634348377585, + 0.006015803664922714, + 0.0040534804575145245, + -0.013654994778335094, + 0.019680803641676903, + -0.0073193274438381195, + 0.008428550325334072, + 0.06122240051627159, + 0.023553738370537758, + -0.02049410156905651, + -0.0039807818830013275, + 0.014830649830400944, + 0.027415867894887924, + -0.08141227811574936, + 0.006823501083999872, + -0.02458992972970009, + -0.004430070053786039, + -0.01644310913980007, + 0.00848865881562233, + -0.0034365563187748194, + -0.01600806787610054, + 0.029053641483187675, + 0.002218646230176091, + 0.0019133985042572021, + 0.012086075730621815, + -0.004970721434801817, + 0.01498041395097971, + 0.007618993986397982, + -0.00957462377846241, + -0.006983153056353331, + 0.022767649963498116, + -0.013489257544279099, + -0.0027427212335169315, + 0.010904351249337196, + -0.000780576141551137, + -0.0022658605594187975, + 0.00475236214697361, + 0.014014885760843754, + 0.015377268195152283, + 0.01384210679680109, + 0.012441006489098072, + -0.012843841686844826, + -0.0023216356057673693, + -0.003275170223787427, + -0.002205710858106613, + -0.008979864418506622, + 0.003342884359881282, + 0.0024673480074852705, + -0.012061439454555511, + -0.004006803967058659, + 0.0011202519526705146, + -0.005412123631685972, + 0.00046688775182701647, + -0.026576407253742218, + -0.0005352021544240415, + 0.01635289005935192, + -0.00303063727915287, + 0.0064590927213430405, + 0.00201420858502388, + -0.01869533583521843, + 0.004870250355452299, + -0.003388841636478901, + -0.010707245208323002, + -0.015815019607543945, + 0.004491280764341354, + -0.004839646629989147, + -0.00018152558186557144, + 0.006852542050182819, + -0.008365347981452942, + -0.0009332726476714015, + 0.024313155561685562, + 0.014165392145514488, + 0.0292147696018219, + -0.0018391998019069433, + -0.006249245256185532, + -0.001957540400326252, + 0.020846188068389893, + -0.00947682186961174, + -0.0011422551469877362, + 0.00618618493899703, + -0.007902784273028374, + -0.0059517459012568, + 0.012188168242573738, + 0.00613531656563282, + -0.00669632013887167, + -0.007487755734473467, + 0.00038354966090992093, + -0.023847177624702454, + 0.00794251263141632, + -0.019774211570620537, + 0.0030607255175709724, + 0.0010529775172472, + -0.0003000654687639326, + 0.011052010580897331, + 0.007715329062193632, + -0.016368556767702103, + 0.0007235771627165377, + -0.0001647028693696484, + -0.004861748311668634, + 0.0016771474620327353, + 0.004655139520764351, + 0.0011674343841150403, + -0.009405207820236683, + -0.0007498376653529704, + 0.022910309955477715, + -0.05222067981958389, + 0.007010472938418388, + 0.011239557527005672, + -0.031619541347026825, + -0.023640399798750877, + 0.01549786701798439, + 0.0034488257952034473, + -0.002364481333643198, + 0.012149580754339695, + -0.0021474233362823725, + -0.005607150495052338, + -0.0007267680484801531, + 0.003429832635447383, + -0.0061265514232218266, + -0.04039375111460686, + -0.02679716795682907, + -0.008334535174071789, + 0.01660967990756035, + 0.0048203980550169945, + 0.0017490885220468044, + 0.005326482467353344, + 0.058714840561151505, + -0.010224162600934505, + 0.014569094404578209, + -0.008464367128908634, + -0.0020732490811496973, + -0.002266721334308386, + -0.006329396273940802, + 0.0035977414809167385, + -0.005079342983663082, + 0.007883686572313309, + 0.014796453528106213, + 0.0029644949827343225, + 0.01499212346971035, + 0.01751714013516903, + -0.0035434900783002377, + 0.005362780299037695, + 0.023241622373461723, + -0.02035948634147644, + 0.006811697967350483, + -0.010037582367658615, + 0.0008793010492809117, + 0.00872939545661211, + -0.006486452184617519, + -0.0015888030175119638, + 0.0008415463962592185, + -0.0019296847749501467, + -0.029849961400032043, + 0.006302281748503447, + 0.009303251281380653, + -0.007460569962859154, + 0.012470625340938568, + -0.001495777745731175, + -0.006755277048796415, + 0.004776415880769491, + -0.012889588251709938, + 0.013865642249584198, + 0.010252762585878372, + 0.005512203089892864, + 0.002879650564864278, + -0.03056185320019722, + -0.03521709144115448, + 0.0004936902550980449, + -0.007805933710187674, + 0.0017310335533693433, + 0.0014811637811362743, + 0.0022193710319697857, + 0.006956981960684061, + 0.0014808124396950006, + -0.0031565548852086067, + 0.016645783558487892, + 0.002925703302025795, + -0.07190723717212677, + -0.016092106699943542, + 0.006199202965945005, + 0.002485299250110984, + -0.0016808287473395467, + 0.005833413917571306, + -0.0035183499567210674, + 0.00753236748278141, + 0.0010365870548412204, + -0.0395229198038578, + 0.0221943911164999, + 0.006386174820363522, + -0.0018709991127252579, + -0.003217047778889537, + 0.0004731838416773826, + 0.014947772957384586, + 0.010388016700744629, + 0.006462340243160725, + -0.0056826770305633545, + -0.00016428017988801003, + -0.05436059460043907, + 0.006377662997692823, + -0.007345810532569885, + 0.00896317046135664, + 0.004637245554476976, + -0.0016158318612724543, + -0.002428115112707019, + -0.004546269308775663, + 0.008592099882662296, + 0.008122221566736698, + 0.009158398024737835, + 0.02709696814417839, + -0.01122902613133192, + 0.005428655538707972, + 0.0023021281231194735, + -0.028318744152784348, + -0.0119436364620924, + 0.010865080170333385, + 3.198469357812428e-06, + -0.009840400889515877, + 0.007977022789418697, + 0.007772322744131088, + 0.007426556199789047, + 0.0066240630112588406, + 0.01014790404587984, + 0.011933998204767704, + -0.016804683953523636, + 0.008759208023548126, + 0.004480254370719194, + 0.009143484756350517, + -0.011252539232373238, + 0.0038115137722343206, + 0.0020442577078938484, + -0.0017646949272602797, + -0.004766198340803385, + 0.0054192449897527695, + 0.005868841893970966, + -0.01517194788902998, + -0.006100264377892017, + 0.0004884870140813291, + -0.017179301008582115, + 0.05860838294029236, + 0.009797390550374985, + 0.022800134494900703, + 0.004558027256280184, + 0.008416300639510155, + 0.00036793467006646097, + -0.007648957893252373, + -0.0036126652266830206, + 0.001526037696748972, + -0.015537490136921406, + -2.0856950868619606e-05, + 0.005602914374321699, + -0.0007879892946220934, + 0.010090204887092113, + -0.012841720134019852, + 0.016584862023591995, + -0.0076392036862671375, + -0.011589117348194122, + -0.007770142517983913, + 0.011312873102724552, + 0.009509865194559097, + -0.02725776843726635, + -0.002094537951052189, + 0.020235303789377213, + 0.002962718717753887, + -0.016721757128834724, + 0.00900049228221178, + -0.006905103102326393, + 0.007384371478110552, + -0.02203880436718464, + -0.02353423833847046, + 0.017166994512081146, + 0.037429407238960266, + 0.019029777497053146, + 0.005733109079301357, + -0.0016100521897897124, + -0.047491125762462616, + 0.009302141144871712, + 0.0013045377563685179, + -0.010092890821397305, + -0.0002278481551911682, + -0.003978412598371506, + 0.011737221851944923, + -0.0031924527138471603, + -0.009510064497590065, + 0.04409119486808777, + -0.002539405133575201, + -0.0034890207462012768, + 0.02042744867503643, + -0.0027729314751923084, + 0.003347523044794798, + -0.011567408218979836, + -0.006379182916134596, + 0.016921717673540115, + 0.004348176997154951, + -0.01545044220983982, + -0.01871066354215145, + 0.010575261898338795, + -0.0029437376651912928, + -0.0009404406300745904, + 0.012019524350762367, + -0.0060618785209953785, + -0.003977195825427771, + 0.0009934380650520325, + -0.0013473357539623976, + -0.017836298793554306, + 0.006226530764251947, + -0.002952652983367443, + -0.0027961747255176306, + -0.007184898480772972, + -0.00041563346167095006, + -0.006299658212810755, + -0.013978545553982258, + 0.0036581410095095634, + 0.027393829077482224, + 0.010972033254802227, + -0.017264949157834053, + -0.0005584497703239322, + 0.006784666795283556, + -0.00905703566968441, + -0.0038283744361251593, + -0.0012832399224862456, + 0.001979278400540352, + 0.01354947779327631, + 0.012052653357386589, + -0.0035699615254998207, + -0.00022207821893971413, + 0.004202044568955898, + 0.0014761314960196614, + 0.0019580216612666845, + 0.002745467470958829, + 0.006979843135923147, + 0.007324107922613621, + -2.730042251641862e-05, + -0.008156617172062397, + 0.015500538051128387, + -0.005888000130653381, + -0.012197932228446007, + 0.006003891117870808, + -0.0721779391169548, + 0.0016482123173773289, + -0.001373519073240459, + -0.00252138776704669, + 0.0015172824496403337, + -0.008359367027878761, + 0.005216612014919519, + 0.003179925261065364, + -0.024271100759506226, + -0.001772996154613793, + -0.002851296914741397, + -0.014500180259346962, + -0.057962220162153244, + 0.02506607584655285, + 0.005050403065979481, + 0.0005067932070232928, + -0.008652766235172749, + -0.009043526835739613, + 0.014099030755460262, + -0.0024148127995431423, + 0.01131504587829113, + 0.012693310156464577, + 0.019123408943414688, + -0.004918837919831276, + 0.006793682929128408, + 0.05547945946455002, + -0.0014190712245181203, + 0.0012943694600835443, + 0.0050414917059242725, + -0.020402342081069946, + -0.0027298524510115385, + 0.006453794427216053, + -0.012357456609606743, + -0.0034721100237220526, + 0.0057891495525836945, + -0.02831730619072914, + 0.004214297980070114, + 0.0015964909689500928, + -0.024593142792582512, + -0.0005570745561271906, + 0.02140393666923046, + -0.0028539227787405252, + -0.01110129151493311, + -0.002580113708972931, + -0.008123988285660744, + 0.010941792279481888, + -0.010192020796239376, + -0.021170832216739655, + 0.005503133870661259, + 0.011926776729524136, + -0.004825195297598839, + 0.006026833318173885, + -0.005281359888613224, + -0.020950254052877426, + 0.005562444683164358, + 0.01180147286504507, + -0.007173061370849609, + 0.008953722193837166, + -0.00443628104403615, + -0.005544655490666628, + -0.002352046547457576, + -0.00440977793186903, + 0.004692659247666597, + -0.017456872388720512, + 0.021260466426610947, + 0.007252403534948826, + -0.013137423433363438, + 0.014273141510784626, + 0.0037218667566776276, + 0.019629741087555885, + 0.011419550515711308, + -0.008639983832836151, + -0.004894040524959564, + -0.0028853381518274546, + -0.005426527466624975, + 0.014538959600031376, + -0.0028421329334378242, + -0.008986825123429298, + 0.0022327168844640255, + 0.013246062211692333, + 0.008081418462097645, + -0.00124129478354007, + -0.011598045937716961, + -0.03291287273168564, + 0.011375484988093376, + -0.01552053727209568, + 0.009405246004462242, + 0.010738078504800797, + 0.0014962763525545597, + 0.0010832271073013544, + -0.0021808575838804245, + 0.0036437702365219593, + 0.006654564291238785, + 0.0022634007036685944, + 0.002463387558236718, + 0.007344596553593874, + -0.012926854193210602, + 0.0008448862936347723, + -0.004101535305380821, + -0.011439019814133644, + 0.008979097940027714, + 0.00025574033497832716, + -0.0038685151375830173, + 0.008450408466160297, + -0.004235037136822939, + -0.0017339492915198207, + 0.062382299453020096, + -0.01271055731922388, + -0.006973226089030504, + 0.00789096113294363, + 0.006678725127130747, + 0.030076295137405396, + 0.0072255064733326435, + 0.03130859136581421, + 0.011028125882148743, + 0.011048216372728348, + 0.007838407531380653, + 0.020595967769622803, + -0.03203938901424408, + 0.009841240011155605, + 0.0037231920287013054, + -0.008714904077351093, + 0.002631639363244176, + 0.0018776479410007596, + 0.009686058387160301, + 0.018073702231049538, + -0.020254386588931084, + -0.01434572134166956, + 0.008119847625494003, + -0.007027096580713987, + 0.0008215756388381124, + -0.027660107240080833, + -0.002252046950161457, + -0.004008207004517317, + -0.007677798625081778, + -0.015041129663586617, + -0.04343462362885475, + -0.011638100259006023, + 0.006910477299243212, + 0.002211174927651882, + 0.004659502301365137, + -0.00633823499083519, + 0.006039241328835487, + -0.015872647985816002, + 0.009742273949086666, + -0.0016052033752202988, + -0.0023700243327766657, + 0.0075555527582764626, + -0.008368738926947117, + -0.004577543120831251, + -0.00386857520788908, + 0.004773239605128765, + 0.00015366787556558847, + -0.001274922746233642, + 0.004030040930956602, + -0.06307609379291534, + 0.012366233393549919, + 0.018711015582084656, + 0.019279636442661285, + -0.012631036341190338, + 0.021301668137311935, + -1.918573434522841e-05, + 0.017177192494273186, + 0.020194966346025467, + -0.008905675262212753, + 0.00999949686229229, + 0.01106575969606638, + 0.024138668552041054, + -0.00568793248385191, + 0.011736085638403893, + 0.03972839564085007, + 0.00161434942856431, + -0.014159025624394417, + -0.00923496950417757, + 0.009803923778235912, + -0.012781420722603798, + -0.008598544634878635, + -0.009978719986975193, + 0.01634320802986622, + -0.02746208943426609, + 0.02406032755970955, + -0.0016001489711925387, + 0.006988378707319498, + -0.006855095271021128, + 0.048630405217409134, + 0.004928173962980509, + 0.02065172791481018, + 0.007985726930201054, + -0.015356802381575108, + 0.015123729594051838, + -0.008178316988050938, + -0.05771102383732796, + 0.003799311351031065, + -0.005288946442306042, + 0.022924210876226425, + 0.00033664883812889457, + 0.006096011959016323, + -0.005360588431358337, + 0.008634932339191437, + -0.008740469813346863, + -0.003936635330319405, + 0.005305078346282244, + 0.006361819338053465, + 0.0015028436901047826, + 0.009599373675882816, + -0.006404712796211243, + -0.010836883448064327, + 0.006240964867174625, + -0.00493976566940546, + 0.021471112966537476, + -0.027211526408791542, + -0.0027465426828712225, + -0.00105462281499058, + -0.01005254965275526, + -0.0009720205562189221, + -0.003177025355398655, + 0.028723228722810745, + 0.002039292361587286, + -0.0027373796328902245, + 0.0040489970706403255, + -0.0011567543260753155, + 0.004411946050822735, + -0.004441726487129927, + 0.0034487221855670214, + 0.0006643812521360815, + -0.0025077827740460634, + -0.0011209161020815372, + -0.005257847253233194, + 0.0012765860883519053, + 0.003553043818101287, + 0.005343073513358831, + -0.004695907700806856, + 0.008997788652777672, + 0.005247015506029129, + -0.013989400118589401, + -0.007447779178619385, + 0.017502235248684883, + 0.007191561162471771, + -0.006984935607761145, + 0.011307240463793278, + 0.013023081235587597, + -0.03404843807220459, + 0.0070688724517822266, + 0.001973365433514118, + 0.0037180946674197912, + 0.0022115560714155436, + -0.0011204100446775556, + 0.011372512206435204, + -0.00668042479082942, + 0.0008883788250386715, + -0.009860941208899021, + 0.012757881544530392, + 0.0008892000187188387, + 0.018941333517432213, + 0.001364512019790709, + -0.0030621946789324284, + -0.004965909291058779, + -0.011336429044604301, + -0.02205491252243519, + 0.005554096773266792, + -0.008224575780332088, + -0.0007286541513167322, + 0.002834402024745941, + 0.016580946743488312, + 0.009290245361626148, + 0.000134658272145316, + -0.007624647580087185, + -0.004777089226990938, + -0.021015502512454987, + -0.010097688063979149, + -0.0017453695181757212, + 0.03525051847100258, + 0.011925983242690563, + -0.0023549734614789486, + 0.019321564584970474, + -0.0002101652935380116, + -0.002982013626024127, + -0.004220912698656321, + 0.0036025107838213444, + 0.005151521414518356, + 0.0021374202333390713, + 0.015580900944769382, + 0.011868431232869625, + -0.007030737120658159, + 0.008843538351356983, + 0.007877223193645477, + 0.040489502251148224, + -0.022178472951054573, + -0.0016754181124269962, + 0.015899796038866043, + -0.006850330159068108, + 0.009106690995395184, + 0.008903656154870987, + -0.007727577351033688, + 0.001793400850147009, + 0.038994938135147095, + -0.0006608784315176308, + 0.0015644039958715439, + -0.006826964672654867, + 0.00700220325961709, + -0.005950667895376682, + 0.0026430245488882065, + 0.010409651324152946, + 0.013459514826536179, + -0.019697241485118866, + -0.019827136769890785, + 0.010156712494790554, + -0.007670565042644739, + 0.005910125095397234, + -0.000576259393710643, + 0.007185311522334814, + 0.03706412762403488, + -0.006510872393846512, + -0.02481449767947197, + -0.005283053498715162, + -0.004028254188597202, + -0.002737071132287383, + -0.003408802207559347, + -0.00035047580604441464, + -0.003534305142238736, + -0.0019074000883847475, + -0.0020563434809446335, + 0.01021463144570589, + 0.013173175044357777, + -0.004209176171571016, + 0.0018080451991409063, + -0.004365396220237017, + 0.007653806358575821, + -0.0008137461845763028, + -0.012512302957475185, + 0.006360778585076332, + -0.006380361504852772, + -0.0069295489229261875, + -0.01776544190943241, + 0.01158454455435276, + -0.0016052986029535532, + 0.013090580701828003, + -0.027400825172662735, + -0.01321976725012064, + -0.00664861686527729, + 0.0018439083360135555, + -0.004303828813135624, + -0.002150000538676977, + -0.013547942973673344, + -0.004022570326924324, + 0.011623872444033623, + 0.024959392845630646, + 0.0009628268308006227, + -0.0029878297355026007, + 0.013089603744447231, + 0.003999932669103146, + 0.011792540550231934, + -0.0034810954239219427, + 0.016239620745182037, + -0.0041487254202365875, + -0.03264255076646805, + 0.0030797007493674755, + 0.00946788303554058, + -0.006193414330482483, + -0.0024670392740517855, + 0.0068178800866007805, + 0.006771163083612919, + 0.003681751899421215, + -0.042933378368616104, + -0.009700929746031761, + -0.005347973667085171, + 0.0038072229363024235, + 0.005638846196234226, + 0.0023408406414091587, + 0.0030508474446833134, + 0.005444419104605913, + 0.0017783009679988027, + 0.009559930302202702, + 0.020970093086361885, + 0.012212601490318775, + 0.010920481756329536, + -0.0003503373300191015, + 0.003636921988800168, + 0.00751459738239646, + -0.003995297010987997, + -0.019304363057017326, + 0.009128089994192123, + 0.00014790253771934658, + 0.01424094382673502, + 0.018274599686264992, + -0.001482617575675249, + -0.01308915764093399, + -0.010002071037888527, + 0.011033102869987488, + -0.010824182070791721, + 0.005874080583453178, + 0.0007212260388769209, + 0.007249017246067524, + -0.018262246623635292, + -0.0042344434186816216, + 0.02227569743990898, + -0.006592180114239454, + 0.0017435225890949368, + 0.01017127837985754, + 0.018075086176395416, + -0.004491310101002455, + -0.004869748372584581, + 0.014283948577940464, + -0.0016958718188107014, + -0.013390393927693367, + 0.016981281340122223, + 0.01073898933827877, + 0.0016703561414033175, + 0.02843376249074936, + 0.01977413147687912, + -0.017369909211993217, + 0.04429076239466667, + -0.003591489279642701, + 0.006444317754358053, + 0.009128821082413197, + 0.05713913217186928, + 0.0046050818637013435, + -0.008760624565184116, + -0.040238432586193085, + 0.002310065785422921, + -0.0003299292002338916, + -0.009591157548129559, + -0.003873545443639159, + 0.019546009600162506, + -0.0064872996881604195, + 0.014539835974574089, + -0.007733184844255447, + -0.0004279216518625617, + -0.004570014774799347, + 0.011018355377018452, + -0.007398946210741997, + -0.0712379440665245, + 0.003166775917634368, + 0.007973686791956425, + 0.004672076087445021, + 0.0055651539005339146, + -0.01779746450483799, + 0.008403638377785683, + -0.012216312810778618, + -0.011224832385778427, + 0.0009338536183349788, + -0.0005681003676727414, + -0.022032232955098152, + 0.0026571452617645264, + 0.007618148811161518, + 0.0036152363754808903, + 0.0013493277365341783, + 0.004865782335400581, + -0.0018911311635747552, + -0.006045921705663204, + 7.875353730923962e-06, + 0.010522106662392616, + 0.005737972911447287, + 0.004154273774474859, + 0.009755953215062618, + -0.005600467789918184, + 0.0013664368307217956, + 0.013494574464857578, + 0.0057959165424108505, + -0.0038561271503567696, + -0.01590624451637268, + -0.013070199638605118, + -0.007843132130801678, + 0.008806530386209488, + 0.015066994354128838, + 0.008680062368512154, + 0.01624372787773609, + 0.001204970176331699, + 0.004562223795801401, + -0.003135878359898925, + -0.0023440057411789894, + 0.0023614298552274704, + 0.00027386858710087836, + 0.006395340897142887, + -0.023704664781689644, + -0.0016351031372323632, + -0.004757313523441553, + 0.025567157194018364, + 0.006300379987806082, + -0.020422285422682762, + 0.012900132685899734, + -0.0010594847844913602, + -0.015915971249341965, + 0.007812544703483582, + -0.003030589083209634, + 0.005055747460573912, + 0.009358013048768044, + 0.0013391237007454038, + 0.015393588691949844, + -0.015061812475323677, + -0.005739918444305658, + 0.006101090461015701, + -0.004736092872917652, + -0.0005897124647162855, + -0.01662808284163475, + -0.005051297601312399, + 0.0038141263648867607, + -0.023835495114326477, + 0.0066045732237398624, + -0.012742040678858757, + 0.007788904011249542, + -0.005757986567914486, + 0.003709443612024188, + -0.0012097136350348592, + 4.543844988802448e-05, + 0.00039386108983308077, + 0.0011094753863289952, + 0.025677431374788284, + 0.008681907318532467, + -0.0009114720160141587, + 0.003510459093376994, + -0.01940775103867054, + 0.01527111791074276, + 0.013309947215020657, + -0.007580571807920933, + -0.025103094056248665, + 0.00015419800183735788, + 0.0017875498160719872, + -0.01016195211559534, + 0.0018521915189921856, + 0.011220659129321575, + 0.014057298190891743, + -0.0008262576884590089, + -0.008369019255042076, + 0.020329032093286514, + 0.021704185754060745, + -0.0011004284024238586, + 0.010984856635332108, + 0.00041177470120601356, + -0.013240544125437737, + 0.03343358635902405, + 0.007820484228432178, + -0.0017281632171943784, + -0.00018404964066576213, + 0.002598582301288843, + -0.005168386735022068, + -0.0046779620461165905, + 0.005658846814185381, + -0.014882108196616173, + -0.004367401823401451, + -0.008781752549111843, + 0.005897851195186377, + -0.009753808379173279, + 0.008144381456077099, + 0.037485383450984955, + 0.030126916244626045, + -0.023034363985061646, + -0.022870870307087898, + -0.04342290386557579, + 0.007463869173079729, + -0.012105417437851429, + -0.022276485338807106, + 0.00414087250828743, + 0.009797342121601105, + -0.03594023361802101, + -0.0017642428865656257, + -0.0012765928404405713, + -0.009220188483595848, + -0.005346133839339018, + 0.0136070242151618, + 0.012285488657653332, + -0.01858837530016899, + -0.00746910972520709, + -0.011146819218993187, + 0.04682612419128418, + 0.005971492733806372, + -0.023955820128321648, + 0.00127508700825274, + 0.02338372729718685, + 0.00020109627803321928, + 0.007417149376124144, + -0.0019260529661551118, + -0.01712716743350029, + -0.016702262684702873, + 0.02638128399848938, + -0.017094673588871956, + -0.012441244907677174, + 0.020637700334191322, + -0.024079956114292145, + 0.015486850403249264, + 0.016593564301729202, + 0.007777347229421139, + -0.019501592963933945, + -0.0037297627422958612, + 0.020244373008608818, + -0.005526871886104345, + 0.013197495602071285, + -0.0016991539159789681, + -0.002365435939282179, + -0.005206733010709286, + -0.009539450518786907, + -0.005003413651138544, + 0.0046325558796525, + 0.002397885313257575, + -0.012718560174107552, + -0.018917687237262726, + -0.0036130768712610006, + 0.0033327664714306593, + 0.009491164237260818, + 0.0010009767720475793, + 0.000584847352001816, + 0.0023231818340718746, + 0.003109529847279191, + -0.013099567033350468, + 0.02847026288509369, + 0.011656207963824272, + 0.015826215967535973, + -0.02872074954211712, + -0.0033405604772269726, + -0.007779052015393972, + -0.002933698007836938, + 0.0061256978660821915, + -0.000941526610404253, + -0.0038873718585819006, + -0.011256449855864048, + 0.009391916915774345, + -0.002035595243796706, + 0.003953064326196909, + 0.01126943901181221, + -0.005553252063691616, + 0.009081143885850906, + 0.03683044761419296, + -0.000524581060744822, + 0.005583947990089655, + 0.008930673822760582, + -0.012051889672875404, + 0.012165493331849575, + 0.007319306023418903, + -0.019233323633670807, + -0.002825804753229022, + 0.0021329910960048437, + -0.0022518811747431755, + 0.006555582396686077, + -0.009355399757623672, + 0.009808762930333614, + 0.005707945208996534, + -0.0009060422307811677, + -0.0019382182508707047, + 0.012298604473471642, + 0.0038053863681852818, + 0.010261334478855133, + -0.012082384899258614, + 0.0007327178027480841, + 0.0033929417841136456, + -0.007298169657588005, + 0.004224514123052359, + -0.004914353601634502, + 0.00010161029786104336, + -0.005601075012236834, + -0.004658494144678116, + 0.0007872658898122609, + -0.003535429947078228, + 0.006697917357087135, + 0.015572760254144669, + 0.005528564099222422, + -0.00038432603469118476, + -0.00748051144182682, + 0.010531543754041195, + -0.004460704047232866, + -0.007021778728812933, + -0.00478899572044611, + 0.005842314567416906, + 0.007240751758217812, + -0.0021496654953807592, + 0.0043557193130254745, + 0.019688090309500694, + -0.034388937056064606, + 0.007006250787526369, + 0.0036976835690438747, + 0.0024013963993638754, + 0.01981351524591446, + 0.0028369342908263206, + -0.01753830723464489, + -0.00995662808418274, + 0.007346617057919502, + -0.003074559150263667, + -0.0017119946423918009, + -0.011172564700245857, + -0.0008464938728138804, + 0.016807693988084793, + -0.0021945550106465816, + -0.021287081763148308, + -0.0012121591717004776, + -0.021903788670897484, + -0.004282986279577017, + -0.00706957932561636, + -0.01205387245863676, + -0.0006479879375547171, + 0.0075459289364516735, + -0.009982357732951641, + -0.005945789627730846, + 0.02935124933719635, + -0.009300189092755318, + 5.7443012337898836e-05, + 0.013065817765891552, + -0.00946439616382122, + 0.0052989693358540535, + 0.008312425576150417, + 0.001165213412605226, + 0.012217378243803978, + 0.011304636485874653, + 0.007528881076723337, + 0.00044825070654042065, + 0.012551194988191128, + -0.004295789171010256, + -0.009562067687511444, + -0.002314656740054488, + -0.00043115721200592816, + -0.008599162101745605, + -0.00285870349034667, + 0.004440039861947298, + -0.008626907132565975, + 0.020524004474282265, + 0.021653128787875175, + -0.004949011839926243, + 0.0011081572156399488, + 0.005050291307270527, + 0.008256066590547562, + 0.010853786021471024, + 0.0031614096369594336, + -0.001995302736759186, + 0.00991373136639595, + 0.01652481220662594, + -0.00264373910613358, + -0.005045557394623756, + 0.0075852228328585625, + -0.015907632187008858, + -0.016495149582624435, + 0.007150915451347828, + -0.0008293027058243752, + 0.004769252147525549, + -0.028373809531331062, + -0.01621204800903797, + 0.0008239031885750592, + 0.005138763692229986, + -0.010777370072901249, + 0.009451890364289284, + -0.0039642308838665485, + 0.018485315144062042, + -0.007888376712799072, + -0.01625463366508484, + 0.01139623299241066, + -0.0008018910884857178, + 0.005138832610100508, + 0.013368162326514721, + 0.005343674682080746, + -0.012983190827071667, + 0.010914251208305359, + -0.007356816437095404, + 0.013537837192416191, + 0.005239589139819145, + 0.005477891769260168, + -0.02129221521317959, + 0.01079606730490923, + -0.002871881006285548, + 0.02638663351535797, + -0.021821575239300728, + -0.0011345196980983019, + -0.025264613330364227, + 0.007837767712771893, + 0.007393612526357174, + 0.017974870279431343, + 0.00025506122619844973, + 0.0051925815641880035, + -0.016348082572221756, + -0.004781609401106834, + -0.013679870404303074, + -0.0007105917320586741, + -0.00652616610750556, + -0.0025465041399002075, + 0.015020603314042091, + 0.001010799896903336, + -0.005713848862797022, + -0.0016544392565265298, + 0.00753065524622798, + 0.005060277413576841, + 0.009314502589404583, + -0.0011636553099378943, + 0.0045150574296712875, + -0.0029879070352762938, + -0.025509053841233253, + -0.022488504648208618, + -0.018724918365478516, + -0.006819695234298706, + -0.0007589886081404984, + 0.013301841914653778, + -0.0013529917923733592, + -0.013761669397354126, + 0.004763773176819086, + -0.014097473584115505, + 0.00013063609367236495, + -0.00025381927844136953, + -0.0028767751064151525, + 0.00811760500073433, + 0.00408870680257678, + -0.002105416962876916, + -0.012136369943618774, + 0.004334078170359135, + -0.005045210476964712, + 0.008068651892244816, + -0.011444180272519588, + -0.0003743080887943506, + 0.006835813634097576, + 0.02747969515621662, + 0.01657118648290634, + -0.013029447756707668, + 0.00020043719268869609, + -0.02648882567882538, + -0.0006494003464467824, + -0.008896582759916782, + -0.0017888889415189624, + 0.011239716783165932, + -0.016865959390997887, + -0.007021087687462568, + -0.0012791784247383475, + -0.003602727083489299, + 0.002507959958165884, + -0.008494933135807514, + 0.0019394975388422608, + -0.0007018530741333961, + 0.039984047412872314, + -0.017941486090421677, + 0.0005776906036771834, + 0.002429055981338024, + 0.00016173602489288896, + 0.004314102232456207, + 0.008163352496922016, + -0.024921907112002373, + 0.009404684416949749, + -0.023641902953386307, + -0.0009050361113622785, + 0.02395528182387352, + -0.008591873571276665, + -0.005833396688103676, + 0.011387578211724758, + -0.033033065497875214, + -0.01993684098124504, + 0.01600826159119606, + 0.00039469392504543066, + 0.005349594634026289, + 0.008229967206716537, + 0.04391071945428848, + 0.007737448904663324, + -0.009034915827214718, + -0.011718238703906536, + -0.002097746357321739, + -0.0016995855839923024, + 0.012111784890294075, + 0.000473399821203202, + 0.01394930575042963, + 0.02451375126838684, + -0.0017413956811651587, + 0.00734282610937953, + -0.006326713599264622, + 0.007025746162980795, + 0.0009815627709031105, + -0.02618466317653656, + -0.0032776265870779753, + 0.021550938487052917, + -0.04093793034553528, + -0.013606512919068336, + -0.015903333202004433, + 0.017233356833457947, + -0.009570952504873276, + 0.021971318870782852, + -0.0015563429333269596, + 0.012018407694995403, + -0.00701893912628293, + -0.0013409904204308987, + 0.0203334279358387, + -0.01142881903797388, + -0.003790527116507292, + 0.0011323477374389768, + -0.03341427445411682, + -0.01214620005339384, + 0.00045710121048614383, + -0.0008048270246945322, + -0.012240068055689335, + -0.029260318726301193, + -0.0012731706956401467, + 0.0008227236103266478, + -0.003111175261437893, + 0.0010229554027318954, + 0.004519219975918531, + -0.0007853254210203886, + -0.007321885321289301, + 0.02523164637386799, + -0.0024140565656125546, + 0.0038857830222696066, + 0.00914125144481659, + -0.0034720320254564285, + 0.003454923629760742, + -0.03432515263557434, + -0.007609749678522348, + -0.0008450740133412182, + 0.00856032781302929, + -0.011513380333781242, + 0.0402822382748127, + 0.013922845013439655, + -0.011259349063038826, + 0.006270383019000292, + -0.0038829974364489317, + 0.0028481732588261366, + 0.0018060714937746525, + -0.0023982813581824303, + -0.018146254122257233, + 0.01409965381026268, + -0.021607857197523117, + 0.007980011403560638, + 0.037865906953811646, + -0.0014439322985708714, + 0.005617997143417597, + -0.013711501844227314, + 0.009580698795616627, + -0.0030547864735126495, + 0.006033643614500761, + 0.003955142572522163, + -0.019138041883707047, + -0.005915659014135599, + 0.004714707378298044, + 0.03845131769776344, + 0.005218002013862133, + 0.00043052752153016627, + 0.0059674689546227455, + -0.005767591297626495, + -0.007474936544895172, + 0.028816547244787216, + 0.023790806531906128, + 0.0076406365260481834, + -0.007382895331829786, + 0.0022906812373548746, + -0.002314553130418062, + 0.0056149899028241634, + 0.004806960001587868, + 0.0042569893412292, + -0.005235796328634024, + 0.010529279708862305, + -0.0006522396579384804, + -0.001535287476144731, + -0.014415375888347626, + 0.044815532863140106, + 0.0077878860756754875, + -0.00856924057006836, + 0.005852913949638605, + 0.02899996004998684, + -0.021766502410173416, + -0.008779686875641346, + -0.00250226934440434, + 0.00893990509212017, + 0.019599998369812965, + -0.014465924352407455, + 0.00022535721655003726, + -0.002549273893237114, + 0.0069613028317689896, + 0.012384215369820595, + 0.0011813875753432512, + 0.04263153299689293, + -0.0069427196867764, + 0.014194486662745476, + 0.005501657724380493, + -0.005869851913303137, + 0.026692472398281097, + -0.13510003685951233, + 0.0001125079215853475, + -0.0111762136220932, + 0.008867019787430763, + -0.014039639383554459, + -0.026743454858660698, + -0.022565742954611778, + 0.005633048713207245, + 0.004194311797618866, + -0.01896141842007637, + 0.014296924695372581, + -0.007271286565810442, + 0.0018115303246304393, + -0.0044138627126812935, + 0.006244983524084091, + -0.0297087412327528, + -0.008575046434998512, + -0.015012524090707302, + -8.232689287979156e-05, + -0.00923540722578764, + -0.018153123557567596, + -0.0075067696161568165, + -0.01171140931546688, + 0.0004933985183015466, + -0.0008463264675810933, + 0.0024291088338941336, + -0.010458185337483883, + 0.00788038969039917, + 0.005836560390889645, + 0.010302400216460228, + 0.008280759677290916, + 0.006330878473818302, + -0.006038561929017305, + 0.011046272702515125, + 0.00218956614844501, + 0.00455892737954855, + 0.0018510166555643082, + -0.004742405377328396, + 0.009730211459100246, + -0.014961856417357922, + -0.014274023473262787, + 0.00626792386174202, + -0.013756739906966686, + -0.0038384960498660803, + 0.013967569917440414, + -0.008013367652893066, + 0.04274763911962509, + 0.002517370041459799, + 0.020793788135051727, + -0.015183606185019016, + -0.009557572193443775, + -0.022064052522182465, + -0.00807736162096262, + -0.007012449204921722, + 0.017231669276952744, + -0.016071870923042297, + -0.004483421798795462, + 0.0012622756185010076, + -0.009560737758874893, + 0.0054347822442650795, + -0.017355673015117645, + 0.00689428485929966, + 0.007513684220612049, + 0.0021649037953466177, + -0.004429255146533251, + -0.008581792004406452, + -0.009229473769664764, + -0.008268775418400764, + -0.005104003008455038, + -0.011831892654299736, + -0.011144254356622696, + -0.007241895888000727, + 0.005997628904879093, + -0.007941242307424545, + -0.0004108346765860915, + -0.001557673211209476, + 0.0010408940725028515, + 0.0005484821740537882, + -0.002710035303607583, + -0.008642178028821945, + -0.007793109398335218, + 0.007101652678102255, + -0.010057405568659306, + 0.00395675003528595, + -0.0024463555309921503, + 0.007811659015715122, + -0.026023071259260178, + 0.008307849057018757, + -0.0017129279440268874, + -0.005317463539540768, + 0.004585637710988522, + -0.0002757153706625104, + -0.024530962109565735, + -0.004832427017390728, + -0.0037508723326027393, + -0.016304606571793556, + -0.016307858750224113, + 0.014717262238264084, + 0.013054047711193562, + -0.0023211350198835135, + -0.00196396023966372, + -0.015858102589845657, + -0.005415665917098522, + 0.00048661057371646166, + 0.0010241816053166986, + -0.00088037911336869, + 0.005878943484276533, + 0.013601768761873245, + -0.0017707797233015299, + 0.004733902867883444, + -0.006931879557669163, + 0.001100178575143218, + -0.006000801455229521, + 0.005365543533116579, + -0.0062242834828794, + 0.003435862483456731, + -0.008380070328712463, + -0.003115871688351035, + -0.0031200742814689875, + 0.02470463141798973, + -0.0022353415843099356, + 0.0007238020189106464, + 0.014951610937714577, + 0.00017568687326274812, + -0.005601275712251663, + 0.002427342114970088, + 0.00011722114868462086, + -0.0005971909849904478, + -0.002422112273052335, + -0.00012311172031331807, + 0.01109416875988245, + 0.001210752292536199, + -0.004055806901305914, + -0.0020877793431282043, + -0.003235559444874525, + -0.0011625331826508045, + -0.008048324845731258, + 0.004643062129616737, + 0.00022688205353915691, + 0.008053742349147797, + 0.008474886417388916, + -0.005090337712317705, + -0.0035783746279776096, + -0.013871720060706139, + 0.024909913539886475, + 0.0028551407158374786, + -0.04351629316806793, + 0.00718403747305274, + -0.0028806948103010654, + -0.015472795814275742, + -0.0017786994576454163, + -0.03157959133386612, + 0.01298942044377327, + 0.006602729670703411, + -0.011164308525621891, + 0.004037587437778711, + 0.011127992533147335, + 0.010798134841024876, + 0.005410637240856886, + -0.004623125307261944, + 0.008045386523008347, + 0.009800600819289684, + 0.0136784752830863, + -0.06168703734874725, + 0.005661084316670895, + 0.007710713893175125, + 0.0014213385293260217, + -0.002910479437559843, + 0.021955396980047226, + 0.0009982474148273468, + -0.00500417361035943, + 0.009704154916107655, + -0.010320243425667286, + 0.0421278141438961, + -0.00033978084684349597, + -0.010077018290758133, + -0.0036050861235708, + 0.011194804683327675, + 0.0034493780694901943, + -0.0046162898652255535, + -0.006553024519234896, + 0.0020824009552598, + 0.022356119006872177, + -0.02052362449467182, + -0.015933932736516, + 0.005083498079329729, + 0.00019886968948412687, + 0.01086093857884407, + 0.008242562413215637, + 0.01478742714971304, + 0.011938306502997875, + -0.007227885536849499, + 0.008761483244597912, + -0.013761283829808235, + 0.010439503006637096, + -0.011924228630959988, + 0.0063701230101287365, + 0.007419886998832226, + 0.019827894866466522, + 0.005455908365547657, + 0.0065010469406843185, + -0.01350029930472374, + -0.007885690778493881, + 0.005363626405596733, + 0.01024923101067543, + -0.009245163761079311, + -0.030139530077576637, + 0.011696147732436657, + -0.0023670890368521214, + 0.028853753581643105, + 0.0007937679765745997, + 0.014976207166910172, + -0.0018911865772679448, + 0.005717679858207703, + -0.000660038145724684, + -0.00859113410115242, + 0.017931008711457253, + 0.011801471002399921, + -0.005412158090621233, + 0.020461775362491608, + -0.08219406753778458, + 0.016786888241767883, + 0.0067206379026174545, + 0.006226645782589912, + 0.0018979605520144105, + 0.002865217160433531, + -0.016180600970983505, + 0.01487471628934145, + -0.024210253730416298, + -0.006999836303293705, + -0.001774917240254581, + 0.0033413046039640903, + -0.013638002797961235, + -0.0018317735521122813, + -0.0029209309723228216, + 0.03403792902827263, + -0.0044119772501289845, + 0.011056228540837765, + 0.00652864808216691, + -0.00905781053006649, + -0.0147411422803998, + -0.022102627903223038, + 0.029595132917165756, + -0.020293232053518295, + 0.010663039982318878, + -0.013952476903796196, + 0.008451543748378754, + 0.0032332518603652716, + 0.0013020894257351756, + 0.013134485110640526, + 0.00880700908601284, + -0.001248941640369594, + -0.010798483155667782, + 0.003239218145608902, + -0.0008323300280608237, + 0.001993816113099456, + 0.01921088807284832, + 0.00220199441537261, + 0.002492700470611453, + 0.00990296807140112, + 0.0016667783493176103, + 0.02139250934123993, + -0.015276276506483555, + 0.004263096023350954, + 0.004263552837073803, + 0.0019323312444612384, + 0.004584894515573978, + -0.009334172122180462, + 0.0014632816892117262, + -0.011713085696101189, + 0.0030538663268089294, + -0.010554061271250248, + -0.008867866359651089, + -0.005772951524704695, + 0.022363206371665, + 0.0047736819833517075, + -0.0046873814426362514, + -0.0038495890330523252, + -0.009365064091980457, + -0.003353380598127842, + 0.008571671321988106, + 0.0028249735478311777, + -0.005343689117580652, + -0.0038925937842577696, + -0.006952129770070314, + 0.007819999009370804, + -0.0025886918883770704, + -0.0012727155117318034, + -0.003487188136205077, + 0.017683055251836777, + -0.009503996931016445, + -0.009558256715536118, + 0.006902145221829414, + 0.01951579377055168, + -0.012728005647659302, + -0.006323012989014387, + -0.004857298452407122, + 0.0062418910674750805, + 0.015871403738856316, + 0.0020306750666350126, + 0.01021111011505127, + 0.004348494112491608, + 0.011403664946556091, + 0.007766180671751499, + -0.01749234087765217, + 0.010362212546169758, + -0.0025810063816607, + 0.0073994845151901245, + -0.004088696092367172, + 0.002890707226470113, + 0.003931756131350994, + -0.0022322845179587603, + -0.0057394071482121944, + -0.006992017384618521, + -0.02076674997806549, + -0.0062401932664215565, + -0.006777527276426554, + -0.004089490510523319, + -0.012853453867137432, + 0.001636301283724606, + -0.0018956041894853115, + 0.00525004044175148, + -0.008083734661340714, + 0.006780719850212336, + -0.03549770638346672, + 0.011539477854967117, + -0.00899325031787157, + 0.02162802405655384, + -0.009970455430448055, + 0.0029259049333631992, + -0.005104519426822662, + 0.027067281305789948, + 0.005864331033080816, + -0.009000902995467186, + -0.01006726361811161, + 0.02109452523291111, + 0.004088359419256449, + 0.010353169403970242, + 0.00018116332648787647, + -0.006368433590978384, + 0.002761313458904624, + 0.022847702726721764, + -0.01591448113322258, + 0.019434217363595963, + -0.0023508488666266203, + -0.0008938434766605496, + 0.0051719434559345245, + -0.027211805805563927, + 0.007848304696381092, + 0.02426975406706333, + -0.0009487781790085137, + -0.0077093904837965965, + 0.012659680098295212, + 0.010007348842918873, + -0.019013823941349983, + 0.006139329168945551, + -0.00905543565750122, + -0.0030263937078416348, + 0.02441464737057686, + 0.0010276742978021502, + 0.01961415261030197, + 0.003671180922538042, + -0.0010899879271164536, + -0.0020424281246960163, + -0.05474307760596275, + -0.013576149009168148, + 0.0019736983813345432, + -0.008463175967335701, + 0.011772758327424526, + -0.012110132724046707, + -0.00454849423840642, + 0.01479874923825264, + -0.011285778135061264, + -0.0007361776079051197, + 0.001024426892399788, + -0.00137204653583467, + 0.005492900963872671, + -0.018676340579986572, + -0.012995917350053787, + -0.00479799322783947, + 0.015913113951683044, + 0.020347701385617256, + -0.007646402809768915, + 0.005008943844586611, + 0.024295726791024208, + -0.014356303960084915, + 0.0020579376723617315, + 0.048031874001026154, + -0.0013202432310208678, + 0.01441899687051773, + -0.02518797107040882, + -0.005668263416737318, + -0.007774150464683771, + -0.009980875998735428, + 0.012050489895045757, + 0.03558672219514847, + 0.016571559011936188, + -0.0043189809657633305, + -0.004482580348849297, + 0.0010133561445400119, + -0.008074908517301083, + 0.016185596585273743, + -0.014991887845098972, + 0.0036180480383336544, + 0.013619057834148407, + 0.0013736997498199344, + 0.03402400016784668, + 0.023335544392466545, + 0.0003680884838104248, + -0.0005066126468591392, + -0.010717451572418213, + -0.020580492913722992, + -0.006338983774185181, + -0.007297662552446127, + -0.02656581997871399, + 0.017540592700242996, + -0.0032346700318157673, + -0.016672518104314804, + 0.020133228972554207, + 0.011467033997178078, + 0.0017069074092432857, + 0.006361702922731638, + 0.001956402091309428, + -0.006188615690916777, + 0.007758993189781904, + -0.0006540400208905339, + -0.017347615212202072, + 0.0016924388473853469, + 0.001285072066821158, + -0.009178289212286472, + -0.0179583840072155, + 0.002173748565837741, + 0.010870168916881084, + -0.003489181399345398, + -0.031240761280059814, + -0.031494371592998505, + -0.002132897963747382, + 0.043036967515945435, + -0.2035979926586151, + -0.02899848110973835, + -0.005664055701345205, + 0.011702400632202625, + 0.004977700300514698, + -0.004719069227576256, + 0.018228091299533844, + -0.05693744868040085, + 0.019678881391882896, + -0.00909595936536789, + -0.0048124222084879875, + -0.026953887194395065, + -0.009307274594902992, + -0.006013425532728434, + -0.00884100329130888, + -0.008601853623986244, + -0.016339808702468872, + 0.05489746481180191, + 0.007438229862600565, + -0.012407644651830196, + -0.00024564031627960503, + -0.002457723719999194, + -0.0445399172604084, + 0.018703792244195938, + 0.0007777157006785274, + -0.011351609602570534, + 0.01484588347375393, + 0.010787902399897575, + -0.00806474406272173, + 0.001641385955736041, + 0.01453004777431488, + 0.021287186071276665, + 0.009688948281109333, + -0.0015549622476100922, + -0.0003598948533181101, + -0.003363975090906024, + -0.01240531075745821, + -0.009127648547291756, + 0.0037372678052634, + -0.010903820395469666, + -0.0031798239797353745, + -0.010694538243114948, + -0.015511092729866505, + 0.0076596676371991634, + 0.011615056544542313, + 0.003679599380120635, + 0.0058233654126524925, + -0.010755116119980812, + 0.006793727166950703, + 0.0007489860872738063, + 0.008975395932793617, + -0.003389062127098441, + 0.01063302531838417, + 0.01798226684331894, + 0.018143359571695328, + 0.019082676619291306, + -0.0013555398909375072, + -0.013222364708781242, + 0.00609965343028307, + 0.01816261187195778, + -0.014992364682257175, + 0.009628609754145145, + 0.00010370476229581982, + -0.017992516979575157, + 0.012725061737000942, + -0.00811307318508625, + 0.0133803840726614, + 0.055459365248680115, + -0.0034416099078953266, + 0.011772706173360348, + -0.004879134241491556, + -0.0014871408930048347, + 0.014184124767780304, + -0.007719102781265974, + -0.0020857066847383976, + 0.03387602046132088, + -0.0007059049094095826, + -0.019367288798093796, + -0.001938090194016695, + -0.015435842797160149, + -0.00375207862816751, + -0.008617209270596504, + 0.028781447559595108, + 0.017162378877401352, + -0.01125198695808649, + -0.01776566542685032, + 0.014179987832903862, + 0.005148479714989662, + -0.015434050001204014, + -0.00370068964548409, + -0.004862570203840733, + 0.014239327982068062, + 0.03518605977296829, + 0.004295050166547298, + 0.011082278564572334, + 0.009205685928463936, + 0.011432439088821411, + 0.021655095741152763, + 0.001749840215779841, + 0.01280889194458723, + -0.006504553370177746, + 0.0024282808881253004, + -0.015705760568380356, + -0.0032640707213431597, + 0.009914488531649113, + -0.00900713074952364, + 0.03991683945059776, + -0.0047167763113975525, + 0.00355443824082613, + 0.004436301998794079, + -0.010000337846577168, + -0.0483679324388504, + 0.0033360228408128023, + -0.005985081195831299, + 0.006619937252253294, + 0.05439190939068794, + -0.0015871640061959624, + 0.0062609706073999405, + 0.0031263285782188177, + -0.016479920595884323, + -0.014902004972100258, + -0.009606130421161652, + 0.04552087187767029, + 0.00845816545188427, + -0.01588359847664833, + 0.008095295168459415, + -0.004611427895724773, + -0.022769497707486153, + -0.013876614160835743, + 0.002080326434224844, + 0.0069001163356006145, + 0.009026594460010529, + -0.0026939415838569403, + 0.004102925304323435, + 0.008170587942004204, + -0.006160742603242397, + -0.009528573602437973, + -0.023694820702075958, + -0.01778312586247921, + 0.018142027780413628, + 0.004390517715364695, + -0.006803534924983978, + 0.0010026500094681978, + 0.005488050170242786, + -0.0004885902162641287, + 0.04298340156674385, + -0.014011785387992859, + -0.015064585022628307, + 0.0037387702614068985, + -0.021874764934182167, + 0.008546063676476479, + -0.020819030702114105, + 0.020381979644298553, + -0.004934533033519983, + 0.014541013166308403, + 0.004222388379275799, + 0.0028833134565502405, + 0.0011785170063376427, + 0.014070252887904644, + -0.012490945868194103, + 0.01743134669959545, + -0.0034882889594882727, + -0.011646084487438202, + 0.009702619165182114, + 0.032482512295246124, + 0.0005707617965526879, + -0.009028492495417595, + 0.010358715429902077, + 0.0036159150768071413, + -0.019570540636777878, + 0.012151339091360569, + -0.0072612580843269825, + 0.010310851037502289, + 0.00020737173326779157, + 0.015598570927977562, + 0.0017902323743328452, + 0.03581345081329346, + -0.038205716758966446, + -0.00043491623364388943, + 0.013898221775889397, + 3.3166441426146775e-05, + -0.002805824624374509, + -0.004417621996253729, + 0.0025803279131650925, + 0.00707220146432519, + -0.009917417541146278, + -0.00684691034257412, + 0.019142867997288704, + 0.0067608412355184555, + 0.017060326412320137, + 0.005933958571404219, + 0.0013338230783119798, + 0.0002912069030571729, + 0.00504576601088047, + -0.009028269909322262, + 0.007886243052780628, + -0.004415313713252544, + 0.003999642096459866, + 0.015981175005435944, + 0.013888617046177387, + 0.0077998097985982895, + 0.00536864111199975, + 0.0011976389214396477, + 0.005152131896466017, + 0.007382620126008987, + -0.01177542470395565, + -0.007143228780478239, + 0.008178846910595894, + 0.0065343352034688, + -0.0038678350392729044, + 0.023378806188702583, + 0.005399729125201702, + -0.012474121525883675, + 0.006630406714975834, + -0.03944776952266693, + 0.004182390868663788, + -0.005145994946360588, + 0.006785009056329727, + 0.016205033287405968, + 0.003750328905880451, + 0.012933286838233471, + -0.010792361572384834, + 0.012680796906352043, + -0.030657043680548668, + 0.017039963975548744, + 0.01146086398512125, + -0.002721816999837756, + 0.001428744406439364, + 0.008054088801145554, + 0.0019391478272154927, + -0.001859129872173071, + 0.0015757655492052436, + -0.005207468289881945, + 0.00045831326860934496, + -0.01397823728621006, + 0.016898762434720993, + 0.04052334278821945, + 0.005645128898322582, + 0.0392608642578125, + 0.008881830610334873, + 0.005094176158308983, + 0.007564101833850145, + 0.0036732247099280357, + -0.009464964270591736, + -0.016385160386562347, + 0.004187426064163446, + -0.002718034666031599, + 0.00825731921941042, + 0.0033690857235342264, + 0.012720390222966671, + 0.08235978335142136, + 0.003905493300408125, + 0.021523794159293175, + 0.010671049356460571, + 0.0031740095000714064, + 0.012987817637622356, + 0.020293785259127617, + -0.016750643029808998, + 0.017498087137937546, + 0.02370539866387844, + 0.00014030523016117513, + -0.01258906815201044, + 0.006063186563551426, + 0.012341722846031189, + 0.03071760945022106, + -0.02308075502514839, + 0.017834940925240517, + -0.015905214473605156, + 0.0203347560018301, + -0.012350761331617832, + 0.06688141077756882, + 3.9939932321431115e-05, + -0.007320834323763847, + -0.007321394979953766, + -0.008756589144468307, + -0.0013519141357392073, + -0.0064042676240205765, + 0.0032738165464252234, + -0.0058856927789747715, + 0.0066046458669006824, + -0.00758776580914855, + -0.008980774320662022, + -0.007626618258655071, + 3.378709152457304e-05, + 0.0003638501511886716, + 0.017826754599809647, + -0.0073737227357923985, + 0.0017554451478645205, + -0.010771720670163631, + -0.01044295635074377, + 0.0035740917082875967, + -0.01124555617570877, + 0.0020793399307876825, + -0.0029553337953984737, + -0.005781509913504124, + -0.0023057281505316496, + 0.07443354278802872, + -0.044680021703243256, + 0.0032321102917194366, + -0.0013179539237171412, + -0.008452896028757095, + -0.0352124385535717, + 0.002421941142529249, + 0.07511807978153229, + -0.003995615057647228, + 0.005399912595748901, + -0.031077802181243896, + -0.0037008810322731733, + 0.000863876543007791, + 0.007248143665492535, + -0.00012273942411411554, + -0.0010138300713151693, + 0.0011483487905934453, + -0.012070869095623493, + -0.009696833789348602, + 0.02015944942831993, + -0.0029631417710334063, + -0.014930582605302334, + -0.00019053439609706402, + 0.006127943284809589, + 0.004208064638078213, + -0.006501964293420315, + -0.010618305765092373, + -0.0066186427138745785, + -0.0012481779558584094, + 0.006140809040516615, + -0.013480683788657188, + 0.003764807479456067, + -0.0008595768013037741, + -0.0062940665520727634, + -0.005362420808523893, + 0.00708479480817914, + 0.002424598904326558, + 0.007238229736685753, + -0.013118501752614975, + -0.004013192839920521, + 0.005645051598548889, + -0.054420072585344315, + -0.0022368403151631355, + 0.050529684871435165, + 0.006615587044507265, + 0.005849851295351982, + 0.08018603920936584, + -0.025038283318281174, + 0.014604262076318264, + -0.01077093556523323, + 0.004171297419816256, + -0.012384958565235138, + -0.0409599132835865, + 0.0015347683802247047, + -0.01673988066613674, + -0.005717934109270573, + 0.00806869100779295, + 0.008066481910645962, + -0.009512336924672127, + 0.04732979089021683, + -0.02065981924533844, + 0.009326317347586155, + 0.010064668022096157, + 0.010669296607375145, + 0.0030460883863270283, + -0.03871144726872444, + -0.007227038964629173, + 0.00366579694673419, + -0.010217017494142056, + 0.01175920944660902, + -0.010263929143548012, + 0.003947210963815451, + -0.0031816887203603983, + 0.002159855095669627, + -0.017769869416952133, + -0.013349606655538082, + 0.012784297578036785, + 0.01834237389266491, + -0.007609928492456675, + -0.01212782971560955, + 0.05884239450097084, + -0.005056793801486492, + 0.0181826651096344, + 0.004340922925621271, + -0.010712157934904099, + 0.005525111220777035, + -0.0006433650269173086, + 0.00616835243999958, + -0.012882871553301811, + -0.008826764300465584, + -0.0006501884199678898, + -0.028628503903746605, + 0.018166780471801758, + -0.004701380152255297, + 0.016992386430501938, + 0.006622706539928913, + -0.00851040706038475, + 0.00367188872769475, + 0.021931715309619904, + -0.00889156386256218, + -0.017567045986652374, + 0.006993120536208153, + -0.008850475773215294, + 0.0008854366606101394, + 0.0038985656574368477, + 0.007745974697172642, + -0.012988648377358913, + 0.01303605455905199, + -0.007364976219832897, + -0.02343923971056938, + 0.005041050724685192, + -0.018222086131572723, + 0.006033964455127716, + -0.0018638505134731531, + 0.008610155433416367, + -0.005136534571647644, + -0.0038075176998972893, + 6.939929880900308e-05, + -0.0025314167141914368, + -0.0037014195695519447, + 0.011841892264783382, + 0.01747395470738411, + 0.02479558065533638, + 0.0002700950426515192, + 0.007327068131417036, + -0.0034544349182397127, + 0.0025629715528339148, + -0.014916792511940002, + -0.001652105012908578, + 0.0017018994549289346, + 0.01424416247755289, + 0.0028165956027805805, + -0.01270398497581482, + 0.016790790483355522, + -0.010299783200025558, + -0.02037530392408371, + 0.008647920563817024, + 0.003583550453186035, + -0.016533905640244484, + 0.0014984753215685487, + -0.019978543743491173, + -0.0052355872467160225, + -0.000988452578894794, + 0.010474641807377338, + 0.019723497331142426, + 0.005446449387818575, + -0.007564730942249298, + 0.0017371632857248187, + -0.00033640378387644887, + -0.00998314842581749, + 0.030051415786147118, + -0.012143304571509361, + 0.010925574228167534, + 0.001349194091744721, + -0.005290594883263111, + 0.003112169448286295, + 0.0032084162812680006, + -0.01626880094408989, + 0.02472817525267601, + -0.01563260704278946, + -0.019811321049928665, + -0.002359915990382433, + 0.026047483086586, + 0.01090130303055048, + -0.01697375439107418, + 0.006124760024249554, + 0.013084685429930687, + 0.0001467895635869354, + 0.011516292579472065, + -0.00646029831841588, + -0.005719429347664118, + -0.003038707422092557, + -0.008907931856811047, + -0.007355913054198027, + -0.01096733845770359, + -0.0028573349118232727, + -0.022115275263786316, + 0.01905066706240177, + -0.013187562115490437, + 0.009955024346709251, + -0.02277662418782711, + -0.006041837390512228, + -0.001199969556182623, + -0.052556902170181274, + 0.00811607576906681, + 0.03551257774233818, + -0.011706464923918247, + 0.008177761919796467, + 0.01301178801804781, + -0.005629814229905605, + -0.007927312515676022, + 0.001937834545969963, + -0.00452788220718503, + -0.019383002072572708, + 0.003399173030629754, + 0.01274615153670311, + -0.003279306460171938, + 0.06201974302530289, + -0.0015720253577455878, + 0.009734878316521645, + 0.002245217328891158, + -0.0048074983060359955, + -0.0004670935741160065, + -0.021766215562820435, + 0.005308937281370163, + -0.004699685610830784, + 0.007943456061184406, + 0.0073739816434681416, + 0.0339893102645874, + 0.016423160210251808, + 0.012843707576394081, + 0.0022309275809675455, + 0.012084657326340675, + 0.015826910734176636, + -0.003361322684213519, + 0.004328720271587372, + 0.0008188246283680201, + 0.029261987656354904, + -0.009074472822248936, + -0.008600542321801186, + 0.0022605168633162975, + -0.01566917821764946, + -0.0018350058235228062, + -0.011481122113764286, + 0.006605983711779118, + -0.009515751153230667, + -0.016788730397820473, + 0.010295522399246693, + 0.021863728761672974, + 0.0153353251516819, + 0.011598050594329834, + 0.011295831762254238, + 0.030912090092897415, + 0.008574415929615498, + -0.009219513274729252, + 0.0038157859817147255, + 0.009874713607132435, + -0.008155198767781258, + 0.0038970685563981533, + 0.006313443649560213, + 0.0017835465259850025, + 0.016085606068372726, + 0.005257279612123966, + -0.03256393224000931, + -0.01026182435452938, + -0.015160417184233665, + 0.0217093825340271, + 0.001636289875023067, + -0.006046694703400135, + -0.0054066055454313755, + -0.018733100965619087, + -0.019255975261330605, + 0.0018742727115750313, + 0.0061132637783885, + 0.013837710954248905, + -0.012004712596535683, + 0.001465960987843573, + -0.012429344467818737, + 0.005400596186518669, + 0.013620862737298012, + 0.01836116798222065, + 0.02483411319553852, + 0.0067458986304700375, + -0.012402687221765518, + 0.008665184490382671, + -0.0057928734458982944, + -0.0019764781463891268, + 0.011182110756635666, + -0.004076862707734108, + 0.007223965600132942, + -0.015296665951609612, + -0.013209793716669083, + 0.008478373289108276, + 0.008304214105010033, + -0.011029984802007675, + 0.014030125923454762, + 0.0178463626652956, + -0.0013831990072503686, + 0.010376482270658016, + 0.016569709405303, + -0.004840035457164049, + -0.002663555322214961, + 0.03290747478604317, + -4.466152313398197e-05, + -0.00865959282964468, + -0.019231364130973816, + -0.0011126362951472402, + -0.00518573634326458, + -0.000961333338636905, + 0.006523005198687315, + 0.009348939172923565, + -0.006071209907531738, + 0.000873729819431901, + 0.012157585471868515, + -0.001029666163958609, + 0.007749034557491541, + 0.027626318857073784, + -0.012951726093888283, + 0.005664028227329254, + -0.006638421211391687, + 0.0020130006596446037, + 0.00246376427821815, + 0.007476651109755039, + -0.005746266804635525, + -0.006748333107680082, + -0.012631922960281372, + -0.010636111721396446, + 0.008664674125611782, + 0.013979237526655197, + 8.622026507509872e-05, + -0.013482260517776012, + -0.008579500019550323, + -0.031129132956266403, + -0.002094669733196497, + -0.014534680172801018, + -0.012133941054344177, + 0.015226940624415874, + -0.018064921721816063, + -0.013070247136056423, + 0.0009758970700204372, + -0.013567228801548481, + 0.019901834428310394, + -0.003268383676186204, + -0.018733588978648186, + -0.021833395585417747, + 0.027903499081730843, + -0.007765591610223055, + -0.026353249326348305, + -0.004966482054442167, + 0.013713245280086994, + -0.012040437199175358, + -0.0005047646700404584, + -0.0030469046905636787, + 0.004857243504375219, + -0.015279566869139671, + 0.025940246880054474, + 0.008354555815458298, + 0.004214664921164513, + -0.024301866069436073, + -0.010271882638335228, + -0.01734129525721073, + 0.005802624858915806, + -0.011416880413889885, + 0.008719203993678093, + -0.02078225463628769, + -0.012349572964012623, + -0.0008652537944726646, + 0.0037398110143840313, + 0.014281430281698704, + 0.013051055371761322, + -0.02843635156750679, + -0.010783408768475056, + -0.004341003485023975, + 0.0107880849391222, + 0.006413653027266264, + -0.0030342547688633204, + 0.011152464896440506, + 0.010053499601781368, + 0.0036315524484962225, + -0.0017044910928234458, + -0.0014934821520000696, + -0.01777428202331066, + 0.011278200894594193, + 0.002837907522916794, + 0.00837969034910202, + -0.029446125030517578, + 0.00721265422180295, + 0.005876772105693817, + 0.0013802528847008944, + -0.02202429063618183, + 0.013409750536084175, + 0.0035532894544303417, + 0.009677126072347164, + 0.022377194836735725, + -0.019795546308159828, + -0.004236588720232248, + -0.01089528203010559, + -0.017711354419589043, + 0.02341482788324356, + 0.0050560906529426575, + 0.013546495698392391, + 0.0028571297880262136, + -0.003226296277716756, + 0.047206513583660126, + -0.026617934927344322, + 0.01740873232483864, + 0.0008226234349422157, + -0.003359326161444187, + -0.03484822437167168, + -0.0027562978211790323, + -0.027271106839179993, + 0.009850677102804184, + 0.0016564963152632117, + 0.004785419441759586, + -0.004557181615382433, + 0.0014370210701599717, + -0.007529407739639282, + -0.003517845179885626, + -0.00013454860891215503, + 0.009383982047438622, + 0.001386766554787755, + 0.0001317001588176936, + 0.0026904288679361343, + 0.010657720267772675, + 0.02460300736129284, + -0.00649033160880208, + -0.011738562025129795, + 0.009433993138372898, + -0.0021747606806457043, + 0.0011107781901955605, + -0.014610208570957184, + 0.023358657956123352, + 0.010231325402855873, + 0.0033728473354130983, + 0.03009004332125187, + -0.014037488028407097, + 0.012886352837085724, + -0.005269823595881462, + -0.015497647225856781, + -0.034968484193086624, + 0.004673528950661421, + 0.005641298368573189, + 0.0032703557517379522, + 0.004423430655151606, + -0.01762593537569046, + -0.0014434837503358722, + -0.01178722083568573, + -0.0042173475958406925, + 0.07065873593091965, + -0.00931271817535162, + 0.012251794338226318, + -0.004112343769520521, + -0.002001408487558365, + 0.005984771065413952, + -0.001431612647138536, + 0.03746578469872475, + 0.0001316353736910969, + -0.011712410487234592, + 0.0854581668972969, + 0.011587166227400303, + 0.000586191366892308, + -0.012527810409665108, + -0.013036885298788548, + 0.0037928689271211624, + -0.005025627091526985, + 0.005788720678538084, + -0.007414578925818205, + -0.012411413714289665, + 0.013787288218736649, + 0.01073695532977581, + 0.009222147986292839, + -0.005795840639621019, + -0.019655631855130196, + -0.008481411263346672, + -0.008662153035402298, + -0.011057640425860882, + -0.013568851165473461, + 0.0035767131485044956, + -0.012738499790430069, + -0.001165084890089929, + -0.027235552668571472, + -0.028558751568198204, + 0.006341387517750263, + -0.04629456624388695, + -0.005752536002546549, + -0.006398368161171675, + 0.0030818430241197348, + -0.0018575132125988603, + 0.010778962634503841, + 0.00012584272189997137, + 0.0010295219253748655, + -0.01619856245815754, + -0.003986215218901634, + 0.0032717608846724033, + 0.0072835227474570274, + -0.0031663684640079737, + 0.005904656834900379, + -0.001315838540904224, + 0.007542008999735117, + 0.016763698309659958, + 0.015078486874699593, + -0.010777297429740429, + 0.005970699246972799, + 0.011551156640052795, + 0.0007698314148001373, + 0.012830488383769989, + 0.00867287628352642, + 0.002188403159379959, + 0.006475936155766249, + 0.01190014835447073, + -0.002973641501739621, + 0.0031618571374565363, + 0.005862949416041374, + 0.002702660858631134, + 0.005453991238027811, + -0.05490799993276596, + -0.017139999195933342, + 0.00047062395606189966, + 0.0022253890056163073, + 0.0015720924129709601, + -0.001453785807825625, + -0.0061963340267539024, + -0.018371015787124634, + -0.0009204903617501259, + 0.005518737714737654, + 0.0056057339534163475, + 0.01709173247218132, + 0.03161462023854256, + -0.04032500088214874, + 0.015663795173168182, + 0.0072222244925796986, + 0.00018979175365529954, + -0.006563419476151466, + 0.01029328815639019, + 0.001438111998140812, + -0.008664008229970932, + -0.006107524037361145, + 0.004060034640133381, + 0.019273795187473297, + -0.006150201894342899, + -0.0014648536453023553, + 0.0024859034456312656, + 0.007753077428787947, + 0.0016501443460583687, + -0.013377182185649872, + -0.018528331071138382, + 0.005108709912747145, + 0.007555931340903044, + -0.04455319419503212, + -0.024652818217873573, + -0.020683269947767258, + 0.0023065570276230574, + -0.00477767875418067, + -0.0034211911261081696, + -0.006463991943746805, + -0.011368568055331707, + -0.008581257425248623, + -0.0026374587323516607, + -0.007507714908570051, + -0.005242110695689917, + -0.0013468448305502534, + 0.006266567390412092, + -0.017049092799425125, + -0.009995042346417904, + 0.0395556278526783, + -0.007636032998561859, + 0.00024326439597643912, + 0.011419592425227165, + 0.012247578240931034, + -0.007151959463953972, + -0.008485295809805393, + -0.00200915290042758, + 0.003423603717237711, + 0.007516223471611738, + 0.0017137209651991725, + -0.018828919157385826, + -0.009225795045495033, + 0.010410904884338379, + -0.0029043597169220448, + -0.012346439063549042, + -0.001268294407054782, + -0.0077898502349853516, + -0.0025708770845085382, + 0.006698646582663059, + 0.005651448853313923, + 0.020601220428943634, + 0.004366119857877493, + 0.002461408730596304, + 0.00036824317066930234, + -0.0022509926930069923, + -0.015252433717250824, + -0.0028295523952692747, + -0.004755417816340923, + -0.015277251601219177, + 0.030038518831133842, + 0.003155851038172841, + -0.014691207557916641, + 0.00883515365421772, + 0.00977523997426033, + -0.01956753619015217, + 0.013732286170125008, + -0.006792562548071146, + -0.006898628547787666, + -0.009390613064169884, + -0.006535875611007214, + 0.001375027233734727, + -0.01786923035979271, + 0.007677851710468531, + 0.0169303547590971, + 0.020116271451115608, + 0.03119529038667679, + 0.018318189308047295, + -0.015545489266514778, + 0.00018468934285920113, + 0.004384923726320267, + -0.00810512900352478, + 0.007415244821459055, + 0.0070946007035672665, + -0.009137739427387714, + 0.007459085900336504, + 0.006490514613687992, + 0.008156969211995602, + 0.013067520223557949, + 0.00556466169655323, + 0.001699392101727426, + -0.0012554330751299858, + 0.00027432863134890795, + -0.04573658108711243, + -0.0062880138866603374, + -0.02307903952896595, + -0.011410661973059177, + 0.003507476532831788, + -0.0035873677115887403, + -0.014676128514111042, + -0.010516111738979816, + -0.0018252201844006777, + -0.06434585899114609, + 0.00013990521256346256, + 0.003911940380930901, + 0.007330668158829212, + -0.007336985319852829, + -0.025375481694936752, + -0.001246033818461001, + 0.0008676341385580599, + 0.0009727210854180157, + -0.010996866039931774, + 0.0027269257698208094, + 0.010075267404317856, + 0.015615367330610752, + 0.004622891545295715, + 0.01660420186817646, + -0.00831194780766964, + 0.014058791100978851, + 0.006654925644397736, + 0.010846463963389397, + -0.024682819843292236, + 0.011827098205685616, + 0.006352391559630632, + -0.008617243729531765, + 0.0054148342460393906, + -0.01382870227098465, + 0.01368925254791975, + -0.026797382161021233, + 0.00818825326859951, + -0.004518771544098854, + -0.002060788683593273, + -0.019531801342964172, + -0.017965665087103844, + 5.000837336410768e-05, + 0.0012774895876646042, + -0.009507900103926659, + -0.0017053815536201, + -0.008567450568079948, + 0.006351938936859369, + -0.012259495444595814, + 0.00521817384287715, + -0.007616269867867231, + -0.004751462489366531, + 0.0043897321447730064, + 0.012117916718125343, + -0.0007599418167956173, + -0.013566671870648861, + 0.0028035053983330727, + 0.0009430163190700114, + 0.013808934949338436, + -0.014701511710882187, + -0.0028525504749268293, + -0.007941273972392082, + 0.01404363103210926, + 0.004095979500561953, + 0.017998414114117622, + 0.009419563226401806, + 0.004424537997692823, + 0.010233483277261257, + 0.06204307824373245, + 0.002983337501063943, + -0.008001993410289288, + -0.00013497938925866038, + -0.01077127642929554, + 0.01215306855738163, + -0.0015306570567190647, + 0.007055062800645828, + 0.0022847624495625496, + 0.021331027150154114, + 0.0010075963800773025, + -0.005553188733756542, + 0.010451740585267544, + -0.006507005542516708, + -0.003487048204988241, + 0.001538866781629622, + -0.018351256847381592, + -0.0016124770045280457, + 0.0018741685198619962, + -0.008724858053028584, + -0.013877129182219505, + -0.024312466382980347, + -0.006692728493362665, + -0.036480240523815155, + 0.0018676938489079475, + 0.025021005421876907, + -0.006540579255670309, + 0.005535404663532972, + -0.006196525413542986, + -0.010763363912701607, + 0.0025014823768287897, + 0.0073499116115272045, + 0.011815239675343037, + 0.0030834157951176167, + 0.024455152451992035, + -0.006592268589884043, + -0.007402094081044197, + -0.014006699435412884, + 0.014664366841316223, + -0.014637951739132404, + -0.016121789813041687, + 0.009144403971731663, + -0.01756022684276104, + 0.001388496719300747, + 0.0069350553676486015, + 0.004948874935507774, + 0.013278537429869175, + -0.002722989534959197, + -0.0030798637308180332, + -0.0064321462996304035, + -0.003908784594386816, + -0.004385760519653559, + -0.022331086918711662, + 0.004977251868695021, + 0.0034429749939590693, + 0.0028089515399187803, + 0.010395972058176994, + -0.00512814661487937, + 0.0020714967977255583, + -0.009854736737906933, + 0.004796918947249651, + 0.004092174116522074, + 0.008140928111970425, + -0.0014139554696157575, + -0.011424185708165169, + -0.02043253742158413, + -0.0029479775112122297, + 0.004057169891893864, + 0.043003495782613754, + 0.012372530065476894, + -0.001385999727062881, + -0.00339811434969306, + 0.001871562679298222, + 0.007122088689357042, + 0.004340541549026966, + 0.002309417352080345, + 0.011076320894062519, + -0.024235980585217476, + 0.004000618122518063, + -0.013890329748392105, + 0.017946865409612656, + -0.02924560382962227, + -0.06620973348617554, + -0.001753525109961629, + -0.0203266441822052, + -0.005386160220950842, + 0.013820619322359562, + 0.003863715101033449, + 0.005990965757519007, + 0.0052818008698523045, + 0.006569386459887028, + -0.002693959977477789, + 0.012460961006581783, + 0.00713926600292325, + -0.012586593627929688, + -0.012583766132593155, + 0.00994952954351902, + 0.006878502666950226, + 0.011120550334453583, + 2.606340785860084e-05, + -0.011406472884118557, + 0.0046655903570353985, + -0.0035093361511826515, + 0.027291875332593918, + 0.004674161318689585, + -0.004019081126898527, + 0.026172684505581856, + 0.0035272305831313133, + 0.00953923910856247, + -0.005746749695390463, + -0.015266135334968567, + 0.0011646776692941785, + -0.006999365519732237, + -0.007996195927262306, + -0.0017766683595255017, + 0.021447578445076942, + 0.005340064410120249, + 0.0016789884539321065, + -0.017546504735946655, + -0.004345174878835678, + -0.009453879669308662, + 0.005775270517915487, + -0.013357296586036682, + -0.009259279817342758, + 0.01528837438672781, + -0.009190368466079235, + 0.0007122129900380969, + 0.0013650518376380205, + -0.0051056016236543655, + -0.016308119520545006, + 0.005135830026119947, + -0.0014032480539754033, + -0.007104457356035709, + 0.0046014562249183655, + 0.0004710140929091722, + 0.003100315108895302, + -0.009388316422700882, + 0.0032119546085596085, + 0.009938483126461506, + -0.009581416845321655, + -0.010084557346999645, + 0.009310008026659489, + 0.01557106338441372, + 0.02029534801840782, + 0.011349200271070004, + -0.0022178657818585634, + -0.002641919068992138, + -0.045736163854599, + 0.002470712410286069, + 0.03064621053636074, + 0.009294500574469566, + -0.0012942762114107609, + -0.007096658926457167, + 0.0052526965737342834, + 0.00822160579264164, + 0.0008560595451854169, + 0.025247028097510338, + -0.0016403024783357978, + 0.01248903851956129, + 0.0032358483877032995, + 0.012668969109654427, + 0.0013120218645781279, + -0.002253950573503971, + -0.01013201754540205, + -0.017060765996575356, + 0.011842155829071999, + 0.005403848830610514, + -0.020022455602884293, + 0.007307848427444696, + -0.03807369992136955, + -0.00730355829000473, + 0.0007049639243632555, + 0.0032013377640396357, + -0.009338287636637688, + 0.0025105897802859545, + -0.009161504916846752, + -0.012491447851061821, + 0.002364708576351404, + -0.010111733339726925, + 0.005454837344586849, + 0.006266743876039982, + 0.01636280119419098, + -0.016294309869408607, + -0.0044133588671684265, + -0.014962323941290379, + -0.008870185352861881, + 0.014736714772880077, + 0.0038876424077898264, + 0.008526645600795746, + 0.042528025805950165, + 0.002731433603912592, + -0.004984288010746241, + 0.005537551362067461, + 0.0354524664580822, + 0.012267043814063072, + -0.0028312993235886097, + -0.00044182344572618604, + -0.024747682735323906, + 0.024629823863506317, + 0.0052917334251105785, + -0.002672692062333226, + -0.008202794939279556, + 0.0006212785374373198, + 0.011899827048182487, + -0.023728283122181892, + -0.01087964978069067, + -0.021275291219353676, + 0.00043099423055537045, + 0.013800475746393204, + 0.009115996770560741, + 0.0069221011362969875, + 0.001226106658577919, + -0.007415503729134798, + -0.0020357880275696516, + 0.01708490028977394, + -0.006135620642453432, + 0.02421005256474018, + 0.014490854926407337, + 0.00023314148711506277, + 0.004609243478626013, + -0.00933247059583664, + -0.00861369352787733, + 0.0025437779258936644, + 0.0005820234073325992, + -0.04062329977750778, + -0.002697901800274849, + 0.008210469037294388, + -0.00773667311295867, + 7.695368549320847e-05, + -0.003744421759620309, + 0.009995903819799423, + 0.004889592062681913, + -0.0007377701695077121, + -0.012057327665388584, + -0.00764756603166461, + -0.010358184576034546, + -0.014070000499486923, + -0.011892504058778286, + -0.009788496419787407, + 0.0029011722654104233, + 0.01203965488821268, + 0.003815610660240054, + -0.012949190102517605, + 0.036824584007263184, + 0.007117074448615313, + -0.010176807641983032, + -0.01144375279545784, + 0.0025886092334985733, + -0.053021855652332306, + -0.01149990875273943, + 0.006548520177602768, + 0.0022862565238028765, + 0.0242016464471817, + 0.0014802966034039855, + -0.0006126268999651074, + -0.06043069809675217, + -0.011218064464628696, + 0.014280767180025578, + -0.007191805634647608, + -0.009919715113937855, + 0.0019143279641866684, + 0.014105012640357018, + -0.00704673258587718, + 0.0034539438784122467, + 0.0069706030189991, + 0.009173104539513588, + -0.0008966270252130926, + 0.0069286213256418705, + -0.00011027052096324041, + 0.004392649047076702, + -0.013360058888792992, + -0.012984026223421097, + 0.010130802169442177, + -0.006149756722152233, + 0.002045864937826991, + -0.0008862034301273525, + -0.004439760465174913, + -0.004992334172129631, + -0.0016479671467095613, + 0.012985482811927795, + 0.006874602288007736, + -0.004246280062943697, + 0.0019500983180478215, + 0.012026789598166943, + -0.0005335169844329357, + -0.0018221198115497828, + -0.008499396964907646, + 0.009385988116264343, + -0.010439582169055939, + -0.009499708190560341, + 0.017222458496689796, + -0.007360205054283142, + -0.005852916743606329, + -0.00984440091997385, + 0.005159153137356043, + -0.0010415903525426984, + 0.00820072926580906, + -0.009413654915988445, + -0.018987851217389107, + -0.023775281384587288, + 0.0028023715130984783, + 0.004097746219485998, + -0.01786002330482006, + -0.00580039294436574, + -0.008427065797150135, + -0.008675826713442802, + 0.013378137722611427, + 0.013195930048823357, + 0.008672364056110382, + -0.006728934124112129, + -0.005961569491773844, + 0.012577061541378498, + 0.0021427744068205357, + 0.005150820128619671, + -0.0003691804886329919, + 0.009026861749589443, + 0.004914242308586836, + -0.016532795503735542, + -0.01015367079526186, + -0.011084244586527348, + -0.017500735819339752, + -0.008232529275119305, + -0.013406303711235523, + -0.0034155792091041803, + -0.010945632122457027, + -0.011598195880651474, + -0.006308605894446373, + -0.02007303386926651, + 0.007299202959984541, + 0.013038336299359798, + 0.0060787927359342575, + 0.0038889714051038027, + -0.011335679329931736, + 0.011831838637590408, + 0.0150454081594944, + 0.015115407295525074, + 0.004686687607318163, + 0.0026351267006248236, + -0.006928565446287394, + -0.0046250177547335625, + 0.011725573800504208, + 0.04189165309071541, + 0.01105706300586462, + -0.0001700763968983665, + 0.01953107863664627, + 0.0217658169567585, + 0.016883287578821182, + -0.009627943858504295, + -0.008074305951595306, + -0.012295828200876713, + 0.0003571372071746737, + -0.004674805793911219, + 0.006541992072016001, + -0.017784642055630684, + 0.005270385183393955, + 0.004677904769778252, + -0.07650487869977951, + 0.004011258948594332, + -0.0025510929990559816, + -0.0030971658416092396, + -0.00960400141775608, + -0.0071830591186881065, + -0.011783838272094727, + -0.004683684092015028, + -0.0077178687788546085, + 0.006084447726607323, + -0.0073542422614991665, + 0.002725352067500353, + -0.012878295965492725, + 0.03184651955962181, + 0.010843307711184025, + 0.02114497497677803, + 0.0011823284439742565, + -0.0026880225632339716, + 0.029419781640172005, + 0.0030897536780685186, + -0.006919583305716515, + 0.022221442312002182, + -0.009795092977583408, + 0.031940288841724396, + 0.01161898858845234, + 0.0034101693890988827, + -0.009828944690525532, + -0.014148874208331108, + -0.00451164785772562, + -0.0014251609100028872, + 0.00618181424215436, + -0.044238653033971786, + 0.007678232155740261, + -0.01835067756474018, + 0.015239840373396873, + -0.0024383252020925283, + 0.001930577796883881, + -0.013843930326402187, + -0.00038035112083889544, + 0.005787909962236881, + -0.02180146984755993, + 0.009435798041522503, + -0.004987276159226894, + -0.003475375007838011, + 0.017291396856307983, + 0.008159578777849674, + 0.008546239696443081, + -0.02398771047592163, + 0.002114882692694664, + -0.01712627336382866, + -0.0006786078447476029, + -0.008836265653371811, + -0.02810373157262802, + 0.02585422433912754, + -0.012094826437532902, + 0.011612210422754288, + 0.005789251998066902, + 0.03238733857870102, + -0.00624237023293972, + 0.009006697684526443, + -0.005048671737313271, + 0.008006135933101177, + 0.01336123701184988, + 0.0016665251459926367, + -0.03565363958477974, + -0.008858132176101208, + -0.004422353580594063, + 0.0010884309886023402, + -0.001052942592650652, + 0.005514208227396011, + -0.027543019503355026, + -0.0023420287761837244, + -0.003375798463821411, + 0.007698458153754473, + -0.014541234821081161, + 6.846916949143633e-05, + -0.006457672454416752, + 0.00296737696044147, + -0.0032271239906549454, + 0.02153719961643219, + 0.013465072959661484, + -0.0005590367363765836, + 0.010143185965716839, + 0.002306838519871235, + 0.008296964690089226, + 0.01574072241783142, + 0.00339885544963181, + 0.00833522155880928, + -0.004488661419600248, + -0.010530601255595684, + -0.0040268986485898495, + 0.011591329239308834, + 0.006264451891183853, + -0.00111471361014992, + 0.005827341694384813, + 0.05127468705177307, + 0.006647341884672642, + -0.004390582907944918, + 0.001383983762934804, + 0.009258154779672623, + 0.0015191204147413373, + -0.0033568183425813913, + -0.007020276505500078, + -0.008937249891459942, + -0.003962211776524782, + -0.008970720693469048, + 0.00021063094027340412, + -0.009413705207407475, + 0.010555597022175789, + 0.004715491086244583, + 0.011693712323904037, + 0.017681825906038284, + 0.003012859495356679, + -0.004900491796433926, + 0.06108605116605759, + -0.0222302358597517, + -0.0013370250817388296, + 0.00339175621047616, + 0.008436659350991249, + 0.014763765037059784, + -0.001759362523443997, + 0.0056074452586472034, + -0.010613358579576015, + 0.0024631477426737547, + -0.008934471756219864, + 0.0015854398952797055, + -0.003376286942511797, + 0.01935071125626564, + 0.007474640384316444, + -0.0008672511321492493, + -0.012399033643305302, + -0.004837283864617348, + -0.0018707835115492344, + 0.002593820448964834, + 0.0018041046569123864, + -0.006850874051451683, + -0.01440757978707552, + 0.007525227032601833, + -0.015457917004823685, + -0.008485998027026653, + -0.00967449601739645, + 0.006997451186180115, + 0.002880191896110773, + -0.0043301829136908054, + -0.021137233823537827, + 0.024607963860034943, + -0.0020750609692186117, + 0.0003823535516858101, + 0.0005413822364062071, + 0.013772426173090935, + 0.007792157586663961, + -0.007126344367861748, + -0.005541848484426737, + -0.05153050273656845, + -0.00983977410942316, + 0.012659239582717419, + 0.011965288780629635, + 0.011823778972029686, + -0.013881409540772438, + -0.01279484760016203, + -6.664797547273338e-05, + -0.009490352123975754, + -0.008322925306856632, + -0.01734974980354309, + -0.014392671175301075, + -0.002203780459240079, + -0.0030685625970363617, + 0.00017804068920668215, + 0.006264375522732735, + -0.004019581712782383, + -0.0089482506737113, + -0.010503607802093029, + -0.002355708507820964, + -0.03372662141919136, + -0.0023808139376342297, + 0.007523847743868828, + -0.006228943355381489, + -0.03623500466346741, + -0.007659154944121838, + 0.008731098845601082, + -0.047245580703020096, + -0.0044972896575927734, + 0.011458508670330048, + 0.02169829048216343, + -0.012014788575470448, + -0.0018905773758888245, + 0.0018584051867946982, + 0.004844297654926777, + 0.010317574255168438, + 0.00920410081744194, + 0.0025130559224635363, + 0.001374357263557613, + -0.014590900391340256, + -0.008118600584566593, + 3.6444002034841105e-05, + 0.010968656279146671, + 0.0032146398443728685, + -0.015895863994956017, + -0.006637581158429384, + -0.010719118639826775, + -0.016979418694972992, + 0.0027175575960427523, + -0.05214378610253334, + 0.0046760328114032745, + -0.014386977069079876, + 0.013572280295193195, + 0.03068985790014267, + 0.005536533426493406, + -0.012620917521417141, + 0.0049760350957512856, + 0.004164647776633501, + 0.013793806545436382, + 0.013714976608753204, + -0.03295118734240532, + -0.018662037327885628, + -0.017134102061390877, + -0.010601773858070374, + 0.0088654775172472, + -0.014457213692367077, + -0.0108301667496562, + -0.03156565874814987, + 9.826897439779714e-05, + 6.053517427062616e-05, + 0.0010161694372072816, + -0.023779546841979027, + -0.01741381175816059, + 0.026165910065174103, + -0.013398119248449802, + -0.007124623283743858, + -0.01832759566605091, + 0.004567402880638838, + -0.008223911747336388, + -0.016844775527715683, + -0.001207746914587915, + -0.010214291512966156, + 0.016646532341837883, + -0.0030147151555866003, + 0.009996414184570312, + 0.001954000676050782, + 0.016712090000510216, + -0.005350340623408556, + 0.0032577787060290575, + -0.0050196573138237, + 0.006984293926507235, + 0.0018551683751866221, + 0.007669272366911173, + 0.012868992984294891, + -0.01255822740495205, + 0.004377720411866903, + 0.004341767635196447, + -0.016537034884095192, + -0.00016095292812678963, + 0.01190805621445179, + 0.003419153392314911, + 0.0036668474785983562, + -0.01850881241261959, + 0.018124675378203392, + 0.022177590057253838, + -0.001656786655075848, + 0.006837011314928532, + 0.00800231657922268, + 0.06105383485555649, + -0.010675067082047462, + -0.010715455748140812, + -0.017461029812693596, + 0.006558117922395468, + 0.008400016464293003, + -0.0028321431018412113, + 0.021827470511198044, + -0.006235044449567795, + -0.02332102507352829, + -0.00685584731400013, + 0.057647425681352615, + 0.011359594762325287, + 0.01313047856092453, + -0.003182740416377783, + 0.14561642706394196, + -0.0254509337246418, + -0.016494784504175186, + 0.0027501063887029886, + -0.0022776855621486902, + -0.0013512274017557502, + -0.006167314015328884, + 0.016969189047813416, + 0.004373215138912201, + 0.0006751304026693106, + -0.046781543642282486, + -0.007950594648718834, + 0.006640591658651829, + 0.013584231026470661, + -0.005923457909375429, + -0.006171594373881817, + -0.0030837031081318855, + 0.03852933645248413, + 0.006747070234268904, + -0.044720206409692764, + 0.009974860586225986, + -0.005704175680875778, + 0.023113807663321495, + 0.011085877195000648, + 0.013182500377297401, + -0.002506517805159092, + -0.003856430761516094, + 0.009831858798861504, + 0.03350146487355232, + -0.024445582181215286, + 0.0021237730979919434, + -0.00197273469530046, + 0.001097145606763661, + -0.005650658626109362, + -0.0042050499469041824, + -0.005038469564169645, + 0.00016322462761308998, + -0.007035752758383751, + -0.0025159018114209175, + -0.05673004314303398, + 0.009608843363821507, + 0.003205427899956703, + 0.0032712246757000685, + -0.003858715295791626, + 0.0005406614509411156, + 0.012096027843654156, + 0.011084585450589657, + 0.0017909331945702434, + 0.012862465344369411, + -0.0052211228758096695, + 0.008022816851735115, + 0.004679534118622541, + -0.014189483597874641, + -0.0008687159861437976, + 0.014294403605163097, + 0.003401967464014888, + -0.006403002887964249, + -0.009531117975711823, + -0.001909530139528215, + -0.0027968224603682756, + -0.0031299900729209185, + 0.013527313247323036, + -0.006049199961125851, + 0.005980504211038351, + -0.0156872421503067, + -0.013212881051003933, + 0.004524533636868, + -0.00624469667673111, + -0.0038584782741963863, + -0.012158344499766827, + -0.012479891069233418, + -0.0010317376581951976, + 0.003983149304986, + -0.08178891986608505, + -0.004887601360678673, + 0.015635337680578232, + 0.00287707825191319, + -0.005318227224051952, + -0.009476996026933193, + 0.017000563442707062, + 0.003609553910791874, + -0.006622792221605778, + 0.011640640906989574, + 0.0015604376094415784, + 0.002008502371609211, + 0.009556647390127182, + -0.007457606494426727, + -0.011338828131556511, + 0.01240671519190073, + -0.007235909812152386, + -0.0035046259872615337, + -0.025391489267349243, + -0.0038497757632285357, + -0.005614022258669138, + -0.05266450345516205, + 0.016649827361106873, + 0.004353775177150965, + 0.0018613231368362904, + 0.004704075399786234, + 0.002102125668898225, + 0.025860222056508064, + 0.0016498304903507233, + -0.019512884318828583, + 0.003971484024077654, + 0.01988057605922222, + -0.0022812201641499996, + 0.0019932223949581385, + 0.001653802115470171, + -0.00014409478171728551, + 0.0031609348952770233, + 0.007678871043026447, + 0.015011771582067013, + 0.0007460673805326223, + -0.005165659822523594, + -0.059520184993743896, + 0.0007313510286621749, + 0.005915504414588213, + 0.010454652830958366, + -0.00575400423258543, + 0.00838505756109953, + 0.009030081331729889, + 0.00032330816611647606, + -0.0005635293200612068, + 0.0033466701861470938, + 0.0031258552335202694, + -0.01206840667873621, + 0.00821436382830143, + 0.008702792227268219, + 0.008641316555440426, + 0.008920534513890743, + -0.006844623479992151, + -0.006937272381037474, + -0.021019738167524338, + 0.00016899073671083897, + -0.006808487232774496, + 0.018939051777124405, + -0.012511763721704483, + 0.0017812082078307867, + 0.010066915303468704, + 0.010317645035684109, + -0.0020817674230784178, + 0.004773561842739582, + -0.0006700413068756461, + -0.005859067663550377, + -0.006363001652061939, + -0.00391740258783102, + -0.005974666215479374, + 0.014307181350886822, + 0.021013421937823296, + -0.01583489589393139, + -0.016899187117815018, + -0.013805503956973553, + -0.000689238659106195, + 0.0024348623119294643, + 0.012351296842098236, + 0.006505819037556648, + 0.017864452674984932, + 0.013437609188258648, + -0.005933778360486031, + 0.003076056716963649, + 0.005258611869066954, + -0.004680444952100515, + -0.0024210098199546337, + 0.0030153365805745125, + -0.00319559033960104, + -0.011556344106793404, + 0.01934647187590599, + 0.032356344163417816, + 0.002157471375539899, + -0.0040307361632585526, + -0.011726588942110538, + -0.018058370798826218, + -0.014011053368449211, + -0.004028239753097296, + 0.008488822728395462, + 0.006734438706189394, + -0.004863381385803223, + -0.0007035552407614887, + 0.010587728582322598, + -0.006356354802846909, + 0.00982714630663395, + 0.007414711639285088, + 0.009542775340378284, + 0.06559613347053528, + -0.001529080793261528, + -0.028878090903162956, + 0.007758074440062046, + -0.007061521522700787, + -0.01308938767760992, + 0.0046140337362885475, + 0.008921986445784569, + -0.013200059533119202, + 0.0010119916405528784, + 0.0322834737598896, + -0.0006598549080081284, + -0.003182474058121443, + -0.0009082461474463344, + 3.15751058224123e-05, + -0.004622122272849083, + 0.0038913143798708916, + 0.03192823380231857, + 0.0008123411680571735, + -0.001404765760526061, + -0.06944315880537033, + -0.006703733000904322, + -0.009648114442825317, + 0.008295535109937191, + 0.005008244421333075, + -0.00944554153829813, + 0.0035822836216539145, + -0.029584849253296852, + -0.008200329728424549, + 0.006040513981133699, + -0.008443238213658333, + -0.015479939058423042, + -0.00858156755566597, + -0.014971774071455002, + 0.003420613007619977 + ] + }, + "sad": { + "count": 2, + "norm": 23.456684112548828, + "raw_vector": [ + -0.20501112937927246, + -0.04827068746089935, + -0.13278663158416748, + -0.07340299338102341, + -0.2845379114151001, + 0.16258399188518524, + -0.03576868027448654, + 0.2102612853050232, + -0.07161921262741089, + 0.3059619665145874, + 0.18034356832504272, + 0.45694172382354736, + 0.06863738596439362, + 0.21979889273643494, + -0.24798399209976196, + 0.028408125042915344, + 0.06082974001765251, + -0.20299281179904938, + -0.34854021668434143, + 0.3225105404853821, + 0.11436295509338379, + -0.012046457268297672, + 0.12810713052749634, + -0.4094785749912262, + 0.025795958936214447, + 0.16052700579166412, + -1.198310136795044, + -0.018736455589532852, + -0.018784428015351295, + -0.16581225395202637, + -0.1176789179444313, + -0.744814395904541, + 0.3600875735282898, + 0.27648645639419556, + 0.030278317630290985, + 0.0330488383769989, + 0.08469492197036743, + -0.3883620500564575, + -0.2009871006011963, + -0.055929288268089294, + -0.49123814702033997, + 0.10196219384670258, + -0.0348147451877594, + -0.003901869058609009, + 0.20242050290107727, + -0.06858436018228531, + 0.0023877634666860104, + 0.1461428552865982, + -0.14622721076011658, + -0.016256265342235565, + 0.046295177191495895, + -0.4197688400745392, + 0.25467509031295776, + -0.05106063187122345, + 0.8287142515182495, + -0.15751157701015472, + 0.1785644143819809, + 0.005089890211820602, + -0.6906075477600098, + 0.24882449209690094, + 0.1611505150794983, + -0.3108488917350769, + 0.4946172535419464, + -0.1192106083035469, + 0.26552248001098633, + -0.20224811136722565, + 0.005143467336893082, + 0.4128188490867615, + 1.2809394598007202, + 0.2434873878955841, + 0.23008885979652405, + -0.05072282999753952, + -0.10757863521575928, + -0.2639315128326416, + 0.7728264331817627, + 0.4149637222290039, + -0.2855685353279114, + -0.2032434493303299, + -0.06312384456396103, + -0.16768109798431396, + 0.7525904178619385, + -0.17163191735744476, + 0.19272208213806152, + -0.15143467485904694, + 0.3116518259048462, + 0.020243987441062927, + 0.04176752641797066, + 0.15265333652496338, + 0.004366599023342133, + -0.1814839243888855, + -0.40498602390289307, + -0.337014377117157, + -0.22211895883083344, + 0.9171202182769775, + -0.06863602995872498, + -1.2432665824890137, + -0.0053827762603759766, + -0.39978522062301636, + 0.25770866870880127, + -0.0016046017408370972, + -0.11828441172838211, + -0.11713776737451553, + -0.3451298475265503, + -0.7015256881713867, + -0.021785199642181396, + -0.2731482684612274, + -0.045768193900585175, + 0.04008527100086212, + -0.21079857647418976, + -0.007994383573532104, + 0.13688290119171143, + 0.10625917464494705, + -0.2831679582595825, + 0.2793363630771637, + 0.1552239954471588, + 0.0061161816120147705, + 0.08249425143003464, + -0.5674718022346497, + -0.2814480662345886, + 0.18995045125484467, + 0.2712332308292389, + 0.2931807041168213, + 0.5551297068595886, + -0.27179065346717834, + -0.01740444451570511, + -0.40364864468574524, + 0.3292849659919739, + -0.2898414433002472, + 0.06238150596618652, + 0.1770487129688263, + 0.6376319527626038, + -0.0320642814040184, + 0.06301257014274597, + 0.0825691968202591, + 1.0142509937286377, + 1.0168485641479492, + 0.05615513026714325, + -0.06340695917606354, + -0.23968392610549927, + 0.3345473110675812, + 0.2326795756816864, + 0.2808043956756592, + -0.8807342648506165, + 0.32056742906570435, + 0.20977510511875153, + 0.1753356158733368, + 0.14885416626930237, + 0.20990338921546936, + -0.1710490882396698, + 0.46119970083236694, + 0.03815711289644241, + -0.09961413592100143, + 0.19575068354606628, + -0.4236794412136078, + 0.3361886143684387, + 0.35512906312942505, + 0.005551889538764954, + -0.22918596863746643, + 0.022975003346800804, + 0.3461208939552307, + -0.12914633750915527, + -0.1541460007429123, + -0.026373080909252167, + 0.17788968980312347, + 0.22326421737670898, + -0.06040491163730621, + -0.2618911862373352, + -0.769168496131897, + -0.1271640658378601, + 0.3242504596710205, + 0.6722795367240906, + -0.38824141025543213, + -0.5766780376434326, + -0.32759302854537964, + 0.03974355012178421, + -0.6596859693527222, + -0.1277908980846405, + -0.31239691376686096, + 0.22474126517772675, + -0.16511443257331848, + 0.4766159653663635, + 0.3138878047466278, + -0.04826975241303444, + 0.029934808611869812, + 0.05785498768091202, + 0.14411410689353943, + 0.20053890347480774, + 0.03706095367670059, + 0.14533624053001404, + -0.15152893960475922, + 0.29874080419540405, + 0.43183374404907227, + 0.9420625567436218, + 0.08223361521959305, + -0.02284415066242218, + -0.07999575138092041, + -1.5343341827392578, + -0.06484076380729675, + -0.2813624143600464, + 0.37770184874534607, + 0.9314046502113342, + -0.09793546795845032, + -0.14075002074241638, + -0.11751095950603485, + 0.15774652361869812, + 0.03005933202803135, + 0.03314279392361641, + 1.3007723093032837, + 0.49481892585754395, + 0.04592326283454895, + 0.020492099225521088, + -0.09705523401498795, + -0.06959237903356552, + -0.2729959487915039, + -0.1098557561635971, + 0.4005969166755676, + 0.13940784335136414, + 0.07584118098020554, + 0.7203409075737, + 0.2694949507713318, + -0.015041034668684006, + -0.13612288236618042, + 0.13289235532283783, + -0.019615907222032547, + 1.1391037702560425, + -0.480294406414032, + -0.351223886013031, + -0.19569624960422516, + 0.038663074374198914, + 0.7144817113876343, + -0.005168452858924866, + 0.007086105179041624, + 0.016805410385131836, + -1.0698480606079102, + 0.28324878215789795, + -0.0501268170773983, + -0.080216184258461, + -0.2594181299209595, + -0.04193301126360893, + 0.010158296674489975, + -0.13825398683547974, + -0.5104745030403137, + -0.11807012557983398, + -2.26820707321167, + 0.13208745419979095, + 0.2943604290485382, + -0.3361962139606476, + -0.06483271718025208, + 0.6633838415145874, + 0.058031968772411346, + -0.26385363936424255, + -0.5466517210006714, + -0.0815499797463417, + 0.19059602916240692, + -0.06324448436498642, + -0.10381440073251724, + 0.2550370693206787, + -0.22629117965698242, + 0.15679079294204712, + 0.04749279469251633, + 0.18522939085960388, + -0.005245190113782883, + 0.24627113342285156, + 0.17531134188175201, + 0.11550813913345337, + 0.11752192676067352, + -0.0494677796959877, + -0.1661425679922104, + 0.410425066947937, + 0.14071282744407654, + -0.5837262868881226, + 0.1518877148628235, + -0.33735811710357666, + -0.2505667209625244, + 0.11466194689273834, + -0.32372933626174927, + -0.13722139596939087, + 0.1599542498588562, + 0.15438635647296906, + 0.053499847650527954, + -0.01067918911576271, + 0.20132029056549072, + 0.8126060366630554, + -0.1259438395500183, + 0.2325683981180191, + 0.017749961465597153, + -0.39631107449531555, + 0.5367861986160278, + -0.0007740799337625504, + 0.0925636887550354, + -0.02875371277332306, + -0.42316266894340515, + -1.0618789196014404, + -0.4481549561023712, + 0.2580926716327667, + 0.1407429575920105, + -0.08698467910289764, + 0.07958672940731049, + 0.26132816076278687, + -0.01502196304500103, + 0.2400202602148056, + -0.1061260849237442, + 0.2411283701658249, + 0.2669667899608612, + -0.01509757712483406, + 0.14643418788909912, + -0.5487987399101257, + -0.21856452524662018, + 0.31288838386535645, + -0.310743123292923, + -0.3552250266075134, + -0.0362219512462616, + 0.20562957227230072, + -0.12274806201457977, + -0.0633762776851654, + 0.32334673404693604, + 0.1029205471277237, + 0.26321935653686523, + 0.04587341845035553, + 0.4730973541736603, + -0.13325145840644836, + 0.14459675550460815, + -0.09383732080459595, + 0.19664490222930908, + 0.3880254030227661, + -0.028504706919193268, + 0.1319519579410553, + -0.4559035003185272, + 0.06005966663360596, + 0.1866871416568756, + -0.4185120761394501, + -0.2341410219669342, + 0.14154469966888428, + 0.1967162787914276, + -0.15866465866565704, + 0.34411388635635376, + 0.13462382555007935, + -0.019126757979393005, + -0.44276317954063416, + 0.3971330523490906, + 0.19460400938987732, + 0.21696138381958008, + 0.2390710413455963, + -1.4548799991607666, + 0.3344307541847229, + -0.12382172793149948, + -0.18456922471523285, + -0.21365706622600555, + -0.24159447848796844, + -0.018575472757220268, + -0.2564331889152527, + 0.27830737829208374, + 0.37468698620796204, + 0.029721371829509735, + -0.07261811196804047, + -0.021436799317598343, + 0.24097135663032532, + -0.41028159856796265, + 0.19746169447898865, + -0.24303852021694183, + -0.006933145225048065, + -1.0653856992721558, + -0.14335115253925323, + -0.3041582703590393, + 0.12713393568992615, + 0.12312053143978119, + 0.20173810422420502, + -0.07574531435966492, + 0.8914304971694946, + -0.03438463807106018, + 0.007771126925945282, + 0.12323984503746033, + -0.2016172558069229, + 0.9610595703125, + -0.04785711318254471, + 0.02068709395825863, + 0.2450389862060547, + -0.17752370238304138, + 0.2466612309217453, + 0.039148733019828796, + -0.02314305305480957, + -0.41977769136428833, + 1.6065033674240112, + 0.26908451318740845, + -0.28003233671188354, + -0.009081453084945679, + 0.055331386625766754, + -0.049803003668785095, + -0.26905375719070435, + -0.4838578999042511, + 0.19283896684646606, + -0.4172284007072449, + 0.33513328433036804, + -0.057277314364910126, + -0.20839975774288177, + -0.39416563510894775, + -0.17774522304534912, + 0.4201124906539917, + -0.03716360032558441, + 0.015861984342336655, + -0.13277021050453186, + 0.22622525691986084, + -0.07553987205028534, + 0.25030186772346497, + 0.21393398940563202, + 0.1428859531879425, + 0.17046569287776947, + 0.11092923581600189, + 0.01438169926404953, + 0.27688542008399963, + -0.25638723373413086, + 0.25237423181533813, + 0.3796898424625397, + -0.32792234420776367, + -0.3685463070869446, + 0.06470364332199097, + 0.029983818531036377, + -0.17765262722969055, + -0.835993766784668, + -0.4595470428466797, + -0.040643103420734406, + -0.3554738759994507, + 0.9634041786193848, + -0.1761716604232788, + 0.11120845377445221, + 0.046821556985378265, + -0.16962841153144836, + -0.05957581102848053, + -0.09996932744979858, + 0.40212520956993103, + -1.279131293296814, + -0.04938816651701927, + 0.8873477578163147, + 0.097498819231987, + -0.30862969160079956, + 0.13282087445259094, + -0.07484112679958344, + 0.22034700214862823, + 0.2189776450395584, + 0.1487218290567398, + -0.4059309959411621, + -0.01935536414384842, + -0.07179301977157593, + -0.39417415857315063, + -0.26177382469177246, + 0.37164461612701416, + 0.2514227032661438, + -0.3960639238357544, + -0.36513829231262207, + 0.28536471724510193, + -0.028741374611854553, + 0.16899120807647705, + 0.15252771973609924, + 0.32531440258026123, + 0.19324657320976257, + -0.27380913496017456, + 0.05502597242593765, + 0.06629018485546112, + -0.48036670684814453, + 0.13948948681354523, + 0.21446986496448517, + -0.07601205259561539, + -0.6085182428359985, + -0.39198037981987, + 0.41201773285865784, + 0.2979063391685486, + 0.2441510707139969, + 0.2923993468284607, + -0.04189750552177429, + 0.8321855068206787, + 0.18616646528244019, + -0.511153519153595, + -0.11992236226797104, + 0.09336642175912857, + -0.747836172580719, + 0.09608768671751022, + 0.09545762836933136, + -0.08883558213710785, + -0.09628374129533768, + -0.07548356801271439, + 0.0912589505314827, + 0.004977744072675705, + 0.09387819468975067, + 0.05409827083349228, + -0.17659592628479004, + 0.1126873642206192, + -0.9093859195709229, + 0.4376339912414551, + -0.28635722398757935, + -0.11712399125099182, + 0.13602781295776367, + -0.12843108177185059, + 0.3552393317222595, + 0.1536623239517212, + 0.0579315647482872, + 0.2222149819135666, + -0.3650352954864502, + 0.08045895397663116, + 0.06331203877925873, + 0.01202719658613205, + 0.25856685638427734, + -0.25768131017684937, + -0.10228180885314941, + -0.26216956973075867, + 0.09755715727806091, + -0.4956434369087219, + 0.15821966528892517, + 0.051579080522060394, + -0.06551922857761383, + 0.11828432977199554, + -0.10202059149742126, + -0.47620242834091187, + 0.5452821254730225, + -0.2296428382396698, + -0.25111567974090576, + 0.12898609042167664, + -0.17359626293182373, + -0.019939780235290527, + -0.054703667759895325, + -0.050668299198150635, + 0.18341483175754547, + -0.04005098342895508, + -0.2905479371547699, + 1.1617518663406372, + 0.3209540545940399, + -0.31579557061195374, + 0.12868531048297882, + 0.01318344846367836, + -0.16775277256965637, + -0.16327685117721558, + -0.07276635617017746, + 0.00983961671590805, + 0.2997997999191284, + -0.2935003638267517, + 0.13711212575435638, + 0.03317387402057648, + -0.2926108241081238, + 0.4638410210609436, + -0.27744969725608826, + -0.015386726707220078, + -0.14111080765724182, + -0.09508121758699417, + 0.3203008770942688, + -0.4616464078426361, + 0.17168717086315155, + -0.19770583510398865, + -1.4360744953155518, + -0.5524926781654358, + 0.48072367906570435, + 0.09337594360113144, + -0.3478778600692749, + -0.6430853605270386, + 1.909662127494812, + -0.1600566804409027, + 0.5767982006072998, + 0.10391475260257721, + 0.3857008218765259, + -0.1991157978773117, + 0.08061021566390991, + 0.3754962086677551, + -0.681502103805542, + -0.05204208195209503, + -0.044881969690322876, + -0.28349927067756653, + 0.11659666895866394, + -0.3513908386230469, + -0.17871634662151337, + 0.22458891570568085, + 0.16380161046981812, + -0.5340535640716553, + 0.3164132535457611, + 0.0643351748585701, + -0.2557799220085144, + 0.018309742212295532, + 0.053149573504924774, + -0.1114746630191803, + -0.32874274253845215, + -0.36069971323013306, + -0.3246898949146271, + -0.2918247580528259, + 0.3012739419937134, + 0.05445787310600281, + 0.07682463526725769, + 0.051738664507865906, + 0.21063783764839172, + -0.0784129798412323, + -0.05787578597664833, + 0.28292137384414673, + 0.09398634731769562, + -0.026277394965291023, + 0.1269504725933075, + -0.010951608419418335, + 0.6233943700790405, + 0.012554068118333817, + -0.383584588766098, + 0.07108868658542633, + -0.1515088975429535, + -0.04724665358662605, + 0.4385305345058441, + -0.11423993110656738, + 0.07949098944664001, + 0.25115644931793213, + 0.37096795439720154, + -0.1053505539894104, + 0.11352206766605377, + 0.004257984459400177, + -0.16073788702487946, + 0.19622331857681274, + 0.021891511976718903, + -0.5703060030937195, + -0.33227312564849854, + -0.6852816343307495, + 0.043141528964042664, + 0.1465865671634674, + 0.04591740667819977, + -0.48898255825042725, + 0.22229482233524323, + 0.02679351717233658, + -0.14510738849639893, + 0.18537311255931854, + 0.1396082192659378, + -0.2858940064907074, + -0.14391417801380157, + 0.1570734679698944, + 0.17563791573047638, + -0.008996803313493729, + 0.5593755841255188, + -0.18630503118038177, + 0.4638374447822571, + -0.07179447263479233, + -0.02469933032989502, + 0.00703854113817215, + -0.25924351811408997, + -0.1809760481119156, + 0.3839520812034607, + -0.016972720623016357, + 0.0038633905351161957, + 0.11404046416282654, + -0.0393403023481369, + -0.10919413715600967, + -0.027384139597415924, + 0.22061499953269958, + 0.017588719725608826, + -0.5373998880386353, + 1.2249239683151245, + -0.16444247961044312, + -0.2636427581310272, + 0.7416896224021912, + 0.5545253753662109, + -0.3635285794734955, + -0.08089801669120789, + 0.05546288937330246, + -0.2849888801574707, + 0.050371430814266205, + 0.13152512907981873, + 0.017047598958015442, + -0.08045250177383423, + 0.14370858669281006, + 0.9475034475326538, + 0.6285727024078369, + 0.19550056755542755, + -0.3896080553531647, + -0.11307056993246078, + -0.041027817875146866, + -0.1249416172504425, + -1.3772555589675903, + 0.23982492089271545, + -0.3417426347732544, + 0.19854594767093658, + 0.04863155633211136, + 0.053169794380664825, + 0.14846664667129517, + -0.08439109474420547, + 0.11914453655481339, + -0.1849251389503479, + -0.34707576036453247, + -0.0695372223854065, + -0.35166552662849426, + -0.4108940064907074, + 0.0831184983253479, + -0.12579303979873657, + -0.5451713800430298, + 0.47756606340408325, + -0.1597798466682434, + 0.2354484498500824, + -0.020625457167625427, + -0.20476266741752625, + 0.1521506905555725, + 0.03726805001497269, + -0.019739888608455658, + 0.04526400566101074, + 0.7001811265945435, + -0.14783060550689697, + -0.218223437666893, + 0.17500023543834686, + -0.2925195097923279, + 0.03508598729968071, + 0.15845637023448944, + -0.11203887313604355, + 0.30234700441360474, + -0.32524198293685913, + -0.24049581587314606, + -0.12929800152778625, + -0.06754706799983978, + 0.7168797254562378, + 0.8260761499404907, + -0.011580321937799454, + 0.1831013262271881, + -0.04060430824756622, + -0.03474318981170654, + -0.052059099078178406, + -0.16318772733211517, + -0.034734949469566345, + 0.07404231280088425, + -0.39045488834381104, + -0.06862729787826538, + 1.6867055892944336, + 0.37746745347976685, + -0.14541275799274445, + -0.05829686298966408, + 0.03942667692899704, + -0.13683255016803741, + 0.08252883702516556, + -0.17668436467647552, + -0.024314895272254944, + 0.9270766377449036, + -0.5206068158149719, + -0.14979848265647888, + 0.043887436389923096, + 0.0754612609744072, + -0.011099323630332947, + -0.3506251871585846, + -0.24366842210292816, + -0.15158508718013763, + 0.13329669833183289, + 0.0038534607738256454, + 1.2751193046569824, + -0.1495988368988037, + 0.17230835556983948, + -0.2102462500333786, + -0.10877440869808197, + 0.03790205717086792, + 0.05695553123950958, + 0.10664040595293045, + -0.20154213905334473, + -0.19052040576934814, + -0.21482568979263306, + -0.6356050372123718, + 0.2633957266807556, + -0.1273382604122162, + -0.054000306874513626, + 0.6642638444900513, + 0.2801581025123596, + -0.25485876202583313, + -7.502548396587372e-05, + 0.23082318902015686, + -0.18711450695991516, + -0.18231292068958282, + -0.17420238256454468, + -0.1553785800933838, + -0.2380361557006836, + -0.27993202209472656, + 0.39418214559555054, + -0.2054619938135147, + -0.10509190708398819, + -0.2144758254289627, + 0.2639472484588623, + -0.08940547704696655, + -0.04795151948928833, + 0.04139389097690582, + 0.1117992103099823, + -0.12711751461029053, + -0.1376635730266571, + 0.35588353872299194, + 0.14309200644493103, + -0.01145828515291214, + 0.4029694199562073, + -1.3747583627700806, + -0.2298143059015274, + -0.5348155498504639, + -0.10691620409488678, + -0.19741851091384888, + -0.0086305420845747, + 0.17941918969154358, + 0.08474114537239075, + -0.035795778036117554, + 0.36445799469947815, + 0.0004892349243164062, + -0.13142579793930054, + 0.018483616411685944, + -0.2366827130317688, + 0.3012241721153259, + -0.38902586698532104, + 0.17919035255908966, + 0.27184227108955383, + 0.18226177990436554, + -0.2653625011444092, + -0.2230699062347412, + 0.6393768787384033, + 0.0491308867931366, + -0.47465312480926514, + -0.06949557363986969, + 0.39223697781562805, + -0.21112170815467834, + 0.1619708240032196, + -0.17321287095546722, + 0.5169572830200195, + 0.5520352125167847, + -0.4026806950569153, + -0.8779698610305786, + -0.4463754892349243, + -0.13447976112365723, + 0.03776651620864868, + 1.1139843463897705, + -0.21819737553596497, + -0.030600130558013916, + 0.23674574494361877, + 0.005344592034816742, + 0.09332036972045898, + -0.2753162980079651, + 0.07488435506820679, + 0.22307461500167847, + -1.0342332124710083, + 0.05956602469086647, + 0.08184085786342621, + -0.47916021943092346, + 0.06504377722740173, + -0.07852178812026978, + 0.2713330388069153, + 0.1496344804763794, + -0.3969273865222931, + -0.10199381411075592, + 0.36241614818573, + 0.43889012932777405, + -0.24806058406829834, + 0.06905032694339752, + 0.022059619426727295, + -0.28193819522857666, + 0.1421915739774704, + 0.09329182654619217, + -0.02330276370048523, + 0.03160402923822403, + 0.41838040947914124, + -0.14605379104614258, + 0.06925944983959198, + 0.06558899581432343, + 0.16853389143943787, + 0.009749382734298706, + 0.14776909351348877, + 0.3278903365135193, + -0.08580785989761353, + -0.6425684094429016, + -0.2573675513267517, + 0.4049784541130066, + 0.013099394738674164, + -0.1591457724571228, + 0.2124480903148651, + 0.08980096876621246, + 0.03010055422782898, + -0.046427324414253235, + -0.3178258240222931, + -0.2827152907848358, + 0.0837395191192627, + 0.005209203809499741, + -0.09856603294610977, + -0.03462514281272888, + -0.04592869430780411, + -0.06439955532550812, + -0.16372397541999817, + -0.17179931700229645, + 0.000640377402305603, + 0.19132718443870544, + -0.3635912239551544, + 0.13811296224594116, + 0.28612300753593445, + -0.1408313810825348, + 1.6930551528930664, + -0.038661591708660126, + 0.03221821039915085, + 0.05914338305592537, + -0.035590413957834244, + 0.19608303904533386, + -0.12236441671848297, + -0.0745905190706253, + 0.5693195462226868, + 0.04158861190080643, + 0.06688197702169418, + 0.3401261568069458, + 1.3596014976501465, + -0.587967038154602, + -0.11846570670604706, + -0.011887680739164352, + 0.20296519994735718, + 0.21213112771511078, + -0.33071649074554443, + 0.05664350092411041, + -0.2654134929180145, + -0.29774296283721924, + -0.44857174158096313, + 0.11537964642047882, + -0.15935727953910828, + -1.3013641834259033, + 0.0332866907119751, + -0.030361607670783997, + -0.11825668066740036, + 0.4785712957382202, + 0.06403328478336334, + -0.1513846069574356, + 0.28986501693725586, + 0.08144418895244598, + -0.1357942521572113, + 0.6642301082611084, + -0.0988534614443779, + -0.03744838386774063, + 0.5768736004829407, + 0.013067137449979782, + -0.5020654201507568, + 0.06694357097148895, + 0.2603994607925415, + 0.06052093952894211, + 0.19056181609630585, + -0.256658136844635, + 0.23907101154327393, + 0.4965975284576416, + -0.12908527255058289, + -0.2797626256942749, + 0.11318308115005493, + -0.1413695216178894, + 0.1238831877708435, + 0.49142348766326904, + -0.13047650456428528, + -0.2768234312534332, + 0.1682562381029129, + -0.2100246250629425, + 0.10406044125556946, + 0.13005922734737396, + 0.05517124384641647, + 0.10343876481056213, + -0.1100742295384407, + 0.40948033332824707, + -0.4987000524997711, + -0.1701173335313797, + 0.3081604242324829, + -0.3348005712032318, + -0.08730266988277435, + -0.46044859290122986, + -0.26786479353904724, + 0.20266538858413696, + 0.11479795724153519, + 0.06768043339252472, + 0.1272883415222168, + -0.34103575348854065, + 0.06666704267263412, + 0.2108011096715927, + -0.052372127771377563, + -0.3107087016105652, + -0.18956327438354492, + 0.02911663055419922, + 0.27205169200897217, + 0.7720267176628113, + -0.2668311595916748, + 0.36406034231185913, + -0.22061589360237122, + -0.2518797218799591, + -0.035097673535346985, + -0.02540891245007515, + 0.051155686378479004, + -0.0854707658290863, + -0.1560940146446228, + -0.053091906011104584, + -0.05778290331363678, + -0.17227987945079803, + 0.3032211661338806, + -0.019818231463432312, + 0.09620842337608337, + 0.2683214843273163, + -0.21061985194683075, + -0.005998849868774414, + 0.09074254333972931, + -0.19821855425834656, + 0.09933993220329285, + 0.040672700852155685, + -1.4632818698883057, + 0.2981475293636322, + 0.16356879472732544, + -0.18509578704833984, + -0.1566607505083084, + -0.7054901719093323, + -0.169486403465271, + -0.7343957424163818, + -0.2586832642555237, + -0.2591544985771179, + -0.1838630735874176, + -0.4831131100654602, + 0.7515368461608887, + -0.23084285855293274, + -0.08733373880386353, + 0.2044227421283722, + -0.06172952800989151, + -0.044043395668268204, + -0.22720280289649963, + -0.42394912242889404, + 0.4751007556915283, + 0.3365030586719513, + -0.19046469032764435, + 0.16483241319656372, + -0.019271448254585266, + 0.6488143801689148, + 0.052825555205345154, + 0.09401924908161163, + 0.18009568750858307, + 0.35281503200531006, + 1.0188322067260742, + 0.27299121022224426, + -0.16209688782691956, + -0.0518667995929718, + -0.10929641127586365, + 0.14867398142814636, + -0.14166057109832764, + 0.37231966853141785, + -0.2285214364528656, + 0.03765277937054634, + 0.05559290945529938, + -0.17722821235656738, + 0.1963028609752655, + 0.10737398266792297, + 0.09074394404888153, + -0.11196443438529968, + -0.0036045387387275696, + 0.02990546077489853, + -0.09453139454126358, + 1.4795559644699097, + -0.2900708317756653, + -0.43889838457107544, + -0.4522363841533661, + 0.29628217220306396, + -0.4996664822101593, + 0.00045003369450569153, + -0.40292009711265564, + -0.4737069606781006, + 0.2088976502418518, + -0.23455503582954407, + -0.2595660090446472, + -0.566213071346283, + 0.13342002034187317, + -0.2752895951271057, + -0.9318963885307312, + -0.037867285311222076, + 0.3321237862110138, + 0.2166217863559723, + -0.22996757924556732, + 0.2998097538948059, + 0.2016933560371399, + 0.23406767845153809, + -0.3833574652671814, + 0.6441695690155029, + -0.5643755197525024, + 0.037534188479185104, + -0.1639241725206375, + 0.16079780459403992, + -1.140708088874817, + -0.11559861898422241, + -0.484421044588089, + -0.18731868267059326, + 0.36021965742111206, + -0.3547525703907013, + 0.19183622300624847, + 1.3537092208862305, + -0.08911921828985214, + 0.12406112998723984, + -0.5377260446548462, + -0.00789666548371315, + -0.14299222826957703, + 0.1257416307926178, + -0.2025468945503235, + 0.2050224393606186, + 0.09234040975570679, + -0.1244395449757576, + -0.14922718703746796, + -0.03525172919034958, + -0.22516947984695435, + 0.15023331344127655, + 0.2541973292827606, + -0.1463923454284668, + 0.11587053537368774, + -0.5036411285400391, + 0.6382921934127808, + 0.0644247829914093, + 0.024737834930419922, + 0.23579949140548706, + 0.022800378501415253, + 0.0745224803686142, + -0.673751711845398, + -0.04783503711223602, + 0.06420984119176865, + -0.094976045191288, + 0.027133651077747345, + -0.10348962992429733, + 0.10418817400932312, + -0.08089558780193329, + -0.015584181062877178, + 0.05882427096366882, + 0.02629297412931919, + 0.12333168089389801, + -0.029944417998194695, + -0.08334262669086456, + -0.12533080577850342, + 0.11015042662620544, + -0.21105827391147614, + -0.12307746708393097, + 0.32814493775367737, + 0.17470020055770874, + -0.41054439544677734, + -0.16869017481803894, + 0.16384342312812805, + -0.26523035764694214, + -0.3054783046245575, + 0.7986634969711304, + -0.16581232845783234, + -0.04628860950469971, + -0.08721417188644409, + -0.0518757700920105, + 0.026281096041202545, + -0.2667614221572876, + 0.15670061111450195, + -0.020838428288698196, + 0.23130498826503754, + -0.29925763607025146, + -0.020857669413089752, + -0.4443010091781616, + -0.03200692683458328, + 0.0718289464712143, + 0.11648375540971756, + 0.2659150958061218, + 0.5173351168632507, + -0.13028068840503693, + 0.19292128086090088, + 0.017091810703277588, + -0.06648567318916321, + -0.38893401622772217, + -0.21791835129261017, + -0.0031586363911628723, + 0.17884895205497742, + 0.11205466836690903, + 0.49295398592948914, + 0.23685826361179352, + 0.04094058647751808, + -0.8268603086471558, + -0.279744029045105, + 0.05523985996842384, + -0.45321983098983765, + 0.004929780960083008, + 0.06994815170764923, + 0.09900861978530884, + -0.0845029279589653, + -0.12083761394023895, + -0.05013678967952728, + -0.3654762804508209, + -0.27839401364326477, + 0.16491778194904327, + -0.2074400931596756, + -0.1847735345363617, + -0.9497494697570801, + 0.5202333927154541, + 0.03929975628852844, + -0.3729565143585205, + 0.16068601608276367, + -0.21361276507377625, + -0.20885024964809418, + 0.18126334249973297, + -0.04206722229719162, + -0.9146919846534729, + 0.015502016060054302, + -0.036695729941129684, + 0.16013798117637634, + -0.16424846649169922, + 0.13958296179771423, + -0.06199656426906586, + -0.24417589604854584, + -0.31571558117866516, + 0.4620319604873657, + 0.4650788903236389, + -0.23824279010295868, + 0.17992599308490753, + -0.1386319398880005, + 0.013517163693904877, + -0.16854357719421387, + -0.8694015741348267, + 0.15272347629070282, + 0.5820658206939697, + 0.1239229217171669, + 0.09448948502540588, + 0.06420261412858963, + 0.0799591988325119, + 0.008220985531806946, + 0.08290307968854904, + 0.04474128037691116, + 0.04823499545454979, + -0.23960138857364655, + -0.3089990019798279, + 0.0987333208322525, + -0.0424107164144516, + 0.10239775478839874, + -0.17953291535377502, + 0.019087787717580795, + 0.29349714517593384, + -0.14920277893543243, + 0.14966212213039398, + 0.16254423558712006, + 0.41671836376190186, + -0.2717350125312805, + 0.03765498101711273, + -0.3070616126060486, + 0.6427324414253235, + 0.31009191274642944, + 0.155954509973526, + -0.043251968920230865, + 0.10095354914665222, + 0.05043187737464905, + 0.31778979301452637, + 0.09435615688562393, + -0.27265745401382446, + -0.585464596748352, + -0.02258472517132759, + 0.0700845792889595, + -0.30703869462013245, + -0.09382516145706177, + -0.27661389112472534, + 0.08165495842695236, + -0.3809276819229126, + 0.09731534123420715, + 0.76568603515625, + -0.07223957031965256, + -0.2220851182937622, + 0.1452769637107849, + 0.057868558913469315, + -0.15992487967014313, + -0.15882903337478638, + -0.08636169135570526, + 1.0070747137069702, + 0.2275516539812088, + 0.12544573843479156, + -0.08930482715368271, + -0.13226863741874695, + -0.05490835756063461, + -0.0715627670288086, + -0.12770801782608032, + -0.04171304404735565, + -0.22424426674842834, + -0.4918888211250305, + -0.28646713495254517, + -0.2561582922935486, + 0.00821775197982788, + -0.08531013131141663, + -0.17626753449440002, + 0.09371642023324966, + 0.4528164267539978, + -0.2141146957874298, + -0.003469333052635193, + -0.33404532074928284, + -0.4286615252494812, + 0.03477729111909866, + 0.30702823400497437, + 0.23461544513702393, + -0.2587999999523163, + 0.2538994252681732, + -0.13778644800186157, + -0.016917571425437927, + -0.1700379103422165, + 0.42837175726890564, + 0.09932601451873779, + -0.5225139856338501, + 0.15463069081306458, + -0.040897250175476074, + -0.2385842204093933, + -0.42398160696029663, + 0.10535125434398651, + 0.11422814428806305, + -0.33505406975746155, + 0.03977953642606735, + 0.3140942454338074, + -0.39832454919815063, + -0.25190111994743347, + -0.03918103128671646, + -0.6669617891311646, + -0.46383553743362427, + 0.4074404537677765, + -1.038914442062378, + 0.08424443006515503, + -0.15116232633590698, + -0.21413186192512512, + -1.340294599533081, + -0.10801996290683746, + 0.2054951786994934, + 0.9438601732254028, + -0.05418648570775986, + 0.007739044725894928, + 0.22497674822807312, + 0.0908605307340622, + -0.45848459005355835, + 0.15217053890228271, + -0.34105634689331055, + 0.18139490485191345, + 0.01003759354352951, + 0.10719738900661469, + -0.2584540545940399, + 0.17355480790138245, + 1.6710059642791748, + -0.07428207248449326, + -0.18703624606132507, + -0.10959140956401825, + -0.13054005801677704, + 0.41746950149536133, + -0.1971214860677719, + 0.2865541875362396, + 0.2632973790168762, + -0.021905124187469482, + 0.013325758278369904, + 0.5168031454086304, + -0.0623277872800827, + -0.17869651317596436, + -0.08480147272348404, + -0.03165075555443764, + -0.11413511633872986, + 0.04435966536402702, + 0.14181727170944214, + -0.00018473714590072632, + -0.24681372940540314, + -0.13459381461143494, + -0.09744548797607422, + -0.2288423329591751, + 0.13136839866638184, + -0.032052092254161835, + -0.3165379762649536, + -0.13595300912857056, + 0.09045195579528809, + 0.3731077313423157, + 0.30658355355262756, + 0.18397387862205505, + -0.206572026014328, + -0.35342171788215637, + -0.20360548794269562, + -0.38102397322654724, + -0.0282646045088768, + -0.10701464116573334, + 0.0735572800040245, + 0.05498260259628296, + -0.055391281843185425, + -0.006424078717827797, + -0.15001343190670013, + 0.5560328364372253, + 0.03835409879684448, + 0.11159080266952515, + -0.5997207164764404, + -0.14778602123260498, + 0.47903910279273987, + -0.3025943338871002, + 0.024851985275745392, + 0.37333589792251587, + -0.18325640261173248, + 0.07108756899833679, + -0.1185910701751709, + -0.21950794756412506, + -0.03141140192747116, + -0.3610825538635254, + 0.35330018401145935, + 0.1346394568681717, + -0.14311134815216064, + 0.11109303683042526, + 0.013832684606313705, + 0.39003968238830566, + 0.11848670244216919, + -0.08946675807237625, + 0.5591017007827759, + -0.15492138266563416, + 0.2988860309123993, + -0.18270182609558105, + 0.1350632756948471, + -0.08701123297214508, + 0.02837587147951126, + -0.0010658353567123413, + -0.009238660335540771, + -0.02602461352944374, + -0.6023073792457581, + -0.20364876091480255, + 0.021380111575126648, + -0.08234371244907379, + 0.45524147152900696, + -0.3582097589969635, + -0.3122071921825409, + 0.17781507968902588, + 0.5888353586196899, + -0.0036169663071632385, + -0.04192998260259628, + 0.23836566507816315, + -0.043446265161037445, + -0.26319944858551025, + -0.3297376036643982, + 0.01938128098845482, + 0.1963094174861908, + -0.47685155272483826, + -0.5091082453727722, + 0.025812402367591858, + -0.25766831636428833, + -0.009658873081207275, + 0.3105792701244354, + -0.7842410802841187, + -0.183442622423172, + 0.04053697735071182, + 0.004317194223403931, + -0.06095413118600845, + 0.12123318016529083, + 0.10972946882247925, + -0.13273778557777405, + 0.34908491373062134, + 0.10244479775428772, + 0.2059907764196396, + -0.13834403455257416, + 0.22879202663898468, + -0.19104017317295074, + -0.8792828321456909, + -0.7066776156425476, + 0.5403097867965698, + 0.5364747643470764, + 1.0185573101043701, + -0.1750776469707489, + 0.2839529514312744, + 0.5225324630737305, + -0.09713114798069, + -0.22981315851211548, + 0.8430386781692505, + 0.0413832888007164, + 0.029944635927677155, + 0.21627505123615265, + 0.125402569770813, + -0.31917569041252136, + -0.28817683458328247, + 0.4360216557979584, + 0.17520055174827576, + 0.26146745681762695, + -1.0983855724334717, + -0.14007142186164856, + 0.5619240999221802, + -0.029909253120422363, + -0.5485047101974487, + -0.004717051982879639, + -0.17398172616958618, + 0.045178815722465515, + 0.40174657106399536, + 0.39177966117858887, + -0.6188174486160278, + 0.40098434686660767, + 0.2918303608894348, + -0.48409199714660645, + 0.5648359060287476, + -0.36327019333839417, + -0.38922998309135437, + -0.18243077397346497, + 0.4574427008628845, + 0.08748788386583328, + -0.4748658835887909, + 0.1296420842409134, + -0.30956944823265076, + 0.03985651582479477, + 0.05548527091741562, + 0.12213262915611267, + 0.22376388311386108, + 0.11736347526311874, + -0.10866439342498779, + -0.05624646693468094, + 0.2983352243900299, + 0.4437462091445923, + 0.08475080132484436, + -0.07817565649747849, + -0.22263123095035553, + -0.02347959578037262, + -0.013718578964471817, + -0.054494112730026245, + -0.07293926179409027, + 0.30727243423461914, + -0.6678179502487183, + -0.2734159231185913, + -0.3712305426597595, + 0.6736935973167419, + 0.0783584713935852, + 0.18247076869010925, + 0.06881484389305115, + -0.14368855953216553, + 0.022085078060626984, + 0.09118485450744629, + 0.2640390396118164, + -0.2203032225370407, + 0.04774831235408783, + -0.09272578358650208, + -0.2643436789512634, + 0.1302608847618103, + -0.21301351487636566, + -0.8639200925827026, + 0.012304946780204773, + -0.13098089396953583, + -0.20948399603366852, + 0.2826973497867584, + -0.2853621244430542, + -0.17168670892715454, + 0.45115000009536743, + 0.06628400832414627, + -0.05003288388252258, + 0.05282166600227356, + -0.15377220511436462, + 0.21944665908813477, + -0.23008102178573608, + -0.13388946652412415, + 0.021252749487757683, + 0.04546418786048889, + -0.28848448395729065, + -0.0892617478966713, + -0.24069687724113464, + 0.2834126949310303, + -0.017187129706144333, + -0.07958716154098511, + 0.17119085788726807, + -0.09909309446811676, + 0.11527444422245026, + -0.0023834407329559326, + 0.13138264417648315, + 0.10927282273769379, + -0.01846664771437645, + 0.08292946219444275, + -0.15711092948913574, + -0.36528533697128296, + -0.1296817660331726, + 0.00901501439511776, + 0.17546799778938293, + -0.24703511595726013, + 0.10463332384824753, + 0.16470761597156525, + 0.1123339906334877, + -0.13704131543636322, + -0.16984403133392334, + 0.05042405426502228, + -0.10217073559761047, + -0.46181732416152954, + 0.8066504597663879, + -0.16434341669082642, + -0.08673542737960815, + -0.05632876604795456, + -0.46475934982299805, + -0.0665450394153595, + 0.4113905429840088, + 0.23354944586753845, + -0.17232728004455566, + 0.07211894541978836, + 0.04015771672129631, + 0.2620713412761688, + 0.01985594630241394, + -0.3942526578903198, + 0.05147697031497955, + 0.49932435154914856, + 0.028433233499526978, + 0.5137901902198792, + 0.10046465694904327, + 0.1658288836479187, + 0.2827438712120056, + 0.015199648216366768, + -0.17700247466564178, + 0.23415306210517883, + 0.1394685059785843, + -0.6884829998016357, + 0.21815159916877747, + -0.0013474225997924805, + -0.3064807653427124, + 0.22200335562229156, + -0.12429623305797577, + -0.19498193264007568, + -0.027332035824656487, + -0.2865791916847229, + -0.26516929268836975, + -0.1766025871038437, + -0.010514475405216217, + -0.2944094240665436, + 0.10076499730348587, + 0.22429440915584564, + 0.054294172674417496, + 0.010113518685102463, + 0.2017078399658203, + 0.06705570220947266, + -0.10414862632751465, + 0.20235860347747803, + -0.4814251661300659, + -0.5079106092453003, + 0.116087406873703, + -0.025993693619966507, + -0.11846309155225754, + -0.1936599463224411, + -0.2545938193798065, + -0.07415617257356644, + 0.04680321738123894, + -0.23254327476024628, + -0.387617290019989, + 0.062013350427150726, + 0.11835204064846039, + -0.17792417109012604, + 0.3731403350830078, + 0.3869215250015259, + -0.16773676872253418, + 0.019452691078186035, + -0.11187084764242172, + 0.665555477142334, + 0.38028088212013245, + -0.019326036795973778, + -0.12053835391998291, + 0.2528013586997986, + -0.2217099815607071, + 0.09298774600028992, + -0.43360424041748047, + 0.18503515422344208, + 0.3812797963619232, + -0.2673178017139435, + 0.01880970597267151, + -0.12053997814655304, + -0.31357279419898987, + -0.1253448873758316, + 0.304542601108551, + -0.25601211190223694, + 0.17256657779216766, + -0.3175528049468994, + -0.12290340662002563, + -0.12849317491054535, + 0.49944475293159485, + -0.2532399296760559, + 0.06736480444669724, + -0.61894291639328, + 0.5118618011474609, + 0.026612069457769394, + 0.5926240682601929, + -0.183848038315773, + -0.17342960834503174, + -0.421630859375, + -0.005982920527458191, + -0.1218007504940033, + 0.383471816778183, + 0.11216071248054504, + 0.3208844065666199, + 0.016668125987052917, + 0.1530822217464447, + 0.059732548892498016, + -0.35233354568481445, + -0.02371007390320301, + 0.13402794301509857, + 0.038807690143585205, + -0.1766442060470581, + -0.11869733035564423, + -0.21848733723163605, + 0.027295496314764023, + -0.10590827465057373, + 0.07008638978004456, + 0.5983577966690063, + 0.5275057554244995, + 0.439224511384964, + 0.15996743738651276, + 0.017803356051445007, + -0.3120171129703522, + 0.031736671924591064, + 0.3228031396865845, + -0.11174231767654419, + 0.33067992329597473, + -0.003064259886741638, + 0.005953758955001831, + 0.06747960299253464, + -0.19041210412979126, + -0.09590750932693481, + 0.04938611388206482, + 0.28467899560928345, + -0.10166309773921967, + 0.11834391206502914, + -0.18926383554935455, + 0.2684425115585327, + 0.008779997006058693, + -0.16034555435180664, + -0.6445825695991516, + -0.3887051045894623, + 0.30562764406204224, + -0.004701592028141022, + 0.6213400959968567, + 0.015232793986797333, + 0.20868438482284546, + 0.041961342096328735, + -0.2636464834213257, + 0.39561954140663147, + 0.16469146311283112, + 0.03000534325838089, + 0.0845080316066742, + -0.05882841721177101, + 0.19926296174526215, + -0.045494165271520615, + 0.01646314561367035, + -0.9378932118415833, + 0.4208477735519409, + -0.013550706207752228, + -0.05697760358452797, + -0.003793761134147644, + -0.10119453072547913, + -0.1914852112531662, + 0.5845853090286255, + -0.22060272097587585, + 0.554560661315918, + 0.021229146048426628, + -0.5619114637374878, + 0.2015368640422821, + 0.13683214783668518, + -0.2671148180961609, + 0.7748461961746216, + 0.46765220165252686, + -0.37550073862075806, + -0.009258195757865906, + -0.12548375129699707, + -0.19304773211479187, + -1.029999852180481, + -0.18149489164352417, + 0.21192917227745056, + 0.27487102150917053, + 0.04920617491006851, + 0.03986664116382599, + -0.28410232067108154, + -0.011104404926300049, + -0.32720446586608887, + -0.5750113129615784, + 0.04084733873605728, + -0.17223837971687317, + 0.14840371906757355, + -0.1648007035255432, + -0.023024212568998337, + 0.6142053604125977, + 0.0768822506070137, + -0.5055135488510132, + 0.9602681398391724, + 0.3191636800765991, + 0.37303948402404785, + -0.40423738956451416, + 0.224502831697464, + -0.5153742432594299, + 0.03650664538145065, + -0.28191205859184265, + 0.16464103758335114, + 0.03145518898963928, + -0.47695478796958923, + 0.2680822014808655, + 0.088913194835186, + -0.02656112238764763, + 0.7837880849838257, + 0.28490954637527466, + -0.010722093284130096, + 0.018878573551774025, + 0.28711140155792236, + 0.6863500475883484, + 0.029864370822906494, + -0.01929837465286255, + 0.07297785580158234, + -0.02399514988064766, + -0.10600591450929642, + 0.018421130254864693, + 0.1717471480369568, + -0.591850757598877, + 0.05662576109170914, + -0.09114758670330048, + -0.21442346274852753, + 0.08144235610961914, + -0.08104105293750763, + 0.8051542639732361, + 0.1784995049238205, + 0.019822649657726288, + -0.20079690217971802, + 0.2700657248497009, + -0.944887638092041, + -0.32658377289772034, + 0.26410698890686035, + -0.1470823884010315, + 0.09108224511146545, + -0.06680870056152344, + -0.04236450791358948, + 0.05625569820404053, + 0.425650954246521, + -0.3307311236858368, + 0.5068486928939819, + -0.18718460202217102, + -0.8882086277008057, + 0.03386986255645752, + -0.13177961111068726, + 0.32162636518478394, + -0.2247314751148224, + 0.07165514677762985, + -0.14152926206588745, + -0.09277454018592834, + 0.4489150047302246, + 0.1387617439031601, + -0.11059142649173737, + -0.9019404649734497, + -0.1223970279097557, + -0.010098762810230255, + -0.13997703790664673, + 0.1352885663509369, + 0.17533722519874573, + -0.6759405136108398, + -0.5580534338951111, + -0.17922399938106537, + 0.17317824065685272, + -0.05373178422451019, + 0.0542917400598526, + -0.1317090392112732, + -0.11275533586740494, + -0.09985488653182983, + 0.12281440943479538, + -0.24698199331760406, + 0.015299379825592041, + 0.03601275384426117, + 0.3381369113922119, + -1.0512237548828125, + -0.1826779842376709, + 0.2010059654712677, + -0.13728995621204376, + -0.6802428960800171, + 0.5105699896812439, + 0.2059423327445984, + 0.05869494378566742, + -0.20970052480697632, + -0.4597509503364563, + 0.33932262659072876, + -0.005286132916808128, + 0.059797510504722595, + -0.16328909993171692, + -0.2904926836490631, + -0.027711449190974236, + -0.9999945163726807, + 0.1628531962633133, + -0.33295559883117676, + -0.129050612449646, + 0.13768726587295532, + -0.6261168718338013, + 3.168998956680298, + -0.0026390552520751953, + 0.2621569037437439, + -0.2079908847808838, + 0.32932335138320923, + 0.6273127794265747, + 0.5293174386024475, + -0.1321326494216919, + -0.09838464856147766, + 0.44477200508117676, + -0.3353584408760071, + 0.1705603003501892, + -0.04249250888824463, + 0.10353457927703857, + -0.14648661017417908, + 0.6968685388565063, + 0.20114216208457947, + 0.3521440327167511, + 0.001931115984916687, + 0.21663202345371246, + 0.4258120656013489, + 0.17608392238616943, + 0.27471083402633667, + -0.011573493480682373, + 0.019852042198181152, + -0.05697883665561676, + 0.2453143298625946, + -0.18484781682491302, + -0.13690635561943054, + -0.24166013300418854, + -0.19423916935920715, + -0.1485014110803604, + 0.1416446566581726, + -0.2591089606285095, + -0.051359958946704865, + -0.10693731904029846, + -0.04341874271631241, + 0.11124107241630554, + -0.22823850810527802, + 0.3509555757045746, + 0.33482125401496887, + -0.1470247060060501, + 0.3226875066757202, + 0.09003837406635284, + -0.327632874250412, + 0.18796706199645996, + -1.0027178525924683, + -0.059049151837825775, + -0.48775333166122437, + 0.3561570942401886, + 0.22418895363807678, + 0.5175495147705078, + 0.1894681304693222, + 0.16448874771595, + -0.4041978418827057, + 0.376992791891098, + 0.10516620427370071, + -0.029608771204948425, + 0.22426320612430573, + -0.12748193740844727, + 0.40710651874542236, + -0.16171707212924957, + -0.17624613642692566, + -0.05078146234154701, + 0.1038956418633461, + 0.20130038261413574, + 0.21649286150932312, + 0.19395805895328522, + 0.11972298473119736, + 0.2775369882583618, + 0.2614072561264038, + 0.16987086832523346, + -0.14068451523780823, + 0.18627527356147766, + 0.009636804461479187, + 0.03653784841299057, + -0.02441592328250408, + -0.012865588068962097, + 0.06356844305992126, + 0.20271684229373932, + 0.1828005015850067, + -0.16658122837543488, + 0.23591336607933044, + -0.09281222522258759, + 0.05738341808319092, + -0.18323558568954468, + 0.6104159355163574, + -0.1948746144771576, + 0.04017961025238037, + 0.12473004311323166, + -0.10756385326385498, + 0.006467368453741074, + 0.5754150152206421, + 0.1133527159690857, + 0.08798302710056305, + 0.38245201110839844, + 0.38252830505371094, + -0.34521815180778503, + -0.3062046766281128, + 0.054446130990982056, + 0.046067994087934494, + 0.3719785213470459, + 0.1270335614681244, + -0.01141427829861641, + -0.024023905396461487, + 0.02065083384513855, + -0.1379004865884781, + -0.31905239820480347, + 0.04153662174940109, + -0.11104166507720947, + 0.16259890794754028, + -0.025806540623307228, + 0.14075890183448792, + -0.1258578598499298, + 0.14600105583667755, + -0.08059394359588623, + 0.19656865298748016, + 0.07308802008628845, + 0.07318656891584396, + -0.5794887542724609, + 0.05243369936943054, + -0.016977965831756592, + -0.3507152199745178, + -0.004121024161577225, + 0.1313873529434204, + -0.05693736672401428, + -0.0027496344409883022, + 0.014008119702339172, + 0.05681475251913071, + 0.0028877928853034973, + -0.26023241877555847, + -0.028400234878063202, + 0.09513580799102783, + 0.04897238314151764, + 0.0758955106139183, + 0.02726917341351509, + 0.18878701329231262, + -0.10891082882881165, + -0.005321900825947523, + -0.18891409039497375, + -0.1987927407026291, + 0.11940240859985352, + 0.08393680304288864, + 0.32538455724716187, + -0.5843040943145752, + -0.06697213649749756, + 1.020747423171997, + -0.1685137152671814, + 0.06757155060768127, + 0.3629404604434967, + 0.04172239080071449, + 0.7407524585723877, + -0.3046887218952179, + -0.1548781543970108, + 0.2618776559829712, + -0.0947084128856659, + -0.2610257863998413, + -0.2532884478569031, + -0.1269156038761139, + 0.10844318568706512, + -0.18871809542179108, + -0.22988960146903992, + -0.3208516836166382, + 1.4469733238220215, + -0.13279032707214355, + -0.1808677762746811, + -0.03333994746208191, + 0.06827019900083542, + -0.5150008201599121, + -0.023415572941303253, + 0.11738132685422897, + -0.22762730717658997, + 0.24207869172096252, + -0.9881787896156311, + 0.007970131933689117, + 0.2363734394311905, + 0.08456339687108994, + -0.26259300112724304, + -0.08091098070144653, + 0.10828284919261932, + 0.1537122279405594, + -0.04884622246026993, + -0.5244004130363464, + 0.4814161956310272, + 0.3737572431564331, + -0.11924201250076294, + -0.004664823412895203, + -0.25476163625717163, + -0.19334319233894348, + -0.3468640446662903, + -0.28003308176994324, + 0.16954222321510315, + -0.20551533997058868, + 0.32279402017593384, + -0.24487611651420593, + 0.2797028720378876, + -0.14942196011543274, + -0.17404595017433167, + -0.465096652507782, + -0.12797752022743225, + -0.15249300003051758, + 0.31667226552963257, + 0.1849721521139145, + -0.12581288814544678, + -0.24041298031806946, + 0.21686089038848877, + 0.7069734334945679, + -0.2743528485298157, + 0.0555240772664547, + -0.6768134236335754, + -0.018619172275066376, + -0.3512921631336212, + 0.044360965490341187, + -0.13411781191825867, + 0.015482306480407715, + 0.20151951909065247, + -0.420602023601532, + -0.27682337164878845, + 0.12695127725601196, + -0.4799653887748718, + 1.9280003309249878, + -0.3937647342681885, + -0.1576438546180725, + -0.1460563987493515, + -0.04451986402273178, + -0.06720848381519318, + 0.3795431852340698, + -0.3489115238189697, + 0.5678921937942505, + 0.16419292986392975, + 0.04163367301225662, + -0.0783759281039238, + 0.31990233063697815, + 0.042967334389686584, + 0.068515345454216, + -0.7984169721603394, + 0.10349035263061523, + -0.2593424618244171, + -0.15314044058322906, + 0.21246621012687683, + 0.34577831625938416, + 0.518454372882843, + -0.6942037343978882, + 0.4760119318962097, + -0.25011956691741943, + 0.3272787928581238, + -0.19824519753456116, + -0.07584136724472046, + -0.030542686581611633, + -0.3080914616584778, + -0.20658323168754578, + 0.02929602935910225, + 0.2532965838909149, + -0.07598130404949188, + 0.019523702561855316, + -0.04676831513643265, + -0.4506237804889679, + -0.051651474088430405, + -0.0584704726934433, + -0.23229075968265533, + -0.03909709304571152, + -0.5017973184585571, + 0.35833078622817993, + -0.0999981015920639, + -0.10000880807638168, + -0.04532608389854431, + -0.10754641890525818, + 0.21894869208335876, + -0.034323737025260925, + 0.27475014328956604, + -0.07163356244564056, + 0.24756327271461487, + 0.2080107480287552, + 0.13541430234909058, + -0.524566650390625, + -0.11197477579116821, + 0.10995042324066162, + 0.090298593044281, + 0.21967338025569916, + 0.07865919917821884, + -0.20106299221515656, + -0.06626451760530472, + 0.12534523010253906, + 0.09130734205245972, + 0.16307392716407776, + -0.1834312379360199, + 0.06072212755680084, + 0.029853656888008118, + 0.08179789781570435, + -0.41478586196899414, + 0.22293224930763245, + 0.22420504689216614, + -0.16190144419670105, + -0.45777589082717896, + 0.29855674505233765, + 0.14831691980361938, + 0.11393611133098602, + -0.14641407132148743, + -0.3722904324531555, + -0.04763290286064148, + -0.23951885104179382, + -0.10200124979019165, + -0.2674921751022339, + -0.18216878175735474, + 0.41031232476234436, + -0.24306312203407288, + 0.06054185330867767, + -0.17356736958026886, + 0.09590724855661392, + -0.06780640780925751, + -0.09222596138715744, + 0.05236196517944336, + 0.13462746143341064, + 0.16400954127311707, + 0.48711907863616943, + 0.14637421071529388, + 0.15897831320762634, + 0.09592588245868683, + 0.3014993965625763, + -0.03838221728801727, + 0.0444645881652832, + -0.12314853817224503, + 0.1896176040172577, + -0.15905319154262543, + 0.8326584100723267, + -0.2706778645515442, + 0.21095183491706848, + -0.5073217153549194, + 0.23387381434440613, + -0.06863201409578323, + 0.11973509937524796, + -0.6349086761474609, + -0.1375577598810196, + 0.21113134920597076, + 0.23614461719989777, + -0.4948076605796814, + -0.09589934349060059, + -0.24285101890563965, + -0.004249483346939087, + 0.1493823379278183, + -0.06477125734090805, + -0.5359313488006592, + 0.3733009099960327, + -0.4558623433113098, + 0.055143147706985474, + 0.020966604351997375, + -0.12131662666797638, + 0.6382986903190613, + -0.18409520387649536, + -0.569287896156311, + 0.02225518971681595, + 0.1808367371559143, + -0.29695412516593933, + -0.23473921418190002, + 0.44600123167037964, + -0.14400827884674072, + 0.21241049468517303, + 0.07098916172981262, + -0.5726866722106934, + -0.02410583198070526, + -0.46008309721946716, + -0.08611372858285904, + 0.02556750178337097, + 0.047908589243888855, + 1.2840908765792847, + 0.3184514343738556, + -0.04629641771316528, + 0.1985180377960205, + -0.2761498689651489, + 0.28406354784965515, + 0.1066925972700119, + -0.34712961316108704, + 0.2647269368171692, + 0.017268285155296326, + -0.024029657244682312, + 0.03218366205692291, + -0.1288452446460724, + 0.43808501958847046, + 0.30484113097190857, + 0.11254498362541199, + -0.37326890230178833, + -0.477289617061615, + 0.17935925722122192, + -0.11749321222305298, + -0.5698971748352051, + 0.3367512822151184, + -0.04827239364385605, + -1.1266684532165527, + 0.030968528240919113, + -0.33822178840637207, + 0.5908262729644775, + 0.13295866549015045, + 0.18235579133033752, + 0.23411825299263, + -0.28266453742980957, + -0.8347465395927429, + -0.3887138366699219, + 0.10130897164344788, + 0.10514649748802185, + -0.023769959807395935, + 0.18941058218479156, + -0.3796604871749878, + 0.35165998339653015, + -0.08486739546060562, + -0.3194580078125, + -0.0322224423289299, + -0.7980902194976807, + -0.5473743677139282, + -0.008634142577648163, + 0.011883452534675598, + 0.2513958811759949, + 0.4827501177787781, + 0.14869153499603271, + 0.17117896676063538, + 0.6231460571289062, + -0.41144412755966187, + 0.07587463408708572, + 0.3910819888114929, + -0.47225892543792725, + -0.2689785957336426, + -0.040038395673036575, + -0.1492244452238083, + -0.04589070379734039, + 0.1451644003391266, + -0.1820002794265747, + 0.015341609716415405, + 0.4069175124168396, + -0.0396990031003952, + -0.030143529176712036, + 0.21529223024845123, + 0.4212440848350525, + -0.050988927483558655, + -0.25497812032699585, + 0.08184462785720825, + 0.7328046560287476, + 0.7387535572052002, + 0.05003073066473007, + -1.0095045566558838, + 4.775733947753906, + 0.6802082061767578, + 0.1328599601984024, + -0.2744995057582855, + -0.11676033586263657, + 0.11069371551275253, + -0.4275705814361572, + 1.3355637788772583, + -0.4616010785102844, + 0.21336117386817932, + 0.11288348585367203, + 0.6322488188743591, + 0.21831780672073364, + 0.14105501770973206, + 0.20738059282302856, + 0.20177096128463745, + 0.3832777142524719, + -1.2877124547958374, + -0.17447620630264282, + 0.2910422086715698, + 0.005761907435953617, + 0.05765004828572273, + 1.0447587966918945, + -0.438728928565979, + -0.018242638558149338, + 0.26627111434936523, + -0.34823518991470337, + -0.2530484199523926, + 0.1891721785068512, + -0.038501471281051636, + -0.34082674980163574, + -0.49932679533958435, + -0.22727066278457642, + 0.036474257707595825, + 0.008441939949989319, + 0.07890768349170685, + 0.29098746180534363, + 0.21410436928272247, + -0.0876639112830162, + 0.25576746463775635, + 0.07458814233541489, + 0.2508584260940552, + 0.363838791847229, + -0.17967042326927185, + -0.2724507451057434, + -0.0863112062215805, + -0.13659681379795074, + 0.2522793710231781, + -0.15935833752155304, + -0.01756872981786728, + -0.2105329930782318, + 0.07949616014957428, + -0.24941551685333252, + -0.42180436849594116, + -0.42558303475379944, + -0.4476163387298584, + 0.031796470284461975, + 0.3101528286933899, + -0.14307764172554016, + -0.4260346293449402, + 0.35167115926742554, + -0.2258552759885788, + -0.0024325698614120483, + 0.4220448136329651, + -0.29848775267601013, + 0.19030578434467316, + -0.3138594329357147, + -1.3008928298950195, + 0.08072875440120697, + -0.27614864706993103, + 0.11444830894470215, + 0.03488337993621826, + -0.3327125310897827, + 0.18106457591056824, + 0.048923760652542114, + -0.7946191430091858, + 0.016558174043893814, + 0.454292356967926, + 0.04546116292476654, + 0.362073689699173, + 0.08801132440567017, + 0.20213115215301514, + -0.6751172542572021, + -0.40257248282432556, + 0.26393431425094604, + 0.4167236089706421, + -0.3326154947280884, + -0.120766282081604, + 0.36203163862228394, + 0.08680588006973267, + 0.11405976861715317, + -0.3340074121952057, + -0.8253483176231384, + -0.10074764490127563, + -0.25995349884033203, + -0.2159348875284195, + -0.268167108297348, + -0.5079567432403564, + -0.041045449674129486, + -0.3004540801048279, + 0.15257525444030762, + -0.05695942044258118, + 0.3684050738811493, + 0.07656427472829819, + -0.23256102204322815, + 0.21127745509147644, + -0.9363166689872742, + 0.11063992977142334, + -0.08337533473968506, + -0.10406093299388885, + 0.23457476496696472, + 1.1345510482788086, + -0.07825203239917755, + 0.14039015769958496, + -0.15528178215026855, + -1.2758538722991943, + 0.03722960501909256, + -0.14686161279678345, + -0.07333336025476456, + 0.3865642845630646, + 0.34955164790153503, + 0.2253279685974121, + -1.0677685737609863, + -0.19840051233768463, + 0.3725765347480774, + -0.18988879024982452, + 0.1081688329577446, + 0.5340969562530518, + 0.32549935579299927, + -0.048797547817230225, + -0.1618538498878479, + -0.21173395216464996, + 0.06319092959165573, + -0.09624101221561432, + -0.19165490567684174, + 0.14451058208942413, + 0.22350873053073883, + 0.5558019280433655, + 0.4171331822872162, + -0.4255518317222595, + -0.10298698395490646, + 0.15958836674690247, + -0.023518845438957214, + -0.12873145937919617, + 0.011460736393928528, + -1.0082480907440186, + 0.32867002487182617, + 0.3533652126789093, + -0.08769915252923965, + 0.5131094455718994, + -0.20046234130859375, + 0.4883454144001007, + -0.478093683719635, + 0.11574777960777283, + -0.34108394384384155, + -0.09904319792985916, + -0.06763298809528351, + -0.027644094079732895, + -0.3300414979457855, + 0.2929961681365967, + -0.40888160467147827, + 0.0818236917257309, + 0.2731785178184509, + -0.22759127616882324, + -0.7619320154190063, + -0.013388179242610931, + 0.21177852153778076, + -0.24298110604286194, + -0.08481737971305847, + 0.4590599834918976, + -0.28503018617630005, + 0.17032505571842194, + -0.2418583780527115, + -0.004864253103733063, + -0.3658907413482666, + -0.0419929139316082, + -0.8400647640228271, + 0.8961794376373291, + 0.010201692581176758, + -0.3260061740875244, + -0.0007779747247695923, + 0.06581535935401917, + 0.10362277179956436, + -0.06052592396736145, + -0.1658903956413269, + 0.23262973129749298, + 0.16060581803321838, + -0.44902822375297546, + -0.15858691930770874, + -0.4001787304878235, + -0.13919098675251007, + -0.0312870591878891, + -0.0068307481706142426, + -0.11835693567991257, + 0.21177327632904053, + -0.18498511612415314, + 0.10356862843036652, + -0.0938183069229126, + -0.3748652935028076, + -0.32578086853027344, + -0.18295764923095703, + -0.125930517911911, + -0.0280926376581192, + -0.12085193395614624, + -0.1731717884540558, + 0.2762124538421631, + 0.16755646467208862, + -0.19184857606887817, + -0.153273805975914, + 0.09072661399841309, + -0.5483891367912292, + -0.12665973603725433, + 0.29260146617889404, + -0.15552735328674316, + 0.9253138303756714, + -0.09810502082109451, + 0.12070795893669128, + -0.15915383398532867, + -0.38011634349823, + -0.08797027915716171, + -0.3033720552921295, + 0.2531530261039734, + -0.2974494993686676, + 0.7191125750541687, + -0.3997010588645935, + -0.26883387565612793, + 0.06384479999542236, + -0.03351360559463501, + -0.1889222264289856, + -0.045485977083444595, + 0.043609023094177246, + -0.03696223348379135, + 0.12214993685483932, + -0.010750509798526764, + 0.3278830945491791, + -0.3963889479637146, + -0.9505431652069092, + -0.1324159801006317, + -0.9209296703338623, + -0.20833832025527954, + -0.11949250102043152, + -0.177428737282753, + -0.08616167306900024, + 0.22201670706272125, + 0.3843415379524231, + -0.09822312742471695, + 0.0637560710310936, + -0.19368933141231537, + -0.07902759313583374, + -0.2983781695365906, + -1.9318875074386597, + -0.0916098952293396, + -0.5048767924308777, + -0.25030744075775146, + -0.0744517371058464, + -0.304651141166687, + -0.47602492570877075, + 0.3929145932197571, + -0.4104471206665039, + -0.5560500621795654, + -0.003291095606982708, + 0.2952978014945984, + -0.14222227036952972, + -0.28949588537216187, + -0.7205332517623901, + 0.5413979887962341, + -0.4183485805988312, + 0.37308359146118164, + -0.47698599100112915, + 0.28970786929130554, + -1.5688161849975586, + -0.000936850905418396, + 0.1717224419116974, + 0.17173558473587036, + 0.20540055632591248, + 0.03171142190694809, + 0.15022291243076324, + -0.07679285109043121, + 0.13805881142616272, + -0.15492308139801025, + 0.177983820438385, + 0.2106591910123825, + 0.17889517545700073, + -0.0007925480604171753, + -0.008534710854291916, + -0.41815656423568726, + 0.17296305298805237, + -0.041176922619342804, + 0.2526688575744629, + 0.24495719373226166, + -0.08383633941411972, + 0.26378345489501953, + -0.04877442121505737, + 0.06932233273983002, + 0.1356150507926941, + 0.05408475175499916, + -1.7459640502929688, + 1.04804527759552, + -0.07581458985805511, + 0.030914828181266785, + 0.19827692210674286, + 0.8259670734405518, + -0.05681074038147926, + -1.7620213031768799, + 0.09372387826442719, + -0.12666404247283936, + 0.7289822101593018, + 0.0868103951215744, + -0.020263679325580597, + -0.17001742124557495, + 0.002879059873521328, + 0.02378109097480774, + -0.026936454698443413, + 0.2831425964832306, + 0.22745557129383087, + -0.4728739559650421, + 0.069505475461483, + 0.3502219319343567, + 0.0044693052768707275, + -0.14374123513698578, + -0.09870724380016327, + 0.1525145173072815, + 0.24907024204730988, + 0.1552514135837555, + 0.029278116300702095, + -0.14404301345348358, + 0.31621217727661133, + -0.08830989897251129, + 0.02016282081604004, + 0.14763791859149933, + 0.12578463554382324, + -0.16618576645851135, + -0.056873053312301636, + -0.16978487372398376, + 0.3077165484428406, + 0.09413620084524155, + -0.13241413235664368, + 1.2765144109725952, + 0.052468858659267426, + -1.1852588653564453, + -0.15517973899841309, + -0.13721811771392822, + -1.8808987140655518, + 0.5873150825500488, + -0.3425675630569458, + 0.2526504397392273, + -0.09784480184316635, + 0.29051005840301514, + 0.9607837796211243, + -0.036000583320856094, + 0.3926621079444885, + 0.134123757481575, + -0.18926472961902618, + -0.18921290338039398, + 0.22312787175178528, + -1.1101999282836914, + 0.4846108853816986, + -0.21876448392868042, + -0.2360837459564209, + -0.25026631355285645, + -0.07145113497972488, + 0.9080421924591064, + 0.16952237486839294, + -0.08598744124174118, + 0.23965735733509064, + -0.27583199739456177, + 0.24075773358345032, + -0.09258849173784256, + 0.07463186979293823, + -0.0506630539894104, + 0.416822224855423, + 0.3131375014781952, + -0.29987722635269165, + -0.43025127053260803, + 0.17850369215011597, + 0.28447866439819336, + -1.3802475929260254, + 0.11861561238765717, + -0.42650502920150757, + -0.10182365775108337, + 0.25127172470092773, + -0.12960079312324524, + 0.01509121060371399, + -0.14468909800052643, + 0.30218955874443054, + 0.20704661309719086, + 0.015251263976097107, + 0.6715297698974609, + -0.4261324107646942, + 0.11027879267930984, + -0.3985850214958191, + -0.15534676611423492, + 0.19962593913078308, + -0.08613032847642899, + -0.5144452452659607, + 0.2085666060447693, + 0.4120646119117737, + -0.16403542459011078, + 0.20760281383991241, + -0.020769407972693443, + -0.09144740551710129, + -0.1816948801279068, + 0.30467063188552856, + -0.30578261613845825, + 0.17275789380073547, + 0.5498068332672119, + -0.11824633181095123, + 0.4274297058582306, + -0.14153680205345154, + 0.043719738721847534, + -0.20196568965911865, + 0.1204860731959343, + 0.08931174129247665, + -0.0016278773546218872, + 0.059378642588853836, + 0.08682303130626678, + -0.277771532535553, + -0.40988099575042725, + -0.5816221833229065, + -0.006335519254207611, + -0.1718687266111374, + 0.08102958649396896, + -0.060118816792964935, + 0.34989848732948303, + 0.03875284641981125, + -0.03992091491818428, + -0.33412081003189087, + -0.06606800109148026, + 0.29799336194992065, + -0.3938562870025635, + 0.24159875512123108, + 0.47793707251548767, + -0.2028515338897705, + -0.08405821025371552, + 0.38783061504364014, + -0.035149261355400085, + 0.4686303734779358, + 0.1228095144033432, + 0.023185789585113525, + -0.24570037424564362, + -0.46264785528182983, + -0.12775562703609467, + 0.1774434894323349, + -0.04074805974960327, + 0.007890917360782623, + 0.2341715693473816, + -0.7049065828323364, + 0.2848416864871979, + -0.25627774000167847, + -0.03164761886000633, + 0.12409978359937668, + -0.07300117611885071, + -0.07525880634784698, + 0.3816121220588684, + -0.5800409317016602, + 0.3666890859603882, + 0.4647079110145569, + 0.055355802178382874, + -0.6109876036643982, + -0.2557084262371063, + 0.3981480002403259, + -0.1436665654182434, + -0.3069233298301697, + -0.003443196415901184, + -0.2701340317726135, + 0.15153717994689941, + 0.13415884971618652, + 0.07127799838781357, + 0.20895054936408997, + 0.17254534363746643, + 0.2572574019432068, + 0.06702360510826111, + 0.5187510251998901, + -0.4468654990196228, + 0.30933651328086853, + -0.23351186513900757, + 0.534264087677002, + 0.1417214721441269, + 0.02814730629324913, + 1.2328107357025146, + -0.19037622213363647, + -0.8330073356628418, + 0.27459487318992615, + -0.19182315468788147, + -0.30521339178085327, + 0.13205671310424805, + 0.1859484612941742, + -0.045455172657966614, + 0.10620910674333572, + 0.45466095209121704, + -0.07973332703113556, + -0.2989824414253235, + 0.07692165672779083, + -1.454777479171753, + 0.03687450289726257, + -0.22834797203540802, + -0.0526653528213501, + 0.11276790499687195, + 0.01095646619796753, + 0.5105632543563843, + -0.12453006953001022, + 0.11023904383182526, + -0.18632714450359344, + -0.17296916246414185, + -0.797276496887207, + -0.3852328658103943, + -0.3012707531452179, + -0.05233015865087509, + -0.2834659814834595, + -0.3712468445301056, + 0.07884548604488373, + -0.10153742134571075, + -0.019206896424293518, + -0.6863892078399658, + 0.21285705268383026, + 0.20174020528793335, + -0.053024232387542725, + 0.3675469756126404, + 0.043043121695518494, + 0.26930904388427734, + -0.1549544632434845, + 0.2232079654932022, + 0.39380794763565063, + -0.24149881303310394, + -0.5128505825996399, + -0.35971587896347046, + -0.2720518112182617, + -0.26496270298957825, + -0.7250951528549194, + -0.20112738013267517, + 0.21625909209251404, + -0.08950568735599518, + -0.23162803053855896, + 0.19129398465156555, + -0.09141230583190918, + -0.14809244871139526, + -0.041836027055978775, + -0.3773149847984314, + -0.12331835925579071, + 0.7638418674468994, + 0.2407083809375763, + 0.355613112449646, + -0.5092301368713379, + -0.03838193416595459, + 0.14183540642261505, + 0.12682105600833893, + 0.43941643834114075, + 0.45168131589889526, + -0.043964214622974396, + -0.14339689910411835, + -0.32458680868148804, + 0.2815907597541809, + -0.034386567771434784, + 0.2915512025356293, + -0.12668007612228394, + -0.31950026750564575, + -0.4306921362876892, + -0.582525908946991, + -0.15823641419410706, + 0.29092592000961304, + -0.2032565027475357, + 0.13588161766529083, + 0.04636162519454956, + -0.2622952461242676, + 0.09562965482473373, + -0.1694502830505371, + 0.3588090240955353, + 0.30985796451568604, + -0.19887450337409973, + -0.1947893351316452, + 0.2587268650531769, + -0.3291001617908478, + -0.41861650347709656, + 0.032445263117551804, + -0.24339786171913147, + -0.3886704444885254, + 0.11353117227554321, + 0.06247818097472191, + -0.7719002962112427, + 0.0010476112365722656, + 0.20312532782554626, + 0.4511040449142456, + 0.02609875798225403, + 0.12164019048213959, + 0.02254967764019966, + -0.1530080884695053, + -0.21929511427879333, + 0.14241047203540802, + -0.02049480378627777, + -0.2851766347885132, + 0.024152584373950958, + -0.18176665902137756, + -0.6480218172073364, + 0.30380457639694214, + -0.13285931944847107, + 0.15571534633636475, + -0.04721832275390625, + -0.05779172480106354, + -0.17537744343280792, + 0.1347883641719818, + 0.1582934856414795, + 0.29630303382873535, + 0.24948790669441223, + -0.20324452221393585, + -0.3279065489768982, + -0.002022441476583481, + 0.31624913215637207, + 0.20124661922454834, + 0.7301861643791199, + 0.0491340197622776, + 0.3409354090690613, + 0.2846220135688782, + -0.35717350244522095, + 0.4237431585788727, + 0.3065846562385559, + -0.02289130538702011, + 0.3182421922683716, + -0.4668310284614563, + 0.07666544616222382, + 0.43942791223526, + 0.512139081954956, + -0.6545235514640808, + 0.182155042886734, + 0.618159830570221, + 0.11649717390537262, + -0.32166725397109985, + 0.2824287414550781, + 0.011840097606182098, + 0.07147028297185898, + -0.11393484473228455, + 0.35840797424316406, + -0.6084721684455872, + -0.19597017765045166, + -0.09886206686496735, + 0.5700411796569824, + 0.2409442812204361, + 0.4067692756652832, + -0.1361103355884552, + 0.2678021192550659, + -0.20452363789081573, + 0.48748278617858887, + 0.28968000411987305, + 0.020295970141887665, + -0.08772353827953339, + -0.33499497175216675, + -0.30613449215888977, + 0.6670225262641907, + 0.2529430389404297, + 0.10182555019855499, + -0.2530527114868164, + -0.15044303238391876, + 0.07117355614900589, + -0.2615998685359955, + -0.23582172393798828, + -0.08518418669700623, + 0.03998167812824249, + 0.03503213822841644, + 0.41692566871643066, + -0.264549195766449, + -0.06656789779663086, + -0.19655975699424744, + 0.6907083988189697, + -0.16918495297431946, + -0.1378495842218399, + -0.03237615525722504, + 0.5166168212890625, + -0.3145483136177063, + -0.08334838598966599, + -0.22699329257011414, + -0.5248947739601135, + 0.46433788537979126, + 0.09937629103660583, + 0.25556719303131104, + 0.4154496490955353, + -0.5492342114448547, + -0.11859911680221558, + -0.31775587797164917, + -0.06701880693435669, + 0.07567821443080902, + -1.107308268547058, + 0.6243684887886047, + -0.4083511233329773, + -0.01929602585732937, + 0.07879865914583206, + 0.8174237608909607, + 0.06465359032154083, + 0.6396896839141846, + -0.23106426000595093, + -0.0388561487197876, + -0.11225006729364395, + 0.10689637064933777, + -0.033707763999700546, + 0.17661499977111816, + 0.08251698315143585, + 0.0031560640782117844, + -0.22011712193489075, + -0.03252895921468735, + -0.003089234232902527, + -0.06310854107141495, + -0.24999479949474335, + -0.5771049857139587, + 0.15224164724349976, + 0.27534785866737366, + -0.2212902307510376, + 0.05101267248392105, + -0.026055172085762024, + 0.3427070379257202, + -0.5479166507720947, + -0.23999297618865967, + -0.07911581546068192, + -0.7058126330375671, + 0.32927292585372925, + -0.3022710978984833, + 0.12361258268356323, + 0.3635234534740448, + 0.8202446699142456, + -0.10962545871734619, + -0.1323261708021164, + -0.07671171426773071, + -0.10375908017158508, + 0.41344600915908813, + 0.03385934233665466, + 0.27648913860321045, + 0.09892499446868896, + -1.6574198007583618, + 0.21844547986984253, + -0.2873864769935608, + 0.0964619517326355, + 0.04694640636444092, + -0.14038288593292236, + 0.03358089178800583, + -0.8788229823112488, + -0.0030877292156219482, + 0.2747343182563782, + -2.0045652389526367, + -0.27179649472236633, + -0.0137501060962677, + 0.29386085271835327, + 0.3058021366596222, + -0.08896812796592712, + 0.11788453161716461, + -0.13578420877456665, + 0.17392143607139587, + 0.29113060235977173, + -0.3234040439128876, + -0.2518533766269684, + -0.21632102131843567, + 0.1359512060880661, + 0.4610559642314911, + 0.1989457905292511, + 0.2031853199005127, + 0.25937557220458984, + 0.31828024983406067, + -0.08389779925346375, + 0.2988030016422272, + 0.02732902765274048, + 0.6388558149337769, + 0.6698936223983765, + -0.14874792098999023, + 1.0859169960021973, + 0.1349354386329651, + 0.15008452534675598, + -0.07228981703519821, + 0.04357109218835831, + -0.25283873081207275, + -0.0029518529772758484, + -0.024149170145392418, + 0.37996456027030945, + 0.09350337833166122, + -0.07674464583396912, + -0.17084729671478271, + 0.07427247613668442, + -0.13850367069244385, + 0.030865201726555824, + -0.17691051959991455, + -0.39322078227996826, + -0.35369130969047546, + 0.2527996599674225, + -0.14005282521247864, + -0.2709518074989319, + -0.018057692795991898, + -0.3009607195854187, + -0.20343688130378723, + -0.051332682371139526, + -0.15190398693084717, + -0.27913805842399597, + 0.06975176930427551, + -0.0741666853427887, + -0.13752534985542297, + -0.06339546293020248, + -0.12793254852294922, + 1.2879595756530762, + 0.4020475149154663, + -0.0110392477363348, + -0.052200254052877426, + -0.036876045167446136, + 0.03410099446773529, + 0.14534543454647064, + 0.43092310428619385, + 0.021591652184724808, + -0.12945128977298737, + -0.13149192929267883, + -0.40091535449028015, + -0.7415741682052612, + 0.9458907842636108, + -0.3674207329750061, + -0.16940943896770477, + -0.004451885353773832, + 0.15395605564117432, + -0.24144640564918518, + -0.03373332321643829, + 0.2032289057970047, + 0.14326226711273193, + -0.0952349379658699, + -0.4520993232727051, + 0.14426328241825104, + 0.0343606099486351, + -0.05831105262041092, + -0.1818614900112152, + -0.03870689868927002, + 0.31378430128097534, + 0.4346131980419159, + -0.11983339488506317, + -0.17723709344863892, + 1.0450702905654907, + 0.578273355960846, + 0.4851609170436859, + -0.05410417914390564, + 0.11206850409507751, + 0.08024980127811432, + 0.15162381529808044, + 0.2666689455509186, + 0.20128783583641052, + 0.06186603009700775, + 0.17610612511634827, + 0.12296252697706223, + 0.031592514365911484, + -0.14699289202690125, + 0.3999151587486267, + 0.2344505786895752, + -0.9278438091278076, + 0.17911601066589355, + -0.005706168711185455, + -0.26786577701568604, + -0.28728753328323364, + 0.16776125133037567, + 0.1990368366241455, + 0.04712803661823273, + -0.08030635863542557, + -0.17630568146705627, + -0.04019821062684059, + 0.4416640102863312, + 0.21640656888484955, + -0.2442053109407425, + 0.06812664866447449, + 0.289606511592865, + 0.029749922454357147, + 0.18272405862808228, + 0.06030425429344177, + -0.15712803602218628, + -0.1325642466545105, + -0.48323631286621094, + -0.10241471976041794, + -0.057736486196517944, + -0.008637882769107819, + 0.052800826728343964, + 0.35777151584625244, + 0.06637188792228699, + 0.1115463376045227, + 0.3583536744117737, + -0.7046037912368774, + -0.07402580231428146, + 0.34460699558258057, + -0.20724338293075562, + -0.22929471731185913, + 0.4589895009994507, + -0.32211393117904663, + 0.15933099389076233, + 0.1618189662694931, + 0.22027264535427094, + 0.15331000089645386, + -0.032253578305244446, + 0.4191528856754303, + -0.18009695410728455, + -0.39712998270988464, + -0.4718610346317291, + -0.7317380905151367, + -0.42968398332595825, + 0.36464565992355347, + -0.004332184791564941, + -0.10285574197769165, + 0.19011951982975006, + -0.17393705248832703, + -0.16641581058502197, + 0.21434107422828674, + -0.17496542632579803, + -0.15224595367908478, + -0.19133545458316803, + -0.3065207004547119, + -0.1305285096168518, + -0.03986210376024246, + 0.02944830060005188, + -0.006434840150177479, + 1.0728285312652588, + 0.14749592542648315, + 0.5413577556610107, + 0.2676563262939453, + -0.08227376639842987, + 0.08414778113365173, + 0.3442533016204834, + 0.246673122048378, + 0.04281361401081085, + 1.509340524673462, + -0.003281697630882263, + -0.09176114946603775, + -0.17195314168930054, + 0.17210137844085693, + 0.5952246785163879, + 0.029227763414382935, + -0.020351819694042206, + -0.022816810756921768, + 0.2579500377178192, + -0.06396463513374329, + -0.23633235692977905, + -0.36628472805023193, + -0.10843770205974579, + -0.38947951793670654, + 0.1949707567691803, + -0.3297726511955261, + -0.15610246360301971, + -0.25442206859588623, + 0.578977108001709, + -0.27742451429367065, + -0.14900603890419006, + 0.202131986618042, + -0.12701408565044403, + 0.3243755102157593, + -0.32110440731048584, + 0.6285777688026428, + -0.19206927716732025, + 0.10599540174007416, + 0.04833925515413284, + 0.45815128087997437, + 0.42141488194465637, + -0.0011730380356311798, + -0.02996567077934742, + 0.22302380204200745, + 0.040002595633268356, + 0.20096397399902344, + -0.14899542927742004, + 0.2875671088695526, + -0.12240102142095566, + 0.17865243554115295, + 0.11145355552434921, + -0.10296855866909027, + -0.28424617648124695, + 0.017825715243816376, + 0.31822913885116577, + -0.06576094031333923, + -0.02212003618478775, + -0.3239118158817291, + 0.3448486924171448, + 0.06691137701272964, + 0.18627595901489258, + -0.32941702008247375, + -0.09607809782028198, + -0.4221831262111664, + -0.22095170617103577, + -0.10378499329090118, + -0.24004359543323517, + -1.4553248882293701, + -0.06997920572757721, + 0.18770024180412292, + 0.0031661689281463623, + 0.2526584267616272, + -0.28507065773010254, + 0.03590407967567444, + -0.16548839211463928, + -0.05359293520450592, + -0.5003551840782166, + -0.02363486960530281, + 0.13025939464569092, + -0.2451631873846054, + 0.15263278782367706, + 0.08179458975791931, + -0.036096714437007904, + 0.4304596185684204, + 0.03782334923744202, + -0.04396176338195801, + 0.20465624332427979, + 0.3255113959312439, + 0.5702898502349854, + 0.1569892168045044, + 0.8557054400444031, + -0.043809905648231506, + -0.586909830570221, + 0.1534203290939331, + -0.12984223663806915, + 0.1453498750925064, + 0.25247281789779663, + -0.05867648124694824, + -0.17240455746650696, + -0.2771463394165039, + -0.07232671231031418, + -0.5736367702484131, + 0.15463276207447052, + 0.1736285537481308, + 0.3285507261753082, + -0.3439774215221405, + 0.34335777163505554, + 0.37816372513771057, + -0.2144973874092102, + 0.4119046926498413, + -0.0325695276260376, + -0.16267339885234833, + -0.11608419567346573, + -0.31147047877311707, + 0.06387229263782501, + 0.07224339991807938, + 0.15087682008743286, + 0.09168712794780731, + 0.10287539660930634, + 0.5238132476806641, + -0.1167498230934143, + -0.08076080679893494, + -0.06588869541883469, + -0.24385502934455872, + 0.12028931081295013, + -0.04859044402837753, + 0.23115944862365723, + -0.11251981556415558, + -0.09598883241415024, + -0.19095918536186218, + 0.033166706562042236, + 0.26797348260879517, + 0.4792795181274414, + 0.06914978474378586, + -0.09516777098178864, + -1.0087194442749023, + -0.2902185320854187, + 0.03251095116138458, + 0.07970849424600601, + -0.04390065371990204, + -0.16706058382987976, + -0.10181471705436707, + -0.05417126417160034, + -0.25981375575065613, + 0.5684957504272461, + -0.09384126216173172, + 0.32582107186317444, + -0.4209739565849304, + 0.6860048770904541, + 1.55306077003479, + 0.0411318838596344, + 0.47679567337036133, + 0.12634146213531494, + -0.32418590784072876, + -0.0906299501657486, + -0.14052818715572357, + -0.12389353662729263, + -0.15409602224826813, + 0.06319136917591095, + -0.29229283332824707, + -0.1674635112285614, + 0.29523974657058716, + 0.29517343640327454, + -0.2333829700946808, + -0.16134686768054962, + -0.2608512341976166, + -0.0006113611161708832, + 0.2675580084323883, + -0.10943926125764847, + 0.08231738954782486, + -0.6401768922805786, + -0.10964027047157288, + 0.09427432715892792, + -0.6139243841171265, + -0.08273713290691376, + -0.22375892102718353, + 0.13479968905448914, + 0.35809290409088135, + -0.027319476008415222, + 0.1641819179058075, + 0.1875642091035843, + 0.04167474806308746, + -0.5030890703201294, + -0.12526020407676697, + -0.039383500814437866, + 0.4115828275680542, + 0.10192336142063141, + 0.22175663709640503, + -0.13546869158744812, + 0.3133178949356079, + 0.21719202399253845, + -0.35861459374427795, + 0.21557556092739105, + -0.016706155613064766, + -0.03201959654688835, + 0.11976048350334167, + 0.3825344145298004, + -0.12046954035758972, + 0.032915547490119934, + 0.16664695739746094, + -0.10793490707874298, + -0.011048436164855957, + -0.07272311300039291, + 0.22021877765655518, + -0.07534180581569672, + -0.23312385380268097, + 0.22474828362464905, + 0.23655027151107788, + -0.21838192641735077, + -0.365245521068573, + -0.4760615825653076, + -0.2662145793437958, + 0.05202377960085869, + 0.06197066232562065, + 1.0728187561035156, + -0.05795472115278244, + -0.7188584804534912, + -0.21801817417144775, + 0.030359428375959396, + 0.16646409034729004, + -0.1232108473777771, + -0.19285160303115845, + -0.020080333575606346, + -0.5922115445137024, + 0.03847605735063553, + -0.29295140504837036, + -0.07590226829051971, + -0.2971718907356262, + -0.030775681138038635, + 0.05287020653486252, + 0.23766350746154785, + 0.40018898248672485, + -0.27777770161628723, + -0.12675637006759644, + 0.4696604311466217, + -0.17141789197921753, + 0.8930827379226685, + 0.17131726443767548, + -0.01653611660003662, + -0.07509274035692215, + 0.2190452665090561, + -0.05889011174440384, + 0.21489852666854858, + 0.2930079400539398, + -0.055468231439590454, + 0.23718774318695068, + -0.12795236706733704, + -0.14699706435203552, + -0.38381704688072205, + 0.38221046328544617, + 0.10352277010679245, + 0.35096651315689087, + 0.20806513726711273, + -0.34567445516586304, + -0.09119120240211487, + -0.2000068575143814, + -0.9975664615631104, + -0.06407036632299423, + 0.11691486835479736, + -0.12989260256290436, + -0.8315973281860352, + -0.2877441644668579, + 0.06641289591789246, + 0.010363712906837463, + 0.5804986953735352, + -0.5777339935302734, + -0.12412651628255844, + 0.06269249320030212, + 0.1924103945493698, + -0.014573141932487488, + -0.2791304886341095, + 0.5565871000289917, + 0.25520050525665283, + 0.49904778599739075, + -0.010109695605933666, + -0.32371339201927185, + -0.2138310968875885, + -0.1623695343732834, + -0.028760388493537903, + 0.17394311726093292, + 0.047752849757671356, + -0.4007551074028015, + 0.14392131567001343, + -0.567887544631958, + -0.3399074077606201, + -0.005468711256980896, + -0.10811760276556015, + 0.21890883147716522, + 0.20204868912696838, + -0.05966859310865402, + -0.013652339577674866, + 0.9528878927230835, + 0.06328384578227997, + -0.1925903856754303, + 0.1814766824245453, + -0.0018050745129585266, + 0.08783172070980072, + -0.23447075486183167, + -0.11469359695911407, + 0.017305642366409302, + 0.28282493352890015, + 0.17938654124736786, + 0.24296866357326508, + 0.3300355076789856, + 0.2789587080478668, + 0.22960565984249115, + -0.06805188208818436, + -0.2824103832244873, + -0.08950158208608627, + 0.3037450611591339, + -0.8637826442718506, + -0.1669429987668991, + 0.23871415853500366, + 0.26843249797821045, + -0.06072019040584564, + 1.2437169551849365, + 0.26974979043006897, + -0.15360650420188904, + -0.05362805724143982, + -0.567690372467041, + -0.03472284972667694, + 0.014370203018188477, + 1.417503833770752, + 0.2631385922431946, + -0.33497944474220276, + 0.16869592666625977, + 0.23268361389636993, + -0.04490378499031067, + -0.3308568298816681, + 0.16529297828674316, + -0.08101806044578552, + -0.16350723803043365, + -0.21517059206962585, + 0.021031927317380905, + -0.16252246499061584, + 0.0025866106152534485, + -0.10303698480129242, + 0.31338268518447876, + 0.30456221103668213, + -0.23763500154018402, + 0.1442529261112213, + -0.04798920825123787, + 0.020787393674254417, + 0.10414206236600876, + 0.11710360646247864, + 0.0386558435857296, + -0.3045963644981384, + -0.1612553894519806, + 0.09960368275642395, + -0.04574286937713623, + -0.2821086049079895, + 0.012514539062976837, + 0.04274085909128189, + 0.1993676722049713, + -0.22016414999961853, + 0.24487796425819397, + 0.22283166646957397, + -0.4039817750453949, + 0.17264600098133087, + 0.13729003071784973, + 0.23091700673103333, + -0.12101662904024124, + 0.024432256817817688, + -0.19236192107200623, + 0.2208131104707718, + 0.44539204239845276, + 0.5576891899108887, + -0.06573435664176941, + -0.09611953794956207, + 0.4189368784427643, + 0.1360579878091812, + 0.19767102599143982, + 0.20350612699985504, + -0.3138067424297333, + -0.3095327317714691, + -0.20342491567134857, + 0.15783844888210297, + 0.13983866572380066, + -0.29501616954803467, + -0.05026235058903694, + -0.12082117795944214, + 0.00865975022315979, + -0.21174025535583496, + -0.11527182906866074, + 0.3878045380115509, + 0.23817142844200134, + 0.2599996328353882, + 0.41050925850868225, + 0.19310784339904785, + 0.3144674301147461, + 0.08011816442012787, + 0.2567482590675354, + 0.2720552086830139, + 0.14797896146774292, + 0.470846951007843, + -0.17121511697769165, + -0.30583614110946655, + -0.14258833229541779, + -0.0912223756313324, + 0.2658974528312683, + -0.27753570675849915, + -0.3529154062271118, + -0.3545573651790619, + -0.10993415117263794, + -0.061811335384845734, + 0.1625211387872696, + 0.10848760604858398, + -0.2750430703163147, + -0.9826393127441406, + -0.25936204195022583, + 0.003989428281784058, + -0.45813435316085815, + -0.5105538964271545, + -0.39602595567703247, + 0.22583967447280884, + 0.1893964409828186, + 0.28841933608055115, + -0.008377253077924252, + 0.10965541005134583, + -0.15345343947410583, + 0.4171687364578247, + -0.1236257553100586, + -0.1097281351685524, + 1.7945507764816284, + -0.09409083425998688, + 0.05984017997980118, + 0.07264924049377441, + 0.22527801990509033, + 0.16849075257778168, + 0.276409775018692, + 0.10986366868019104, + 0.1810356080532074, + -0.14272096753120422, + 0.17250613868236542, + -0.06392775475978851, + 0.3020820617675781, + -0.7470137476921082, + -0.2543480396270752, + -0.4959909915924072, + -0.02773350477218628, + 0.06305209547281265, + -0.690090537071228, + -0.0724753737449646, + 0.16231048107147217, + -0.5212413668632507, + 0.2297602891921997, + -0.7492133378982544, + -0.27254295349121094, + -0.07999126613140106, + 0.230554461479187, + 0.3318856358528137, + 0.10582832992076874, + 0.03342953324317932, + -0.14500486850738525, + 1.0376920700073242, + -0.18010586500167847, + 0.4304460883140564, + -0.3574761152267456, + 0.05719500780105591, + -0.045284952968358994, + 0.3247326910495758, + 0.008921779692173004, + -0.1357651650905609, + 0.511390209197998, + -0.22133255004882812, + 0.11698496341705322, + 0.08152077347040176, + -0.40559881925582886, + -0.19139668345451355, + -0.20046645402908325, + 0.5626721382141113, + -0.04960813373327255, + 0.4017255902290344, + 0.015917882323265076, + 0.2072696089744568, + 0.6592203378677368, + -0.6064543724060059, + 0.2837045192718506, + -0.2723839581012726, + -0.1357966512441635, + -0.7596995830535889, + 0.14642533659934998, + -0.21126724779605865, + 0.11842510104179382, + -0.1877973973751068, + -0.31341031193733215, + -0.03909115493297577, + 0.8363160490989685, + 0.20778240263462067, + 0.10373373329639435, + -0.02553098276257515, + 0.024698540568351746, + -0.12934504449367523, + 0.6460679173469543, + 0.054936230182647705, + 0.07918503880500793, + -0.18058030307292938, + 0.341089129447937, + -0.0016060597263276577, + 0.15147557854652405, + -0.06960482150316238, + 0.07569766044616699, + -0.5051912665367126, + -0.31584596633911133, + 0.013113163411617279, + -0.23792552947998047, + -0.05411076545715332, + -0.194619283080101, + -0.3692251443862915, + -0.07972587645053864, + -0.1955166608095169, + 0.10528914630413055, + 0.24701310694217682, + 0.09445768594741821, + -0.2718941569328308, + -0.14694327116012573, + 0.02614748477935791, + -0.13669010996818542, + -1.202734112739563, + -0.15592460334300995, + 0.10298854112625122, + -0.03246365487575531, + -0.21716560423374176, + -0.035633523017168045, + 0.07873982936143875, + 0.1646723747253418, + 0.20963823795318604, + 0.09294034540653229, + 0.21042335033416748, + -0.004940703511238098, + 0.2208143025636673, + -0.2475993037223816, + -0.11060978472232819, + -0.27429571747779846, + -0.41475701332092285, + -0.0706716924905777, + 0.1149493008852005, + -1.4328762292861938, + 0.5214477181434631, + 0.031362175941467285, + -0.07955935597419739, + -0.1978960782289505, + -0.34630900621414185, + 0.04126880317926407, + -0.13153205811977386, + 0.2489541918039322, + -0.0577772781252861, + 0.20957306027412415, + -0.03718914836645126, + 0.079196497797966, + -0.45390352606773376, + -0.1753302812576294, + 0.020342806354165077, + 0.290840208530426, + 0.11346663534641266, + 0.043882377445697784, + -0.060842424631118774, + -0.04231831431388855, + 0.1606987565755844, + 0.33795401453971863, + -0.17651689052581787, + 0.3625914752483368, + 0.19905336201190948, + 0.2269316017627716, + -0.16413700580596924, + -0.06755976378917694, + 0.10157172381877899, + 0.4958094358444214, + -0.5772212743759155, + 0.04867406189441681, + -0.008968746289610863, + -0.012699062004685402, + -0.3230554461479187, + -0.18277816474437714, + 0.16716039180755615, + 0.12999340891838074, + 1.2087347507476807, + 0.23080848157405853, + -0.2969437837600708, + -0.28066593408584595, + -0.2773466408252716, + 0.32561182975769043, + 0.3001247048377991, + 0.0015633702278137207, + 0.222612202167511, + 0.1952282190322876, + 0.4069675803184509, + 0.3376043438911438, + 0.0516933798789978, + 0.07197830080986023, + -0.004176244139671326, + -0.14694148302078247, + 0.09428608417510986, + 0.2098962962627411, + 0.2463798075914383, + 0.05525709688663483, + 0.7911149263381958, + 0.05584599822759628, + -0.17648452520370483, + 0.1461103856563568, + 0.8499530553817749, + 0.17965790629386902, + -0.20480263233184814, + 1.108224630355835, + 0.105491504073143, + -0.26877862215042114, + -0.5089699625968933, + 0.2818269729614258, + 0.04434669017791748, + -0.04359203949570656, + -0.11363115906715393, + -0.24201607704162598, + -0.21589767932891846, + -0.058947958052158356, + -0.032237857580184937, + 0.3422541320323944, + 0.19043545424938202, + -0.0008548554033041, + -0.2572883069515228, + -0.07540479302406311, + 0.3728642463684082, + 0.1556956171989441, + 0.25143498182296753, + 0.3982808589935303, + -0.06374488770961761, + 1.2231203317642212, + -0.10968422889709473, + 0.33747076988220215, + -0.31836065649986267, + -0.7198823094367981, + -0.12986871600151062, + 0.29604488611221313, + -0.11672129482030869, + -0.09768877178430557, + -0.32355695962905884, + -0.32170790433883667, + 0.772925615310669, + 0.4377495050430298, + 0.4019092321395874, + 0.24868252873420715, + -0.20795471966266632, + 0.33911827206611633, + 0.25403979420661926, + 0.740425705909729, + -0.0023050643503665924, + -0.0014199246652424335, + -0.023835964500904083, + 0.5577893257141113, + 0.4084702730178833, + -0.6137654781341553, + 0.31427550315856934, + 0.1671200394630432, + 0.42990463972091675, + -0.10713612288236618, + 0.1929057240486145, + 0.39512261748313904, + 0.02832973748445511, + 0.23959341645240784, + -0.3904724717140198, + 0.07071521878242493, + -0.23448273539543152, + -0.045834362506866455, + -0.3920102119445801, + 0.12550123035907745, + -0.07641668617725372, + 0.1177445501089096, + -0.16382837295532227, + -0.04351609945297241, + -0.17989569902420044, + -0.3018639087677002, + 0.2945743799209595, + -0.102686807513237, + -0.1018434688448906, + 0.38790401816368103, + 0.0037754219956696033, + -0.2793235778808594, + -0.08020198345184326, + -0.08601208031177521, + 0.4341553747653961, + -0.4251447916030884, + -0.520212709903717, + 0.038862720131874084, + -0.16037361323833466, + -0.187707781791687, + -1.4321205615997314, + 0.25040167570114136, + 0.2513490617275238, + 0.4095778465270996, + -0.15383170545101166, + -0.1970365047454834, + 0.0664326548576355, + -0.5120000839233398, + 0.14625345170497894, + 0.5470339059829712, + 0.16081543266773224, + -1.3522173166275024, + -0.2664583921432495, + -0.30799752473831177, + 0.07465652376413345, + -3.4156785011291504, + 0.5969945192337036, + 0.3869129717350006, + -0.06450837850570679, + 0.05342693626880646, + 0.03169531375169754, + 0.1446647197008133, + -0.39804089069366455, + -0.10258112102746964, + -0.015836335718631744, + 1.0973398685455322, + 0.18649457395076752, + -0.15576626360416412, + -0.3186410367488861, + 0.13894468545913696, + 0.14476513862609863, + 0.0723334476351738, + -0.903770387172699, + -0.1582639217376709, + 1.0489877462387085, + -0.23397715389728546, + 0.13380104303359985, + -0.5421732664108276, + -0.26003792881965637, + -0.30921775102615356, + 0.058794595301151276, + 0.09045907109975815, + -0.23062275350093842, + -0.7858332395553589, + 0.573412299156189, + -0.04981667920947075, + 0.046273816376924515, + -0.02573539689183235, + 0.13254570960998535, + 0.09863653779029846, + 0.11818578839302063, + -0.0038287234492599964, + 0.1650354415178299, + 0.05901471525430679, + 1.3306987285614014, + -0.22539158165454865, + -0.07518871128559113, + -0.0767320841550827, + 0.09051266312599182, + -0.012682117521762848, + -0.28373271226882935, + -0.2600076198577881, + -0.04200935363769531, + -0.3017107844352722, + 0.12247022986412048, + -0.18818867206573486, + -0.10976635664701462, + 0.332838237285614, + 0.020377181470394135, + -0.3352993428707123, + -0.0797988772392273, + 0.1501932144165039, + 0.22356842458248138, + 0.04479121416807175, + 0.06560423970222473, + 0.07341919094324112, + -0.31730592250823975, + 0.1418941766023636, + -0.1402827799320221, + 0.36797070503234863, + 0.30993038415908813, + -0.10613054037094116, + 0.14647987484931946, + 0.09050709009170532, + 0.285194456577301, + 0.29273685812950134, + 0.024201158434152603, + -0.09343147277832031, + 1.9184969663619995, + 0.11464692652225494, + -0.36675316095352173, + -0.0674867182970047, + 0.12474797666072845, + 0.22229890525341034, + -0.3987768590450287, + -0.08466816693544388, + 0.1553487777709961, + -0.27305084466934204, + -0.0366026908159256, + -0.047112807631492615, + -0.22416725754737854, + 0.17493072152137756, + 0.265971302986145, + -0.2910204231739044, + 0.16973046958446503, + 0.08220690488815308, + 0.5956001281738281, + 0.09030303359031677, + 0.13168635964393616, + 1.235334873199463, + -0.3905497193336487, + -0.1021251305937767, + -0.043660469353199005, + -0.11034201085567474, + -0.0493088960647583, + -0.6065950989723206, + -0.03869955241680145, + 0.45770758390426636, + -0.09315785765647888, + -0.46633240580558777, + 0.05350986123085022, + -0.0467543825507164, + -0.038792721927165985, + 0.0033799782395362854, + -0.07414507865905762, + -0.18012085556983948, + -0.3521263897418976, + -0.017500266432762146, + 0.12116925418376923, + 1.396146297454834, + -0.017155073583126068, + -0.13875812292099, + -0.24523146450519562, + 0.13496986031532288, + -0.19668564200401306, + -0.21181577444076538, + -0.007583752274513245, + 0.013218514621257782, + -0.07850178331136703, + -0.07332218438386917, + 0.28308480978012085, + -0.19268172979354858, + -0.2041386365890503, + -0.20269662141799927, + -0.20924612879753113, + 0.16055217385292053, + 0.16272540390491486, + 0.4930533766746521, + -0.003963962197303772, + 0.1597045361995697, + -0.44424736499786377, + 0.2934844493865967, + -0.041781239211559296, + -0.23613645136356354, + -0.24201780557632446, + 0.048831358551979065, + -0.111971914768219, + 0.01571694016456604, + 0.13743430376052856, + 0.1492549329996109, + 0.09188927710056305, + 0.14014583826065063, + -0.33559903502464294, + -0.49290525913238525, + 0.37143415212631226, + 0.3963988423347473, + 0.32383137941360474, + 0.016167260706424713, + -0.05711379647254944, + -0.28972041606903076, + -0.15260493755340576, + -0.41904082894325256, + -0.3152017891407013, + 0.13918673992156982, + -0.07215408980846405, + -0.12334959208965302, + 0.10978768765926361, + 0.056788861751556396, + -0.0707297995686531, + 0.074957937002182, + 0.27107352018356323, + -0.453804075717926, + -0.7589725255966187, + -0.05060712248086929, + 0.09454773366451263, + 0.27506691217422485, + 0.4235895276069641, + 0.3286527991294861, + 0.09448914974927902, + -0.19911962747573853, + -0.15796759724617004, + 0.11407880485057831, + 0.016503088176250458, + -0.2483530044555664, + 0.14909900724887848, + -0.23051226139068604, + -0.1739245504140854, + -0.22384187579154968, + -1.5386677980422974, + 0.03586716577410698, + 0.6773842573165894, + -0.1819787174463272, + 0.16563987731933594, + 0.3070336580276489, + -0.10822993516921997, + -0.20928020775318146, + 0.3096296489238739, + -0.023737967014312744, + -0.7572632431983948, + 0.015478014945983887, + 0.07465030252933502, + 0.02130444347858429, + -0.0007406473159790039, + 0.10841965675354004, + -0.09127733111381531, + -0.7489304542541504, + -0.019054800271987915, + 0.032951146364212036, + 1.62890625, + 0.15724734961986542, + 0.2263127565383911, + -0.19458574056625366, + -0.11747680604457855, + 0.22156110405921936, + -0.0840284675359726, + 0.6939624547958374, + 0.1923525482416153, + -0.1416904330253601, + 0.1980503797531128, + 0.3631080389022827, + 0.20129512250423431, + 0.35118818283081055, + -0.08023624122142792 + ], + "vector": [ + -0.008739987388253212, + -0.0020578650292009115, + -0.005660929251462221, + -0.0031292997300624847, + -0.012130355462431908, + 0.0069312434643507, + -0.0015248821582645178, + 0.008963811211287975, + -0.0030532539822161198, + 0.013043700717389584, + 0.007688365876674652, + 0.019480235874652863, + 0.0029261333402246237, + 0.009370416402816772, + -0.010571996681392193, + 0.001211088732816279, + 0.0025932795833796263, + -0.008653943426907063, + -0.01485888659954071, + 0.013749195262789726, + 0.0048754955641925335, + -0.0005135618266649544, + 0.005461433902382851, + -0.017456797882914543, + 0.0010997274657711387, + 0.006843550596386194, + -0.05108608305454254, + -0.0007987683056853712, + -0.0008008134318515658, + -0.00706887012347579, + -0.00501686055213213, + -0.03175275772809982, + 0.015351171605288982, + 0.011787107214331627, + 0.0012908183271065354, + 0.0014089305186644197, + 0.0036106945481151342, + -0.01655656285583973, + -0.008568435907363892, + -0.002384364604949951, + -0.02094235271215439, + 0.004346828907728195, + -0.0014842142118141055, + -0.00016634359781164676, + 0.008629544638097286, + -0.0029238727875053883, + 0.0001017945833154954, + 0.006230328697711229, + -0.006233924999833107, + -0.0006930333911441267, + 0.001973645528778434, + -0.017895489931106567, + 0.010857250541448593, + -0.002176805166527629, + 0.035329557955265045, + -0.006714997347444296, + 0.007612517103552818, + 0.00021699104399885982, + -0.029441824182868004, + 0.010607829317450523, + 0.006870131939649582, + -0.01325203850865364, + 0.02108640968799591, + -0.005082159303128719, + 0.011319694109261036, + -0.008622195571660995, + 0.0002192751271650195, + 0.0175991989672184, + 0.05460871756076813, + 0.01038029883056879, + 0.009809095412492752, + -0.0021624041255563498, + -0.004586267750710249, + -0.01125186774879694, + 0.032946959137916565, + 0.017690638080239296, + -0.012174292467534542, + -0.008664628490805626, + -0.0026910812593996525, + -0.007148542441427708, + 0.03208426386117935, + -0.007316972594708204, + 0.008216083981096745, + -0.006455928552895784, + 0.013286269269883633, + 0.000863037072122097, + 0.0017806236864998937, + 0.006507882382720709, + 0.0001861558557720855, + -0.007736981380730867, + -0.01726527139544487, + -0.01436751987785101, + -0.009469324722886086, + 0.03909846022725105, + -0.0029260755982249975, + -0.05300265550613403, + -0.00022947728575672954, + -0.017043551430106163, + 0.010986576788127422, + -6.840701826149598e-05, + -0.005042674019932747, + -0.00499379076063633, + -0.014713496901094913, + -0.029907282441854477, + -0.0009287416469305754, + -0.01164479460567236, + -0.0019511792343109846, + 0.0017089061439037323, + -0.008986717090010643, + -0.000340814731316641, + 0.005835560616105795, + 0.004530016798526049, + -0.012071951292455196, + 0.011908603832125664, + 0.006617473904043436, + 0.0002607436617836356, + 0.0035168761387467384, + -0.0241923276335001, + -0.011998630128800869, + 0.008097924292087555, + 0.011563153006136417, + 0.01249881274998188, + 0.02366616204380989, + -0.011586916632950306, + -0.0007419823086820543, + -0.01720825769007206, + 0.01403800118714571, + -0.012356454506516457, + 0.0026594342198222876, + 0.007547900080680847, + 0.027183379977941513, + -0.0013669570907950401, + 0.0026863375678658485, + 0.003520071040838957, + 0.04323931783437729, + 0.04335005581378937, + 0.002393992617726326, + -0.0027031509671360254, + -0.010218149982392788, + 0.014262344688177109, + 0.009919542819261551, + 0.011971188709139824, + -0.03754726052284241, + 0.013666357845067978, + 0.008943084627389908, + 0.007474868092685938, + 0.006345917005091906, + 0.00894855335354805, + -0.007292125839740038, + 0.019661759957671165, + 0.0016267052851617336, + -0.004246727097779512, + 0.008345198817551136, + -0.018062205985188484, + 0.014332315884530544, + 0.015139780938625336, + 0.00023668688663747162, + -0.009770603850483894, + 0.000979465083219111, + 0.01475574728101492, + -0.005505737382918596, + -0.006571517325937748, + -0.0011243311455473304, + 0.007583752740174532, + 0.009518149308860302, + -0.0025751683861017227, + -0.011164885014295578, + -0.03279101476073265, + -0.005421229638159275, + 0.01382337138056755, + 0.028660466894507408, + -0.016551418229937553, + -0.024584805592894554, + -0.013965871185064316, + 0.0016943379305303097, + -0.028123581781983376, + -0.005447952542454004, + -0.013318033888936043, + 0.009581117890775204, + -0.007039120886474848, + 0.020318983122706413, + 0.01338159292936325, + -0.002057824982330203, + 0.001276173978112638, + 0.0024664606899023056, + 0.006143839564174414, + 0.00854932889342308, + 0.001579974079504609, + 0.006195941474288702, + -0.00645994720980525, + 0.012735850177705288, + 0.018409837037324905, + 0.040161795914173126, + 0.003505764761939645, + -0.000973886635620147, + -0.0034103605430573225, + -0.06541138142347336, + -0.002764276694506407, + -0.011994978412985802, + 0.016102099791169167, + 0.039707429707050323, + -0.00417516240850091, + -0.00600042287260294, + -0.005009700544178486, + 0.006725013721734285, + 0.001281482633203268, + 0.001412936020642519, + 0.055454228073358536, + 0.02109500765800476, + 0.001957789994776249, + 0.0008736145100556314, + -0.004137636628001928, + -0.002966846339404583, + -0.011638300493359566, + -0.004683345556259155, + 0.017078155651688576, + 0.005943203344941139, + 0.0032332439441233873, + 0.030709408223628998, + 0.01148904673755169, + -0.0006412259535863996, + -0.005803159438073635, + 0.005665436387062073, + -0.000836260849609971, + 0.04856201261281967, + -0.020475801080465317, + -0.014973296783864498, + -0.008342877961695194, + 0.001648275414481759, + 0.03045962192118168, + -0.0002203402982559055, + 0.0003020932199433446, + 0.0007164443959482014, + -0.04560951888561249, + 0.012075397185981274, + -0.0021369950845837593, + -0.00341975805349648, + -0.011059454642236233, + -0.0017876785714179277, + 0.00043306619045324624, + -0.005894012283533812, + -0.021762432530522346, + -0.005033538676798344, + -0.09669768810272217, + 0.005631122272461653, + 0.01254910696297884, + -0.01433263998478651, + -0.002763933502137661, + 0.028281228616833687, + 0.0024740055669099092, + -0.01124854851514101, + -0.023304730653762817, + -0.0034766201861202717, + 0.008125446736812592, + -0.0026962244883179665, + -0.004425792023539543, + 0.010872682556509972, + -0.009647194296121597, + 0.006684269290417433, + 0.0020247020293027163, + 0.007896657101809978, + -0.00022361174342222512, + 0.010498974472284317, + 0.007473832927644253, + 0.0049243164248764515, + 0.005010168068110943, + -0.002108899177983403, + -0.007082952186465263, + 0.017497148364782333, + 0.005998837295919657, + -0.024885285645723343, + 0.00647524232044816, + -0.014382174238562584, + -0.010682103224098682, + 0.004888242110610008, + -0.013801154680550098, + -0.0058499909937381744, + 0.006819133181124926, + 0.0065817637369036674, + 0.002280793385580182, + -0.00045527276233769953, + 0.008582640439271927, + 0.03464283421635628, + -0.005369209218770266, + 0.009914802387356758, + 0.0007567122811451554, + -0.016895443201065063, + 0.022884147241711617, + -3.30004004354123e-05, + 0.003946153912693262, + -0.0012258216738700867, + -0.01804017461836338, + -0.04526977986097336, + -0.019105639308691025, + 0.011002947576344013, + 0.0060001215897500515, + -0.003708310890942812, + 0.0033929231576621532, + 0.011140882037580013, + -0.0006404129089787602, + 0.010232488624751568, + -0.004524343181401491, + 0.010279729962348938, + 0.011381267569959164, + -0.0006436364492401481, + 0.006242748815566301, + -0.023396262899041176, + -0.0093177929520607, + 0.013338985852897167, + -0.013247529976069927, + -0.015143872238695621, + -0.0015442059375345707, + 0.008766353130340576, + -0.005232967436313629, + -0.002701842924579978, + 0.013784844428300858, + 0.004387685097754002, + 0.01122150756418705, + 0.0019556651823222637, + 0.020168978720903397, + -0.005680745933204889, + 0.006164415739476681, + -0.004000451415777206, + 0.008383320644497871, + 0.016542211174964905, + -0.001215206109918654, + 0.0056253457441926, + -0.019435973837971687, + 0.0025604499969631433, + 0.007958803325891495, + -0.01784191094338894, + -0.009981846436858177, + 0.0060343011282384396, + 0.00838636327534914, + -0.006764155346900225, + 0.014670184813439846, + 0.005739252083003521, + -0.0008154076058417559, + -0.01887577958405018, + 0.016930485144257545, + 0.00829631369560957, + 0.009249447844922543, + 0.01019202172756195, + -0.06202411279082298, + 0.01425737515091896, + -0.005278739612549543, + -0.007868513464927673, + -0.00910857878625393, + -0.010299600660800934, + -0.0007919053314253688, + -0.010932201519608498, + 0.011864736676216125, + 0.015973569825291634, + 0.0012670747237280011, + -0.0030958387069404125, + -0.000913888739887625, + 0.010273035615682602, + -0.01749103143811226, + 0.00841814186424017, + -0.010361162945628166, + -0.00029557227389886975, + -0.04541927948594093, + -0.006111313588917255, + -0.012966806069016457, + 0.005419944878667593, + 0.005248846486210823, + 0.008600452914834023, + -0.0032291568350046873, + 0.038003262132406235, + -0.0014658779837191105, + 0.00033129690564237535, + 0.0052539329044520855, + -0.00859530083835125, + 0.04097167029976845, + -0.002040233463048935, + 0.0008819274371489882, + 0.010446446016430855, + -0.0075681498274207115, + 0.010515605099499226, + 0.0016689798794686794, + -0.0009866293985396624, + -0.017895866185426712, + 0.06848808377981186, + 0.011471549049019814, + -0.011938274838030338, + -0.0003871584194712341, + 0.0023588750045746565, + -0.0021231903228908777, + -0.01147023867815733, + -0.020627720281481743, + 0.008221066556870937, + -0.017787186428904533, + 0.01428732555359602, + -0.002441833494231105, + -0.008884450420737267, + -0.016803979873657227, + -0.0075775939039886, + 0.01791013963520527, + -0.0015843501314520836, + 0.0006762244738638401, + -0.005660229362547398, + 0.009644383564591408, + -0.0032203986775130033, + 0.010670811869204044, + 0.00912038516253233, + 0.006091481540352106, + 0.007267254404723644, + 0.004729109816253185, + 0.0006131172995083034, + 0.01180411595851183, + -0.010930242016911507, + 0.010759160853922367, + 0.016186850145459175, + -0.013979910872876644, + -0.01571178250014782, + 0.002758431015536189, + 0.001278263283893466, + -0.007573646027594805, + -0.03563989698886871, + -0.019591305404901505, + -0.0017326874658465385, + -0.015154480934143066, + 0.04107162728905678, + -0.007510509807616472, + 0.004741013515740633, + 0.0019960859790444374, + -0.007231559604406357, + -0.0025398223660886288, + -0.0042618694715201855, + 0.017143310979008675, + -0.054531633853912354, + -0.002105504972860217, + 0.0378292053937912, + 0.004156547598540783, + -0.013157430104911327, + 0.005662389099597931, + -0.00319060985930264, + 0.009393783286213875, + 0.009335405193269253, + 0.006340275052934885, + -0.017305556684732437, + -0.0008251534891314805, + -0.0030606635846197605, + -0.016804343089461327, + -0.011159881949424744, + 0.015843868255615234, + 0.01071859523653984, + -0.016884906217455864, + -0.015566492453217506, + 0.01216560322791338, + -0.0012252957094460726, + 0.0072043947875499725, + 0.0065025268122553825, + 0.013868729583919048, + 0.008238444104790688, + -0.011672968044877052, + 0.002345854649320245, + 0.0028260680846869946, + -0.020478883758187294, + 0.005946684163063765, + 0.009143230505287647, + -0.003240528516471386, + -0.025942210108041763, + -0.01671081781387329, + 0.0175650455057621, + 0.012700274586677551, + 0.010408592410385609, + 0.012465502135455608, + -0.001786164939403534, + 0.035477541387081146, + 0.00793660618364811, + -0.021791379898786545, + -0.005112502723932266, + 0.003980375826358795, + -0.031881581991910934, + 0.004096388351172209, + 0.0040695276111364365, + -0.0037872183602303267, + -0.004104746505618095, + -0.003217998193576932, + 0.0038905306719243526, + 0.00021221004135441035, + 0.004002193920314312, + 0.002306305104866624, + -0.0075285970233380795, + 0.004804062191396952, + -0.03876873105764389, + 0.01865711249411106, + -0.012207916006445885, + -0.004993203096091747, + 0.005799106787890196, + -0.005475244484841824, + 0.015144482254981995, + 0.006550896912813187, + 0.0024697252083569765, + 0.009473418816924095, + -0.015562101267278194, + 0.003430107841268182, + 0.002699104370549321, + 0.0005127406911924481, + 0.011023162864148617, + -0.010985410772264004, + -0.004360454622656107, + -0.011176752857863903, + 0.004159034229815006, + -0.021130157634615898, + 0.006745184771716595, + 0.002198907546699047, + -0.0027932007797062397, + 0.005042670760303736, + -0.004349318332970142, + -0.020301353186368942, + 0.023246342316269875, + -0.009790080599486828, + -0.010705506429076195, + 0.005498905666172504, + -0.0074007161892950535, + -0.0008500681724399328, + -0.0023321143817156553, + -0.002160079311579466, + 0.007819299586117268, + -0.0017074444331228733, + -0.012386573478579521, + 0.04952754080295563, + 0.013682840391993523, + -0.013462924398481846, + 0.005486082751303911, + 0.0005620337906293571, + -0.007151598110795021, + -0.006960781291127205, + -0.003102158661931753, + 0.0004194802895653993, + 0.012780996970832348, + -0.012512440793216228, + 0.005845332983881235, + 0.0014142610598355532, + -0.01247451826930046, + 0.019774364307522774, + -0.011828172020614147, + -0.0006559634348377585, + -0.006015803664922714, + -0.004053480923175812, + 0.01365499384701252, + -0.019680803641676903, + 0.007319328375160694, + -0.008428550325334072, + -0.06122240051627159, + -0.023553742095828056, + 0.02049410156905651, + 0.0039807818830013275, + -0.014830649830400944, + -0.027415867894887924, + 0.08141227811574936, + -0.00682349968701601, + 0.02458992972970009, + 0.004430070053786039, + 0.01644310913980007, + -0.00848865881562233, + 0.0034365563187748194, + 0.01600806787610054, + -0.029053641483187675, + -0.002218646230176091, + -0.001913397922180593, + -0.012086075730621815, + 0.0049707223661243916, + -0.01498041395097971, + -0.007618994452059269, + 0.00957462377846241, + 0.006983153056353331, + -0.022767649963498116, + 0.013489257544279099, + 0.00274272239767015, + -0.010904351249337196, + 0.0007805767236277461, + 0.0022658605594187975, + -0.00475236214697361, + -0.014014885760843754, + -0.015377268195152283, + -0.013842105865478516, + -0.012441006489098072, + 0.012843841686844826, + 0.0023216356057673693, + 0.003275170223787427, + 0.002205710858106613, + 0.008979864418506622, + -0.003342884359881282, + -0.0024673473089933395, + 0.012061439454555511, + 0.004006804432719946, + -0.0011202519526705146, + 0.005412123631685972, + -0.0004668864712584764, + 0.026576407253742218, + 0.0005352021544240415, + -0.01635289005935192, + 0.003030636580660939, + -0.0064590927213430405, + -0.00201420858502388, + 0.01869533397257328, + -0.004870250821113586, + 0.003388841636478901, + 0.010707244277000427, + 0.015815021470189095, + -0.004491280764341354, + 0.004839646629989147, + 0.00018152542179450393, + -0.006852541118860245, + 0.008365347981452942, + 0.0009332739282399416, + -0.024313155561685562, + -0.014165392145514488, + -0.0292147696018219, + 0.0018391998019069433, + 0.006249245256185532, + 0.001957540400326252, + -0.02084619365632534, + 0.00947682186961174, + 0.0011422551469877362, + -0.00618618493899703, + 0.007902784273028374, + 0.0059517459012568, + -0.012188168242573738, + -0.00613531656563282, + 0.00669632013887167, + 0.007487755734473467, + -0.00038354966090992093, + 0.023847172036767006, + -0.007942513562738895, + 0.019774211570620537, + -0.0030607255175709724, + -0.00105297623667866, + 0.0003000654687639326, + -0.011052010580897331, + -0.007715329527854919, + 0.016368556767702103, + -0.0007235771627165377, + 0.00016470318951178342, + 0.0048617469146847725, + -0.0016771467635408044, + -0.004655139520764351, + -0.0011674343841150403, + 0.009405207820236683, + 0.0007498383056372404, + -0.022910309955477715, + 0.05222067981958389, + -0.00701047433540225, + -0.011239557527005672, + 0.031619541347026825, + 0.023640399798750877, + -0.01549786701798439, + -0.0034488257952034473, + 0.002364481333643198, + -0.012149580754339695, + 0.0021474233362823725, + 0.005607149098068476, + 0.0007267693290486932, + -0.003429832635447383, + 0.0061265514232218266, + 0.04039375111460686, + 0.02679716795682907, + 0.008334535174071789, + -0.016609681770205498, + -0.004820398520678282, + -0.0017490885220468044, + -0.005326482467353344, + -0.0587148442864418, + 0.01022416166961193, + -0.014569094404578209, + 0.008464365266263485, + 0.002073249313980341, + 0.002266722498461604, + 0.006329396273940802, + -0.003597741946578026, + 0.005079342518001795, + -0.007883686572313309, + -0.014796454459428787, + -0.0029644949827343225, + -0.014992124401032925, + -0.01751714013516903, + 0.0035434889141470194, + -0.005362780299037695, + -0.023241622373461723, + 0.02035948820412159, + -0.006811697967350483, + 0.010037584230303764, + -0.0008792997687123716, + -0.00872939545661211, + 0.006486453581601381, + 0.0015888030175119638, + -0.0008415463962592185, + 0.0019296847749501467, + 0.029849961400032043, + -0.006302280817180872, + -0.009303252212703228, + 0.007460569962859154, + -0.012470625340938568, + 0.001495777745731175, + 0.006755275651812553, + -0.004776415880769491, + 0.012889588251709938, + -0.013865642249584198, + -0.010252762585878372, + -0.005512203089892864, + -0.002879651263356209, + 0.03056185320019722, + 0.03521709144115448, + -0.0004936896148137748, + 0.007805933710187674, + -0.0017310335533693433, + -0.0014811637811362743, + -0.0022193717304617167, + -0.006956981960684061, + -0.0014808124396950006, + 0.0031565548852086067, + -0.016645783558487892, + -0.002925703302025795, + 0.07190724462270737, + 0.016092106699943542, + -0.006199203431606293, + -0.002485298551619053, + 0.0016808290965855122, + -0.005833413917571306, + 0.0035183504223823547, + -0.00753236748278141, + -0.0010365870548412204, + 0.0395229198038578, + -0.0221943911164999, + -0.006386174820363522, + 0.0018709991127252579, + 0.0032170473132282495, + -0.0004731838416773826, + -0.014947772957384586, + -0.010388016700744629, + -0.006462340708822012, + 0.005682674236595631, + 0.000164279859745875, + 0.05436059460043907, + -0.006377663463354111, + 0.007345810532569885, + -0.00896317046135664, + -0.004637245554476976, + 0.0016158318612724543, + 0.002428115112707019, + 0.004546269308775663, + -0.008592098020017147, + -0.008122222498059273, + -0.009158399887382984, + -0.02709696814417839, + 0.01122902613133192, + -0.005428655538707972, + -0.0023021288216114044, + 0.028318744152784348, + 0.0119436364620924, + -0.010865080170333385, + -3.198469357812428e-06, + 0.009840401820838451, + -0.007977022789418697, + -0.007772322744131088, + -0.007426556199789047, + -0.006624063942581415, + -0.010147903114557266, + -0.011933998204767704, + 0.016804683953523636, + -0.0087592089548707, + -0.004480254370719194, + -0.009143484756350517, + 0.011252539232373238, + -0.0038115137722343206, + -0.0020442581735551357, + 0.0017646949272602797, + 0.004766198340803385, + -0.0054192449897527695, + -0.005868841893970966, + 0.01517194602638483, + 0.006100265774875879, + -0.0004884870140813291, + 0.017179301008582115, + -0.05860838294029236, + -0.009797390550374985, + -0.022800134494900703, + -0.004558027256280184, + -0.008416300639510155, + -0.000367935310350731, + 0.007648957893252373, + 0.0036126652266830206, + -0.0015260374639183283, + 0.015537490136921406, + 2.0856950868619606e-05, + -0.005602914374321699, + 0.0007879892946220934, + -0.010090203024446964, + 0.012841720134019852, + -0.016584862023591995, + 0.007639202289283276, + 0.011589117348194122, + 0.007770142517983913, + -0.011312873102724552, + -0.009509865194559097, + 0.02725776843726635, + 0.0020945367868989706, + -0.020235303789377213, + -0.002962719416245818, + 0.016721757128834724, + -0.00900049228221178, + 0.006905103102326393, + -0.007384371478110552, + 0.02203880436718464, + 0.02353423833847046, + -0.017166990786790848, + -0.037429410964250565, + -0.019029777497053146, + -0.005733110476285219, + 0.0016100534703582525, + 0.047491125762462616, + -0.009302141144871712, + -0.0013045377563685179, + 0.010092890821397305, + 0.00022784942120779306, + 0.003978412598371506, + -0.011737221851944923, + 0.0031924527138471603, + 0.009510066360235214, + -0.04409119486808777, + 0.002539405133575201, + 0.0034890207462012768, + -0.02042744867503643, + 0.0027729314751923084, + -0.003347523044794798, + 0.011567408218979836, + 0.006379182916134596, + -0.016921717673540115, + -0.004348176997154951, + 0.01545044220983982, + 0.01871066354215145, + -0.010575261898338795, + 0.0029437376651912928, + 0.0009404406300745904, + -0.012019524350762367, + 0.0060618785209953785, + 0.003977195825427771, + -0.0009934380650520325, + 0.0013473357539623976, + 0.017836298793554306, + -0.006226531695574522, + 0.002952652983367443, + 0.002796175191178918, + 0.007184898480772972, + 0.00041563346167095006, + 0.006299658212810755, + 0.013978545553982258, + -0.0036581410095095634, + -0.027393829077482224, + -0.010972035117447376, + 0.017264949157834053, + 0.0005584504106082022, + -0.006784666329622269, + 0.009057038463652134, + 0.0038283744361251593, + 0.0012832399224862456, + -0.001979279099032283, + -0.01354947779327631, + -0.012052653357386589, + 0.003569964086636901, + 0.00022207759320735931, + -0.004202044568955898, + -0.001476131146773696, + -0.0019580216612666845, + -0.0027454672381281853, + -0.006979843135923147, + -0.007324109319597483, + 2.730042251641862e-05, + 0.008156617172062397, + -0.015500538051128387, + 0.005888000130653381, + 0.012197930365800858, + -0.006003891117870808, + 0.0721779391169548, + -0.001648212200962007, + 0.0013735194224864244, + 0.0025213873013854027, + -0.0015172824496403337, + 0.008359367027878761, + -0.005216612014919519, + -0.003179925959557295, + 0.024271100759506226, + 0.001772996154613793, + 0.0028512971475720406, + 0.014500180259346962, + 0.057962220162153244, + -0.02506607584655285, + -0.005050403065979481, + -0.0005067929159849882, + 0.008652766235172749, + 0.009043525904417038, + -0.014099029824137688, + 0.0024148127995431423, + -0.01131504774093628, + -0.012693310156464577, + -0.019123408943414688, + 0.0049188388511538506, + -0.006793682929128408, + -0.05547945946455002, + 0.0014190706424415112, + -0.0012943691108375788, + -0.0050414917059242725, + 0.020402342081069946, + 0.0027298524510115385, + -0.006453793961554766, + 0.012357459403574467, + 0.0034721100237220526, + -0.0057891495525836945, + 0.02831730619072914, + -0.004214297980070114, + -0.0015964909689500928, + 0.024593142792582512, + 0.0005570751964114606, + -0.02140393853187561, + 0.002853923011571169, + 0.011101290583610535, + 0.002580114873126149, + 0.008123988285660744, + -0.010941791348159313, + 0.010192020796239376, + 0.021170832216739655, + -0.005503133870661259, + -0.011926776729524136, + 0.004825195297598839, + -0.006026833318173885, + 0.005281359888613224, + 0.020950254052877426, + -0.005562444683164358, + -0.01180147286504507, + 0.007173061370849609, + -0.008953722193837166, + 0.00443628104403615, + 0.005544655490666628, + 0.0023520479444414377, + 0.00440977793186903, + -0.004692659247666597, + 0.017456872388720512, + -0.021260466426610947, + -0.007252403534948826, + 0.013137424364686012, + -0.014273141510784626, + -0.0037218674551695585, + -0.019629739224910736, + -0.011419550515711308, + 0.008639984764158726, + 0.004894040524959564, + 0.0028853367548435926, + 0.005426527466624975, + -0.014538958668708801, + 0.0028421340975910425, + 0.008986825123429298, + -0.002232716651633382, + -0.013246062211692333, + -0.008081418462097645, + 0.00124129350297153, + 0.011598045937716961, + 0.03291286528110504, + -0.011375484988093376, + 0.01552053727209568, + -0.009405246004462242, + -0.010738078504800797, + -0.0014962760033085942, + -0.0010832269908860326, + 0.0021808575838804245, + -0.0036437702365219593, + -0.006654564291238785, + -0.0022634021006524563, + -0.002463387558236718, + -0.007344596553593874, + 0.012926855124533176, + -0.0008448862936347723, + 0.004101535305380821, + 0.011439019814133644, + -0.00897909700870514, + -0.0002557415864430368, + 0.003868515370413661, + -0.008450408466160297, + 0.004235037136822939, + 0.0017339492915198207, + -0.062382299453020096, + 0.01271055731922388, + 0.006973227486014366, + -0.00789096113294363, + -0.006678725127130747, + -0.030076295137405396, + -0.007225505542010069, + -0.03130859136581421, + -0.011028125882148743, + -0.011048215441405773, + -0.007838408462703228, + -0.020595967769622803, + 0.032039348036050797, + -0.009841240011155605, + -0.0037231920287013054, + 0.008714904077351093, + -0.0026316391304135323, + -0.0018776479410007596, + -0.009686058387160301, + -0.018073702231049538, + 0.020254386588931084, + 0.01434572134166956, + -0.008119847625494003, + 0.007027097977697849, + -0.0008215759880840778, + 0.027660107240080833, + 0.002252046950161457, + 0.004008207004517317, + 0.00767779815942049, + 0.015041129663586617, + 0.04343462362885475, + 0.011638099327683449, + -0.006910477299243212, + -0.0022111735306680202, + -0.004659499507397413, + 0.00633823499083519, + -0.006039241328835487, + 0.015872647985816002, + -0.009742273949086666, + 0.0016052046557888389, + 0.0023700243327766657, + -0.0075555527582764626, + 0.008368738926947117, + 0.004577543120831251, + 0.00386857520788908, + -0.004773242399096489, + -0.00015366787556558847, + 0.001274922746233642, + -0.004030040930956602, + 0.06307609379291534, + -0.012366233393549919, + -0.018711015582084656, + -0.019279638305306435, + 0.012631033547222614, + -0.021301668137311935, + 1.918573434522841e-05, + -0.017177198082208633, + -0.020194966346025467, + 0.008905677124857903, + -0.00999949686229229, + -0.011065758764743805, + -0.024138666689395905, + 0.005687932018190622, + -0.011736082844436169, + -0.03972839564085007, + -0.00161434942856431, + 0.014159025624394417, + 0.009234970435500145, + -0.009803925640881062, + 0.012781420722603798, + 0.008598544634878635, + 0.009978719986975193, + -0.01634320802986622, + 0.02746208943426609, + -0.02406032755970955, + 0.0016001489711925387, + -0.0069883777759969234, + 0.006855095271021128, + -0.048630405217409134, + -0.004928173962980509, + -0.02065172791481018, + -0.007985726930201054, + 0.015356802381575108, + -0.015123730525374413, + 0.008178317919373512, + 0.05771102383732796, + -0.0037993101868778467, + 0.005288945976644754, + -0.022924214601516724, + -0.00033664883812889457, + -0.006096011959016323, + 0.005360588431358337, + -0.008634933270514011, + 0.008740469813346863, + 0.003936635330319405, + -0.005305078346282244, + -0.006361819338053465, + -0.0015028436901047826, + -0.009599373675882816, + 0.006404712330549955, + 0.010836882516741753, + -0.006240964867174625, + 0.004939766135066748, + -0.021471112966537476, + 0.027211526408791542, + 0.0027465426828712225, + 0.0010546176927164197, + 0.01005254965275526, + 0.0009720205562189221, + 0.003177025355398655, + -0.028723228722810745, + -0.002039292361587286, + 0.002737379400059581, + -0.0040489970706403255, + 0.0011567556066438556, + -0.004411946050822735, + 0.004441726487129927, + -0.0034487221855670214, + -0.0006643812521360815, + 0.0025077827740460634, + 0.0011209161020815372, + 0.005257848184555769, + -0.001276583643630147, + -0.003553043818101287, + -0.005343074444681406, + 0.004695907700806856, + -0.008997787721455097, + -0.005247010383754969, + 0.013989400118589401, + 0.007447779178619385, + -0.017502235248684883, + -0.007191561162471771, + 0.006984935607761145, + -0.011307240463793278, + -0.013023081235587597, + 0.03404843807220459, + -0.007068873383104801, + -0.001973365433514118, + -0.0037180946674197912, + -0.0022115560714155436, + 0.00112040969543159, + -0.011372512206435204, + 0.00668042479082942, + -0.0008883791160769761, + 0.009860941208899021, + -0.012757883407175541, + -0.0008891993784345686, + -0.01894133910536766, + -0.001364512019790709, + 0.0030621951445937157, + 0.0049659088253974915, + 0.011336431838572025, + 0.02205491252243519, + -0.005554096773266792, + 0.008224575780332088, + 0.0007286541513167322, + -0.002834402024745941, + -0.016580946743488312, + -0.009290245361626148, + -0.000134658272145316, + 0.007624647580087185, + 0.004777089226990938, + 0.021015502512454987, + 0.010097687132656574, + 0.0017453697510063648, + -0.03525051847100258, + -0.011925983242690563, + 0.0023549729958176613, + -0.019321564584970474, + 0.0002101652935380116, + 0.002982013626024127, + 0.004220912698656321, + -0.003602509619668126, + -0.005151521414518356, + -0.0021374202333390713, + -0.015580900944769382, + -0.01186843030154705, + 0.007030737120658159, + -0.008843538351356983, + -0.007877223193645477, + -0.040489502251148224, + 0.022178471088409424, + 0.001675418228842318, + -0.015899796038866043, + 0.00685032969340682, + -0.009106690995395184, + -0.008903656154870987, + 0.007727577351033688, + -0.0017934002680703998, + -0.038994938135147095, + 0.0006608784315176308, + -0.0015644039958715439, + 0.006826966069638729, + -0.00700220325961709, + 0.005950668826699257, + -0.002643023384734988, + -0.010409651324152946, + -0.013459514826536179, + 0.019697241485118866, + 0.019827136769890785, + -0.010156712494790554, + 0.007670563645660877, + -0.005910125095397234, + 0.0005762606160715222, + -0.007185311522334814, + -0.03706412762403488, + 0.006510872393846512, + 0.02481449767947197, + 0.005283053498715162, + 0.004028254188597202, + 0.002737071132287383, + 0.003408802207559347, + 0.0003504751657601446, + 0.003534305142238736, + 0.0019074000883847475, + 0.00205634324811399, + -0.01021463144570589, + -0.013173175044357777, + 0.004209176171571016, + -0.0018080439185723662, + 0.004365397617220879, + -0.007653806358575821, + 0.0008137461845763028, + 0.012512302957475185, + -0.006360778585076332, + 0.006380361504852772, + 0.0069295489229261875, + 0.01776544190943241, + -0.01158454455435276, + 0.0016052986029535532, + -0.013090580701828003, + 0.027400823310017586, + 0.01321976725012064, + 0.00664861686527729, + -0.0018439081031829119, + 0.004303828813135624, + 0.0021500003058463335, + 0.013547942042350769, + 0.004022570326924324, + -0.011623870581388474, + -0.024959392845630646, + -0.0009628268308006227, + 0.0029878297355026007, + -0.013089603744447231, + -0.003999932669103146, + -0.011792540550231934, + 0.0034810954239219427, + -0.016239622607827187, + 0.0041487254202365875, + 0.03264255076646805, + -0.0030797007493674755, + -0.009467882104218006, + 0.006193414330482483, + 0.0024670392740517855, + -0.006817881017923355, + -0.006771163083612919, + -0.003681751899421215, + 0.042933378368616104, + 0.009700929746031761, + 0.005347974132746458, + -0.0038072229363024235, + -0.005638846196234226, + -0.0023408406414091587, + -0.0030508474446833134, + -0.005444419104605913, + -0.0017783009679988027, + -0.009559930302202702, + -0.020970091223716736, + -0.012212601490318775, + -0.010920481756329536, + 0.0003503373300191015, + -0.003636921988800168, + -0.00751459738239646, + 0.003995297010987997, + 0.019304366782307625, + -0.009128089062869549, + -0.00014790381828788668, + -0.01424094382673502, + -0.018274599686264992, + 0.001482617575675249, + 0.01308915764093399, + 0.010002071969211102, + -0.011033102869987488, + 0.010824182070791721, + -0.005874080583453178, + -0.0007212260388769209, + -0.007249017246067524, + 0.018262246623635292, + 0.004234443884342909, + -0.02227569743990898, + 0.006592180114239454, + -0.0017435222398489714, + -0.01017126813530922, + -0.018075086176395416, + 0.004491310566663742, + 0.004869748372584581, + -0.014283948577940464, + 0.0016958721680566669, + 0.013390393927693367, + -0.016981281340122223, + -0.01073899120092392, + -0.0016703567234799266, + -0.02843376249074936, + -0.01977413147687912, + 0.017369909211993217, + -0.04429076239466667, + 0.003591489279642701, + -0.006444317754358053, + -0.009128821082413197, + -0.05713913217186928, + -0.004605082329362631, + 0.008760623633861542, + 0.040238432586193085, + -0.002310065785422921, + 0.0003299292002338916, + 0.009591157548129559, + 0.003873545443639159, + -0.019546009600162506, + 0.0064872996881604195, + -0.014539835974574089, + 0.007733186241239309, + 0.00042792040039785206, + 0.004570014774799347, + -0.011018354445695877, + 0.007398949004709721, + 0.0712379440665245, + -0.0031667763832956553, + -0.007973686791956425, + -0.004672076087445021, + -0.0055651539005339146, + 0.01779746450483799, + -0.008403638377785683, + 0.012216312810778618, + 0.011224833317101002, + -0.0009338542586192489, + 0.000568100658711046, + 0.022032232955098152, + -0.002657144097611308, + -0.007618148811161518, + -0.0036152370739728212, + -0.0013493277365341783, + -0.004865782335400581, + 0.0018911311635747552, + 0.006045921705663204, + -7.875672054069582e-06, + -0.010522106662392616, + -0.005737972911447287, + -0.004154273774474859, + -0.009755954146385193, + 0.005600467789918184, + -0.0013664375292137265, + -0.013494574464857578, + -0.005795917473733425, + 0.0038561271503567696, + 0.01590624451637268, + 0.013070199638605118, + 0.007843132130801678, + -0.008806531317532063, + -0.015066994354128838, + -0.008680062368512154, + -0.01624372787773609, + -0.001204970176331699, + -0.004562223795801401, + 0.0031358771957457066, + 0.0023440057411789894, + -0.0023614284582436085, + -0.00027386986766941845, + -0.006395338568836451, + 0.023704664781689644, + 0.0016351031372323632, + 0.004757313523441553, + -0.025567157194018364, + -0.006300379987806082, + 0.020422285422682762, + -0.012900132685899734, + 0.001059484202414751, + 0.015915971249341965, + -0.007812544703483582, + 0.003030589083209634, + -0.005055747460573912, + -0.009358013048768044, + -0.0013391237007454038, + -0.015393588691949844, + 0.015061812475323677, + 0.005739918444305658, + -0.006101090461015701, + 0.004736092872917652, + 0.0005897118244320154, + 0.01662808284163475, + 0.005051298066973686, + -0.0038141263648867607, + 0.023835495114326477, + -0.0066045732237398624, + 0.012742040678858757, + -0.00778890261426568, + 0.005757986567914486, + -0.003709442913532257, + 0.0012097136350348592, + -4.543844988802448e-05, + -0.0003938604495488107, + -0.0011094753863289952, + -0.025677431374788284, + -0.008681907318532467, + 0.0009114720160141587, + -0.003510458394885063, + 0.01940775103867054, + -0.015271116979420185, + -0.013309945352375507, + 0.007580571807920933, + 0.025103094056248665, + -0.00015419768169522285, + -0.0017875494668260217, + 0.010161950252950191, + -0.001852191286161542, + -0.011220659129321575, + -0.014057298190891743, + 0.000826258328743279, + 0.008369018323719501, + -0.020329026505351067, + -0.021704185754060745, + 0.0011004284024238586, + -0.010984856635332108, + -0.0004117748758289963, + 0.013240544125437737, + -0.03343358635902405, + -0.007820484228432178, + 0.0017281632171943784, + 0.00018404964066576213, + -0.002598582534119487, + 0.005168385338038206, + 0.004677961580455303, + -0.005658846814185381, + 0.014882108196616173, + 0.004367403220385313, + 0.008781751617789268, + -0.005897851195186377, + 0.009753809310495853, + -0.008144381456077099, + -0.037485383450984955, + -0.030126918107271194, + 0.023034363985061646, + 0.022870870307087898, + 0.04342290386557579, + -0.007463870104402304, + 0.012105417437851429, + 0.022276485338807106, + -0.004140872973948717, + -0.009797342121601105, + 0.03594023361802101, + 0.0017642428865656257, + 0.0012765928404405713, + 0.009220188483595848, + 0.005346133839339018, + -0.013607025146484375, + -0.012285488657653332, + 0.01858837530016899, + 0.00746910972520709, + 0.011146821081638336, + -0.04682612419128418, + -0.005971492733806372, + 0.023955820128321648, + -0.0012750844471156597, + -0.02338372729718685, + -0.00020109627803321928, + -0.007417149376124144, + 0.0019260529661551118, + 0.01712716743350029, + 0.016702260822057724, + -0.02638128399848938, + 0.017094673588871956, + 0.012441244907677174, + -0.020637700334191322, + 0.024079956114292145, + -0.015486852265894413, + -0.016593564301729202, + -0.007777347229421139, + 0.019501592963933945, + 0.003729763440787792, + -0.020244373008608818, + 0.005526871886104345, + -0.013197493739426136, + 0.0016991539159789681, + 0.0023654354736208916, + 0.005206730216741562, + 0.009539450518786907, + 0.0050034127198159695, + -0.004632555413991213, + -0.0023978864774107933, + 0.012718559242784977, + 0.018917687237262726, + 0.0036130768712610006, + -0.003332766704261303, + -0.009491164237260818, + -0.0010009767720475793, + -0.000584847352001816, + -0.0023231806699186563, + -0.003109529847279191, + 0.013099567964673042, + -0.02847026288509369, + -0.011656205169856548, + -0.015826215967535973, + 0.028720751404762268, + 0.0033405604772269726, + 0.007779052015393972, + 0.002933698706328869, + -0.0061256978660821915, + 0.0009415260283276439, + 0.0038873718585819006, + 0.011256451718509197, + -0.009391916915774345, + 0.002035595243796706, + -0.003953064326196909, + -0.01126943901181221, + 0.005553252063691616, + -0.009081143885850906, + -0.036830443888902664, + 0.0005245817010290921, + -0.005583947524428368, + -0.008930673822760582, + 0.01205188874155283, + -0.012165493331849575, + -0.00731930835172534, + 0.019233323633670807, + 0.002825804753229022, + -0.0021329903975129128, + 0.0022518811747431755, + -0.0065555814653635025, + 0.009355399757623672, + -0.00980876199901104, + -0.005707945208996534, + 0.0009060423471964896, + 0.0019382188329473138, + -0.012298604473471642, + -0.0038053863681852818, + -0.010261334478855133, + 0.012082384899258614, + -0.0007327178027480841, + -0.0033929417841136456, + 0.007298169657588005, + -0.004224514123052359, + 0.004914353601634502, + -0.00010161029786104336, + 0.005601075012236834, + 0.004658494144678116, + -0.0007872658898122609, + 0.003535429947078228, + -0.006697917357087135, + -0.015572761185467243, + -0.005528563633561134, + 0.00038432603469118476, + 0.00748051144182682, + -0.01053154468536377, + 0.004460704047232866, + 0.007021777331829071, + 0.004788997117429972, + -0.005842314101755619, + -0.007240751758217812, + 0.0021496666595339775, + -0.0043557193130254745, + -0.019688090309500694, + 0.034388937056064606, + -0.007006250787526369, + -0.0036976849660277367, + -0.0024013950023800135, + -0.01981351524591446, + -0.0028369328938424587, + 0.01753830723464489, + 0.00995662622153759, + -0.007346617057919502, + 0.003074558451771736, + 0.0017119946423918009, + 0.011172565631568432, + 0.000846494163852185, + -0.016807688400149345, + 0.0021945545449852943, + 0.021287081763148308, + 0.0012121591717004776, + 0.021903786808252335, + 0.004282986279577017, + 0.00706957932561636, + 0.01205387245863676, + 0.0006479879375547171, + -0.0075459289364516735, + 0.00998235959559679, + 0.005945789627730846, + -0.02935124933719635, + 0.009300189092755318, + -5.7443012337898836e-05, + -0.013065817765891552, + 0.00946439616382122, + -0.005298968404531479, + -0.008312425576150417, + -0.0011652130633592606, + -0.012217378243803978, + -0.011304636485874653, + -0.007528881076723337, + -0.00044825070654042065, + -0.012551194988191128, + 0.004295790567994118, + 0.009562067687511444, + 0.002314656740054488, + 0.00043115721200592816, + 0.008599162101745605, + 0.00285870349034667, + -0.004440040327608585, + 0.0086269062012434, + -0.020524008199572563, + -0.021653128787875175, + 0.004949011839926243, + -0.0011081572156399488, + -0.005050291307270527, + -0.008256066590547562, + -0.010853786021471024, + -0.0031614089384675026, + 0.0019953041337430477, + -0.00991373136639595, + -0.01652481220662594, + 0.00264373910613358, + 0.005045557394623756, + -0.0075852228328585625, + 0.015907634049654007, + 0.016495149582624435, + -0.007150915451347828, + 0.0008293027058243752, + -0.004769252613186836, + 0.028373809531331062, + 0.01621204800903797, + -0.0008239031885750592, + -0.005138763692229986, + 0.010777370072901249, + -0.00945188943296671, + 0.0039642322808504105, + -0.01848531700670719, + 0.007888376712799072, + 0.01625463366508484, + -0.01139623112976551, + 0.0008018910884857178, + -0.005138832610100508, + -0.01336816418915987, + -0.005343674682080746, + 0.012983190827071667, + -0.010914250276982784, + 0.00735681876540184, + -0.01353783905506134, + -0.00523959007114172, + -0.005477891769260168, + 0.02129221521317959, + -0.01079606730490923, + 0.002871881006285548, + -0.02638663351535797, + 0.021821575239300728, + 0.0011345196980983019, + 0.025264613330364227, + -0.007837767712771893, + -0.007393611595034599, + -0.017974870279431343, + -0.00025506250676698983, + -0.0051925815641880035, + 0.016348082572221756, + 0.004781609866768122, + 0.013679870404303074, + 0.0007105917320586741, + 0.00652616610750556, + 0.002546504372730851, + -0.015020603314042091, + -0.0010108024580404162, + 0.005713848862797022, + 0.0016544405370950699, + -0.00753065524622798, + -0.005060277413576841, + -0.009314502589404583, + 0.0011636553099378943, + -0.0045150574296712875, + 0.0029879070352762938, + 0.025509053841233253, + 0.022488504648208618, + 0.018724918365478516, + 0.006819695234298706, + 0.0007589886081404984, + -0.013301841914653778, + 0.001352990511804819, + 0.013761669397354126, + -0.004763773176819086, + 0.014097470790147781, + -0.00013063482765574008, + 0.00025381927844136953, + 0.0028767751064151525, + -0.00811760500073433, + -0.00408870680257678, + 0.0021054174285382032, + 0.012136369943618774, + -0.004334078170359135, + 0.005045210476964712, + -0.00806865282356739, + 0.011444180272519588, + 0.000374306837329641, + -0.006835815031081438, + -0.02747969701886177, + -0.01657118648290634, + 0.013029447756707668, + -0.00020043719268869609, + 0.026488829404115677, + 0.0006494009867310524, + 0.008896584622561932, + 0.0017888863803818822, + -0.011239716783165932, + 0.016865961253643036, + 0.007021088618785143, + 0.0012791809858754277, + 0.003602727083489299, + -0.0025079597253352404, + 0.008494933135807514, + -0.0019394968403503299, + 0.0007018530741333961, + -0.039984047412872314, + 0.017941486090421677, + -0.0005776906036771834, + -0.002429056214168668, + -0.0001617347588762641, + -0.004314102232456207, + -0.00816335342824459, + 0.024921907112002373, + -0.009404684416949749, + 0.023641902953386307, + 0.0009050361113622785, + -0.02395528182387352, + 0.008591873571276665, + 0.005833396688103676, + -0.011387578211724758, + 0.033033065497875214, + 0.01993684098124504, + -0.01600826159119606, + -0.0003946932847611606, + -0.005349594634026289, + -0.008229967206716537, + -0.04391071945428848, + -0.007737448904663324, + 0.009034915827214718, + 0.011718238703906536, + 0.002097746357321739, + 0.0016995855839923024, + -0.012111784890294075, + -0.00047340046148747206, + -0.01394930575042963, + -0.02451375126838684, + 0.0017413944005966187, + -0.007342827040702105, + 0.006326713599264622, + -0.007025746162980795, + -0.0009815630037337542, + 0.02618466317653656, + 0.0032776265870779753, + -0.021550938487052917, + 0.04093793034553528, + 0.013606512919068336, + 0.015903333202004433, + -0.017233356833457947, + 0.00957095343619585, + -0.021971317008137703, + 0.0015563429333269596, + -0.012018410488963127, + 0.00701893912628293, + 0.0013409904204308987, + -0.0203334279358387, + 0.01142881903797388, + 0.003790527116507292, + -0.0011323477374389768, + 0.03341427445411682, + 0.012146199122071266, + -0.0004571018216665834, + 0.0008048270246945322, + 0.012240068055689335, + 0.029260318726301193, + 0.0012731710448861122, + -0.0008227239013649523, + 0.003111175261437893, + -0.001022955751977861, + -0.004519219975918531, + 0.0007853254210203886, + 0.007321885321289301, + -0.02523164637386799, + 0.0024140565656125546, + -0.0038857830222696066, + -0.009141252376139164, + 0.0034720320254564285, + -0.003454923629760742, + 0.03432515263557434, + 0.007609750144183636, + 0.0008450746536254883, + -0.00856032781302929, + 0.011513380333781242, + -0.0402822345495224, + -0.013922845013439655, + 0.011259349063038826, + -0.006270383019000292, + 0.0038829974364489317, + -0.0028481732588261366, + -0.0018060740549117327, + 0.002398280194029212, + 0.018146254122257233, + -0.01409965381026268, + 0.021607857197523117, + -0.007980011403560638, + -0.037865906953811646, + 0.0014439322985708714, + -0.005617998074740171, + 0.013711501844227314, + -0.009580700658261776, + 0.0030547857750207186, + -0.006033643148839474, + -0.003955143038183451, + 0.019138041883707047, + 0.005915659014135599, + -0.004714708309620619, + -0.03845132142305374, + -0.005218002013862133, + -0.0004305281618144363, + -0.0059674689546227455, + 0.005767591297626495, + 0.007474936544895172, + -0.02881654165685177, + -0.023790806531906128, + -0.0076406365260481834, + 0.007382895331829786, + -0.0022906812373548746, + 0.002314553130418062, + -0.0056149899028241634, + -0.00480695953592658, + -0.004256990738213062, + 0.005235795862972736, + -0.010529279708862305, + 0.0006522396579384804, + 0.001535287476144731, + 0.014415375888347626, + -0.044815532863140106, + -0.0077878860756754875, + 0.00856924057006836, + -0.005852913949638605, + -0.02899996004998684, + 0.021766502410173416, + 0.008779686875641346, + 0.00250226934440434, + -0.00893990509212017, + -0.019599998369812965, + 0.014465924352407455, + -0.00022535721655003726, + 0.002549273893237114, + -0.006961303763091564, + -0.012384218163788319, + -0.0011813881574198604, + -0.04263153672218323, + 0.006942720152437687, + -0.014194486662745476, + -0.005501656327396631, + 0.005869851913303137, + -0.026692472398281097, + 0.13510003685951233, + -0.00011250760144321248, + 0.0111762136220932, + -0.008867019787430763, + 0.01403963752090931, + 0.026743454858660698, + 0.02256573922932148, + -0.005633048713207245, + -0.004194311797618866, + 0.01896141842007637, + -0.014296924695372581, + 0.007271287962794304, + -0.0018115309067070484, + 0.0044138627126812935, + -0.006244983524084091, + 0.0297087412327528, + 0.008575046434998512, + 0.015012524090707302, + 8.232689287979156e-05, + 0.00923540722578764, + 0.018153123557567596, + 0.0075067696161568165, + 0.01171140931546688, + -0.0004933985183015466, + 0.0008463277481496334, + -0.0024291088338941336, + 0.010458184406161308, + -0.00788038969039917, + -0.005836560390889645, + -0.010302399285137653, + -0.008280759677290916, + -0.006330878473818302, + 0.00603856286033988, + -0.0110462736338377, + -0.00218956614844501, + -0.00455892737954855, + -0.0018510179361328483, + 0.004742403980344534, + -0.009730212390422821, + 0.01496185828000307, + 0.014274023473262787, + -0.00626792386174202, + 0.013756739906966686, + 0.0038384953513741493, + -0.013967569917440414, + 0.008013368584215641, + -0.04274763911962509, + -0.002517370041459799, + -0.020793788135051727, + 0.015183608047664165, + 0.009557572193443775, + 0.022064052522182465, + 0.00807736162096262, + 0.007012446876615286, + -0.017231669276952744, + 0.016071870923042297, + 0.004483421798795462, + -0.0012622743379324675, + 0.009560737758874893, + -0.005434780847281218, + 0.017355673015117645, + -0.006894285324960947, + -0.007513685151934624, + -0.0021649037953466177, + 0.004429255146533251, + 0.008581792004406452, + 0.009229473769664764, + 0.008268775418400764, + 0.005104003008455038, + 0.01183189358562231, + 0.011144254356622696, + 0.007241895888000727, + -0.005997630301862955, + 0.00794124510139227, + 0.00041083403630182147, + 0.001557673211209476, + -0.0010408940725028515, + -0.0005484828143380582, + 0.002710035303607583, + 0.008642178028821945, + 0.007793109398335218, + -0.007101652678102255, + 0.010057404637336731, + -0.003956749569624662, + 0.0024463566951453686, + -0.00781165761873126, + 0.02602311223745346, + -0.008307849988341331, + 0.0017129279440268874, + 0.005317462608218193, + -0.004585637710988522, + 0.0002757153706625104, + 0.024530962109565735, + 0.004832427017390728, + 0.0037508723326027393, + 0.016304606571793556, + 0.016307858750224113, + -0.01471726130694151, + -0.013054047711193562, + 0.0023211350198835135, + 0.00196396023966372, + 0.015858102589845657, + 0.005415665917098522, + -0.0004866108938585967, + -0.0010241816053166986, + 0.0008803816162981093, + -0.005878942087292671, + -0.013601768761873245, + 0.0017707797233015299, + -0.004733902867883444, + 0.006931879557669163, + -0.001100178575143218, + 0.006000801455229521, + -0.005365543533116579, + 0.0062242834828794, + -0.003435862483456731, + 0.008380070328712463, + 0.003115871688351035, + 0.003120073117315769, + -0.02470463141798973, + 0.0022353415843099356, + -0.0007238007383421063, + -0.014951610937714577, + -0.00017568656767252833, + 0.005601275712251663, + -0.002427340717986226, + -0.0001172217889688909, + 0.0005971909849904478, + 0.0024221136700361967, + 0.00012311172031331807, + -0.01109416875988245, + -0.001210752292536199, + 0.0040558078326284885, + 0.0020877793431282043, + 0.003235560143366456, + 0.0011625331826508045, + 0.008048324845731258, + -0.00464306166395545, + -0.00022688205353915691, + -0.008053742349147797, + -0.008474886417388916, + 0.005090336315333843, + 0.0035783746279776096, + 0.013871720060706139, + -0.024909919127821922, + -0.0028551407158374786, + 0.04351627081632614, + -0.007184038404375315, + 0.0028806948103010654, + 0.015472794882953167, + 0.0017786994576454163, + 0.03157959133386612, + -0.01298942044377327, + -0.006602730136364698, + 0.011164308525621891, + -0.004037587437778711, + -0.01112799160182476, + -0.010798134841024876, + -0.005410637240856886, + 0.004623125307261944, + -0.008045386523008347, + -0.009800600819289684, + -0.0136784752830863, + 0.06168703734874725, + -0.0056610871106386185, + -0.007710713893175125, + -0.00142134097404778, + 0.002910479437559843, + -0.021955396980047226, + -0.0009982474148273468, + 0.005004174076020718, + -0.009704154916107655, + 0.010320243425667286, + -0.0421278141438961, + 0.00033978084684349597, + 0.010077018290758133, + 0.0036050875205546618, + -0.011194804683327675, + -0.0034493785351514816, + 0.0046162898652255535, + 0.006553024519234896, + -0.0020824009552598, + -0.022356119006872177, + 0.02052362449467182, + 0.015933932736516, + -0.005083498079329729, + -0.00019886968948412687, + -0.010860939510166645, + -0.008242562413215637, + -0.014787429012358189, + -0.011938306502997875, + 0.007227885536849499, + -0.008761483244597912, + 0.013761281035840511, + -0.010439503006637096, + 0.011924228630959988, + -0.0063701230101287365, + -0.007419886998832226, + -0.019827894866466522, + -0.005455908365547657, + -0.0065010469406843185, + 0.01350029930472374, + 0.007885690778493881, + -0.005363626405596733, + -0.01024923101067543, + 0.009245163761079311, + 0.030139530077576637, + -0.011696147732436657, + 0.0023670897353440523, + -0.028853755444288254, + -0.0007937683258205652, + -0.014976207166910172, + 0.0018911865772679448, + -0.005717679858207703, + 0.000660038145724684, + 0.00859113410115242, + -0.017931008711457253, + -0.011801471002399921, + 0.005412158090621233, + -0.020461775362491608, + 0.08219406753778458, + -0.016786888241767883, + -0.00672063697129488, + -0.006226642988622189, + -0.0018979606684297323, + -0.0028652166947722435, + 0.016180599108338356, + -0.01487471628934145, + 0.024210250005126, + 0.00699983537197113, + 0.001774917240254581, + -0.0033413046039640903, + 0.013638002797961235, + 0.0018317735521122813, + 0.0029209305066615343, + -0.03403792902827263, + 0.0044119772501289845, + -0.011056228540837765, + -0.00652864808216691, + 0.00905781053006649, + 0.0147411422803998, + 0.022102627903223038, + -0.029595134779810905, + 0.020293232053518295, + -0.010663039982318878, + 0.013952475041151047, + -0.008451543748378754, + -0.0032332518603652716, + -0.0013020888436585665, + -0.013134485110640526, + -0.00880700908601284, + 0.001248941640369594, + 0.010798482224345207, + -0.0032392176799476147, + 0.0008323300280608237, + -0.001993816113099456, + -0.01921088993549347, + -0.002201993949711323, + -0.002492699772119522, + -0.00990296620875597, + -0.0016667783493176103, + -0.02139250934123993, + 0.015276276506483555, + -0.004263096023350954, + -0.004263552837073803, + -0.0019323312444612384, + -0.004584894515573978, + 0.009334170259535313, + -0.0014632816892117262, + 0.011713085696101189, + -0.0030538656283169985, + 0.010554061271250248, + 0.008867866359651089, + 0.005772951524704695, + -0.022363206371665, + -0.004773682914674282, + 0.0046873814426362514, + 0.0038495890330523252, + 0.009365065023303032, + 0.0033533810637891293, + -0.008571671321988106, + -0.0028249737806618214, + 0.005343689117580652, + 0.0038925937842577696, + 0.006952130235731602, + -0.007819999009370804, + 0.0025886918883770704, + 0.0012727142311632633, + 0.0034871893003582954, + -0.017683055251836777, + 0.009503996931016445, + 0.009558258578181267, + -0.006902145221829414, + -0.01951579749584198, + 0.012728002853691578, + 0.006323012989014387, + 0.004857298452407122, + -0.0062418910674750805, + -0.015871400013566017, + -0.0020306750666350126, + -0.010211112909018993, + -0.004348494112491608, + -0.011403664946556091, + -0.007766177877783775, + 0.01749234087765217, + -0.010362211614847183, + 0.0025810063816607, + -0.0073994845151901245, + 0.004088696092367172, + -0.002890707226470113, + -0.003931756131350994, + 0.002232283353805542, + 0.0057394071482121944, + 0.006992017384618521, + 0.02076674997806549, + 0.0062401918694376945, + 0.006777527276426554, + 0.004089490510523319, + 0.012853453867137432, + -0.0016363018658012152, + 0.0018956041894853115, + -0.00525004044175148, + 0.008083734661340714, + -0.006780719384551048, + 0.03549770265817642, + -0.011539476923644543, + 0.00899325031787157, + -0.02162802405655384, + 0.009970455430448055, + -0.0029259042348712683, + 0.005104519426822662, + -0.027067281305789948, + -0.005864331033080816, + 0.009000902995467186, + 0.01006726361811161, + -0.02109452709555626, + -0.0040883589535951614, + -0.010353169403970242, + -0.00018116300634574145, + 0.006368433590978384, + -0.002761313458904624, + -0.022847702726721764, + 0.01591447927057743, + -0.019434219226241112, + 0.0023508500307798386, + 0.0008938434766605496, + -0.00517194252461195, + 0.027211803942918777, + -0.007848304696381092, + -0.024269752204418182, + 0.0009487781790085137, + 0.0077093904837965965, + -0.012659680098295212, + -0.010007348842918873, + 0.019013822078704834, + -0.006139328237622976, + 0.00905543565750122, + 0.0030263937078416348, + -0.02441464737057686, + -0.0010276742978021502, + -0.01961415819823742, + -0.003671180922538042, + 0.0010899879271164536, + 0.0020424281246960163, + 0.054743070155382156, + 0.013576149009168148, + -0.0019736983813345432, + 0.008463175967335701, + -0.011772758327424526, + 0.012110132724046707, + 0.00454849423840642, + -0.014798750169575214, + 0.011285778135061264, + 0.0007361776079051197, + -0.001024426892399788, + 0.00137204653583467, + -0.005492900963872671, + 0.018676340579986572, + 0.012995917350053787, + 0.004797991830855608, + -0.015913113951683044, + -0.020347701385617256, + 0.007646402809768915, + -0.005008943844586611, + -0.024295726791024208, + 0.014356303960084915, + -0.0020579376723617315, + -0.048031874001026154, + 0.0013202432310208678, + -0.014418994076550007, + 0.02518797107040882, + 0.005668263416737318, + 0.007774150464683771, + 0.009980875998735428, + -0.012050489895045757, + -0.03558672219514847, + -0.016571559011936188, + 0.0043189809657633305, + 0.004482581280171871, + -0.001013355446048081, + 0.008074908517301083, + -0.016185598447918892, + 0.014991887845098972, + -0.0036180473398417234, + -0.01361906062811613, + -0.0013736997498199344, + -0.03402400016784668, + -0.023335538804531097, + -0.00036808880395255983, + 0.0005066126468591392, + 0.010717451572418213, + 0.020580492913722992, + 0.006338983774185181, + 0.007297662552446127, + 0.02656581997871399, + -0.017540592700242996, + 0.0032346700318157673, + 0.016672518104314804, + -0.020133234560489655, + -0.011467033997178078, + -0.0017069077584892511, + -0.006361702457070351, + -0.001956402091309428, + 0.006188615690916777, + -0.007758994121104479, + 0.0006540400208905339, + 0.017347615212202072, + -0.0016924388473853469, + -0.001285072066821158, + 0.009178289212286472, + 0.01795838214457035, + -0.0021737483330070972, + -0.010870168916881084, + 0.003489181399345398, + 0.031240761280059814, + 0.031494371592998505, + 0.002132898662239313, + -0.043036967515945435, + 0.2035979926586151, + 0.02899848110973835, + 0.005664055701345205, + -0.011702400632202625, + -0.004977699834853411, + 0.004719069227576256, + -0.018228091299533844, + 0.05693744868040085, + -0.01967887207865715, + 0.009095964953303337, + 0.004812423139810562, + 0.026953887194395065, + 0.009307274594902992, + 0.006013425532728434, + 0.008841002359986305, + 0.008601853623986244, + 0.016339808702468872, + -0.05489746481180191, + -0.007438229862600565, + 0.012407644651830196, + 0.00024564031627960503, + 0.002457723719999194, + 0.0445399172604084, + -0.018703792244195938, + -0.0007777159917168319, + 0.011351609602570534, + -0.01484588347375393, + -0.010787902399897575, + 0.008064744994044304, + -0.001641385955736041, + -0.01453004777431488, + -0.021287186071276665, + -0.009688951075077057, + 0.0015549622476100922, + 0.0003598948533181101, + 0.003363974392414093, + 0.01240531075745821, + 0.009127648547291756, + -0.0037372678052634, + 0.010903820395469666, + 0.0031798246782273054, + 0.010694539174437523, + 0.015511092729866505, + -0.007659668568521738, + -0.011615058407187462, + -0.0036795996129512787, + -0.005823364015668631, + 0.010755116119980812, + -0.006793728098273277, + -0.0007489860872738063, + -0.008975394070148468, + 0.003389062127098441, + -0.01063302531838417, + -0.01798226684331894, + -0.018143359571695328, + -0.019082676619291306, + 0.0013555398909375072, + 0.013222364708781242, + -0.00609965343028307, + -0.01816261187195778, + 0.014992364682257175, + -0.00962861068546772, + -0.00010370476229581982, + 0.017992518842220306, + -0.012725061737000942, + 0.00811307318508625, + -0.0133803840726614, + -0.055459365248680115, + 0.0034416099078953266, + -0.011772706173360348, + 0.004879134241491556, + 0.0014871403109282255, + -0.014184124767780304, + 0.007719103712588549, + 0.0020857066847383976, + -0.03387602046132088, + 0.0007059042691253126, + 0.019367288798093796, + 0.0019380899611860514, + 0.015435842797160149, + 0.00375207862816751, + 0.008617209270596504, + -0.02878144383430481, + -0.017162378877401352, + 0.01125198695808649, + 0.01776566542685032, + -0.014179987832903862, + -0.005148480646312237, + 0.015434050001204014, + 0.0037006884813308716, + 0.004862570203840733, + -0.014239327982068062, + -0.03518605977296829, + -0.004295050632208586, + -0.011082278564572334, + -0.00920568685978651, + -0.011432439088821411, + -0.021655095741152763, + -0.001749840215779841, + -0.012808890081942081, + 0.006504553370177746, + -0.0024282808881253004, + 0.015705760568380356, + 0.0032640707213431597, + -0.009914488531649113, + 0.009007132612168789, + -0.03991683945059776, + 0.0047167763113975525, + -0.00355443824082613, + -0.004436301998794079, + 0.010000337846577168, + 0.04836792126297951, + -0.0033360228408128023, + 0.005985081195831299, + -0.006619937252253294, + -0.05439190939068794, + 0.0015871640061959624, + -0.0062609706073999405, + -0.003126331139355898, + 0.016479920595884323, + 0.014902005903422832, + 0.009606130421161652, + -0.04552086442708969, + -0.00845816545188427, + 0.01588359847664833, + -0.008095295168459415, + 0.004611428827047348, + 0.022769499570131302, + 0.013876614160835743, + -0.0020803259685635567, + -0.0069001163356006145, + -0.009026593528687954, + 0.0026939413510262966, + -0.0041029248386621475, + -0.008170587942004204, + 0.00616074213758111, + 0.009528573602437973, + 0.023694820702075958, + 0.01778312586247921, + -0.018142027780413628, + -0.004390517715364695, + 0.006803534924983978, + -0.0010026500094681978, + -0.005488050170242786, + 0.0004885914968326688, + -0.04298340156674385, + 0.014011785387992859, + 0.015064585022628307, + -0.0037387702614068985, + 0.021874764934182167, + -0.008546064607799053, + 0.020819030702114105, + -0.020381981506943703, + 0.004934533033519983, + -0.014541013166308403, + -0.004222386982291937, + -0.0028833141550421715, + -0.0011785166570916772, + -0.014070253819227219, + 0.012490945868194103, + -0.01743134669959545, + 0.0034882889594882727, + 0.011646084487438202, + -0.009702619165182114, + -0.032482512295246124, + -0.0005707617965526879, + 0.00902849342674017, + -0.010358715429902077, + -0.0036159150768071413, + 0.019570540636777878, + -0.012151341885328293, + 0.007261259015649557, + -0.010310851037502289, + -0.00020737173326779157, + -0.015598570927977562, + -0.0017902323743328452, + -0.03581345081329346, + 0.038205716758966446, + 0.00043491623364388943, + -0.013898220844566822, + -3.3166441426146775e-05, + 0.00280582532286644, + 0.004417622461915016, + -0.002580327447503805, + -0.00707220146432519, + 0.009917417541146278, + 0.00684691034257412, + -0.019142867997288704, + -0.0067608412355184555, + -0.017060328274965286, + -0.005933958571404219, + -0.0013338227290660143, + -0.0002912069030571729, + -0.00504576601088047, + 0.009028269909322262, + -0.007886243052780628, + 0.004415314178913832, + -0.003999640699476004, + -0.015981171280145645, + -0.013888615183532238, + -0.007799808867275715, + -0.00536864111199975, + -0.0011976389214396477, + -0.005152131896466017, + -0.007382620126008987, + 0.0117754265666008, + 0.007143228780478239, + -0.008178845047950745, + -0.006534333806484938, + 0.0038678362034261227, + -0.023378800600767136, + -0.005399729125201702, + 0.01247411873191595, + -0.006630406714975834, + 0.03944776952266693, + -0.004182390868663788, + 0.0051459940150380135, + -0.006785009987652302, + -0.016205033287405968, + -0.003750328905880451, + -0.012933287769556046, + 0.010792361572384834, + -0.012680798768997192, + 0.030657043680548668, + -0.017039963975548744, + -0.01146086398512125, + 0.002721816999837756, + -0.001428744406439364, + -0.008054088801145554, + -0.0019391478272154927, + 0.001859129872173071, + -0.0015757655492052436, + 0.005207468289881945, + -0.00045831326860934496, + 0.01397823728621006, + -0.016898762434720993, + -0.04052333906292915, + -0.005645127967000008, + -0.0392608642578125, + -0.008881831541657448, + -0.0050941770896315575, + -0.007564101368188858, + -0.0036732247099280357, + 0.00946496520191431, + 0.016385160386562347, + -0.004187426064163446, + 0.0027180342003703117, + -0.00825731921941042, + -0.0033690861891955137, + -0.012720390222966671, + -0.08235978335142136, + -0.0039054921362549067, + -0.021523792296648026, + -0.010671049356460571, + -0.0031740095000714064, + -0.012987817637622356, + -0.020293785259127617, + 0.016750644892454147, + -0.017498087137937546, + -0.02370539866387844, + -0.00014030523016117513, + 0.01258906815201044, + -0.0060631874948740005, + -0.012341722846031189, + -0.03071760945022106, + 0.02308075502514839, + -0.017834940925240517, + 0.015905214473605156, + -0.02033475786447525, + 0.012350759468972683, + -0.06688141077756882, + -3.993961217929609e-05, + 0.007320831995457411, + 0.007321392185986042, + 0.008756589144468307, + 0.0013519141357392073, + 0.006404269021004438, + -0.003273815382272005, + 0.005885691847652197, + -0.006604645401239395, + 0.00758776580914855, + 0.008980774320662022, + 0.007626618258655071, + -3.3787728170864284e-05, + -0.00036384983104653656, + -0.017826754599809647, + 0.0073737213388085365, + -0.0017554451478645205, + 0.010771720670163631, + 0.010442959144711494, + -0.0035740917082875967, + 0.01124555617570877, + -0.0020793399307876825, + 0.0029553337953984737, + 0.005781509913504124, + 0.0023057288490235806, + -0.07443354278802872, + 0.044680025428533554, + -0.0032321102917194366, + 0.0013179539237171412, + 0.008452896028757095, + 0.0352124385535717, + -0.002421942539513111, + -0.07511808723211288, + 0.003995615057647228, + -0.005399912595748901, + 0.031077802181243896, + 0.0037008810322731733, + -0.000863876543007791, + -0.007248143665492535, + 0.00012273942411411554, + 0.0010138300713151693, + -0.0011483487905934453, + 0.012070870958268642, + 0.009696833789348602, + -0.02015945501625538, + 0.0029631415382027626, + 0.01493058167397976, + 0.00019053439609706402, + -0.006127943284809589, + -0.004208064638078213, + 0.006501964293420315, + 0.010618305765092373, + 0.0066186427138745785, + 0.0012481779558584094, + -0.006140809040516615, + 0.013480685651302338, + -0.003764807479456067, + 0.0008595768013037741, + 0.006294066086411476, + 0.005362421739846468, + -0.007084793411195278, + -0.002424598904326558, + -0.007238229736685753, + 0.013118501752614975, + 0.004013192839920521, + -0.005645049270242453, + 0.054420072585344315, + 0.0022368403151631355, + -0.050529684871435165, + -0.006615587044507265, + -0.005849851295351982, + -0.08018604665994644, + 0.025038283318281174, + -0.014604262076318264, + 0.01077093556523323, + -0.004171297419816256, + 0.012384958565235138, + 0.0409599132835865, + -0.0015347686130553484, + 0.01673988066613674, + 0.005717933177947998, + -0.00806869100779295, + -0.008066480979323387, + 0.009512336924672127, + -0.04732979089021683, + 0.02065982110798359, + -0.009326317347586155, + -0.010064668022096157, + -0.010669296607375145, + -0.0030460883863270283, + 0.03871144726872444, + 0.007227038964629173, + -0.00366579694673419, + 0.010217017494142056, + -0.011759206652641296, + 0.010263929143548012, + -0.003947211429476738, + 0.0031816887203603983, + -0.002159855794161558, + 0.017769869416952133, + 0.013349606655538082, + -0.012784297578036785, + -0.01834237389266491, + 0.007609928492456675, + 0.01212782971560955, + -0.05884240195155144, + 0.005056793801486492, + -0.0181826651096344, + -0.004340922925621271, + 0.010712158866226673, + -0.005525111220777035, + 0.0006433650269173086, + -0.00616835243999958, + 0.012882876209914684, + 0.008826764300465584, + 0.0006501884199678898, + 0.028628503903746605, + -0.018166780471801758, + 0.004701380152255297, + -0.016992386430501938, + -0.006622707936912775, + 0.00851040706038475, + -0.003671888494864106, + -0.021931711584329605, + 0.00889156386256218, + 0.017567044124007225, + -0.006993120536208153, + 0.008850475773215294, + -0.0008854366606101394, + -0.0038985649589449167, + -0.007745974697172642, + 0.012988648377358913, + -0.01303605455905199, + 0.007364975288510323, + 0.02343923971056938, + -0.005041050724685192, + 0.018222086131572723, + -0.006033964455127716, + 0.001863849931396544, + -0.008610155433416367, + 0.005136534571647644, + 0.0038075176998972893, + -6.939929880900308e-05, + 0.0025314167141914368, + 0.0037014195695519447, + -0.011841892264783382, + -0.01747395284473896, + -0.02479558438062668, + -0.00027009440236724913, + -0.007327068131417036, + 0.0034544349182397127, + -0.0025629715528339148, + 0.014916792511940002, + 0.0016521024517714977, + -0.0017018993385136127, + -0.01424416247755289, + -0.002816595835611224, + 0.01270398497581482, + -0.016790790483355522, + 0.010299783200025558, + 0.02037530392408371, + -0.008647920563817024, + -0.003583550453186035, + 0.016533905640244484, + -0.0014984753215685487, + 0.019978543743491173, + 0.0052355872467160225, + 0.0009884512983262539, + -0.010474641807377338, + -0.019723497331142426, + -0.005446448922157288, + 0.007564730476588011, + -0.0017371620051562786, + 0.00033640378387644887, + 0.00998314842581749, + -0.030051415786147118, + 0.012143305502831936, + -0.010925574228167534, + -0.001349194091744721, + 0.005290593486279249, + -0.003112169448286295, + -0.0032084162812680006, + 0.01626880094408989, + -0.02472817339003086, + 0.01563260518014431, + 0.019811321049928665, + 0.002359915990382433, + -0.026047483086586, + -0.01090130303055048, + 0.01697375439107418, + -0.006124760024249554, + -0.013084685429930687, + -0.0001467895635869354, + -0.011516292579472065, + 0.00646029831841588, + 0.005719429347664118, + 0.003038707422092557, + 0.008907931856811047, + 0.007355913519859314, + 0.01096733845770359, + 0.0028573349118232727, + 0.022115275263786316, + -0.01905066706240177, + 0.013187563978135586, + -0.009955024346709251, + 0.02277662418782711, + 0.006041837390512228, + 0.001199969556182623, + 0.05255690589547157, + -0.00811607576906681, + -0.03551257774233818, + 0.011706465855240822, + -0.008177760988473892, + -0.01301178801804781, + 0.0056298114359378815, + 0.007927312515676022, + -0.001937834545969963, + 0.00452788220718503, + 0.019383002072572708, + -0.003399173030629754, + -0.01274615153670311, + 0.003279306460171938, + -0.06201974302530289, + 0.0015720253577455878, + -0.009734878316521645, + -0.002245217328891158, + 0.004807495512068272, + 0.0004670935741160065, + 0.021766215562820435, + -0.005308937281370163, + 0.004699685610830784, + -0.007943456061184406, + -0.0073739816434681416, + -0.0339893102645874, + -0.016423160210251808, + -0.012843705713748932, + -0.002230927348136902, + -0.012084657326340675, + -0.015826910734176636, + 0.003361322684213519, + -0.004328720271587372, + -0.0008188240462914109, + -0.029261987656354904, + 0.009074472822248936, + 0.008600542321801186, + -0.0022605168633162975, + 0.01566917821764946, + 0.001835004542954266, + 0.011481122113764286, + -0.00660598324611783, + 0.009515751153230667, + 0.016788730397820473, + -0.010295522399246693, + -0.021863728761672974, + -0.0153353251516819, + -0.011598050594329834, + -0.011295829899609089, + -0.030912090092897415, + -0.008574416860938072, + 0.009219508618116379, + -0.0038157859817147255, + -0.009874713607132435, + 0.008155201561748981, + -0.0038970685563981533, + -0.006313443649560213, + -0.0017835439648479223, + -0.016085606068372726, + -0.0052572800777852535, + 0.03256393224000931, + 0.01026182435452938, + 0.015160417184233665, + -0.0217093825340271, + -0.001636289875023067, + 0.006046694703400135, + 0.00540660647675395, + 0.018733100965619087, + 0.019255975261330605, + -0.0018742723623290658, + -0.0061132637783885, + -0.013837710954248905, + 0.012004712596535683, + -0.0014659602893516421, + 0.012429344467818737, + -0.005400596186518669, + -0.013620862737298012, + -0.01836116798222065, + -0.02483411133289337, + -0.0067458986304700375, + 0.012402687221765518, + -0.008665184490382671, + 0.005792873911559582, + 0.0019764781463891268, + -0.011182110756635666, + 0.004076861776411533, + -0.007223965600132942, + 0.015296664088964462, + 0.013209793716669083, + -0.008478372357785702, + -0.008304214105010033, + 0.011029984802007675, + -0.014030123129487038, + -0.0178463626652956, + 0.0013831990072503686, + -0.010376482270658016, + -0.016569709405303, + 0.004840034991502762, + 0.0026635555550456047, + -0.032907478511333466, + 4.466152313398197e-05, + 0.00865959282964468, + 0.019231364130973816, + 0.0011126362951472402, + 0.005185736808925867, + 0.0009613326983526349, + -0.006523005664348602, + -0.009348939172923565, + 0.006071210838854313, + -0.000873729819431901, + -0.012157585471868515, + 0.0010296674445271492, + -0.007749034557491541, + -0.027626318857073784, + 0.012951727025210857, + -0.005664028227329254, + 0.006638421211391687, + -0.0020130006596446037, + -0.002463763579726219, + -0.007476651109755039, + 0.005746266804635525, + 0.00674833171069622, + 0.012631922960281372, + 0.010636111721396446, + -0.008664674125611782, + -0.013979237526655197, + -8.622026507509872e-05, + 0.013482260517776012, + 0.008579500019550323, + 0.031129129230976105, + 0.0020946701988577843, + 0.014534680172801018, + 0.012133941054344177, + -0.015226938761770725, + 0.018064921721816063, + 0.013070247136056423, + -0.0009758968953974545, + 0.013567228801548481, + -0.019901834428310394, + 0.003268383676186204, + 0.018733590841293335, + 0.021833395585417747, + -0.027903499081730843, + 0.007765592075884342, + 0.026353249326348305, + 0.004966481123119593, + -0.013713245280086994, + 0.012040437199175358, + 0.000504764320794493, + 0.0030469046905636787, + -0.004857244435697794, + 0.015279566869139671, + -0.025940246880054474, + -0.008354555815458298, + -0.004214664921164513, + 0.024301866069436073, + 0.010271881707012653, + 0.01734129525721073, + -0.005802624858915806, + 0.011416878551244736, + -0.008719204925000668, + 0.02078225463628769, + 0.012349572032690048, + 0.0008652531541883945, + -0.003739809850230813, + -0.01428142935037613, + -0.013051055371761322, + 0.02843635156750679, + 0.01078340969979763, + 0.004341003485023975, + -0.0107880849391222, + -0.006413653027266264, + 0.0030342547688633204, + -0.01115246582776308, + -0.010053497739136219, + -0.003631552681326866, + 0.0017044898122549057, + 0.0014934821520000696, + 0.017774280160665512, + -0.011278200894594193, + -0.002837907522916794, + -0.00837969034910202, + 0.02944612316787243, + -0.00721265422180295, + -0.005876772105693817, + -0.0013802528847008944, + 0.02202429063618183, + -0.01340975146740675, + -0.0035532894544303417, + -0.009677126072347164, + -0.022377194836735725, + 0.019795546308159828, + 0.004236587323248386, + 0.01089528203010559, + 0.017711354419589043, + -0.02341482788324356, + -0.0050560906529426575, + -0.013546495698392391, + -0.0028571304865181446, + 0.003226296277716756, + -0.047206513583660126, + 0.026617934927344322, + -0.01740873232483864, + -0.0008226237841881812, + 0.003359326394274831, + 0.03484822437167168, + 0.0027562971226871014, + 0.027271104976534843, + -0.009850678965449333, + -0.0016565064433962107, + -0.004785419441759586, + 0.004557181615382433, + -0.0014370216522365808, + 0.007529410533607006, + 0.003517845179885626, + 0.00013454860891215503, + -0.009383982978761196, + -0.0013867671368643641, + -0.00013169953308533877, + -0.0026904288679361343, + -0.01065772119909525, + -0.02460300736129284, + 0.006490331143140793, + 0.011738566681742668, + -0.009433995001018047, + 0.0021747606806457043, + -0.0011107781901955605, + 0.014610208570957184, + -0.023358657956123352, + -0.010231325402855873, + -0.0033728473354130983, + -0.03009004332125187, + 0.014037488028407097, + -0.012886352837085724, + 0.005269823595881462, + 0.01549764908850193, + 0.034968484193086624, + -0.004673527553677559, + -0.005641299299895763, + -0.0032703562173992395, + -0.0044234334491193295, + 0.01762593537569046, + 0.0014434837503358722, + 0.011787221767008305, + 0.0042173475958406925, + -0.07065874338150024, + 0.00931271817535162, + -0.012251794338226318, + 0.004112343769520521, + 0.002001408487558365, + -0.005984771065413952, + 0.0014316128799691796, + -0.03746578097343445, + -0.0001316353736910969, + 0.011712410487234592, + -0.0854581668972969, + -0.011587166227400303, + -0.000586191366892308, + 0.012527808547019958, + 0.013036887161433697, + -0.0037928689271211624, + 0.005025626625865698, + -0.005788721609860659, + 0.007414578925818205, + 0.012411413714289665, + -0.013787287287414074, + -0.01073695532977581, + -0.009222147986292839, + 0.005795840639621019, + 0.019655631855130196, + 0.008481411263346672, + 0.008662150241434574, + 0.011057640425860882, + 0.013568851165473461, + -0.0035767117515206337, + 0.012738501653075218, + 0.001165084890089929, + 0.02723555453121662, + 0.028558751568198204, + -0.006341387517750263, + 0.04629456624388695, + 0.0057525369338691235, + 0.006398369092494249, + -0.0030818430241197348, + 0.0018575128633528948, + -0.010778962634503841, + -0.00012584272189997137, + -0.0010295219253748655, + 0.01619856245815754, + 0.003986214753240347, + -0.0032717601861804724, + -0.0072835227474570274, + 0.0031663672998547554, + -0.005904656834900379, + 0.0013158381916582584, + -0.007542008999735117, + -0.016763698309659958, + -0.015078486874699593, + 0.010777297429740429, + -0.005970700178295374, + -0.01155115570873022, + -0.0007698314148001373, + -0.012830488383769989, + -0.008672874420881271, + -0.002188403159379959, + -0.006475936155766249, + -0.011900150217115879, + 0.002973641501739621, + -0.0031618571374565363, + -0.005862949416041374, + -0.002702660858631134, + -0.005453991238027811, + 0.05490799993276596, + 0.017139997333288193, + -0.00047062267549335957, + -0.002225389238446951, + -0.00157209113240242, + 0.001453785807825625, + 0.006196333561092615, + 0.018371015787124634, + 0.0009204903617501259, + -0.005518737714737654, + -0.0056057339534163475, + -0.01709173247218132, + -0.03161462023854256, + 0.04032500088214874, + -0.01566379703581333, + -0.0072222244925796986, + -0.00018979175365529954, + 0.006563419476151466, + -0.01029328815639019, + -0.001438111299648881, + 0.008664008229970932, + 0.006107524037361145, + -0.004060034174472094, + -0.019273795187473297, + 0.0061501991003751755, + 0.0014648536453023553, + -0.0024859034456312656, + -0.007753077428787947, + -0.0016501436475664377, + 0.013377180323004723, + 0.018528331071138382, + -0.005108709912747145, + -0.007555931340903044, + 0.04455319792032242, + 0.024652818217873573, + 0.020683269947767258, + -0.0023065570276230574, + 0.00477767875418067, + 0.0034211911261081696, + 0.006463991943746805, + 0.011368569917976856, + 0.008581257425248623, + 0.002637458499521017, + 0.007507716305553913, + 0.005242110230028629, + 0.0013468448305502534, + -0.006266567390412092, + 0.017049090936779976, + 0.009995043277740479, + -0.039555624127388, + 0.007636032998561859, + -0.0002432640758343041, + -0.011419592425227165, + -0.012247576378285885, + 0.007151959463953972, + 0.00848529301583767, + 0.0020091517362743616, + -0.003423602320253849, + -0.007516223471611738, + -0.0017137209651991725, + 0.018828919157385826, + 0.009225795045495033, + -0.010410904884338379, + 0.0029043597169220448, + 0.012346439063549042, + 0.0012682918459177017, + 0.0077898502349853516, + 0.0025708770845085382, + -0.006698646582663059, + -0.005651448853313923, + -0.020601220428943634, + -0.0043661207892000675, + -0.002461408730596304, + -0.0003682482347358018, + 0.0022509926930069923, + 0.015252433717250824, + 0.0028295512311160564, + 0.004755417816340923, + 0.015277251601219177, + -0.030038507655262947, + -0.003155851038172841, + 0.014691206626594067, + -0.008835152722895145, + -0.00977523997426033, + 0.01956753619015217, + -0.013732287101447582, + 0.006792562548071146, + 0.006898629013448954, + 0.009390613064169884, + 0.0065358770079910755, + -0.001375027233734727, + 0.01786923035979271, + -0.007677852176129818, + -0.0169303547590971, + -0.020116271451115608, + -0.03119529038667679, + -0.018318189308047295, + 0.015545490197837353, + -0.0001846887171268463, + -0.004384922329336405, + 0.008105131797492504, + -0.007415244821459055, + -0.0070946007035672665, + 0.009137739427387714, + -0.007459085900336504, + -0.006490514613687992, + -0.008156969211995602, + -0.013067520223557949, + -0.00556466169655323, + -0.001699392101727426, + 0.0012554331915453076, + -0.00027432863134890795, + 0.04573658108711243, + 0.0062880124896764755, + 0.02307903952896595, + 0.011410663835704327, + -0.003507476532831788, + 0.0035873688757419586, + 0.014676128514111042, + 0.010516111738979816, + 0.0018252201844006777, + 0.06434585899114609, + -0.00013990458683110774, + -0.003911940380930901, + -0.007330667227506638, + 0.007336986716836691, + 0.025375481694936752, + 0.0012460313737392426, + -0.0008676341385580599, + -0.0009727210854180157, + 0.010996866971254349, + -0.0027269257698208094, + -0.010075267404317856, + -0.015615367330610752, + -0.004622891545295715, + -0.01660420186817646, + 0.008311948738992214, + -0.014058792032301426, + -0.006654924713075161, + -0.010846463963389397, + 0.024682819843292236, + -0.011827098205685616, + -0.006352391559630632, + 0.00861724466085434, + -0.0054148356430232525, + 0.01382870227098465, + -0.013689249753952026, + 0.026797384023666382, + -0.00818825326859951, + 0.004518771544098854, + 0.002060787985101342, + 0.019531801342964172, + 0.017965663224458694, + -5.00086898682639e-05, + -0.0012774895876646042, + 0.009507900103926659, + 0.0017053815536201, + 0.008567450568079948, + -0.006351938936859369, + 0.012259495444595814, + -0.005218172445893288, + 0.007616269867867231, + 0.004751462489366531, + -0.0043897321447730064, + -0.012117917649447918, + 0.0007599418167956173, + 0.013566671870648861, + -0.0028035053983330727, + -0.0009430163190700114, + -0.013808934949338436, + 0.014701510779559612, + 0.0028525504749268293, + 0.007941273972392082, + -0.01404363103210926, + -0.004095979500561953, + -0.017998414114117622, + -0.009419562295079231, + -0.004424537997692823, + -0.010233483277261257, + -0.06204307824373245, + -0.002983337501063943, + 0.008001993410289288, + 0.00013497938925866038, + 0.01077127642929554, + -0.012153067626059055, + 0.0015306544955819845, + -0.0070550632663071156, + -0.0022847617510706186, + -0.021331027150154114, + -0.0010075963800773025, + 0.005553188733756542, + -0.010451740585267544, + 0.006507006008177996, + 0.003487048204988241, + -0.0015388668980449438, + 0.018351256847381592, + 0.0016124764224514365, + -0.0018741678213700652, + 0.008724858053028584, + 0.013877127319574356, + 0.024312466382980347, + 0.006692728493362665, + 0.036480240523815155, + -0.0018676938489079475, + -0.025021005421876907, + 0.006540580652654171, + -0.005535404663532972, + 0.006196522619575262, + 0.010763363912701607, + -0.0025014823768287897, + -0.0073499116115272045, + -0.011815239675343037, + -0.0030834157951176167, + -0.024455152451992035, + 0.006592268589884043, + 0.007402092684060335, + 0.014006699435412884, + -0.014664366841316223, + 0.014637949876487255, + 0.016121789813041687, + -0.009144403971731663, + 0.01756022684276104, + -0.001388496719300747, + -0.0069350553676486015, + -0.004948874935507774, + -0.01327853836119175, + 0.0027229890692979097, + 0.0030798641964793205, + 0.0064321462996304035, + 0.003908784594386816, + 0.004385760519653559, + 0.022331086918711662, + -0.004977251868695021, + -0.0034429761581122875, + -0.002808951772749424, + -0.010395972058176994, + 0.00512814661487937, + -0.0020714967977255583, + 0.009854736737906933, + -0.004796918947249651, + -0.004092174116522074, + -0.008140928111970425, + 0.0014139554696157575, + 0.01142418384552002, + 0.02043253555893898, + 0.0029479777440428734, + -0.004057170823216438, + -0.043003495782613754, + -0.012372530065476894, + 0.0013859994942322373, + 0.00339811434969306, + -0.001871562679298222, + -0.007122088689357042, + -0.004340541549026966, + -0.002309416886419058, + -0.011076320894062519, + 0.024235980585217476, + -0.004000619053840637, + 0.013890329748392105, + -0.017946865409612656, + 0.02924560382962227, + 0.06620973348617554, + 0.001753525109961629, + 0.0203266441822052, + 0.005386160220950842, + -0.013820619322359562, + -0.003863715333864093, + -0.005990965757519007, + -0.0052818008698523045, + -0.006569386459887028, + 0.002693959977477789, + -0.012460961006581783, + -0.00713926600292325, + 0.012586593627929688, + 0.012583766132593155, + -0.00994952954351902, + -0.006878502666950226, + -0.011120550334453583, + -2.606340785860084e-05, + 0.011406471952795982, + -0.004665589425712824, + 0.0035093361511826515, + -0.027291875332593918, + -0.004674158990383148, + 0.0040190815925598145, + -0.026172684505581856, + -0.0035272305831313133, + -0.00953923910856247, + 0.005746749695390463, + 0.015266135334968567, + -0.0011646776692941785, + 0.006999365985393524, + 0.007996194064617157, + 0.0017766683595255017, + -0.021447578445076942, + -0.005340064410120249, + -0.0016789884539321065, + 0.017546504735946655, + 0.004345173481851816, + 0.009453878737986088, + -0.005775270517915487, + 0.013357296586036682, + 0.009259280748665333, + -0.015288375318050385, + 0.009190368466079235, + -0.0007122129900380969, + -0.0013650520704686642, + 0.0051056016236543655, + 0.016308119520545006, + -0.005135830026119947, + 0.0014032480539754033, + 0.007104455027729273, + -0.0046014562249183655, + -0.0004710144130513072, + -0.003100315108895302, + 0.009388316422700882, + -0.0032119546085596085, + -0.009938483126461506, + 0.00958141777664423, + 0.010084557346999645, + -0.009310008026659489, + -0.01557106338441372, + -0.02029534801840782, + -0.011349199339747429, + 0.0022178657818585634, + 0.002641919068992138, + 0.045736163854599, + -0.002470712410286069, + -0.03064621053636074, + -0.009294500574469566, + 0.0012942762114107609, + 0.007096658926457167, + -0.0052526965737342834, + -0.00822160579264164, + -0.000856060185469687, + -0.025247028097510338, + 0.0016403024783357978, + -0.012489037588238716, + -0.003235848154872656, + -0.012668964453041553, + -0.0013120218645781279, + 0.002253950573503971, + 0.010132016614079475, + 0.017060765996575356, + -0.011842155829071999, + -0.005403848830610514, + 0.020022455602884293, + -0.007307848427444696, + 0.03807369992136955, + 0.00730355829000473, + -0.0007049639243632555, + -0.0032013365998864174, + 0.009338287636637688, + -0.0025105897802859545, + 0.009161504916846752, + 0.012491447851061821, + -0.0023647090420126915, + 0.010111733339726925, + -0.005454835947602987, + -0.006266745273023844, + -0.01636280119419098, + 0.016294309869408607, + 0.0044133588671684265, + 0.014962323941290379, + 0.008870185352861881, + -0.014736714772880077, + -0.0038876424077898264, + -0.00852664653211832, + -0.042528025805950165, + -0.0027314331382513046, + 0.004984288010746241, + -0.005537551827728748, + -0.0354524664580822, + -0.012267043814063072, + 0.0028312993235886097, + 0.00044182344572618604, + 0.024747688323259354, + -0.024629823863506317, + -0.0052917334251105785, + 0.002672692062333226, + 0.008202795870602131, + -0.0006212788866832852, + -0.011899827048182487, + 0.023728294298052788, + 0.01087964978069067, + 0.021275291219353676, + -0.00043099423055537045, + -0.013800475746393204, + -0.00911599863320589, + -0.0069221011362969875, + -0.0012261063093319535, + 0.007415503263473511, + 0.002035788493230939, + -0.01708490028977394, + 0.006135620642453432, + -0.02421005256474018, + -0.014490854926407337, + -0.00023314084683079273, + -0.004609244875609875, + 0.009332471527159214, + 0.00861369352787733, + -0.0025437779258936644, + -0.0005820234073325992, + 0.04062329977750778, + 0.00269790249876678, + -0.008210469037294388, + 0.007736672647297382, + -7.695352542214096e-05, + 0.003744421759620309, + -0.009995903819799423, + -0.004889591131359339, + 0.0007377701695077121, + 0.012057327665388584, + 0.00764756603166461, + 0.010358184576034546, + 0.014069998636841774, + 0.011892504058778286, + 0.009788496419787407, + -0.0029011722654104233, + -0.01203965488821268, + -0.003815610893070698, + 0.012949190102517605, + -0.036824584007263184, + -0.0071170758455991745, + 0.010176807641983032, + 0.01144375279545784, + -0.0025886092334985733, + 0.053021855652332306, + 0.011499911546707153, + -0.006548517383635044, + -0.0022862590849399567, + -0.0242016464471817, + -0.0014802966034039855, + 0.000612627191003412, + 0.06043069809675217, + 0.011218064464628696, + -0.014280767180025578, + 0.007191806100308895, + 0.009919715113937855, + -0.0019143279641866684, + -0.014105012640357018, + 0.00704673258587718, + -0.0034539434127509594, + -0.0069706030189991, + -0.009173103608191013, + 0.0008966283057816327, + -0.006928620394319296, + 0.0001102717942558229, + -0.004392649047076702, + 0.013360058888792992, + 0.012984026223421097, + -0.010130801238119602, + 0.006149757653474808, + -0.002045864937826991, + 0.0008862034301273525, + 0.004439760465174913, + 0.004992334172129631, + 0.0016479671467095613, + -0.012985482811927795, + -0.0068746027536690235, + 0.004246281459927559, + -0.0019500995986163616, + -0.012026789598166943, + 0.0005335169844329357, + 0.0018221185309812427, + 0.008499396964907646, + -0.009385988116264343, + 0.010439581237733364, + 0.009499709121882915, + -0.017222458496689796, + 0.007360205054283142, + 0.005852917209267616, + 0.00984440091997385, + -0.005159153137356043, + 0.0010415903525426984, + -0.00820072926580906, + 0.00941365398466587, + 0.018987851217389107, + 0.02377527765929699, + -0.0028023719787597656, + -0.004097746219485998, + 0.01786002144217491, + 0.00580039294436574, + 0.008427065797150135, + 0.008675826713442802, + -0.013378137722611427, + -0.013195929117500782, + -0.008672364987432957, + 0.006728932727128267, + 0.005961569957435131, + -0.012577061541378498, + -0.0021427730098366737, + -0.0051508210599422455, + 0.0003691804886329919, + -0.009026861749589443, + -0.004914242308586836, + 0.016532793641090393, + 0.010153669863939285, + 0.011084244586527348, + 0.0175007376819849, + 0.008232529275119305, + 0.013406303711235523, + 0.0034155792091041803, + 0.010945633053779602, + 0.011598195880651474, + 0.006308605428785086, + 0.020073039457201958, + -0.0072992038913071156, + -0.013038336299359798, + -0.006078793201595545, + -0.0038889714051038027, + 0.011335679329931736, + -0.011831838637590408, + -0.015045409090816975, + -0.015115408226847649, + -0.004686687607318163, + -0.0026351267006248236, + 0.006928564049303532, + 0.004625018686056137, + -0.011725573800504208, + -0.04189165309071541, + -0.01105706300586462, + 0.0001700763968983665, + -0.01953107863664627, + -0.0217658169567585, + -0.016883287578821182, + 0.009627945721149445, + 0.008074305951595306, + 0.012295827269554138, + -0.00035713714896701276, + 0.004674804396927357, + -0.006541992072016001, + 0.017784642055630684, + -0.005270385183393955, + -0.004677904769778252, + 0.07650487869977951, + -0.004011258948594332, + 0.0025510929990559816, + 0.0030971658416092396, + 0.00960400141775608, + 0.0071830591186881065, + 0.011783838272094727, + 0.004683682695031166, + 0.0077178687788546085, + -0.006084447726607323, + 0.0073542422614991665, + -0.0027253534644842148, + 0.012878293171525002, + -0.03184651955962181, + -0.010843307711184025, + -0.02114497497677803, + -0.0011823284439742565, + 0.0026880225632339716, + -0.029419781640172005, + -0.0030897536780685186, + 0.006919583305716515, + -0.022221442312002182, + 0.009795088320970535, + -0.031940292567014694, + -0.01161898858845234, + -0.0034101693890988827, + 0.009828944690525532, + 0.014148872345685959, + 0.004511649254709482, + 0.0014251602115109563, + -0.00618181424215436, + 0.044238653033971786, + -0.007678232155740261, + 0.01835067942738533, + -0.015239840373396873, + 0.0024383245036005974, + -0.001930577796883881, + 0.013843930326402187, + 0.0003803512663580477, + -0.005787909496575594, + 0.02180146984755993, + -0.009435798972845078, + 0.004987276159226894, + 0.003475375007838011, + -0.017291396856307983, + -0.008159579709172249, + -0.008546239696443081, + 0.02398771047592163, + -0.002114882692694664, + 0.01712627336382866, + 0.0006786074955016375, + 0.008836270309984684, + 0.02810373157262802, + -0.02585422433912754, + 0.012094826437532902, + -0.011612210422754288, + -0.005789251998066902, + -0.03238733857870102, + 0.006242371629923582, + -0.009006696753203869, + 0.005048671737313271, + -0.008006135933101177, + -0.01336123701184988, + -0.0016665251459926367, + 0.03565363585948944, + 0.008858132176101208, + 0.004422352649271488, + -0.0010884309886023402, + 0.001052942592650652, + -0.005514208227396011, + 0.027543019503355026, + 0.0023420287761837244, + 0.003375798463821411, + -0.007698458153754473, + 0.014541233889758587, + -6.846916949143633e-05, + 0.006457672454416752, + -0.00296737696044147, + 0.0032271253876388073, + -0.02153719961643219, + -0.013465072959661484, + 0.0005590373766608536, + -0.010143186897039413, + -0.002306837821379304, + -0.008296964690089226, + -0.01574072241783142, + -0.00339885544963181, + -0.00833522155880928, + 0.00448866281658411, + 0.010530605912208557, + 0.0040268986485898495, + -0.011591329239308834, + -0.006264451891183853, + 0.00111471361014992, + -0.005827341694384813, + -0.05127468705177307, + -0.006647341884672642, + 0.004390583839267492, + -0.001383983064442873, + -0.009258154779672623, + -0.0015191201819106936, + 0.0033568183425813913, + 0.007020275108516216, + 0.008937249891459942, + 0.003962211776524782, + 0.008970719762146473, + -0.00021063094027340412, + 0.009413705207407475, + -0.010555597022175789, + -0.004715491086244583, + -0.011693712323904037, + -0.017681825906038284, + -0.003012859495356679, + 0.004900492262095213, + -0.06108605116605759, + 0.022230239585042, + 0.0013370250817388296, + -0.00339175621047616, + -0.008436660282313824, + -0.014763766899704933, + 0.0017593621741980314, + -0.005607444792985916, + 0.010613358579576015, + -0.0024631477426737547, + 0.00893447082489729, + -0.0015854393132030964, + 0.003376286942511797, + -0.01935071125626564, + -0.007474640384316444, + 0.0008672498515807092, + 0.012399033643305302, + 0.004837283864617348, + 0.0018707835115492344, + -0.002593820448964834, + -0.0018041046569123864, + 0.006850872654467821, + 0.01440757792443037, + -0.007525227963924408, + 0.015457917004823685, + 0.008485997095704079, + 0.00967449601739645, + -0.006997451186180115, + -0.0028801923617720604, + 0.004330182448029518, + 0.021137233823537827, + -0.024607965722680092, + 0.002075061434879899, + -0.0003823535516858101, + -0.0005413835169747472, + -0.013772426173090935, + -0.007792157121002674, + 0.007126343436539173, + 0.0055418494157493114, + 0.05153050273656845, + 0.00983977410942316, + -0.012659239582717419, + -0.011965285986661911, + -0.011823778972029686, + 0.013881409540772438, + 0.01279484760016203, + 6.664924148935825e-05, + 0.009490352123975754, + 0.008322925306856632, + 0.01734974980354309, + 0.014392671175301075, + 0.002203780459240079, + 0.0030685625970363617, + -0.00017804068920668215, + -0.006264375522732735, + 0.004019582644104958, + 0.0089482506737113, + 0.010503607802093029, + 0.0023557080421596766, + 0.033726632595062256, + 0.0023808139376342297, + -0.007523847743868828, + 0.006228944752365351, + 0.03623500466346741, + 0.007659134920686483, + -0.008731098845601082, + 0.047245580703020096, + 0.0044972896575927734, + -0.011458508670330048, + -0.02169829048216343, + 0.012014782987535, + 0.0018905779579654336, + -0.0018584058852866292, + -0.004844297654926777, + -0.010317574255168438, + -0.00920410081744194, + -0.0025130559224635363, + -0.0013743570307269692, + 0.014590900391340256, + 0.008118600584566593, + -3.6444002034841105e-05, + -0.010968656279146671, + -0.0032146398443728685, + 0.015895863994956017, + 0.00663758022710681, + 0.010719118639826775, + 0.016979418694972992, + -0.0027175575960427523, + 0.05214378610253334, + -0.0046760328114032745, + 0.014386977069079876, + -0.013572278432548046, + -0.03068985790014267, + -0.005536533426493406, + 0.012620917521417141, + -0.004976035561412573, + -0.0041646454483270645, + -0.013793806545436382, + -0.013714977540075779, + 0.03295118734240532, + 0.018662037327885628, + 0.017134102061390877, + 0.010601776652038097, + -0.008865478448569775, + 0.014457212761044502, + 0.0108301667496562, + 0.03156565874814987, + -9.826897439779714e-05, + -6.053390461602248e-05, + -0.0010161694372072816, + 0.023779546841979027, + 0.01741381175816059, + -0.026165910065174103, + 0.013398121111094952, + 0.007124623283743858, + 0.01832759566605091, + -0.004567402880638838, + 0.008223912678658962, + 0.016844777390360832, + 0.001207746914587915, + 0.010214291512966156, + -0.016646532341837883, + 0.0030147151555866003, + -0.009996414184570312, + -0.0019539999775588512, + -0.016712090000510216, + 0.005350339692085981, + -0.0032577787060290575, + 0.005019658710807562, + -0.006984293926507235, + -0.0018551683751866221, + -0.007669272366911173, + -0.012868992984294891, + 0.01255822740495205, + -0.004377720411866903, + -0.004341767635196447, + 0.016537034884095192, + 0.00016095292812678963, + -0.011908059008419514, + -0.00341915269382298, + -0.0036668474785983562, + 0.01850881241261959, + -0.018124675378203392, + -0.022177590057253838, + 0.001656786655075848, + -0.006837011314928532, + -0.008002315647900105, + -0.06105383485555649, + 0.010675067082047462, + 0.010715455748140812, + 0.017461029812693596, + -0.006558117922395468, + -0.008400015532970428, + 0.0028321417048573494, + -0.021827470511198044, + 0.0062350439839065075, + 0.02332102507352829, + 0.006855846848338842, + -0.05764741823077202, + -0.011359592899680138, + -0.01313048042356968, + 0.0031827399507164955, + -0.14561642706394196, + 0.0254509337246418, + 0.016494786366820335, + -0.0027501063887029886, + 0.0022776848636567593, + 0.0013512274017557502, + 0.0061673130840063095, + -0.016969189047813416, + -0.004373215138912201, + -0.0006751310429535806, + 0.046781543642282486, + 0.00795059371739626, + -0.006640591658651829, + -0.013584231957793236, + 0.005923457909375429, + 0.006171594373881817, + 0.0030837031081318855, + -0.03852933272719383, + -0.006747071165591478, + 0.044720206409692764, + -0.009974860586225986, + 0.005704175680875778, + -0.023113807663321495, + -0.011085877195000648, + -0.013182500377297401, + 0.002506517805159092, + 0.0038564305286854506, + -0.009831856936216354, + -0.03350146487355232, + 0.024445582181215286, + -0.002123773330822587, + 0.00197273469530046, + -0.001097145606763661, + 0.005650658626109362, + 0.00420505041256547, + 0.005038469564169645, + -0.00016322526789736003, + 0.007035753224045038, + 0.0025159018114209175, + 0.05673004314303398, + -0.009608842432498932, + -0.003205427899956703, + -0.0032712246757000685, + 0.003858715295791626, + -0.000540661159902811, + -0.012096027843654156, + -0.011084585450589657, + -0.0017909331945702434, + -0.012862465344369411, + 0.0052211228758096695, + -0.008022816851735115, + -0.004679534118622541, + 0.014189483597874641, + 0.0008687153458595276, + -0.014294405467808247, + -0.003401967464014888, + 0.006403002887964249, + 0.009531117975711823, + 0.0019095288589596748, + 0.002796825021505356, + 0.0031299900729209185, + -0.013527313247323036, + 0.006049199961125851, + -0.0059805032797157764, + 0.0156872421503067, + 0.013212881051003933, + -0.004524533171206713, + 0.00624469667673111, + 0.0038584775757044554, + 0.012158344499766827, + 0.012479891069233418, + 0.0010317382402718067, + -0.003983149304986, + 0.08178892731666565, + 0.004887601360678673, + -0.015635337680578232, + -0.00287707825191319, + 0.005318227224051952, + 0.009476996026933193, + -0.017000563442707062, + -0.003609553910791874, + 0.00662279361858964, + -0.011640640906989574, + -0.0015604376094415784, + -0.002008502371609211, + -0.009556647390127182, + 0.007457606494426727, + 0.011338828131556511, + -0.012406716123223305, + 0.00723591074347496, + 0.0035046259872615337, + 0.025391489267349243, + 0.003849778324365616, + 0.005614022724330425, + 0.052664514631032944, + -0.016649827361106873, + -0.004353775177150965, + -0.0018613231368362904, + -0.004704075399786234, + -0.002102125668898225, + -0.025860223919153214, + -0.0016498304903507233, + 0.019512884318828583, + -0.003971484489738941, + -0.01988057605922222, + 0.0022812201641499996, + -0.001993222162127495, + -0.0016538024647161365, + 0.0001440944615751505, + -0.0031609360594302416, + -0.007678871043026447, + -0.015011771582067013, + -0.0007460673805326223, + 0.005165659822523594, + 0.059520188719034195, + -0.0007313512032851577, + -0.005915504414588213, + -0.010454651899635792, + 0.00575400423258543, + -0.00838505756109953, + -0.009030081331729889, + -0.0003233088064007461, + 0.0005635286797769368, + -0.0033466701861470938, + -0.0031258545350283384, + 0.01206840667873621, + -0.00821436382830143, + -0.008702791295945644, + -0.008641315624117851, + -0.008920533582568169, + 0.006844623479992151, + 0.006937272381037474, + 0.021019738167524338, + -0.00016899073671083897, + 0.006808487232774496, + -0.018939051777124405, + 0.012511761859059334, + -0.0017812082078307867, + -0.010066915303468704, + -0.010317647829651833, + 0.0020817674230784178, + -0.0047735609114170074, + 0.0006700410158373415, + 0.005859067663550377, + 0.0063630021177232265, + 0.00391740258783102, + 0.005974665284156799, + -0.014307181350886822, + -0.021013423800468445, + 0.01583489589393139, + 0.01689918525516987, + 0.013805505819618702, + 0.0006892389501444995, + -0.0024348623119294643, + -0.012351294979453087, + -0.006505819037556648, + -0.017864452674984932, + -0.013437611050903797, + 0.005933777429163456, + -0.003076056716963649, + -0.005258611869066954, + 0.0046804435551166534, + 0.0024210098199546337, + -0.0030153365805745125, + 0.003195589641109109, + 0.011556344106793404, + -0.01934647187590599, + -0.032356344163417816, + -0.002157471375539899, + 0.0040307375602424145, + 0.011726589873433113, + 0.018058372661471367, + 0.014011051505804062, + 0.004028239753097296, + -0.008488822728395462, + -0.006734438706189394, + 0.004863381385803223, + 0.0007035558810457587, + -0.010587728582322598, + 0.006356354802846909, + -0.00982714630663395, + -0.007414711639285088, + -0.009542775340378284, + -0.06559613347053528, + 0.001529080793261528, + 0.028878090903162956, + -0.007758074905723333, + 0.007061521522700787, + 0.013089388608932495, + -0.0046140337362885475, + -0.008921986445784569, + 0.013200060464441776, + -0.0010119916405528784, + -0.0322834737598896, + 0.000659855199046433, + 0.0031824747566133738, + 0.0009082461474463344, + -3.15751058224123e-05, + 0.004622122272849083, + -0.0038913143798708916, + -0.03192823380231857, + -0.0008123398874886334, + 0.001404765760526061, + 0.06944315880537033, + 0.006703733000904322, + 0.009648113511502743, + -0.008295535109937191, + -0.005008244421333075, + 0.009445542469620705, + -0.003582282457500696, + 0.029584849253296852, + 0.008200329728424549, + -0.006040513981133699, + 0.008443238213658333, + 0.015479939058423042, + 0.00858156755566597, + 0.014971774071455002, + -0.003420613007619977 + ] + } + }, + "global_mean": [ + -0.660224199295044, + 0.2531801760196686, + 0.16557204723358154, + -0.03709907457232475, + 0.08404586464166641, + -0.2879008650779724, + -0.2166106104850769, + -0.21524778008460999, + -0.027413953095674515, + -0.05752986669540405, + 0.1080121099948883, + 0.15855807065963745, + -0.03565913811326027, + -0.09019497036933899, + -0.6965466737747192, + 0.07536520063877106, + -0.11257989704608917, + -0.23388764262199402, + 0.03208433836698532, + 0.7573295831680298, + -0.33802247047424316, + 0.23290234804153442, + -0.6945880651473999, + 0.35881927609443665, + 0.0859457477927208, + -0.4154554009437561, + -0.6598726511001587, + 0.18839307129383087, + -0.3268192708492279, + -0.00659358873963356, + -0.07804548740386963, + 0.05578006058931351, + -0.07620243728160858, + 0.003662247210741043, + -0.15762928128242493, + -0.3194935917854309, + -0.09732912480831146, + -0.3688039183616638, + 0.1606740951538086, + -0.16832061111927032, + -0.23722825944423676, + 0.3391193449497223, + -0.2770458459854126, + -0.10191728919744492, + -0.14962054789066315, + 0.2061445713043213, + -0.020202621817588806, + -0.4305177330970764, + -0.29334527254104614, + 0.12732359766960144, + 0.3334922790527344, + -1.3983232975006104, + -0.5198487639427185, + -0.5216003656387329, + -0.009702563285827637, + -0.14592139422893524, + -0.28244540095329285, + -0.01598844863474369, + -0.5304609537124634, + -0.24699437618255615, + -0.01588526740670204, + 0.07887320220470428, + -0.3908837139606476, + -0.29241907596588135, + -0.21887245774269104, + -0.05394057184457779, + 0.36302679777145386, + -0.11020369827747345, + -0.09285786747932434, + -0.0651981383562088, + -0.036663368344306946, + -0.38758599758148193, + -0.17642126977443695, + -0.3387468755245209, + -0.21797877550125122, + 0.5737012624740601, + -0.3077155649662018, + 0.05443377420306206, + -0.3876074254512787, + 0.40209537744522095, + 0.4255436062812805, + -0.3081565797328949, + 0.37368690967559814, + -0.5721557140350342, + -0.2617703378200531, + 0.4120214581489563, + 0.31533920764923096, + -0.8804531097412109, + -0.224101722240448, + 0.04151317849755287, + 0.5256089568138123, + 0.029999051243066788, + -0.6005735993385315, + -1.0954432487487793, + 0.2174631953239441, + -0.5677691698074341, + -0.1580159217119217, + 0.12715265154838562, + 0.06010866165161133, + 0.15945947170257568, + 0.015010125935077667, + -0.3130287230014801, + -0.49873441457748413, + -0.6435472369194031, + -0.1403527855873108, + -0.12023067474365234, + -0.3037441372871399, + -0.10072456300258636, + 0.1158268004655838, + 0.023816900327801704, + -0.19897669553756714, + -0.07213852554559708, + -0.4973195791244507, + 0.45276206731796265, + 0.3988357186317444, + -0.2307610660791397, + -0.12178123742341995, + 0.48886531591415405, + 0.32603704929351807, + 0.10388027131557465, + -0.024135325103998184, + -0.09446074068546295, + -0.3802756667137146, + 0.3761361539363861, + -0.2720687985420227, + -0.21020275354385376, + 0.5870075225830078, + 0.31498414278030396, + -0.4364663362503052, + 0.13241177797317505, + -0.42727190256118774, + 0.08856925368309021, + 0.0037861764430999756, + -0.013602625578641891, + 0.3999275267124176, + 0.1935594081878662, + -0.15847381949424744, + 0.051633235067129135, + -1.4064674377441406, + -0.055767375975847244, + -0.09729266166687012, + 0.12978827953338623, + -0.7480862140655518, + -0.03980810195207596, + 0.16771361231803894, + -0.08607836812734604, + -0.552639901638031, + -0.054720982909202576, + 0.7254671454429626, + 0.4391494393348694, + 0.3164947032928467, + -0.09615813195705414, + -0.08675262331962585, + 0.3185800611972809, + -0.617243766784668, + 0.409776508808136, + -0.025406448170542717, + 0.04978974163532257, + -0.20307549834251404, + -0.22472749650478363, + -0.27692481875419617, + -0.15868248045444489, + -0.24643836915493011, + 0.20551139116287231, + 0.08393512666225433, + 0.43390777707099915, + 0.4476068615913391, + -0.24916383624076843, + 0.607650876045227, + 0.024739578366279602, + -0.12289851158857346, + -0.745467483997345, + -0.10974133014678955, + -0.13199153542518616, + 0.1286301612854004, + 0.45500075817108154, + 0.016868315637111664, + -0.06311250478029251, + -0.01266545057296753, + -0.006512545049190521, + 0.12876880168914795, + -0.2640960216522217, + 0.40044525265693665, + -0.18545842170715332, + -0.23716706037521362, + 0.2159181535243988, + 0.17094367742538452, + -0.16916903853416443, + -0.0031592249870300293, + 0.24942836165428162, + -0.2562311589717865, + -0.46957749128341675, + -0.10538217425346375, + -0.33289605379104614, + -0.16367682814598083, + 0.1639498472213745, + -0.19253504276275635, + 0.07848113030195236, + 0.010880045592784882, + 0.486307829618454, + -0.25932663679122925, + -0.8407199382781982, + 0.03028414398431778, + 0.023559853434562683, + 0.17506369948387146, + 0.025064731016755104, + -0.10175469517707825, + 1.3332228660583496, + -2.838172435760498, + 0.12686356902122498, + -0.3443877398967743, + 0.004252821207046509, + -0.035983745008707047, + 0.3852771818637848, + 0.09063887596130371, + -0.5546045303344727, + 0.037348758429288864, + 0.054560210555791855, + 0.048301614820957184, + 0.058793388307094574, + -0.15090203285217285, + 0.1903633028268814, + 0.021862223744392395, + 0.24174714088439941, + -0.8120436668395996, + -0.19539213180541992, + -0.17571711540222168, + 0.1436375081539154, + 0.3794742226600647, + -0.6698200702667236, + 0.11915814876556396, + -0.24289792776107788, + 0.0991009920835495, + -80.38728332519531, + -1.354806661605835, + 1.2156213521957397, + 0.008607091382145882, + -0.33853572607040405, + -0.054235927760601044, + -0.03257372975349426, + 0.11506840586662292, + 0.0179937481880188, + -0.1338094174861908, + 2.809767246246338, + -0.12269552052021027, + 0.08779326826334, + 0.0022686123847961426, + -0.2701546549797058, + 0.21557292342185974, + 0.23707807064056396, + -0.2604203224182129, + -0.33468541502952576, + 0.3540235459804535, + 0.05826863646507263, + -0.10148558765649796, + -0.27986249327659607, + -0.05160410702228546, + -0.4301352798938751, + -0.3687465786933899, + -0.29398980736732483, + 0.07845823466777802, + -0.42561060190200806, + 0.16787511110305786, + 0.08608625084161758, + 0.32870402932167053, + -0.1678742617368698, + -0.29944705963134766, + -0.02819647639989853, + -0.15563754737377167, + 0.11079064756631851, + 2.639509677886963, + -0.3751792907714844, + -0.2827988862991333, + -0.30975914001464844, + -0.5832242965698242, + 0.13814117014408112, + -0.005534451454877853, + -0.1511700451374054, + -0.780941367149353, + 0.09714158624410629, + -0.09784837812185287, + -0.23409193754196167, + 0.12996599078178406, + -0.3069241940975189, + 0.2493448406457901, + 0.19513456523418427, + 0.10213462263345718, + -0.04589349776506424, + 0.036921702325344086, + -0.07629309594631195, + 0.3482021987438202, + 0.39389780163764954, + 0.8672423362731934, + 0.9615322947502136, + -0.31457555294036865, + 0.17686012387275696, + 0.3032563328742981, + -0.3115437626838684, + 0.12803888320922852, + 0.38331854343414307, + 0.09849922358989716, + 0.08275897800922394, + -0.34467461705207825, + 0.17923179268836975, + 0.35179007053375244, + -0.42531460523605347, + 0.444038987159729, + 0.0763578787446022, + 0.09022233635187149, + 0.31285595893859863, + 0.5818749666213989, + -0.21619564294815063, + -0.4190087914466858, + -0.01795268803834915, + -0.10320747643709183, + -0.2545628249645233, + 0.081116683781147, + 0.01573760434985161, + 0.020853783935308456, + -0.5971962213516235, + -0.14192084968090057, + 0.07619848847389221, + 0.19142384827136993, + -0.11107021570205688, + -0.08916973322629929, + 0.20675449073314667, + 0.17730632424354553, + 0.9345476031303406, + -0.5430598258972168, + 0.47926831245422363, + 0.12098778039216995, + -0.07248034328222275, + 0.4699907600879669, + 0.18485775589942932, + -0.43107378482818604, + 0.25635749101638794, + -0.41135331988334656, + -0.15139919519424438, + -0.544934093952179, + 0.6816921234130859, + 0.1418381929397583, + 0.05427559092640877, + 0.5109315514564514, + 0.3035721182823181, + 0.008274409919977188, + 0.04252268373966217, + 0.22513198852539062, + -0.13834702968597412, + 0.20056411623954773, + 0.20220759510993958, + 0.42312633991241455, + -0.14753684401512146, + 1.0162932872772217, + 0.024974912405014038, + 0.4349130690097809, + 0.03279883787035942, + 1.101132869720459, + -0.15487706661224365, + -0.4110294282436371, + 0.13879744708538055, + 0.15450210869312286, + 0.6112266778945923, + -0.2825471758842468, + -0.02557271718978882, + -0.016698017716407776, + -0.07967828214168549, + -0.3651469945907593, + -0.266938179731369, + -5.274272441864014, + 0.10674864053726196, + 0.14737239480018616, + 0.008712434209883213, + -0.037278465926647186, + 0.5053973197937012, + 0.22851881384849548, + 0.07710444182157516, + 0.22253215312957764, + -0.15565010905265808, + 0.16802246868610382, + 0.19305089116096497, + -0.0653778612613678, + -1.7764341831207275, + 1.0792770385742188, + 0.5495566725730896, + 0.01208401843905449, + -0.19948634505271912, + 0.1197001039981842, + -0.2902430593967438, + -0.19033585488796234, + -0.37005379796028137, + 0.25420576333999634, + -0.26729872822761536, + 0.2527373433113098, + -0.18592411279678345, + -0.14557719230651855, + 0.42361265420913696, + 0.3709006905555725, + 0.37269628047943115, + 0.26145535707473755, + -0.245051309466362, + 0.19933092594146729, + -0.18783104419708252, + 0.15724661946296692, + 0.2015325129032135, + -0.06995652616024017, + 0.09547971189022064, + 0.5707488059997559, + 0.13208144903182983, + -0.34884440898895264, + 0.42204809188842773, + 0.41575706005096436, + -1.363400936126709, + -0.396060049533844, + -0.3421843349933624, + -0.5325124263763428, + 0.2270810753107071, + -0.16398736834526062, + 0.11541486531496048, + 0.10723471641540527, + 0.8629428148269653, + 0.011754123494029045, + 0.41926151514053345, + 0.12229452282190323, + -0.46678757667541504, + 0.1714569330215454, + -0.05897548049688339, + 0.40205031633377075, + 0.31047412753105164, + 0.20112131536006927, + 0.3594469726085663, + 1.9364628791809082, + 0.03507812321186066, + 1.2563790082931519, + 0.3865366578102112, + -0.15148289501667023, + -0.07988092303276062, + 0.08181092143058777, + -0.030087534338235855, + -0.1517592966556549, + 0.21641042828559875, + 0.219134122133255, + -0.07498380541801453, + -0.016939610242843628, + -4.715070724487305, + -0.23433855175971985, + 0.14914420247077942, + 0.13799458742141724, + 0.1572953164577484, + -0.20198671519756317, + 0.44014298915863037, + -0.3737718462944031, + -0.08268985152244568, + 0.07286015152931213, + 0.04056356102228165, + -0.022714179009199142, + -0.08982943743467331, + 0.13793900609016418, + -0.12329466640949249, + 1.1452698707580566, + 0.4936148524284363, + -0.2902032732963562, + -0.18247750401496887, + 0.18196561932563782, + 0.06763108819723129, + -0.32304656505584717, + 0.37078753113746643, + 0.03709672391414642, + 0.09903205931186676, + 0.22178757190704346, + -0.38506799936294556, + -0.29421183466911316, + 0.039234716445207596, + -0.22042183578014374, + -0.28430187702178955, + -0.08550694584846497, + 0.7060876488685608, + -0.10970419645309448, + -0.13913610577583313, + -0.5948144197463989, + 0.08985663950443268, + -0.4919902980327606, + 0.11250201612710953, + -0.10407688468694687, + 0.45548489689826965, + -0.5275034308433533, + -0.11564154177904129, + -0.05283185839653015, + 0.005658730864524841, + -0.27645987272262573, + -0.18772131204605103, + 0.22383344173431396, + -0.050292402505874634, + -0.19428043067455292, + -0.4079567790031433, + 0.25317519903182983, + -0.14430247247219086, + 0.3776702582836151, + 0.22549456357955933, + -0.21983186900615692, + -0.014712713658809662, + 0.15062838792800903, + -0.1701352596282959, + -0.04830772802233696, + -0.3692101240158081, + -0.08673902601003647, + 0.38506025075912476, + -0.26484084129333496, + 0.22960463166236877, + -0.12952372431755066, + 0.29584723711013794, + -0.14524555206298828, + 0.3016892075538635, + -0.16017423570156097, + 0.008742175996303558, + -0.041773274540901184, + -0.2993708848953247, + -0.07363537698984146, + -0.1884658932685852, + -0.23427924513816833, + 0.07118159532546997, + 0.17723692953586578, + 0.6474264860153198, + 0.464721143245697, + 0.39461061358451843, + -0.10601623356342316, + 0.4013330936431885, + 0.028070712462067604, + -0.11029621958732605, + 0.2098488211631775, + -0.07202348858118057, + 0.05263906717300415, + 0.09660037606954575, + 0.18656891584396362, + 0.17205624282360077, + 0.027117885649204254, + 0.3841259479522705, + 0.06967340409755707, + -1.0670511722564697, + -0.07107220590114594, + -0.11018635332584381, + -0.03364860266447067, + 0.05334626883268356, + -0.1209297850728035, + -0.1014961525797844, + 0.36278536915779114, + -0.17296549677848816, + 1.1062426567077637, + 0.5601907968521118, + 0.6138383746147156, + 0.5585396885871887, + 0.17630329728126526, + -0.48449015617370605, + -1.920649766921997, + -0.4088253974914551, + 0.030554000288248062, + 0.22787608206272125, + -0.2246517539024353, + 0.30913880467414856, + 0.3390690088272095, + -1.181033730506897, + -0.1663278043270111, + 0.11222749948501587, + 0.19833192229270935, + 0.16610202193260193, + 0.3256042003631592, + -0.19365717470645905, + 0.10458147525787354, + 0.1331368237733841, + -0.18089748919010162, + -0.4683723747730255, + -0.3904869556427002, + 0.32831871509552, + 0.011142350733280182, + -0.2364802062511444, + -0.06520547717809677, + -0.05830593407154083, + -0.31828513741493225, + -0.11320528388023376, + -0.26770949363708496, + 0.1752973347902298, + 0.214772030711174, + 0.09312734752893448, + -0.27860185503959656, + -0.458401083946228, + -0.4447522461414337, + -0.1094260960817337, + -0.251473069190979, + 0.23291857540607452, + -0.07031981647014618, + 0.2257491797208786, + -0.8466057181358337, + -0.29440760612487793, + -0.49388551712036133, + -0.03187151625752449, + 0.003990646451711655, + 0.2545608878135681, + -0.020112693309783936, + 0.03296220675110817, + 0.557099461555481, + 0.08419486880302429, + -0.17094051837921143, + 0.42183226346969604, + -0.30834144353866577, + 0.2721896171569824, + 0.06272833049297333, + -0.09086018800735474, + -0.41549521684646606, + -0.05176783353090286, + -0.3406444787979126, + 0.35358572006225586, + -0.898679256439209, + 0.7338472604751587, + -0.35676321387290955, + -0.21018025279045105, + 0.07258669286966324, + -1.2085721492767334, + 0.40878182649612427, + 0.241723895072937, + -0.23082301020622253, + 0.20111219584941864, + 0.1386318951845169, + -0.1990290731191635, + 0.17560505867004395, + -0.16965895891189575, + 0.4164090156555176, + 0.23342008888721466, + 1.0278682708740234, + -0.08591489493846893, + 0.1037711501121521, + -0.06477776914834976, + 0.2914615273475647, + 0.06846050918102264, + -0.1119745597243309, + -0.2319711446762085, + 0.3141802251338959, + 0.05645935237407684, + 0.11143864691257477, + -0.27367979288101196, + -0.3670877516269684, + 0.22459881007671356, + 0.19369710981845856, + -0.03855913132429123, + 0.3489455580711365, + -0.27367860078811646, + -1.223378300666809, + -0.31570929288864136, + -0.01417996734380722, + 0.5307298898696899, + 0.10604628920555115, + -0.12106747925281525, + -0.21684511005878448, + 0.10457826405763626, + -0.1807284653186798, + -0.42374008893966675, + 0.3405097723007202, + 0.4760093092918396, + -0.15839700400829315, + 0.22708739340305328, + -0.49234652519226074, + 0.1727282553911209, + -0.017714504152536392, + 0.5471458435058594, + 0.200933039188385, + 0.08916068822145462, + -0.10506740212440491, + 0.855210542678833, + 0.3884565830230713, + 0.04799961298704147, + -0.3091108202934265, + -0.12314886599779129, + 0.40341824293136597, + -0.015048526227474213, + 0.07325387001037598, + 0.08884076029062271, + 0.4698507487773895, + 0.3474348783493042, + -3.4027278423309326, + 0.12624655663967133, + 0.19713157415390015, + -0.3190898299217224, + 0.38098421692848206, + 0.015354767441749573, + 0.10905963182449341, + 0.1254945993423462, + 0.7408697605133057, + 0.36904799938201904, + -0.009436938911676407, + -0.3366158604621887, + -0.01916433870792389, + -0.014123886823654175, + 0.6015439033508301, + -0.3112361431121826, + 0.39187049865722656, + 0.13230030238628387, + -0.18246962130069733, + 0.18567141890525818, + 0.06613529473543167, + -0.25210174918174744, + -0.05496332794427872, + -0.23244065046310425, + 0.05825471878051758, + -0.6242693662643433, + 0.007155388593673706, + 0.13153299689292908, + 0.38978344202041626, + -0.32761549949645996, + -0.17007461190223694, + -0.8532137274742126, + -0.3847147524356842, + 0.21660161018371582, + -0.29193025827407837, + 0.3220458924770355, + -0.02945064753293991, + 0.18634538352489471, + 0.5495834350585938, + 0.05981121212244034, + -2.887173652648926, + -0.036184266209602356, + -0.12987983226776123, + 0.2151414453983307, + 0.1057540625333786, + 0.027987495064735413, + -0.24542436003684998, + -0.31680598855018616, + -0.24905653297901154, + -0.24773965775966644, + 0.16120459139347076, + -0.19503548741340637, + 0.21333321928977966, + 0.1453310251235962, + -0.06312666833400726, + -0.08080955594778061, + 0.26763877272605896, + -0.16957473754882812, + 0.7626862525939941, + -0.13203252851963043, + -0.8607507348060608, + -0.4211852550506592, + -0.11268553137779236, + 0.2407500147819519, + -0.15953263640403748, + 0.1744879186153412, + -0.17548714578151703, + 0.15597368776798248, + -0.308107852935791, + 0.15849390625953674, + -0.1955624222755432, + 0.6456862688064575, + 0.2922872304916382, + -0.09860746562480927, + 0.28427809476852417, + -0.1479680836200714, + 0.21015453338623047, + -0.2418971061706543, + -0.08019329607486725, + 0.1731000542640686, + 0.02231665700674057, + 0.19223251938819885, + -0.014893978834152222, + 0.40114858746528625, + 0.4793602228164673, + -0.552452564239502, + 0.20153890550136566, + 0.2994791865348816, + 0.06762994825839996, + 0.14749744534492493, + 0.10599856078624725, + 0.07724397629499435, + -0.24121931195259094, + 0.010981470346450806, + -0.24112652242183685, + 0.5646666288375854, + 0.17796090245246887, + 0.33335667848587036, + -0.46707767248153687, + 0.05308295786380768, + 0.29476508498191833, + 0.10685315728187561, + 0.2139398753643036, + 0.3278236389160156, + -0.5488393306732178, + 0.25907573103904724, + -0.2412375807762146, + -0.019697178155183792, + -0.1506197452545166, + -0.04563523083925247, + -0.05564405769109726, + 1.7754660844802856, + 0.13536088168621063, + -0.2336842119693756, + 0.3841087222099304, + -0.08646883070468903, + 0.26478737592697144, + -0.28957825899124146, + -0.2912572920322418, + -0.08969545364379883, + 0.19737067818641663, + -0.11161204427480698, + -0.2103392332792282, + 0.3061780333518982, + -0.07436780631542206, + 0.1378115713596344, + 0.07361844182014465, + 0.0004725176841020584, + 0.2557434141635895, + 0.03184247761964798, + 0.5191608667373657, + 0.26339730620384216, + 0.5418723821640015, + -0.7037103772163391, + 0.010145917534828186, + -0.3773375153541565, + 0.343614399433136, + -0.16621969640254974, + 0.1191139817237854, + -0.560156524181366, + 0.0011098477989435196, + 0.2517334222793579, + -0.11287274956703186, + -0.293475478887558, + -0.03428635373711586, + 0.30131298303604126, + -4.727248191833496, + 0.14302614331245422, + -0.06709545105695724, + 0.15283744037151337, + 0.11425440013408661, + -0.419886976480484, + -0.11828917264938354, + -0.004974745213985443, + 0.012120246887207031, + 0.04792141169309616, + -0.17223381996154785, + -0.16042588651180267, + -0.05499795824289322, + 0.18444454669952393, + 0.026176288723945618, + -0.4380599856376648, + 0.01305929571390152, + 0.16922013461589813, + -0.2621699869632721, + 0.20493309199810028, + 0.14204159379005432, + 0.43021923303604126, + -0.032161593437194824, + -0.1589522808790207, + -0.11787495017051697, + -0.04146856069564819, + 0.051458440721035004, + 0.3050789535045624, + 0.7125321626663208, + -0.05173663794994354, + 0.371612012386322, + 0.038801975548267365, + 0.2084832489490509, + 0.14900651574134827, + 0.5298326015472412, + -0.08852006494998932, + -0.22454878687858582, + -0.33078739047050476, + 0.04851660132408142, + -0.13912317156791687, + -0.5203897953033447, + -0.1405729055404663, + 0.09742453694343567, + 0.12402032315731049, + 0.2646547555923462, + 0.1618732064962387, + -0.5702543258666992, + 0.3322104215621948, + 0.017736539244651794, + 0.05218363553285599, + 0.3551427125930786, + -0.08021431416273117, + 0.09574420750141144, + -0.11337999999523163, + -1.9604771137237549, + -0.03845354542136192, + 0.13518600165843964, + -0.2071361541748047, + -0.05658625438809395, + 0.07194915413856506, + 0.564113438129425, + -0.13112357258796692, + 0.06464539468288422, + -0.0007423572242259979, + 0.06594392657279968, + 0.16350030899047852, + 0.23582926392555237, + 0.2740723788738251, + 0.09194536507129669, + -0.09281417727470398, + -0.23482075333595276, + 0.20907649397850037, + 0.1958974152803421, + 0.20969246327877045, + -0.37911197543144226, + -0.2033286690711975, + 0.26027607917785645, + -0.21253281831741333, + -0.039619289338588715, + -0.4036749005317688, + 0.2908216714859009, + 0.10050100088119507, + -0.041465550661087036, + 0.8889364004135132, + 0.1308760941028595, + -0.03764292597770691, + -1.071082592010498, + -0.06796535104513168, + -0.13332927227020264, + -0.7362443804740906, + 0.006084477063268423, + -0.17037755250930786, + -0.001558993011713028, + 0.20474016666412354, + 0.32259851694107056, + -0.2087833136320114, + 0.2346004843711853, + 0.31394070386886597, + -0.030978556722402573, + -0.13912367820739746, + -0.1304209679365158, + -4.591598987579346, + 0.09711010754108429, + 0.32153749465942383, + 0.26980113983154297, + -0.049321841448545456, + -0.2610923647880554, + -2.6067447662353516, + 0.0619015246629715, + 0.4763270318508148, + 0.1833173930644989, + 0.22178691625595093, + -0.021290503442287445, + 0.4455116391181946, + -0.3507196307182312, + -0.07892332226037979, + 0.2119964063167572, + 0.06610479205846786, + -0.6218351125717163, + -0.2850656807422638, + -0.30428069829940796, + 0.31825315952301025, + 0.12870679795742035, + -0.7548917531967163, + -0.3039712905883789, + -0.13019023835659027, + 0.059867698699235916, + -0.39025306701660156, + 0.012199951335787773, + 0.2633727490901947, + -0.29512786865234375, + 0.2768455743789673, + 0.19319650530815125, + -0.06579811125993729, + -0.020134761929512024, + 0.551094651222229, + 0.08547963201999664, + 1.1167798042297363, + 0.4664587080478668, + 0.04115087538957596, + -9.298324584960938e-06, + -0.05259019136428833, + 0.18652354180812836, + 0.04292907565832138, + -0.012896120548248291, + 0.10526879131793976, + -0.19839882850646973, + -0.4653552770614624, + 0.0007536299526691437, + 0.059991806745529175, + -0.498197078704834, + 0.1591467708349228, + 0.011349616572260857, + -0.04844819754362106, + -0.3465677499771118, + -0.5681574940681458, + 0.03845498710870743, + 0.12595945596694946, + -0.28248584270477295, + 0.019967932254076004, + -0.1205907016992569, + 0.18242749571800232, + -0.7005480527877808, + 0.14697256684303284, + -0.24347753822803497, + -1.415435791015625, + 0.11926843225955963, + -0.8752982020378113, + -0.24433496594429016, + -0.09314441680908203, + -0.32335591316223145, + -0.02727402001619339, + 10.55439567565918, + 0.010474428534507751, + -0.05115649849176407, + -0.028495579957962036, + -0.20679409801959991, + 0.015166614204645157, + -0.2212536334991455, + 0.6424699425697327, + 0.1867239773273468, + 0.34457728266716003, + -0.08476654440164566, + 0.29311054944992065, + 0.1158829927444458, + -0.41942542791366577, + -0.2031068056821823, + 0.11681828647851944, + 0.08917109668254852, + 0.11112754046916962, + 0.6595163941383362, + 0.3104867935180664, + 0.028931275010108948, + 0.25056135654449463, + 0.8108440637588501, + -0.07733577489852905, + -0.3987334370613098, + -0.1554701328277588, + 0.029085837304592133, + -0.2909925580024719, + -0.4143306612968445, + -0.11026059836149216, + -0.07979027926921844, + 0.1767190843820572, + 0.24181070923805237, + -0.529310941696167, + -0.20395724475383759, + -0.04684186726808548, + -0.1890990138053894, + 0.770016074180603, + -0.10368452221155167, + 0.540331244468689, + 0.19553716480731964, + 1.2384395599365234, + -0.3665819466114044, + -0.007820233702659607, + 1.8452255725860596, + 0.059924885630607605, + -0.26778319478034973, + 0.004208197817206383, + 0.292563259601593, + -0.4947349727153778, + -0.2895764708518982, + -0.29270172119140625, + 0.18989938497543335, + 0.036526866257190704, + -0.03912360221147537, + 0.44931089878082275, + -0.2936181426048279, + -0.019720960408449173, + -0.2694171667098999, + 0.009926483035087585, + 0.22842663526535034, + 0.37285423278808594, + -0.14316147565841675, + -0.13385114073753357, + -0.23836404085159302, + -0.1548919528722763, + 0.5743873715400696, + 0.30073267221450806, + -0.012475214898586273, + -0.1841621845960617, + -0.6159830689430237, + -0.3441677689552307, + 0.2674071490764618, + 0.1516127586364746, + -0.37515777349472046, + -0.22068879008293152, + -0.11754389107227325, + 0.05822320654988289, + 0.09425467252731323, + 0.08238499611616135, + -0.17822536826133728, + -0.2121201604604721, + -0.12048545479774475, + -0.026428334414958954, + -0.006629789248108864, + 0.30689334869384766, + 0.08281754702329636, + 0.06333296000957489, + -0.26364555954933167, + -0.1262732297182083, + -0.2444368302822113, + -0.19883781671524048, + -0.17954087257385254, + -0.037318967282772064, + -1.1562449932098389, + 0.4883677661418915, + 0.23566539585590363, + 0.06550446897745132, + -0.192243292927742, + -1.1189844608306885, + -0.15648043155670166, + 0.238846555352211, + 0.3779408931732178, + -0.030250772833824158, + -0.037857767194509506, + 0.027770783752202988, + 0.013522297143936157, + -0.026001591235399246, + -0.19834987819194794, + -0.22457364201545715, + -0.5621726512908936, + 0.0438852459192276, + 0.3115232586860657, + -0.026139989495277405, + 0.16923055052757263, + -1.8860907554626465, + -0.010013967752456665, + -0.13009630143642426, + 0.42783159017562866, + -0.4551194906234741, + 2.8720204830169678, + 0.33197715878486633, + -0.0999927818775177, + 0.2648524343967438, + 0.1776120364665985, + -0.1871778815984726, + -0.27166852355003357, + -0.21370777487754822, + -0.10548229515552521, + 0.14023475348949432, + 0.3428246080875397, + -0.08748531341552734, + -0.028080370277166367, + -0.28778988122940063, + 0.3079879879951477, + -1.2236990928649902, + 0.07958239316940308, + -0.2203555554151535, + 0.19716407358646393, + 0.3774977922439575, + -0.8155885338783264, + -0.1993207335472107, + -0.08723318576812744, + -0.1838468611240387, + -0.08447086811065674, + -0.21202674508094788, + -0.039408549666404724, + -0.20185790956020355, + -0.04960738867521286, + 0.24543917179107666, + -0.6246645450592041, + 0.23686450719833374, + 0.07619218528270721, + -0.44514816999435425, + -0.34973475337028503, + 0.13565288484096527, + -0.4176483452320099, + -0.17959167063236237, + 0.008193589746952057, + -0.11508026719093323, + 0.34397488832473755, + 0.05504424497485161, + -0.09054935723543167, + 0.5441632270812988, + -0.06056167930364609, + 0.3123672902584076, + -0.40464404225349426, + -0.04460460692644119, + -0.043235957622528076, + -0.1927964687347412, + -0.02014675736427307, + 0.005137145519256592, + 0.1755324900150299, + 0.0220281220972538, + -0.0290933009237051, + -0.11765535175800323, + 0.16535058617591858, + 0.2920316755771637, + -0.00993985217064619, + -0.025974895805120468, + -0.2537993788719177, + -0.024071916937828064, + -0.4709041714668274, + 0.3051607012748718, + 0.11232294142246246, + 0.11428108811378479, + -0.30598413944244385, + 0.0437723845243454, + 0.14159508049488068, + 0.2740533947944641, + 0.2120431363582611, + -0.32574373483657837, + -0.0177859365940094, + 0.16250863671302795, + 0.07994600385427475, + 0.11986704915761948, + -0.43504831194877625, + 0.18540269136428833, + -0.20923767983913422, + 0.013539858162403107, + 0.27215513586997986, + -0.20371532440185547, + 0.09904485940933228, + 0.07946167886257172, + 0.21657276153564453, + 0.5729840993881226, + -0.18840478360652924, + 0.4314371943473816, + 0.3863217234611511, + 0.07795941829681396, + 0.49427708983421326, + -0.07782091945409775, + -0.0052896179258823395, + 0.13729387521743774, + -0.42871537804603577, + -0.10173241049051285, + 0.4615054726600647, + -0.0262666754424572, + 0.12129972130060196, + 0.3859094977378845, + -5.7639007568359375, + -0.02568451687693596, + -0.1490594446659088, + -0.053415775299072266, + 0.10380490124225616, + 0.26097986102104187, + 0.2078423649072647, + -0.45420438051223755, + -2.970454454421997, + -0.12454114109277725, + 0.3875148892402649, + 0.40451717376708984, + -0.1271737664937973, + -0.22936758399009705, + 0.12555694580078125, + -0.17316900193691254, + 0.017537586390972137, + 0.16414225101470947, + 0.05107017233967781, + 0.24004000425338745, + 0.42990532517433167, + 0.3062007427215576, + -0.19316300749778748, + 0.052202075719833374, + -0.06419625878334045, + -0.1761212944984436, + 0.046581074595451355, + 0.13444450497627258, + 0.0590587817132473, + 0.09663798660039902, + -0.010448632761836052, + 0.29439041018486023, + 0.21869876980781555, + 0.07765978574752808, + -0.1478789895772934, + -0.5111361145973206, + -0.5383013486862183, + 0.36208999156951904, + 0.7521270513534546, + -0.006855010986328125, + 0.2421346753835678, + 0.04258856177330017, + 0.5761479139328003, + -0.5027508735656738, + 0.30750572681427, + -0.045064084231853485, + 0.46728700399398804, + -0.2891409397125244, + 0.06071563810110092, + 0.15506157279014587, + 0.4299451410770416, + -0.1409425586462021, + -0.46776044368743896, + 0.07470950484275818, + 0.22395068407058716, + 0.4312881529331207, + 0.09567880630493164, + 0.34872519969940186, + -0.16353097558021545, + 0.1680065542459488, + -2.2614431381225586, + 0.40317612886428833, + -0.16936415433883667, + 0.21819186210632324, + 0.19292768836021423, + -0.05654951184988022, + 0.1576308161020279, + -0.2624850273132324, + -0.2320573329925537, + 0.24141308665275574, + 0.19102926552295685, + -0.2446209043264389, + 0.08963035047054291, + 0.5498409271240234, + 0.18584662675857544, + -0.14222808182239532, + -0.1663823425769806, + -0.13721486926078796, + -0.16794562339782715, + 0.3073551058769226, + 0.18895836174488068, + 0.34571754932403564, + -0.2883545756340027, + -0.09385561943054199, + -0.17515955865383148, + -0.06873482465744019, + -0.2098730504512787, + -0.008349180221557617, + -0.445472776889801, + 0.4226398468017578, + 0.07631711661815643, + -0.38689273595809937, + 0.5325980186462402, + 0.027276694774627686, + -0.22236588597297668, + 0.22277802228927612, + -0.2079198658466339, + 0.1174042820930481, + 0.11457622051239014, + 0.15585963428020477, + -0.1768420934677124, + 0.07046449184417725, + 0.11866612732410431, + -0.07135848701000214, + 0.4042520225048065, + -0.41426408290863037, + 0.14928977191448212, + 0.2591516375541687, + 0.16544413566589355, + 0.007528575137257576, + 0.008964319713413715, + 0.0631948858499527, + 0.15944871306419373, + -0.23709732294082642, + 0.14079894125461578, + 0.4897262156009674, + 0.13223248720169067, + 0.09084722399711609, + 0.16171887516975403, + 0.3590022325515747, + -0.5017144680023193, + 0.13220596313476562, + 0.13362222909927368, + 0.19850943982601166, + -0.10742489993572235, + -0.18798136711120605, + 0.0360257625579834, + -0.12398412823677063, + -0.3231655955314636, + 0.06842644512653351, + -0.08333960175514221, + 0.573486864566803, + -0.16994386911392212, + -0.34237533807754517, + -0.47044581174850464, + -0.5240911245346069, + 0.9413160085678101, + -0.36637061834335327, + 0.34486469626426697, + -0.5319126844406128, + -0.25416311621665955, + 0.18752913177013397, + -0.06389039754867554, + 0.170256108045578, + 0.1246657520532608, + 0.21070332825183868, + 0.03696601092815399, + 0.06910299509763718, + -0.21457581222057343, + 0.009408906102180481, + 0.0795568972826004, + 0.31079649925231934, + -0.20450855791568756, + 0.23442186415195465, + -0.08567159622907639, + 0.20877975225448608, + -0.018342196941375732, + 0.14225457608699799, + 0.20174004137516022, + 0.4866500794887543, + -0.25964486598968506, + 0.017594318836927414, + 0.4573898911476135, + -0.16969622671604156, + 0.12754753232002258, + -0.04361256957054138, + 0.30058279633522034, + -0.30098292231559753, + -0.17903079092502594, + 0.7336583733558655, + 0.1380738765001297, + 0.013645246624946594, + -0.260391503572464, + -0.12783722579479218, + 0.21399512887001038, + 0.5177316069602966, + 0.045600272715091705, + 0.6446937322616577, + 0.14244039356708527, + -0.18595074117183685, + -0.3016904592514038, + -0.17885369062423706, + -0.34221887588500977, + -0.053980495780706406, + 0.16408059000968933, + -0.27664756774902344, + -1.5774719715118408, + -0.1988866627216339, + 0.1534082293510437, + 0.30293864011764526, + 0.06072688847780228, + -0.7496157288551331, + -0.7083565592765808, + 0.03081727772951126, + -0.44087833166122437, + -0.2710205316543579, + -0.16731879115104675, + 0.25995388627052307, + 0.08872253447771072, + 0.20677441358566284, + 0.2017565369606018, + 0.25037717819213867, + -0.12892156839370728, + 0.021210093051195145, + 0.38611412048339844, + -0.3233426809310913, + 0.07831261307001114, + 0.31185710430145264, + -0.14426802098751068, + 0.02969607710838318, + -1.815526008605957, + 0.2573315501213074, + -0.18629494309425354, + -0.18500323593616486, + -0.22032800316810608, + 0.11988567560911179, + 0.1480487734079361, + -0.30384349822998047, + 0.2588028907775879, + 0.08870755136013031, + -0.09712395071983337, + -0.33490628004074097, + -0.0034261420369148254, + -0.37806516885757446, + 0.1581554412841797, + 0.2995472550392151, + -0.9531972408294678, + -0.049984097480773926, + -0.34735071659088135, + 0.6599321365356445, + 0.11770301312208176, + -0.36938345432281494, + 0.057139452546834946, + -0.21298228204250336, + -0.1024969220161438, + -0.40122759342193604, + 0.15926995873451233, + 0.06492160260677338, + -0.07310041785240173, + 0.22492411732673645, + -0.18980158865451813, + 0.19835758209228516, + -0.05485593527555466, + 0.386007696390152, + -0.2062283456325531, + -0.17795443534851074, + -0.271627277135849, + 0.044749945402145386, + 0.11690355837345123, + -0.022596560418605804, + -0.3180905878543854, + -0.5574380159378052, + -0.05651190131902695, + -0.27144932746887207, + 0.09326257556676865, + -0.32204097509384155, + -0.464485764503479, + 0.30136364698410034, + 0.42837390303611755, + 0.12135584652423859, + -0.10772217810153961, + -0.0590796172618866, + -0.04578718543052673, + -0.2785605788230896, + -0.08905601501464844, + 0.1081802099943161, + -0.7706845998764038, + -0.7892018556594849, + -0.09546226263046265, + 0.1519184559583664, + 0.05246518552303314, + 0.5231849551200867, + 0.19502313435077667, + 0.19492653012275696, + 0.1449311077594757, + -0.2437855303287506, + 0.7780683040618896, + -0.04212971031665802, + 0.32859501242637634, + -0.07277146726846695, + 0.23403015732765198, + 0.058127276599407196, + -0.7506510615348816, + -0.2835553288459778, + -0.13509877026081085, + 0.06498034298419952, + 0.2167518585920334, + 0.4217427372932434, + 0.09783709049224854, + -0.5864294767379761, + 0.5595265626907349, + 0.23945021629333496, + 0.1800135374069214, + 0.11266438663005829, + 0.04519902169704437, + 0.12436030060052872, + -0.43725132942199707, + -0.4153856337070465, + 0.03707563877105713, + 0.1740001142024994, + 0.02598532661795616, + 0.06476828455924988, + 0.25387492775917053, + -0.05024339258670807, + -0.018859952688217163, + -0.1528601348400116, + -0.3855154514312744, + -0.05169300362467766, + 0.2218892127275467, + 0.31406065821647644, + -0.04473888874053955, + 0.07539041340351105, + -0.0260159894824028, + 0.06486371159553528, + 0.06690481305122375, + -0.32087886333465576, + -0.11820819228887558, + 0.17148205637931824, + -0.23636513948440552, + -0.18218934535980225, + 0.08636125177145004, + -0.4119724631309509, + 0.30942267179489136, + -0.20310664176940918, + -0.026325877755880356, + -0.46302658319473267, + -0.12806344032287598, + -0.33943772315979004, + -0.016037121415138245, + -0.04372621327638626, + 0.2864050269126892, + -0.4448360800743103, + -0.11748406291007996, + 0.6272682547569275, + -0.0935138463973999, + -0.48222869634628296, + 0.21590107679367065, + -0.0863153412938118, + -0.11720772087574005, + -0.4262595772743225, + 0.13434816896915436, + -1.0661768913269043, + -0.19976168870925903, + -0.2904512882232666, + -0.1127590611577034, + 0.6079517602920532, + 0.5530380606651306, + 0.09798166155815125, + 0.14260853826999664, + 0.23927001655101776, + -0.11303287744522095, + 0.827923059463501, + 0.027555814012885094, + -0.25413018465042114, + -0.13402292132377625, + 0.12819412350654602, + -0.4258405268192291, + -0.09262262284755707, + -0.1343795657157898, + -0.1061035692691803, + 0.1270882785320282, + 0.04818621650338173, + -0.38977548480033875, + -0.33015167713165283, + 0.6289954781532288, + -0.4381684362888336, + 0.3252370357513428, + 0.1607741266489029, + 0.05058342590928078, + -0.42957988381385803, + 0.20230592787265778, + -0.29822617769241333, + 0.2212936282157898, + -0.2556319236755371, + 0.25306540727615356, + -0.2082664519548416, + 0.16082464158535004, + 0.0674346461892128, + -0.11051414906978607, + -0.6239417791366577, + 0.13004086911678314, + 0.1789182722568512, + 0.5213671326637268, + 0.06035364046692848, + -0.18066909909248352, + -0.03545002639293671, + 0.02812710963189602, + 0.4983673095703125, + -0.24293822050094604, + 0.1769593358039856, + 0.08776511996984482, + -0.4788733124732971, + -0.11578761041164398, + 0.3706241846084595, + 0.40940847992897034, + 0.18489955365657806, + 0.013197632506489754, + -0.37713828682899475, + -0.5792787075042725, + -0.2745938301086426, + -0.26899096369743347, + -0.12999305129051208, + 0.040757134556770325, + -0.2652435600757599, + 0.06894455850124359, + 0.16925273835659027, + -0.32471323013305664, + 0.12588481605052948, + 0.15602466464042664, + 0.3311777114868164, + -0.5678261518478394, + -0.3161393404006958, + -0.24947890639305115, + 0.20546650886535645, + -0.46883031725883484, + 0.00852755457162857, + -0.05911889672279358, + 0.4007539749145508, + 0.1867472231388092, + -0.37135449051856995, + 0.025927718728780746, + -0.04191179946064949, + -0.29909390211105347, + 0.005487293004989624, + -0.3559011220932007, + -0.015978015959262848, + 0.2624223828315735, + 0.34091717004776, + 0.24465276300907135, + -0.02730841562151909, + -0.2743055820465088, + -0.187468484044075, + -0.041344769299030304, + -0.5864740610122681, + -0.11533777415752411, + 0.2681996822357178, + 0.4623517394065857, + -0.13133244216442108, + 0.05723896995186806, + -0.3776117265224457, + 0.007534138858318329, + 0.07843466848134995, + 0.008648194372653961, + 0.5804222822189331, + 0.4718060791492462, + -0.0036378931254148483, + 0.3186715841293335, + -0.019814401865005493, + 0.28182053565979004, + -0.0015719830989837646, + -0.04181992635130882, + -0.6738560199737549, + -0.33328932523727417, + 0.19812889397144318, + 0.29017752408981323, + 0.051349058747291565, + 0.10981534421443939, + 0.27738839387893677, + 0.12584765255451202, + -0.22602629661560059, + -0.06680867820978165, + -0.34438562393188477, + -0.07363475859165192, + -0.27069783210754395, + 0.2725546360015869, + -0.5787025690078735, + -0.12599332630634308, + -0.20746535062789917, + 0.3349291682243347, + 0.5802644491195679, + 0.1967286467552185, + 0.7282537221908569, + -0.716529130935669, + -0.2320149838924408, + -0.527541995048523, + 0.29551345109939575, + -0.6081775426864624, + 0.2845150828361511, + -0.07107333838939667, + -0.06466493010520935, + 0.20211482048034668, + -0.7121683955192566, + 0.011074185371398926, + -0.18576358258724213, + 0.044590987265110016, + -0.08675709366798401, + 0.3622044324874878, + -0.8021093606948853, + 0.2629097104072571, + 0.22556908428668976, + 0.40531569719314575, + 0.1284877210855484, + -0.4386417865753174, + 0.49151912331581116, + 0.069312185049057, + -0.21609023213386536, + -0.14080260694026947, + -0.05985952913761139, + -0.09557712078094482, + 0.11544918268918991, + -0.09578091651201248, + -0.11555317044258118, + -0.7248015403747559, + -0.22185252606868744, + 0.011388074606657028, + -0.12370394170284271, + 0.035640548914670944, + 0.05006895214319229, + 1.3718937635421753, + 0.0049872249364852905, + -0.12562188506126404, + -0.024760857224464417, + 0.09930817782878876, + -0.5561689138412476, + -0.16706180572509766, + 0.12386096268892288, + -0.005167920142412186, + -0.04833398759365082, + 0.12061947584152222, + 0.46289077401161194, + -0.31401509046554565, + -0.2866602838039398, + -0.11538665741682053, + -0.08465143293142319, + 0.23265047371387482, + 0.16393102705478668, + 0.8211169242858887, + 0.0509079247713089, + 0.618072509765625, + -0.09339301288127899, + -0.08716794848442078, + -0.5609438419342041, + 0.06296443194150925, + 0.008316412568092346, + -0.20326511561870575, + 0.1253022402524948, + 0.3188064694404602, + -0.1340988129377365, + -0.18977755308151245, + 0.1587284803390503, + -0.05062538757920265, + 0.08348509669303894, + 0.07031101733446121, + 0.27657732367515564, + -0.10462722182273865, + 0.13577429950237274, + -0.18262909352779388, + 0.010463234037160873, + -0.3795053958892822, + -0.3221890926361084, + 0.09151361882686615, + 0.05195161700248718, + -0.6182907223701477, + -0.1105097234249115, + -0.13034068048000336, + 0.16208264231681824, + 0.18478986620903015, + 0.09363432973623276, + -0.11612001061439514, + -0.36793971061706543, + 0.0005065463483333588, + 0.31418049335479736, + -0.5485355854034424, + 0.44438228011131287, + -0.05284081771969795, + 0.9171971082687378, + 0.3593469262123108, + -2.287510871887207, + 0.015474021434783936, + 0.19451814889907837, + 0.09860052913427353, + 0.39089059829711914, + -0.19009436666965485, + -0.3321716785430908, + 0.2182057946920395, + 0.9178823232650757, + -0.14242374897003174, + -0.4095068871974945, + -0.21696117520332336, + -0.3655231297016144, + -0.3482966423034668, + 0.30085432529449463, + 0.8485151529312134, + -0.1610727310180664, + 0.2568603754043579, + -0.02341943234205246, + 0.13189741969108582, + -0.06378760188817978, + 0.5400485992431641, + 0.06809854507446289, + -0.10303795337677002, + -0.05446195602416992, + 0.02588733471930027, + -0.006988223642110825, + -0.320787638425827, + -0.15934400260448456, + -0.6425934433937073, + 0.14535129070281982, + -0.2328343540430069, + -0.01167064905166626, + -0.16336233913898468, + 0.239286869764328, + 0.30150479078292847, + -0.16724041104316711, + 0.6168824434280396, + 0.04955677688121796, + -0.00243232399225235, + 0.13965117931365967, + 0.005782613530755043, + -0.011199288070201874, + 0.05909739434719086, + 0.17479510605335236, + 0.13432718813419342, + -0.06556704640388489, + -0.11135511100292206, + -0.15623262524604797, + 0.5475707054138184, + -0.19666382670402527, + -0.5290527939796448, + -0.1080872118473053, + -0.015946317464113235, + 0.4467255175113678, + -0.07865983247756958, + -0.3009510338306427, + 24.655839920043945, + -0.08640478551387787, + -0.001871258020401001, + 0.09265564382076263, + 0.04447512328624725, + 0.22903898358345032, + 0.5676889419555664, + 0.16706067323684692, + 0.061526939272880554, + -0.10867229104042053, + 0.041359469294548035, + -0.25950291752815247, + 0.4313259422779083, + 0.4335603415966034, + -0.07654839009046555, + -0.21625299751758575, + 0.095326267182827, + -0.04160667210817337, + 0.0073142461478710175, + 0.15387111902236938, + 0.08171053230762482, + -0.0007951706647872925, + 0.11673307418823242, + -0.4610165059566498, + -0.25279131531715393, + -0.07050156593322754, + 0.4087204039096832, + 0.1307632029056549, + -0.07210984826087952, + -0.17983326315879822, + 0.26742446422576904, + 0.02772771567106247, + 0.09994550049304962, + -0.13591556251049042, + -0.01526666060090065, + -0.04919848218560219, + 0.3780580163002014, + -0.3934895396232605, + -0.15045639872550964, + 0.24870559573173523, + 0.031201496720314026, + 0.015043474733829498, + 0.22408907115459442, + 0.22759342193603516, + -0.2605346739292145, + 0.5749094486236572, + 0.1662842333316803, + -0.014278978109359741, + -0.141812264919281, + 0.1264457404613495, + -0.0017007365822792053, + 1.1994364261627197, + 0.19213056564331055, + 0.5402126312255859, + 0.46309807896614075, + -0.04974691569805145, + 0.06940511614084244, + 0.5570585131645203, + 0.16330981254577637, + 0.2984505891799927, + -0.03811673820018768, + -0.12131643295288086, + -0.13231517374515533, + -0.13558226823806763, + -0.3903748095035553, + -0.06861039251089096, + -0.12321950495243073, + -0.002812683582305908, + 0.01369532197713852, + -0.46867501735687256, + 0.17231708765029907, + -2.462263822555542, + 0.4166349768638611, + 0.6290916204452515, + -0.18427802622318268, + -0.12544788420200348, + 0.07848598062992096, + 0.30107083916664124, + 0.07064931094646454, + 0.20098133385181427, + -0.12311316281557083, + 0.008908791467547417, + -0.3509472608566284, + -0.13402989506721497, + -0.33044856786727905, + -0.2732565402984619, + 10.240055084228516, + 0.3073461055755615, + -0.356706440448761, + -0.13096138834953308, + 0.041635144501924515, + 0.053872570395469666, + 0.2720717787742615, + 0.041881781071424484, + 0.04876058176159859, + 0.04012908786535263, + -0.18711937963962555, + -0.4500327706336975, + -0.3170001804828644, + -0.26693546772003174, + 0.34732505679130554, + 0.243249773979187, + -0.08618103712797165, + -0.12345710396766663, + -0.17985573410987854, + -0.555068850517273, + -0.27538377046585083, + -0.005162764340639114, + -0.8245382905006409, + -0.048575930297374725, + -0.018538467586040497, + 0.18138030171394348, + -0.08562719821929932, + -0.09392747282981873, + -0.03865990787744522, + 0.20767107605934143, + 0.2365129292011261, + -0.028835058212280273, + -0.31223130226135254, + 0.01547890156507492, + -0.31618762016296387, + 0.36723196506500244, + 0.1723155826330185, + 0.17630524933338165, + -0.21697761118412018, + -0.4053487777709961, + 0.24091845750808716, + 0.05442243814468384, + -0.2517523765563965, + -0.36993515491485596, + -0.043932147324085236, + -0.01599741354584694, + -0.47831618785858154, + 0.15364129841327667, + -0.1876572072505951, + -0.09027232974767685, + 0.06799156963825226, + 0.22677333652973175, + 0.026776721701025963, + -0.0006054043769836426, + -0.15427613258361816, + -0.2511977553367615, + -0.16569042205810547, + -0.4477277100086212, + 0.7789695262908936, + 0.042683400213718414, + 4.441825866699219, + 0.1920531690120697, + 0.3405313491821289, + -0.3385935425758362, + 0.15885518491268158, + 1.3817321062088013, + -0.4254079759120941, + -0.35061904788017273, + 0.07704445719718933, + 0.0676441639661789, + 0.3280755281448364, + 0.05708521232008934, + 0.44206833839416504, + 0.18324224650859833, + 0.0967688113451004, + -0.34246185421943665, + 0.35671064257621765, + 3.1227550506591797, + -0.5552263259887695, + -0.06198512017726898, + 0.8105593919754028, + -0.20627862215042114, + -0.15908674895763397, + 0.014569155871868134, + -0.1586374193429947, + 0.23027046024799347, + 0.2207886278629303, + 0.8072837591171265, + 0.024349473416805267, + -0.06412888318300247, + 0.4034588932991028, + 0.23159420490264893, + -0.1328161656856537, + 0.6739409565925598, + 0.1967127025127411, + -0.14193488657474518, + -0.045350342988967896, + 0.08584201335906982, + 0.05186237022280693, + -0.04799957573413849, + -0.2505913972854614, + -0.12728536128997803, + -0.09069518744945526, + -0.17044317722320557, + -0.004413725808262825, + -0.189551442861557, + -0.01269669458270073, + 0.29123568534851074, + 0.16117195785045624, + 0.2178150713443756, + 0.35475632548332214, + 0.08377791941165924, + -0.14469432830810547, + -0.008973714895546436, + 0.17608976364135742, + -0.049286600202322006, + -0.06089556962251663, + 0.34044018387794495, + 0.04056631773710251, + -0.13086283206939697, + -0.09877417981624603, + 0.1839948445558548, + 0.1318117082118988, + -0.8909276723861694, + 0.17178736627101898, + -0.16924306750297546, + -0.23867850005626678, + -0.09768665581941605, + 0.10921584069728851, + 0.006371505558490753, + 0.013890791684389114, + -0.10933859646320343, + -0.035064131021499634, + -0.12876065075397491, + 1.3296997547149658, + 0.2301000952720642, + 0.21253052353858948, + 0.6063765287399292, + 0.042385414242744446, + 0.11818571388721466, + 1.4357337951660156, + -0.16780519485473633, + 0.5174634456634521, + -0.25851279497146606, + -0.069442518055439, + -0.17072468996047974, + 0.48163434863090515, + -0.04175557568669319, + 0.09309864044189453, + -0.7684287428855896, + -0.05380267649888992, + 0.1747867316007614, + -0.09770441055297852, + 0.09421298652887344, + 0.07511216402053833, + 0.4909569025039673, + -0.4541880190372467, + -0.34066060185432434, + 0.016679344698786736, + 0.5126731395721436, + 0.030202392488718033, + -0.5190234780311584, + 0.258616179227829, + 0.3621552288532257, + 0.09048980474472046, + 0.4104021191596985, + -0.27776962518692017, + 0.21112605929374695, + -0.0033177919685840607, + -0.21683979034423828, + 0.21914032101631165, + -0.2405005395412445, + 0.1046939268708229, + 0.2707635164260864, + -0.005358152091503143, + -0.026743106544017792, + -0.10384334623813629, + 0.11330896615982056, + 0.19443736970424652, + 0.12193626165390015, + -0.07154152542352676, + -0.2795361876487732, + 0.025281338021159172, + 0.16952383518218994, + 0.07777570188045502, + -0.5210103392601013, + -0.22374790906906128, + 0.21923723816871643, + -0.3426368534564972, + -0.5853997468948364, + 0.2884387671947479, + 0.03648850694298744, + 0.44055163860321045, + -0.11526559293270111, + -0.08673233538866043, + -0.141384556889534, + -0.2488168478012085, + -0.375042587518692, + 0.2419123649597168, + -0.04561983793973923, + -0.10962076485157013, + 0.5116733312606812, + -0.29570272564888, + 0.10218806564807892, + -0.12193606048822403, + -0.4041684865951538, + 0.07417018711566925, + 0.8368524312973022, + -0.5536971092224121, + 0.047335825860500336, + -0.05668968707323074, + 0.4726763665676117, + -0.7061254978179932, + 0.025609325617551804, + -0.5034359693527222, + -0.04775160551071167, + -0.4294982850551605, + -0.7984576225280762, + 0.1267632246017456, + 0.3444429039955139, + 0.03894275426864624, + -0.1713171899318695, + 0.2640850245952606, + 0.004953352734446526, + 0.29584670066833496, + 0.36334919929504395, + 0.14213083684444427, + 0.005125544965267181, + 0.5787834525108337, + 0.4220260977745056, + -0.05921681225299835, + -0.03810380771756172, + 0.4039965867996216, + 0.11214406788349152, + -1.0746644735336304, + -0.007867813110351562, + 0.16649365425109863, + 0.15252697467803955, + -0.5137779116630554, + 0.2522611916065216, + -0.058148257434368134, + 0.2965867519378662, + 0.5555341243743896, + 0.22645968198776245, + 0.2243918627500534, + 0.8340610861778259, + -0.4403216242790222, + 0.07690656930208206, + -0.07192955911159515, + -0.3085136413574219, + -0.10755643248558044, + -0.04018377512693405, + -0.12092478573322296, + -0.026692025363445282, + -0.2672174870967865, + -0.07085885852575302, + -0.3452262282371521, + -0.335003137588501, + 0.5028212070465088, + -0.13959501683712006, + 0.1977539360523224, + -0.5081609487533569, + 0.270186185836792, + 0.4268340468406677, + 0.6080368161201477, + -0.01433437317609787, + 0.06188863143324852, + 0.02480446547269821, + -0.5428984761238098, + 0.4039541482925415, + 0.17747466266155243, + -0.11747589707374573, + 0.006635189056396484, + -0.07403562217950821, + -1.0182733535766602, + -0.05256987363100052, + -0.5672208070755005, + 0.05031246691942215, + 2.3551039695739746, + 1.8192236423492432, + -0.5002518892288208, + -0.07279891520738602, + -0.32105833292007446, + -0.12461040169000626, + 0.026715703308582306, + -0.7631319761276245, + -0.07417742908000946, + 0.021331943571567535, + -0.0481843464076519, + -0.14350125193595886, + 0.08406159281730652, + 0.0621531680226326, + -0.3770703077316284, + -0.40022391080856323, + -0.13813242316246033, + -0.6298509240150452, + -0.045558586716651917, + 0.17361310124397278, + -0.8362610936164856, + 0.12292516231536865, + -0.03852672874927521, + 0.020027831196784973, + 0.016815926879644394, + 0.8229725360870361, + -0.22652611136436462, + -0.07562870532274246, + -0.09591777622699738, + -0.3328584134578705, + -0.6222484707832336, + -0.8231748938560486, + 0.09128852188587189, + -0.18489830195903778, + -0.47226381301879883, + 0.22180721163749695, + -0.05307173356413841, + 0.6235623359680176, + 0.47324109077453613, + -0.19837996363639832, + 0.6740201711654663, + -0.1094372570514679, + 1.4367072582244873, + -0.7124209403991699, + 0.19898147881031036, + -0.12979356944561005, + 0.15855909883975983, + 0.7509861588478088, + 0.45420801639556885, + -0.18755215406417847, + -0.012931406497955322, + -0.00813213735818863, + 0.03425341472029686, + -0.09515408426523209, + -1.3725123405456543, + -0.11722056567668915, + -0.18578247725963593, + 0.1325714886188507, + 0.024445004761219025, + 0.44880321621894836, + -0.3857533633708954, + -0.44423729181289673, + -0.27344608306884766, + 0.259439617395401, + 0.07652629911899567, + -0.19358746707439423, + 0.5393325090408325, + 0.10064192861318588, + -0.3244882822036743, + 0.07434476912021637, + -0.17061923444271088, + 0.8230115175247192, + -0.22339054942131042, + 1.6481330394744873, + 410.277099609375, + -0.2141304910182953, + 0.16772006452083588, + -0.10068469494581223, + -0.1523340344429016, + 0.2537848651409149, + 0.9178823828697205, + -0.11437264084815979, + -2.980830669403076, + -1.1286218166351318, + -0.23205208778381348, + -0.12996414303779602, + -0.23231932520866394, + 0.3274715542793274, + -0.419566810131073, + 0.05526630952954292, + -0.1585129201412201, + -0.30957382917404175, + -0.047715578228235245, + 0.4423213303089142, + -0.2499133199453354, + -0.036493439227342606, + -0.002741217613220215, + 0.18076777458190918, + -0.14633026719093323, + 0.41288629174232483, + -0.4391583204269409, + 0.1936822086572647, + -0.27198994159698486, + -0.06681977957487106, + 0.47268569469451904, + 0.13684427738189697, + -0.7702673673629761, + -0.2286040037870407, + 0.37421587109565735, + -0.12664780020713806, + -0.06919019669294357, + -0.2012389600276947, + -0.22896841168403625, + -0.3157908320426941, + 0.19327419996261597, + 0.3854241371154785, + -0.20820865035057068, + 0.29896217584609985, + 0.1069989874958992, + 0.10978025197982788, + 0.291731595993042, + 0.3910669982433319, + -0.2758246064186096, + -0.2709660232067108, + -0.3387446999549866, + 0.21071720123291016, + 0.01281600072979927, + -0.060063913464546204, + 0.2477799504995346, + -0.0702362209558487, + 0.33066508173942566, + -1.2711431980133057, + 0.05541220307350159, + 0.36427605152130127, + -0.2654534876346588, + -0.23607906699180603, + -0.0209499504417181, + -0.20161136984825134, + -0.13643544912338257, + -0.09444797039031982, + 0.00992615520954132, + -0.7875767946243286, + -0.16048184037208557, + -0.09679523855447769, + 0.175466388463974, + 0.2103343904018402, + 0.18652963638305664, + 0.12025243043899536, + 0.22283311188220978, + 0.9638460278511047, + -0.23984578251838684, + 0.22000911831855774, + 0.11263290047645569, + -0.017588384449481964, + 0.050149355083703995, + -0.009960353374481201, + -0.5823496580123901, + -0.04567762464284897, + -0.12181715667247772, + 0.03033554181456566, + 0.12612281739711761, + -0.1779574155807495, + -0.4989078640937805, + 0.4179195165634155, + 0.0062536075711250305, + -0.07766279578208923, + 0.11859767138957977, + -0.2023562788963318, + -0.10053284466266632, + -0.09649251401424408, + -0.026004914194345474, + -0.04571695253252983, + -0.04715672880411148, + 0.6960906982421875, + 0.07472182810306549, + 0.24220547080039978, + -0.18941015005111694, + 0.01901429146528244, + 0.0624120868742466, + -0.29571056365966797, + -0.42054155468940735, + -0.02415354922413826, + -0.20060724020004272, + 0.31414711475372314, + -0.4663531184196472, + -2.1880016326904297, + 0.4129435122013092, + 0.18167255818843842, + -0.18899792432785034, + 0.510069727897644, + -0.011485928669571877, + -0.1220337450504303, + -0.5156018733978271, + -0.07094945013523102, + -0.3834257423877716, + -0.0333140529692173, + -0.8971602916717529, + -0.208567813038826, + 0.05966437980532646, + -0.09217575937509537, + -0.35247963666915894, + 0.13345491886138916, + 0.12603385746479034, + 0.12960761785507202, + 0.47835686802864075, + 0.18640977144241333, + 0.11764144897460938, + 0.15146680176258087, + 0.0037561357021331787, + -0.21456527709960938, + 0.060343850404024124, + -0.48682910203933716, + -0.4123777151107788, + 0.44336965680122375, + 0.41972991824150085, + -0.20335686206817627, + 0.45196986198425293, + -0.09959490597248077, + -0.4749360680580139, + 0.42640382051467896, + -0.23040728271007538, + 0.45818236470222473, + -0.16330839693546295, + 0.30918917059898376, + 0.17592951655387878, + -0.01071651466190815, + 0.22905656695365906, + 0.017042160034179688, + -0.061144888401031494, + -0.4874879717826843, + 0.3108239769935608, + -0.0826335996389389, + -0.1700793355703354, + -0.0756094679236412, + 0.11526303738355637, + 0.15939760208129883, + 0.10981147736310959, + 0.07550641894340515, + -0.27574625611305237, + -0.6960709095001221, + -0.48723649978637695, + 0.032071322202682495, + 0.19796030223369598, + 0.38215094804763794, + 0.7109677791595459, + 0.17983096837997437, + -0.07177548110485077, + -0.1757587045431137, + 0.006525576114654541, + 0.3932020366191864, + -0.7780382633209229, + -0.32350921630859375, + -0.0033944956958293915, + -0.17187166213989258, + -0.055556055158376694, + -0.20422866940498352, + -0.11578968167304993, + 0.25681307911872864, + -0.07642705738544464, + 0.013879194855690002, + -0.34129130840301514, + -0.2934723496437073, + 0.13179798424243927, + -0.644269585609436, + -0.2971329689025879, + 0.07636895775794983, + 0.008447990752756596, + 0.1104927808046341, + 0.04018092900514603, + 0.05269639194011688, + -0.17740871012210846, + 0.2513807415962219, + -0.5354522466659546, + -0.1894339919090271, + -0.36898666620254517, + 0.4734548032283783, + -0.569172203540802, + -0.08528198301792145, + 0.09073082357645035, + -0.10775597393512726, + 0.2402365654706955, + 0.5580558776855469, + -0.3562488555908203, + -0.2457660287618637, + 2.0618371963500977, + -0.25325989723205566, + 0.6873366832733154, + -0.07764076441526413, + 0.21042411029338837, + 0.08487977832555771, + 0.21443119645118713, + -0.17422212660312653, + -0.1870606243610382, + 0.1712455153465271, + -0.27923738956451416, + 0.47514885663986206, + 0.6850303411483765, + 0.1615637093782425, + -0.019800428301095963, + 0.2454676628112793, + 0.050366297364234924, + 0.3509500026702881, + -0.05783037468791008, + 0.2811146378517151, + -0.08836048096418381, + -0.2347707748413086, + 0.1849810928106308, + -0.13008783757686615, + 0.4654616415500641, + 0.11453920602798462, + 0.34624069929122925, + 0.2769194543361664, + 0.12140877544879913, + -0.15956033766269684, + 0.20094215869903564, + 0.2454628348350525, + 0.28950127959251404, + 0.49012893438339233, + -0.4989146590232849, + -0.05615920573472977, + -0.07672320306301117, + 0.2607714533805847, + 0.17056763172149658, + -0.17938286066055298, + -0.8557552099227905, + -0.41622692346572876, + 0.33312833309173584, + 0.23403403162956238, + -0.08081432431936264, + -0.14616616070270538, + 0.7889434099197388, + -0.5091044902801514, + -0.19035372138023376, + -0.23684194684028625, + 0.19117721915245056, + 0.0019392818212509155, + -0.39312437176704407, + -0.14057248830795288, + -0.0008780211210250854, + 0.11692376434803009, + 0.3986889123916626, + 0.6999847888946533, + 0.05668758228421211, + -0.11777126789093018, + -0.22975434362888336, + -0.09060075879096985, + 1.4167667627334595, + -0.571487307548523, + -0.06023586541414261, + 0.24717994034290314, + 0.3236079812049866, + -0.29592686891555786, + -0.4034309983253479, + -0.14099480211734772, + 0.0746704712510109, + -0.12030388414859772, + 0.028819076716899872, + 0.15646395087242126, + -0.06864845752716064, + -0.06594273447990417, + -0.35984188318252563, + 0.03477190434932709, + 0.8221743702888489, + -0.7367725372314453, + -0.11387479305267334, + 0.1557888686656952, + -0.0177614726126194, + -0.29086485505104065, + -0.3044578731060028, + -0.16282081604003906, + -1.269660472869873, + -2.091731309890747, + -0.2426452934741974, + 0.1435215026140213, + 0.5771813988685608, + -0.3904382586479187, + -0.3703598380088806, + -2.3068299293518066, + 0.029858913272619247, + 0.09701190888881683, + 0.42434239387512207, + 0.5353022813796997, + -0.2277909815311432, + 0.008372047916054726, + -1.1918671131134033, + 0.15326246619224548, + 0.5969211459159851, + 0.18773724138736725, + 0.022024087607860565, + 1.1961350440979004, + -0.09000058472156525, + 0.6794769763946533, + -0.9038125872612, + -0.2165234386920929, + 0.0005367174744606018, + -0.06073889881372452, + -0.1494024097919464, + -0.11802221089601517, + 0.20619352161884308, + -0.035060156136751175, + 0.17530527710914612, + -0.11934124678373337, + -0.01751132309436798, + 0.16686512529850006, + 0.33576905727386475, + -0.45409899950027466, + -0.2587195932865143, + -0.17758680880069733, + -0.24883179366588593, + 0.2330562174320221, + 0.5897132158279419, + 4.098777770996094, + 0.017910558730363846, + 0.07714033871889114, + -0.07246266305446625, + -0.12934614717960358, + 0.46762827038764954, + -2.1113452911376953, + -0.09504126757383347, + 0.14499223232269287, + -0.027920542284846306, + -1.1523933410644531, + 0.7082115411758423, + -0.15118661522865295, + 0.08494292944669724, + 0.267943412065506, + 0.2087041586637497, + 0.18468430638313293, + 0.19156348705291748, + -0.18480709195137024, + 0.17745961248874664, + -0.039851296693086624, + 0.29641297459602356, + -0.22430944442749023, + 0.06753193587064743, + -0.3197096586227417, + -0.013850130140781403, + 0.12305321544408798, + -0.016624698415398598, + 0.7059272527694702, + -0.0544603168964386, + -0.20631420612335205, + 0.0147364791482687, + -0.1730586588382721, + 0.5892825126647949, + -0.1534280925989151, + -0.14687040448188782, + -0.14428266882896423, + 0.0286529753357172, + -0.2220366895198822, + 2.0628862380981445, + -0.38446739315986633, + 0.00426819920539856, + -0.2369074821472168, + -0.1744716465473175, + -0.21576306223869324, + -0.16924865543842316, + -0.36110901832580566, + -1.0235557556152344, + 0.16089919209480286, + 0.5364825129508972, + -1.586989164352417, + 0.03426067531108856, + 0.10647352784872055, + 0.3851282596588135, + -0.4124651551246643, + 0.19357547163963318, + -0.01859164610505104, + 0.8153737783432007, + -0.11454230546951294, + -0.48279476165771484, + 0.34857356548309326, + -0.42635685205459595, + -0.025393417105078697, + 0.1749458611011505, + 0.04740972816944122, + -0.11697306483983994, + -0.3193097710609436, + 0.2905787229537964, + -0.1256370097398758, + 0.043618906289339066, + 0.17121285200119019, + -0.0346350371837616, + 0.21591201424598694, + 0.371689110994339, + 0.02360675111413002, + -0.10815191268920898, + 0.22407539188861847, + 0.0004507303237915039, + 0.018092751502990723, + -0.287889689207077, + 0.26928767561912537, + -0.215646430850029, + 0.19273808598518372, + 0.1327398419380188, + 0.04564039409160614, + -0.3528074026107788, + -0.10770858824253082, + -0.6578478813171387, + 0.05072528496384621, + 0.33103203773498535, + 0.09346471726894379, + -0.0030136480927467346, + 0.015226837247610092, + -0.0977247804403305, + -0.0691179633140564, + -0.20228347182273865, + 0.5376800298690796, + -0.11318747699260712, + -0.10432878136634827, + 0.028913414105772972, + -0.734666645526886, + 0.4861077666282654, + 0.09762048721313477, + -0.09023833274841309, + 0.12926872074604034, + 0.1480434238910675, + -0.3505987524986267, + 0.03236076980829239, + 0.16969799995422363, + 0.2213192731142044, + -0.18506240844726562, + 0.13468636572360992, + 0.05153752118349075, + 0.41787809133529663, + -0.07533407211303711, + 0.06453623622655869, + 0.06109890341758728, + 0.08816556632518768, + 0.2632783055305481, + 0.15965084731578827, + -0.14287585020065308, + -0.05187341570854187, + 0.00123567134141922, + -0.3186718225479126, + 0.6538516879081726, + 0.05701163783669472, + -0.04217277094721794, + 0.07322803884744644, + 0.037075966596603394, + -0.12941431999206543, + 0.13749337196350098, + 0.25900623202323914, + 0.18150001764297485, + 0.20857024192810059, + -0.4425713121891022, + 0.3477415442466736, + -0.33075982332229614, + -0.1969740390777588, + 0.12035006284713745, + -0.18696129322052002, + -0.3159768283367157, + -0.148135706782341, + 1.0172476768493652, + -0.22184497117996216, + -0.4059494435787201, + 0.13454100489616394, + 0.1905909776687622, + 0.13947497308254242, + 0.6037871837615967, + 0.007050320506095886, + 0.10141772031784058, + -0.07035205513238907, + -0.2883821725845337, + 0.15728726983070374, + 0.7260353565216064, + 0.007665699813514948, + 0.1548989713191986, + 0.04247823730111122, + -0.3160277009010315, + 0.26674455404281616, + -0.5880547165870667, + 0.016648516058921814, + 0.09427494555711746, + -0.3931037187576294, + -0.032674506306648254, + 0.0007958337664604187, + -0.03019092231988907, + 0.013903111219406128, + 0.3490935266017914, + 0.38613906502723694, + -0.02288082242012024, + -0.15191324055194855, + -0.4593959152698517, + 0.011777050793170929, + 0.2555479407310486, + 0.39703667163848877, + 0.5428414940834045, + -0.16192041337490082, + 0.7620111107826233, + -0.009815314784646034, + -0.42097002267837524, + -0.29599523544311523, + 0.3581717014312744, + -0.32223477959632874, + -0.2478058785200119, + -0.15235821902751923, + -0.2254607379436493, + -0.9003778696060181, + 0.03576003760099411, + -0.16111856698989868, + 0.5740777254104614, + -0.07073964178562164, + 0.3650304675102234, + -1.1178441047668457, + -0.03792876750230789, + -0.37610477209091187, + -0.6734026670455933, + -1.975003719329834, + 0.11541308462619781, + -0.7912341356277466, + 0.1257668435573578, + 0.22758552432060242, + -1.803588628768921, + -0.03508356213569641, + 0.1259685754776001, + 0.3666226863861084, + 0.2241174876689911, + 0.6170818209648132, + 0.2042616456747055, + 0.1491016298532486, + 0.08060739934444427, + -0.16127872467041016, + -0.20287244021892548, + 0.13751725852489471, + -0.46911442279815674, + 0.19972515106201172, + -0.05302859842777252, + -0.1688196361064911, + 0.19377870857715607, + -0.21739941835403442, + 0.3630639314651489, + -0.16565562784671783, + 0.9957991242408752, + -0.5369333028793335, + 0.08081695437431335, + -0.14311273396015167, + 0.13294614851474762, + -0.42636120319366455, + -6.6421403884887695, + -0.46075117588043213, + -0.09000417590141296, + 0.24688591063022614, + 0.17208486795425415, + -0.12277606129646301, + 0.664753794670105, + -0.11271382123231888, + 0.4888917803764343, + -0.10830464959144592, + -0.26317107677459717, + 0.18113091588020325, + 0.0663081556558609, + 1.1972525119781494, + -0.192570760846138, + 0.14520764350891113, + -0.07361076772212982, + -0.2757970690727234, + -0.2391987144947052, + 0.2853238582611084, + 0.3189440667629242, + -0.18180164694786072, + -0.13455064594745636, + 0.008448600769042969, + 0.7264538407325745, + 0.3777660131454468, + -0.030394669622182846, + -0.22401489317417145, + 0.34326109290122986, + -0.11143475770950317, + 0.0932655781507492, + -0.07279808819293976, + 0.12715062499046326, + 0.35852861404418945, + 0.22110265493392944, + -0.6008014678955078, + -0.26013022661209106, + 0.0006805974990129471, + -0.19943249225616455, + 0.5513455271720886, + 0.006279312074184418, + 0.14239062368869781, + 0.024827785789966583, + -0.4664439260959625, + 0.14330318570137024, + 1.1385629177093506, + 0.182850182056427, + -0.27111104130744934, + -0.1482057124376297, + 0.31401100754737854, + 0.08062183856964111, + -0.06970442086458206, + -0.2923585772514343, + 0.1087569147348404, + -0.27243882417678833, + 0.4998907148838043, + -0.3026996850967407, + 0.15552222728729248, + -0.05712118744850159, + 0.473295658826828, + -0.011956468224525452, + 0.04962548613548279, + 0.18180420994758606, + 0.17542894184589386, + 0.29779648780822754, + 0.04779436066746712, + -0.2186489701271057, + 0.16167445480823517, + -0.43212971091270447, + -0.6291620135307312, + 0.18139180541038513, + 0.26474758982658386, + -0.0640018880367279, + 0.08345379680395126, + 0.33290165662765503, + -0.09925577789545059, + -0.25816524028778076, + -0.16259652376174927, + 0.3375326991081238, + -0.5361472368240356, + -0.8014781475067139, + 0.4654836356639862, + -0.11125819385051727, + 0.0005590226501226425, + -0.960257887840271, + -0.2337411791086197, + -0.03775496035814285, + 0.41796332597732544, + -0.4312499761581421, + 0.0827321857213974, + -0.39857691526412964, + -0.021929798647761345, + -0.800777792930603, + -0.8419745564460754, + 0.20172883570194244, + -0.21584264934062958, + -0.5461914539337158, + -0.12966257333755493, + -0.41649219393730164, + 0.0028616245836019516, + 0.6949320435523987, + -0.07311886548995972, + 0.5783056616783142, + -0.436389684677124, + -0.017284229397773743, + 0.2202223241329193, + -0.4428081512451172, + -0.4537489116191864, + -0.2644709348678589, + -0.4876783490180969, + 0.07767833769321442, + 0.34084174036979675, + 0.1859232783317566, + 0.34989628195762634, + -0.6935663223266602, + 0.21686530113220215, + 0.3273974657058716, + -0.10508939623832703, + 0.09872503578662872, + -0.11154752969741821, + -0.1858108639717102, + 0.5787382125854492, + 0.39302390813827515, + 2.237880229949951, + -0.010030355304479599, + 0.11900564283132553, + -0.14940378069877625, + 0.6095075607299805, + -0.06105344370007515, + -0.04257148131728172, + 0.07613955438137054, + -0.13376855850219727, + 0.33984532952308655, + 0.010172270238399506, + -0.07068493962287903, + 2.0022974014282227, + 0.411941260099411, + -1.249535322189331, + 0.6554534435272217, + 0.09005384892225266, + -0.10959555208683014, + 0.09473954886198044, + -0.011965665966272354, + 0.7488228678703308, + -0.24743983149528503, + 0.14892052114009857, + -0.1466749906539917, + -0.18491916358470917, + 0.3018380403518677, + 0.22798442840576172, + 0.6496908664703369, + -0.25435972213745117, + -0.3788406550884247, + 0.1964763104915619, + -0.6893532276153564, + -0.027451753616333008, + 0.24678978323936462, + 0.16640648245811462, + -0.009749278426170349, + 1.4591524600982666, + 0.04581480100750923, + -0.05551784113049507, + 0.1428733468055725, + -1.204515814781189, + -0.10013389587402344, + 0.16417691111564636, + 0.5368596315383911, + 0.4022711515426636, + 0.08556200563907623, + 1.2476739883422852, + -0.42896702885627747, + -0.00024340301752090454, + 0.3721843659877777, + -0.29161882400512695, + 0.2428029477596283, + 0.10505377501249313, + 0.2278839647769928, + -0.017917990684509277, + -0.15526673197746277, + 0.4096170663833618, + -0.004792262800037861, + 0.1646970957517624, + -0.07632584869861603, + 0.3211487829685211, + -0.2130107581615448, + -1.0219550132751465, + 0.2845061123371124, + 0.02007652074098587, + -0.3301280736923218, + -0.7048090696334839, + 0.12875038385391235, + -0.6476022005081177, + -0.02239163964986801, + 0.08953037112951279, + -0.7807374000549316, + -0.3316875696182251, + -0.35205668210983276, + 0.05896483361721039, + 0.0995444506406784, + -0.23255883157253265, + -0.34589526057243347, + 0.09738083928823471, + 0.15302081406116486, + -0.2993185520172119, + 0.1903311014175415, + -0.15076054632663727, + -0.4439188838005066, + -0.07255105674266815, + 0.14783966541290283, + -0.20823098719120026, + -0.21376217901706696, + -0.22766780853271484, + -0.05973329022526741, + 0.06835462898015976, + -0.13981834053993225, + -0.3273179829120636, + 0.25097203254699707, + -0.28296881914138794, + -0.030687808990478516, + 0.11086899042129517, + 0.12928175926208496, + 0.0372738391160965, + 0.015555474907159805, + 0.04134846851229668, + 0.22619695961475372, + -0.10260192304849625, + 0.3800815939903259, + 0.20800158381462097, + -0.375274658203125, + -0.0854039341211319, + 0.37558114528656006, + -0.02823755331337452, + -0.1808711290359497, + 0.09330892562866211, + 0.06467578560113907, + -0.4767581522464752, + -0.14711426198482513, + -0.37547606229782104, + 0.5425388216972351, + 0.7649824619293213, + 0.29238539934158325, + 0.31879758834838867, + -0.09973617643117905, + 0.19353994727134705, + 0.1800825446844101, + 0.26652586460113525, + 0.1796887069940567, + -0.19943539798259735, + -0.23886534571647644, + 0.005506221204996109, + 0.5350565910339355, + -0.186709925532341, + 0.15249736607074738, + 0.19253012537956238, + 0.3884585499763489, + 0.2628154754638672, + 0.01671646535396576, + -0.2168552577495575, + 0.23203380405902863, + -0.7405292987823486, + 0.10124025493860245, + -0.00955110788345337, + -0.2527241110801697, + 0.16930729150772095, + -0.033842578530311584, + 0.7413143515586853, + 0.14281333982944489, + 0.06290122866630554, + -0.08658735454082489, + 0.2686415910720825, + 0.08141140639781952, + 0.41165584325790405, + 0.04188694804906845, + 0.43349358439445496, + 0.3161505460739136, + -0.24487951397895813, + -0.07226885855197906, + 0.21390628814697266, + 0.06933435052633286, + 0.2729839086532593, + -0.21797816455364227, + 0.5379000902175903, + 0.398162305355072, + -0.3118480443954468, + -0.10376358032226562, + -0.05967332422733307, + 1.322762131690979, + 0.1398606151342392, + 0.7508328557014465, + 0.04032430052757263, + -0.24116075038909912, + 0.5311652421951294, + 0.4288812279701233, + 0.1733018010854721, + -0.09374824166297913, + 0.19789627194404602, + -0.19952327013015747, + 0.3317548632621765, + 0.023544542491436005, + -1.659369945526123, + 0.07714629918336868, + -0.6305344700813293, + -0.28415995836257935, + -0.07760387659072876, + -0.15318062901496887, + -2.551192283630371, + -0.2974505126476288, + -0.1448226422071457, + 0.2000277042388916, + 0.005508020520210266, + 0.10394060611724854, + -0.2837415337562561, + -0.2305024266242981, + -0.10833398997783661, + 0.04929541051387787, + -0.4635583758354187, + -0.20396049320697784, + 0.03646877780556679, + -0.18070167303085327, + 0.20009750127792358, + 0.36234334111213684, + -0.8684447407722473, + 0.03643513470888138, + -0.37179553508758545, + -0.17891012132167816, + 0.2592999041080475, + -0.5894359350204468, + 0.1072046160697937, + -0.24183566868305206, + 0.38180357217788696, + -0.18226197361946106, + -0.15441323816776276, + -0.05513521656394005, + -0.2898387312889099, + -0.08100323379039764, + 0.2673572599887848, + -0.0765635147690773, + -0.12018124014139175, + -0.8699513673782349, + 0.3966120481491089, + -1.6785565614700317, + -0.526770830154419, + 0.11568807065486908, + -0.36498844623565674, + -0.06060613691806793, + -0.22581292688846588, + -0.029929881915450096, + 0.3175623416900635, + 0.13025882840156555, + 0.22822540998458862, + 0.2558862566947937, + -0.3829144835472107, + -0.031608521938323975, + -0.5056729316711426, + 0.19055987894535065, + -0.211592435836792, + -0.1748557686805725, + -0.13341762125492096, + -0.06409680843353271, + -0.34198328852653503, + -0.3235522508621216, + -0.14521798491477966, + 0.18287652730941772, + -0.27864763140678406, + -0.4890231490135193, + 0.5246108770370483, + 0.245734304189682, + -0.25857001543045044, + 0.054148897528648376, + 0.1906675100326538, + -0.2643791437149048, + 0.3062921166419983, + -0.775398850440979, + 0.2756693959236145, + -0.05208631977438927, + -0.47332480549812317, + -0.14731162786483765, + 0.15133000910282135, + 0.9112741947174072, + 0.1046149730682373, + 0.05700739845633507, + 0.11376622319221497, + -0.06793265044689178, + 0.09866565465927124, + 0.022872790694236755, + -0.12006495893001556, + -0.38120412826538086, + 0.08485573530197144, + -0.4568612575531006, + 0.08511493355035782, + -0.4188460409641266, + 0.04193895682692528, + 0.7560794949531555, + -0.005354010500013828, + 0.2089523822069168, + -0.006115563213825226, + -0.4203968644142151, + -0.1956436187028885, + -0.051663972437381744, + 0.247134268283844, + -0.18999898433685303, + 0.8145092129707336, + 0.17721949517726898, + 0.01705297827720642, + -0.005426928400993347, + -0.6549555063247681, + 0.03834882751107216, + -0.27852460741996765, + -0.2946586012840271, + -0.04899068549275398, + -0.3549307584762573, + -0.6432554721832275, + 0.14039012789726257, + -0.3454799950122833, + -0.20173083245754242, + 0.026997242122888565, + 0.34580522775650024, + 0.20839442312717438, + 0.2189314067363739, + -0.5817223787307739, + 0.0976339653134346, + -0.33313852548599243, + -0.20195135474205017, + -0.16436965763568878, + 0.07105296105146408, + -0.13656020164489746, + 0.03315490856766701, + -0.03200609236955643, + -0.6545002460479736, + -0.21638131141662598, + -0.760346531867981, + 0.32208186388015747, + -0.9973733425140381, + 0.5357178449630737, + 0.1385188102722168, + -0.18183118104934692, + 0.11722401529550552, + 0.5192638635635376, + -0.01988368295133114, + -0.08200105279684067, + -0.19121497869491577, + 0.36679333448410034, + 0.22321555018424988, + -0.1087128147482872, + -0.3956354260444641, + 0.2715219259262085, + -0.18793070316314697, + 0.0032817870378494263, + -0.006898865103721619, + 0.06159286946058273, + 0.24583543837070465, + 0.09599451720714569, + -0.15499311685562134, + -0.08824658393859863, + 0.04433196783065796, + 0.4111715853214264, + -0.1293712556362152, + 0.5334339737892151, + 0.5347079038619995, + -0.40489763021469116, + 0.0318475142121315, + -0.04188736528158188, + 0.22323459386825562, + -0.2862885594367981, + 0.07463520765304565, + 0.017003286629915237, + -0.4385048747062683, + -0.14541789889335632, + 0.3718302547931671, + -0.5672963857650757, + 0.5676141977310181, + -0.1366652101278305, + -0.2109999656677246, + 0.814168393611908, + -0.08850068598985672, + 0.09217719733715057, + 0.004907544702291489, + 0.04174564778804779, + -0.04660620912909508, + -0.3152391314506531, + -0.17751041054725647, + -0.06619154661893845, + -0.8788048624992371, + 0.36459600925445557, + -0.07653551548719406, + 0.047193288803100586, + -0.6074347496032715, + 0.4345228672027588, + -0.09721081703901291, + 0.18575309216976166, + 0.07181704044342041, + 0.1434885412454605, + -0.06760261952877045, + -0.021428337320685387, + -0.028960296884179115, + -0.18948568403720856, + -0.37758487462997437, + 0.06241999939084053, + 0.03950893133878708, + 0.2471296191215515, + 0.6956523060798645, + -0.09593130648136139, + 0.24766528606414795, + -0.18684273958206177, + -0.17140915989875793, + 0.08295489847660065, + -0.14355675876140594, + 0.4690440893173218, + -0.42242109775543213, + 0.553848385810852, + -0.09575732052326202, + -0.4691688120365143, + -0.1731223464012146, + 0.17685489356517792, + 0.08161614090204239, + 0.23733437061309814, + 0.46634775400161743, + -0.13345707952976227, + 0.31849950551986694, + 0.03678244724869728, + 0.24553990364074707, + -0.42924878001213074, + -0.16240592300891876, + 0.04056745767593384, + -0.3250751495361328, + 0.48241108655929565, + -0.10766728967428207, + -0.13662347197532654, + 0.3183702826499939, + 0.3998236656188965, + 0.35853737592697144, + 0.3500286936759949, + -0.11931976675987244, + 0.43077945709228516, + 0.1958107352256775, + 0.22855669260025024, + 0.17238883674144745, + 0.6439841985702515, + 0.14065179228782654, + -0.13377495110034943, + -0.15223537385463715, + 0.20284785330295563, + -0.046099793165922165, + 0.1801871806383133, + 0.13089105486869812, + -0.18175263702869415, + 0.27436530590057373, + 0.035145197063684464, + -0.31350207328796387, + 0.28158503770828247, + -0.08728959411382675, + -0.03278781846165657, + 0.29322874546051025, + -0.014698492363095284, + 0.18067918717861176, + -0.03452027961611748, + -0.22089160978794098, + 0.3280327618122101, + 0.15360644459724426, + 0.006021816283464432, + -0.16318899393081665, + 0.6771800518035889, + 0.2507867217063904, + 0.48022258281707764, + 0.15849068760871887, + -1.1920597553253174, + -0.028848394751548767, + 0.07168254256248474, + 0.21363218128681183, + 0.24926546216011047, + 0.03774663805961609, + -0.048661451786756516, + -0.34967097640037537, + -0.003309689462184906, + -0.11941993236541748, + -0.0559103898704052, + -0.004329212009906769, + 0.34634310007095337, + 0.07397989928722382, + 0.01556551456451416, + -0.23042237758636475, + -0.4071968197822571, + 0.20955927670001984, + -0.05126079171895981, + 0.3835497498512268, + -0.5151107311248779, + 0.17717090249061584, + 0.33805331587791443, + -0.10775867104530334, + 0.10769680142402649, + 0.3619922399520874, + 0.11206011474132538, + 0.374973863363266, + -0.17466595768928528, + -0.673240065574646, + -0.12534447014331818, + -0.24218663573265076, + 0.3167049288749695, + -0.44117358326911926, + -0.19595745205879211, + -0.30132925510406494, + -0.2621602416038513, + -1.0625553131103516, + 0.40588346123695374, + 0.05613831430673599, + 0.2289675623178482, + 0.48085254430770874, + -0.044918593019247055, + -0.08106526732444763, + -2.9705324172973633, + -0.08982330560684204, + -0.05347921699285507, + 0.153442844748497, + 0.2756335437297821, + -0.26447349786758423, + -0.04838453233242035, + -0.12443818151950836, + 0.16331660747528076, + -0.13580922782421112, + -0.13891497254371643, + -0.22120851278305054, + -0.2558452785015106, + 0.0509461909532547, + -0.38440239429473877, + -0.41672104597091675, + 0.1801055669784546, + -0.008492190390825272, + -0.06430144608020782, + 0.09648976475000381, + -0.8128992319107056, + -0.19222652912139893, + 0.067073754966259, + -0.23991897702217102, + -0.05243857949972153, + -0.12376093864440918, + 0.07787664979696274, + 0.1749589741230011, + -0.3108636140823364, + 0.14396552741527557, + -0.21995709836483002, + -0.3601589798927307, + 0.6826108694076538, + 0.1996411830186844, + 0.013944761827588081, + 0.3345988094806671, + 0.3047662079334259, + 0.07240145653486252, + -0.024274639785289764, + 0.6605265736579895, + -0.3066328167915344, + 0.11663739383220673, + 0.12490339577198029, + -0.00932612456381321, + -2.071214437484741, + 0.5207470655441284, + 0.6849448680877686, + -0.7363972663879395, + 0.22777444124221802, + -0.03785966336727142, + -0.06440076231956482, + 0.22732830047607422, + 0.07064354419708252, + -0.028101809322834015, + 0.1319558322429657, + -0.03776813670992851, + 0.09672742336988449, + 0.7173397541046143, + 0.09582436829805374, + 0.15821221470832825, + -0.13530245423316956, + -0.2582794427871704, + -0.3825467824935913, + 0.23687371611595154, + -0.2804163694381714, + 0.15249422192573547, + 0.22736802697181702, + -0.054833099246025085, + -0.664577841758728, + -0.5146880745887756, + 0.36649924516677856, + 0.14443907141685486, + 4.7672576904296875, + 0.044255293905735016, + 0.09600456058979034, + 0.11305992305278778, + -0.1694209724664688, + 0.3214413523674011, + 0.3173644542694092, + 0.24832205474376678, + -0.12891128659248352, + -0.4839581847190857, + -0.4304928481578827, + 0.02252839133143425, + -0.16777187585830688, + -0.26587074995040894, + -0.06719347834587097, + -0.0506645031273365, + -0.17293408513069153, + -0.3016310930252075, + 0.0013875439763069153, + -0.09454087167978287, + 0.189499169588089, + -0.1318778246641159, + 0.10326727479696274, + -0.4179324507713318, + -0.1454850137233734, + 0.05155990645289421, + 0.6023500561714172, + 0.09994517266750336, + -0.12395653873682022, + -0.040499381721019745, + -0.3601086437702179, + -0.26252835988998413, + -0.17921212315559387, + -0.3106476068496704, + -0.14834627509117126, + 0.23641596734523773, + 0.28887635469436646, + -0.17550644278526306, + -1.6542307138442993, + -0.1343054175376892, + -0.15338867902755737, + 0.24066713452339172, + -0.35592854022979736, + 0.14448416233062744, + -0.34812864661216736, + -0.27130451798439026, + 0.54682457447052, + 0.10602829605340958, + -0.5113182067871094, + 0.43061766028404236, + -0.15462496876716614, + -1.452486276626587, + -0.29576829075813293, + 0.166011244058609, + 0.2350643426179886, + 0.12639120221138, + -0.345602810382843, + -0.23919358849525452, + 0.3965616226196289, + 0.32134076952934265, + -0.5058502554893494, + -0.02553846500813961, + 0.34763526916503906, + 0.3730311393737793, + -0.11508459597826004, + -0.4264329969882965, + 0.06598374247550964, + -0.13846427202224731, + 0.16732075810432434, + 0.3452523946762085, + -0.008526819758117199, + 0.34438377618789673, + -0.08555150032043457, + 0.2477806955575943, + 0.019463583827018738, + -0.4147118926048279, + -0.10488630831241608, + 0.24635671079158783, + -0.07882700860500336, + -0.3358633518218994, + -1.0110187530517578, + -0.04194311052560806, + 0.03598213940858841, + 0.17031589150428772, + 0.09498076885938644, + 0.016781533136963844, + 0.011041324585676193, + -0.41541069746017456, + 0.12067398428916931, + 0.08240899443626404, + -0.16768120229244232, + -0.3138608932495117, + -0.701327919960022, + -0.8732244372367859, + 0.3566146790981293, + 0.6418711543083191, + -0.689221203327179, + -0.04117407649755478, + 0.1990315318107605, + -0.42421844601631165, + -0.0962088331580162, + -0.0919066071510315, + -1.623549461364746, + 0.28342336416244507, + -0.09431183338165283, + 0.34057119488716125, + 0.025842245668172836, + 0.27384358644485474, + -0.5356091856956482, + -0.2942538559436798, + 0.10444008558988571, + 0.21828487515449524, + 0.043899960815906525, + 0.1411612629890442, + 0.486573189496994, + 0.36859920620918274, + -0.04420509561896324, + 0.272391676902771, + 0.09569531679153442, + 0.13125529885292053, + 0.4053197503089905, + -0.15001064538955688, + -0.10962220281362534, + -0.08848479390144348, + 0.18264605104923248, + -0.1381109356880188, + -0.06576871871948242, + 0.2015461027622223, + -0.04434742033481598, + -0.15117335319519043, + 0.10218384116888046, + -1.2903978824615479, + 0.4335450530052185, + 0.10916325449943542, + -0.010582156479358673, + -0.05954412370920181, + -0.011287393048405647, + 0.05242901295423508, + 0.5169689059257507, + 0.019824806600809097, + 0.05802477151155472, + 0.14996324479579926, + 0.9253535270690918, + 0.3552834689617157, + 1.4947500228881836, + 0.3765547573566437, + 0.33935272693634033, + -0.23784402012825012, + 0.15548789501190186, + 0.08208610862493515, + 0.20787614583969116, + -1.6761223077774048, + -0.22045333683490753, + 0.8673152923583984, + -0.3896627426147461, + 0.28874078392982483, + -0.01728971302509308, + -0.17046304047107697, + -0.2511601448059082, + 0.17595338821411133, + -0.44612255692481995, + 0.12766602635383606, + 0.04659947007894516, + 0.21701377630233765, + 0.18849773705005646, + 0.023137813434004784, + -0.04246371239423752, + -0.013677245005965233, + 0.2623206377029419, + -1.2530748844146729, + -0.007456168532371521, + -0.19757765531539917, + -0.1781015396118164, + 0.006494700908660889, + -0.6307801604270935, + 0.03208546340465546, + -0.20490378141403198, + 0.2812442183494568, + 0.1271386742591858, + -0.0795915499329567, + 0.040850237011909485, + 0.4524746239185333, + -0.4246457815170288, + 0.24000361561775208, + 0.03738543018698692, + 0.1927052140235901, + 0.11764124035835266, + 0.24306568503379822, + -0.7227943539619446, + -0.037035778164863586, + -0.09761744737625122, + -0.1639871746301651, + 0.6531113386154175, + 0.18561089038848877, + 0.6997239589691162, + 1.1291890144348145, + -0.11937956511974335, + 0.02919960767030716, + 0.2516212463378906, + -0.4215874671936035, + 0.08820018172264099, + 0.23186558485031128, + 0.031969644129276276, + 0.0014890879392623901, + -0.19068726897239685, + 0.14345060288906097, + -0.3669735789299011, + 0.4714200794696808, + -0.05263416841626167, + -0.26063889265060425, + 0.3014439046382904, + -0.2230101376771927, + 0.016880877315998077, + -0.04313170909881592, + 0.25671613216400146, + -0.42993444204330444, + -0.31580841541290283, + 0.1466214954853058, + 0.060067497193813324, + 0.12339015305042267, + 0.02862320840358734, + -0.013146936893463135, + -0.10583121329545975, + 0.038645245134830475, + -0.5018012523651123, + -0.6884032487869263, + 0.2290714681148529, + 0.3888954520225525, + -0.3760032653808594, + -0.17895084619522095, + -0.12136916071176529, + -0.26203298568725586, + -0.09286995232105255, + 0.11574755609035492, + 0.31095072627067566, + -0.332409530878067, + -0.3002055883407593, + -0.028656966984272003, + -0.2800585925579071, + 0.15185409784317017, + -0.2564718723297119, + -0.013901950791478157, + 0.21588823199272156, + 0.03393740579485893, + -0.43844446539878845, + 0.3016662895679474, + 0.020802244544029236, + 0.05083749443292618, + -0.06061325967311859, + -0.3393780589103699, + 0.17951247096061707, + 0.034549910575151443, + -0.10006846487522125, + -3.705580234527588, + -0.11184871941804886, + 0.5900212526321411, + -0.4326133728027344, + 0.30216723680496216, + -4.343592643737793, + 0.20863738656044006, + -0.21216347813606262, + 0.02372189238667488, + -0.4100799262523651, + -0.027966199442744255, + -1.544490098953247, + -0.14529693126678467, + -0.26478880643844604, + -0.08166106045246124, + 0.01676003634929657, + 0.31505632400512695, + -0.05941714346408844, + 0.20385965704917908, + 0.17676599323749542, + -0.4209984838962555, + 0.2527422606945038, + -0.1144338920712471, + 0.048430830240249634, + 0.1557452231645584, + -0.2876548171043396, + -0.015023641288280487, + 0.3056376576423645, + -0.14852216839790344, + -0.34199652075767517, + 0.052642449736595154, + -0.22381454706192017, + -0.2788707911968231, + -0.27115219831466675, + 0.21491901576519012, + 0.6434776186943054, + -0.13894307613372803, + 0.6736910343170166, + -0.8772678971290588, + 0.26812928915023804, + 0.03258427232503891, + -0.2635348439216614, + 0.3081829249858856, + -0.811357855796814, + -0.20384612679481506, + -0.36971426010131836, + -0.18733550608158112, + 0.4907296299934387, + -0.0004186946898698807, + 0.30727511644363403, + -0.1043614074587822, + -0.3811526298522949, + -0.10170619189739227, + 5.457122802734375, + -0.8936173915863037, + 0.022938616573810577, + -0.5187522172927856, + -0.11949044466018677, + -0.3713347315788269, + -0.11945806443691254, + 0.3270294666290283, + -0.6057579517364502, + -0.5043924450874329, + -1.193666934967041, + 0.2259005904197693, + 0.15309938788414001, + -0.07352997362613678, + 0.15570753812789917, + 0.03887496143579483, + -0.4040393829345703, + 0.030243992805480957, + 0.016137566417455673, + -0.2237257957458496, + 0.3803723454475403, + 0.2858264148235321, + 0.6759066581726074, + 0.021489106118679047, + -0.09901264309883118, + -0.36534547805786133, + 0.5753755569458008, + 0.1875515580177307, + -0.24430640041828156, + 0.37532609701156616, + -0.3629326820373535, + -0.1302987039089203, + -0.4558779001235962, + 0.02581341564655304, + 0.4069250822067261, + -0.1965375542640686, + 0.39817434549331665, + -0.027408737689256668, + -0.18004998564720154, + -0.04467441514134407, + -0.5677921772003174, + -0.3283711075782776, + 0.227415531873703, + -0.2858600616455078, + 0.28935718536376953, + 0.26512134075164795, + -0.9901959896087646, + 0.4244181513786316, + -0.31759113073349, + -0.33027783036231995, + 0.2635836601257324, + 0.3890654742717743, + 0.1740715205669403, + 0.1091729998588562, + 0.2604754567146301, + 0.5186989307403564, + 0.16775277256965637, + -0.16201472282409668, + -0.06966082006692886, + -0.1273028552532196, + -1.913467526435852, + -0.14550770819187164, + -0.09413719177246094, + -0.12077067047357559, + -0.23251619935035706, + -1.3103325366973877, + 0.00839255005121231, + -0.3433557152748108, + -0.39190512895584106, + 0.014595035463571548, + -0.022809654474258423, + -0.010915812104940414, + 0.14079470932483673, + -0.013235213235020638, + -0.030035264790058136, + 0.04833889752626419, + 0.12514789402484894, + -0.70255446434021, + 0.2159620076417923, + 0.04860163480043411, + -0.10833341628313065, + 0.3462807536125183, + -0.03755437955260277, + -0.03309948742389679, + -0.1615724116563797, + -0.09817460179328918, + 0.15744170546531677, + 0.08962365984916687, + 0.22943419218063354, + -0.18474486470222473, + -0.19403555989265442, + 0.03287634626030922, + -0.08803663402795792, + -0.800221860408783, + -0.15758532285690308, + 0.11225709319114685, + 0.18069219589233398, + -0.2979190945625305, + -0.3725621998310089, + -0.46829017996788025, + 0.04988202825188637, + -0.21370846033096313, + 0.10805930197238922, + 0.18555402755737305, + 0.430752158164978, + 0.23582078516483307, + 0.07269631326198578, + 1.2230758666992188, + -0.4820476770401001, + 0.8369166851043701, + 0.00833052210509777, + 0.1979285478591919, + 0.1345987170934677, + -0.1828995645046234, + 0.3655776381492615, + 0.03159351646900177, + 0.42559826374053955, + -0.03569414094090462, + -0.1322876214981079, + -0.10296700894832611, + -0.07288710027933121, + 0.16607680916786194, + -0.05444316565990448, + -0.6084167957305908, + 0.10148526728153229, + -0.18383195996284485, + 0.24255309998989105, + 0.02186552993953228, + -1.7064905166625977, + 0.35385656356811523, + -0.5082491040229797, + 0.36835241317749023, + 0.04117410257458687, + -0.14180134236812592, + -0.08954989910125732, + -0.5448275208473206, + -0.07899796962738037, + -0.08862793445587158, + 0.19290652871131897, + 0.2695239186286926, + -0.03598034381866455, + -0.07855112850666046, + -0.8128306865692139, + 0.03911861777305603, + 2.036045551300049, + -0.04279906302690506, + -0.23987925052642822, + 0.10671432316303253, + 0.07481566071510315, + 0.34293192625045776, + 0.3211265802383423, + 1.2313189506530762, + -0.04971614480018616, + -0.06309719383716583, + 0.5159666538238525, + -0.03791461139917374, + -0.1767391562461853, + 0.107688307762146, + -0.22496852278709412, + 0.5609140396118164, + -0.046101778745651245, + -0.3794143497943878, + 0.3069305419921875, + -0.31109619140625, + -1.41090726852417, + 0.043164148926734924, + -0.06143816560506821, + -0.3788493573665619, + -0.1471356600522995, + -0.033670321106910706, + -0.03565124422311783, + -0.1084660217165947, + -0.15792182087898254, + -0.037877000868320465, + -0.28794220089912415, + 0.20015102624893188, + -0.1839413046836853, + 0.24107173085212708, + 0.17692351341247559, + -0.3238386809825897, + 0.11455720663070679, + -0.04844297468662262, + 0.1809537410736084, + -0.012945197522640228, + -0.03050544112920761, + -0.22433297336101532, + 0.388322651386261, + 0.11627036333084106, + -0.5174798369407654, + -0.5288389921188354, + -0.0016626976430416107, + 0.34845104813575745, + 0.13471619784832, + -0.41861316561698914, + -0.14798606932163239, + -0.7217738628387451, + 0.1422172486782074, + -0.07756385207176208, + -0.511264979839325, + 0.10617907345294952, + 0.11564011871814728, + -0.1397881805896759, + -0.11574890464544296, + 0.10126131772994995, + 0.2743317484855652, + 0.03172525763511658, + -0.5945325493812561, + -0.2124251127243042, + 0.2195020318031311, + -0.012587498873472214, + 0.031881414353847504, + -0.2701689302921295, + -0.04080642759799957, + 0.05899512767791748, + 0.14760196208953857, + 0.42222660779953003, + 1.5589393377304077, + 1.3509762287139893, + -0.19612647593021393, + 0.30320948362350464, + 0.8380559086799622, + -0.3256981670856476, + -0.5041375160217285, + 0.27887243032455444, + -0.23603078722953796, + -0.20202425122261047, + 0.06267629563808441, + -0.2103165090084076, + -1.2145267724990845, + 0.043634168803691864, + -0.23207776248455048, + 0.020162716507911682, + 0.09885647147893906, + 0.2776723802089691, + -0.027947362512350082, + -0.0915951132774353, + 0.07686708122491837, + -0.07754387706518173, + 0.31816214323043823, + 0.03574559465050697, + 0.019927605986595154, + 0.15478718280792236, + -0.2921333909034729, + 1.947678565979004, + 0.06426539272069931, + 0.2624630630016327, + -0.004663847386837006, + -0.16742829978466034, + 0.16316041350364685, + 0.6588186025619507, + 0.6593669652938843, + 0.41043126583099365, + -0.04606401175260544, + 8.65368366241455, + -0.027126405388116837, + 0.10876202583312988, + 0.1826724112033844, + 0.04039053991436958, + -0.35056614875793457, + -0.6054060459136963, + 0.3724193572998047, + -0.35174673795700073, + -0.08363210409879684, + 0.19868104159832, + -0.1468009054660797, + -0.06400705873966217, + 0.1244436725974083, + -0.021526500582695007 + ], + "neutral_projector": { + "component_count": 1, + "components": [ + [ + 0.0010064038215205073, + 0.0003448408388067037, + 0.0022294321097433567, + -8.787494152784348e-06, + 0.0032372192945331335, + -0.001971939578652382, + 0.0010583854746073484, + -0.00310799153521657, + 0.0011000887025147676, + -0.002435232512652874, + 0.00019882725609932095, + -0.005847147200256586, + -0.0025623005349189043, + -0.0013003192143514752, + -0.0030618864111602306, + 0.001433731522411108, + -0.0006257680943235755, + 0.002628608141094446, + 0.002226901473477483, + -0.0016906349919736385, + -0.002195430686697364, + 0.00013772329839412123, + -0.0016354421386495233, + 0.0008088687900453806, + 0.0014089120086282492, + -0.0006656468030996621, + 0.011070103384554386, + 0.0006307290750555694, + 0.0003093427512794733, + 0.000742529344279319, + 0.00032113143242895603, + 0.011614681221544743, + -0.004205342847853899, + -0.001810478512197733, + -0.0005338445771485567, + 0.00012789825268555433, + -0.002018052153289318, + 0.003338845446705818, + 0.0017442163079977036, + 0.0007239046390168369, + -6.0331742133712396e-05, + -0.0028394092805683613, + -0.0007091081351973116, + -0.0008932195487432182, + -0.00197122641839087, + -0.0010372612159699202, + 8.436660573352128e-05, + -0.00025826157070696354, + 0.004185117781162262, + 0.0011328287655487657, + -0.0005132193909958005, + 0.003611493157222867, + -0.003525420092046261, + -0.00043071014806628227, + -0.002414060989394784, + 0.00035651164944283664, + -0.00044615729711949825, + -0.00015879375860095024, + 0.007358099799603224, + -0.0005812743329443038, + -0.0019017329905182123, + 0.0023163731675595045, + -0.004597275052219629, + -0.0013424878707155585, + -0.0034827319905161858, + 0.0032578567042946815, + -0.0006560479523614049, + -0.006267827935516834, + -0.017916621640324593, + -1.6468944522785023e-05, + -0.0003572943387553096, + 0.0014457999495789409, + 0.0011253963457420468, + 0.001954055391252041, + -0.007950271479785442, + 0.0009096071007661521, + 0.0043128919787704945, + 0.003349358681589365, + -0.0001851135166361928, + 0.0030839971732348204, + -0.0037862921599298716, + 1.0279530215484556e-05, + -0.0012198907788842916, + 0.0016652665799483657, + -0.0014706552028656006, + 0.0006208795821294188, + -4.58440299553331e-05, + 0.0011870336020365357, + -0.0007355236448347569, + 0.001221902435645461, + 0.00411787535995245, + 0.002256001578643918, + 0.0019797224085778, + -0.010400977917015553, + 0.002115645445883274, + 0.015112285502254963, + -0.0018951927777379751, + 0.003744619432836771, + 0.0015867013717070222, + 0.0010989396832883358, + 0.0026978091336786747, + -0.0010399565799161792, + -0.0005182624445296824, + 0.010291398502886295, + -0.0017239160370081663, + 0.0027956138364970684, + 0.0006360197439789772, + -0.00043407909106463194, + -0.0002811055164784193, + 0.0006850979407317936, + -0.0013645048020407557, + 0.00037548239924944937, + 0.0016135363839566708, + -0.002638069912791252, + -0.0006875076214782894, + 0.003870833432301879, + -0.0007066556718200445, + 0.007626745384186506, + 0.002574259415268898, + -0.000786059012170881, + -0.004848270211368799, + -0.0009610499255359173, + -0.0006923491018824279, + 0.006614294834434986, + -0.0011996577959507704, + 0.00019055094162467867, + -0.0014601185685023665, + 0.0029303552582859993, + 0.0017833691090345383, + -1.746529778756667e-05, + -0.0021654635202139616, + 0.0010212535271421075, + 0.0018497318960726261, + -0.0012170192785561085, + -0.010148212313652039, + -0.009433615952730179, + -0.001153683173470199, + 0.0010468295076861978, + 0.0030601401813328266, + -0.003964749164879322, + -0.0014461877290159464, + -0.008336898870766163, + 0.005813508294522762, + -0.002215714193880558, + -0.0017143168952316046, + -0.0028319249395281076, + -0.003176593454554677, + -0.002374588744714856, + 0.0045705996453762054, + -0.001821009092964232, + 0.0005667708464898169, + 0.0003172649012412876, + -0.0018492843955755234, + 0.0055576469749212265, + -0.0020977742969989777, + -0.004873479250818491, + -0.000703567115124315, + 0.0015743240946903825, + 0.00013939844211563468, + -0.00323318038135767, + 0.0009181515197269619, + 0.00016900523041840643, + 0.0008223933982662857, + -5.612185850623064e-05, + -0.0005093145882710814, + 8.05472518550232e-05, + 0.0024358578957617283, + 0.003853832371532917, + 0.0012864179443567991, + -0.0021287293639034033, + -0.005063812714070082, + 0.012551197782158852, + 0.004574788734316826, + 0.0036361049860715866, + -0.0008814518223516643, + 0.008045336231589317, + 0.0011381832882761955, + 0.0036534788087010384, + 0.001835040282458067, + 0.004353320226073265, + -0.0018893835367634892, + -0.0035743408370763063, + 2.410983870504424e-05, + -0.00029865404940210283, + -0.0012921399902552366, + -0.002465933095663786, + -0.00453130342066288, + 0.0004959641955792904, + -0.000945263309404254, + 0.0021913459058851004, + -0.00412365049123764, + -0.005984794814139605, + -0.009621023200452328, + -0.0005333874141797423, + 0.0019834935665130615, + 0.0004932111478410661, + 0.01672007516026497, + 5.69107141927816e-05, + 0.0010817392030730844, + -0.003577976953238249, + -0.006289889104664326, + 0.0026755735743790865, + 0.00032116775400936604, + -0.00101217080373317, + -0.00199159630574286, + -0.0006373409414663911, + 0.0005422199610620737, + -0.009275531396269798, + -0.006764451507478952, + -0.0027560798916965723, + -0.0014194733230397105, + -0.0004014112055301666, + 0.00022064070799387991, + 0.0020370616111904383, + 0.002271248260512948, + -0.006503019481897354, + -0.0016140574589371681, + -0.0003397658292669803, + -0.008860902860760689, + -0.003460173262283206, + -0.00034485329524613917, + 2.2910109692020342e-05, + -0.00026521706604398787, + -0.0006300488603301346, + -0.010383237153291702, + 0.001169878989458084, + 0.004914816468954086, + 0.0034151580184698105, + 0.0012488634092733264, + -0.0021290085278451443, + -0.0013348838547244668, + 7.504184759454802e-05, + -0.0040101101621985435, + -0.19125624001026154, + -0.0072431499138474464, + 0.00044403562787920237, + 0.0012171828420832753, + 0.002236545318737626, + -0.00021421414567157626, + 0.0002877888036891818, + -0.0016689858166500926, + 0.003051402512937784, + 0.0007060671341605484, + 0.018602712079882622, + -0.0009549108217470348, + -0.0034472555853426456, + 0.002830044599249959, + 0.0017990992637351155, + -0.009007656946778297, + 0.00022085028467699885, + 0.0036146892234683037, + 0.005712929181754589, + -5.26329422427807e-05, + -0.003002225887030363, + -0.0005912571214139462, + -0.001040854724124074, + -0.000766111770644784, + -0.0010075479513034225, + 0.0002622450701892376, + -0.00028765000752173364, + -0.0011434602783992887, + -0.0002629549999255687, + -0.001159616862423718, + -0.0014577804831787944, + 0.0003634825407061726, + -0.0014020437374711037, + 0.0003867236664518714, + 0.0018124430207535625, + -0.003081584582105279, + -0.0014726162189617753, + -0.007809982635080814, + -0.002065245294943452, + 0.0016350444639101624, + 0.0009750102180987597, + -0.0028739471454173326, + 0.002956452313810587, + 0.0030504856258630753, + -0.00028784398455172777, + 0.0008492808556184173, + 0.0005549047491513193, + -0.0003522754122968763, + -0.002884837333112955, + -0.00031781947473064065, + -0.002971046371385455, + -0.0021315738558769226, + -0.00046281638788059354, + 0.001966349547728896, + -0.005289108492434025, + 0.00022809843358118087, + -0.0003263776015955955, + -0.0013607803266495466, + 0.0018009650520980358, + 0.003842714009806514, + -0.0032797374296933413, + -0.0034817541018128395, + -0.0008639479638077319, + 0.0025469004176557064, + -0.00010843556083273143, + -0.00233493372797966, + 0.00033726991387084126, + -0.003904040902853012, + -0.0014330752892419696, + -0.0016272346256300807, + 0.0005325285019353032, + 0.0004478735208977014, + -0.0014833015156909823, + 0.004429803695529699, + 0.0005372297600843012, + -0.0036661855410784483, + 0.003112511243671179, + 0.0022234993521124125, + 0.001200274913571775, + -0.0018021621508523822, + 0.00029055948834866285, + 0.0009460440487600863, + -0.0028404139447957277, + -0.0008890340686775744, + -0.0028685510624200106, + -0.002120696473866701, + -0.004534109029918909, + 0.0007619647076353431, + -0.0017784256488084793, + -0.0005883192643523216, + -0.0007464953232556581, + -0.0035118802916258574, + 0.0014105725567787886, + -0.0013944151578471065, + 0.002826681360602379, + -0.0030450348276644945, + 0.0008567663026042283, + 0.005322552286088467, + 0.001810422632843256, + -0.0017142596188932657, + 0.0012891750084236264, + 0.0019324537133798003, + -0.0038093198090791702, + -0.0016466890228912234, + -0.0020068110898137093, + 0.0067116315476596355, + -0.004436044488102198, + -0.0019860335160046816, + -0.0021139539312571287, + 0.0002968883782159537, + 0.014498396776616573, + -0.0046171643771231174, + 0.0005945087759755552, + 0.0020948820747435093, + 0.0018248766427859664, + 0.0024029789492487907, + -6.163185753393918e-05, + 0.002317997394129634, + -0.0023307697847485542, + -0.0049508968368172646, + 0.0010781836463138461, + 0.0021782172843813896, + 0.0005730438278988004, + -0.0025941890198737383, + 0.0026884954422712326, + -0.0008591806399635971, + -3.871607987093739e-05, + -0.0006731250905431807, + 0.002988248597830534, + -0.00015338535013142973, + 0.001995542785152793, + -0.0010415023425593972, + -0.0011708149686455727, + -0.001680080546066165, + -0.0019392104586586356, + -0.013762610033154488, + -9.439655696041882e-05, + 0.0011684807250276208, + -0.0019452095730230212, + -0.00013135629706084728, + -0.00900731049478054, + 0.0006780815892852843, + 0.0002766047837212682, + -0.0037061322946101427, + 0.0020071244798600674, + -0.0006323602865450084, + 0.0019891078118234873, + -0.0006615112069994211, + 0.0027737896889448166, + -0.021844839677214622, + -0.0067160180769860744, + 0.002691587433218956, + -0.0008964096195995808, + 0.00022125380928628147, + 0.00039149794611148536, + 0.0020322497002780437, + 0.003871320281177759, + -0.003924389835447073, + 0.0036295580212026834, + -0.00440912926569581, + 0.0016326134791597724, + 0.0030976736452430487, + 0.0045649707317352295, + 0.0017887417925521731, + -0.0037290225736796856, + 0.002168652368709445, + 0.00017785560339689255, + -0.00011257029109401628, + -0.0010890341363847256, + 0.00033546306076459587, + -0.001661089132539928, + -0.0026569373439997435, + -0.001587699051015079, + -0.0011829064460471272, + -4.170378088019788e-05, + -0.0012866181787103415, + -0.0033724126406013966, + 0.0018098882865160704, + -0.0006106491782702506, + -0.004296768922358751, + 0.0022542085498571396, + 0.0030375109054148197, + -0.0016423783963546157, + 0.0026085912249982357, + 0.0037742559798061848, + 0.007804251741617918, + 0.0036779874935746193, + -0.00019491238344926387, + 0.00342051824554801, + -0.01022547297179699, + 0.0019436798756942153, + -0.0013941023498773575, + -0.0017669007647782564, + 0.0013973042368888855, + 0.002351012546569109, + 0.004459097515791655, + -0.0031056669540703297, + 0.013197056017816067, + 0.0006276050116866827, + -0.00809753779321909, + -0.0015972162364050746, + 0.0012511266395449638, + -0.0006756302900612354, + 0.001733412267640233, + -0.0020479357335716486, + 0.00018705411639530212, + -0.0027548677753657103, + 0.00045685304212383926, + 0.000963621714618057, + -8.15717939985916e-05, + 0.0018095714040100574, + 0.001938695553690195, + 0.004133401904255152, + -0.0021403799764811993, + 0.002578405663371086, + 0.0018175210570916533, + -0.0031102760694921017, + 0.0015705572441220284, + -0.001153262797743082, + -0.0012354645878076553, + -0.0025416691787540913, + -0.0019443449564278126, + 0.0016377458814531565, + -0.0005051976768299937, + -0.0005948287434875965, + 0.014392312616109848, + -0.0006081810570321977, + -0.0025082924403250217, + 0.0005617706337943673, + 0.008616217412054539, + 0.0039042343851178885, + -0.004735513124614954, + -0.0006970269023440778, + -0.003374846186488867, + -0.003472046460956335, + 0.00016687277820892632, + -0.010861441493034363, + -0.0006753548514097929, + 0.005104726646095514, + 0.00026847253320738673, + -0.0011749264085665345, + 0.009490365162491798, + -0.0004061207873746753, + -0.0018475772812962532, + -0.000986215891316533, + 0.0007797582657076418, + 0.000662144273519516, + -0.0013290097704157233, + 0.0006013989332132041, + -0.0002624274929985404, + -0.001361454022116959, + 0.00010683336586225778, + -0.0009018241544254124, + 0.0069923740811645985, + -0.007299067918211222, + 0.0038837632164359093, + -0.0002454784116707742, + -0.001290417043492198, + -0.0006956002907827497, + -0.002748749451711774, + -0.002787928329780698, + 0.0011056459043174982, + -0.0013765118783339858, + 0.0009468785137869418, + -0.001845514983870089, + -0.0031547544058412313, + 0.0010398441227152944, + -0.00307130697183311, + 0.0028711995109915733, + 0.000509966688696295, + 0.001562311896122992, + 0.0007491488941013813, + 0.005368110258132219, + -0.002941371640190482, + -0.0002549283963162452, + 0.0016342182643711567, + -0.0007186265429481864, + 0.0006374487420544028, + 0.00587618350982666, + -0.005424397066235542, + 0.0037743535358458757, + 0.003026857739314437, + -0.0032077166251838207, + 0.0004985457635484636, + -0.00154341128654778, + 0.0014305601362138987, + 0.0030550225637853146, + -0.0028962763026356697, + -0.0011935930233448744, + 0.004947967361658812, + -0.008312518708407879, + -0.0037700864486396313, + 0.0028878001030534506, + -0.0018946558702737093, + -0.00047034540330059826, + -0.00030387783772312105, + 0.0015153841814026237, + 0.001151090138591826, + -0.00025504783843643963, + -0.0027735698968172073, + 0.005608296953141689, + 0.0005572448717430234, + -0.0013561624800786376, + 0.002011486329138279, + -0.006257115863263607, + 0.0020608215127140284, + -0.0006180875934660435, + 0.001170808682218194, + 0.001037975656799972, + -0.0021728910505771637, + 0.0027295502368360758, + -0.00011184441245859489, + 0.0037092454731464386, + 0.013898884877562523, + 0.005780762992799282, + 0.000416027003666386, + 0.0002386041742283851, + 0.0048646773211658, + 0.00314142694696784, + -0.020938916131854057, + 0.0014010346494615078, + -0.00625022454187274, + -0.00020944692369084805, + -0.0035663957241922617, + 0.0015095126582309604, + -0.0005269380053505301, + 0.0016409001545980573, + 0.005488702096045017, + 0.0001298481220146641, + 0.0019065150991082191, + 0.0030142376199364662, + -0.002005553338676691, + 0.0026750261895358562, + 0.002553889760747552, + -0.0023041802924126387, + -0.001015172223560512, + 0.006978905759751797, + -0.0037382442969828844, + 0.0006944580236449838, + 0.002537222346290946, + -0.0010123772080987692, + 0.001146394177339971, + 7.032553548924625e-05, + 0.0019468796672299504, + 0.0014883645344525576, + 0.005271405912935734, + -0.0005169858341105282, + -0.0019471547566354275, + 0.0010024155490100384, + -0.003848055377602577, + -0.0011170998914167285, + -0.002892831340432167, + -0.002164451638236642, + 0.00041479271021671593, + -0.004048930946737528, + -0.002929639769718051, + 0.0003741027321666479, + -0.004272604361176491, + -0.0007888388354331255, + -0.0056457435712218285, + -0.0008947824826464057, + 0.00465798145160079, + -0.0015185123775154352, + 0.0016900015762075782, + 0.0010686781024560332, + -0.00416463240981102, + 0.0009633316076360643, + -0.0008236519643105567, + -0.0010230890475213528, + -0.004527284763753414, + -0.0005058599053882062, + -0.0011804205132648349, + -0.00044724997133016586, + 9.877492993837222e-05, + -0.0003095341380685568, + 0.0007747623603790998, + 0.005597252398729324, + 0.0024734053295105696, + 0.00683197658509016, + 0.0004639425897039473, + -0.0034101156052201986, + 0.001879164483398199, + 0.005663976538926363, + -0.00022269993496593088, + -0.0004288080963306129, + 0.00047145038843154907, + -0.0017535238293930888, + 0.00024315823975484818, + 0.0010642652632668614, + 0.002891399897634983, + -0.0010313556995242834, + -0.0020100753754377365, + -1.3041637885180535e-06, + -0.00608594436198473, + 0.001067887176759541, + -0.0034003639593720436, + 0.0016028097597882152, + 0.0008039383101277053, + -0.0007721078582108021, + 0.0024791769683361053, + 0.002450756961479783, + 0.00020742345077451319, + 0.002921277191489935, + 0.0006312539335340261, + -0.0012311441823840141, + 0.002153536770492792, + 0.0010544891702011228, + -0.0001410104741808027, + -6.351144838845357e-05, + -0.0015333505580201745, + 0.009756390005350113, + -0.012094629928469658, + 0.0002038326347246766, + 0.0017768563702702522, + -0.003917301073670387, + -0.0015221614157781005, + 0.004264382179826498, + 0.0020003626123070717, + -0.00029161584097892046, + 0.003389800200238824, + -0.001156309270299971, + -0.0018888157792389393, + 0.0008035482605919242, + 0.001558056566864252, + -0.0008802390075288713, + -0.011228673160076141, + -0.003910787403583527, + -0.0035202722065150738, + 0.004686987027525902, + 0.0009280102094635367, + -0.0006707074935548007, + -0.00030693470034748316, + 0.01088039856404066, + -0.0033330395817756653, + 0.002430321415886283, + -0.002616524463519454, + -0.0017704179044812918, + -0.0009225061512552202, + -0.0007128184079192579, + 0.00015693411114625633, + -0.0008489125175401568, + 0.003329387865960598, + 0.005936378613114357, + -0.008252325467765331, + 0.00398221192881465, + 0.003464075503870845, + -0.0005479274550452828, + 0.0007424859213642776, + 0.0035533136688172817, + -0.004381219856441021, + -0.0006016027182340622, + -0.0026657150592654943, + 0.0011273010168224573, + 0.0012570066610351205, + -0.0014725771034136415, + 0.0014746274100616574, + -0.0005978303379379213, + -0.013715075328946114, + -0.008333354257047176, + 0.0014367492403835058, + 0.0036319103091955185, + -0.0023601013235747814, + 0.0033775053452700377, + -0.0005919800023548305, + 0.0011490798788145185, + 0.00043324101716279984, + -0.00442858599126339, + 0.0035054206382483244, + 0.0019126912811771035, + 0.000532803765963763, + 0.0019522699294611812, + -0.010446184314787388, + -0.006156708113849163, + 0.00041506608249619603, + -0.0045890407636761665, + 0.0015597294550389051, + 0.0010346410563215613, + -0.00041967653669416904, + 0.0026563992723822594, + -0.0022858299780637026, + -0.0001261032302863896, + 0.0027961949817836285, + 0.0029826145619153976, + -0.027618994936347008, + -0.005516514647752047, + 0.0001561279786983505, + 0.0003255548654124141, + -0.0009684521937742829, + -0.000600669183768332, + -0.0013440162874758244, + -8.92878815648146e-05, + -0.0007539205835200846, + -0.01077164988964796, + 0.0041129994206130505, + 0.0006645089597441256, + -0.0006993130664341152, + -0.0011231949320062995, + 0.002218971960246563, + 0.0031505790539085865, + -0.0002115162933478132, + 0.004702252335846424, + 0.0004904919769614935, + 0.00030369250453077257, + -0.011726822704076767, + -0.0010815478162840009, + -0.0025420081801712513, + 0.0019638019148260355, + 0.00035193079384043813, + 0.0010359161533415318, + -7.921304495539516e-05, + 0.0010167311411350965, + 0.003036238020285964, + 0.0012000099522992969, + 0.0012850300408899784, + 0.007106812670826912, + -0.0026631674263626337, + -0.0006081447936594486, + -0.0005622626631520689, + -0.010766163468360901, + -0.0017526067094877362, + 0.004325095564126968, + -0.00030075685936026275, + -0.0028889281675219536, + -2.1673768060281873e-05, + 0.001499863457866013, + 0.001865949365310371, + -0.0011572682997211814, + 0.004375530872493982, + 0.001039715949445963, + -0.0033495770767331123, + 0.0017759689362719655, + 0.0006728493608534336, + 0.00018883666780311614, + -0.002508552512153983, + -0.0003455636033322662, + 0.002400832949206233, + 0.001791398855857551, + -0.00029746111249551177, + 0.0034820695873349905, + 0.00025575730251148343, + -0.002838684245944023, + -0.0036155751440674067, + -0.0009914450347423553, + -0.0015106480568647385, + 0.017924971878528595, + 0.0023407863918691874, + 0.005936821922659874, + 0.0007129078730940819, + 0.0018746639834716916, + 3.370164631633088e-05, + -0.001216973178088665, + -0.0028178684879094362, + 0.0017303007189184427, + -0.0018615903099998832, + 0.002113711554557085, + 0.0025305950548499823, + 0.00012133260315749794, + 0.004168086685240269, + -0.002592484001070261, + 0.00343753001652658, + -0.0026718054432421923, + -0.0023422096855938435, + 0.0008259395835921168, + 0.003037587972357869, + 0.003947891760617495, + -0.006310615222901106, + 0.0011658804723992944, + 0.003019594121724367, + 0.0008578805718570948, + -0.007700905203819275, + 0.0020531839691102505, + -0.0023143705911934376, + 0.0005116470856592059, + -0.005239776335656643, + -0.008873584680259228, + 0.004291911143809557, + 0.0020103873685002327, + 0.002344702370464802, + 0.0009215392055921257, + -0.00180187844671309, + -0.006618993356823921, + 0.004046248737722635, + -0.0007976639317348599, + -0.0024271428119391203, + 0.0009820547420531511, + -0.0013769587967544794, + 0.0031345002353191376, + -0.0004497083427850157, + -0.0030973919201642275, + 0.013261230662465096, + -0.0006142681231722236, + 0.00014237230061553419, + 0.004585031885653734, + -0.0011119109112769365, + 0.00032314055715687573, + -0.004876355174928904, + -0.0012464631581678987, + 0.005081085953861475, + 0.0012961357133463025, + -0.002872797194868326, + -0.0025966328103095293, + 0.0024872254580259323, + -0.00048223661724478006, + 0.0027106169145554304, + 0.0018595685251057148, + 0.0004955175681971014, + -0.0011918098898604512, + 0.0020015384070575237, + -0.0007159945671446621, + -0.0038104120176285505, + -0.0004855600418522954, + 0.00010748654312919825, + -0.0003002404992002994, + 0.0005492701311595738, + 0.001519440789707005, + -0.0015951493987813592, + -0.003141994820907712, + 0.0024482998996973038, + 0.008287785574793816, + 0.0007206356385722756, + -0.002662497339770198, + -0.0003810612834058702, + 0.0018203015206381679, + 0.0008077181992121041, + -0.0030619692988693714, + -0.002086958149448037, + -0.0010168711887672544, + 0.0028414081316441298, + 0.002001289278268814, + -0.0010601857211440802, + -0.0004416027513798326, + -0.0014233095571398735, + 0.0004595575446728617, + 0.0012575286673381925, + 0.0019651702605187893, + 0.001360350288450718, + 0.0012982694897800684, + 0.002868995536118746, + -0.001578961848281324, + 0.0034544444642961025, + -0.0011016507633030415, + -0.004130199085921049, + 0.0019260422559455037, + -0.0059173195622861385, + 0.0007883423822931945, + 0.0003628436243161559, + -0.0001521455851616338, + 0.0003779091057367623, + -0.0018651161808520555, + 0.0025885505601763725, + 0.0033005971927195787, + -0.009777904488146305, + 0.00037151790456846356, + -0.0010517826303839684, + -0.0026735716965049505, + -0.006921699736267328, + 0.004618695471435785, + 0.0015475422842428088, + 0.0004886682145297527, + -0.0007591246394440532, + -0.001472685718908906, + 0.0018512742826715112, + -0.0011214218102395535, + 0.0008399838698096573, + 0.00404732720926404, + 0.006766253616660833, + -0.0020622755400836468, + 0.0013187876902520657, + 0.01242327131330967, + 0.0008015349158085883, + 0.0007300525321625173, + 0.001077562803402543, + -0.003374713007360697, + 0.0008572479127906263, + 0.0009027672931551933, + -0.0003085387870669365, + -0.0004048087284900248, + 0.0008716225274838507, + 0.005532025825232267, + 0.0010898052714765072, + 0.0013842260232195258, + -0.006984619423747063, + -0.0003937333240173757, + 0.0017567129107192159, + -0.0022313748486340046, + -0.002450842410326004, + -0.0004465330857783556, + -0.002891459269449115, + 0.0031690122559666634, + -0.0028389424551278353, + -0.010289451107382774, + 0.0027602477930486202, + 0.0024622508790344, + -0.0027888044714927673, + 0.002660363679751754, + -0.0004424517974257469, + -0.007441870868206024, + -0.001098858192563057, + 0.002452877117320895, + -0.002330490155145526, + -0.00021288056450430304, + -0.004453618079423904, + -0.002804921707138419, + -0.0011451460886746645, + 0.0003402149595785886, + 8.27968615340069e-05, + -0.003674929728731513, + 0.0034558551851660013, + 0.0015530665405094624, + -0.0024571616668254137, + 0.0034233059268444777, + 0.0038645698223263025, + 0.0028885360807180405, + 0.001759897219017148, + -0.00032996066147461534, + -0.0006844255258329213, + -0.00044993474148213863, + -0.0017629885114729404, + 0.002236926695331931, + 0.0008900832617655396, + 9.746033902047202e-05, + 0.0015481747686862946, + 0.003246655920520425, + 0.0012185957748442888, + -0.0019577103666961193, + -0.0032950169406831264, + -0.010946128517389297, + 0.004401725251227617, + -0.0034591471776366234, + 0.002703453414142132, + 0.0007163700647652149, + 0.0013615614734590054, + 3.5032622690778226e-05, + 0.00038401532219722867, + 0.00027079350547865033, + 0.0003719851956702769, + -0.0008895652135834098, + 6.42738668830134e-05, + 0.0007406334043480456, + -0.006073968484997749, + 0.0011453976621851325, + -0.00048619878361932933, + -0.0015583460917696357, + -0.0001877478207461536, + 0.004602814558893442, + -0.0021125124767422676, + 0.00010445527732372284, + -0.0012678513303399086, + -0.0008645988418720663, + 0.015281528234481812, + -0.002606659196317196, + 0.0024373596534132957, + 0.0036027764435857534, + 0.0025763532612472773, + 0.008405174128711224, + 0.001756548648700118, + 0.007102680392563343, + 0.001913323998451233, + 0.001728753442876041, + 0.001586123020388186, + 0.007046945858746767, + -0.0038502905517816544, + -0.0005162674351595342, + 0.0010090366704389453, + 0.0008584876195527613, + 0.0017342661740258336, + -0.00041925234836526215, + 0.004177705384790897, + 0.002093280665576458, + -0.004388249479234219, + -0.0031486758962273598, + 0.0028790703509002924, + -0.002169432584196329, + 0.00028923791251145303, + -0.0054095727391541, + -0.00042903723078779876, + 0.0011972746578976512, + -0.0014454168267548084, + -0.002622848143801093, + -0.014299233444035053, + -0.002748928964138031, + 0.0019136404152959585, + 0.0004833602288272232, + 0.004487782716751099, + -0.002351166447624564, + 0.00018277201161254197, + -0.003099902532994747, + 0.0034374245442450047, + -1.4630982150265481e-06, + -0.0019716958049684763, + 0.0009117561276070774, + -0.0035049025900661945, + 0.0007413758430629969, + -0.000535851635504514, + 0.0008036551298573613, + 0.0009525757050141692, + -0.0004079529317095876, + 0.0006462723249569535, + -0.013629801571369171, + 0.002272499492391944, + 0.002559713553637266, + 0.004567578434944153, + 0.0006743433768860996, + 0.005421935115009546, + -0.0006829464109614491, + 0.0057586850598454475, + 0.0034727738238871098, + 0.0004113306640647352, + 0.002255125902593136, + 0.004000117536634207, + 0.00020654806576203555, + -0.004318856168538332, + 0.00200125970877707, + 0.007752913050353527, + -0.001199641264975071, + -0.004463252145797014, + 9.57746960921213e-05, + 0.0028276212979108095, + -0.0021239034831523895, + -0.003983030095696449, + -0.003110834863036871, + 0.004660428501665592, + -0.0024852524511516094, + 0.006521063856780529, + -0.0004806801152881235, + -0.0004064728273078799, + -0.002359134843572974, + 0.010550017468631268, + 0.00019723076547961682, + 0.0038334934506565332, + 0.0015650112181901932, + -0.0038890400901436806, + 0.0022159351501613855, + -0.003342648735269904, + -0.008271283470094204, + 0.00019948053522966802, + -0.00031913400744087994, + 0.005843954160809517, + 0.0007843212806619704, + 0.003745164256542921, + -0.0005739479674957693, + 0.002020878717303276, + -0.0020347286481410265, + -0.0026332896668463945, + 0.001376626081764698, + 0.001288049970753491, + 0.0010198106756433845, + 0.0025513768196105957, + -5.441692701424472e-05, + -0.005098618566989899, + 0.000827998504973948, + -0.0030243212822824717, + 0.0027419792022556067, + -0.005860164761543274, + -0.00035301686148159206, + -0.0036303498782217503, + -0.00040176816401071846, + 0.0011163640301674604, + -0.0007871999987401068, + 0.008511881344020367, + 0.0014333619037643075, + 0.0005410679150372744, + 0.0013415878638625145, + 0.0010611620964482427, + -0.0009702513925731182, + -0.0008451757021248341, + -0.0006845518946647644, + -1.7778702385840006e-05, + -0.0003510462411213666, + -0.00030801500543020666, + 0.0002654271374922246, + 0.0002136732655344531, + -0.00018859094416256994, + -0.0004889157717116177, + 0.0005379819194786251, + 0.0027285178657621145, + 0.0006242220988497138, + -0.0028217246290296316, + -0.001990928314626217, + 0.004491204861551523, + 0.0006829100893810391, + 0.0008467748994007707, + 0.002289172727614641, + -0.0037310014013201, + -0.009887398220598698, + 0.0018179338658228517, + -0.0031146227847784758, + 0.001754128374159336, + 0.0019092082511633635, + 0.00046606833348050714, + 0.001906515914015472, + -0.000397023803088814, + -0.000665531842969358, + -0.0017903728876262903, + 0.0017639518482610583, + -0.001455404912121594, + 0.0038520353846251965, + 0.0014701213221997023, + -0.0036986430641263723, + 0.0010972468880936503, + -0.0016618234803900123, + -0.005857423413544893, + 0.0027301572263240814, + -0.0016597709618508816, + 0.001445445348508656, + 0.0026862521190196276, + 0.0012493102112784982, + 0.0016478040488436818, + -0.0007208558381535113, + -0.0010476565221324563, + -0.0010861539049074054, + -0.003417601576074958, + -0.002015418605878949, + -0.0010309508070349693, + 0.0075220027938485146, + 0.0022192979231476784, + -0.00034671646426431835, + 0.0015076033305376768, + -0.001621374860405922, + -0.00123610720038414, + -0.001632633269764483, + 0.001133144716732204, + 0.0003174210141878575, + 0.002272128826007247, + 0.0020256522111594677, + 0.002314469078555703, + -0.0026642647571861744, + 0.0013124517863616347, + 0.0023808348923921585, + 0.006203282158821821, + -0.005606483202427626, + -0.0005496334633789957, + 0.004130322020500898, + -0.0017164568416774273, + 0.0017114176880568266, + 0.002119452925398946, + -0.0008790057618170977, + 0.0005923860589973629, + 0.009893562644720078, + -0.00017694797134026885, + -0.0003801215789280832, + -0.0033015834633260965, + 0.0008610443910583854, + -0.0005282279453240335, + -0.00111645448487252, + 0.0034437531139701605, + 0.0013205440482124686, + -0.0037258672527968884, + -0.0032237605191767216, + 0.0044317361898720264, + -0.001990285702049732, + -0.0019811876118183136, + -0.0014038870576769114, + 0.0016987451817840338, + 0.006378267426043749, + 0.0020331814885139465, + -0.010645578615367413, + -0.001433586934581399, + -0.004007395356893539, + -0.0012878786073997617, + -0.0015057602431625128, + 0.0016202811384573579, + -0.0007760590524412692, + -0.00026707680081017315, + -0.0008414977928623557, + 0.002172426786273718, + 0.01175353117287159, + -0.0017805141396820545, + 0.0024166633374989033, + -8.321128552779555e-05, + 0.0003661145456135273, + 0.0001545135019114241, + 0.0002871853648684919, + 0.0011061899131163955, + -0.0023944638669490814, + -0.002331243362277746, + -0.005827296059578657, + 0.0013003108324483037, + -0.0018111754907295108, + 0.003013031091541052, + -0.008046270348131657, + -0.007693687453866005, + -0.0025365552864968777, + 0.0019637278746813536, + -0.0004176975053269416, + 7.278798875631765e-05, + -0.002008763374760747, + -0.0009562058257870376, + -0.0015592289855703712, + 0.011496528051793575, + 0.0004246327152941376, + 0.00012080164742656052, + 0.005213901866227388, + 0.0010037996107712388, + 0.0004737177223432809, + -0.001252465066500008, + 0.0016151759773492813, + -0.0004996941424906254, + -0.016610439866781235, + -0.0011023085098713636, + 0.0039365882985293865, + -0.000264065049123019, + -0.00018427291070111096, + 0.0033875659573823214, + 0.0014390371507033706, + 5.5318443628493696e-05, + -0.012943653389811516, + -0.002538240747526288, + -0.0032685850746929646, + 0.00034186471020802855, + 0.0010476444149389863, + 0.00019018595048692077, + 0.002769940299913287, + 0.0010415142169222236, + -0.0009270671871490777, + 0.0037552877329289913, + 0.0030079057905822992, + 0.0026077302172780037, + 0.003409632481634617, + -0.0011460684472694993, + -0.0020722635090351105, + 0.0013604313135147095, + -0.001057544955983758, + -0.0019272241042926908, + 0.0023724620696157217, + 0.0012399586848914623, + 0.0014959577238187194, + 0.005053453613072634, + -0.0002832213358487934, + -0.0023963863495737314, + -0.0014721463667228818, + 0.00016122127999551594, + -0.0014912474434822798, + 0.0005446238210424781, + -0.0013585285050794482, + 0.00223647803068161, + -0.0030338908545672894, + -0.001398985623382032, + 0.003038927912712097, + 0.005648654419928789, + 0.0014369561104103923, + 0.0007921535288915038, + 0.002727815182879567, + -0.001695636659860611, + 0.001941103721037507, + 0.002703462028875947, + -0.0014028188306838274, + -0.0031851124949753284, + -0.0005758085753768682, + 0.00276083848439157, + 0.001215194701217115, + 0.003974001854658127, + 0.005670844577252865, + -0.0005626038764603436, + 0.00957622192800045, + -0.0006060484447516501, + 0.0007245347951538861, + -0.0012266826815903187, + 0.018673451617360115, + 0.000505159143358469, + -0.003977494779974222, + -0.011731711216270924, + 0.0009778529638424516, + -0.0009153360151685774, + 0.0002926629676949233, + 0.0006354246870614588, + 0.00189676764421165, + -0.0030806753784418106, + 0.002117449650540948, + -0.002359165111556649, + 0.0008353443699888885, + -0.0019921530038118362, + 0.005657933186739683, + 0.0012661769287660718, + -0.010299397632479668, + -0.00028901328914798796, + 0.0006773228524252772, + 0.0016863872297108173, + 0.0007062171935103834, + -0.004963967949151993, + 0.00209054839797318, + -0.004776003770530224, + -0.0029971804469823837, + -0.0019495332380756736, + 0.0012432570802047849, + -0.0027396329678595066, + -0.000873238721396774, + 0.003344535129144788, + 0.0002703653008211404, + 0.0005534761003218591, + 0.0020355130545794964, + -0.0006574445287697017, + -0.0018258609343320131, + 0.0008721898775547743, + 0.002731246640905738, + 0.0007482382352463901, + -0.002047339454293251, + 0.0029699921142309904, + 0.0007362692849710584, + 0.0009689924190752208, + 0.004001114517450333, + 2.4221084458986297e-05, + -0.001663588802330196, + -0.0009112958796322346, + -0.003681374713778496, + -0.0012780508259311318, + 0.001888894010335207, + 0.0005523564177565277, + 0.0001664191804593429, + 0.003430438693612814, + 0.0012216940522193909, + 0.0021837083622813225, + 0.00020507880253717303, + -0.002095838077366352, + 0.0013995099579915404, + 0.00017904410196933895, + 0.0005835933843627572, + -0.002891123527660966, + -0.0008025781135074794, + -7.545508560724556e-05, + 0.003469861811026931, + 0.0008890243479982018, + -0.0022402724716812372, + 0.003223929787054658, + -0.00024128082441166043, + -0.0033724228851497173, + 0.0006869560456834733, + 0.0008634838741272688, + 0.003210865892469883, + 0.0018745185807347298, + -0.0012959438608959317, + 0.0033798571676015854, + -0.002092104870826006, + -0.003999015316367149, + 0.001362278824672103, + -0.0020112409256398678, + 0.000380158016923815, + -0.0038931111339479685, + -0.00017555781232658774, + -0.0009337092051282525, + -0.005978317931294441, + 0.0013586918357759714, + -0.0018928683130070567, + 0.001965190749615431, + -0.0012138900347054005, + -3.617506808950566e-05, + 0.0010910299606621265, + 0.001318816328421235, + -0.0006692720344290137, + 8.141496800817549e-05, + 0.006782949436455965, + 0.00027981982566416264, + -0.0010340703884139657, + 0.0023945928551256657, + -0.004783793818205595, + 0.002456006594002247, + 0.004557994659990072, + -0.001967723248526454, + -0.005213883239775896, + 0.0008356617181561887, + -0.0006608374533243477, + -0.0023629297502338886, + -0.00028291044873185456, + 0.004472585394978523, + 0.004531910642981529, + -0.00032194494269788265, + -0.0031409573275595903, + 0.0012846296885982156, + 0.003867984749376774, + 0.0022079595364630222, + 0.002785559743642807, + 0.0008258653688244522, + -0.005806006491184235, + 0.007192564196884632, + -7.650550105609e-05, + -0.0003355965600349009, + 0.0010314324172213674, + -0.00042379929800517857, + 0.0009394373628310859, + -0.002263653324916959, + 0.0014224371407181025, + -0.002590959193184972, + -0.00430151354521513, + -0.0029202853329479694, + 0.0010337586281821132, + -0.002042770851403475, + 0.0017786916578188539, + 0.012098460458219051, + 0.010981838218867779, + -0.0026715039275586605, + -0.0026438224595040083, + -0.0068629952147603035, + -0.00011077147792093456, + -0.0024349915329366922, + -0.004741991404443979, + 0.0007938896305859089, + 0.002167497994378209, + -0.00926972832530737, + -0.0013937136391177773, + -0.0013750502839684486, + 0.00036431901389732957, + -0.0010393288685008883, + 0.004308249335736036, + 0.0017664656043052673, + -0.00596631271764636, + -0.0023492544423788786, + 0.0008041945402510464, + 0.008197021670639515, + -0.0013865662040188909, + -0.005308827385306358, + 0.002632618648931384, + 0.004021893721073866, + 0.0011928413296118379, + 0.0014660258311778307, + 0.0008815607288852334, + -0.0039880042895674706, + 0.00037548947148025036, + 0.00390979927033186, + -0.0016786998603492975, + -0.0015079465229064226, + 0.00449008122086525, + -0.005252330098301172, + 0.005957868881523609, + 0.004039106424897909, + 0.0031738823745399714, + -0.005080776289105415, + -0.00022904909565113485, + 0.0036076330579817295, + 0.0003616224566940218, + 0.002983466722071171, + 0.0008660763269290328, + 0.0013298442354425788, + 0.0014891179744154215, + -0.001970384269952774, + 0.0003500727179925889, + 3.221414954168722e-05, + 0.0012638889020308852, + -0.000464125070720911, + -0.0037775137461721897, + 0.0008159530116245151, + -0.00042644370114430785, + 0.0025422051548957825, + 0.0011552060022950172, + -0.00024169999232981354, + 0.0007020579068921506, + 0.000655337527859956, + -0.0013399469899013638, + -0.0002620906743686646, + 0.007718890439718962, + 0.0010953758610412478, + -0.0048049683682620525, + 0.000518534448929131, + -0.003023086581379175, + 0.00031956133898347616, + 0.002977014984935522, + 0.0007657488458789885, + -0.0028856752905994654, + 0.005647905170917511, + 0.0012920030858367682, + 0.002032595220953226, + -0.0013306427281349897, + 0.002246917923912406, + -0.0017083310522139072, + 0.0013992219464853406, + 0.012880455702543259, + 0.002050854964181781, + 0.0014840721851214767, + 0.0012985963840037584, + -0.0009234409080818295, + 0.002676501637324691, + -0.0008471297915093601, + -0.005842892453074455, + 0.000800255686044693, + 0.002118238713592291, + -0.000816009589470923, + 0.001961339497938752, + -0.0010454363655298948, + 0.0031465154606848955, + 0.0007139684748835862, + 0.00010413445124868304, + -0.0012863967567682266, + 0.003134608268737793, + 0.0014750574482604861, + 0.0022575834300369024, + -0.001784681691788137, + -0.000582679349463433, + 0.0006822958239354193, + -0.0013569194125011563, + 0.0014872729079797864, + -0.001298778341151774, + -0.003636288456618786, + 0.0005415250780060887, + -2.8148424462415278e-05, + 0.000439940340584144, + 0.0035596932284533978, + 0.002488367259502411, + 0.0007434369181282818, + -1.1862080100399908e-05, + -0.00025396267301402986, + 9.405908713233657e-06, + 0.0029849226120859385, + -0.0016213044291362166, + -0.0021134510170668364, + -0.0008438366348855197, + 0.0013323003659024835, + 0.001952331862412393, + -0.0022577387280762196, + 0.003266623942181468, + 0.006478277500718832, + -0.013732238672673702, + 0.004085712134838104, + 0.0014080220134928823, + -0.001268981141038239, + 0.0071195997297763824, + -0.002447060076519847, + -0.0050056749023497105, + -0.0009345906437374651, + 0.0013804988702759147, + 0.0009007509797811508, + -0.0003989891556557268, + -0.003411441808566451, + 0.0012015588581562042, + 0.0019123840611428022, + -0.0002729734987951815, + -0.0032014185562729836, + -0.0010027270764112473, + -0.005993186496198177, + 3.8118869269965217e-05, + -0.00432224664837122, + -0.002913988893851638, + 0.0002969026973005384, + 0.0026511182077229023, + 0.0048528932966291904, + -0.0018727059941738844, + 0.009068666957318783, + -0.002371461596339941, + -0.0009874050738289952, + 0.004871883895248175, + -0.004377522971481085, + 0.0009068236104212701, + 0.003103795228525996, + -0.00022797397105023265, + 0.0026108287274837494, + 0.0024010417982935905, + -0.0027724807150661945, + -0.0012398032704368234, + 0.0019365705084055662, + -2.800986749207368e-07, + -0.0028520759660750628, + -0.0004469547129701823, + -0.0006897759158164263, + -0.0011667809449136257, + -0.0025857610162347555, + 0.0008465410210192204, + -0.003201667917892337, + -0.0015345420688390732, + 0.0031692939810454845, + -0.002245459007099271, + 0.0007230844930745661, + 0.0007746195187792182, + 0.0020895174238830805, + 0.0020723522175103426, + 0.00039245348307304084, + -0.0002779323549475521, + 0.0021816231310367584, + 0.0007334784022532403, + 0.0011199191212654114, + -0.0022499780170619488, + 0.002523018978536129, + -0.0038068462163209915, + -0.004740620963275433, + -7.811878458596766e-05, + 0.002077899407595396, + 0.0013456272426992655, + -0.004593703430145979, + -0.005776776932179928, + 3.5248627682449296e-05, + 0.0012087076902389526, + -0.0022075690794736147, + 0.00011097628885181621, + -0.00045364114339463413, + 0.0009076049318537116, + -0.0015725063858553767, + -0.003784605534747243, + 0.002280638087540865, + 0.0015678858617320657, + 0.002482491312548518, + 0.0010034482693299651, + 0.0027268691919744015, + -0.005109116900712252, + 0.004388867877423763, + -0.001933591440320015, + 0.004584513138979673, + 0.00016027808305807412, + 0.0015506672207266092, + -0.0006831499631516635, + 0.0012365232687443495, + 0.00033987470669671893, + 0.008869769051671028, + -0.009963714517652988, + -0.0004252363578416407, + -0.007995213381946087, + 0.0023284005001187325, + 0.0008002408430911601, + 0.004036080092191696, + 0.00047687164624221623, + 0.0012146405642852187, + -0.002836773172020912, + -0.0027430581394582987, + -0.0011689724633470178, + -0.0012696561170741916, + -0.0012297725770622492, + 0.000584338849876076, + 0.004598131403326988, + 0.0001287440536543727, + -0.0033509661443531513, + 0.001065115793608129, + 0.00204325164668262, + 0.0020545555744320154, + 0.00046136093442328274, + 0.00016439972387161106, + 0.0033233060967177153, + -0.0007450815755873919, + -0.008167929947376251, + -0.005386649165302515, + 0.004341705236583948, + -0.002491904888302088, + 0.0025484426878392696, + 0.0023264798801392317, + -0.0019783922471106052, + -0.0024645100347697735, + 0.0019543152302503586, + -0.003022112650796771, + 0.002083143685013056, + -0.0026777503080666065, + 0.0005609270301647484, + 0.0009554619900882244, + -4.944145257468335e-05, + 0.0012124719796702266, + -0.00386355840601027, + 5.3248841140884906e-05, + -0.002508667530491948, + 0.0004146923602093011, + -0.0017138492548838258, + -0.00020681650494225323, + 0.002531966893002391, + 0.010851745493710041, + 0.002768235979601741, + -0.002907043555751443, + -0.0009443828603252769, + -0.004211348947137594, + 0.0009859042475000024, + 0.005409817676991224, + -0.0031161310616880655, + 0.002955667208880186, + 0.0012296490604057908, + -0.0001092104721465148, + -0.0008733722497709095, + -0.00046908025979064405, + 9.66679144767113e-05, + -0.0038203243166208267, + -1.1447553333709948e-05, + 0.0002606918860692531, + 0.0052333250641822815, + -0.002597506856545806, + -0.0011620972072705626, + 0.000451356521807611, + -0.0010398182785138488, + -0.0016449758550152183, + 0.002694526221603155, + -0.004553616512566805, + 0.0037250597961246967, + -0.004233758430927992, + -4.758991053677164e-05, + 0.005289973225444555, + -0.003130741883069277, + -0.0013373509282246232, + 0.004277660511434078, + -0.005644116085022688, + -0.005133671686053276, + 0.0029606157913804054, + 0.0017310624243691564, + 0.0011778931366279721, + 0.0012774830684065819, + 0.012698112055659294, + 0.0007966984412632883, + -0.0028381007723510265, + -0.0034615499898791313, + 0.0012629373231902719, + -0.0008431632304564118, + 0.0025290334597229958, + 0.00043351869680918753, + 0.0036823716945946217, + 0.001370778540149331, + 0.0008195356349460781, + 0.0008085688459686935, + -0.00034917445736937225, + 0.0010463561629876494, + -1.7575854144524783e-05, + -0.004471486900001764, + -0.0001308711216552183, + 0.0035571742337197065, + -0.00892083439975977, + -0.0023282316979020834, + -0.0028221365064382553, + 0.00398260448127985, + -0.0014884108677506447, + 0.011053547263145447, + -0.00011526817979756743, + -0.0004111967864446342, + 0.0019259356195107102, + -0.0022111062426120043, + 0.0048329089768230915, + -0.0023173997178673744, + -0.0008876894717104733, + 0.0004174272471573204, + -0.004905544687062502, + -0.005167294759303331, + 0.001043226569890976, + -0.00032896766788326204, + -0.0014862283132970333, + -0.0063979290425777435, + 0.00013179716188460588, + -0.0009706745622679591, + -0.0005989833734929562, + -0.0004126388521399349, + -0.0008574567036703229, + -0.00030615480500273407, + -0.001671250443905592, + 0.005149073898792267, + -0.000632571114692837, + 0.003492542076855898, + 0.002554250881075859, + -0.001919455244205892, + -0.002714588539674878, + -0.004064655862748623, + -0.002834556857123971, + 0.0007265648455359042, + 0.001811755239032209, + -0.002205471508204937, + 0.011846906505525112, + 0.004562467336654663, + -0.0025262890849262476, + 0.00599857559427619, + -0.0007307452033273876, + 0.0005896213697269559, + 0.001039440743625164, + 0.0020737824961543083, + -0.009338811039924622, + 0.0017941788537427783, + -0.0017421282827854156, + 0.0021915731485933065, + 0.009312859736382961, + -0.0066621205769479275, + 0.0010101526277139783, + -0.0010560532100498676, + 0.002703375183045864, + -0.0005262250197120011, + -0.00033055516541935503, + 0.0005270210094749928, + -0.0015861350111663342, + -0.002805436495691538, + 0.0007727742195129395, + 0.007391005754470825, + 0.0015047696651890874, + -0.000950032495893538, + 0.0007733877864666283, + -0.0008654269040562212, + -0.002807699143886566, + 0.005088458303362131, + 0.00017222855240106583, + 0.0026591818314045668, + -0.001830162713304162, + 0.0015409209299832582, + -0.001669228309765458, + 0.0011486398288980126, + 0.0023025840055197477, + -0.002458857838064432, + -0.00010805604688357562, + 0.004065486136823893, + 0.0014963054563850164, + -0.001235795090906322, + -0.003655765438452363, + 0.014478135854005814, + 0.0009744332055561244, + -0.0028861279133707285, + -0.0010911874705925584, + 0.005529850721359253, + -0.003126381430774927, + -0.0019669116009026766, + -0.0011083970312029123, + 0.002159005030989647, + 0.011403217911720276, + -0.0006845940952189267, + -0.00036630663089454174, + 0.00048793660243973136, + 0.00181392184458673, + 0.000650714326184243, + -0.0003067299257963896, + 0.0038031223230063915, + -0.0035708965733647346, + 0.002477057510986924, + 0.005588855128735304, + 7.086367259034887e-05, + 0.0039430707693099976, + -0.02606574445962906, + 0.0011164427269250154, + -0.0006766172591596842, + 0.0007147520082071424, + -0.003984173759818077, + -0.006528669968247414, + -0.003802564227953553, + 0.003002322744578123, + 0.0006990029360167682, + -0.005709328223019838, + 0.0012010211357846856, + -0.0006703670369461179, + 0.0031294773798435926, + 0.0022557126358151436, + 0.0010094105964526534, + -0.004964505322277546, + -0.001458990853279829, + -0.0022520539350807667, + 0.000896716199349612, + -0.0003044155309908092, + -0.0022811873350292444, + -0.0014972963836044073, + -0.0013895373558625579, + -0.0005374327884055674, + -0.002157003153115511, + -0.0007896631141193211, + 0.00036851814365945756, + 0.0017721658805385232, + 0.0031800169963389635, + 0.000788430159445852, + 0.0010752115631476045, + -0.00041833470459096134, + -0.000401233381126076, + 0.0013228810857981443, + -0.00032206872128881514, + 0.0018012385116890073, + 0.00014338483742903918, + -0.0027491170912981033, + 0.001926578232087195, + -0.0030598361045122147, + -0.004094116389751434, + -0.0002869344607461244, + -0.0037825254257768393, + -8.484826685162261e-05, + 0.0016657015075907111, + -0.0009387097670696676, + 0.005861154291778803, + 5.179178060643608e-06, + 0.00545874098315835, + -0.001225752173922956, + -0.003141226479783654, + -0.0057343412190675735, + -0.0021536240819841623, + -0.00017924477288033813, + 0.006048791576176882, + -0.002791746286675334, + -0.0003979732282459736, + 0.0022061513736844063, + 0.002067072782665491, + 0.0020706020295619965, + -0.0013914242153987288, + 0.0011834668694064021, + 0.0012111725518479943, + -0.0005090132472105324, + -0.0009518582955934107, + -0.0018351051257923245, + -0.001945318654179573, + -0.002792616607621312, + 6.691232556477189e-05, + -0.0034579678904265165, + -0.003714155638590455, + -0.0003421640722081065, + 0.00032851999276317656, + 0.0002500868577044457, + 0.0017300043255090714, + -0.0006634408491663635, + -0.00035326441866345704, + -0.001822304562665522, + -0.0015466504264622927, + -0.002964557381346822, + -0.002158442744985223, + 0.0017173464875668287, + -0.005833799485117197, + 0.0013968900311738253, + -0.0018604020588099957, + 0.003524764673784375, + -0.007902126759290695, + 0.002766239456832409, + 0.00033542595338076353, + -0.0008568274206481874, + -0.00021754374029114842, + 0.0006650862633250654, + -0.006504402030259371, + 9.811190830077976e-05, + -0.0003845014434773475, + -0.0027165741194039583, + -0.00494557898491621, + 0.0027942960150539875, + 0.003035442903637886, + -0.00019114337919745594, + 4.900062776869163e-05, + -0.003095037769526243, + -0.0006920224404893816, + 0.0003794203803408891, + -0.002874573227018118, + -0.0016607943689450622, + 0.001496126758866012, + 0.003311514388769865, + -0.0012169510591775179, + 0.000693621055688709, + -0.0008310875273309648, + -7.95717496657744e-05, + -0.0008705757209099829, + 0.0018150921678170562, + 0.00040001890738494694, + 0.002773540560156107, + -0.0015943683683872223, + -0.0015030045760795474, + -0.0008976947283372283, + 0.009714623913168907, + -0.0014280106406658888, + -0.0021225300151854753, + 0.0020095561631023884, + -0.000636502169072628, + -0.0022264563012868166, + 0.0009943469194695354, + 5.104787851450965e-05, + -0.0011561837745830417, + -7.879222539486364e-05, + 0.0011853526812046766, + 0.0017962948186323047, + 0.0014779857592657208, + -0.004098108038306236, + -0.0022167223505675793, + -0.0013875637669116259, + -0.0004104335675947368, + -0.0024047105107456446, + 0.0027440364938229322, + -4.965181869920343e-05, + -0.00034577964106574655, + 0.00043832609662786126, + -0.00045315257739275694, + -0.0011675331043079495, + -0.0029280525632202625, + 0.0036808489821851254, + 0.0007354138069786131, + -0.0004275286046322435, + 0.0031405852641910315, + 0.00019228208111599088, + -0.005124758463352919, + 0.0003765829314943403, + -0.008132965303957462, + 0.0009027102496474981, + 0.0003835890383925289, + -0.003585223341360688, + 0.003068872494623065, + 0.0016762862214818597, + 0.004541536793112755, + 0.0009373229695484042, + -0.0006593262078240514, + 0.004433041904121637, + 0.0038261038716882467, + 0.00217077205888927, + -0.01243500504642725, + 0.0007645880687050521, + 0.0031735796947032213, + 0.0011862657265737653, + -0.0009129580575972795, + 0.003429736476391554, + 0.0016227500746026635, + -0.0009261446539312601, + 0.0012760774698108435, + -0.0014516706578433514, + 0.013324030674993992, + 0.0012875329703092575, + -0.0027564989868551493, + 0.00013716855028178543, + 0.004930931609123945, + 0.0008605035836808383, + -0.0016799941658973694, + -0.0024318676441907883, + 0.0010636610677465796, + 0.0048761870712041855, + -0.004184798803180456, + -0.0032365438528358936, + -0.00020408497948665172, + -0.0023237462155520916, + 0.0012446101754903793, + 0.0013063143705949187, + 0.0040571680292487144, + 0.002765531186014414, + -0.0006443975726142526, + 0.0023006966803222895, + -0.0017191467341035604, + 0.00361330877058208, + -0.0007457509054802358, + 0.0008227711077779531, + 0.002111631678417325, + 0.0033996072597801685, + 0.0013112380402162671, + 0.000711551692802459, + -0.0019033257849514484, + -0.0021326495334506035, + 0.00117405503988266, + 0.002900591352954507, + -0.003515406046062708, + -0.006801925133913755, + 0.003736034268513322, + -0.0007216582307592034, + 0.001957709202542901, + 0.0009993017883971334, + 0.005713719874620438, + 0.004525411874055862, + 0.0025378018617630005, + 0.0020269942469894886, + -0.0041620079427957535, + 0.00458969920873642, + 0.00028740440029650927, + -0.002102083992213011, + 0.004128541797399521, + -0.019453581422567368, + 0.0020494612399488688, + 0.001131672877818346, + 0.0005088250036351383, + 0.0010010706027969718, + 0.0003128048265352845, + 0.0013784243492409587, + 0.0038490216247737408, + -0.005595898721367121, + -0.0007370034581981599, + 0.0014189014909788966, + -0.0010652353521436453, + -0.0034793426748365164, + -0.0024276776239275932, + -0.00036539501161314547, + 0.0035233383532613516, + -0.0013785040937364101, + 0.0022687301971018314, + 0.00015171205450315028, + 0.0006743119447492063, + -0.0014800875214859843, + -0.0024664734955877066, + 0.004213178995996714, + -0.0023245923221111298, + 0.002647739602252841, + -0.002952242037281394, + 0.0021126295905560255, + 5.280969708110206e-05, + 0.0009815278463065624, + 0.0025206569116562605, + 0.0029116433579474688, + -0.0004189281025901437, + -0.0037121528293937445, + 0.001393793965689838, + 0.0007232356001622975, + -0.001397404819726944, + 0.002792228478938341, + 0.000183429365279153, + 0.002697630086913705, + 0.0003643270756583661, + 0.0017799562774598598, + 0.004469575360417366, + -0.005066158249974251, + 0.002920923288911581, + 0.00018033476953860372, + -0.0007871982525102794, + 0.0014212155947461724, + 0.0008010821766220033, + 0.0013610158348456025, + -0.004056564066559076, + 0.0032266764901578426, + -0.004029758274555206, + -0.0019053355790674686, + -0.0008304105722345412, + 0.006783410906791687, + 0.003052517306059599, + -0.001587691018357873, + -0.001485074171796441, + -0.0023045362904667854, + -0.0008475094218738377, + -0.00048144228640012443, + 0.0015198810724541545, + -0.001246215426363051, + -0.0021888678893446922, + 0.0003576841554604471, + 0.003865326289087534, + 0.00010734156239777803, + 0.0012042943853884935, + -0.00420022988691926, + 0.005049601662904024, + -0.003047885838896036, + -0.0014607515186071396, + 0.002301330678164959, + 0.0015983995981514454, + -0.003006202867254615, + -0.001508904853835702, + 0.0006602522335015237, + 0.004039384424686432, + 0.001403242931701243, + 0.0016656024381518364, + 0.001588265411555767, + 0.0018115942366421223, + 0.0002159122086595744, + 0.003067026613280177, + -0.0008053839555941522, + 0.004051992204040289, + -0.0017970807384699583, + 0.0017619217978790402, + -0.0007982031675055623, + 0.0013919463381171227, + 0.000806692463811487, + 0.0022156848572194576, + -0.0023050708696246147, + 4.237484608893283e-05, + -0.0028732111677527428, + -0.0019478971371427178, + -0.0023657011333853006, + -0.00020169712661299855, + -0.0005289053078740835, + 0.003214498981833458, + -0.006159775424748659, + -0.000820089946500957, + -0.0010425981599837542, + 0.0022529035340994596, + -0.006654496304690838, + 0.0023670452646911144, + -0.0013104875106364489, + 0.004012462217360735, + -0.0025168631691485643, + -0.0010953417513519526, + -0.0009978929301723838, + 0.004486717749387026, + 0.0006064930348657072, + 0.0007057478069327772, + -0.0052406140603125095, + 0.003753472352400422, + -0.00012192753638373688, + 0.0026420436333864927, + 1.12959914986277e-05, + -0.0008370821597054601, + 0.0006953529664315283, + 0.004889146890491247, + -0.005281240679323673, + 0.004693953320384026, + 0.000400265387725085, + -0.0025264518335461617, + 0.0020000694785267115, + -0.005925874225795269, + 0.00781511701643467, + 0.005657360423356295, + -0.0012269857106730342, + 8.62388260429725e-05, + 0.004085003864020109, + 0.0010059498017653823, + -0.00026539782993495464, + 0.0034815995022654533, + -0.0016169637674465775, + -0.002585212467238307, + 0.0025982654187828302, + -0.0021581666078418493, + 0.004391525872051716, + 0.0019821138121187687, + -0.0021361680701375008, + 0.0011171760270372033, + -0.005583810620009899, + -0.0011699734022840858, + -0.0020455801859498024, + -0.001981043489649892, + -0.001973226433619857, + -0.003819367615506053, + -0.0006614357116632164, + 0.00855729728937149, + -0.005542699713259935, + 0.0008797092596068978, + 0.0019435873255133629, + 0.000332189112668857, + 0.00033786281710490584, + -0.0033014665823429823, + -0.002950071357190609, + -0.0008758286712691188, + 0.0022106764372438192, + 0.0055841729044914246, + -0.0014082052512094378, + 0.0006602441426366568, + 0.0018079716246575117, + -0.0036578176077455282, + 0.0006192149594426155, + 0.010562698356807232, + -0.0008606803021393716, + 0.0037171596195548773, + -0.0037845419719815254, + 0.0002049614704446867, + -0.002345074201002717, + -0.004082651808857918, + -0.0011640791781246662, + 0.007545567583292723, + 0.0053120823577046394, + -0.001282504410482943, + -0.001630878308787942, + 0.0017427668208256364, + -0.0017460049130022526, + 0.002741047879680991, + -0.004793864209204912, + 0.0007060025818645954, + 0.0008229826926253736, + 0.0009615427698008716, + 0.007281751371920109, + 0.003557890420779586, + 0.001396836363710463, + -0.0017987015889957547, + -0.003331817453727126, + -0.0057873111218214035, + -0.002184942364692688, + 0.0014234542613849044, + -0.003080040914937854, + 0.002870487980544567, + 0.0009080463787540793, + -0.006944430060684681, + 0.005441370885819197, + 0.0026197130791842937, + -0.0007197036757133901, + 0.0008371103904210031, + 0.0011258661979809403, + -0.0015031901421025395, + -0.001473403419367969, + 0.000788301054853946, + -0.0032830550335347652, + 0.0011845388216897845, + 0.0026070040185004473, + -0.0019501388305798173, + -0.0019017241429537535, + -0.00030664121732115746, + -0.0005880529060959816, + -0.002992580644786358, + -0.007681968156248331, + -0.005760340020060539, + 0.00021059165010228753, + 0.008936162106692791, + 0.9518600702285767, + -0.007967377081513405, + 0.0002698538883123547, + 0.003532528644427657, + 0.0007400891045108438, + 0.0005605267360806465, + 0.0014484382700175047, + -0.011534597724676132, + 0.0025808922946453094, + -0.005069521721452475, + 0.0010253569344058633, + -0.00629880977794528, + -0.004297102801501751, + 0.001367098418995738, + -0.0010186803992837667, + -0.0014276196015998721, + -0.0031618953216820955, + 0.010399549268186092, + 0.0017646297346800566, + -0.0010925462702289224, + -0.00016034669533837587, + -0.00041909312130883336, + -0.005049437750130892, + 0.006369372364133596, + -0.0003406983450986445, + -0.0026400990318506956, + 0.008629804477095604, + 0.00346246431581676, + -0.0020089917816221714, + -0.0018979115411639214, + 0.0018795807845890522, + 0.0004240003472659737, + 0.0014415313489735126, + -0.0002662677434273064, + 0.0023510209284722805, + -0.0009378159302286804, + -0.003685399191454053, + -0.0022510639391839504, + -0.001366108888760209, + -0.003417705185711384, + -0.0002674718853086233, + -0.002761711133643985, + -0.004148392006754875, + 0.0035815818700939417, + 0.0022619529627263546, + 0.00036879690014757216, + 0.0010890092235058546, + -0.002183264121413231, + 0.0020252703689038754, + 0.0007905263337306678, + 0.0032831928692758083, + -0.001814037561416626, + 0.003442599670961499, + 0.0005785341490991414, + 0.002665231004357338, + 0.0028989939019083977, + 0.001702514011412859, + -0.0029590872582048178, + 0.0007287904154509306, + 0.0044014351442456245, + -0.0041851564310491085, + 0.003782431362196803, + -0.0005077983951196074, + -0.00465774443000555, + 0.0004817915614694357, + -0.003647040342912078, + 0.003026981372386217, + 0.008086426183581352, + -0.0006204778328537941, + 0.002837080741301179, + -0.0024037696421146393, + -0.0003451573138590902, + 0.0018118353327736259, + -0.0014753277646377683, + 0.0034572293516248465, + 0.008135009557008743, + 0.0001859945332398638, + -0.0038822703063488007, + 0.00036480269045569, + -0.0013580959057435393, + -0.002210213802754879, + -0.0004313152749091387, + 0.008041488006711006, + 0.00541766919195652, + -0.00259884400293231, + -0.004029565025120974, + 0.0018563034245744348, + 0.0016338546993210912, + -0.005181819200515747, + -0.0017368479166179895, + -0.002116159303113818, + 0.0017932499758899212, + 0.009680304676294327, + 0.001830345019698143, + 0.003396958578377962, + 0.0016329213976860046, + 0.0020161170978099108, + 0.005298843141645193, + -0.00037628511199727654, + 0.00529152387753129, + 0.00011608398199314252, + 0.0032459504436701536, + -0.0027815198991447687, + 0.0004921008949168026, + 0.0026963399723172188, + -0.0022373737301677465, + 0.004038629122078419, + -0.002415635623037815, + -0.0008632948738522828, + 0.0005226845969446003, + -0.003240574151277542, + -0.0036343641113489866, + 0.0017667979700490832, + -0.0011349428677931428, + -0.0012620615307241678, + 0.010701104067265987, + -0.00017825748363975435, + -0.0005720487097278237, + 0.0011526169255375862, + -0.0022850248496979475, + 0.00011383268429199234, + -0.0022380079608410597, + 0.006289605516940355, + 0.0006446252227760851, + -0.00351729616522789, + 0.002198813483119011, + -0.0010342791210860014, + -0.005091979168355465, + -0.002243515569716692, + 0.0005295459413900971, + 0.0037030489183962345, + 0.002014951780438423, + -0.0017983587458729744, + 0.003343678778037429, + -0.0020718243904411793, + -0.0011586457258090377, + -0.0017574684461578727, + -0.009574883617460728, + -0.0052170041017234325, + 0.0023382699582725763, + 0.0005130328354425728, + -0.00047372194239869714, + 0.001254382194019854, + 0.0007341893506236374, + -0.0013743004528805614, + 0.007003146223723888, + -0.00521715497598052, + -0.0039252592250704765, + 0.0011575574753805995, + -0.005536981392651796, + 0.0031999656930565834, + -0.005413850303739309, + 0.005859754979610443, + -0.0006145931547507644, + 0.003041967749595642, + 0.000780033296905458, + 0.00222053867764771, + -0.0005633140681311488, + 0.0053654988296329975, + -0.002144153928384185, + 0.002342167543247342, + -0.00038599432446062565, + -0.002450803527608514, + 0.0007767713395878673, + 0.0019825955387204885, + 0.00032060316880233586, + -0.0014602162409573793, + 0.003613690147176385, + -0.0007397086010314524, + -0.001499886973761022, + 0.005206936504691839, + -0.0021467215847223997, + 0.0035985077265650034, + 0.000917959026992321, + 0.002280611079186201, + 0.0003972478734795004, + 0.006531227380037308, + -0.009404164738953114, + 0.0013181210961192846, + 1.3711068277189042e-05, + 0.0010806783102452755, + -0.0020800495985895395, + -0.0005431770114228129, + 0.0020646266639232635, + 0.0016926743555814028, + 0.00030020554549992085, + -0.0026638712733983994, + 0.004203064367175102, + 0.0029232390224933624, + 0.0038372648414224386, + 0.0023851594887673855, + -0.0011239687446504831, + -0.0001448679977329448, + 0.0008786799153313041, + -0.0006290475721471012, + 0.0008915390353649855, + -0.002041514264419675, + 0.002421767683699727, + 0.0034936140291392803, + 0.004028528928756714, + 0.0016119206557050347, + 0.0017111323541030288, + 0.0006603451911360025, + 0.006307820789515972, + -0.0011117723770439625, + -0.0011903957929462194, + -0.0003854780225083232, + 0.0023219517897814512, + 0.0009362404816783965, + 0.0020204123575240374, + 0.010216670110821724, + -0.0019189558224752545, + -0.002157245296984911, + 8.355286990990862e-05, + -0.006271806545555592, + 0.0010746604530140758, + -0.001190343638882041, + 0.00025897863088175654, + 0.0036509649362415075, + -0.0012542320182546973, + 0.0008914791978895664, + -0.0006350015755742788, + 0.004226417280733585, + -0.0046644085086882114, + 0.006453510839492083, + 0.002520655980333686, + -0.0007217635284177959, + 0.0016521926736459136, + 0.0005360327195376158, + 0.00040149930282495916, + -0.00048153160605579615, + 0.0010678834514692426, + -0.0014809641288593411, + -0.001167433918453753, + -0.002824456663802266, + 0.005042467266321182, + 0.008332912810146809, + 0.000905127264559269, + 0.0059456536546349525, + 0.002942238003015518, + 0.0006867162883281708, + 0.0021966693457216024, + 0.0018513464601710439, + -0.0007876360323280096, + -0.007339824456721544, + -0.0006275105988606811, + -0.0012582701165229082, + -0.0004309017676860094, + -0.00020735739963129163, + 0.002172713400796056, + 0.017560651525855064, + 0.003092222148552537, + 0.0029417385812848806, + 0.0016817825380712748, + 0.00040056175203062594, + 0.007164344657212496, + 0.006630652584135532, + -0.004290786571800709, + 0.0048848409205675125, + 0.006197084207087755, + -0.00017862905224319547, + -0.0009586409432813525, + 0.003535300260409713, + 0.0009541618055664003, + 0.003006312297657132, + -0.003787438850849867, + 0.0018730036681517959, + -0.003297834424301982, + 0.005214037373661995, + -0.001918670954182744, + 0.013286571018397808, + 0.0011513677891343832, + 0.0047866967506706715, + -0.002581514185294509, + -0.0012229967396706343, + -0.0013347927015274763, + -0.001724534435197711, + -0.00055312440963462, + -0.0004684214945882559, + -0.00031358125852420926, + -0.0017258491134271026, + -0.0025019545573741198, + -0.0025845386553555727, + 0.0014577176189050078, + -0.0004256306274328381, + 0.004911360330879688, + -0.0030869401525706053, + 0.00046803211444057524, + 0.0014613516395911574, + -3.39451726176776e-05, + 0.00016993375902529806, + -0.0041330838575959206, + 0.002236042870208621, + -0.0022961434442549944, + 0.0004351474635768682, + -0.0004366327775642276, + 0.016020994633436203, + -0.004394988063722849, + 0.0009648771374486387, + -0.001728231436572969, + 0.0003006079641636461, + -0.004788328427821398, + -0.00026154928491450846, + 0.008748483844101429, + -0.0006436341791413724, + 0.0010887711541727185, + -0.00793329905718565, + 0.0013421212788671255, + -0.00027414405485615134, + 0.0013873243005946279, + 2.9955162972328253e-05, + -0.0013024957152083516, + 0.0002896390506066382, + -0.0017543137073516846, + -0.0008188007632270455, + 0.003358838614076376, + -0.0013688178732991219, + -0.00031609166762791574, + 0.005764122121036053, + 8.429154695477337e-05, + 0.0003544683277141303, + -0.000744153163395822, + -0.0019887054804712534, + -0.0004179747775197029, + -0.00023897351638879627, + 0.0009090828825719655, + -0.0023587248288094997, + -0.0006361912237480283, + -0.001843021484091878, + -4.3707455006369855e-06, + -0.0009152499260380864, + 0.0009481838205829263, + 0.0007353374385274947, + 0.0018540129531174898, + -0.0021889577619731426, + -0.0013360766461119056, + -0.0004390737449284643, + -0.015218994580209255, + -0.0006873274105601013, + 0.013607621192932129, + 0.0017443131655454636, + 0.0013497215695679188, + 0.01815876178443432, + -0.003949678968638182, + 0.003137179184705019, + 0.0013555345358327031, + 0.0009756224462762475, + -0.0034246442373842, + -0.009103923104703426, + -0.0005636390415020287, + -0.00299003510735929, + 0.0001762271422194317, + 0.0003391835780348629, + 0.0017696538707241416, + -0.004310038406401873, + 0.01732061430811882, + -0.002961395075544715, + 0.0011860429076477885, + 0.0035736290737986565, + 0.004345997702330351, + -0.0004568654694594443, + -0.010308670811355114, + -0.0003688544675242156, + -0.00011436844215495512, + -0.00283154658973217, + -0.001101394067518413, + -0.0032464086543768644, + -0.0001799873571144417, + -0.001180425169877708, + -0.0016401236644014716, + -0.0055651855655014515, + -0.003523543942719698, + 0.00010182336700381711, + 0.0033900917042046785, + -0.0021855731029063463, + -0.0043098656460642815, + 0.02593381702899933, + -0.0008750049746595323, + 0.003155793296173215, + -0.0006671130540780723, + -0.0024601691402494907, + 0.001460563507862389, + -0.0020953442435711622, + 0.0005737035535275936, + -0.0007800270686857402, + -0.0003335637447889894, + -0.0018332370091229677, + -0.006879960652440786, + 0.004274625331163406, + 0.00011862516839755699, + 0.0030714257154613733, + 0.0026090776082128286, + -0.004010024946182966, + 0.0012626281240954995, + 0.008975732140243053, + -0.002568480558693409, + -0.004239230416715145, + 0.0012084083864465356, + 0.0003249055880587548, + -0.00028928701067343354, + 0.0007322699530050159, + 0.003138274885714054, + -0.0035422539804130793, + 0.008683344349265099, + -0.0010889621917158365, + -0.006890357006341219, + 0.0018985762726515532, + -0.006282668560743332, + 0.002700929529964924, + 0.0003427511837799102, + 0.004065562505275011, + -0.00024296666379086673, + 0.0006090198876336217, + 0.001103876275010407, + 0.0004948722780682147, + 0.0016642308328300714, + 0.0024127084761857986, + 0.0031396844424307346, + 0.004706465173512697, + -0.0013170340098440647, + -0.002328460570424795, + 0.0003475838457234204, + 0.0011850630398839712, + -0.003989839926362038, + -0.0012204942759126425, + -0.0001291806111112237, + 0.0025724866427481174, + 0.0002527161850593984, + -0.0007462023058906198, + 0.0034121419303119183, + -0.002871468896046281, + -0.004225808661431074, + -0.00038323921035043895, + 0.0024384032003581524, + -0.0011629014043137431, + -0.002719858894124627, + -0.005094803869724274, + -0.00276354793459177, + -0.0010275811655446887, + -7.100484071997926e-05, + 0.00509139709174633, + -0.0006329574389383197, + -0.0006620755302719772, + -0.0013857628218829632, + 0.0015017905971035361, + -0.0016410336829721928, + 0.006252276245504618, + -0.004252303391695023, + 0.00203617662191391, + 0.0004244122246745974, + -0.0007137993234209716, + 0.0033828846644610167, + 0.00024533135001547635, + -0.0021405615843832493, + 0.004948862362653017, + -0.0024995915591716766, + -0.003671325510367751, + -0.0017084459541365504, + 0.009227161295711994, + 0.002151091117411852, + -0.0021625016815960407, + 0.0007295044488273561, + 0.0019058636389672756, + 0.0011326343519613147, + 0.0037640260998159647, + -0.0008943001157604158, + 0.0012257209746167064, + 0.00020840519573539495, + -0.001459666877053678, + -0.0025432920083403587, + -0.007119966670870781, + -0.006584368646144867, + -0.0035506589338183403, + 0.0054418654181063175, + -0.0035761415492743254, + 0.0021623249631375074, + -0.009378664195537567, + -0.0018682684749364853, + -0.0005837058997713029, + -0.016989365220069885, + 0.0014586185570806265, + 0.008312596008181572, + 0.0003247829736210406, + 0.0010959991486743093, + 0.002207966288551688, + -0.0010513762244954705, + 0.0003336118534207344, + -0.0024485646281391382, + -0.0016474174335598946, + -0.0025466540828347206, + -0.00035402365028858185, + 0.0038333453703671694, + -0.0008536532986909151, + 0.019073691219091415, + -0.00015622380306012928, + 0.00179109547752887, + -0.003428858006373048, + -0.005862257443368435, + 0.0004917982732877135, + -0.0025685089640319347, + 0.0001633132778806612, + -0.0006422743899747729, + 0.002750757150352001, + 0.003533853916451335, + 0.006242494564503431, + 0.00231528258882463, + 0.008041664958000183, + 0.0002667366643436253, + 0.0038974888157099485, + 0.006087309215217829, + -0.0026087379083037376, + 0.001626798533834517, + 0.0026880705263465643, + 0.004945921245962381, + -0.002742890967056155, + -0.00438763527199626, + 0.0002173819375457242, + -0.0022850860841572285, + -9.632341971155256e-05, + -0.0033344822004437447, + -0.0002710557309910655, + -0.002144565572962165, + -0.003413192927837372, + 0.0006324778078123927, + 0.004863261710852385, + 0.0028961768839508295, + 0.003392126876860857, + 3.776676021516323e-05, + 0.007397262379527092, + 7.937150803627446e-05, + -0.0029173458460718393, + 0.0007141550886444747, + 0.003475338453426957, + -0.003154573030769825, + -0.007023513317108154, + 0.0012311203172430396, + -0.0005307006067596376, + 0.005181123036891222, + 0.0002489265170879662, + -0.008963756263256073, + -0.0014177387347444892, + -0.005642500706017017, + 0.003241938538849354, + 0.004353647120296955, + -0.0006202724762260914, + 0.0006344585563056171, + -0.0042084152810275555, + -0.003442879766225815, + 0.0016479991609230638, + 0.0005340080824680626, + -0.0019397161668166518, + -0.00081036047777161, + 0.0004355144046712667, + -0.003903423435986042, + -0.0010889072436839342, + 0.0019129457650706172, + 0.007002888713032007, + 0.007860912941396236, + 0.0009203568915836513, + 0.00046116908197291195, + 0.00028306854073889554, + -2.3231727027450688e-05, + -0.002099775243550539, + 0.001128405099734664, + -0.0001026381432893686, + -0.005479441024363041, + -0.0002049088361673057, + -0.003988776821643114, + -0.0012159215984866023, + 0.002207476645708084, + -0.00517513370141387, + 0.0019179931841790676, + 0.0031581574585288763, + -0.0005330320564098656, + 0.002074263757094741, + 0.0048326910473406315, + -0.002670250367373228, + -9.720874913909938e-06, + 0.005925500299781561, + -0.0009809829061850905, + -0.0014522492419928312, + -0.005707371048629284, + -0.003618633607402444, + -0.0019384967163205147, + 0.00017515444778837264, + 0.0009808639297261834, + 0.0014556447276845574, + 0.0011280480539426208, + -0.0019113108282908797, + 0.0032829686533659697, + 0.0014919083332642913, + 0.001500860322266817, + 0.004342549480497837, + -0.0014568144688382745, + -0.0004721899167634547, + -0.00029882637318223715, + -0.0018551390385255218, + 0.0018596772570163012, + 0.0009077711147256196, + -0.0011022977996617556, + -0.006047553848475218, + -0.00810974184423685, + -0.002488143974915147, + 0.0016271930653601885, + 0.0029342686757445335, + 0.0002909576869569719, + -0.0017855295445770025, + -0.002078407909721136, + -0.004995801020413637, + 1.081418577086879e-05, + -0.006552234757691622, + 5.2607192628784105e-05, + 0.00033225963125005364, + -0.005694311577826738, + -0.0014157375553622842, + 0.0007259637350216508, + -0.002961427439004183, + 0.0023172420915216208, + -0.0003678274224512279, + -0.001908801612444222, + -0.006124164443463087, + 0.003002300625666976, + -0.0015806097071617842, + -0.007224962115287781, + 0.0016693087527528405, + 0.002715901704505086, + 0.0011760032502934337, + 0.0008317088359035552, + 6.606456736335531e-05, + 0.004340067505836487, + -0.0043922602199018, + 0.006282195448875427, + 0.0013760110596194863, + 0.0013019584584981203, + -0.004923584870994091, + -0.002588398987427354, + -0.0011308268876746297, + 0.0018164843786507845, + -0.00430887658149004, + 0.0020548386964946985, + -0.006159237585961819, + -0.0045525506138801575, + 0.00040150454151444137, + 0.0016212366754189134, + 0.0009064725018106401, + 0.00013898126780986786, + -0.0029687604401260614, + -0.0013576505007222295, + -0.0015874278033152223, + -0.001659074448980391, + 0.0015186126111075282, + -0.00173609284684062, + 0.0018174552824348211, + 0.002060555387288332, + 0.0011573319789022207, + -0.0018289503641426563, + -0.0001975887716980651, + -0.003355284221470356, + 0.00172463059425354, + 0.0016135479090735316, + 0.0037903152406215668, + -0.002947094151750207, + 0.0038093426264822483, + 0.0006363657303154469, + -5.803988460684195e-05, + -0.005294156260788441, + 0.0018458062550053, + 0.001347939483821392, + 0.005793483462184668, + 0.0024142954498529434, + -0.0028836755082011223, + 0.0005371739971451461, + -0.00252068554982543, + -0.003463010536506772, + 0.005172275006771088, + 0.0007112917955964804, + 0.0033532758243381977, + 0.0007368539227172732, + -0.0007084732060320675, + 0.010026374831795692, + -0.007796655409038067, + 0.0024379908572882414, + 0.00010473697329871356, + -0.0016584943514317274, + -0.007438374683260918, + -0.0015441167633980513, + -0.00859134178608656, + 0.003828671295195818, + 0.0058201877400279045, + -6.979396130191162e-05, + 0.0010420922189950943, + 0.0006806259625591338, + -0.0028700793627649546, + -0.0015931816305965185, + 0.00021174152789171785, + 0.0017340395133942366, + -0.00041402471833862364, + 0.001297266804613173, + -0.000559978827368468, + 0.002071673981845379, + 0.010386314243078232, + 0.00021752195607405156, + -0.003633783897385001, + 0.004794358741492033, + 0.00016992274322547019, + -0.0015459569403901696, + -0.005664503201842308, + 0.005363884847611189, + 0.00356119847856462, + -0.0005115100066177547, + 0.012580416165292263, + 0.0006124901119619608, + 0.0005341236246749759, + -0.005583739373832941, + -0.0014991308562457561, + -0.00462649529799819, + 0.0017179151764139533, + -0.0006451875087805092, + 0.0005213773110881448, + -0.0004989368026144803, + -0.0026988196186721325, + 0.004185864701867104, + -0.002767715370282531, + -0.0026821489445865154, + 0.013341335579752922, + -0.001285020844079554, + 0.0035046767443418503, + -0.003668280318379402, + 0.0029794040601700544, + 0.001281127566471696, + -0.0011049644090235233, + 0.004809306003153324, + -0.0008019786328077316, + -0.002302996115759015, + 0.02892576903104782, + 0.00315524498000741, + 0.0018469988135620952, + -0.0018290168372914195, + -0.0032303216867148876, + 0.003344613825902343, + -0.003264613216742873, + 0.003803561208769679, + 0.0013725771568715572, + -0.0017575810197740793, + 0.0040506161749362946, + 0.003316243179142475, + 0.0035015742760151625, + -0.0032998421229422092, + -0.0059938314370810986, + -0.0024109859950840473, + -0.0031285863369703293, + -0.0021093604154884815, + -0.0014491311740130186, + 0.0008328288095071912, + -5.4002161050448194e-05, + 0.0019969935528934, + -0.0063918898813426495, + -0.005329374689608812, + 0.002071456052362919, + -0.012427357025444508, + -0.003419670043513179, + -0.0026826162356883287, + 0.000599029881414026, + -0.000954122340772301, + 0.001989036798477173, + -0.0006252634921111166, + -3.458875653450377e-05, + -0.001282855635508895, + -0.00026675622211769223, + 0.0010177675867453218, + 0.0002595435653347522, + -0.000916238350328058, + 0.0012198061449453235, + 7.285916217369959e-05, + 0.0023044862318784, + 0.0034926666412502527, + 0.003554623108357191, + -0.001961599802598357, + 0.0023107349406927824, + 0.00010495776950847358, + 0.00046730675967410207, + 0.0043611908331513405, + 0.0005410485900938511, + -0.001193513162434101, + 0.001714681857265532, + 0.0009419610141776502, + -0.002063005231320858, + 0.0011362072546035051, + 0.0021199905313551426, + 0.0008595346007496119, + 0.000574444595258683, + -0.013310037553310394, + -0.006616844795644283, + 0.00018256233306601644, + -7.032124267425388e-05, + -0.0007488132687285542, + -0.0002675055293366313, + -0.0003669657453428954, + -0.003395130392163992, + -0.00021774078777525574, + 6.768609455320984e-05, + -0.0004860076878685504, + 0.005381926894187927, + 0.008552107959985733, + -0.010883498005568981, + 0.004376036114990711, + 0.0019905525259673595, + 7.270507921930403e-05, + -0.0013026973465457559, + 0.002217309782281518, + 0.001714020618237555, + 0.000893835152965039, + -0.0012019422138109803, + 4.4933814933756366e-05, + 0.006667428184300661, + -0.0005966480239294469, + -0.0006505827186629176, + 0.001111465273424983, + 0.0017395432805642486, + -0.001411370118148625, + -0.003062234725803137, + -0.0027908156625926495, + 0.000983238103799522, + -0.0005093473009765148, + -0.010106357745826244, + -0.006131328642368317, + -0.0014930898323655128, + -0.003228029003366828, + 0.0011782767251133919, + -0.002359624020755291, + -0.0012699248036369681, + -0.0013260600389912724, + -0.0017920610262081027, + -0.000863615598063916, + -0.0007357613067142665, + -0.0019761568401008844, + 0.00047583653940819204, + 0.0007008990505710244, + -0.0009517165017314255, + -0.0009866576874628663, + 0.006593070924282074, + -0.0016090741846710443, + -0.0012387032620608807, + 0.003003465011715889, + 0.003482277737930417, + -0.0027097598649561405, + -0.0009966085199266672, + -0.0017042262479662895, + 0.0007156515493988991, + 0.002637354424223304, + -0.00010051378194475546, + -0.0014241685857996345, + -0.0008106784080155194, + 0.0015292521566152573, + 0.0018510466907173395, + -0.003989668097347021, + -0.0009195755701512098, + -0.0012038737768307328, + 0.0005402061506174505, + 0.0003900452866218984, + 0.0025711313355714083, + 0.00259441533125937, + 0.00056088698329404, + 0.000997429946437478, + 0.0008709091925993562, + -0.001627452438697219, + -0.003817361779510975, + -0.0007089494611136615, + -0.002275218488648534, + -0.0037086326628923416, + 0.002706370549276471, + -0.0005201395833864808, + -0.0020129610784351826, + 0.004142965190112591, + 0.0014296630397439003, + -0.002089975867420435, + 0.002620450919494033, + -0.0026826434768736362, + -0.0018116087885573506, + -0.0031718360260128975, + -0.0008916990482248366, + 0.0020868568681180477, + -0.0036882306449115276, + 0.000150235733599402, + 0.003439977765083313, + 0.010560613125562668, + 0.008413962088525295, + 0.00335459946654737, + -0.003694083308801055, + 0.0018196484306827188, + -0.003643993055447936, + -0.001617400092072785, + 0.0013214065693318844, + 0.006904562469571829, + -0.004333958961069584, + 0.0016123444074764848, + 0.0016778848366811872, + 0.0023733016569167376, + 0.0012896619737148285, + 0.0015158408787101507, + 0.001074420171789825, + -0.0010700488928705454, + -0.0001580936077516526, + -0.007108711637556553, + -0.0013752559898421168, + 0.00047294978867284954, + -0.004527301527559757, + 0.00013369778753258288, + -0.003136174287647009, + -0.0027787175495177507, + -0.0015614114236086607, + -0.0009180770139209926, + -0.009463799186050892, + 0.0005666063516400754, + 0.0006470247753895819, + 0.0017944690771400928, + -0.002372284419834614, + -0.0056014470756053925, + -0.00195836229249835, + -0.0004914546152576804, + -0.000473552179755643, + -0.001373883686028421, + -0.0009522590553388, + 0.0012493898393586278, + 0.001630252692848444, + 0.0008474162314087152, + 0.0034823354799300432, + -0.001089487923309207, + 0.0017416137270629406, + 0.0016853875713422894, + 0.003214422380551696, + -0.004209758713841438, + 0.0018158728489652276, + -0.0012235647300258279, + -0.0023138471879065037, + -0.001767052453942597, + -0.0018979202723130584, + 0.003064686432480812, + -0.005118532106280327, + 0.0028804754838347435, + -0.0013403341872617602, + -0.0007036452880129218, + -0.002493449952453375, + -0.004553401842713356, + 0.00045339082134887576, + 0.0003756555961444974, + -0.0009990097023546696, + -0.0004654486256185919, + -0.0009253551252186298, + 0.0027031709905713797, + -0.0037661129608750343, + 0.0012556046713143587, + 5.5628719564992934e-05, + -0.0014075067592784762, + 0.00042360613588243723, + 0.00046917813597247005, + -0.00040744326543062925, + -0.0010820850729942322, + 0.0005487038288265467, + 0.0008673854754306376, + 0.002382606500759721, + -0.004255163017660379, + 0.0006584823131561279, + -0.0015406854217872024, + 0.004148718900978565, + -0.00023680299636907876, + 0.0059772664681077, + 0.0016975285252556205, + 0.002385322703048587, + 0.004220820032060146, + 0.011243125423789024, + 0.002201557159423828, + 0.0002428293664706871, + 0.0013043693033978343, + -0.0035829052794724703, + 0.004082595929503441, + -0.002562676789239049, + 0.0014985542511567473, + 0.00345995812676847, + 0.007801206316798925, + 0.0009772524936124682, + -0.001339902519248426, + 0.005475161597132683, + -0.0010830073151737452, + -0.0037485824432224035, + 0.0009275380871258676, + -0.006551725789904594, + -0.00033944036113098264, + 0.002785835415124893, + -0.002387196058407426, + -0.003829758148640394, + -0.005446509458124638, + -0.0020781622733920813, + -0.010112286545336246, + -0.0009808867471292615, + 0.0030550542287528515, + 0.0014904860872775316, + -0.0016793522518128157, + -0.0006315678474493325, + -0.0013967882841825485, + -0.0035980732645839453, + 0.002461147727444768, + 0.005224099848419428, + 0.0012859685812145472, + 0.007582665886729956, + -0.0008882607216946781, + 0.0008023575064726174, + -0.001206620829179883, + 0.004249785095453262, + -0.005744663532823324, + -0.003238366451114416, + 0.0020720025058835745, + -0.003473114687949419, + 0.002553496742621064, + 0.00012440717546269298, + 0.0008281374466605484, + 0.0036746147088706493, + -0.0003883018216583878, + -0.0010257044341415167, + -0.0021434456575661898, + -0.002701705787330866, + -0.002747930819168687, + -0.003975396044552326, + 0.0019167140126228333, + 0.0003967544180341065, + 0.0008827387355268002, + 0.002360388869419694, + -0.0021238585468381643, + 0.0009644604870118201, + -0.0009811969939619303, + 0.0022075804881751537, + 0.0011332291178405285, + 0.001126413932070136, + -0.0034951581619679928, + -0.0012047946220263839, + -0.006007927469909191, + -0.0012001540744677186, + 1.2617300853889901e-05, + 0.0070961350575089455, + 0.0015041842125356197, + -0.0013289031339809299, + 0.0003320926334708929, + 0.003141802502796054, + 0.0023684592451900244, + 0.000476104294648394, + 0.0012937466381117702, + 0.0034474502317607403, + -0.010357623919844627, + 6.424717139452696e-05, + -0.004443921148777008, + 0.004312959965318441, + -0.006481715478003025, + -0.01176887284964323, + -0.002521372865885496, + -0.0006673589232377708, + 0.0015785733703523874, + 0.0021419147960841656, + 7.534634642070159e-05, + 0.001601055613718927, + 0.0011081610573455691, + 0.003763043088838458, + -0.001508598681539297, + 0.0023829571437090635, + 0.0018841815181076527, + -0.003583477344363928, + -0.004373115953058004, + 0.001544062397442758, + 0.0002761291398201138, + 0.0013367229839786887, + 0.0003079755406361073, + -0.004243916366249323, + -0.0014601349830627441, + 0.0011460378300398588, + 0.005377802532166243, + 0.0007119416841305792, + -0.0014418205246329308, + 0.007520301267504692, + 0.0021284413523972034, + 0.0016950679710134864, + -0.002398899756371975, + -0.0037191915325820446, + 0.0019170240266248584, + -0.0017036845674738288, + -0.0029413197189569473, + -0.0014466888969764113, + 0.006469324696809053, + -0.0008431263850070536, + 0.0007381531759165227, + -0.004670760594308376, + 0.0003646659606602043, + -0.0023037767969071865, + -0.0002621808380354196, + -0.004140140023082495, + -0.0017787583637982607, + 0.004098083358258009, + -0.0028784056194126606, + 0.00019517076725605875, + 6.384227162925526e-05, + -0.001385321607813239, + -0.00028169815777800977, + 0.00040002912282943726, + -0.0023219729773700237, + -0.0009833661606535316, + -0.0006885712500661612, + 0.0006787381717003882, + 0.0012749799061566591, + -0.002801491180434823, + 0.0017850619042292237, + 0.0058092521503567696, + -0.0003216848417650908, + -0.002423491096124053, + 0.0025183535180985928, + 0.003295395988970995, + 0.0022573103196918964, + 0.0015346606960520148, + -0.0004539505171123892, + -0.0006865579634904861, + -0.011777578853070736, + 0.0002446956350468099, + 0.00585670443251729, + 0.0008334031444974244, + -0.00033873438951559365, + -0.002390095731243491, + 0.001421879744157195, + 0.003059955080971122, + -0.00033099722350016236, + 0.0003620610514190048, + 9.070565283764154e-05, + 0.0010558079229667783, + -0.00022206192079465836, + 0.0023404951207339764, + -0.0020667631179094315, + -0.0009585696388967335, + -0.0009926649508997798, + -0.0029919652733951807, + 0.0007382908370345831, + 0.0005966250319033861, + -0.0010263684671372175, + 0.0031461683101952076, + -0.0017552338540554047, + -0.001949214725755155, + -0.00235132803209126, + 0.0010076874168589711, + 2.415713061054703e-05, + -0.00032705379999242723, + -0.0070750052109360695, + -0.004058815538883209, + 0.0017172893276438117, + -0.002793148858472705, + 0.0037903827615082264, + 3.2196203392231837e-07, + 0.0032306970097124577, + -0.0004987965221516788, + -0.0009466990013606846, + -0.001310184714384377, + -0.0002543315931688994, + 0.003934222739189863, + 0.0024515092372894287, + 0.0034142055083066225, + 0.011135624721646309, + 0.0010541609954088926, + -0.0021937016863375902, + 0.0027505457401275635, + 0.007040792610496283, + 0.0007006197120063007, + -0.00010268490586895496, + -0.0013417873997241259, + -0.0037086543161422014, + 0.0067512281239032745, + 0.0019594619516283274, + 0.00031436746940016747, + -0.002267993288114667, + -0.000663459999486804, + 0.0025333096273243427, + -0.010002119466662407, + -0.0023583201691508293, + -0.0045255571603775024, + -9.494091500528157e-05, + 0.0037294351495802402, + 0.0006265860283747315, + 0.001148578361608088, + -0.000821702997200191, + -0.0035174035001546144, + 0.0008089190232567489, + 0.005982778500765562, + -0.0013712975196540356, + 0.0032887274865061045, + 0.0028422477189451456, + -0.0027099044527858496, + -0.001129415351897478, + -0.0017596421530470252, + -0.0019490835256874561, + 0.0012090186355635524, + -0.001373650273308158, + -0.017338750883936882, + -0.001841355231590569, + 0.0018750396557152271, + -0.0025943440850824118, + 0.00050922209629789, + -0.0006049657822586596, + 0.0014387016417458653, + 0.0022800632286816835, + 0.003725367831066251, + -0.0038507876452058554, + -0.0019224878633394837, + -0.001802824204787612, + -0.0034463005140423775, + -0.00231001665815711, + -0.0032213691156357527, + -8.732682908885181e-05, + 0.0027366841677576303, + 0.0018964307382702827, + -0.002419308526441455, + 0.004350788425654173, + 0.0015512401005253196, + -0.0009738141670823097, + -0.0032541288528591394, + 0.0012366892769932747, + -0.01097965706139803, + -0.0015625610249117017, + 0.0034207080025225878, + -0.000287954491795972, + 0.0039017396047711372, + 0.0016378335421904922, + 0.0005878563388250768, + -0.01179607305675745, + -0.0004712711670435965, + 0.002420797711238265, + -0.00030148131190799177, + -0.002202205127105117, + -0.001359331770800054, + 0.0006954109994694591, + -0.0023768357932567596, + 0.00022647625883109868, + 0.0017422849778085947, + 0.0007153923506848514, + -0.0007296748226508498, + 0.0016975735779851675, + -0.0010373856639489532, + 0.0016650570323690772, + -0.0017507318407297134, + -0.005919662304222584, + -0.0022860830649733543, + -0.0038850295823067427, + 0.00029787758830934763, + 0.00011230201926082373, + 0.0012533435365185142, + -0.003126440802589059, + -0.0005808738060295582, + 0.0018097899155691266, + 0.000820177374407649, + -0.0015753409825265408, + 0.0017015138873830438, + 0.006454426795244217, + 0.0014073696220293641, + -0.0005312944995239377, + -0.0042017861269414425, + 0.0028493900317698717, + -0.002631009090691805, + -0.0021530846133828163, + 0.003662313101813197, + -0.0016851734835654497, + -0.0024632751010358334, + -0.0008193220710381866, + 0.001902397838421166, + -0.001083074719645083, + 0.002130467677488923, + -0.004135000053793192, + -0.005441499873995781, + -0.005589908920228481, + 0.00242221774533391, + 0.00048510084161534905, + -0.007097315043210983, + -0.0030723882373422384, + -0.0015566666843369603, + -0.0009218043996952474, + 0.0009271114831790328, + 0.0026850251015275717, + 0.0036805698182433844, + -0.002898376202210784, + -0.001124522415921092, + 0.0037078482564538717, + -3.869033753289841e-05, + -0.001025591278448701, + -0.001621999777853489, + 0.0013927152613177896, + -0.0003225631080567837, + -0.0016333399107679725, + -0.003600558964535594, + 2.491091981937643e-05, + 0.000471225765068084, + -0.0025770256761461496, + -0.0022288162726908922, + 0.0018566148355603218, + -0.0023640948347747326, + -0.0019749621860682964, + -0.0033521566074341536, + -0.007877643220126629, + 0.00029831024585291743, + 0.005146942101418972, + 0.003151361597701907, + 0.002016696846112609, + -0.0026520907413214445, + 0.0016039008041843772, + 0.0030445153824985027, + 0.002924920991063118, + -0.0018436472164466977, + 0.0006422502920031548, + -0.0015232955338433385, + 0.0004181498952675611, + 0.006243288982659578, + 0.011535493656992912, + 0.0018468174384906888, + 0.00010331709927413613, + 0.002891656942665577, + 0.005122445989400148, + 0.0049445126205682755, + -0.0012477191630750895, + -0.0018824816215783358, + -0.0012132555712014437, + 0.00010911066055996343, + -0.0003999889304395765, + 0.0014214947586879134, + -0.0059828925877809525, + -0.0030806241557002068, + 0.0005666668876074255, + -0.018456898629665375, + -0.0003082089824602008, + -0.00019537139451131225, + 0.001922690775245428, + -0.0016689137555658817, + -0.002074823947623372, + -0.002937627723440528, + -0.0026456087362021208, + -0.0015186554519459605, + 0.0029729362577199936, + -0.0016721250722184777, + 0.0004674599622376263, + -0.00657931761816144, + 0.005016455426812172, + 0.0018358391243964434, + 0.004595204256474972, + -0.0037508904933929443, + -0.002171493135392666, + 0.00672004371881485, + 0.0007512231240980327, + -0.00218679616227746, + 0.005397013388574123, + 0.00036123479367233813, + 0.008582036942243576, + 0.0020866154227405787, + 0.0018670414574444294, + -0.004242606461048126, + -0.002261563204228878, + -0.00026851141592487693, + -0.002405120525509119, + 0.001059517846442759, + -0.012779570184648037, + 0.002337429206818342, + -0.0027424199506640434, + 0.002879600739106536, + 0.0018759726081043482, + 0.0004883852088823915, + -0.005577652249485254, + 0.0005791930016130209, + 0.002519167959690094, + -0.004994294606149197, + 0.003261740319430828, + -0.003330047708004713, + 0.0006308545707724988, + 0.0018976728897541761, + 0.0024501311127096415, + 0.0012822685530409217, + -0.006164974998682737, + 0.0013591836905106902, + -0.007172246929258108, + -0.0010708547197282314, + -0.0035414977464824915, + -0.0067240092903375626, + 0.005299391224980354, + -0.006096008233726025, + 0.0006844026502221823, + 0.0016506104730069637, + 0.005985885392874479, + -0.0036626593209803104, + 0.0030113442335277796, + -0.001265802071429789, + 0.001672523096203804, + 0.0005519466940313578, + 0.001371649676002562, + -0.009280629456043243, + -0.0018781187245622277, + 0.0008054710342548788, + -0.0004140651144552976, + -0.001821944722905755, + 0.0014665747294202447, + -0.012288081459701061, + -0.004877154715359211, + -0.0011514805955812335, + 0.0029768801759928465, + -0.006665587890893221, + -3.078328154515475e-05, + -0.002787385368719697, + 0.0012878243578597903, + 8.740019256947562e-05, + 0.0015955825801938772, + 0.0013283563312143087, + -0.0009630875429138541, + 0.0034589972347021103, + 0.00037572483415715396, + 0.0020670131780207157, + 0.0036423257552087307, + 5.187898568692617e-05, + 0.0017724746139720082, + -0.0012625273084267974, + -0.002962233033031225, + -0.0002690985566005111, + 0.002041136147454381, + -0.001233367482200265, + 0.0016821591416373849, + 0.003923051059246063, + 0.01674005202949047, + 0.0022462501656264067, + 0.002274054568260908, + -6.786087760701776e-05, + 0.0009646897669881582, + 0.0006886683986522257, + 0.0002922005660366267, + -0.0028117368929088116, + 0.003657223889604211, + -0.0015561261679977179, + -0.0015525175258517265, + -0.0018889642087742686, + -0.001515520503744483, + 0.00043524152715690434, + -0.0014854588080197573, + 0.0012778847012668848, + 0.005522755440324545, + 3.622402346081799e-06, + -0.0016447645612061024, + 0.011116120964288712, + -0.007468606345355511, + 0.005525906570255756, + -0.0011242845794185996, + 0.0025303028523921967, + 0.00419299490749836, + -0.0005887860897928476, + 0.0028866573702543974, + -0.0021277328487485647, + -0.0007677401881664991, + 0.0014713421696797013, + -0.001082945498637855, + -0.0012110796524211764, + 0.005407507997006178, + 0.002487495541572571, + -0.0001961331145139411, + -0.0013990701409056783, + -0.0008241017931140959, + -0.0015375096118077636, + 0.002216748194769025, + -0.0005331916618160903, + -0.001678735134191811, + -0.004712034482508898, + 0.00219313008710742, + -0.004140669479966164, + -0.0009231102303601801, + -0.0022955278400331736, + 0.00012993351265322417, + 0.002382049337029457, + -0.0017993031069636345, + -0.005287372972816229, + 0.0026719430461525917, + -0.0016050898702815175, + -8.490440814057365e-05, + 7.26348371244967e-05, + 0.003164634108543396, + 0.0029991287738084793, + -0.0030529284849762917, + 0.00037608889397233725, + -0.00985502265393734, + -0.0009053547983057797, + 0.001484124455600977, + 0.0016242173733189702, + 0.005157394800335169, + -0.0023737731389701366, + -0.002216012217104435, + -0.003400836605578661, + -0.0025747206527739763, + -0.0028950462583452463, + -0.00403939513489604, + -0.0023094487842172384, + -0.0030222442001104355, + -0.0002867249131668359, + -0.002138337353244424, + -0.001031333114951849, + -0.0010162470862269402, + -0.0011752708815038204, + -0.003156095277518034, + 0.0015566240763291717, + -0.01346044335514307, + -0.0012643493246287107, + 0.003179632592946291, + -0.004306907299906015, + -0.004641177132725716, + 0.00030473442166112363, + 0.002306821756064892, + -0.011176254600286484, + -0.001798767945729196, + 0.001800174475647509, + 0.005264374427497387, + 0.0035096502397209406, + -0.0023329993709921837, + -0.0006781982956454158, + 0.0017129610059782863, + 0.0001502068480476737, + 0.005305295344442129, + 0.0009372109780088067, + 0.0017942882841452956, + -0.0009354362264275551, + -0.002860819222405553, + -0.00028105537057854235, + -0.0003146803064737469, + 0.002043125918135047, + -0.0033099213615059853, + -0.0011287776287645102, + -0.003347943536937237, + -0.003575031878426671, + -0.0002641540195327252, + -0.008657224476337433, + 0.0029474333859980106, + -0.009100512601435184, + 0.0034406299237161875, + 0.002372611314058304, + 0.0018873903900384903, + -0.0035664828028529882, + 0.0020137205719947815, + 0.00010068147821584716, + 0.0025749984197318554, + 0.0013499605702236295, + -0.007954505272209644, + -0.004376924596726894, + -0.0025243086274713278, + -0.0008058730163611472, + -0.00033585866913199425, + -0.002105666557326913, + -0.0012945564230903983, + -0.012444055639207363, + 0.0007359000155702233, + 8.157870615832508e-05, + -0.0011365821119397879, + -0.005002330057322979, + -0.00216884003020823, + -0.0004787752404808998, + -0.0036565649788826704, + -6.919540464878082e-05, + -0.0010724832536652684, + 0.0007929364801384509, + -0.00312489434145391, + -0.0036650989204645157, + -0.0013834531418979168, + -0.0010807598009705544, + 0.0010637004161253572, + -0.0004637155798263848, + 0.002318493090569973, + 0.0021846950985491276, + 0.003625714685767889, + -0.0023381474893540144, + 0.0013724658638238907, + -0.001135662547312677, + 0.0030016927048563957, + -0.00023477546346839517, + 0.0012067026691511273, + 0.0022374452091753483, + -0.0013636020012199879, + 0.001075537409633398, + -0.0003078010631725192, + -0.0024707389529794455, + 6.930378003744408e-05, + 0.003429240081459284, + 0.0032026811968535185, + 0.00027426911401562393, + -0.006706847809255123, + 0.004122608806937933, + 0.005645988509058952, + -0.0026345106307417154, + 0.0005934752989560366, + 0.0022096997126936913, + 0.010851167142391205, + -0.0018720892257988453, + -0.004575476050376892, + -0.0005349430139176548, + 0.0013087695697322488, + 0.005755115300416946, + -0.0019539811182767153, + 0.005708896089345217, + -0.002423109021037817, + -0.005595939699560404, + -0.003970229532569647, + 0.015205951407551765, + 0.0005440410459414124, + 0.003591465763747692, + 0.0011986164608970284, + 0.03266875073313713, + -0.010078509338200092, + -0.0031094588339328766, + 0.003919896204024553, + 0.0022176052443683147, + -0.0009177226456813514, + -0.0017593922093510628, + 0.00515576871111989, + 0.00219367234967649, + -0.0011402132222428918, + -0.010647011920809746, + -0.0011700449977070093, + 0.001228707144036889, + 0.0017257131403312087, + -0.002662015613168478, + -0.001678770175203681, + 0.00015062758757267147, + 0.009701376780867577, + 4.531824015430175e-05, + -0.01105133630335331, + 0.0022875999566167593, + -1.5002985492174048e-05, + 0.005825025029480457, + 0.002590640215203166, + 0.003027453552931547, + -0.0018829077016562223, + -0.0016355103580281138, + 0.0023635162506252527, + 0.004637430887669325, + -0.004887868650257587, + 0.0012444903841242194, + -3.117675078101456e-05, + 0.0007977246423251927, + 0.0005457952502183616, + -0.0005071258055977523, + 0.0008411434246227145, + -5.811494338558987e-05, + -0.0005283826030790806, + -0.0007226880989037454, + -0.011639321222901344, + 0.003154237987473607, + 0.0004889364936389029, + -4.572507168632001e-05, + 0.0012522826436907053, + -0.000745754165109247, + 0.00191714137326926, + 0.003949170000851154, + -0.0027461880818009377, + 0.0034225191920995712, + -0.002367190318182111, + 0.0005048687453381717, + -5.5673801398370415e-05, + -0.0035319686867296696, + -0.00042293412843719125, + 0.0027756683994084597, + 0.0017654395196586847, + -0.0021751155145466328, + -0.00020513846538960934, + 0.0010194393107667565, + -0.0019820276647806168, + -7.08516818122007e-05, + 0.002012982964515686, + 0.00012956753198523074, + 0.002750093350186944, + 0.0016041656490415335, + -0.0014550392515957355, + 0.0035162176936864853, + -0.0010788841173052788, + -0.0007341327727772295, + -0.0014653559774160385, + -0.0027528698556125164, + -0.00029006507247686386, + -3.872842717100866e-05, + -0.022866256535053253, + -0.0006194639136083424, + 0.004383861552923918, + 0.001955540617927909, + -0.0012457221746444702, + -0.0007354829576797783, + 0.005699027329683304, + 0.000873347045853734, + -0.00013611625763587654, + 0.0036161046009510756, + -0.002188247162848711, + 0.0020126441959291697, + 0.0031146619003266096, + -0.0021931177470833063, + -0.0006723538390360773, + 0.0025796385016292334, + -0.0017019356600940228, + -0.0003847725165542215, + -0.00572235556319356, + -0.005938095506280661, + -0.0014994494849815965, + -0.007312227506190538, + 0.0038380231708288193, + 5.159687589184614e-06, + 0.0007263753795996308, + 0.001581261632964015, + -0.0014388452982529998, + 0.004819483496248722, + 0.0005482924170792103, + -0.004693399183452129, + 0.0029224634636193514, + 0.0007820298196747899, + 0.0002157222479581833, + 0.002061395440250635, + 0.0006867861957289279, + -0.0013050575507804751, + 0.002149825217202306, + 0.002106179716065526, + 0.0032261391170322895, + -5.1577051635831594e-05, + -0.0029542443808168173, + -0.014572587795555592, + -0.00040652300231158733, + 0.0007671189960092306, + -0.0022081814240664244, + -0.0017189154168590903, + 0.001010674750432372, + 0.0001533381437184289, + 0.0016666434239596128, + 0.0009187679970636964, + 0.0017523991409689188, + -0.0001630494080018252, + -0.0030995553825050592, + 0.0010055373422801495, + 0.0007408449309878051, + 0.002037282567471266, + -0.0006614592275582254, + -0.004017964005470276, + -0.0007881235796958208, + -0.005979152861982584, + -0.0005760566564276814, + -0.000424383208155632, + 0.0023520931135863066, + -0.004049777984619141, + -0.001406175782904029, + -8.599010470788926e-06, + 0.004161426331847906, + -0.0018812967464327812, + 8.003029506653547e-05, + -0.0010488182306289673, + -0.0024382465053349733, + -0.0013854731805622578, + -0.0008063329732976854, + -0.001908946200273931, + 0.0020631577353924513, + -0.002582655753940344, + -0.0049674673937261105, + -0.0037740401457995176, + -0.004875929094851017, + 0.001268315245397389, + -0.003000739263370633, + 0.0021941286977380514, + 0.004012296441942453, + 0.005739940796047449, + 0.001320029143244028, + -0.0013701238203793764, + 0.0005589030333794653, + -0.0014939275570213795, + 0.0017158354166895151, + -0.0018030095379799604, + 0.0009079253650270402, + 0.00047985752462409437, + -0.001648247241973877, + 0.0066459812223911285, + 0.009883790276944637, + 0.0008127450128085911, + -3.28438873111736e-05, + 0.0016106596449390054, + -0.0036500338464975357, + -0.002985369646921754, + 0.0001106750569306314, + 0.004669270943850279, + -0.00023067147412803024, + -0.00023856389452703297, + 0.0001856731832958758, + 0.003887058235704899, + -0.002015412552282214, + 0.0013302149018272758, + -0.00225428375415504, + 0.0031550219282507896, + 0.013768528588116169, + -0.0007791339885443449, + -0.0051262266933918, + 0.0011415737681090832, + -0.0011874359333887696, + -0.003908201586455107, + -0.0002524040755815804, + -0.00031671070610173047, + -0.002842923393473029, + 0.00024401013797614723, + 0.006782734766602516, + 0.00045885102008469403, + 0.00043974266736768186, + 0.0009391313651576638, + -0.003044415730983019, + -0.0004768621001858264, + 0.0014286281075328588, + 0.010441320016980171, + -0.004473770037293434, + -0.0003113254497293383, + 0.01287976186722517, + -0.0018699339125305414, + -0.0029157137032598257, + 0.003221785882487893, + 0.00042610210948623717, + -0.0019262430723756552, + -0.00214752578176558, + -0.0049309623427689075, + -0.002492834348231554, + 0.0013687536120414734, + -0.0002285791706526652, + -0.001834878814406693, + -0.001191966817714274, + -0.0028414542321115732, + 0.0018341405084356666 + ] + ], + "variance_threshold": 0.5 + } + }, + "24": { + "concepts": { + "happy": { + "count": 2, + "norm": 48.91717529296875, + "raw_vector": [ + 0.7768354415893555, + 0.344676673412323, + 0.0658702626824379, + 0.24661040306091309, + 1.0889972448349, + -1.559710144996643, + 0.5858829021453857, + -0.2627476751804352, + -0.4600059688091278, + 0.34250587224960327, + -0.17159971594810486, + -0.02119220793247223, + 0.007357507944107056, + -0.1865442544221878, + 0.3714713454246521, + 0.21823620796203613, + -0.609839916229248, + -0.19016051292419434, + -0.867116391658783, + -0.1891242265701294, + 0.44201964139938354, + -0.6627005338668823, + -0.08694126456975937, + 0.3852747678756714, + -0.40153148770332336, + -0.6472905874252319, + 3.4560046195983887, + -0.13018187880516052, + -0.1571112871170044, + 0.4675629436969757, + -0.2961750328540802, + 1.6681487560272217, + -0.7601455450057983, + -0.11846376955509186, + -0.048990219831466675, + 1.005908489227295, + -0.6377833485603333, + 0.5621429085731506, + 0.42193084955215454, + -0.1281343400478363, + 0.07733325660228729, + 0.43358105421066284, + -0.8302350640296936, + -0.7957732677459717, + -0.015142560005187988, + 0.029695749282836914, + 0.6907839775085449, + 0.05680951476097107, + 0.49224579334259033, + -0.17454586923122406, + 0.01804543286561966, + 2.105553388595581, + 0.051092155277729034, + 0.3871380090713501, + -1.7405385971069336, + -0.33152487874031067, + -0.29015421867370605, + -0.180822491645813, + 0.958439826965332, + 0.023130111396312714, + 0.09096163511276245, + 0.39339497685432434, + -0.3956013321876526, + 1.2694969177246094, + -0.5393283367156982, + -0.5886656641960144, + 0.11339372396469116, + -0.24417203664779663, + -1.2450435161590576, + -0.26954033970832825, + -0.39933910965919495, + -0.08412882685661316, + 0.6285503506660461, + 0.36909228563308716, + -0.5608463883399963, + -1.3004331588745117, + 0.18067920207977295, + 0.0013128295540809631, + 1.0720725059509277, + 0.7269788980484009, + -1.7337863445281982, + -0.4458073675632477, + 0.7385417819023132, + 0.5478180050849915, + -0.5561954379081726, + -0.5046272277832031, + 0.542716383934021, + -0.4499642252922058, + 0.36045411229133606, + -0.34002983570098877, + 0.3601720333099365, + 0.12138453125953674, + 0.40052664279937744, + -0.7403480410575867, + 0.9347865581512451, + 2.5030651092529297, + -0.7143421769142151, + 0.022898808121681213, + -1.9586167335510254, + -0.17696037888526917, + 0.1809845119714737, + 0.4729529023170471, + 1.2857987880706787, + 1.0504834651947021, + -0.3704020380973816, + 0.01506584882736206, + 0.3306606709957123, + 0.22269636392593384, + 0.8807055950164795, + -0.6211476922035217, + 0.21013274788856506, + -0.07703578472137451, + 0.0023333728313446045, + -0.36562642455101013, + -0.42786353826522827, + -0.5060227513313293, + -0.34435397386550903, + 0.22111089527606964, + -0.21254654228687286, + -0.2210504412651062, + -0.9921615123748779, + -0.5250886082649231, + -1.6507022380828857, + -0.1757812201976776, + -0.26479050517082214, + 1.3012080192565918, + -0.01261909306049347, + 0.07763037085533142, + 0.4507734775543213, + -0.5460008382797241, + -0.898049533367157, + 1.062709927558899, + -0.03307583928108215, + -0.15780282020568848, + -1.433689832687378, + -0.8606209754943848, + -0.11046694219112396, + 0.5023804903030396, + 0.0888243243098259, + 0.2365742325782776, + -0.46758604049682617, + -0.06373906135559082, + 1.1900385618209839, + -0.2734510004520416, + -0.4524497985839844, + 0.16491742432117462, + 0.37293896079063416, + -0.6662051677703857, + 0.07957541942596436, + -1.0794687271118164, + -0.21636050939559937, + -0.02423166297376156, + 0.3212698996067047, + 0.8693411350250244, + -0.27914857864379883, + -1.290001630783081, + 0.19579830765724182, + 0.44928237795829773, + 0.01016874611377716, + 0.0008756332099437714, + 0.40847519040107727, + -0.30801090598106384, + -0.8043152093887329, + -0.6298761963844299, + 0.23163138329982758, + 0.2667216956615448, + 0.7658175230026245, + 1.2963749170303345, + 0.8720594048500061, + -0.22746312618255615, + -0.47740110754966736, + 0.6178364753723145, + 1.647819995880127, + 0.1555078774690628, + -0.13863512873649597, + 0.20430323481559753, + 1.2631787061691284, + -0.3020239472389221, + -0.2984832525253296, + -0.4611828327178955, + -0.5637180805206299, + -0.2442684769630432, + 0.34087491035461426, + 0.3082146942615509, + -0.12960007786750793, + 0.020080596208572388, + -0.06153261661529541, + -0.13309669494628906, + 0.04846963286399841, + 0.3644934296607971, + -0.5509409308433533, + -0.7220051288604736, + -1.3737545013427734, + -0.5429382920265198, + 0.1654779613018036, + 0.06215856596827507, + 2.3420963287353516, + 0.06145960092544556, + 0.8094825148582458, + -0.0262223482131958, + -2.401597499847412, + 0.01662498712539673, + 1.0563766956329346, + -0.6198148727416992, + -0.8580743074417114, + 0.8713017702102661, + 0.07017096877098083, + -2.471113920211792, + -1.4593431949615479, + 0.34894394874572754, + -0.40626370906829834, + -0.025296151638031006, + 0.3132430613040924, + -0.11442431807518005, + -0.41402125358581543, + -0.25771069526672363, + -0.036175668239593506, + 0.1437305510044098, + -0.2634403109550476, + 0.5916968584060669, + 0.587204098701477, + -0.16148413717746735, + -0.7335034608840942, + 0.18790334463119507, + -1.6809202432632446, + 2.57277512550354, + 0.8329476118087769, + 0.497445672750473, + -0.3373640477657318, + -0.6133724451065063, + -0.1555408239364624, + -0.2480275183916092, + 0.8373640179634094, + 3.3653650283813477, + -0.9233124256134033, + 0.09150780737400055, + 0.3208038806915283, + 0.34341806173324585, + 0.09150290489196777, + -0.9172846078872681, + -0.7294290065765381, + 1.1549510955810547, + -0.5172845125198364, + 3.9399962425231934, + 0.1069466844201088, + -0.6228541135787964, + 1.2531871795654297, + 0.5852253437042236, + -1.320598840713501, + -0.20934315025806427, + 0.39715543389320374, + 2.2571640014648438, + 0.29603514075279236, + -0.6430221796035767, + 0.39010941982269287, + -0.4764805734157562, + -0.721665620803833, + 0.49418044090270996, + -0.11626511812210083, + 0.2805483341217041, + 0.7298953533172607, + 0.3436982333660126, + -1.1991803646087646, + -0.24256154894828796, + -1.0116403102874756, + -0.04371193051338196, + 0.3087325394153595, + 1.1145942211151123, + -0.11343429982662201, + 0.7263582348823547, + -0.10044717788696289, + -0.8231832981109619, + -0.02953343838453293, + 0.7982390522956848, + 0.7990096211433411, + -0.22105973958969116, + -0.5047805309295654, + 0.16073764860630035, + -0.5287466049194336, + -0.4214994013309479, + 0.7483950853347778, + -0.2931097149848938, + -0.43634915351867676, + 0.4283742606639862, + -0.31004855036735535, + -0.5167847275733948, + -0.031522512435913086, + -0.46423929929733276, + -0.1685984581708908, + -0.1597903072834015, + 0.5068390369415283, + 1.2069875001907349, + 1.155498743057251, + 0.17281895875930786, + 0.058705806732177734, + -0.20127274096012115, + 0.7937146425247192, + 0.6667152643203735, + -0.8640886545181274, + 0.47818708419799805, + -0.3411421477794647, + -0.7094160318374634, + 0.27172982692718506, + 0.06377780437469482, + 0.5324657559394836, + -0.17374160885810852, + -0.09266015142202377, + 0.9574346542358398, + 0.3790251910686493, + 0.800642728805542, + 0.19380134344100952, + -0.04855307191610336, + -0.6518816947937012, + -0.191651850938797, + 0.004553630948066711, + -0.6016267538070679, + -0.15229272842407227, + -0.49227121472358704, + -0.5757831335067749, + -0.5855722427368164, + -0.2596888840198517, + -0.3677830398082733, + 0.3386193811893463, + -0.5819059610366821, + -0.3801754117012024, + -0.2708471417427063, + -0.28299057483673096, + 0.5929310321807861, + -0.5434076189994812, + -0.7599376440048218, + 0.2843969464302063, + 0.1467185616493225, + 0.30932968854904175, + -0.9238585829734802, + 0.180897057056427, + -0.45719343423843384, + 1.1816966533660889, + 0.19320376217365265, + 0.020416736602783203, + -0.7723286747932434, + 0.0005424618721008301, + -0.7449535131454468, + 0.21532991528511047, + 2.0887491703033447, + 0.6672860980033875, + 0.1221550703048706, + -1.381487250328064, + 0.15359105169773102, + 0.16467252373695374, + -0.09671321511268616, + -0.023904144763946533, + -0.23134596645832062, + -0.5163057446479797, + -0.23016446828842163, + -0.9461886882781982, + -0.268328994512558, + -0.4454135298728943, + 0.8374156355857849, + -0.3516765236854553, + 0.2660540044307709, + -0.3315733075141907, + 1.6946271657943726, + 0.2437979131937027, + -0.37933608889579773, + -0.4290444850921631, + 0.242070734500885, + -0.42660248279571533, + 0.10940875113010406, + -2.6668202877044678, + -0.2662818133831024, + 0.6085379719734192, + -0.3730141222476959, + 0.02528977394104004, + -2.4769554138183594, + -0.10748334228992462, + 0.7707177400588989, + -0.21454176306724548, + 0.32495516538619995, + -0.5519876480102539, + 0.18955183029174805, + 0.08740364015102386, + 0.16805438697338104, + -1.4034655094146729, + -0.34349530935287476, + 0.29503846168518066, + -0.2748687267303467, + 0.20318850874900818, + 0.14820635318756104, + 0.7509110569953918, + -0.32036930322647095, + 0.6045479774475098, + -0.06374680995941162, + -0.3456077575683594, + 1.2140417098999023, + 1.4609100818634033, + 0.7526510953903198, + -0.09718257188796997, + -1.3453162908554077, + -0.30944526195526123, + -0.2786405682563782, + -0.012273760512471199, + 0.25247734785079956, + -0.11205291748046875, + 0.34972625970840454, + -0.44710344076156616, + -0.24324741959571838, + -0.2190733253955841, + 0.049062710255384445, + -0.5747466087341309, + -0.46043556928634644, + -0.5774931907653809, + 0.8211442232131958, + 0.2003219574689865, + 0.894895076751709, + 0.3729666471481323, + -0.20658636093139648, + 0.23186630010604858, + 0.09168979525566101, + 2.0055155754089355, + 0.6896486282348633, + 0.6304444074630737, + 0.9518861174583435, + -0.8194252252578735, + 0.866625189781189, + 0.5333594083786011, + 0.01107296347618103, + -0.3622795045375824, + 0.5668809413909912, + -0.9419622421264648, + 0.12761586904525757, + 1.2740129232406616, + -0.16882415115833282, + -0.20309406518936157, + 0.5375645756721497, + -0.32992106676101685, + -0.48158377408981323, + 0.570033073425293, + -0.2867763936519623, + -0.48416197299957275, + 0.06486091017723083, + 0.388677716255188, + 0.2690240144729614, + -0.1356840282678604, + 1.0408310890197754, + 0.09599176049232483, + -1.2161871194839478, + -0.356158047914505, + 1.6448264122009277, + -0.6217079162597656, + -1.5951721668243408, + 0.020853228867053986, + 0.03801731765270233, + -0.6159248352050781, + -0.3363074064254761, + -0.9018159508705139, + -0.1507866382598877, + 0.0923120379447937, + 0.20318064093589783, + 0.21442240476608276, + 0.04979830980300903, + -0.31785309314727783, + 0.06745678186416626, + 0.861135721206665, + 0.18342778086662292, + -0.3173867464065552, + -0.5612871050834656, + 0.38374876976013184, + 0.30385464429855347, + -0.25606569647789, + -1.748742938041687, + 0.4126729369163513, + 0.17174366116523743, + 0.4240037500858307, + -0.238535076379776, + 0.8649811744689941, + 0.4778209328651428, + -0.06391280144453049, + -0.005396068096160889, + 0.012334898114204407, + -0.2046181559562683, + 0.036036938428878784, + 0.3566182553768158, + -0.301613450050354, + -0.8721566796302795, + 0.48722589015960693, + -0.3398226201534271, + 1.2315901517868042, + -0.5642966628074646, + 1.4531725645065308, + -0.013462558388710022, + 0.06889159977436066, + 0.6754171848297119, + -0.9485833644866943, + -0.3305256962776184, + 0.32347285747528076, + 0.23613670468330383, + -0.05772365629673004, + -0.13226911425590515, + 0.04060804843902588, + -0.7085897922515869, + -1.0353907346725464, + 0.03606818616390228, + 0.48548611998558044, + 0.8774223327636719, + -0.455649197101593, + 0.19651943445205688, + -0.2962011992931366, + -0.1991913914680481, + -0.7244064211845398, + 0.5312427282333374, + -0.8429518342018127, + -0.19021651148796082, + -0.35435381531715393, + 0.1924171894788742, + -0.05074205994606018, + 0.6879725456237793, + 0.0026934146881103516, + -0.2340487241744995, + 0.1689079999923706, + -0.4328822195529938, + 0.05270576477050781, + -0.30056649446487427, + -0.31126731634140015, + -1.641235113143921, + 0.11340916156768799, + 0.27027541399002075, + -0.8103331327438354, + -0.20617055892944336, + 0.24596095085144043, + 1.0198482275009155, + -0.15145587921142578, + 0.2169712483882904, + -0.07502599060535431, + 0.07079935073852539, + -0.09325655549764633, + 0.03769733011722565, + 0.5073196291923523, + -0.9524679183959961, + 0.16381141543388367, + -0.46234405040740967, + 0.13418853282928467, + 0.7765846252441406, + 0.12709857523441315, + 0.3938026428222656, + -0.523303747177124, + 0.5200522541999817, + 1.2674050331115723, + 0.747268795967102, + -0.4193892180919647, + -0.16557134687900543, + -0.10043859481811523, + 0.751089334487915, + -3.820918560028076, + 0.6727185845375061, + -1.0662550926208496, + 0.17349550127983093, + -0.009306937456130981, + 0.421512246131897, + 0.3924317955970764, + 0.001903623342514038, + 0.7701817750930786, + 0.41039490699768066, + -0.4713594913482666, + -0.5510579347610474, + 0.24940618872642517, + 0.3575533330440521, + -0.17530009150505066, + -0.6902585029602051, + 0.2694193124771118, + 0.3706909418106079, + -0.01142488420009613, + -0.4588450789451599, + -0.6968225240707397, + 0.3745424449443817, + 0.2179499864578247, + -0.03479941934347153, + 0.14073552191257477, + 0.6875172853469849, + 0.9956169128417969, + 1.0062744617462158, + 0.013629704713821411, + 0.6653903126716614, + -0.3504837453365326, + -1.0808343887329102, + -0.49005430936813354, + -0.40926066040992737, + 1.612640619277954, + -0.21283641457557678, + 0.027643203735351562, + -0.12666070461273193, + 0.5593928098678589, + 1.091878890991211, + -1.0733225345611572, + 0.10814300924539566, + 0.7649459838867188, + 0.47096627950668335, + 0.5049834251403809, + 0.01198260486125946, + -0.7996737957000732, + 0.8183380365371704, + 0.19273307919502258, + -0.6501696705818176, + 0.5993213057518005, + -0.286667138338089, + -0.7182811498641968, + 0.3225612938404083, + 0.2798386216163635, + 0.2542324662208557, + 0.32343173027038574, + 1.1877940893173218, + -0.06705695390701294, + 0.12879493832588196, + -0.7853724956512451, + 0.1791227161884308, + -0.1403646320104599, + 1.2931150197982788, + -0.48254096508026123, + 0.014364807866513729, + 0.7160733342170715, + -0.38838040828704834, + -0.8877867460250854, + -0.189920112490654, + -0.3203733265399933, + 0.3846493363380432, + -0.306926965713501, + 0.3867916464805603, + -0.5280516147613525, + -0.006934225559234619, + -0.09187881648540497, + -0.011454077437520027, + -0.46974602341651917, + 1.3011860847473145, + -0.09090234339237213, + -0.157183438539505, + -0.3611655831336975, + -0.6069043874740601, + -0.17697778344154358, + 0.2802250385284424, + 0.4432307183742523, + 0.13635599613189697, + 0.38989388942718506, + -0.09958262741565704, + -0.2503269910812378, + 1.266745924949646, + -1.76272714138031, + -0.267351359128952, + 0.3097967207431793, + -0.7258246541023254, + -0.488961786031723, + 0.8338128328323364, + 0.3096858263015747, + -0.7528650760650635, + 0.4697069525718689, + -0.5696803331375122, + -0.5278284549713135, + -0.3023088574409485, + -0.32806992530822754, + 1.4554615020751953, + -1.3115339279174805, + -1.2065012454986572, + -0.35755470395088196, + 0.41108280420303345, + 0.8266203999519348, + 0.8244378566741943, + 0.14539234340190887, + 2.347731113433838, + -0.7815460562705994, + 1.005873203277588, + -0.14813072979450226, + -0.4594488739967346, + -0.6934160590171814, + 0.08634228259325027, + -0.3476126194000244, + -0.0974227786064148, + -0.47188371419906616, + 0.11279693245887756, + -0.18842220306396484, + 0.9406355619430542, + 0.4486961364746094, + 0.4036131799221039, + 0.28719258308410645, + 0.020180627703666687, + 0.5214753746986389, + 0.3412930965423584, + -0.2646290957927704, + -0.015205428004264832, + 0.3946106433868408, + -0.2884000539779663, + -0.8625909090042114, + -0.8718942403793335, + 1.0782809257507324, + -0.8767870664596558, + 1.0917973518371582, + -0.34565216302871704, + 0.1620277613401413, + 0.5543527603149414, + 0.586858868598938, + -0.5817118287086487, + -0.7017953991889954, + -0.5022797584533691, + -0.057066142559051514, + 0.36591339111328125, + 0.057002924382686615, + -0.07054376602172852, + -1.2578868865966797, + -0.8801606893539429, + -0.4054628610610962, + 0.4732894003391266, + 0.17954447865486145, + 1.016779899597168, + 0.5561220645904541, + -0.354910671710968, + -0.09562385082244873, + -0.3684599697589874, + 0.5406582951545715, + 0.4161156415939331, + -1.6640799045562744, + -0.3539685904979706, + 0.047274306416511536, + -0.404846727848053, + -0.18371713161468506, + 0.5989924073219299, + -0.23710022866725922, + -0.32102832198143005, + 0.0505552664399147, + -1.0545194149017334, + 1.0585075616836548, + 0.09615316987037659, + -0.5056010484695435, + 0.1462307721376419, + 0.18308568000793457, + -0.20604220032691956, + 0.03513404726982117, + -0.19444841146469116, + 0.24492529034614563, + 0.38205820322036743, + -2.4819412231445312, + 0.3305826187133789, + -0.16639921069145203, + -0.17335206270217896, + -0.3464902937412262, + 0.6739550828933716, + -1.4836100339889526, + -0.4235210120677948, + 1.250295877456665, + -0.5296193361282349, + -0.13397732377052307, + 1.250684380531311, + -1.2221341133117676, + 0.5022199153900146, + 0.25378501415252686, + -1.6242036819458008, + 0.7154669761657715, + -0.07036825269460678, + 0.044587939977645874, + 0.5776106119155884, + 0.5247262716293335, + -0.26654720306396484, + -0.08295954763889313, + 0.14569121599197388, + 0.2777424156665802, + 0.6463189125061035, + -0.7989383935928345, + 0.4144386053085327, + 0.19884097576141357, + -0.441701740026474, + 0.03421011567115784, + -0.10751806199550629, + 0.3612484335899353, + -0.5193886756896973, + 0.2621489465236664, + -0.3630935549736023, + 0.31550610065460205, + 0.222696453332901, + -1.3810279369354248, + -0.09519374370574951, + -0.30582359433174133, + 1.3281939029693604, + 0.2090310901403427, + 1.1698729991912842, + -0.6768693327903748, + 0.7334222793579102, + 0.08898771554231644, + -0.5070614814758301, + -0.291425883769989, + -0.2874428331851959, + -0.45865368843078613, + -0.3249104619026184, + 0.216684490442276, + -0.33175331354141235, + -0.5378289222717285, + -0.9757495522499084, + 0.96457839012146, + -0.37367546558380127, + -0.6494683623313904, + -0.9441945552825928, + 0.04907366633415222, + 0.9062919020652771, + -0.7082793116569519, + 0.09217046201229095, + 0.7162367105484009, + 0.09835436940193176, + 0.0971834659576416, + 0.15991775691509247, + -0.03410943225026131, + -0.4050263464450836, + -0.23078343272209167, + -0.5335110425949097, + 0.3079495429992676, + 2.8429362773895264, + 0.7664029598236084, + -0.6704260110855103, + 0.4396999180316925, + -1.2721668481826782, + 1.3025585412979126, + 0.7353139519691467, + -0.8574904203414917, + 0.02443060278892517, + -0.5315569639205933, + -0.55389004945755, + 0.6618310213088989, + -1.227541446685791, + 0.3575376868247986, + -0.31893956661224365, + 0.011991631239652634, + 0.3368259370326996, + 0.10327764600515366, + 0.7780866622924805, + -0.7503681182861328, + -0.7867337465286255, + -0.03321129456162453, + 0.07173299789428711, + 0.02252984791994095, + -0.6111917495727539, + 1.0607795715332031, + -0.761790931224823, + -0.1456490308046341, + 1.2251149415969849, + -0.840927004814148, + 0.31929486989974976, + 0.06323043256998062, + 0.5833815932273865, + -0.3244212865829468, + 0.017796099185943604, + 0.10904949903488159, + 0.46162816882133484, + -0.7074488401412964, + -0.06344398856163025, + 0.186142697930336, + -0.30721649527549744, + -0.7807184457778931, + 0.9288592338562012, + 0.9546561241149902, + 0.23110811412334442, + 0.4663165211677551, + 0.6594774127006531, + 0.10720376670360565, + -0.18477284908294678, + -0.8714513182640076, + 0.7089601755142212, + 0.035385727882385254, + 0.36856287717819214, + 0.14403024315834045, + -0.38834133744239807, + -0.3039305806159973, + -0.8280142545700073, + 0.22947312891483307, + -0.21448859572410583, + -0.7411453127861023, + -0.19795581698417664, + -0.22416304051876068, + -0.15367409586906433, + -0.09042126685380936, + -0.21360361576080322, + -0.26544204354286194, + 0.2811606824398041, + -3.0842337608337402, + 0.40602678060531616, + 0.3501754105091095, + 0.23129989206790924, + -0.4257317781448364, + 0.6041852831840515, + -0.3612791895866394, + 0.3639368414878845, + -0.6217703223228455, + 0.37754926085472107, + 0.3104313611984253, + 0.07723313570022583, + -0.7680224180221558, + 0.6494392156600952, + 1.1694189310073853, + 0.32075875997543335, + 0.5688948631286621, + 0.5836538672447205, + -0.21989984810352325, + -0.3497976064682007, + 0.4551984667778015, + -0.31773659586906433, + 0.29541832208633423, + 0.0030275732278823853, + -0.37659820914268494, + 1.8397454023361206, + -0.5368316769599915, + -0.5970951318740845, + 0.11982589960098267, + -0.8232126235961914, + 0.19193795323371887, + 0.182266503572464, + 0.2591763734817505, + -0.7006570100784302, + 0.9687992334365845, + -1.5324876308441162, + 0.15544459223747253, + -0.0612679123878479, + -0.2335437536239624, + -0.8336282968521118, + 0.3214922845363617, + 0.36349010467529297, + -0.2827123701572418, + -0.05043122172355652, + -0.607323169708252, + 0.5161000490188599, + 0.04383452236652374, + -2.277291774749756, + -0.25648489594459534, + 0.7147277593612671, + 0.2698618173599243, + 0.3389665186405182, + -0.30489152669906616, + -1.9188339710235596, + 0.5548888444900513, + 0.8804740905761719, + 0.1697324812412262, + 0.25306904315948486, + 0.6363900899887085, + 0.8979820013046265, + -0.03613945096731186, + -0.4232232868671417, + 0.7526516914367676, + -0.020467698574066162, + 0.18803051114082336, + 0.07716387510299683, + -0.6619535684585571, + 0.05275101959705353, + -0.39754125475883484, + 0.41619932651519775, + -0.14606572687625885, + -1.2833762168884277, + -0.1917041838169098, + -0.30866289138793945, + -0.1370186060667038, + -0.7256689667701721, + -0.2832384705543518, + 0.3046227991580963, + 0.7259610891342163, + 0.35472381114959717, + -0.40993374586105347, + 0.24768494069576263, + -0.5574486255645752, + -0.19121062755584717, + 0.6576336622238159, + -0.01324017159640789, + -0.5245977640151978, + 0.32389718294143677, + -0.3959673047065735, + 0.7452774047851562, + -0.7842358946800232, + -0.028542399406433105, + -0.0812133252620697, + 0.08010366559028625, + -0.02022818848490715, + -0.11292338371276855, + -0.08250260353088379, + 0.037027984857559204, + -0.8206728100776672, + -1.6242122650146484, + 0.1335947960615158, + -0.07843893766403198, + 0.4834957718849182, + -0.06219063699245453, + -0.9257816672325134, + 0.5842143297195435, + 1.4043058156967163, + 0.4047456383705139, + 0.539842963218689, + 0.4088079035282135, + 0.13824054598808289, + 3.366441488265991, + 0.1311814934015274, + 1.2785749435424805, + -0.24608756601810455, + 0.029053397476673126, + -0.052687227725982666, + 1.109459400177002, + -0.6368928551673889, + 0.5449912548065186, + -0.33764344453811646, + 0.5088225603103638, + 0.8425306677818298, + 0.08195725083351135, + 0.6671313047409058, + 1.162530779838562, + -0.9478285312652588, + -0.6250782012939453, + 0.4005166292190552, + 0.46249788999557495, + 0.07506674528121948, + -1.438538908958435, + 0.263159841299057, + -0.13995856046676636, + -0.42872804403305054, + 0.10794778168201447, + -2.1004960536956787, + 0.1616194248199463, + 0.17741045355796814, + -0.24222445487976074, + 0.08250480890274048, + -0.6855869293212891, + -0.17740362882614136, + 0.19549056887626648, + -0.3176752030849457, + -0.3354579508304596, + -0.3623511493206024, + 0.4326435327529907, + 1.1016167402267456, + 0.04123835265636444, + 0.21831114590168, + -0.7196578979492188, + -0.04036799073219299, + 0.10777643322944641, + -0.00854426622390747, + -1.4010295867919922, + 0.5258426666259766, + 0.2249458134174347, + 0.6389309763908386, + -1.0119287967681885, + 0.23381438851356506, + -0.4548332691192627, + 0.6003637313842773, + 0.8933045864105225, + -0.18820250034332275, + 1.0537649393081665, + 0.04093366861343384, + 1.2187013626098633, + 0.4011901319026947, + 0.3014598786830902, + 1.9277057647705078, + 0.8993512392044067, + -0.474740594625473, + -0.5209645628929138, + 0.7927092909812927, + 0.008337467908859253, + -0.1336250603199005, + 0.5775066614151001, + 0.1368170976638794, + -0.1873251497745514, + 0.712758481502533, + 0.2315238118171692, + -0.18443205952644348, + -0.4745972156524658, + 0.4051662087440491, + -0.15287038683891296, + 1.1530742645263672, + 0.47781914472579956, + -0.28687605261802673, + 0.5389171242713928, + -0.37770265340805054, + -0.9054555296897888, + 0.2764236330986023, + -0.17555135488510132, + 1.1450194120407104, + -0.3068646788597107, + -0.08566170930862427, + 0.34393423795700073, + 0.4908638894557953, + -0.021966874599456787, + -0.0510559044778347, + 0.3545817732810974, + 0.27617377042770386, + -0.6953386664390564, + -0.14155909419059753, + -0.2323543131351471, + -0.6783187389373779, + 0.0772368311882019, + 0.07290124893188477, + 1.494457721710205, + -0.261820912361145, + -0.5296084880828857, + 0.06399795413017273, + -0.2577795386314392, + 0.7714942693710327, + 0.011557251214981079, + 0.3002839684486389, + -0.0038826465606689453, + -0.36627960205078125, + 0.14469990134239197, + -0.5220296382904053, + 0.1571657359600067, + -0.46241241693496704, + -0.9664488434791565, + -0.1984657645225525, + 0.7699359655380249, + -0.9176603555679321, + 0.938090443611145, + -0.36770087480545044, + 0.33752843737602234, + 0.4267352521419525, + 0.35326796770095825, + 0.6585776209831238, + -0.6031356453895569, + -1.1642241477966309, + -0.32691559195518494, + 0.9249099493026733, + 0.24152693152427673, + -0.5360555648803711, + 0.18791574239730835, + 0.5027593374252319, + -2.083193778991699, + 1.1414014101028442, + 0.18711146712303162, + 0.20666873455047607, + 0.3924511671066284, + -0.1272396445274353, + -0.45898663997650146, + -0.6063713431358337, + -0.017651408910751343, + 0.0194857120513916, + 0.6895371675491333, + -0.7033226490020752, + 2.450788736343384, + -0.2627924680709839, + -0.10225071012973785, + -0.34718742966651917, + -0.7443967461585999, + -1.0959687232971191, + -0.717518150806427, + -0.11452808976173401, + -0.9694536924362183, + -0.19556647539138794, + 0.24542886018753052, + 0.5662891268730164, + 0.01819751039147377, + 0.6902130246162415, + 0.6452317237854004, + -1.0244836807250977, + 0.4140446186065674, + 0.3429703116416931, + 1.7386479377746582, + 0.5737071633338928, + -1.1624059677124023, + 0.5911492109298706, + -0.2452944815158844, + -0.1834014356136322, + 0.09281827509403229, + 0.5481120944023132, + 0.885148286819458, + -0.3413732647895813, + 0.07745452225208282, + 0.38353466987609863, + 0.6162652969360352, + 0.11463966965675354, + 0.25376051664352417, + 1.7969484329223633, + -0.8671097755432129, + 0.2797418236732483, + 0.6277698874473572, + -0.3805396258831024, + -0.042427659034729004, + -0.022557079792022705, + -0.14788097143173218, + 0.8927725553512573, + 1.368673324584961, + 0.07630607485771179, + -0.010088086128234863, + 0.017115898430347443, + -0.3776668906211853, + -0.25228151679039, + -0.14519590139389038, + -0.07730732858181, + 0.1927981972694397, + 0.12804055213928223, + -0.14216473698616028, + -0.2943360209465027, + -0.1289633959531784, + -0.34257009625434875, + 0.041690416634082794, + -0.06749984622001648, + 1.3650527000427246, + -0.6061279773712158, + 0.025478720664978027, + 0.021272435784339905, + -0.1674882471561432, + 0.33673250675201416, + 0.3273334503173828, + -0.13634198904037476, + -0.48159658908843994, + -0.12135931849479675, + 0.027201570570468903, + -0.3478892147541046, + 0.4234567880630493, + -0.6219950914382935, + 0.2367621213197708, + -0.3053450286388397, + 0.09506195783615112, + -0.21415740251541138, + -0.01807868480682373, + -0.2223583608865738, + -0.10527178645133972, + 0.07653701305389404, + -0.28941452503204346, + -0.5117697715759277, + -0.20149445533752441, + 0.20965930819511414, + 0.43546900153160095, + -2.3772692680358887, + -0.14230409264564514, + 0.05759543180465698, + -0.7711381316184998, + 0.3633076548576355, + -0.10030323266983032, + 0.71235191822052, + 0.7111787796020508, + 0.47711181640625, + -0.4908728003501892, + 0.5117917656898499, + 0.03485870361328125, + -0.004695683717727661, + 0.6142479181289673, + -0.11566203832626343, + 0.11298950016498566, + -0.5311113595962524, + -1.0755133628845215, + 0.18102052807807922, + -0.25865066051483154, + 0.10076533257961273, + 0.10865238308906555, + -0.26573067903518677, + -0.03983064740896225, + 0.3735082447528839, + -1.5812329053878784, + 0.4078100025653839, + 0.21090777218341827, + -0.3408356308937073, + 0.13235551118850708, + 0.24867844581604004, + 0.2104000598192215, + -0.7015715837478638, + 0.1950380802154541, + 0.8152107000350952, + 0.7937825918197632, + 0.2539474666118622, + 0.923652172088623, + 1.5000786781311035, + -0.7261918187141418, + 0.6667274832725525, + -0.621334969997406, + -1.3026849031448364, + -0.510486364364624, + -0.404563307762146, + -0.14107149839401245, + 0.17889457941055298, + -0.12353351712226868, + 0.10646455734968185, + -0.07991620153188705, + 0.3482130467891693, + -0.4968249201774597, + 0.5223714113235474, + 0.07447324693202972, + -0.27268004417419434, + -0.8947362303733826, + 0.10502872616052628, + 1.3225657939910889, + -0.011105865240097046, + 0.5004482865333557, + 0.9913705587387085, + -0.42682623863220215, + -0.5628456473350525, + -0.04128419607877731, + 0.9509817361831665, + -0.10671153664588928, + 0.1944923996925354, + 0.14797493815422058, + 1.2213239669799805, + -0.06751609593629837, + 1.6649670600891113, + 0.4238540530204773, + -0.7271500825881958, + 0.6970056891441345, + 0.598037838935852, + 0.28464606404304504, + -0.1380804181098938, + 1.4651418924331665, + -0.05721813440322876, + -0.7757260203361511, + -0.8982136845588684, + 0.5635431408882141, + -0.5906133651733398, + -0.35072991251945496, + 0.5172772407531738, + 0.22052907943725586, + 0.1788518875837326, + 1.1518899202346802, + -0.40453341603279114, + -0.4297538697719574, + -0.18251579999923706, + -0.36708056926727295, + -0.6833146214485168, + -1.3704272508621216, + 0.3475028872489929, + 0.6741892695426941, + -0.05204442888498306, + -0.3515547513961792, + -1.0142287015914917, + 0.8286266326904297, + -0.649224579334259, + -0.7113330364227295, + 0.43637412786483765, + 0.1570926010608673, + -0.5170869827270508, + 0.07342317700386047, + 0.4529484808444977, + 0.0029764026403427124, + 0.036860622465610504, + -0.3484198749065399, + -0.3514639139175415, + 0.1974220871925354, + 0.04750097543001175, + 0.46850964426994324, + 0.30089691281318665, + -0.22062332928180695, + -0.27821001410484314, + -1.8561649322509766, + -1.2597061395645142, + 0.6433283090591431, + -0.5927918553352356, + -0.43407300114631653, + -0.49030113220214844, + 0.056860148906707764, + -0.08690899610519409, + -0.136982262134552, + 0.5666018128395081, + 0.4645823836326599, + 0.39767712354660034, + 0.021261602640151978, + 0.4955253005027771, + 0.5171647071838379, + -0.2002246081829071, + 0.5086598992347717, + -0.8733729124069214, + 1.5110188722610474, + -0.20399220287799835, + -0.5024460554122925, + 0.1529320478439331, + 0.5493607521057129, + 0.06700222939252853, + -0.6312998533248901, + 0.8691102266311646, + -1.0123634338378906, + -0.3919137120246887, + 0.3106958568096161, + -0.2131986916065216, + -0.4398263394832611, + -0.006511051207780838, + 0.3078698515892029, + -0.8543851971626282, + -1.6984376907348633, + 0.04994712769985199, + 0.011629156768321991, + -0.1005575954914093, + -0.33536380529403687, + -0.18398422002792358, + -0.7989665269851685, + -0.008383501321077347, + -0.47876036167144775, + -0.36445432901382446, + -1.1556479930877686, + 0.4860900044441223, + -0.886808454990387, + 1.1394644975662231, + -0.1804235577583313, + 0.6652991771697998, + -0.1651933193206787, + 0.34050264954566956, + 0.47395074367523193, + -0.5019435882568359, + -0.6029521822929382, + 0.14795532822608948, + -0.40397167205810547, + 0.6914085149765015, + 0.9072368741035461, + -0.725033164024353, + -1.1369285583496094, + -0.4718822240829468, + 0.1504405438899994, + -0.625130295753479, + 0.29853206872940063, + -0.5452800989151001, + 0.8504576683044434, + -0.16285505890846252, + 0.4066890776157379, + -0.6627601385116577, + -0.16883878409862518, + 0.28229019045829773, + -0.027918443083763123, + 0.620897650718689, + -0.5448984503746033, + 1.021602988243103, + 0.46020305156707764, + -0.004796028137207031, + -0.15106600522994995, + 0.7569572925567627, + -0.6836401224136353, + -0.13312137126922607, + -0.5941364169120789, + -0.4755443334579468, + -0.26786985993385315, + 0.3836592733860016, + 0.7549803256988525, + -0.23878207802772522, + 1.0416839122772217, + 0.9418726563453674, + 1.4904283285140991, + -0.6903831958770752, + -0.33448317646980286, + -1.9008519649505615, + -0.27631551027297974, + -0.12047076225280762, + -0.5751951932907104, + 0.48100894689559937, + -0.08527249842882156, + -0.9030672311782837, + 0.606796383857727, + -0.010392636060714722, + 0.012887537479400635, + -0.15269869565963745, + -0.1905413120985031, + 0.08252143859863281, + -0.9845607876777649, + 0.27982810139656067, + -0.6420854330062866, + 1.6573007106781006, + 0.5908046960830688, + -1.1611381769180298, + 1.216591715812683, + -0.4008053243160248, + -0.04346146434545517, + 0.14330372214317322, + 0.7806355953216553, + -0.12354837357997894, + -0.8876532912254333, + 2.262343168258667, + 0.20267647504806519, + -0.10021421313285828, + 0.138421431183815, + -0.43174415826797485, + 0.1085275411605835, + 0.46130767464637756, + 0.6164975166320801, + -1.3034439086914062, + 0.28387174010276794, + 0.38831251859664917, + 0.5576895475387573, + 0.5874996185302734, + 0.24207520484924316, + -0.7076748013496399, + -0.8416930437088013, + -0.5667959451675415, + 0.5912929177284241, + 1.1846489906311035, + 0.4233520030975342, + 0.6585525274276733, + -0.5618703961372375, + 0.06468512117862701, + -0.07546354830265045, + 0.2420254945755005, + 0.28145331144332886, + 0.4440188407897949, + -0.48637980222702026, + 0.17042818665504456, + 0.7932897806167603, + 0.4974195063114166, + -0.38702571392059326, + 0.28921252489089966, + -0.4839569926261902, + -0.6952260136604309, + -0.08009268343448639, + 0.33353474736213684, + -0.4917769134044647, + -0.17250630259513855, + 0.23963861167430878, + 0.054341137409210205, + 0.4103914201259613, + -0.2602246403694153, + 0.10717762261629105, + 0.2027125060558319, + -0.560572624206543, + 0.3903157711029053, + 0.141737163066864, + 0.7299209237098694, + -0.019040986895561218, + 0.12893152236938477, + -0.35191282629966736, + -0.2095331847667694, + -0.2942036986351013, + -0.1541450023651123, + -0.47480201721191406, + -0.4269412159919739, + -0.11409938335418701, + 0.06243889778852463, + -1.5078140497207642, + 0.020245596766471863, + 0.639208197593689, + 0.01958957314491272, + -0.8868471384048462, + 0.7095311284065247, + 0.9835084676742554, + -0.1879274845123291, + 0.035621076822280884, + 0.7692540287971497, + -0.06304386258125305, + 0.7357369065284729, + 0.7569776773452759, + -0.043261945247650146, + 0.6177537441253662, + -0.8692828416824341, + 0.006534188985824585, + -0.5745996236801147, + -1.0315927267074585, + -0.7773398160934448, + 0.4034559428691864, + 0.4107506275177002, + 0.10990934073925018, + -0.3870912790298462, + 0.005627579987049103, + -0.5939900279045105, + 0.32785549759864807, + 0.023448467254638672, + 1.3356356620788574, + -0.48501133918762207, + -1.0302497148513794, + -0.25307780504226685, + 0.2691287398338318, + -1.299978256225586, + 0.5170584917068481, + -0.23372995853424072, + -0.16500620543956757, + 0.5319364070892334, + -0.11887800693511963, + -0.04499199986457825, + -0.926981508731842, + 0.4036272168159485, + 0.08194568008184433, + -0.7014361619949341, + 0.06920307129621506, + -0.15687648952007294, + -0.7823856472969055, + -0.7870307564735413, + -0.7601780891418457, + -0.2922743558883667, + -0.9559487700462341, + -0.021703720092773438, + 0.1358954906463623, + -0.49409058690071106, + 0.17907701432704926, + -0.41910210251808167, + -1.0946083068847656, + -0.050293922424316406, + -0.10922098159790039, + 0.5137611627578735, + -0.022315245121717453, + 1.1543642282485962, + 0.20663508772850037, + -0.7477461695671082, + 1.5387163162231445, + -0.003343755379319191, + 0.44162410497665405, + -0.5380470752716064, + 0.4164738655090332, + 0.03468579053878784, + -0.1427566409111023, + 0.23436495661735535, + -0.032220736145973206, + -0.1282242238521576, + 0.3265988230705261, + -0.10413961112499237, + -0.09767653793096542, + 0.29238927364349365, + -0.1273707151412964, + -0.10390490293502808, + 0.7140359878540039, + 0.26430755853652954, + 0.12257440388202667, + 0.378179669380188, + 0.7515367269515991, + -0.0026084184646606445, + 0.5397286415100098, + -0.18509557843208313, + -0.15318776667118073, + -1.1112442016601562, + -0.22724702954292297, + -0.5590603351593018, + 0.505165696144104, + 0.1887715756893158, + 0.24881894886493683, + -0.3665143847465515, + 0.6492006778717041, + -0.4846296012401581, + -0.7145909667015076, + -0.1445721983909607, + -0.2995988726615906, + 0.7048620581626892, + 0.4323892593383789, + 1.2456375360488892, + -0.3632804751396179, + 0.5462619066238403, + -0.23809555172920227, + -0.31399375200271606, + 0.163296639919281, + 0.12874126434326172, + 0.46010085940361023, + 0.3965723216533661, + 0.2430393099784851, + -0.44524672627449036, + 0.2430008500814438, + -0.604285478591919, + 0.08372524380683899, + -0.25862228870391846, + 0.36741799116134644, + -0.4236796200275421, + 0.6258299350738525, + 0.36142033338546753, + 0.9875549077987671, + -0.7072329521179199, + 0.2328726053237915, + -0.6563996076583862, + -0.1349107325077057, + -0.4142940938472748, + 0.4789424538612366, + -0.07768881320953369, + 0.34465593099594116, + 0.3341214060783386, + 0.3640703856945038, + 0.3012493848800659, + -0.7077334523200989, + -0.2633175253868103, + -0.29401111602783203, + 0.6004996299743652, + 0.03703020513057709, + 0.12062786519527435, + -0.5347371101379395, + 0.5304592847824097, + 0.28648966550827026, + 0.1531500220298767, + -0.38017532229423523, + 0.4249011278152466, + -0.11883147060871124, + -1.5503730773925781, + -0.06680482625961304, + -0.4144829511642456, + -0.038736939430236816, + -0.07923650741577148, + 0.6712644100189209, + 0.9535419344902039, + -0.6326460242271423, + 0.24291589856147766, + -1.1568427085876465, + -0.15185341238975525, + 0.44788891077041626, + 0.28200966119766235, + -0.034449897706508636, + -0.3658595681190491, + -0.8118256330490112, + -0.6157720685005188, + -0.582359790802002, + -0.977157473564148, + 0.028231710195541382, + -0.5892232060432434, + -0.77012038230896, + 0.010031968355178833, + 0.38249677419662476, + 0.15119388699531555, + 0.02821505069732666, + -0.5361288785934448, + -0.26659661531448364, + -0.24902629852294922, + 0.03340458869934082, + 0.08380818367004395, + 0.14063164591789246, + -0.04357069730758667, + -0.618064284324646, + 0.6670901775360107, + 0.40193936228752136, + 0.5096115469932556, + -0.8150166869163513, + 0.35384806990623474, + -0.8196952939033508, + 1.5229547023773193, + -0.5778390169143677, + 0.41155076026916504, + 0.2807966470718384, + -0.4786451458930969, + -0.08694696426391602, + 0.21801316738128662, + 0.13125024735927582, + 0.745110809803009, + -0.6377776861190796, + 0.16433778405189514, + 0.19562216103076935, + -0.6391168236732483, + 0.26043403148651123, + 0.03640112280845642, + -0.6911587119102478, + -0.17884066700935364, + 0.26344990730285645, + -0.13567203283309937, + 0.6707744002342224, + 1.3566027879714966, + 1.852555513381958, + -0.40857192873954773, + 0.36147522926330566, + -0.868848443031311, + -0.011236056685447693, + -0.7259786128997803, + -0.22177495062351227, + 0.04987722635269165, + -0.1464371234178543, + 0.5574890971183777, + 0.608791172504425, + -0.015974432229995728, + -0.47161465883255005, + 0.9007528424263, + -0.30205345153808594, + -0.28051280975341797, + 0.017428115010261536, + 1.0829286575317383, + -1.7747166156768799, + -0.3386206030845642, + -0.48368552327156067, + -0.06584800779819489, + -0.36767834424972534, + 0.509615957736969, + -0.3369303345680237, + 0.25306180119514465, + 0.2124093770980835, + -0.5203329920768738, + 1.2000367641448975, + -0.4970604479312897, + -0.3970092236995697, + -0.8752045631408691, + -0.714117169380188, + -0.6771851778030396, + 0.020777568221092224, + -0.35700729489326477, + -0.9309581518173218, + -0.8739454746246338, + 0.07063987851142883, + 0.19636210799217224, + -0.17659196257591248, + -0.33956000208854675, + 0.3915589451789856, + 0.06764507293701172, + 0.11118901520967484, + 0.44582676887512207, + -0.45003432035446167, + -0.2434852421283722, + 0.041601940989494324, + 0.24141332507133484, + -0.24487775564193726, + -1.5218145847320557, + -0.42651939392089844, + 0.059797339141368866, + -0.06061113625764847, + -1.2052737474441528, + 2.0645241737365723, + -0.5170294046401978, + 0.0454731285572052, + -0.5548422336578369, + -0.30125218629837036, + -0.5992474555969238, + -0.917460024356842, + -0.646334171295166, + -0.8941986560821533, + -0.22556063532829285, + -1.63398277759552, + -0.021399840712547302, + 0.9206896424293518, + 0.26977503299713135, + 0.10561612248420715, + 0.47130340337753296, + -0.18150728940963745, + 0.47212961316108704, + 0.2712177038192749, + 0.1566089391708374, + -1.0178718566894531, + -0.6500933766365051, + -0.5418479442596436, + 1.7373026609420776, + 0.3125283718109131, + -0.4896835684776306, + -0.25941455364227295, + 0.21537211537361145, + -0.40552547574043274, + 1.3095815181732178, + 0.6654890179634094, + -0.31949248909950256, + -0.8347548246383667, + 0.18996766209602356, + -0.3121149241924286, + -0.2719923257827759, + -0.25115248560905457, + 0.40236905217170715, + -0.675902247428894, + 0.2633587121963501, + -0.5476191639900208, + -0.8635378479957581, + -0.26558196544647217, + 1.960073709487915, + -0.009417235851287842, + -0.5440811514854431, + -0.008694112300872803, + -0.4065546989440918, + -0.6909083127975464, + -0.2060258388519287, + -0.415834903717041, + 0.4635184109210968, + 1.0939429998397827, + -0.14565865695476532, + -0.2958337664604187, + 0.6411651372909546, + 0.3195543885231018, + 0.7897691130638123, + -0.807651162147522, + 2.277653217315674, + -0.2728121876716614, + 0.4499940276145935, + 0.3527517318725586, + 0.6016299724578857, + 1.167222261428833, + -2.626274585723877, + 0.022843986749649048, + 0.13341236114501953, + 0.4040168821811676, + -0.6020585298538208, + -2.06398868560791, + -0.7266536951065063, + -0.0769156962633133, + -0.294997900724411, + -0.7082873582839966, + 0.2940194606781006, + -0.3829639256000519, + 0.05298665165901184, + -0.5151137709617615, + 0.10252952575683594, + -0.2341771423816681, + 0.23057706654071808, + -0.7031639218330383, + 0.08010345697402954, + 0.22799628973007202, + 0.32200878858566284, + -0.003479287028312683, + -0.9664350152015686, + -0.1800081580877304, + -0.007136255502700806, + -0.18099066615104675, + -0.4467853009700775, + -0.7277788519859314, + -0.5188379287719727, + 0.31611016392707825, + 0.09194543957710266, + 0.11271277815103531, + -0.6114010810852051, + -0.13518017530441284, + 0.19419053196907043, + -0.5235036611557007, + -0.3628435432910919, + 0.43487295508384705, + -0.16321948170661926, + -0.7543970942497253, + -0.3772065341472626, + -0.44295603036880493, + -0.10496258735656738, + 0.2773049473762512, + -0.08578643202781677, + -0.2855417728424072, + 0.9567294716835022, + -0.23291969299316406, + 0.34367573261260986, + 0.1634768694639206, + 0.1906825602054596, + -0.7880459427833557, + -0.5584802627563477, + 0.19842125475406647, + 0.7453992366790771, + 0.1959506720304489, + 0.2625180184841156, + -0.2732463479042053, + 0.0791144073009491, + 0.15376579761505127, + -0.32739537954330444, + -0.04565402865409851, + 0.9118078947067261, + -0.924746036529541, + -1.0936274528503418, + -0.9476670026779175, + -0.12535232305526733, + -0.3804808557033539, + -0.4441121220588684, + -0.1517055779695511, + -0.13414406776428223, + 0.6243318915367126, + 0.20639939606189728, + -0.6861279606819153, + 0.5310560464859009, + -0.28613200783729553, + -0.24817803502082825, + 0.010639525949954987, + 0.3242305517196655, + 0.21785256266593933, + 0.14480796456336975, + 0.1512516438961029, + 0.0016599297523498535, + 0.5355876684188843, + -0.1299896240234375, + -0.020877152681350708, + -1.2017991542816162, + 0.2340097576379776, + -0.24276229739189148, + -0.7389959096908569, + 0.3386830687522888, + 0.14197498559951782, + -1.0691889524459839, + 0.8843319416046143, + 0.10683098435401917, + -0.506206750869751, + -0.4253224730491638, + 1.1715677976608276, + 0.26542800664901733, + -0.04447184503078461, + -0.3526298701763153, + -0.5994030237197876, + -0.919786274433136, + -0.1316312551498413, + 0.021131902933120728, + 0.05869530513882637, + 0.053179144859313965, + -1.0100018978118896, + 0.008344471454620361, + 0.4443570673465729, + -0.2928600609302521, + -0.6690055131912231, + 0.0789695605635643, + 0.020881712436676025, + 0.1862718164920807, + 0.06913048028945923, + -0.5267953872680664, + 0.4847622513771057, + 0.3152961730957031, + 1.3481428623199463, + 0.5012121200561523, + -0.5271552801132202, + 0.77191162109375, + -0.09355288743972778, + 0.4123764634132385, + -0.25980082154273987, + 0.32069867849349976, + 0.7367973923683167, + -0.6885999441146851, + -0.3080441951751709, + -0.0682096779346466, + -0.8121291995048523, + 0.524580717086792, + -0.015106767416000366, + -0.3387877941131592, + -0.08753025531768799, + -0.04977923631668091, + -0.193482905626297, + -0.31197598576545715, + -0.20799607038497925, + -0.5591402649879456, + -0.8130830526351929, + 0.12812775373458862, + -0.04860153794288635, + 0.7530118227005005, + 0.5467740893363953, + -3.9742281436920166, + 0.24521315097808838, + 0.3322150707244873, + -0.7732900381088257, + 0.09701894223690033, + -2.23622465133667, + 0.877794623374939, + -0.0035872310400009155, + -0.7694201469421387, + 0.40353167057037354, + -0.15053793787956238, + -0.3816526532173157, + 0.4136057496070862, + -0.9186207056045532, + 1.0388903617858887, + -0.10238230228424072, + 0.9496853351593018, + -2.616440773010254, + 0.6748550534248352, + 0.35611557960510254, + -0.011516407132148743, + 0.9547630548477173, + 0.35371747612953186, + -0.45339250564575195, + 0.2669673562049866, + -0.753591775894165, + -1.136269450187683, + 1.6609584093093872, + -0.11269987374544144, + -0.09715062379837036, + -0.3945777416229248, + -0.5183178186416626, + 0.04876518249511719, + -1.2460949420928955, + -0.5312591195106506, + -0.01078873872756958, + 0.6553707122802734, + -0.0023574382066726685, + -1.0980390310287476, + 0.09241566061973572, + -0.22464385628700256, + 0.4993973970413208, + 0.1329432725906372, + -0.005114719271659851, + 0.04624953866004944, + 1.0059795379638672, + 0.585199236869812, + -0.7248843908309937, + 0.5640662312507629, + -0.49516889452934265, + 0.6251821517944336, + -0.3277716636657715, + 0.42546477913856506, + 0.08775186538696289, + -0.29421722888946533, + 0.1596149504184723, + 0.14253948628902435, + 0.07140094041824341, + -0.10067608952522278, + 0.5526043176651001, + 0.6654608249664307, + -0.21615827083587646, + 0.1111871600151062, + 0.6708049774169922, + 0.47037720680236816, + 0.3646349310874939, + 0.0296669602394104, + -0.3893653452396393, + 0.47295957803726196, + -0.3145481050014496, + 1.5423015356063843, + 0.08273129165172577, + 0.06935387849807739, + 1.1792702674865723, + -2.1533970832824707, + 0.546649694442749, + 0.35820135474205017, + 0.08319360017776489, + 0.3273507356643677, + 0.6947463154792786, + -0.73639976978302, + 0.6806384325027466, + -0.0032656490802764893, + 0.022208333015441895, + 0.11155858635902405, + -0.8924658298492432, + -0.17537373304367065, + 0.006956827826797962, + 0.5473988056182861, + 1.5273220539093018, + 0.30151885747909546, + -0.04017403721809387, + 0.5444924831390381, + -0.5806041359901428, + -0.5293150544166565, + -0.3269847333431244, + 0.7824073433876038, + -1.1081349849700928, + -0.12669816613197327, + 0.012130722403526306, + -0.19016849994659424, + 0.09242990612983704, + 0.2921026945114136, + -0.685735285282135, + -0.5701072216033936, + 0.4596768915653229, + -0.5708339810371399, + 0.13974332809448242, + 0.09244710952043533, + 0.11290916055440903, + 0.7724436521530151, + 1.6203913688659668, + -1.1427960395812988, + -1.323879599571228, + 0.3910720944404602, + 0.6514862775802612, + 0.37360072135925293, + -0.23112040758132935, + -0.1832330822944641, + -0.904795229434967, + -0.8303227424621582, + -0.25386637449264526, + -0.6987942457199097, + 0.04455651342868805, + -0.2157524973154068, + -0.4639816880226135, + -0.9836827516555786, + 0.9242067337036133, + -0.31504175066947937, + 0.5088343620300293, + -0.487935870885849, + 0.34984534978866577, + -0.45782339572906494, + -0.5126540064811707, + 0.4160122573375702, + 0.8347499966621399, + 0.4715425968170166, + 0.4312398433685303, + -0.655453085899353, + 0.7295858860015869, + 0.07390141487121582, + 0.04841990768909454, + 0.21529480814933777, + 1.0777467489242554, + 0.11718231439590454, + -0.32276201248168945, + 0.9867739677429199, + 1.4764604568481445, + -0.0162307471036911, + 0.34071123600006104, + -0.611638069152832, + 0.37904518842697144, + 0.4659404158592224, + -0.4659457206726074, + 0.02349141240119934, + -0.07559406757354736, + 0.40404364466667175, + 0.008312508463859558, + -1.0318310260772705, + 0.22856837511062622, + 0.1394343078136444, + 0.0027174800634384155, + 0.16108758747577667, + 0.01403653621673584, + 0.3802579939365387, + 0.24873584508895874, + -0.3495364189147949, + -0.23975583910942078, + -0.5670714974403381, + -0.4651440382003784, + 0.06080436706542969, + 0.21946445107460022, + -0.11144270747900009, + -0.23139545321464539, + -0.7647784948348999, + 0.4175991117954254, + -0.7449997663497925, + 0.012739855796098709, + -1.3617558479309082, + -0.7096899151802063, + -0.3552060127258301, + -0.07149432599544525, + -0.48855060338974, + -0.63566654920578, + 0.7034087181091309, + 0.7937848567962646, + 0.5753863453865051, + -0.2852509915828705, + 0.044633299112319946, + 0.5474943518638611, + 0.2570918798446655, + 0.06916036456823349, + 0.09599845856428146, + -0.04383013769984245, + 0.5462282299995422, + 0.2984253764152527, + 0.2535339593887329, + 0.040736377239227295, + 0.204889714717865, + -0.14158675074577332, + 0.36802223324775696, + -0.42482858896255493, + -0.02795511484146118, + 0.6106919050216675, + -0.1462007462978363, + -0.5532150864601135, + -0.10524065792560577, + -0.08553719520568848, + -1.3298311233520508, + -0.15541765093803406, + -0.537937343120575, + 0.8155632019042969, + 0.9254430532455444, + 0.5559665560722351, + 0.7927652597427368, + 0.3201082944869995, + 0.47128868103027344, + -0.6540470123291016, + -1.8833746910095215, + -1.9511083364486694, + 0.4640652537345886, + -0.8397201299667358, + 0.07515037059783936, + -1.65464186668396, + -0.1738666296005249, + 0.05724459886550903, + -0.5434339046478271, + 0.3701692223548889, + -1.3979649543762207, + -0.6053990125656128, + -0.5105441808700562, + -0.5501411557197571, + -0.07938221096992493, + -0.401508629322052, + 0.6795305013656616, + 1.2127584218978882, + -0.039827097207307816, + -0.25743478536605835, + 0.819787323474884, + 0.3303307890892029, + 0.3474911153316498, + 0.6005688905715942, + 0.6477384567260742, + 0.4208900034427643, + -0.7085211277008057, + 0.13304650783538818, + -0.945400595664978, + -0.025261178612709045, + 0.0900997668504715, + 0.8956831693649292, + -0.2490396797657013, + 0.0027538537979125977, + 0.1387663334608078, + -0.17340275645256042, + -0.498347669839859, + 0.35395756363868713, + -0.6341930627822876, + -0.1372183859348297, + 1.2007874250411987, + 0.41582241654396057, + 0.7628456354141235, + -0.5351572036743164, + -0.9564297199249268, + 0.5821729302406311, + 0.2999730408191681, + -0.5223087072372437, + -0.29595422744750977, + 0.2731111943721771, + -0.15276798605918884, + 0.19272463023662567, + 0.21099388599395752, + -0.6589226722717285, + 0.04984132945537567, + -0.004681918770074844, + 0.04224946349859238, + 0.8473532199859619, + -0.21473965048789978, + -0.27889201045036316, + 0.6546024084091187, + -0.04124423861503601, + -1.5876479148864746, + -0.08553856611251831, + 0.2126561999320984, + -0.4553530514240265, + -0.3182182013988495, + 0.1751159429550171, + -0.1751185953617096, + -0.08314654231071472, + -0.0952971875667572, + -1.740492820739746, + -0.9580435752868652, + 3.031003952026367, + -19.1435546875, + -0.479636549949646, + -0.25981375575065613, + 0.608008861541748, + 0.6032131314277649, + -0.226042702794075, + 0.000978514552116394, + -0.93178790807724, + 0.5147404670715332, + -0.5182028412818909, + 0.1272171139717102, + -1.0856118202209473, + -0.09496816992759705, + 0.31569337844848633, + 0.30366864800453186, + -0.4666401147842407, + 0.5518002510070801, + 1.2738921642303467, + 0.027593642473220825, + -0.4009517729282379, + -0.598143458366394, + -0.09067763388156891, + -1.7327560186386108, + 0.10645616054534912, + -0.06379158049821854, + 0.44390609860420227, + 0.26383090019226074, + -0.9197891354560852, + 0.26531994342803955, + 0.413280725479126, + 0.2500295639038086, + 0.8615676164627075, + -0.36253321170806885, + 0.19636890292167664, + -0.3949238061904907, + -0.00830484926700592, + 0.17541755735874176, + 0.0487934947013855, + 0.6581082344055176, + -0.7619857788085938, + -0.48670434951782227, + -0.6435308456420898, + -0.19842861592769623, + 0.020475739613175392, + 0.1836276799440384, + -0.13042612373828888, + 0.11780527979135513, + 0.07586756348609924, + -0.28707319498062134, + 0.2937049865722656, + 1.593702793121338, + -0.12368810176849365, + -0.36425328254699707, + 0.9145731329917908, + 0.34653741121292114, + 0.4763047695159912, + 0.43310847878456116, + -0.2253793329000473, + -0.44507238268852234, + 1.4185370206832886, + 0.19767449796199799, + 0.4158634543418884, + -0.1361112892627716, + -0.9550121426582336, + -0.043407291173934937, + 0.15605829656124115, + -0.5371201038360596, + 2.6725056171417236, + -0.07794302701950073, + -0.435957670211792, + 0.07525748014450073, + 0.008068177849054337, + 0.29477494955062866, + 0.2946911156177521, + 0.2443130612373352, + 1.1125848293304443, + -0.3659907877445221, + -0.27097511291503906, + -0.06903760135173798, + -0.7977882027626038, + -0.19442890584468842, + -0.012625135481357574, + 0.4696289896965027, + 0.21112379431724548, + -0.2313767522573471, + -0.07320952415466309, + -0.2318630963563919, + -1.5776069164276123, + 0.724368691444397, + -0.791663408279419, + 0.11051565408706665, + -0.3245569169521332, + 2.147191047668457, + 0.346737802028656, + 0.17219802737236023, + -0.2659653127193451, + 0.14829015731811523, + -0.28271618485450745, + 0.3440825045108795, + -0.4183473289012909, + 0.0030379891395568848, + 0.4877939820289612, + 0.4937347173690796, + 0.4571058750152588, + 0.9840871691703796, + 0.7011385560035706, + 1.0844752788543701, + 0.4765753448009491, + 0.7995976805686951, + 1.2315199375152588, + -0.7018266320228577, + -1.501019835472107, + -0.2387411892414093, + 0.040335625410079956, + 0.29876673221588135, + 1.856968879699707, + -0.3332415521144867, + 0.06688184291124344, + 0.25638461112976074, + -0.5129728317260742, + -0.6889496445655823, + 0.06491196155548096, + 1.1416207551956177, + 0.27540645003318787, + -0.757008969783783, + -0.35653144121170044, + -0.711553156375885, + -0.973137378692627, + 0.21625208854675293, + -0.7764321565628052, + 0.4180278778076172, + 0.6601558923721313, + -0.1985355019569397, + 0.12674963474273682, + 0.2781749963760376, + -0.8102808594703674, + 0.2614743113517761, + 0.22816279530525208, + 0.34928831458091736, + 0.9142323136329651, + 0.5896889567375183, + 0.356769323348999, + 0.07425788044929504, + 0.8503080606460571, + -0.30445927381515503, + 3.940739870071411, + -0.4555548131465912, + -0.2349911630153656, + 0.3711749017238617, + 0.22948823869228363, + 0.868277370929718, + -0.1996268332004547, + 0.36358901858329773, + -0.5197726488113403, + -0.012560009956359863, + -0.04616083577275276, + 0.24290096759796143, + -0.41440317034721375, + -0.8066655397415161, + -1.086160659790039, + 0.4719598591327667, + 0.5114437937736511, + -0.09832844138145447, + 0.47255635261535645, + 0.5792282819747925, + 0.36104869842529297, + -0.3525817394256592, + 0.06536325812339783, + -0.2840217351913452, + -0.41751018166542053, + -0.9912695288658142, + -0.18357457220554352, + 0.4598515033721924, + -0.12440480291843414, + 0.4651394784450531, + -0.17154422402381897, + 1.1858712434768677, + -0.31615275144577026, + 0.9245343208312988, + 0.31997770071029663, + -0.3724195957183838, + -0.3622897267341614, + -0.5013670921325684, + 0.4751967191696167, + -0.7343078851699829, + -0.3570232391357422, + -0.27739131450653076, + 0.311674565076828, + 0.15137670934200287, + 0.23771782219409943, + -0.5986912846565247, + -0.0917043685913086, + 0.4252617359161377, + 0.08304008096456528, + -0.6467398405075073, + 0.03999944403767586, + -0.3716014623641968, + 0.7243109345436096, + 0.4201688766479492, + 0.5226705074310303, + 0.25514334440231323, + 0.24865314364433289, + 0.0755661278963089, + -0.35791486501693726, + 0.06263642013072968, + -0.911564826965332, + 0.8255384564399719, + 0.45690762996673584, + -0.12112730741500854, + -1.1648821830749512, + 0.8359581232070923, + 0.8693937659263611, + -0.8776324987411499, + 0.10846897959709167, + -2.5517494678497314, + -0.4896306097507477, + -0.03521111607551575, + 0.5971001982688904, + 0.8179471492767334, + -0.39542466402053833, + 0.2207946479320526, + -0.18819139897823334, + -0.6941812038421631, + -1.4695546627044678, + -0.11333418637514114, + -0.5604280233383179, + -0.6283845901489258, + 0.0591050386428833, + -0.2583441734313965, + -0.27655109763145447, + -0.5988090634346008, + 0.24968832731246948, + -0.07751786708831787, + 0.29797589778900146, + -0.23061123490333557, + 0.940205991268158, + 1.4467804431915283, + 0.361605703830719, + 1.628722906112671, + 0.4319497346878052, + 0.09832844138145447, + 0.0802382230758667, + 0.13953831791877747, + -0.7640451192855835, + -0.8137701749801636, + 0.6909164190292358, + 0.38195422291755676, + 0.2584618330001831, + -0.11770493537187576, + -0.8556927442550659, + 2.684274673461914, + 0.3977874517440796, + 0.6626265048980713, + 0.2672290802001953, + 0.0038347989320755005, + -0.618442714214325, + 2.0478172302246094, + 0.035080477595329285, + 0.2251950353384018, + 1.1328709125518799, + 0.13927556574344635, + -0.005283236503601074, + -0.19223234057426453, + 0.802148699760437, + 0.1825287938117981, + 0.2387319952249527, + 0.26361626386642456, + -0.3108459711074829, + 0.3412618935108185, + 0.05817346274852753, + 2.1459438800811768, + -0.47579529881477356, + -0.3977515697479248, + -0.0933414101600647, + -0.9856807589530945, + -0.24089479446411133, + 0.3688519597053528, + 0.14460726082324982, + -0.7734560966491699, + -0.0569169819355011, + 0.7199757099151611, + -0.21811005473136902, + 0.06535883247852325, + -0.7257564067840576, + -0.674484133720398, + -0.0497574582695961, + -0.107459157705307, + -0.29996734857559204, + -0.5697858333587646, + -1.3726563453674316, + 0.03544554114341736, + 0.31794312596321106, + 0.1777399778366089, + -0.4269368648529053, + 0.35401368141174316, + -0.5143010020256042, + 3.9767377376556396, + -3.61026930809021, + 0.002045564353466034, + 0.16997289657592773, + -0.23363816738128662, + -1.00375497341156, + -0.39954206347465515, + 4.239327430725098, + 0.5155072212219238, + -0.5038291811943054, + -0.9579260349273682, + -0.7083909511566162, + 0.7620201706886292, + -0.18812134861946106, + -0.598056435585022, + 0.10790553689002991, + 0.08702260255813599, + -0.41652339696884155, + -0.06839814782142639, + 1.6962463855743408, + -0.06072208285331726, + -0.21259969472885132, + -0.6558294296264648, + 0.5352647304534912, + -0.39792871475219727, + 0.4308973550796509, + 0.20356392860412598, + -0.401613712310791, + -0.43143197894096375, + -0.28219008445739746, + 0.44988203048706055, + 0.6631779670715332, + -0.06830081343650818, + -0.008721813559532166, + 0.7022178173065186, + -0.3090919256210327, + 0.15900875627994537, + -0.005871109664440155, + -0.6432442665100098, + 0.2062089741230011, + 1.0867369174957275, + -2.305873155593872, + -0.2902821898460388, + 0.540187656879425, + -0.0019461214542388916, + 0.6039957404136658, + 2.0443315505981445, + -2.508335590362549, + 0.14287298917770386, + -0.20566895604133606, + -0.09724196791648865, + -1.6833492517471313, + -1.8065438270568848, + 0.39678728580474854, + -0.9070848226547241, + 0.011505866423249245, + -0.10456163436174393, + -0.005087733268737793, + 0.01072053611278534, + 1.3373433351516724, + -1.3679101467132568, + -0.3268894553184509, + -0.2614385485649109, + -0.3370932638645172, + 0.6447536945343018, + -1.965384840965271, + -0.5072047710418701, + -0.15532584488391876, + 0.04445639252662659, + 1.1518070697784424, + 0.029704079031944275, + -0.0015570521354675293, + -0.06294402480125427, + -1.1905534267425537, + 0.08902350068092346, + -0.5137213468551636, + 0.9899997711181641, + 0.2551480233669281, + 0.03904421627521515, + -1.0539484024047852, + 2.3220396041870117, + -0.1837579756975174, + 1.436476469039917, + -0.23829561471939087, + -0.7731713056564331, + 0.9574203491210938, + 0.803636908531189, + -0.47118955850601196, + -0.3387092351913452, + 0.41285470128059387, + -0.08996078372001648, + -0.34536105394363403, + 0.6702005863189697, + 0.6291059255599976, + -0.3122234344482422, + 0.15898069739341736, + 0.7121239304542542, + 0.41138434410095215, + 0.894490122795105, + 0.15103864669799805, + -0.037029460072517395, + 0.02193424105644226, + -0.6567384004592896, + -0.1847524344921112, + 0.7356277704238892, + -0.5736475586891174, + 0.7432750463485718, + 0.13562101125717163, + 0.01040603220462799, + -0.40581828355789185, + 0.8664482235908508, + -0.3211628794670105, + 0.2769313454627991, + 0.4135432541370392, + 0.47225221991539, + -0.016417507082223892, + 0.4124342203140259, + 0.03416509926319122, + -0.04496678709983826, + -0.02478247880935669, + 0.9264707565307617, + 0.5982280373573303, + 0.6703004240989685, + 0.02700728178024292, + 0.39839625358581543, + 0.344628244638443, + -0.3568352460861206, + -0.34009453654289246, + 0.98179692029953, + 0.690441906452179, + 1.797677993774414, + 0.9182872772216797, + -0.1543770581483841, + 0.12425778806209564, + -0.21585509181022644, + -0.16399672627449036, + 0.6503397822380066, + 0.8490196466445923, + -0.923703134059906, + -0.2263418734073639, + 0.5748015642166138, + -0.46761390566825867, + -0.3822421133518219, + 0.20914331078529358, + 0.45014697313308716, + 0.34808847308158875, + 0.04675436019897461, + -0.036254316568374634, + 0.30054086446762085, + -0.1527860462665558, + 1.1115646362304688, + -0.7735863924026489, + 0.14481212198734283, + -0.16804014146327972, + -0.03286733105778694, + 0.809285581111908, + 0.07369435578584671, + -0.5918994545936584, + 1.048498272895813, + -1.5296106338500977, + -0.45334354043006897, + 0.4922696650028229, + -0.10654410719871521, + -0.06865471601486206, + -0.019473887979984283, + -0.12712618708610535, + -0.3334413468837738, + -0.16799849271774292, + -0.23663541674613953, + 0.2527439594268799, + 0.32670000195503235, + -0.7667524814605713, + -0.4538959860801697, + 0.4733797013759613, + -0.5923535823822021, + -0.25892746448516846, + -0.3941357731819153, + -0.04288396239280701, + -0.4832857847213745, + 0.6068799495697021, + -0.7867070436477661, + -0.9666270613670349, + -0.12466496229171753, + -2.2747585773468018, + 0.8811256885528564, + 1.8620094060897827, + -0.46351927518844604, + 0.4593691825866699, + 0.5449997186660767, + -0.4756104052066803, + 0.1447463035583496, + 0.5166714191436768, + -0.08691524714231491, + -0.5372589826583862, + -0.4836117625236511, + 0.2923716604709625, + -0.6929013729095459, + 2.8295845985412598, + -0.04997525364160538, + 0.0959150567650795, + 0.19604960083961487, + -0.3045459985733032, + 0.0984865128993988, + 0.8917883038520813, + 0.8942406177520752, + 0.34618449211120605, + -0.028530210256576538, + 0.7080342173576355, + 1.0267020463943481, + 0.7637915015220642, + -0.2947525382041931, + -0.4183424115180969, + -0.4156072735786438, + -0.10830843448638916, + 0.23130770027637482, + -0.22831815481185913, + -0.13591843843460083, + 1.4709376096725464, + 0.5113034844398499, + -0.031970202922821045, + 0.47493958473205566, + -0.37574318051338196, + -2.3520758152008057, + 0.25606435537338257, + 0.15911878645420074, + -0.09919048845767975, + -1.2078042030334473, + -0.14654004573822021, + 0.8760213255882263, + 0.8599054217338562, + 0.27937036752700806, + 0.8249287605285645, + 1.267135500907898, + -0.05815398320555687, + -0.8676239252090454, + -0.3975051939487457, + -0.1477205902338028, + -0.20480680465698242, + 2.0715768337249756, + 0.23484593629837036, + 0.19091303646564484, + 0.6590951681137085, + -0.056860774755477905, + -2.4015936851501465, + -0.19157300889492035, + -0.5454992651939392, + 1.315056562423706, + -0.11442297697067261, + -0.08377917110919952, + -0.7052064538002014, + -0.8241376876831055, + -1.3237457275390625, + 0.7446258068084717, + 0.3843647539615631, + -0.3515750467777252, + -0.49895066022872925, + -0.8015919327735901, + -0.3610665500164032, + 0.7932666540145874, + 0.6246601939201355, + 0.47675371170043945, + 1.7122001647949219, + -0.29602742195129395, + -0.5599638819694519, + 0.3089485168457031, + -0.3990062475204468, + 0.28896620869636536, + 0.8067687749862671, + 0.6222541332244873, + 0.7857779264450073, + -0.1858871579170227, + -1.2199918031692505, + -0.06257370114326477, + 0.015587031841278076, + 0.7916178703308105, + 0.03616461157798767, + 0.6485165357589722, + 1.1623605489730835, + -0.056802839040756226, + 0.9311317205429077, + -0.7932144999504089, + -0.46319058537483215, + 5.809261322021484, + 0.5159612894058228, + -0.4910752773284912, + -1.3444651365280151, + -0.3006327748298645, + -0.8456394672393799, + -0.36314094066619873, + -0.07539102435112, + -0.4448396861553192, + -0.7013760805130005, + 0.24630187451839447, + 0.5489684343338013, + 0.5885894894599915, + -0.34436023235321045, + 0.9564361572265625, + 0.05666328966617584, + -0.31850698590278625, + 0.07295235991477966, + 0.775848388671875, + 0.2707425057888031, + 0.039118945598602295, + -0.6151943206787109, + -0.5129743218421936, + 0.08655023574829102, + -0.33115968108177185, + 0.1538873016834259, + -0.18640480935573578, + 0.2814207971096039, + -0.3911280035972595, + -0.8321959972381592, + -0.3813912272453308, + -0.11539632081985474, + -0.1085934042930603, + 0.07165686786174774, + 0.02383480966091156, + -0.3164120614528656, + -0.1381850242614746, + -0.2161669135093689, + -1.3307586908340454, + 0.7573282122612, + 0.01991674304008484, + -0.8121694922447205, + -0.5316839218139648, + 0.8340656757354736, + 0.05059656500816345, + -1.078744888305664, + -1.227048397064209, + -0.09070685505867004, + -0.29919517040252686, + -0.0250251442193985, + 0.5132988095283508, + -0.367061972618103, + 0.5159652233123779, + 1.1936426162719727, + 0.5116519927978516, + 0.1292358934879303, + -0.25086069107055664, + -0.4174926280975342, + -0.45940351486206055, + -0.3561114966869354, + -0.614635705947876, + -0.25951749086380005, + -0.7051178812980652, + -0.347351998090744, + 0.35252127051353455, + 0.9654884934425354, + -0.22834323346614838, + 0.004136241972446442, + -1.2818882465362549, + -0.14279663562774658, + 0.5633350610733032, + 0.710042417049408, + -0.10094276070594788, + 0.3266732394695282, + 0.26734694838523865, + 0.8202579021453857, + -0.20046764612197876, + 0.11505407094955444, + -0.3796214759349823, + -1.7072675228118896, + 1.1339272260665894, + -0.5411139726638794, + -0.4254973530769348, + -0.9033162593841553, + -0.007596448063850403, + 0.18063923716545105, + 0.17269745469093323, + -0.3240118622779846, + -0.40746212005615234, + 0.32994669675827026, + 0.5352857708930969, + 0.9914919137954712, + -0.2670542597770691, + -0.436916708946228, + 0.0255613774061203, + 0.22005361318588257, + 0.045055001974105835, + 1.3452348709106445, + -0.06996866315603256, + -0.23753800988197327, + -0.22835245728492737, + 1.4053173065185547, + -0.1947738528251648, + 0.9229850769042969, + -0.6217947006225586, + -0.7935481071472168, + -1.8229143619537354, + -0.4019874632358551, + -1.2554115056991577, + 0.5239592790603638, + 0.7693260908126831, + -0.5009375214576721, + -0.35130926966667175, + -0.18676456809043884, + 0.18571418523788452, + 0.7115612030029297, + -0.6490879058837891, + 0.3333396315574646, + -0.3511695861816406, + -1.025054931640625, + 0.4266125559806824, + -0.1719609797000885, + -0.10743474960327148, + -0.3038548231124878, + -0.19345936179161072, + -0.5535852909088135, + -0.7049893736839294, + -0.04860130697488785, + -0.07323604822158813, + 0.13665133714675903, + 0.1348082423210144, + 1.0868741273880005, + 0.5672365427017212, + -0.3631635010242462, + -0.2858552634716034, + -0.3038281798362732, + -1.045648455619812, + -2.700803756713867, + 0.4087498188018799, + 0.29656943678855896, + 0.27168163657188416, + 0.09796766936779022, + 0.3430248200893402, + -0.022881217300891876, + -1.2256624698638916, + -0.7708479166030884, + 1.6663849353790283, + -0.4085692763328552, + 0.04587504267692566, + -0.860538899898529, + -0.02577275037765503, + 0.7858606576919556, + -0.13896331191062927, + 0.9414036273956299, + -0.09293024241924286, + -0.25571563839912415, + 4.282919883728027, + 0.0805436223745346, + -0.4049607217311859, + -0.3094194531440735, + -0.6343306303024292, + -0.02602851390838623, + -0.07943916320800781, + -1.0719573497772217, + -0.565781831741333, + 0.42781856656074524, + 0.26062673330307007, + -0.6501294374465942, + 0.34637877345085144, + 0.4826871156692505, + -0.7890718579292297, + 0.00652080774307251, + -0.22027792036533356, + -0.3714456856250763, + -0.32086774706840515, + -0.07500152289867401, + 0.13597919046878815, + 0.39392271637916565, + -0.38753625750541687, + -0.3453204929828644, + 0.24443283677101135, + -0.8874942064285278, + -0.1335325539112091, + -0.3224731385707855, + -0.14577798545360565, + -0.29275041818618774, + 0.6269583106040955, + 0.34396523237228394, + -0.5910000801086426, + -0.24051819741725922, + 0.45612794160842896, + 0.239736407995224, + 0.8460440039634705, + -0.29824894666671753, + -0.4658595621585846, + -0.07727161049842834, + 0.4222179651260376, + 0.4198954701423645, + 0.3567410707473755, + -0.6029103398323059, + -0.10002614557743073, + 0.19235646724700928, + 0.21795624494552612, + 0.4304591715335846, + 0.43887317180633545, + 0.8641389012336731, + 0.5203337669372559, + 0.04507957398891449, + 0.5357949137687683, + -0.4059502184391022, + 0.4434277415275574, + -0.00528639554977417, + 0.6872178912162781, + -2.529811382293701, + -0.16774982213974, + 0.44219595193862915, + 0.26917213201522827, + 1.2828477621078491, + -0.8146153688430786, + 0.5746958255767822, + 0.14259816706180573, + -0.203322172164917, + 0.7996957302093506, + -0.7627797722816467, + -0.41174638271331787, + 0.568374752998352, + -0.9710779786109924, + 0.9572799801826477, + 0.27877217531204224, + -0.2920830249786377, + -0.5150238275527954, + 0.33920156955718994, + -0.5691609382629395, + 0.05194300413131714, + 0.8037067651748657, + -0.23996636271476746, + 0.4847465455532074, + -0.1505354940891266, + -0.06154640391469002, + 0.7784395217895508, + 0.22108489274978638, + -0.02913222461938858, + 0.49103447794914246, + -0.2224712371826172, + 0.20646056532859802, + 0.8028627634048462, + -1.2863173484802246, + -0.9609524011611938, + -0.8427243828773499, + -0.9349255561828613, + 0.1859540194272995, + 0.015001192688941956, + -0.4080725908279419, + -0.1226150393486023, + 0.9569861888885498, + 0.5047294497489929, + -0.24802756309509277, + -0.9602177143096924, + -1.3134046792984009, + -0.24858790636062622, + 0.06370304524898529, + 0.13306590914726257, + 1.4922610521316528, + -0.20750784873962402, + 0.04343132674694061, + 0.6307517290115356, + -0.43499505519866943, + -0.3386289179325104, + -0.24782848358154297, + 0.297211617231369, + 0.3460007309913635, + 0.5132675766944885, + 0.7538159489631653, + -0.20277103781700134, + -0.24134306609630585, + 0.36296361684799194, + -1.131544828414917, + -0.1795436292886734, + -0.025465428829193115, + 0.15122318267822266, + 0.1268751621246338, + 0.6847420930862427, + 0.5837042927742004, + 0.134340301156044, + 0.08374056220054626, + -0.19229352474212646, + 0.8292991518974304, + 0.5185869932174683, + 0.3443085551261902, + 0.08614611625671387, + -0.12224699556827545, + -0.3583003282546997, + 1.2862462997436523, + -0.34311556816101074, + 0.2054966241121292, + 0.39324209094047546, + 0.10245217382907867, + 0.10638944804668427, + -0.20403838157653809, + -0.2175666093826294, + -0.39612776041030884, + 0.5374763011932373, + -0.08548754453659058, + -0.6319286823272705, + -0.22030559182167053, + -0.047279953956604004, + 0.20297390222549438, + 0.21959847211837769, + 0.27464181184768677, + -0.6240649819374084, + -0.19025510549545288, + 0.2740788757801056, + 0.6983533501625061, + -0.6869572997093201, + -0.011273413896560669, + 1.5266332626342773, + -1.1382756233215332, + -0.42174798250198364, + -0.16272154450416565, + 0.4708857238292694, + 1.17171049118042, + 0.08213089406490326, + -0.4529012143611908, + -0.8133324384689331, + -0.4356067180633545, + 0.12317787110805511, + -0.1590801626443863, + -0.5586130023002625, + -0.12584663927555084, + -0.053390681743621826, + -1.706559658050537, + -0.08428958803415298, + 0.3745681047439575, + -0.05836833268404007, + -1.8850905895233154, + -0.27613160014152527, + 0.47498956322669983, + 0.18989302217960358, + 0.5135347843170166, + 0.35919979214668274, + 0.2395518273115158, + -0.14537741243839264, + -0.17030978202819824, + -0.710720419883728, + -0.100881427526474, + -0.0366290807723999, + 0.0998539924621582, + -0.3419015407562256, + 0.7573769688606262, + -0.30628642439842224, + 0.5384089946746826, + 0.7004659175872803, + 0.593670666217804, + -0.00862160325050354, + 0.5878537893295288, + -0.23329602181911469, + 0.3906383812427521, + 0.275933176279068, + -0.26824790239334106, + -0.13879811763763428, + -0.3060799241065979, + -0.10475988686084747, + 0.24628761410713196, + -0.2971158027648926, + -0.6633191108703613, + -0.9700189232826233, + -0.1017291322350502, + 0.33993175625801086, + 0.09256447106599808, + 0.2370956838130951, + -0.4947674572467804, + 0.7153687477111816, + 0.16207967698574066, + 0.6609352231025696, + -0.7492876052856445, + -0.2182208001613617, + -0.7108150720596313, + 0.5397552847862244, + 0.2247633934020996, + -0.2657681107521057, + 0.04599335044622421, + 0.18387606739997864, + 0.5153105854988098, + 0.17496943473815918, + -0.7075588703155518, + -0.0928899347782135, + 0.12175007164478302, + -0.13737697899341583, + 0.1674584448337555, + -0.13590893149375916, + -0.12668898701667786, + -0.6083546876907349, + 1.8136717081069946, + -0.04792796075344086, + 0.5536075830459595, + 0.5147349834442139, + -0.06431138515472412, + 0.07856571674346924, + 0.2729507088661194, + 0.07123967260122299, + 0.29147475957870483, + 1.1947524547576904, + 0.528038740158081, + 0.2622535228729248, + 0.10397425293922424, + -0.4756879210472107, + 0.9420919418334961, + -0.08991280943155289, + -0.04531562328338623, + 0.4630034267902374, + 0.07382524013519287, + -0.12106919288635254, + 0.09981826692819595, + -0.747856616973877, + 0.6241725087165833, + -0.4464857578277588, + 0.378062903881073, + 1.0775971412658691, + 0.5050239562988281, + -0.039551764726638794, + 0.29411250352859497, + -0.14596015214920044, + 0.054537951946258545, + -0.014212429523468018, + 0.32309049367904663, + 0.9425118565559387, + 0.8725425601005554, + -0.13114193081855774, + -0.06692637503147125, + -0.3215819001197815, + 0.8866334557533264, + -0.24195148050785065, + -0.9582960605621338, + 0.05913850665092468, + -1.0824209451675415, + -0.6366380453109741, + 0.09764330089092255, + -0.33482369780540466, + -0.01171015202999115, + -0.5443965196609497, + 0.09453868865966797, + 0.6449990272521973, + -0.6632417440414429, + -1.3775670528411865, + -1.122445821762085, + 0.6197369694709778, + -0.43950068950653076, + -0.6432492733001709, + 0.15219539403915405, + 0.23979976773262024, + 0.04386091232299805, + -0.3640221953392029, + 0.8458807468414307, + -0.1636473387479782, + 0.6200336217880249, + 0.8635459542274475, + 0.26698726415634155, + 0.06804637610912323, + 0.19914907217025757, + 0.7208068370819092, + 1.5908451080322266, + 0.2526116371154785, + 0.1791316568851471, + -0.10142195224761963, + -0.8320522308349609, + -0.34064340591430664, + 0.3875579237937927, + -0.2485571652650833, + 0.7493550777435303, + -0.17766651511192322, + 0.026503950357437134, + -0.7402255535125732, + -0.21505428850650787, + -0.9179563522338867, + -2.1462130546569824, + 0.4336579144001007, + -1.6053065061569214, + 0.5369940996170044, + 0.5068773031234741, + -0.5022199153900146, + 0.628236711025238, + 0.5183186531066895, + -0.2731766998767853, + -0.13904720544815063, + 0.1581205129623413, + 0.0985042154788971, + -0.4472474753856659, + -0.3996485471725464, + 0.8058305382728577, + 0.8234357237815857, + 0.30641064047813416, + 0.6144198179244995, + -0.5636078119277954, + -0.06863553822040558, + 0.8096305131912231, + 0.42881232500076294, + 0.05092620849609375, + 0.40780144929885864, + 1.341208577156067, + 0.234521746635437, + 0.6365922689437866, + -0.057430997490882874, + 0.0389447957277298, + -0.19787880778312683, + -0.3662828803062439, + 0.6195852160453796, + 0.6046862006187439, + 0.5046662092208862, + 0.023487389087677002, + -0.18281522393226624, + -0.09306082129478455, + 0.21121354401111603, + 0.1754370927810669, + 0.12050943076610565, + -1.3162379264831543, + 0.2380097657442093, + 0.8993076086044312, + -0.38163384795188904, + -0.7023612856864929, + -0.5010355710983276, + -1.0514014959335327, + -1.102110743522644, + 0.09482261538505554, + -0.4674168527126312, + -0.640042781829834, + -0.5972676277160645, + -0.13199931383132935, + -0.4851210117340088, + -0.2294204831123352, + 0.2925216257572174, + 0.5944618582725525, + -0.3217979967594147, + 0.4087010622024536, + 0.003825828433036804, + 0.3192159831523895, + 1.1448497772216797, + -0.36212655901908875, + 0.1680203080177307, + -0.1571706235408783, + -1.6232540607452393, + -0.17111146450042725, + 1.3473122119903564, + -0.11425362527370453, + 0.9556845426559448, + 1.0823086500167847, + -0.07115404307842255, + 0.9611539244651794, + 0.36354732513427734, + 2.258856773376465, + 0.15570467710494995, + -0.006069615483283997, + -0.646101713180542, + -0.6239157319068909, + 0.5356754064559937, + -0.044138744473457336, + -0.48897039890289307, + 0.44938209652900696, + -0.3451753556728363, + 0.0738590657711029, + -0.5480331778526306, + 0.34334611892700195, + -0.8003193140029907, + -0.3134884834289551, + -0.25027191638946533, + -0.5852693915367126, + 0.07378403842449188, + -0.39343130588531494, + 0.3936939239501953, + -0.3993266224861145, + -0.8679237961769104, + -0.9756304025650024, + 0.5215892195701599, + 0.7277511358261108, + 0.7200636267662048, + -0.46541860699653625, + -0.4372289180755615, + -0.11658455431461334, + -0.4734936058521271, + -0.3197551369667053, + 0.31132107973098755, + -0.12940602004528046, + 1.1656595468521118, + 0.6309524178504944, + -0.3600805401802063, + 0.42309290170669556, + 0.45867761969566345, + -0.1964346170425415, + 0.272915244102478, + 1.0223455429077148, + -1.1262751817703247, + 1.2366787195205688, + -0.10804857313632965, + 0.18181033432483673, + -0.33275341987609863, + -0.30175483226776123, + 0.9502060413360596, + -2.943002462387085, + -1.1158862113952637, + -1.1731399297714233, + 0.08967983722686768, + 0.9011891484260559, + -0.12833642959594727, + -0.23766149580478668, + -0.7352457046508789, + 0.11679315567016602, + 0.7167053818702698, + -0.2721063792705536, + -0.2839691936969757, + 1.3755214214324951, + -0.5636693239212036, + -0.12225228548049927, + 0.9620831608772278, + 0.26239240169525146, + 0.27142947912216187, + -0.2237665057182312, + 0.12764054536819458, + -0.17739176750183105, + 0.14612269401550293, + -0.1700586974620819, + -0.5491186380386353, + 0.14125275611877441, + -0.3124399185180664, + -0.3562104403972626, + -0.5532320141792297, + 0.17509883642196655, + -0.3951512575149536, + -0.7507297992706299, + 0.10775747895240784, + -0.7866163849830627, + 0.9093968868255615, + -0.48363810777664185, + 0.31637755036354065, + -0.08772040903568268, + 0.4905344247817993, + -1.0307894945144653, + 1.04049551486969, + 0.3035340905189514, + -0.36393794417381287, + -0.8016045093536377, + 0.34279513359069824, + -3.8755099773406982, + -1.363832712173462, + 0.26511168479919434, + 1.6565028429031372, + -0.22707349061965942, + -0.19178831577301025, + -0.05905134975910187, + -1.7438240051269531, + -0.5172545909881592, + 0.8436137437820435, + 0.3692290484905243, + -0.4814791679382324, + 0.36329784989356995, + 0.37612196803092957, + -0.3552241325378418, + -0.2573489546775818, + 0.1737031191587448, + 0.27947619557380676, + -0.1430906057357788, + 0.6028742790222168, + -1.290513277053833, + -0.24782413244247437, + -0.25212982296943665, + -0.016022801399230957, + 0.5435165166854858, + 0.795333743095398, + -0.18917864561080933, + 0.7522522211074829, + -0.5002565383911133, + -0.3397907018661499, + -0.10350687056779861, + 0.8213133215904236, + -0.0779055804014206, + 0.34246909618377686, + 0.08166776597499847, + 0.8776202201843262, + 0.027803245931863785, + -0.14137282967567444, + -0.7637062072753906, + 0.06975318491458893, + -0.08060610294342041, + 0.30135971307754517, + 0.17001238465309143, + 0.20731720328330994, + -0.6133477687835693, + -0.21308332681655884, + -0.05876524746417999, + 0.06673645973205566, + 0.7577526569366455, + -0.1897129863500595, + 0.1633966863155365, + -0.3224690854549408, + -0.41748738288879395, + 0.1946534663438797, + -1.0089490413665771, + 0.420354425907135, + 0.4224775731563568, + -0.26834434270858765, + 0.3867328464984894, + 0.19802911579608917, + -0.3194839656352997, + -0.19064708054065704, + -0.24380578100681305, + 0.7522242665290833, + 0.08166728913784027, + 0.36008769273757935, + 0.6768491864204407, + -0.5018603801727295, + -0.2346770167350769, + -0.05567765235900879, + -0.2783661186695099, + -0.5800180435180664, + -0.7767917513847351, + -0.4061090052127838, + -0.8027091026306152, + -0.8546030521392822, + -0.4922381639480591, + 0.06363372504711151, + -0.2594437301158905, + -1.1353187561035156, + -0.1500580608844757, + 0.11050009727478027, + 0.5625486373901367, + 0.40935948491096497, + -0.08759874850511551, + 0.5161615014076233, + 0.11870065331459045, + 0.9405194520950317, + -0.019512057304382324, + 0.37964820861816406, + -0.9646175503730774, + 0.2449696958065033, + 0.0726085901260376, + 0.755867600440979, + 0.20609213411808014, + -0.4458543658256531, + 1.715571641921997, + 0.8937918543815613, + 0.3671702444553375, + -0.8065322637557983, + 0.16594091057777405, + 0.2832103371620178, + -0.3217339515686035, + -0.21759262681007385, + 0.21866436302661896, + -0.893085241317749, + 1.7059682607650757, + 0.28817683458328247, + -3.0307226181030273, + -0.3165959417819977, + 0.25009745359420776, + -0.08125297725200653, + -0.16423580050468445, + 0.35529571771621704, + -0.3251636028289795, + -0.6057056784629822, + -0.0732497051358223, + -0.4165348410606384, + -0.7855020761489868, + 0.26017531752586365, + 0.09205393493175507, + 0.6404359340667725, + -0.20040878653526306, + 0.4577532112598419, + -0.27168145775794983, + -0.14577728509902954, + 0.9592577815055847, + 0.7785893082618713, + -0.11391720175743103, + 0.7432668805122375, + -1.68735933303833, + 0.6816946268081665, + 0.2000652253627777, + 0.2603636384010315, + 1.1349728107452393, + -0.3422239422798157, + 0.5073109865188599, + 0.13459381461143494, + -0.08654148876667023, + -1.0982921123504639, + 0.14179174602031708, + 0.03491278737783432, + 0.7262904644012451, + 0.3084673285484314, + 0.14723420143127441, + 0.015422821044921875, + 0.6680812835693359, + 1.4221339225769043, + 0.12757329642772675, + 0.506712794303894, + 0.1081298291683197, + -0.13541440665721893, + 0.04817759990692139, + 0.9580097198486328, + 0.35938748717308044, + -1.0323165655136108, + 0.10652396082878113, + -0.7658243179321289, + 0.09040907770395279, + 0.17536772787570953, + 0.192920982837677, + 0.8426915407180786, + -0.16969895362854004, + -0.2123543620109558, + -0.15479344129562378, + 1.1113924980163574, + -0.540642261505127, + 0.29027873277664185, + -0.6758602261543274, + 0.9654281139373779, + 1.5487782955169678, + -0.6046797037124634, + -3.215125799179077, + -1.0095351934432983, + -0.7047477960586548, + 0.1889967918395996, + 0.14452727138996124, + -0.8029260635375977, + -0.28474533557891846, + 1.1821454763412476, + 0.5116859674453735, + 0.43638864159584045, + -0.8927156925201416, + -0.1680791676044464, + 0.24758850038051605, + -0.14076191186904907, + -0.49835777282714844, + 0.4001225233078003, + 0.24035564064979553, + -0.4539481997489929, + 0.5226466059684753, + -0.5767406225204468, + 0.4878242015838623, + -0.09274562448263168, + 0.6176339387893677, + -0.23200789093971252, + -0.5689822435379028, + -1.300390362739563, + 0.5826976895332336, + 0.06961420178413391, + -0.13793279230594635, + -0.8999040126800537, + -0.6102918982505798, + 1.3522471189498901, + 0.588509738445282, + -1.2432727813720703, + -0.0699394941329956, + 0.05858546495437622, + -0.11730538308620453, + -0.25943171977996826, + -0.2201099991798401, + -0.966966450214386, + -0.6316339373588562, + -0.7196888327598572, + 0.4081220328807831, + 0.9950647354125977, + 0.12801125645637512, + 0.07548900693655014, + -0.15985584259033203, + -0.05581170320510864, + -0.24224048852920532, + -0.18335825204849243, + 2.0785672664642334, + -0.36810624599456787, + -0.49637871980667114, + 0.5326372385025024, + 0.657812774181366, + 0.335239976644516, + 0.22698891162872314, + 0.21955305337905884, + -0.6543301939964294, + -0.17271767556667328, + 0.44837692379951477, + -0.42165741324424744, + 0.021184831857681274, + -0.13261079788208008, + -0.9546630382537842, + -0.31312352418899536, + -0.5428181886672974, + -0.8469839096069336, + 0.3565446436405182, + -0.6676163673400879, + -0.26193809509277344, + -0.20852389931678772, + 0.3486011028289795, + -0.18167875707149506, + -0.485097736120224, + 0.3326054811477661, + 0.5229178667068481, + 0.03282458335161209, + 0.9701943397521973, + 0.20748357474803925, + -1.8508882522583008, + 0.5425283908843994, + 0.2175837755203247, + -0.0064545683562755585, + 0.13058491051197052, + -0.5156497955322266, + -0.5711029171943665, + 0.5285921692848206, + -0.46330925822257996, + -0.5565111637115479, + -0.45866671204566956, + -0.09716229140758514, + 0.3552713096141815, + 0.4485167860984802, + 0.09789901971817017, + -0.03608164191246033, + 0.3357822299003601, + 0.02145707607269287, + -0.33493903279304504, + -0.7683214545249939, + -0.1974123865365982, + -0.22223174571990967, + 0.49615228176116943, + 0.18374156951904297, + 1.3068749904632568, + 0.018570929765701294, + 0.23059675097465515, + -0.2542046308517456, + 0.18976208567619324, + -2.5374319553375244, + -0.24970480799674988, + 0.9865074157714844, + -0.37879183888435364, + -1.4556407928466797, + -1.7810481786727905, + 0.8208122849464417, + -1.5338128805160522, + 0.06508408486843109, + -0.4051632285118103, + 0.6985135674476624, + 0.1034994125366211, + 0.5869872570037842, + -0.844527542591095, + -0.08671335875988007, + 0.5222479701042175, + 0.2878636121749878, + 0.6547187566757202, + -0.05921616405248642, + -0.2126653492450714, + -0.11306273937225342, + 0.05465186759829521, + 0.6252642273902893, + 0.6841390132904053, + -1.9851875305175781, + -1.017804741859436, + -0.2595250606536865, + 0.12782049179077148, + 0.7996622323989868, + -1.948734998703003, + 0.5576460361480713, + 0.7202639579772949, + -0.3467754125595093, + 1.2996313571929932, + -1.2457056045532227, + -0.9164491295814514, + 0.03541669249534607, + -0.24288266897201538, + 0.9333871006965637, + 0.8794758915901184, + -1.0126594305038452, + -0.3563932478427887, + 0.004395663738250732, + 0.2818758487701416, + -0.07231885194778442, + -0.4685541093349457, + -0.5045193433761597, + -0.9637790322303772, + -0.6729336977005005, + -0.13728779554367065, + 0.6755672693252563, + -1.4526573419570923, + -0.9503451585769653, + 0.5409933924674988, + 0.32875367999076843, + -0.7376590371131897, + -0.43306243419647217, + -0.21050727367401123, + 0.8092540502548218, + -0.2814820110797882, + -0.29975488781929016, + -1.3077692985534668, + 0.08398312330245972, + -0.0840609073638916, + 0.6259425282478333, + -0.15582427382469177, + -0.027278602123260498, + 0.03481307625770569, + 0.15511038899421692, + -0.5534986257553101, + 1.1734718084335327, + 1.2811193466186523, + -0.13417789340019226, + 0.7409998178482056, + -0.3750338554382324, + 0.18376320600509644, + -0.8229396343231201, + -0.47027602791786194, + 0.37113893032073975, + -0.14475132524967194, + 0.6844074130058289, + 0.5196301341056824, + -0.7837797403335571, + 0.45612919330596924, + -0.36155930161476135, + 0.1330397129058838, + 0.35753872990608215, + -0.1702207326889038, + 2.7535793781280518, + 0.25241583585739136, + -0.3934609293937683, + -0.4554486870765686, + 0.32627832889556885, + 0.017835497856140137, + 0.2470846027135849, + 0.7346959114074707, + -0.4878329634666443, + -1.7463726997375488, + 0.6292929649353027, + 2.0032854080200195, + -0.052890438586473465, + 0.1561587005853653, + 0.5440958142280579, + 6.279190540313721, + -1.4041674137115479, + -1.384781837463379, + 0.8195772767066956, + -0.16006654500961304, + -0.529617190361023, + -0.7944597601890564, + 1.141339659690857, + 0.6010032892227173, + -0.05414041131734848, + -2.5587306022644043, + 0.16468048095703125, + -0.14176404476165771, + -0.5307325124740601, + 0.7395018339157104, + -0.5859231948852539, + -0.39278560876846313, + 0.9421906471252441, + 0.2848964035511017, + -1.2053804397583008, + 0.5451187491416931, + -0.04259178042411804, + 1.6040213108062744, + 0.2650398015975952, + 0.5574419498443604, + -0.15955013036727905, + -0.5597937107086182, + 1.098893642425537, + 1.0971918106079102, + -0.33676469326019287, + 0.5371167659759521, + -0.4595435559749603, + -0.5962374210357666, + -0.14475025236606598, + -0.17013247311115265, + 0.3764525353908539, + 0.33649057149887085, + -0.1751275509595871, + -0.07865003496408463, + -2.1796698570251465, + -0.1490912288427353, + 0.08846952021121979, + 0.8971901535987854, + 0.5861897468566895, + -0.8604034185409546, + 0.9777987003326416, + 0.19195136427879333, + -0.17205458879470825, + -0.15234217047691345, + -0.21502843499183655, + -0.23561398684978485, + -0.49003487825393677, + -0.4726727306842804, + 0.02550634741783142, + 0.2553589344024658, + -0.430235892534256, + -0.12069287896156311, + -0.8521608114242554, + 0.47724682092666626, + -0.04484450817108154, + -0.148034006357193, + 0.8806006908416748, + 0.513424277305603, + -0.8058642148971558, + -1.190415382385254, + -0.41299474239349365, + 0.5455538034439087, + 0.019658271223306656, + -0.24748258292675018, + -1.0973848104476929, + -0.2676856517791748, + -0.7178044319152832, + -0.2975386083126068, + -2.6270923614501953, + 0.005906686186790466, + 0.2907623052597046, + 0.30052387714385986, + -0.1287791132926941, + -0.5636367797851562, + 0.44142794609069824, + -0.4781081974506378, + 0.16987895965576172, + -0.158369779586792, + -0.014428943395614624, + -0.7272855639457703, + 0.3794764578342438, + 0.01111304759979248, + -0.4230729341506958, + 0.6138055920600891, + 0.2920297384262085, + 0.2903306782245636, + -0.4143649637699127, + 0.5217649936676025, + -0.3940154016017914, + -3.5460774898529053, + 0.30913278460502625, + 0.5458576679229736, + 0.2583464980125427, + 0.18635912239551544, + -0.02890649437904358, + 0.3991277813911438, + -0.4607328772544861, + -0.2478102594614029, + 0.13292628526687622, + 1.1630510091781616, + -0.44042202830314636, + 0.08286149799823761, + 0.2119363248348236, + -0.06927434355020523, + -0.27827188372612, + -0.27850982546806335, + 0.40342235565185547, + -0.5311969518661499, + -0.20555132627487183, + -0.8750472068786621, + -0.33750414848327637, + -0.10048161447048187, + 0.1393965780735016, + -0.5322259068489075, + 0.13694116473197937, + -0.2309504747390747, + 0.07730066776275635, + 0.2871374785900116, + 0.15964053571224213, + -0.12091773003339767, + -0.5090739727020264, + 0.25017258524894714, + 0.04075303673744202, + -0.7803497910499573, + -0.37720224261283875, + -0.13188621401786804, + -0.13042902946472168, + -0.8815581798553467, + 0.06410554051399231, + -0.6258640289306641, + 0.8161208629608154, + -0.2700563669204712, + 0.12732601165771484, + 0.536712646484375, + 0.36303794384002686, + 0.6895580291748047, + 0.22302398085594177, + -0.45758551359176636, + -0.12161463499069214, + 0.373923659324646, + 0.436513215303421, + -0.048026129603385925, + 0.36667612195014954, + 0.6661703586578369, + -0.6246919631958008, + -0.8102725148200989, + 0.030750907957553864, + -0.5717172622680664, + 0.23374594748020172, + 0.23655201494693756, + 0.4699273705482483, + -0.3775596022605896, + 1.047613501548767, + -0.1573958396911621, + -0.445600301027298, + 1.0427534580230713, + -0.23876741528511047, + -0.17826829850673676, + 0.7301077842712402, + -0.16496890783309937, + 0.7495721578598022, + 0.22321850061416626, + 2.321929931640625, + 0.24807268381118774, + 0.7838372588157654, + -0.3764355778694153, + -1.2007215023040771, + -1.1089528799057007, + -0.30256587266921997, + 0.6438009738922119, + 0.2715395987033844, + -0.9494513273239136, + 0.03864841163158417, + 0.8483904004096985, + 0.11240032315254211, + 0.39025408029556274, + 0.7409743070602417, + 2.0524048805236816, + 1.2762172222137451, + -0.2213195115327835, + -0.2297029197216034, + 0.9475250840187073, + 0.056637242436409, + -0.09286081790924072, + -0.20960810780525208, + 0.1749231070280075, + -0.6975247859954834, + 0.31604769825935364, + 1.3241853713989258, + 0.09152001142501831, + 0.6231796741485596, + 0.5412635207176208, + -0.19803006947040558, + 0.05897804722189903, + 0.8404381275177002, + 0.7740734815597534, + 0.1839771866798401, + 0.15630996227264404, + -2.063493013381958, + -0.20703347027301788, + -0.4144197702407837, + 0.011765524744987488, + 0.14853698015213013, + 0.4149041175842285, + 0.7532097101211548, + -1.1670831441879272, + -0.6240173578262329, + 0.5221641659736633, + -0.922780454158783, + 0.6904295682907104, + -0.4172288477420807, + -0.42537710070610046, + 0.35286852717399597 + ], + "vector": [ + 0.015880627557635307, + 0.007046127691864967, + 0.0013465671800076962, + 0.005041386932134628, + 0.02226206287741661, + -0.03188471496105194, + 0.011977038346230984, + -0.005371276754885912, + -0.009403771720826626, + 0.007001750636845827, + -0.0035079645458608866, + -0.0004332263197284192, + 0.00015040746075101197, + -0.0038134714122861624, + 0.007593883667141199, + 0.004461341071873903, + -0.012466785497963428, + -0.003887397702783346, + -0.017726214602589607, + -0.0038662131410092115, + 0.009036082774400711, + -0.013547400012612343, + -0.0017773157451301813, + 0.007876063697040081, + -0.00820839498192072, + -0.013232378289103508, + 0.0706501230597496, + -0.0026612714864313602, + -0.0032117816153913736, + 0.009558257646858692, + -0.006054622586816549, + 0.034101493656635284, + -0.01553944032639265, + -0.00242172135040164, + -0.0010014931904152036, + 0.020563503727316856, + -0.013038025237619877, + 0.011491728946566582, + 0.008625413291156292, + -0.002619414124637842, + 0.0015809019096195698, + 0.00886357482522726, + -0.016972260549664497, + -0.016267769038677216, + -0.0003095550637226552, + 0.0006070618401281536, + 0.014121501706540585, + 0.001161340856924653, + 0.010062841698527336, + -0.0035681920126080513, + 0.00036889768671244383, + 0.04304323345422745, + 0.0010444625513628125, + 0.007914152927696705, + -0.03558133915066719, + -0.006777269300073385, + -0.005931540858000517, + -0.0036965031176805496, + 0.019593114033341408, + 0.0004728423373308033, + 0.0018595029832795262, + 0.008042062632739544, + -0.008087166585028172, + 0.025951966643333435, + -0.01102533657103777, + -0.012033926323056221, + 0.0023180758580565453, + -0.004991540219634771, + -0.02545207366347313, + -0.00551013695076108, + -0.008163576945662498, + -0.0017198218265548348, + 0.012849276885390282, + 0.0075452495366334915, + -0.0114652244374156, + -0.026584388688206673, + 0.0036935738753527403, + 2.6837804398383014e-05, + 0.02191607467830181, + 0.014861424453556538, + -0.03544330596923828, + -0.009113513864576817, + 0.015097800642251968, + 0.011198888532817364, + -0.01137014664709568, + -0.010315951891243458, + 0.011094598099589348, + -0.009198491461575031, + 0.007368661463260651, + -0.006951133720576763, + 0.007362895179539919, + 0.0024814296048134565, + 0.008187852799892426, + -0.015134725719690323, + 0.0191095769405365, + 0.05116945132613182, + -0.01460309512913227, + 0.0004681138671003282, + -0.04003944993019104, + -0.0036175509449094534, + 0.0036998153664171696, + 0.00966844242066145, + 0.026285221800208092, + 0.02147473767399788, + -0.007572024129331112, + 0.00030798689112998545, + 0.006759602576494217, + 0.0045525189489126205, + 0.01800401508808136, + -0.012697947211563587, + 0.004295684397220612, + -0.001574820838868618, + 4.7700483264634386e-05, + -0.007474397774785757, + -0.008746693842113018, + -0.010344480164349079, + -0.007039531134068966, + 0.00452010752633214, + -0.004345029126852751, + -0.004518871661275625, + -0.020282477140426636, + -0.010734237730503082, + -0.03374483808875084, + -0.0035934457555413246, + -0.005413037724792957, + 0.026600228622555733, + -0.00025796855334192514, + 0.0015869757626205683, + 0.009215034544467926, + -0.011161740869283676, + -0.01835857331752777, + 0.021724678575992584, + -0.0006761600379832089, + -0.0032259183935821056, + -0.029308516532182693, + -0.01759343221783638, + -0.0022582444362342358, + 0.01027002278715372, + 0.0018158105667680502, + 0.004836220294237137, + -0.009558729827404022, + -0.0013029996771365404, + 0.02432762272655964, + -0.0055900816805660725, + -0.009249303489923477, + 0.003371360246092081, + 0.0076238857582211494, + -0.013619043864309788, + 0.0016267378814518452, + -0.022067274898290634, + -0.004422996658831835, + -0.000495361047796905, + 0.006567629985511303, + 0.01777169480919838, + -0.005706555675715208, + -0.02637113817036152, + 0.004002649337053299, + 0.009184552356600761, + 0.00020787680114153773, + 1.7900321836350486e-05, + 0.008350342512130737, + -0.006296580191701651, + -0.01644238829612732, + -0.012876381166279316, + 0.004735175054520369, + 0.0054525164887309074, + 0.015655390918254852, + 0.026501426473259926, + 0.017827264964580536, + -0.0046499646268785, + -0.00975937582552433, + 0.012630256824195385, + 0.033685918897390366, + 0.003179003717377782, + -0.0028340788558125496, + 0.0041765132918953896, + 0.025822805240750313, + -0.0061741904355585575, + -0.006101808976382017, + -0.009427830576896667, + -0.011523929424583912, + -0.004993511363863945, + 0.00696840975433588, + 0.006300745997577906, + -0.0026493777986615896, + 0.00041050196159631014, + -0.0012578938622027636, + -0.0027208582032471895, + 0.0009908509673550725, + 0.007451236248016357, + -0.01126272976398468, + -0.014759747311472893, + -0.028083276003599167, + -0.0110991345718503, + 0.00338281923905015, + 0.0012706900015473366, + 0.04787881299853325, + 0.0012564013013616204, + 0.016548022627830505, + -0.0005360560608096421, + -0.04909517988562584, + 0.0003398599219508469, + 0.02159520983695984, + -0.012670700438320637, + -0.017541371285915375, + 0.01781177520751953, + 0.0014344853116199374, + -0.0505162850022316, + -0.02983294054865837, + 0.00713336281478405, + -0.008305134251713753, + -0.0005171220982447267, + 0.006403539329767227, + -0.002339144004508853, + -0.008463719859719276, + -0.005268306937068701, + -0.0007395289721898735, + 0.002938243094831705, + -0.005385435651987791, + 0.012095891870558262, + 0.012004047632217407, + -0.0033011746127158403, + -0.014994803816080093, + 0.0038412550929933786, + -0.03436257690191269, + 0.052594516426324844, + 0.017027713358402252, + 0.010169140994548798, + -0.006896637845784426, + -0.012538999319076538, + -0.003179677063599229, + -0.005070356652140617, + 0.017117995768785477, + 0.06879720836877823, + -0.018875015899538994, + 0.0018706682603806257, + 0.006558103021234274, + 0.007020398508757353, + 0.0018705680267885327, + -0.01875179074704647, + -0.014911510981619358, + 0.02361033856868744, + -0.010574701242148876, + 0.08054423332214355, + 0.002186280908063054, + -0.012732830829918385, + 0.025618551298975945, + 0.011963596567511559, + -0.026996629312634468, + -0.004279542714357376, + 0.00811893679201603, + 0.046142566949129105, + 0.0060517629608511925, + -0.013145120814442635, + 0.00797489657998085, + -0.00974055752158165, + -0.014752806164324284, + 0.010102391242980957, + -0.002376775024458766, + 0.005735170561820269, + 0.014921044930815697, + 0.007026126142591238, + -0.02451450563967228, + -0.0049586170352995396, + -0.020680677145719528, + -0.0008935906225815415, + 0.00631133234128356, + 0.022785335779190063, + -0.002318905433639884, + 0.014848736114799976, + -0.0020534133072942495, + -0.016828102990984917, + -0.0006037437124177814, + 0.016318175941705704, + 0.01633392833173275, + -0.004519061651080847, + -0.010319085791707039, + 0.0032859144266694784, + -0.010809017345309258, + -0.008616593666374683, + 0.015299228951334953, + -0.005991959013044834, + -0.008920162916183472, + 0.008757133968174458, + -0.00633823499083519, + -0.010564484633505344, + -0.0006444058381021023, + -0.00949031300842762, + -0.0034466106444597244, + -0.003266548039391637, + 0.01036116760224104, + 0.024674104526638985, + 0.023621534928679466, + 0.0035328890662640333, + 0.0012001062277704477, + -0.004114561714231968, + 0.01622568443417549, + 0.013629471883177757, + -0.017664320766925812, + 0.009775443933904171, + -0.006973872426897287, + -0.014502391219139099, + 0.0055548963136971, + 0.001303791650570929, + 0.010885046795010567, + -0.0035517506767064333, + -0.0018942252499982715, + 0.019572565332055092, + 0.00774830486625433, + 0.016367312520742416, + 0.003961826208978891, + -0.0009925566846504807, + -0.013326233252882957, + -0.003917884547263384, + 9.308859443990514e-05, + -0.012298885732889175, + -0.0031132772564888, + -0.010063361376523972, + -0.011770571582019329, + -0.01197068765759468, + -0.005308746360242367, + -0.007518484722822905, + 0.006922300439327955, + -0.0118957394734025, + -0.007771818432956934, + -0.0055368514731526375, + -0.005785096436738968, + 0.012121121399104595, + -0.011108728125691414, + -0.01553519070148468, + 0.005813846364617348, + 0.002999326214194298, + 0.006323539651930332, + -0.018886180594563484, + 0.0036980274599045515, + -0.00934627652168274, + 0.024157090112566948, + 0.00394961005076766, + 0.00041737357969395816, + -0.015788497403264046, + 1.108939522964647e-05, + -0.015228874050080776, + 0.004401928745210171, + 0.04269970953464508, + 0.01364114135503769, + 0.0024971815291792154, + -0.02824135310947895, + 0.0031398185528814793, + 0.0033663539215922356, + -0.0019770809449255466, + -0.0004886656533926725, + -0.004729340318590403, + -0.010554692707955837, + -0.004705187398940325, + -0.01934266835451126, + -0.005485374014824629, + -0.009105462580919266, + 0.01711905188858509, + -0.007189224008470774, + 0.005438867025077343, + -0.0067782592959702015, + 0.0346427857875824, + 0.004983891732990742, + -0.007754660677164793, + -0.0087708355858922, + 0.00494858343154192, + -0.008720913901925087, + 0.0022366121411323547, + -0.054517053067684174, + -0.005443524103611708, + 0.012440170161426067, + -0.007625422440469265, + 0.0005169917130842805, + -0.050635699182748795, + -0.0021972516551613808, + 0.015755565837025642, + -0.004385816864669323, + 0.006642966531217098, + -0.011284127831459045, + 0.0038749545346945524, + 0.0017867679707705975, + 0.003435488324612379, + -0.028690649196505547, + -0.007021977566182613, + 0.006031387951225042, + -0.005619063973426819, + 0.004153725225478411, + 0.003029740648344159, + 0.015350663103163242, + -0.006549219135195017, + 0.012358603999018669, + -0.001303158001974225, + -0.007065161596983671, + 0.024818312376737595, + 0.029864972457289696, + 0.015386234037578106, + -0.0019866758957505226, + -0.027501920238137245, + -0.006325901951640844, + -0.005696170497685671, + -0.000250909011811018, + 0.005161323118954897, + -0.002290666103363037, + 0.00714935502037406, + -0.009140009060502052, + -0.004972638096660376, + -0.004478454124182463, + 0.0010029751574620605, + -0.011749383062124252, + -0.00941255409270525, + -0.01180553063750267, + 0.016786418855190277, + 0.004095125012099743, + 0.018294086679816246, + 0.007624452002346516, + -0.004223186522722244, + 0.004739977419376373, + 0.001874388544820249, + 0.0409981869161129, + 0.014098292216658592, + 0.01288799662142992, + 0.019459139555692673, + -0.016751278191804886, + 0.017716174945235252, + 0.010903315618634224, + 0.0002263614587718621, + -0.007405977696180344, + 0.011588587425649166, + -0.019256267696619034, + 0.0026088152080774307, + 0.026044286787509918, + -0.0034512244164943695, + -0.004151794593781233, + 0.010989280417561531, + -0.006744483020156622, + -0.009844881482422352, + 0.011653024703264236, + -0.005862488877028227, + -0.009897586889564991, + 0.001325933262705803, + 0.007945628836750984, + 0.005499581806361675, + -0.002773750340566039, + 0.02127741649746895, + 0.001962332520633936, + -0.024862170219421387, + -0.007280838210135698, + 0.03362472355365753, + -0.012709399685263634, + -0.03260965272784233, + 0.00042629666859284043, + 0.0007771772798150778, + -0.012591177597641945, + -0.006875037215650082, + -0.01843556948006153, + -0.003082488663494587, + 0.0018871088977903128, + 0.0041535645723342896, + 0.00438337679952383, + 0.0010180127574130893, + -0.006497780792415142, + 0.001378999906592071, + 0.017603954300284386, + 0.0037497624289244413, + -0.006488247774541378, + -0.01147423405200243, + 0.007844868116080761, + 0.006211614701896906, + -0.005234678741544485, + -0.03574905917048454, + 0.008436156436800957, + 0.003510907059535384, + 0.008667788468301296, + -0.004876305349171162, + 0.01768256537616253, + 0.009767957963049412, + -0.0013065513921901584, + -0.00011031029862351716, + 0.00025215884670615196, + -0.004182951059192419, + 0.0007366929785348475, + 0.007290246430784464, + -0.006165798753499985, + -0.017829252406954765, + 0.009960221126675606, + -0.006946898065507412, + 0.02517705038189888, + -0.011535757221281528, + 0.029706796631217003, + -0.00027521129231899977, + 0.00140833156183362, + 0.013807362876832485, + -0.01939162239432335, + -0.0067568435333669186, + 0.006612664088606834, + 0.00482727587223053, + -0.0011800284264609218, + -0.002703940263018012, + 0.0008301388588733971, + -0.014485500752925873, + -0.021166199818253517, + 0.0007373317494057119, + 0.00992465578019619, + 0.01793689653277397, + -0.009314707480370998, + 0.004017391242086887, + -0.006055157631635666, + -0.004072013311088085, + -0.014808835461735725, + 0.010860045440495014, + -0.017232226207852364, + -0.0038885425310581923, + -0.0072439550422132015, + 0.003933530300855637, + -0.0010373055702075362, + 0.014064028859138489, + 5.506071465788409e-05, + -0.0047845919616520405, + 0.0034529385156929493, + -0.008849289268255234, + 0.0010774490656331182, + -0.006144396029412746, + -0.006363149732351303, + -0.033551305532455444, + 0.00231839157640934, + 0.0055251638405025005, + -0.016565412282943726, + -0.004214686341583729, + 0.005028110463172197, + 0.0208484698086977, + -0.0030961697921156883, + 0.00443548196926713, + -0.0015337351942434907, + 0.0014473311603069305, + -0.0019064174266532063, + 0.0007706358446739614, + 0.010370992124080658, + -0.019471032544970512, + 0.003348750527948141, + -0.009451569058001041, + 0.002743178280070424, + 0.015875499695539474, + 0.0025982402730733156, + 0.008050396107137203, + -0.010697750374674797, + 0.010631280951201916, + 0.02590920403599739, + 0.01527620479464531, + -0.008573455736041069, + -0.003384728217497468, + -0.0020532377529889345, + 0.015354307368397713, + -0.07810995727777481, + 0.013752195984125137, + -0.02179715223610401, + 0.003546719439327717, + -0.00019025908841285855, + 0.00861685536801815, + 0.008022372610867023, + 3.8915233744774014e-05, + 0.015744607895612717, + 0.008389587514102459, + -0.009635869413614273, + -0.011265121400356293, + 0.005098540335893631, + 0.007309361826628447, + -0.003583610290661454, + -0.01411075983196497, + 0.005507662892341614, + 0.007577930111438036, + -0.00023355567827820778, + -0.009380040690302849, + -0.014244945719838142, + 0.0076566655188798904, + 0.0044554900377988815, + -0.0007113947067409754, + 0.0028770165517926216, + 0.014054722152650356, + 0.02035311609506607, + 0.020570984110236168, + 0.00027862819842994213, + 0.013602386228740215, + -0.007164840120822191, + -0.022095192223787308, + -0.010018042288720608, + -0.008366400375962257, + 0.03296675533056259, + -0.004350954666733742, + 0.0005651022074744105, + -0.0025892890989780426, + 0.011435509659349918, + 0.02232097089290619, + -0.02194163016974926, + 0.0022107369732111692, + 0.015637574717402458, + 0.009627830237150192, + 0.010323233902454376, + 0.00024495701654814184, + -0.016347505152225494, + 0.016729053109884262, + 0.00393998809158802, + -0.013291235081851482, + 0.012251756154000759, + -0.005860255565494299, + -0.014683619141578674, + 0.006594029255211353, + 0.005720661953091621, + 0.005197202321141958, + 0.006611823569983244, + 0.024281738325953484, + -0.001370826386846602, + 0.0026329185348004103, + -0.016055148094892502, + 0.003661755006760359, + -0.0028694344218820333, + 0.02643478475511074, + -0.009864448569715023, + 0.00029365569935180247, + 0.014638485386967659, + -0.007939551025629044, + -0.018148774281144142, + -0.0038824831135571003, + -0.00654930155724287, + 0.007863277569413185, + -0.0062744212336838245, + 0.007907072082161903, + -0.010794810019433498, + -0.0001417544117430225, + -0.0018782527185976505, + -0.00023415246687363833, + -0.009602885693311691, + 0.026599779725074768, + -0.001858290983363986, + -0.003213256597518921, + -0.0073832059279084206, + -0.012406774796545506, + -0.0036179069429636, + 0.00572856143116951, + 0.009060840122401714, + 0.0027874871157109737, + 0.007970490492880344, + -0.0020357395987957716, + -0.005117363762110472, + 0.025895729660987854, + -0.03603493422269821, + -0.005465388298034668, + 0.006333087105304003, + -0.01483782846480608, + -0.00999570731073618, + 0.01704540103673935, + 0.006330819800496101, + -0.015390608459711075, + 0.009602086618542671, + -0.011645814403891563, + -0.010790248401463032, + -0.006180014461278915, + -0.0067066410556435585, + 0.029753588140010834, + -0.02681131847202778, + -0.02466416358947754, + -0.007309389766305685, + 0.008403649553656578, + 0.016898367553949356, + 0.016853749752044678, + 0.0029722147155553102, + 0.04799400269985199, + -0.0159769244492054, + 0.020562781020998955, + -0.0030281946528702974, + -0.009392383508384228, + -0.014175308868288994, + 0.0017650709487497807, + -0.007106146775186062, + -0.0019915862940251827, + -0.009646585211157799, + 0.002305875765159726, + -0.0038518619257956743, + 0.01922914758324623, + 0.00917256809771061, + 0.008250949904322624, + 0.0058709969744086266, + 0.0004125468840356916, + 0.010660373605787754, + 0.006976958364248276, + -0.005409738048911095, + -0.0003108402597717941, + 0.008066914044320583, + -0.005895680747926235, + -0.017633702605962753, + -0.01782388798892498, + 0.02204299159348011, + -0.017923910170793533, + 0.022319305688142776, + -0.007066069636493921, + 0.003312287852168083, + 0.011332476511597633, + 0.011996990069746971, + -0.011891770176589489, + -0.01434660516679287, + -0.010267963632941246, + -0.001166586996987462, + 0.00748026417568326, + 0.0011652946704998612, + -0.0014421063242480159, + -0.025714626535773277, + -0.01799287647008896, + -0.008288762532174587, + 0.00967532116919756, + 0.0036703769583255053, + 0.020785745233297348, + 0.011368646286427975, + -0.0072553385980427265, + -0.001954811392351985, + -0.007532323244959116, + 0.011052524670958519, + 0.0085065346211195, + -0.03401831537485123, + -0.007236079778522253, + 0.000966415274888277, + -0.008276167325675488, + -0.003755677491426468, + 0.01224503293633461, + -0.00484697287902236, + -0.006562691181898117, + 0.001033487031236291, + -0.021557241678237915, + 0.021638771519064903, + 0.0019656321965157986, + -0.010335859842598438, + 0.002989354310557246, + 0.00374276889488101, + -0.00421206234022975, + 0.0007182353874668479, + -0.003975053783506155, + 0.005006938707083464, + 0.0078103081323206425, + -0.05073762312531471, + 0.006758007220923901, + -0.003401651978492737, + -0.00354378717020154, + -0.007083203177899122, + 0.013777473010122776, + -0.0303290206938982, + -0.00865792017430067, + 0.025559445843100548, + -0.010826858691871166, + -0.0027388606686145067, + 0.02556738816201687, + -0.024983743205666542, + 0.010266739875078201, + 0.005188055336475372, + -0.033203136175870895, + 0.014626089483499527, + -0.001438518287613988, + 0.0009114986751228571, + 0.011807930655777454, + 0.010726830922067165, + -0.005448949057608843, + -0.0016959186177700758, + 0.0029783244244754314, + 0.005677809938788414, + 0.013212515041232109, + -0.01633247174322605, + 0.008472251705825329, + 0.00406485004350543, + -0.009029584005475044, + 0.0006993477582000196, + -0.0021979613229632378, + 0.007384899538010359, + -0.010617716237902641, + 0.005359036847949028, + -0.00742261903360486, + 0.006449802312999964, + 0.00455252081155777, + -0.028231963515281677, + -0.0019460187759250402, + -0.006251865532249212, + 0.027151891961693764, + 0.004273163620382547, + 0.023915383964776993, + -0.013837048783898354, + 0.014993144199252129, + 0.0018191507551819086, + -0.010365714319050312, + -0.005957536865025759, + -0.005876112729310989, + -0.00937612820416689, + -0.0066420529037714005, + 0.004429619759321213, + -0.0067819394171237946, + -0.010994684882462025, + -0.019946971908211708, + 0.019718604162335396, + -0.007638941984623671, + -0.013276898302137852, + -0.019301902502775192, + 0.0010031991405412555, + 0.018527070060372353, + -0.014479153789579868, + 0.0018842146964743733, + 0.01464182510972023, + 0.002010630676522851, + 0.0019866940565407276, + 0.0032691536471247673, + -0.0006972894771024585, + -0.008279839530587196, + -0.004717840347439051, + -0.010906415991485119, + 0.006295325700193644, + 0.0581173449754715, + 0.01566735841333866, + -0.013705329969525337, + 0.00898866169154644, + -0.02600654773414135, + 0.026627836748957634, + 0.015031815506517887, + -0.017529433593153954, + 0.0004994279006496072, + -0.010866468772292137, + -0.011323017999529839, + 0.013529624789953232, + -0.025094283744692802, + 0.007309041917324066, + -0.006519991438835859, + 0.00024514153483323753, + 0.006885637529194355, + 0.0021112756803631783, + 0.015906205400824547, + -0.015339563600718975, + -0.016082976013422012, + -0.0006789290928281844, + 0.0014664174523204565, + 0.0004605713183991611, + -0.012494420632719994, + 0.021685216575860977, + -0.015573076903820038, + -0.0029774620197713375, + 0.025044679641723633, + -0.017190832644701004, + 0.006527254823595285, + 0.001292601926252246, + 0.011925905011594296, + -0.006632052827626467, + 0.00036380061646923423, + 0.0022292681969702244, + 0.009436934255063534, + -0.014462176710367203, + -0.001296967500820756, + 0.003805262502282858, + -0.006280340254306793, + -0.015960006043314934, + 0.018988406285643578, + 0.019515765830874443, + 0.004724477883428335, + 0.009532776661217213, + 0.013481510803103447, + 0.0021915363613516092, + -0.003777259262278676, + -0.01781483367085457, + 0.014493072405457497, + 0.0007233804208226502, + 0.007534426636993885, + 0.0029443695675581694, + -0.007938751950860023, + -0.00621316721662879, + -0.01692686229944229, + 0.004691054578870535, + -0.004384730011224747, + -0.015151023864746094, + -0.004046754911541939, + -0.004582501947879791, + -0.0031415161211043596, + -0.0018484564498066902, + -0.004366638604551554, + -0.005426356568932533, + 0.005747688468545675, + -0.06305012106895447, + 0.008300290443003178, + 0.007158536929637194, + 0.004728398285806179, + -0.008703114464879036, + 0.01235118880867958, + -0.0073855286464095116, + 0.00743985828012228, + -0.012710674665868282, + 0.007718132808804512, + 0.006346060428768396, + 0.0015788552118465304, + -0.015700465068221092, + 0.013276302255690098, + 0.023906100541353226, + 0.006557180546224117, + 0.011629757471382618, + 0.011931471526622772, + -0.004495350643992424, + -0.0071508134715259075, + 0.009305493906140327, + -0.00649539940059185, + 0.006039153318852186, + 6.189182749949396e-05, + -0.007698690984398127, + 0.037609394639730453, + -0.010974298231303692, + -0.012206247076392174, + 0.002449566964060068, + -0.01682870276272297, + 0.003923733253031969, + 0.0037260225508362055, + 0.00529826944693923, + -0.014323333278298378, + 0.01980488933622837, + -0.03132821246981621, + 0.0031777098774909973, + -0.001252482645213604, + -0.0047742691822350025, + -0.017041627317667007, + 0.006572175770998001, + 0.007430725730955601, + -0.0057794093154370785, + -0.0010309512726962566, + -0.012415336444973946, + 0.010550487786531448, + 0.0008960967534221709, + -0.04655403271317482, + -0.005243248306214809, + 0.014610977843403816, + 0.005516708828508854, + 0.006929396651685238, + -0.006232811603695154, + -0.03922618180513382, + 0.011343436315655708, + 0.017999283969402313, + 0.003469793125987053, + 0.005173419136554003, + 0.013009542599320412, + 0.01835719309747219, + -0.0007387885707430542, + -0.008651833981275558, + 0.015386246144771576, + -0.0004184153804089874, + 0.003843854647129774, + 0.0015774392522871494, + -0.013532130047678947, + 0.0010783742181956768, + -0.008126823231577873, + 0.008508245460689068, + -0.002985980361700058, + -0.02623569779098034, + -0.003918954636901617, + -0.006309908349066973, + -0.0028010327368974686, + -0.014834646135568619, + -0.005790164228528738, + 0.0062273177318274975, + 0.014840617775917053, + 0.007251518778502941, + -0.008380159735679626, + 0.005063353106379509, + -0.011395764537155628, + -0.003908864688128233, + 0.013443819247186184, + -0.0002706650993786752, + -0.010724203661084175, + 0.006621338427066803, + -0.008094647899270058, + 0.015235495753586292, + -0.016031913459300995, + -0.0005834841867908835, + -0.0016602210234850645, + 0.0016375365667045116, + -0.0004135191556997597, + -0.002308460883796215, + -0.0016865774523466825, + 0.0007569526205770671, + -0.016776783391833305, + -0.03320331126451492, + 0.002731040585786104, + -0.0016035051085054874, + 0.009883967228233814, + -0.0012713456526398659, + -0.018925493583083153, + 0.011942928656935692, + 0.028707826510071754, + 0.008274100720882416, + 0.011035856790840626, + 0.008357144892215729, + 0.0028260124381631613, + 0.06881920993328094, + 0.0026817063335329294, + 0.026137545704841614, + -0.005030698608607054, + 0.000593930424656719, + -0.0010770701337605715, + 0.022680364549160004, + -0.013019820675253868, + 0.011141102761030197, + -0.0069023496471345425, + 0.010401715524494648, + 0.017223617061972618, + 0.0016754289390519261, + 0.013637976720929146, + 0.023765288293361664, + -0.01937619037926197, + -0.012778297066688538, + 0.00818764790892601, + 0.009454714134335518, + 0.0015345682622864842, + -0.029407644644379616, + 0.005379702430218458, + -0.002861133310943842, + -0.008764366619288921, + 0.0022067460231482983, + -0.04293984919786453, + 0.003303940175101161, + 0.0036267517134547234, + -0.00495172617956996, + 0.0016866225050762296, + -0.01401526015251875, + -0.0036266122478991747, + 0.003996358718723059, + -0.006494144443422556, + -0.006857672240585089, + -0.0074074422009289265, + 0.008844409137964249, + 0.0225200392305851, + 0.0008430239977315068, + 0.004462873097509146, + -0.01471176277846098, + -0.0008252314291894436, + 0.002203243086114526, + -0.00017466802091803402, + -0.028640851378440857, + 0.010749652981758118, + 0.004598503932356834, + 0.01306148525327444, + -0.020686574280261993, + 0.004779801703989506, + -0.00929802842438221, + 0.01227306667715311, + 0.01826157420873642, + -0.003847370622679591, + 0.021541818976402283, + 0.0008367954287678003, + 0.024913568049669266, + 0.008201416581869125, + 0.006162659265100956, + 0.03940754383802414, + 0.018385183066129684, + -0.00970498751848936, + -0.010649931617081165, + 0.016205132007598877, + 0.00017044050036929548, + -0.002731659449636936, + 0.011805805377662182, + 0.0027969132643193007, + -0.0038294352125376463, + 0.014570720493793488, + 0.004732975736260414, + -0.003770292503759265, + -0.009702056646347046, + 0.008282698690891266, + -0.0031250861939042807, + 0.02357197180390358, + 0.009767921641469002, + -0.005864526145160198, + 0.01101693045347929, + -0.007721268571913242, + -0.018509970977902412, + 0.0056508504785597324, + -0.0035887467674911022, + 0.023407308384776115, + -0.006273148115724325, + -0.0017511581536382437, + 0.007030950393527746, + 0.010034591890871525, + -0.00044906261609867215, + -0.0010437214514240623, + 0.00724861491471529, + 0.0056457421742379665, + -0.014214611612260342, + -0.002893852535635233, + -0.004749953746795654, + -0.013866678811609745, + 0.0015789307653903961, + 0.0014902995899319649, + 0.030550777912139893, + -0.005352330859750509, + -0.010826637037098408, + 0.0013082921504974365, + -0.005269714165478945, + 0.01577143929898739, + 0.00023626162146683782, + 0.0061386204324662685, + -7.937185000628233e-05, + -0.0074877506121993065, + 0.002958059310913086, + -0.010671704076230526, + 0.003212894778698683, + -0.009452966041862965, + -0.01975684054195881, + -0.004057179670780897, + 0.01573958434164524, + -0.0187594722956419, + 0.019177118316292763, + -0.007516805082559586, + 0.006899998523294926, + 0.008723628707230091, + 0.007221757434308529, + 0.013463116250932217, + -0.012329732067883015, + -0.02379990555346012, + -0.0066830432042479515, + 0.01890767365694046, + 0.004937466699630022, + -0.010958432219922543, + 0.003841508412733674, + 0.010277766734361649, + -0.04258614033460617, + 0.023333346471190453, + 0.0038250668440014124, + 0.004224870353937149, + 0.008022768422961235, + -0.0026011241134256124, + -0.009382934309542179, + -0.012395878322422504, + -0.0003608427650760859, + 0.0003983408969361335, + 0.014096013270318508, + -0.014377825893461704, + 0.05010078102350235, + -0.005372192244976759, + -0.002090282505378127, + -0.007097454741597176, + -0.0152174923568964, + -0.02240457944571972, + -0.014668021351099014, + -0.0023412653245031834, + -0.019818268716335297, + -0.003997910302132368, + 0.005017233081161976, + 0.011576488614082336, + 0.0003720065578818321, + 0.014109830372035503, + 0.013190289959311485, + -0.020943230018019676, + 0.008464197628200054, + 0.007011245004832745, + 0.03554268926382065, + 0.011728133074939251, + -0.023762736469507217, + 0.01208469644188881, + -0.00501448567956686, + -0.0037492236588150263, + 0.00189745775423944, + 0.011204901151359081, + 0.018094835802912712, + -0.006978597026318312, + 0.0015833809738978744, + 0.007840490899980068, + 0.012598137371242046, + 0.0023435463663190603, + 0.0051875547505915165, + 0.03673451021313667, + -0.017726080492138863, + 0.0057186828926205635, + 0.012833322398364544, + -0.007779263891279697, + -0.0008673366392031312, + -0.0004611280164681375, + -0.0030230889096856117, + 0.01825069636106491, + 0.027979401871562004, + 0.0015599034959450364, + -0.00020622789452318102, + 0.00034989547566510737, + -0.007720537483692169, + -0.005157319828867912, + -0.0029681988526135683, + -0.0015803718706592917, + 0.003941318951547146, + 0.0026174967642873526, + -0.002906233537942171, + -0.006017028354108334, + -0.0026363623328506947, + -0.007003063801676035, + 0.0008522653952240944, + -0.0013798802392557263, + 0.027905385941267014, + -0.012390903197228909, + 0.0005208543152548373, + 0.0004348664078861475, + -0.003423915011808276, + 0.006883727386593819, + 0.006691585294902325, + -0.0027872007340192795, + -0.009845143184065819, + -0.0024809143505990505, + 0.000556074024643749, + -0.007111800834536552, + 0.008656607940793037, + -0.012715269811451435, + 0.004840061068534851, + -0.006242081988602877, + 0.0019433248089626431, + -0.004377959296107292, + -0.0003695774357765913, + -0.004545609001070261, + -0.0021520412992686033, + 0.001564624486491084, + -0.005916419439017773, + -0.010461964644491673, + -0.0041190944612026215, + 0.0042860060930252075, + 0.0089021697640419, + -0.04859784245491028, + -0.00290908245369792, + 0.0011774071026593447, + -0.015764158219099045, + 0.007426995784044266, + -0.0020504705607891083, + 0.014562409371137619, + 0.014538426883518696, + 0.009753461927175522, + -0.01003477443009615, + 0.010462414473295212, + 0.0007126066484488547, + -9.599253826308995e-05, + 0.012556896544992924, + -0.00236444640904665, + 0.0023098124656826258, + -0.010857359506189823, + -0.02198641560971737, + 0.003700551576912403, + -0.005287522450089455, + 0.0020599171984940767, + 0.002221150090917945, + -0.005432257428765297, + -0.0008142466540448368, + 0.0076355235651135445, + -0.03232469782233238, + 0.008336744271218777, + 0.00431152805685997, + -0.006967606488615274, + 0.0027057062834501266, + 0.005083663389086723, + 0.004301148932427168, + -0.014342029578983784, + 0.0039871083572506905, + 0.016665121540427208, + 0.016227073967456818, + 0.005191376432776451, + 0.018881959840655327, + 0.03066568449139595, + -0.014845333993434906, + 0.013629721477627754, + -0.012701774947345257, + -0.026630420237779617, + -0.01043572835624218, + -0.008270373567938805, + -0.002883884822949767, + 0.003657091408967972, + -0.0025253607891499996, + 0.002176424954086542, + -0.0016337042907252908, + 0.0071184211410582066, + -0.010156451724469662, + 0.010678690858185291, + 0.001522435573861003, + -0.005574320908635855, + -0.018290840089321136, + 0.0021470726933330297, + 0.027036838233470917, + -0.00022703406284563243, + 0.010230522602796555, + 0.020266307517886162, + -0.008725488558411598, + -0.011506094597280025, + -0.0008439611410722136, + 0.019440650939941406, + -0.0021814738865941763, + 0.003975952975451946, + 0.003025009762495756, + 0.02496718056499958, + -0.0013802124885842204, + 0.03403645008802414, + 0.008664729073643684, + -0.014864923432469368, + 0.014248690567910671, + 0.012225518934428692, + 0.0058189393021166325, + -0.0028227390721440315, + 0.02995148114860058, + -0.001169694121927023, + -0.01585794799029827, + -0.018361927941441536, + 0.011520353145897388, + -0.012073742225766182, + -0.007169872522354126, + 0.010574552230536938, + 0.004508213605731726, + 0.0036562185268849134, + 0.023547761142253876, + -0.008269762620329857, + -0.008785337209701538, + -0.003731118980795145, + -0.007504124194383621, + -0.013968807645142078, + -0.0280152577906847, + 0.007103903219103813, + 0.013782260939478874, + -0.0010639295214787126, + -0.0071867345832288265, + -0.02073359116911888, + 0.016939381137490273, + -0.013271914795041084, + -0.014541580341756344, + 0.008920673280954361, + 0.0032113997731357813, + -0.010570663027465343, + 0.001500969287008047, + 0.009259497746825218, + 6.0845759435324e-05, + 0.0007535312906838953, + -0.0071226488798856735, + -0.007184877526015043, + 0.004035844001919031, + 0.0009710490121506155, + 0.009577610529959202, + 0.006151150446385145, + -0.004510140512138605, + -0.00568736856803298, + -0.03794505447149277, + -0.025751816108822823, + 0.01315137930214405, + -0.012118276208639145, + -0.008873632177710533, + -0.0100230872631073, + 0.0011623760219663382, + -0.001776656019501388, + -0.002800289774313569, + 0.011582881212234497, + 0.009497326798737049, + 0.008129601366817951, + 0.00043464492773637176, + 0.010129883885383606, + 0.010572251863777637, + -0.004093135241419077, + 0.01039839070290327, + -0.0178541149944067, + 0.03088933229446411, + -0.00417015515267849, + -0.010271362960338593, + 0.0031263467390090227, + 0.011230426840484142, + 0.0013697076356038451, + -0.01290548499673605, + 0.01776697486639023, + -0.020695459097623825, + -0.008011781610548496, + 0.006351467687636614, + -0.004358360543847084, + -0.008991246111690998, + -0.00013310357462614775, + 0.006293696351349354, + -0.017465954646468163, + -0.034720681607723236, + 0.0010210550390183926, + 0.00023773156863171607, + -0.002055670600384474, + -0.006855747662484646, + -0.003761137370020151, + -0.016333047300577164, + -0.0001713815436232835, + -0.009787162765860558, + -0.00745043670758605, + -0.023624585941433907, + 0.009937000460922718, + -0.01812877506017685, + 0.0232937503606081, + -0.0036883477587252855, + 0.013600523583590984, + -0.0033770003356039524, + 0.00696079945191741, + 0.009688841179013252, + -0.010261091403663158, + -0.012325981631875038, + 0.003024609060958028, + -0.008258278481662273, + 0.014134269207715988, + 0.018546387553215027, + -0.014821648597717285, + -0.023241909220814705, + -0.009646555408835411, + 0.003075413638725877, + -0.012779362499713898, + 0.006102806888520718, + -0.01114700734615326, + 0.017385665327310562, + -0.0033291999716311693, + 0.008313830010592937, + -0.01354861818253994, + -0.0034515236038714647, + 0.005770778749138117, + -0.0005707288510166109, + 0.012692835181951523, + -0.01113920472562313, + 0.02088434062898159, + 0.009407800622284412, + -9.804384899325669e-05, + -0.0030881997663527727, + 0.01547426450997591, + -0.013975461944937706, + -0.002721362514421344, + -0.012145763263106346, + -0.009721418842673302, + -0.005475987680256367, + 0.007843038067221642, + 0.015433849766850471, + -0.0048813545145094395, + 0.02129485085606575, + 0.01925443671643734, + 0.030468406155705452, + -0.014113308861851692, + -0.006837745197117329, + -0.03885858133435249, + -0.005648639984428883, + -0.0024627498351037502, + -0.011758552864193916, + 0.009833130054175854, + -0.00174320163205266, + -0.01846114918589592, + 0.012404567562043667, + -0.00021245372772682458, + 0.0002634562843013555, + -0.0031215762719511986, + -0.0038951821625232697, + 0.0016869624378159642, + -0.020127099007368088, + 0.005720446817576885, + -0.013125970959663391, + 0.033879730850458145, + 0.012077653780579567, + -0.023736819624900818, + 0.024870440363883972, + -0.008193549700081348, + -0.0008884704438969493, + 0.0029295175336301327, + 0.015958312898874283, + -0.0025256644003093243, + -0.01814604550600052, + 0.04624844342470169, + 0.004143258091062307, + -0.0020486507564783096, + 0.002829710254445672, + -0.008826023899018764, + 0.002218597801402211, + 0.009430382400751114, + 0.012602884322404861, + -0.02664593607187271, + 0.005803109612315893, + 0.007938163354992867, + 0.01140069030225277, + 0.012010089121758938, + 0.004948675166815519, + -0.014466796070337296, + -0.017206493765115738, + -0.011586849577724934, + 0.012087633833289146, + 0.02421744540333748, + 0.008654465898871422, + 0.013462603092193604, + -0.011486157774925232, + 0.0013223396381363273, + -0.0015426799654960632, + 0.0049476586282253265, + 0.0057536703534424305, + 0.009076952002942562, + -0.009942924603819847, + 0.003484015353024006, + 0.016216998919844627, + 0.010168606415390968, + -0.007911857217550278, + 0.005912289954721928, + -0.009893395937979221, + -0.014212309382855892, + -0.0016373121179640293, + 0.006818356458097696, + -0.010053256526589394, + -0.003526497632265091, + 0.004898864310234785, + 0.0011108805192634463, + 0.008389515802264214, + -0.005319698713719845, + 0.00219100178219378, + 0.004143994301557541, + -0.011459628120064735, + 0.007979115471243858, + 0.002897492842748761, + 0.014921567402780056, + -0.0003892495296895504, + 0.0026357106398791075, + -0.007194054313004017, + -0.004283427726477385, + -0.006014323327690363, + -0.0031511427368968725, + -0.009706243872642517, + -0.008727838285267353, + -0.0023325015790760517, + 0.001276420778594911, + -0.03082381747663021, + 0.0004138750082347542, + 0.013067152351140976, + 0.0004004641086794436, + -0.018129564821720123, + 0.014504744671285152, + 0.02010558545589447, + -0.003841748461127281, + 0.0007281916332431138, + 0.015725642442703247, + -0.0012887879274785519, + 0.015040461905300617, + 0.015474680811166763, + -0.0008843917166814208, + 0.012628565542399883, + -0.01777050271630287, + 0.0001335765846306458, + -0.011746377684175968, + -0.021088559180498123, + -0.01589093916118145, + 0.008247735910117626, + 0.008396859280765057, + 0.0022468455135822296, + -0.00791319739073515, + 0.00011504302528919652, + -0.012142769992351532, + 0.0067022573202848434, + 0.0004793503903783858, + 0.027304023504257202, + -0.009914949536323547, + -0.02106110379099846, + -0.005173597950488329, + 0.005501722916960716, + -0.026575088500976562, + 0.010570080950856209, + -0.004778075497597456, + -0.003373175160959363, + 0.01087422575801611, + -0.002430189633741975, + -0.0009197587496601045, + -0.018950020894408226, + 0.008251236751675606, + 0.0016751923831179738, + -0.014339261688292027, + 0.0014146988978609443, + -0.003206981811672449, + -0.015994088724255562, + -0.016089048236608505, + -0.0155401062220335, + -0.005974882282316685, + -0.019542191177606583, + -0.00044368303497321904, + 0.002778073074296117, + -0.010100554674863815, + 0.0036608208902180195, + -0.008567585609853268, + -0.02237676829099655, + -0.0010281444992870092, + -0.002232773695141077, + 0.010502674616873264, + -0.000456184265203774, + 0.023598341271281242, + 0.0042241825722157955, + -0.015285964123904705, + 0.031455542892217636, + -6.835544627392665e-05, + 0.0090279970318079, + -0.010999144054949284, + 0.0085138576105237, + 0.0007090718136169016, + -0.0029183337464928627, + 0.004791056737303734, + -0.0006586794042959809, + -0.0026212516240775585, + 0.00667656771838665, + -0.0021288967691361904, + -0.0019967739935964346, + 0.005977231543511152, + -0.002603803528472781, + -0.0021240985952317715, + 0.01459683571010828, + 0.005403164774179459, + 0.0025057538878172636, + 0.007731019984930754, + 0.015363452956080437, + -5.332316140993498e-05, + 0.011033520102500916, + -0.003783856751397252, + -0.0031315742526203394, + -0.02271685190498829, + -0.0046455468982458115, + -0.011428712867200375, + 0.010326960124075413, + 0.0038590040057897568, + 0.0050865355879068375, + -0.007492550183087587, + 0.013271425850689411, + -0.009907145984470844, + -0.014608181081712246, + -0.002955448580905795, + -0.006124615203589201, + 0.014409296214580536, + 0.00883921142667532, + 0.025464216247200966, + -0.007426440250128508, + 0.011167078278958797, + -0.0048673199489712715, + -0.006418885663151741, + 0.0033382270485162735, + 0.0026318212039768696, + 0.00940571166574955, + 0.008107015863060951, + 0.004968383815139532, + -0.009102053008973598, + 0.004967597778886557, + -0.012353237718343735, + 0.00171157147269696, + -0.005286942236125469, + 0.007511022035032511, + -0.008661163039505482, + 0.012793664820492268, + 0.00738841388374567, + 0.020188305526971817, + -0.0144577631726861, + 0.004760548938065767, + -0.013418591581285, + -0.002757942071184516, + -0.008469297550618649, + 0.009790885262191296, + -0.0015881704166531563, + 0.007045703940093517, + 0.006830349564552307, + 0.007442587986588478, + 0.006158356089144945, + -0.014467994682490826, + -0.005382925737649202, + -0.006010386161506176, + 0.012275844812393188, + 0.0007569980225525796, + 0.002465961268171668, + -0.01093147974461317, + 0.010844029486179352, + 0.005856627132743597, + 0.0031308026518672705, + -0.007771816570311785, + 0.008686133660376072, + -0.002429238287732005, + -0.03169383853673935, + -0.0013656722148880363, + -0.00847315788269043, + -0.000791888334788382, + -0.001619809539988637, + 0.013722469098865986, + 0.019492989405989647, + -0.012933003716170788, + 0.004965861327946186, + -0.023649008944630623, + -0.003104296512901783, + 0.009156066924333572, + 0.005765043664723635, + -0.0007042495417408645, + -0.007479163818061352, + -0.01659592241048813, + -0.01258805487304926, + -0.011905016377568245, + -0.019975753501057625, + 0.0005771328578703105, + -0.012045323848724365, + -0.015743354335427284, + 0.00020508069428615272, + 0.007819273509085178, + 0.0030908139888197184, + 0.0005767922848463058, + -0.010959931649267673, + -0.005449959542602301, + -0.0050907745026052, + 0.000682880578096956, + 0.0017132670618593693, + 0.0028748931363224983, + -0.0008907034643925726, + -0.012634913437068462, + 0.013637135736644268, + 0.008216733112931252, + 0.010417845100164413, + -0.016661155968904495, + 0.007233615964651108, + -0.016756799072027206, + 0.03113333322107792, + -0.011812599375844002, + 0.008413216099143028, + 0.00574024673551321, + -0.009784807451069355, + -0.00177743227686733, + 0.004456781782209873, + 0.002683111699298024, + 0.015232089906930923, + -0.01303790882229805, + 0.0033595107961446047, + 0.003999048378318548, + -0.013065285049378872, + 0.005323979537934065, + 0.0007441378547810018, + -0.014129162766039371, + -0.0036559891887009144, + 0.005385632161051035, + -0.002773504937067628, + 0.013712451793253422, + 0.027732647955417633, + 0.03787126764655113, + -0.00835232064127922, + 0.007389536127448082, + -0.017761623486876488, + -0.0002296955353813246, + -0.014840975403785706, + -0.004533682484179735, + 0.001019626040942967, + -0.002993572736158967, + 0.011396592482924461, + 0.01244534645229578, + -0.0003265608102083206, + -0.00964108482003212, + 0.018413836136460304, + -0.006174793466925621, + -0.0057344441302120686, + 0.00035627803299576044, + 0.02213800512254238, + -0.036280032247304916, + -0.00692232558503747, + -0.009887846186757088, + -0.0013461122289299965, + -0.007516344543546438, + 0.010417935438454151, + -0.006887771654874086, + 0.005173271056264639, + 0.004342224914580584, + -0.010637020692229271, + 0.0245320126414299, + -0.010161266662180424, + -0.008115947246551514, + -0.01789155974984169, + -0.014598495326936245, + -0.013843505643308163, + 0.0004247499455232173, + -0.007298199459910393, + -0.019031314179301262, + -0.017865819856524467, + 0.001444071065634489, + 0.004014174919575453, + -0.0036100195720791817, + -0.006941529456526041, + 0.008004529401659966, + 0.0013828491792082787, + 0.0022730056662112474, + 0.009113910607993603, + -0.009199924767017365, + -0.004977500066161156, + 0.0008504567085765302, + 0.004935144446790218, + -0.005005966871976852, + -0.031110025942325592, + -0.008719215169548988, + 0.0012224201345816255, + -0.0012390563497319818, + -0.0246390700340271, + 0.04220448434352875, + -0.01056948583573103, + 0.0009295943309552968, + -0.011342482641339302, + -0.006158413365483284, + -0.012250246480107307, + -0.01875537633895874, + -0.013212827034294605, + -0.018279850482940674, + -0.004611072596162558, + -0.033403050154447556, + -0.0004374709096737206, + 0.01882139779627323, + 0.005514934659004211, + 0.0021590804681181908, + 0.009634722024202347, + -0.003710502292960882, + 0.009651612490415573, + 0.00554442685097456, + 0.003201512387022376, + -0.020808067172765732, + -0.013289675116539001, + -0.011076844297349453, + 0.0355151891708374, + 0.006388929206877947, + -0.010010463185608387, + -0.00530313840135932, + 0.004402791149914265, + -0.008290043100714684, + 0.026771405711770058, + 0.013604404404759407, + -0.006531294900923967, + -0.0170646570622921, + 0.003883455181494355, + -0.006380477454513311, + -0.005560262128710747, + -0.005134239327162504, + 0.008225517347455025, + -0.013817278668284416, + 0.005383767653256655, + -0.011194824241101742, + -0.01765306107699871, + -0.005429217126220465, + 0.04006923362612724, + -0.00019251389312557876, + -0.011122497729957104, + -0.0001777312863850966, + -0.008311082608997822, + -0.01412404328584671, + -0.004211727995425463, + -0.008500795811414719, + 0.009475575760006905, + 0.022363167256116867, + -0.002977658761665225, + -0.006047646049410105, + 0.013107158243656158, + 0.0065325601026415825, + 0.016145026311278343, + -0.016510585322976112, + 0.04656141996383667, + -0.005577022675424814, + 0.00919910054653883, + 0.007211204152554274, + 0.012298951856791973, + 0.023861195892095566, + -0.05368819087743759, + 0.00046699316590093076, + 0.0027273113373667, + 0.008259203284978867, + -0.012307712808251381, + -0.042193539440631866, + -0.014854776673018932, + -0.0015723658725619316, + -0.006030558608472347, + -0.014479318633675575, + 0.006010556593537331, + -0.007828823290765285, + 0.0010831911349669099, + -0.010530325584113598, + 0.002095982199534774, + -0.0047872173599898815, + 0.00471362192183733, + -0.014374581165611744, + 0.0016375323757529259, + 0.004660863894969225, + 0.006582734640687704, + -7.11260800017044e-05, + -0.019756557419896126, + -0.0036798559594899416, + -0.0001458844490116462, + -0.0036999410949647427, + -0.009133505634963512, + -0.01487777754664421, + -0.010606457479298115, + 0.00646215071901679, + 0.0018796146614477038, + 0.0023041553795337677, + -0.012498700059950352, + -0.0027634501457214355, + 0.003969782032072544, + -0.010701837949454784, + -0.0074175079353153706, + 0.008889985270798206, + -0.003336649853736162, + -0.015421926975250244, + -0.00771112646907568, + -0.009055225178599358, + -0.0021457206457853317, + 0.005668866913765669, + -0.0017537077656015754, + -0.005837250035256147, + 0.019558150321245193, + -0.004761511459946632, + 0.007025666069239378, + 0.0033419113606214523, + 0.003898069728165865, + -0.016109799966216087, + -0.011416854336857796, + 0.004056269768625498, + 0.015237986110150814, + 0.0040057641454041, + 0.005366581492125988, + -0.005585897713899612, + 0.0016173134790733457, + 0.0031433908734470606, + -0.006692851427942514, + -0.0009332924382761121, + 0.018639830872416496, + -0.018904322758316994, + -0.02235671691596508, + -0.019372889772057533, + -0.002562542213127017, + -0.0077780624851584435, + -0.0090788584202528, + -0.0031012743711471558, + -0.0027422693092375994, + 0.012763040140271187, + 0.004219364374876022, + -0.014026320539414883, + 0.01085622888058424, + -0.005849315784871578, + -0.00507343327626586, + 0.00021750082669313997, + 0.006628153380006552, + 0.004453498404473066, + 0.002960268408060074, + 0.003091994673013687, + 3.39334765158128e-05, + 0.010948867537081242, + -0.0026573410723358393, + -0.0004267857293598354, + -0.024568039923906326, + 0.004783795215189457, + -0.004962720908224583, + -0.01510708499699831, + 0.006923602428287268, + 0.0029023545794188976, + -0.0218571275472641, + 0.018078148365020752, + 0.0021839155815541744, + -0.010348241776227951, + -0.00869474746286869, + 0.02395002916455269, + 0.005426069721579552, + -0.0009091253741644323, + -0.007208712864667177, + -0.01225342694669962, + -0.018802931532263756, + -0.002690900582820177, + 0.0004319935105741024, + 0.0011998915579169989, + 0.001087126205675304, + -0.020647183060646057, + 0.00017058367666322738, + 0.009083866141736507, + -0.005986855365335941, + -0.013676290400326252, + 0.0016143524553626776, + 0.0004268789489287883, + 0.003807902103289962, + 0.0014132148353382945, + -0.010769129730761051, + 0.009909857995808125, + 0.006445510778576136, + 0.027559703215956688, + 0.010246138088405132, + -0.010776486247777939, + 0.015779972076416016, + -0.0019124752143397927, + 0.00843009538948536, + -0.005311034619808197, + 0.006555952597409487, + 0.015062141232192516, + -0.014076854102313519, + -0.006297260522842407, + -0.00139439117629081, + -0.016602128744125366, + 0.010723855346441269, + -0.0003088233934249729, + -0.006925743073225021, + -0.0017893562326207757, + -0.0010176228825002909, + -0.003955316264182329, + -0.006377636920660734, + -0.004252004902809858, + -0.01143034640699625, + -0.016621626913547516, + 0.0026192795485258102, + -0.0009935474954545498, + 0.015393608249723911, + 0.011177548207342625, + -0.08124402165412903, + 0.005012823268771172, + 0.00679137883707881, + -0.01580815017223358, + 0.0019833308178931475, + -0.04571450874209404, + 0.01794450730085373, + -7.333275425480679e-05, + -0.015729038044810295, + 0.008249283768236637, + -0.003077404573559761, + -0.0078020174987614155, + 0.008455225266516209, + -0.018779104575514793, + 0.02123774215579033, + -0.0020929723978042603, + 0.019414149224758148, + -0.05348715931177139, + 0.013795871287584305, + 0.007279970217496157, + -0.0002354266616748646, + 0.01951795071363449, + 0.0072309463284909725, + -0.009268575347959995, + 0.005457538180053234, + -0.015405463986098766, + -0.023228434845805168, + 0.03395450487732887, + -0.002303891582414508, + -0.0019860228057950735, + -0.008066241629421711, + -0.01059582456946373, + 0.0009968928061425686, + -0.025473566725850105, + -0.010860379785299301, + -0.00022055114095564932, + 0.013397558592259884, + -4.819244350073859e-05, + -0.022446902468800545, + 0.0018892273074015975, + -0.004592331126332283, + 0.0102090397849679, + 0.0027177217416465282, + -0.00010455876326886937, + 0.0009454662795178592, + 0.020564954727888107, + 0.011963062919676304, + -0.014818606898188591, + 0.011531046591699123, + -0.010122598148882389, + 0.01278042234480381, + -0.006700543686747551, + 0.008697655983269215, + 0.0017938866512849927, + -0.006014599930495024, + 0.003262963378801942, + 0.0029138943646103144, + 0.001459629274904728, + -0.0020580929704010487, + 0.01129673421382904, + 0.01360382791608572, + -0.004418862517923117, + 0.002272967714816332, + 0.013713076710700989, + 0.009615788236260414, + 0.007454128935933113, + 0.0006064733024686575, + -0.00795968621969223, + 0.009668579325079918, + -0.006430217996239662, + 0.031528834253549576, + 0.0016912524588406086, + 0.0014177818084135652, + 0.024107489734888077, + -0.04402128979563713, + 0.011175005696713924, + 0.007322608958929777, + 0.0017007032874971628, + 0.006691938731819391, + 0.014202502556145191, + -0.015054012648761272, + 0.013914098963141441, + -6.675874465145171e-05, + 0.0004539986839517951, + 0.002280560787767172, + -0.0182444266974926, + -0.00358511577360332, + 0.0001422164641553536, + 0.011190319433808327, + 0.031222613528370857, + 0.006163864862173796, + -0.0008212664979510009, + 0.011130905710160732, + -0.011869125999510288, + -0.01082063838839531, + -0.0066844564862549305, + 0.01599453203380108, + -0.02265329100191593, + -0.00259005487896502, + 0.0002479849208611995, + -0.0038875609170645475, + 0.0018895184621214867, + 0.005971373058855534, + -0.014018292538821697, + -0.01165454089641571, + 0.009397044777870178, + -0.011669398285448551, + 0.002856733277440071, + 0.0018898701528087258, + 0.0023081700783222914, + 0.015790848061442375, + 0.03312520310282707, + -0.02336185611784458, + -0.027063697576522827, + 0.00799457635730505, + 0.01331815030425787, + 0.007637414149940014, + -0.004724729340523481, + -0.0037457821890711784, + -0.018496474251151085, + -0.016974052414298058, + -0.0051897186785936356, + -0.0142852533608675, + 0.0009108562371693552, + -0.004410567227751017, + -0.00948504637926817, + -0.02010914869606495, + 0.018893297761678696, + -0.006440309341996908, + 0.010401956737041473, + -0.009974734857678413, + 0.0071517894975841045, + -0.009359154850244522, + -0.010480040684342384, + 0.008504421450197697, + 0.01706455834209919, + 0.009639612399041653, + 0.008815714158117771, + -0.013399242423474789, + 0.014914718456566334, + 0.0015107457293197513, + 0.0009898345451802015, + 0.0044012111611664295, + 0.02203207276761532, + 0.002395524876192212, + -0.006598132662475109, + 0.02017234079539776, + 0.030182864516973495, + -0.0003318005765322596, + 0.006965063512325287, + -0.012503543868660927, + 0.007748713716864586, + 0.009525088593363762, + -0.009525196626782417, + 0.00048022830742411315, + -0.0015453482046723366, + 0.008259749971330166, + 0.00016993026656564325, + -0.021093429997563362, + 0.0046725585125386715, + 0.0028504161164164543, + 5.5552678531967103e-05, + 0.0032930681481957436, + 0.0002869449381250888, + 0.007773506920784712, + 0.005084836855530739, + -0.007145474199205637, + -0.004901261068880558, + -0.011592482216656208, + -0.009508808143436909, + 0.0012430065544322133, + 0.004486449994146824, + -0.0022781917359679937, + -0.004730351734906435, + -0.01563415117561817, + 0.008536860346794128, + -0.015229820273816586, + 0.0002604372857604176, + -0.02783798985183239, + -0.014507990330457687, + -0.007261376362293959, + -0.0014615383697673678, + -0.009987302124500275, + -0.012994751334190369, + 0.014379586093127728, + 0.01622712053358555, + 0.011762460693717003, + -0.005831305403262377, + 0.0009124259231612086, + 0.011192272417247295, + 0.005255656782537699, + 0.0014138257829472423, + 0.0019624694250524044, + -0.0008960071136243641, + 0.011166389100253582, + 0.006100625731050968, + 0.005182923283427954, + 0.0008327622781507671, + 0.004188502673059702, + -0.0028944178484380245, + 0.007523374632000923, + -0.008684650994837284, + -0.0005714785074815154, + 0.012484202161431313, + -0.0029887405689805746, + -0.011309219524264336, + -0.0021514049731194973, + -0.0017486127326264977, + -0.027185361832380295, + -0.003177159233018756, + -0.01099690143018961, + 0.016672328114509583, + 0.01891857013106346, + 0.011365467682480812, + 0.016206275671720505, + 0.006543883588165045, + 0.009634421207010746, + -0.013370498083531857, + -0.03850129619240761, + -0.039885956794023514, + 0.009486755356192589, + -0.01716616190969944, + 0.0015362778212875128, + -0.03382537513971329, + -0.003554306458681822, + 0.0011702352203428745, + -0.011109265498816967, + 0.007567265070974827, + -0.028578203171491623, + -0.012376001104712486, + -0.010436910204589367, + -0.011246380396187305, + -0.001622788142412901, + -0.008207927457988262, + 0.013891450129449368, + 0.024792077019810677, + -0.0008141741272993386, + -0.0052626668475568295, + 0.01675868034362793, + 0.006752858869731426, + 0.007103662937879562, + 0.012277260422706604, + 0.013241534121334553, + 0.008604135364294052, + -0.014484097249805927, + 0.002719832118600607, + -0.019326556473970413, + -0.0005164071335457265, + 0.0018418841063976288, + 0.018310198560357094, + -0.0050910478457808495, + 5.6296255934285e-05, + 0.002836761064827442, + -0.0035448234993964434, + -0.01018758025020361, + 0.007235854398459196, + -0.01296462956815958, + -0.002805116819217801, + 0.024547358974814415, + 0.008500540629029274, + 0.01559463795274496, + -0.0109400674700737, + -0.019552022218704224, + 0.011901197023689747, + 0.006132264155894518, + -0.01067740935832262, + -0.006050108466297388, + 0.005583134945482016, + -0.0031229928135871887, + 0.003939815331250429, + 0.004313288256525993, + -0.013470170088112354, + 0.0010188922751694918, + -9.571114060236141e-05, + 0.0008636938291601837, + 0.017322203144431114, + -0.004389862064272165, + -0.005701310466974974, + 0.013381851837038994, + -0.000843144312966615, + -0.03245583921670914, + -0.001748640788719058, + 0.00434727082028985, + -0.009308653883635998, + -0.006505244877189398, + 0.0035798456519842148, + -0.003579899901524186, + -0.001699741231277585, + -0.0019481334602460265, + -0.03558040410280228, + -0.019585013389587402, + 0.061961956322193146, + -0.391346275806427, + -0.009805074892938137, + -0.005311299115419388, + 0.012429353781044483, + 0.012331315316259861, + -0.004620926920324564, + 2.0003497411380522e-05, + -0.019048277288675308, + 0.010522694326937199, + -0.0105934739112854, + 0.002600663574412465, + -0.022192856296896935, + -0.0019414074486121535, + 0.006453630514442921, + 0.006207812577486038, + -0.009539391845464706, + 0.011280296370387077, + 0.026041816920042038, + 0.0005640890449285507, + -0.008196543902158737, + -0.01222767774015665, + -0.0018536972347646952, + -0.03542224317789078, + 0.0021762531250715256, + -0.0013040732592344284, + 0.009074646979570389, + 0.005393420811742544, + -0.018802989274263382, + 0.005423860624432564, + 0.008448581211268902, + 0.005111283622682095, + 0.01761278323829174, + -0.007411164231598377, + 0.004014314152300358, + -0.00807331595569849, + -0.00016977368795778602, + 0.0035860114730894566, + 0.000997471623122692, + 0.013453520834445953, + -0.015577060170471668, + -0.009949559345841408, + -0.013155519030988216, + -0.004056420177221298, + 0.00041857975884340703, + 0.0037538488395512104, + -0.002666264306753874, + 0.002408260013908148, + 0.001550939166918397, + -0.005868556443601847, + 0.006004128139466047, + 0.03257961571216583, + -0.0025285209994763136, + -0.007446326781064272, + 0.018696360290050507, + 0.007084166631102562, + 0.009736963547766209, + 0.008853914216160774, + -0.004607365932315588, + -0.009098488837480545, + 0.02899875119328499, + 0.004041003994643688, + 0.008501378819346428, + -0.0027824847493320704, + -0.01952304318547249, + -0.0008873629849404097, + 0.0031902557238936424, + -0.010980194434523582, + 0.05463327839970589, + -0.0015933673130348325, + -0.008912159129977226, + 0.0015384673606604338, + 0.00016493548173457384, + 0.006026001181453466, + 0.006024287082254887, + 0.0049944231286644936, + 0.022744257003068924, + -0.007481846492737532, + -0.005539467558264732, + -0.001411316217854619, + -0.01630895957350731, + -0.00397465517744422, + -0.0002580920699983835, + 0.009600493125617504, + 0.004315943922847509, + -0.004729969426989555, + -0.0014966016169637442, + -0.004739911761134863, + -0.03225057199597359, + 0.014808064326643944, + -0.016183750703930855, + 0.0022592402528971434, + -0.006634825374931097, + 0.04389442130923271, + 0.007088263053447008, + 0.0035201956052333117, + -0.005437053740024567, + 0.0030314538162201643, + -0.005779487080872059, + 0.007033981382846832, + -0.008552156388759613, + 6.210475112311542e-05, + 0.00997183471918106, + 0.01009327918291092, + 0.009344486519694328, + 0.020117416977882385, + 0.014333177357912064, + 0.022169621661305428, + 0.009742495603859425, + 0.016345949843525887, + 0.025175614282488823, + -0.014347244054079056, + -0.030684923753142357, + -0.004880518652498722, + 0.0008245697827078402, + 0.006107604131102562, + 0.03796149045228958, + -0.006812362931668758, + 0.0013672466157004237, + 0.0052411979995667934, + -0.010486559011042118, + -0.014084002934396267, + 0.0013269769260659814, + 0.02333782985806465, + 0.005630056373775005, + -0.015475320629775524, + -0.007288471795618534, + -0.014546080492436886, + -0.019893571734428406, + 0.004420780576765537, + -0.01587238349020481, + 0.00854562595486641, + 0.01349538005888462, + -0.004058605059981346, + 0.002591107040643692, + 0.005686652846634388, + -0.016564343124628067, + 0.005345245357602835, + 0.004664267413318157, + 0.007140402216464281, + 0.018689392134547234, + 0.01205484475940466, + 0.007293334696441889, + 0.00151803286280483, + 0.017382606863975525, + -0.006223974749445915, + 0.08055943250656128, + -0.00931277871131897, + -0.004803857766091824, + 0.007587823551148176, + 0.00469136331230402, + 0.017749948427081108, + -0.00408091489225626, + 0.007432747632265091, + -0.0106255654245615, + -0.0002567607443779707, + -0.000943652936257422, + 0.004965555854141712, + -0.008471527136862278, + -0.016490435227751732, + -0.022204075008630753, + 0.009648142382502556, + 0.010455301031470299, + -0.002010100521147251, + 0.009660336188971996, + 0.0118410000577569, + 0.0073808166198432446, + -0.007207728922367096, + 0.0013362026074901223, + -0.005806175991892815, + -0.008535042405128479, + -0.020264243707060814, + -0.0037527631502598524, + 0.00940061453729868, + -0.0025431723333895206, + 0.009508715011179447, + -0.003506830194965005, + 0.024242430925369263, + -0.006463021505624056, + 0.01889999397099018, + 0.0065412139520049095, + -0.007613268680870533, + -0.007406186778098345, + -0.0102493055164814, + 0.009714311920106411, + -0.015011249110102654, + -0.007298525422811508, + -0.0056706322357058525, + 0.006371475290507078, + 0.0030945513863116503, + 0.004859598353505135, + -0.012238876894116402, + -0.0018746864516288042, + 0.008693506009876728, + 0.0016975649632513523, + -0.013221119530498981, + 0.0008176973205991089, + -0.007596543524414301, + 0.014806884340941906, + 0.008589393459260464, + 0.010684805922210217, + 0.00521582318469882, + 0.005083146039396524, + 0.0015447769546881318, + -0.007316752336919308, + 0.0012804586440324783, + -0.018634863197803497, + 0.01687624864280224, + 0.009340433403849602, + -0.0024761713575571775, + -0.023813357576727867, + 0.017089255154132843, + 0.017772771418094635, + -0.017941193655133247, + 0.0022174008190631866, + -0.05216469243168831, + -0.01000938005745411, + -0.0007198108942247927, + 0.012206350453197956, + 0.01672106236219406, + -0.008083554916083813, + 0.004513642750680447, + -0.0038471436128020287, + -0.01419095043092966, + -0.030041690915822983, + -0.0023168588522821665, + -0.011456672102212906, + -0.01284588873386383, + 0.0012082676403224468, + -0.005281256977468729, + -0.005653455853462219, + -0.012241284362971783, + 0.005104308016598225, + -0.0015846758615225554, + 0.006091437302529812, + -0.0047143204137682915, + 0.019220365211367607, + 0.029576124623417854, + 0.007392203435301781, + 0.03329552337527275, + 0.00883022602647543, + 0.002010100521147251, + 0.0016402873443439603, + 0.0028525423258543015, + -0.015619158744812012, + -0.016635673120617867, + 0.014124209061264992, + 0.007808182388544083, + 0.0052836621180176735, + -0.0024062087759375572, + -0.017492685467004776, + 0.05487386882305145, + 0.008131856098771095, + 0.013545886613428593, + 0.0054628886282444, + 7.83937139203772e-05, + -0.012642649933695793, + 0.04186294972896576, + 0.0007171402685344219, + 0.004603598732501268, + 0.023158960044384003, + 0.0028471711557358503, + -0.0001080037109204568, + -0.003929751459509134, + 0.016398100182414055, + 0.003731384640559554, + 0.004880330990999937, + 0.005389032885432243, + -0.006354536395519972, + 0.006976320408284664, + 0.0011892237234860659, + 0.04386892542243004, + -0.009726548567414284, + -0.008131123147904873, + -0.0019081521313637495, + -0.020149992778897285, + -0.004924544133245945, + 0.0075403363443911076, + 0.0029561654664576054, + -0.01581154391169548, + -0.0011635377304628491, + 0.014718259684741497, + -0.004458762239664793, + 0.0013361121527850628, + -0.014836433343589306, + -0.013788288459181786, + -0.0010171777103096247, + -0.00219675712287426, + -0.006132147740572691, + -0.011647970415651798, + -0.028060825541615486, + 0.0007246031891554594, + 0.0064996215514838696, + 0.0036334882024675608, + -0.008727749809622765, + 0.007237001787871122, + -0.010513709858059883, + 0.08129532635211945, + -0.07380371540784836, + 4.181689291726798e-05, + 0.0034747079480439425, + -0.004776198882609606, + -0.020519480109214783, + -0.00816772598773241, + 0.0866633728146553, + 0.010538368485867977, + -0.010299637913703918, + -0.019582610577344894, + -0.01448143646121025, + 0.015577763319015503, + -0.0038457117043435574, + -0.012225898914039135, + 0.002205882454290986, + 0.0017789785051718354, + -0.008514869958162308, + -0.0013982440577819943, + 0.03467588499188423, + -0.001241324353031814, + -0.00434611551463604, + -0.013406936079263687, + 0.010942265391349792, + -0.008134744130074978, + 0.008808713406324387, + 0.00416139978915453, + -0.0082100760191679, + -0.0088196424767375, + -0.005768732167780399, + 0.009196811355650425, + 0.013557160273194313, + -0.0013962542871013284, + -0.0001782975741662085, + 0.014355240389704704, + -0.006318679079413414, + 0.0032505712006241083, + -0.00012002143921563402, + -0.013149661011993885, + 0.004215471912175417, + 0.02221585623919964, + -0.047138314694166183, + -0.005934156943112612, + 0.011042904108762741, + -3.978401218773797e-05, + 0.01234731450676918, + 0.04179169237613678, + -0.051277197897434235, + 0.002920712111517787, + -0.004204432480037212, + -0.0019878901075571775, + -0.034412235021591187, + -0.036930665373802185, + 0.008111410774290562, + -0.01854327879846096, + 0.00023521117691416293, + -0.002137524075806141, + -0.00010400709288660437, + 0.00021915689285378903, + 0.02733893133699894, + -0.027963800355792046, + -0.006682508625090122, + -0.0053445142693817616, + -0.006891102530062199, + 0.013180517591536045, + -0.040177807211875916, + -0.010368644259870052, + -0.003175282385200262, + 0.0009088094811886549, + 0.023546066135168076, + 0.0006072320975363255, + -3.183037551934831e-05, + -0.001286746934056282, + -0.024338146671652794, + 0.001819882309064269, + -0.01050186064094305, + 0.02023828588426113, + 0.0052159191109240055, + 0.0007981698727235198, + -0.021545570343732834, + 0.047468800097703934, + -0.0037565124221146107, + 0.029365483671426773, + -0.004871409852057695, + -0.015805723145604134, + 0.019572272896766663, + 0.016428522765636444, + -0.009632394649088383, + -0.006924137473106384, + 0.008439872413873672, + -0.0018390428740531206, + -0.007060118485242128, + 0.013700720854103565, + 0.012860634364187717, + -0.006382695399224758, + 0.003249997505918145, + 0.014557748101651669, + 0.008409813977777958, + 0.018285809084773064, + 0.003087640507146716, + -0.0007569827721454203, + 0.0004483954980969429, + -0.013425517827272415, + -0.0037768417969346046, + 0.015038230456411839, + -0.011726914905011654, + 0.015194562263786793, + 0.0027724620886147022, + 0.00021272758021950722, + -0.008296028710901737, + 0.017712555825710297, + -0.006565441843122244, + 0.005661229137331247, + 0.008453947491943836, + 0.009654118679463863, + -0.0003356184752192348, + 0.008431276306509972, + 0.0006984274950809777, + -0.0009192433208227158, + -0.0005066212033852935, + 0.018939580768346786, + 0.012229407206177711, + 0.013702762313187122, + 0.0005521022249013186, + 0.008144302293658257, + 0.007045137695968151, + -0.007294682320207357, + -0.0069524566642940044, + 0.020070597529411316, + 0.014114509336650372, + 0.036749422550201416, + 0.018772287294268608, + -0.00315588666126132, + 0.0025401669554412365, + -0.004412664566189051, + -0.0033525386825203896, + 0.013294712640345097, + 0.0173562690615654, + -0.018883002921938896, + -0.004627042915672064, + 0.011750506237149239, + -0.009559298865497112, + -0.007814067415893078, + 0.004275457467883825, + 0.009202226996421814, + 0.0071158744394779205, + 0.0009557862067595124, + -0.0007411367841996253, + 0.006143872160464525, + -0.0031233620829880238, + 0.022723402827978134, + -0.01581420749425888, + 0.0029603533912450075, + -0.003435197053477168, + -0.0006718975491821766, + 0.016543997451663017, + 0.001506512868218124, + -0.012100033462047577, + 0.021434154361486435, + -0.03126939758658409, + -0.009267574176192284, + 0.010063329711556435, + -0.0021780510433018208, + -0.0014034889172762632, + -0.00039809918962419033, + -0.0025988046545535326, + -0.006816447246819735, + -0.0034343458246439695, + -0.004837471060454845, + 0.005166773218661547, + 0.006678635720163584, + -0.01567450352013111, + -0.009278867393732071, + 0.009677167981863022, + -0.012109316885471344, + -0.005293181166052818, + -0.008057205937802792, + -0.0008766647079028189, + -0.009879674762487411, + 0.012406275607645512, + -0.016082430258393288, + -0.019760483875870705, + -0.0025484906509518623, + -0.0465022474527359, + 0.018012603744864464, + 0.03806453198194504, + -0.009475593455135822, + 0.009390754625201225, + 0.011141275055706501, + -0.009722769260406494, + 0.002959007862955332, + 0.010562167502939701, + -0.001776783843524754, + -0.010983034037053585, + -0.009886338375508785, + 0.005976871121674776, + -0.014164786785840988, + 0.05784440040588379, + -0.0010216300142928958, + 0.001960764406248927, + 0.004007786512374878, + -0.006225747987627983, + 0.002013331977650523, + 0.018230576068162918, + 0.01828070916235447, + 0.007076951675117016, + -0.0005832350580021739, + 0.014474143274128437, + 0.020988579839468002, + 0.015613974072039127, + -0.006025542970746756, + -0.008552055805921555, + -0.008496141992509365, + -0.0022141188383102417, + 0.004728558007627726, + -0.004667443688958883, + -0.0027785422280430794, + 0.03006996214389801, + 0.010452432557940483, + -0.0006535578286275268, + 0.009709055535495281, + -0.007681211922317743, + -0.04808282107114792, + 0.005234651267528534, + 0.0032528203446418047, + -0.002027723239734769, + -0.024690799415111542, + -0.002995676826685667, + 0.017908256500959396, + 0.01757880300283432, + 0.005711089354008436, + 0.016863785684108734, + 0.025903692469000816, + -0.001188825466670096, + -0.017736591398715973, + -0.008126086555421352, + -0.0030198104213923216, + -0.004186807665973902, + 0.04234866052865982, + 0.004800889175385237, + 0.0039027812890708447, + 0.013473696075379848, + -0.0011623887112364173, + -0.04909510165452957, + -0.003916272893548012, + -0.01115148700773716, + 0.026883330196142197, + -0.002339116530492902, + -0.001712673925794661, + -0.014416336081922054, + -0.01684761419892311, + -0.027060959488153458, + 0.015222175046801567, + 0.007857460528612137, + -0.007187149487435818, + -0.01019990723580122, + -0.016386717557907104, + -0.007381181698292494, + 0.016216525807976723, + 0.01276975218206644, + 0.009746141731739044, + 0.03500202298164368, + -0.006051605101674795, + -0.011447183787822723, + 0.0063157472759485245, + -0.008156771771609783, + 0.005907254759222269, + 0.01649254560470581, + 0.012720565311610699, + 0.01606343686580658, + -0.0038000387139618397, + -0.024939948692917824, + -0.0012791764456778765, + 0.00031864127959124744, + 0.01618282124400139, + 0.0007393029518425465, + 0.01325744017958641, + 0.0237618088722229, + -0.0011612044181674719, + 0.019034862518310547, + -0.016215460374951363, + -0.009468873962759972, + 0.11875709146261215, + 0.01054765097796917, + -0.01003891322761774, + -0.02748452126979828, + -0.006145751103758812, + -0.01728716865181923, + -0.00742358760908246, + -0.0015411974163725972, + -0.00909373164176941, + -0.014338033273816109, + 0.005035079549998045, + 0.011222406290471554, + 0.012032369151711464, + -0.0070396591909229755, + 0.01955215446650982, + 0.0011583516607061028, + -0.006511148530989885, + 0.0014913445338606834, + 0.01586044952273369, + 0.005534712690860033, + 0.0007996975327841938, + -0.012576243840157986, + -0.010486588813364506, + 0.001769321970641613, + -0.0067698038183152676, + 0.00314587471075356, + -0.003810620866715908, + 0.005753005854785442, + -0.007995719090104103, + -0.017012348398566246, + -0.0077966731041669846, + -0.002359014470130205, + -0.0022199442610144615, + 0.0014648610958829522, + 0.0004872482968494296, + -0.006468322593718767, + -0.0028248773887753487, + -0.004419039003551006, + -0.027204323559999466, + 0.015481846407055855, + 0.00040715234354138374, + -0.016602952033281326, + -0.01086906436830759, + 0.017050569877028465, + 0.0010343312751501799, + -0.022052476182579994, + -0.025084203109145164, + -0.001854294678196311, + -0.006116362288594246, + -0.0005115819512866437, + 0.010493222624063492, + -0.007503744214773178, + 0.010547731071710587, + 0.02440129965543747, + 0.010459557175636292, + 0.0026419328060001135, + -0.005128274206072092, + -0.008534683845937252, + -0.00939145591109991, + -0.007279886864125729, + -0.01256482396274805, + -0.005305242724716663, + -0.014414525590837002, + -0.007100818678736687, + 0.007206492591649294, + 0.019737208262085915, + -0.004667956382036209, + 8.455602801404893e-05, + -0.02620527893304825, + -0.0029191512148827314, + 0.01151609979569912, + 0.014515196904540062, + -0.0020635442342609167, + 0.006678088568150997, + 0.00546529795974493, + 0.016768300905823708, + -0.004098103381693363, + 0.0023520179092884064, + -0.007760494481772184, + -0.03490118682384491, + 0.023180553689599037, + -0.011061839759349823, + -0.008698321878910065, + -0.018466239795088768, + -0.00015529204392805696, + 0.003692756872624159, + 0.003530405228957534, + -0.0066236830316483974, + -0.008329632692039013, + 0.0067450073547661304, + 0.010942695662379265, + 0.020268788561224937, + -0.005459314677864313, + -0.008931765332818031, + 0.0005225440254434943, + 0.004498493857681751, + 0.0009210467105731368, + 0.027500256896018982, + -0.0014303496573120356, + -0.004855922423303127, + -0.004668144974857569, + 0.028728505596518517, + -0.003981706686317921, + 0.018868323415517807, + -0.012711173854768276, + -0.016222279518842697, + -0.03726532310247421, + -0.008217716589570045, + -0.02566402219235897, + 0.01071115117520094, + 0.01572711579501629, + -0.01024052407592535, + -0.007181716151535511, + -0.003817975288257003, + 0.0037965027149766684, + 0.014546244405210018, + -0.013269120827317238, + 0.0068143680691719055, + -0.00717886071652174, + -0.020954908803105354, + 0.008721119724214077, + -0.0035153497010469437, + -0.0021962581668049097, + -0.006211618427187204, + -0.00395483523607254, + -0.011316787451505661, + -0.014411898329854012, + -0.0009935428388416767, + -0.001497143879532814, + 0.0027935246471315622, + 0.0027558468282222748, + 0.02221866138279438, + 0.01159585639834404, + -0.007424049079418182, + -0.0058436584658920765, + -0.006211073603481054, + -0.02137589640915394, + -0.05521176755428314, + 0.008355957455933094, + 0.0060626850463449955, + 0.0055539109744131565, + 0.002002725377678871, + 0.007012359332293272, + -0.0004677542601712048, + -0.02505587227642536, + -0.015758225694298744, + 0.03406543657183647, + -0.008352266624569893, + 0.0009378105169162154, + -0.017591753974556923, + -0.0005268650711514056, + 0.01606512814760208, + -0.002840787637978792, + 0.0192448478192091, + -0.0018997467122972012, + -0.00522752245888114, + 0.08755452185869217, + 0.001646530581638217, + -0.008278497494757175, + -0.006325374357402325, + -0.012967442162334919, + -0.0005320935742929578, + -0.001623952412046492, + -0.021913722157478333, + -0.011566118337213993, + 0.008745773695409298, + 0.005327918566763401, + -0.013290412724018097, + 0.0070809233002364635, + 0.00986743625253439, + -0.016130773350596428, + 0.00013330303772818297, + -0.0045030792243778706, + -0.007593359332531691, + -0.006559408735483885, + -0.0015332349576056004, + 0.002779784146696329, + 0.00805285107344389, + -0.007922294549643993, + -0.007059289142489433, + 0.004996871575713158, + -0.01814279332756996, + -0.0027297683991491795, + -0.006592227146029472, + -0.0029800981283187866, + -0.005984614137560129, + 0.012816731818020344, + 0.007031584158539772, + -0.012081647291779518, + -0.004916845355182886, + 0.009324494749307632, + 0.0049008638598024845, + 0.017295438796281815, + -0.00609701918438077, + -0.00952343549579382, + -0.0015796417137607932, + 0.008631282486021519, + 0.008583804592490196, + 0.00729275681078434, + -0.012325125746428967, + -0.002044806256890297, + 0.003932288847863674, + 0.004455618094652891, + 0.00879975501447916, + 0.008971760049462318, + 0.017665347084403038, + 0.01063703652471304, + 0.0009215489844791591, + 0.010953104123473167, + -0.008298725821077824, + 0.009064868092536926, + -0.00010806829232024029, + 0.014048601500689983, + -0.05171621963381767, + -0.003429262200370431, + 0.009039686992764473, + 0.0055026100017130375, + 0.0262248944491148, + -0.016652951017022133, + 0.011748344637453556, + 0.0029150941409170628, + -0.0041564577259123325, + 0.01634795404970646, + -0.015593291260302067, + -0.008417215198278427, + 0.011619124561548233, + -0.019851472228765488, + 0.019569404423236847, + 0.005698860622942448, + -0.0059709707275033, + -0.010528486222028732, + 0.0069342018105089664, + -0.011635196395218372, + 0.0010618561645969748, + 0.016429949551820755, + -0.004905564710497856, + 0.009909536689519882, + -0.0030773545149713755, + -0.0012581757036969066, + 0.01591341942548752, + 0.004519576206803322, + -0.0005955418455414474, + 0.010038078762590885, + -0.004547916818410158, + 0.004220615141093731, + 0.01641269586980343, + -0.026295822113752365, + -0.0196444783359766, + -0.017227577045559883, + -0.019112419337034225, + 0.003801405429840088, + 0.0003066651406697929, + -0.00834211241453886, + -0.0025065846275538206, + 0.019563399255275726, + 0.010318041779100895, + -0.005070357583463192, + -0.01962945982813835, + -0.02684956043958664, + -0.005081812385469675, + 0.001302263350225985, + 0.002720228862017393, + 0.030505871400237083, + -0.0042420243844389915, + 0.0008878543740138412, + 0.012894279323518276, + -0.008892481215298176, + -0.006922495551407337, + -0.005066287703812122, + 0.006075812969356775, + 0.007073195185512304, + 0.010492583736777306, + 0.015410047024488449, + -0.004145191051065922, + -0.004933708347380161, + 0.007419962901622057, + -0.023131851106882095, + -0.003670359728857875, + -0.0005205825436860323, + 0.003091412829235196, + 0.0025936730671674013, + 0.013997988775372505, + 0.011932501569390297, + 0.002746280748397112, + 0.0017118846299126744, + -0.003931002225726843, + 0.016953127458691597, + 0.010601327754557133, + 0.007038602605462074, + 0.0017610606737434864, + -0.002499060705304146, + -0.007324632257223129, + 0.026294369250535965, + -0.007014214526861906, + 0.004200909286737442, + 0.008038937114179134, + 0.0020944008138030767, + 0.002174889435991645, + -0.0041710990481078625, + -0.004447652958333492, + -0.008097928017377853, + 0.010987476445734501, + -0.0017475977074354887, + -0.012918340042233467, + -0.0045036450028419495, + -0.0009665307588875294, + 0.0041493382304906845, + 0.004489189479500055, + 0.005614425055682659, + -0.01275758445262909, + -0.0038893313612788916, + 0.005602917168289423, + 0.014276240020990372, + -0.014043274335563183, + -0.00023045921989250928, + 0.03120853193104267, + -0.023269446566700935, + -0.008621674962341785, + -0.003326470497995615, + 0.009626183658838272, + 0.023952946066856384, + 0.001678978675045073, + -0.009258531965315342, + -0.01662672497332096, + -0.008904985152184963, + 0.002518090419471264, + -0.0032520308159291744, + -0.011419568210840225, + -0.0025726472958922386, + -0.001091450685635209, + -0.034886717796325684, + -0.0017231082310900092, + 0.007657189853489399, + -0.0011932073393836617, + -0.038536373525857925, + -0.00564488023519516, + 0.009710077196359634, + 0.0038819294422864914, + 0.010498046875, + 0.00734301982447505, + 0.004897090140730143, + -0.00297190947458148, + -0.0034815948456525803, + -0.01452905684709549, + -0.0020622904412448406, + -0.000748797960113734, + 0.0020412870217114687, + -0.006989396642893553, + 0.015482843853533268, + -0.006261326838284731, + 0.011006543412804604, + 0.01431942731142044, + 0.012136241421103477, + -0.0001762489991961047, + 0.012017329223453999, + -0.0047692046500742435, + 0.00798571016639471, + 0.005640823859721422, + -0.005483716260641813, + -0.0028374106623232365, + -0.006257105618715286, + -0.00214157672598958, + 0.00503478804603219, + -0.006073854397982359, + -0.013560045510530472, + -0.019829822704195976, + -0.002079620026051998, + 0.006949129048734903, + 0.0018922693561762571, + 0.004846880212426186, + -0.010114391334354877, + 0.014624081552028656, + 0.0033133490942418575, + 0.013511312194168568, + -0.015317474491894245, + -0.004461026284843683, + -0.01453099213540554, + 0.011034064926207066, + 0.004594774451106787, + -0.0054330225102603436, + 0.0009402291034348309, + 0.003758926410228014, + 0.010534348897635937, + 0.003576850751414895, + -0.0144644258543849, + -0.0018989227246493101, + 0.0024889023043215275, + -0.0028083587531000376, + 0.003423305694013834, + -0.0027783478144556284, + -0.002589867217466235, + -0.01243642345070839, + 0.03707638010382652, + -0.0009797777747735381, + 0.011317243799567223, + 0.01052258163690567, + -0.0013146995333954692, + 0.0016060967463999987, + 0.005579854361712933, + 0.001456332509405911, + 0.005958536174148321, + 0.024423986673355103, + 0.010794546455144882, + 0.005361174698919058, + 0.00212551630102098, + -0.009724353440105915, + 0.01925892010331154, + -0.0018380621913820505, + -0.0009263745159842074, + 0.009465048089623451, + 0.0015091885579749942, + -0.002474983222782612, + 0.0020405566319823265, + -0.015288221649825573, + 0.012759782373905182, + -0.009127382189035416, + 0.007728633005172014, + 0.02202901430428028, + 0.01032406184822321, + -0.0008085455629043281, + 0.006012458819895983, + -0.0029838222544640303, + 0.001114903949201107, + -0.0002905406872741878, + 0.006604847498238087, + 0.019267503172159195, + 0.01783714070916176, + -0.002680897479876876, + -0.0013681569835171103, + -0.006574008148163557, + 0.018125196918845177, + -0.004946145694702864, + -0.01959017664194107, + 0.0012089518131688237, + -0.022127626463770866, + -0.013014611788094044, + 0.001996094360947609, + -0.006844706367701292, + -0.00023938732920214534, + -0.011128944344818592, + 0.0019326277542859316, + 0.01318553276360035, + -0.013558464124798775, + -0.028161214664578438, + -0.022945843636989594, + 0.012669107876718044, + -0.008984588086605072, + -0.013149763457477093, + 0.003111287485808134, + 0.004902158863842487, + 0.0008966362220235169, + -0.007441603112965822, + 0.017292100936174393, + -0.0033453963696956635, + 0.01267517264932394, + 0.017653226852416992, + 0.005457945168018341, + 0.001391052850522101, + 0.004071148112416267, + 0.014735250733792782, + 0.03252119570970535, + 0.005164068192243576, + 0.003661937778815627, + -0.0020733403507620096, + -0.01700940914452076, + -0.006963676773011684, + 0.007922736927866936, + -0.00508118374273181, + 0.01531885378062725, + -0.0036319864448159933, + 0.000541812798473984, + -0.015132222324609756, + -0.004396294243633747, + -0.0187655221670866, + -0.04387442767620087, + 0.008865145966410637, + -0.03281682729721069, + 0.010977618396282196, + 0.010361949913203716, + -0.010266739875078201, + 0.012842865660786629, + 0.010595842264592648, + -0.005584474187344313, + -0.0028425026684999466, + 0.0032324129715561867, + 0.0020136937964707613, + -0.009142953902482986, + -0.008169902488589287, + 0.01647336594760418, + 0.016833264380693436, + 0.00626386608928442, + 0.012560410425066948, + -0.011521675623953342, + -0.001403096946887672, + 0.016551047563552856, + 0.00876608956605196, + 0.0010410700924694538, + 0.008336570113897324, + 0.027417948469519615, + 0.004794261883944273, + 0.013013675808906555, + -0.001174045610241592, + 0.0007961374358274043, + -0.004045180510729551, + -0.007487817667424679, + 0.012666005641222, + 0.012361429631710052, + 0.010316749103367329, + 0.0004801460599992424, + -0.0037372400984168053, + -0.0019024161156266928, + 0.004317778628319502, + 0.0035864110104739666, + 0.002463540295138955, + -0.026907479390501976, + 0.004865566268563271, + 0.018384290859103203, + -0.007801632862538099, + -0.014358173124492168, + -0.010242528282105923, + -0.02149350382387638, + -0.02253013849258423, + 0.001938431989401579, + -0.0095552708953619, + -0.013084214180707932, + -0.012209773063659668, + -0.0026984247379004955, + -0.009917192161083221, + -0.004689977969974279, + 0.00597993703559041, + 0.012152415700256824, + -0.006578425411134958, + 0.00835496000945568, + 7.821033068466932e-05, + 0.006525642238557339, + 0.023403840139508247, + -0.007402850780636072, + 0.0034347916953265667, + -0.0032129946630448103, + -0.03318372368812561, + -0.003497983328998089, + 0.0275427233427763, + -0.0023356545716524124, + 0.019536789506673813, + 0.022125329822301865, + -0.0014545819722115993, + 0.0196485985070467, + 0.007431895472109318, + 0.04617717117071152, + 0.003183026798069477, + -0.0001240794372279197, + -0.013208074495196342, + -0.012754533439874649, + 0.010950661264359951, + -0.0009023158927448094, + -0.009995883330702782, + 0.009186591021716595, + -0.007056322414427996, + 0.0015098800649866462, + -0.011203287169337273, + 0.007018927950412035, + -0.016360701993107796, + -0.006408556364476681, + -0.005116238258779049, + -0.011964497156441212, + 0.0015083462931215763, + -0.008042804896831512, + 0.00804817397147417, + -0.008163321763277054, + -0.017742721363902092, + -0.019944537431001663, + 0.010662700980901718, + 0.014877211302518845, + 0.014720057137310505, + -0.009514421224594116, + -0.008938147686421871, + -0.002383305225521326, + -0.00967949628829956, + -0.006536663975566626, + 0.006364248692989349, + -0.002645410830155015, + 0.023829249665141106, + 0.012898381799459457, + -0.007361024618148804, + 0.008649168536067009, + 0.009376617148518562, + -0.004015657585114241, + 0.0055791293270885944, + 0.020899521186947823, + -0.023024125024676323, + 0.02528107352554798, + -0.002208806574344635, + 0.0037166972178965807, + -0.006802384275943041, + -0.006168688647449017, + 0.019424794241786003, + -0.060162968933582306, + -0.02281174622476101, + -0.02398216910660267, + 0.0018332996405661106, + 0.018422754481434822, + -0.0026235454715788364, + -0.0048584467731416225, + -0.015030420385301113, + 0.0023875695187598467, + 0.0146514056250453, + -0.005562593694776297, + -0.005805102176964283, + 0.028119396418333054, + -0.011522932909429073, + -0.002499168971553445, + 0.019667593762278557, + 0.005364013835787773, + 0.00554875610396266, + -0.004574395250529051, + 0.002609319519251585, + -0.003626369871199131, + 0.0029871449805796146, + -0.003476461861282587, + -0.011225476861000061, + 0.002887590089812875, + -0.006387121044099331, + -0.007281909231096506, + -0.011309565976262093, + 0.0035794961731880903, + -0.00807796511799097, + -0.015346957370638847, + 0.0022028556559234858, + -0.016080576926469803, + 0.018590543419122696, + -0.009886877611279488, + 0.006467617116868496, + -0.0017932435730472207, + 0.010027856566011906, + -0.021072138100862503, + 0.02127055637538433, + 0.006205061916261911, + -0.007439880631864071, + -0.0163869746029377, + 0.007007664069533348, + -0.07922595739364624, + -0.02788044698536396, + 0.005419603083282709, + 0.03386342152953148, + -0.004641999024897814, + -0.0039206743240356445, + -0.0012071700766682625, + -0.03564850240945816, + -0.010574089363217354, + 0.017245758324861526, + 0.007548045367002487, + -0.00984274223446846, + 0.007426795549690723, + 0.007688955403864384, + -0.007261746563017368, + -0.005260912235826254, + 0.0035509637091308832, + 0.005713252816349268, + -0.0029251608066260815, + 0.012324389070272446, + -0.0263815987855196, + -0.005066198762506247, + -0.00515421899035573, + -0.00032754961284808815, + 0.01111095491796732, + 0.016258783638477325, + -0.0038673256058245897, + 0.015378079377114773, + -0.010226603597402573, + -0.0069462452083826065, + -0.002115961629897356, + 0.01678987592458725, + -0.0015926017658784986, + 0.007000999059528112, + 0.0016695110825821757, + 0.0179409421980381, + 0.0005683738854713738, + -0.0028900448232889175, + -0.015612230636179447, + 0.0014259446179494262, + -0.0016478077741339803, + 0.0061606112867593765, + 0.0034755151718854904, + 0.004238127265125513, + -0.012538495473563671, + -0.004356002435088158, + -0.0012013213708996773, + 0.001364274648949504, + 0.015490523539483547, + -0.0038782490883022547, + 0.003340272232890129, + -0.006592144258320332, + -0.008534576743841171, + 0.003979245666414499, + -0.020625660195946693, + 0.008593186736106873, + 0.008636590093374252, + -0.005485687404870987, + 0.00790587067604065, + 0.004048253409564495, + -0.006531120277941227, + -0.003897344460710883, + -0.00498405285179615, + 0.015377508476376534, + 0.0016695013036951423, + 0.007361170835793018, + 0.013836637139320374, + -0.010259389877319336, + -0.0047974358312785625, + -0.001138202496804297, + -0.0056905597448349, + -0.011857145465910435, + -0.015879733487963676, + -0.008301971480250359, + -0.016409555450081825, + -0.017470408231019974, + -0.010062686167657375, + 0.0013008462265133858, + -0.005303734913468361, + -0.023209000006318092, + -0.003067594487220049, + 0.002258922206237912, + 0.011500023305416107, + 0.008368420414626598, + -0.00179075647611171, + 0.010551744140684605, + 0.0024265639949589968, + 0.01922677271068096, + -0.00039887946331873536, + 0.007761041168123484, + -0.019719403237104416, + 0.0050078462809324265, + 0.0014843168901279569, + 0.015451988205313683, + 0.004213083069771528, + -0.00911447498947382, + 0.03507094830274582, + 0.018271533772349358, + 0.007505957502871752, + -0.016487712040543556, + 0.0033922831062227488, + 0.005789589136838913, + -0.006577116437256336, + -0.004448184743523598, + 0.0044700936414301395, + -0.01825708895921707, + 0.034874629229307175, + 0.005891117732971907, + -0.06195620819926262, + -0.006472081411629915, + 0.005112671758979559, + -0.0016610316233709455, + -0.003357426030561328, + 0.0072632101364433765, + -0.006647227797657251, + -0.012382269836962223, + -0.001497423043474555, + -0.008515103720128536, + -0.016057796776294708, + 0.0053186905570328236, + 0.0018818326061591506, + 0.013092250563204288, + -0.00409690011292696, + 0.00935771968215704, + -0.005553907249122858, + -0.0029800839256495237, + 0.019609834998846054, + 0.015916481614112854, + -0.0023287772201001644, + 0.015194394625723362, + -0.03449421003460884, + 0.013935690745711327, + 0.004089877009391785, + 0.005322540178894997, + 0.02320192940533161, + -0.0069959876127541065, + 0.010370815172791481, + 0.0027514633256942034, + -0.0017691432731226087, + -0.02245207503437996, + 0.0028986085671931505, + 0.0007137122447602451, + 0.014847351238131523, + 0.006305910646915436, + 0.0030098671559244394, + 0.00031528438557870686, + 0.013657396659255028, + 0.02907228283584118, + 0.0026079448871314526, + 0.01035858690738678, + 0.0022104675881564617, + -0.002768238540738821, + 0.0009848810732364655, + 0.019584322348237038, + 0.007346856873482466, + -0.021103356033563614, + 0.002177639165893197, + -0.015655530616641045, + 0.0018482072046026587, + 0.003584992839023471, + 0.003943829331547022, + 0.01722690463066101, + -0.003469107672572136, + -0.004341100342571735, + -0.003164398716762662, + 0.022719882428646088, + -0.011052196845412254, + 0.005934086162596941, + -0.01381641998887062, + 0.019735975190997124, + 0.03166123852133751, + -0.012361296452581882, + -0.0657259076833725, + -0.020637642592191696, + -0.0144069604575634, + 0.0038636079989373684, + 0.0029545302968472242, + -0.016413990408182144, + -0.00582096865400672, + 0.02416626550257206, + 0.010460251942276955, + 0.008920969441533089, + -0.01824953407049179, + -0.00343599496409297, + 0.005061381962150335, + -0.0028775560203939676, + -0.010187787003815174, + 0.008179591968655586, + 0.004913522396236658, + -0.00927993468940258, + 0.010684316977858543, + -0.011790146119892597, + 0.00997245218604803, + -0.0018959726439788938, + 0.012626116164028645, + -0.004742871969938278, + -0.01163154374808073, + -0.026583513244986534, + 0.011911923997104168, + 0.0014231035020202398, + -0.00281972112134099, + -0.01839648373425007, + -0.012476025149226189, + 0.027643606066703796, + 0.012030738405883312, + -0.025415875017642975, + -0.001429753378033638, + 0.001197646139189601, + -0.002398040844127536, + -0.00530348950996995, + -0.004499646369367838, + -0.01976742222905159, + -0.012912314385175705, + -0.014712395146489143, + 0.008343123830854893, + 0.02034182660281658, + 0.002616897923871875, + 0.0015432004583999515, + -0.003267887746915221, + -0.001140942913480103, + -0.004952054005116224, + -0.0037483409978449345, + 0.04249156266450882, + -0.007525091990828514, + -0.010147330351173878, + 0.01088855229318142, + 0.013447481207549572, + 0.006853216327726841, + 0.00464027002453804, + 0.004488260950893164, + -0.013376287184655666, + -0.003530818736180663, + 0.009166043251752853, + -0.00861982349306345, + 0.00043307553278282285, + -0.002710925182327628, + -0.019515907391905785, + -0.0064010960049927235, + -0.011096678674221039, + -0.017314651980996132, + 0.007288741413503885, + -0.013647892512381077, + -0.005354726687073708, + -0.004262795206159353, + 0.007126353681087494, + -0.003714007558301091, + -0.009916716255247593, + 0.006799359805881977, + 0.010689862072467804, + 0.0006710236775688827, + 0.019833408296108246, + 0.0042415279895067215, + -0.037837184965610504, + 0.01109075453132391, + 0.004448003601282835, + -0.00013194892380852252, + 0.002669510431587696, + -0.010541283525526524, + -0.011674895882606506, + 0.010805860161781311, + -0.009471300058066845, + -0.011376600712537766, + -0.009376393631100655, + -0.001986261224374175, + 0.007262710947543383, + 0.009168902412056923, + 0.0020013221073895693, + -0.0007376068388111889, + 0.006864301394671202, + 0.0004386409418657422, + -0.006847064010798931, + -0.015706578269600868, + -0.004035645630210638, + -0.004543020855635405, + 0.010142700746655464, + 0.0037561769131571054, + 0.026716075837612152, + 0.0003796402597799897, + 0.004714024253189564, + -0.005196633283048868, + 0.0038792528212070465, + -0.05187200382351875, + -0.005104644689708948, + 0.020166892558336258, + -0.007743534632027149, + -0.02975725382566452, + -0.03640946373343468, + 0.01677963323891163, + -0.03135530278086662, + 0.0013304955791682005, + -0.008282637223601341, + 0.014279515482485294, + 0.0021158093586564064, + 0.011999614536762238, + -0.017264438793063164, + -0.0017726566875353456, + 0.010676167905330658, + 0.005884714424610138, + 0.013384230434894562, + -0.0012105393689125776, + -0.004347457550466061, + -0.00231130956672132, + 0.001117232721298933, + 0.012782099656760693, + 0.01398566085845232, + -0.040582627058029175, + -0.02080669440329075, + -0.0053053973242640495, + 0.002612998243421316, + 0.016347268596291542, + -0.039837438613176346, + 0.011399800889194012, + 0.014724153093993664, + -0.007089031860232353, + 0.02656799741089344, + -0.02546560764312744, + -0.018734710291028023, + 0.0007240134291350842, + -0.004965181928128004, + 0.01908096857368946, + 0.01797887682914734, + -0.020701510831713676, + -0.007285646628588438, + 8.985931344795972e-05, + 0.005762308370321989, + -0.001478393911384046, + -0.009578519500792027, + -0.010313746519386768, + -0.019702263176441193, + -0.013756593689322472, + -0.0028065356891602278, + 0.013810430653393269, + -0.029696263372898102, + -0.01942763850092888, + 0.01105937547981739, + 0.006720618810504675, + -0.015079755336046219, + -0.008852972649037838, + -0.004303340800106525, + 0.016543351113796234, + -0.005754257086664438, + -0.006127804517745972, + -0.026734357699751854, + 0.0017168432241305709, + -0.001718433341011405, + 0.012795966118574142, + -0.0031854715198278427, + -0.000557648774702102, + 0.0007116738706827164, + 0.003170877927914262, + -0.011315016075968742, + 0.023988952860236168, + 0.026189561933279037, + -0.0027429608162492514, + 0.015148050151765347, + -0.00766671122983098, + 0.003756619291380048, + -0.016823122277855873, + -0.009613719768822193, + 0.007587088271975517, + -0.002959110541269183, + 0.01399114727973938, + 0.010622652247548103, + -0.016022587195038795, + 0.009324519895017147, + -0.007391254883259535, + 0.002719693351536989, + 0.007309063337743282, + -0.0034797743428498507, + 0.0562906451523304, + 0.005160065833479166, + -0.008043410256505013, + -0.009310608729720116, + 0.00667001586407423, + 0.0003646060358732939, + 0.0050510806031525135, + 0.015019181184470654, + -0.009972631931304932, + -0.03570060431957245, + 0.012864458374679089, + 0.04095259681344032, + -0.0010812242981046438, + 0.0031923081260174513, + 0.011122796684503555, + 0.1283637136220932, + -0.028704997152090073, + -0.028308704495429993, + 0.016754386946558952, + -0.003272195113822818, + -0.01082681491971016, + -0.016240917146205902, + 0.023332083597779274, + 0.012286140583455563, + -0.0011067771119996905, + -0.052307408303022385, + 0.0033665166702121496, + -0.0028980423230677843, + -0.01084961462765932, + 0.015117427334189415, + -0.011977862566709518, + -0.008029605261981487, + 0.019260937348008156, + 0.0058240569196641445, + -0.02464125119149685, + 0.011143708601593971, + -0.0008706917287781835, + 0.03279055282473564, + 0.005418133921921253, + 0.011395628564059734, + -0.0032616383396089077, + -0.01144370436668396, + 0.022464372217655182, + 0.022429581731557846, + -0.0068843853659927845, + 0.010980126447975636, + -0.009394318796694279, + -0.012188713066279888, + -0.002959088422358036, + -0.003477970138192177, + 0.007695713080465794, + 0.006878781598061323, + -0.0035800831392407417, + -0.00160782050807029, + -0.04455837607383728, + -0.0030478299595415592, + 0.0018085574265569448, + 0.018341004848480225, + 0.011983311735093594, + -0.017588984221220016, + 0.019988862797617912, + 0.003924007527530193, + -0.003517263336107135, + -0.0031142879743129015, + -0.004395765718072653, + -0.004816590342670679, + -0.010017644613981247, + -0.009662714786827564, + 0.0005214190459810197, + 0.005220230668783188, + -0.00879519060254097, + -0.002467290498316288, + -0.017420481890439987, + 0.009756222367286682, + -0.0009167435928247869, + -0.0030262174550443888, + 0.018001871183514595, + 0.010495787486433983, + -0.016474055126309395, + -0.02433532476425171, + -0.00844273529946804, + 0.011152602732181549, + 0.0004018684849143028, + -0.005059216637164354, + -0.022433528676629066, + -0.005472222343087196, + -0.014673872850835323, + -0.006082497537136078, + -0.05370490625500679, + 0.00012074871483491734, + 0.005943971686065197, + 0.006143524777144194, + -0.002632595133036375, + -0.011522267945110798, + 0.009023986756801605, + -0.009773830883204937, + 0.0034727875608950853, + -0.0032375087030231953, + -0.0002949668269138783, + -0.014867693185806274, + 0.007757530082017183, + 0.00022718089167028666, + -0.008648760616779327, + 0.012547854334115982, + 0.005969881545752287, + 0.005935147870332003, + -0.008470745757222176, + 0.010666294023394585, + -0.008054745383560658, + -0.07249145954847336, + 0.006319514010101557, + 0.01115881372243166, + 0.005281304474920034, + 0.0038096869830042124, + -0.0005909273168072104, + 0.008159256540238857, + -0.00941863190382719, + -0.005065915174782276, + 0.0027173745911568403, + 0.023775923997163773, + -0.009003423154354095, + 0.0016939141787588596, + 0.004332554526627064, + -0.0014161558356136084, + -0.005688633304089308, + -0.005693497601896524, + 0.008247049525380135, + -0.010859109461307526, + -0.004202027805149555, + -0.017888342961668968, + -0.006899502128362656, + -0.002054117154330015, + 0.0028496449813246727, + -0.01088014431297779, + 0.0027994494885206223, + -0.004721255507320166, + 0.0015802356647327542, + 0.005869870539754629, + 0.0032634863164275885, + -0.0024718870408833027, + -0.01040685549378395, + 0.0051142075099051, + 0.0008331027929671109, + -0.015952469781041145, + -0.007711038924753666, + -0.0026961127296090126, + -0.002666323911398649, + -0.018021445721387863, + 0.001310491468757391, + -0.01279436144977808, + 0.016683727502822876, + -0.005520686041563749, + 0.0026028896681964397, + 0.010971864685416222, + 0.007421482354402542, + 0.014096439816057682, + 0.0045592160895466805, + -0.00935429148375988, + -0.0024861337151378393, + 0.007644015830010176, + 0.008923516608774662, + -0.0009817846585065126, + 0.007495856378227472, + 0.013618332333862782, + -0.012770401313900948, + -0.016564171761274338, + 0.0006286321440711617, + -0.011687454767525196, + 0.004778402391821146, + 0.0048357658088207245, + 0.009606592357158661, + -0.00771834421902895, + 0.021416066214442253, + -0.003217598656192422, + -0.00910928100347519, + 0.021316714584827423, + -0.004881054628640413, + -0.003644288517534733, + 0.014925387687981129, + -0.00337241287343204, + 0.015323291532695293, + 0.0045631928369402885, + 0.04746655747294426, + 0.005071279592812061, + 0.01602376438677311, + -0.007695366162806749, + -0.024546010419726372, + -0.02267001010477543, + -0.006185268517583609, + 0.013161041773855686, + 0.0055510071106255054, + -0.019409365952014923, + 0.0007900785421952605, + 0.01734340563416481, + 0.002297768136486411, + 0.007977853529155254, + 0.015147528611123562, + 0.04195673391222954, + 0.026089347898960114, + -0.004524372052401304, + -0.004695751704275608, + 0.01936998777091503, + 0.0011578191770240664, + -0.001898327493108809, + -0.00428495928645134, + 0.003575903596356511, + -0.01425930205732584, + 0.006460873875766993, + 0.027069946750998497, + 0.0018709177384153008, + 0.012739486061036587, + 0.011064897291362286, + -0.004048272967338562, + 0.0012056715786457062, + 0.01718083955347538, + 0.01582416519522667, + 0.0037609937135130167, + 0.0031954003497958183, + -0.04218340665102005, + -0.004232326988130808, + -0.008471866138279438, + 0.00024051929358392954, + 0.0030364994890987873, + 0.00848176795989275, + 0.015397652983665466, + -0.02385835163295269, + -0.012756610289216042, + 0.010674454271793365, + -0.018864139914512634, + 0.01411425694823265, + -0.008529291488230228, + -0.008695864118635654, + 0.0072135915979743 + ] + }, + "sad": { + "count": 2, + "norm": 48.91717529296875, + "raw_vector": [ + -0.7768354415893555, + -0.3446767330169678, + -0.0658702626824379, + -0.24661052227020264, + -1.0889972448349, + 1.559710144996643, + -0.5858829021453857, + 0.2627476751804352, + 0.4600060284137726, + -0.34250587224960327, + 0.17159970104694366, + 0.021192148327827454, + -0.007357478141784668, + 0.1865442544221878, + -0.3714713454246521, + -0.21823620796203613, + 0.609839916229248, + 0.19016045331954956, + 0.867116391658783, + 0.1891244649887085, + -0.44201964139938354, + 0.6627005934715271, + 0.0869412049651146, + -0.3852747678756714, + 0.40153148770332336, + 0.6472905874252319, + -3.4560046195983887, + 0.13018181920051575, + 0.1571112871170044, + -0.4675629734992981, + 0.2961750328540802, + -1.6681487560272217, + 0.7601454854011536, + 0.11846376955509186, + 0.04899027943611145, + -1.005908727645874, + 0.6377833485603333, + -0.5621429085731506, + -0.42193087935447693, + 0.1281343400478363, + -0.07733325660228729, + -0.43358105421066284, + 0.8302350640296936, + 0.7957732677459717, + 0.015142619609832764, + -0.029695779085159302, + -0.6907839775085449, + -0.05680951476097107, + -0.49224579334259033, + 0.17454586923122406, + -0.01804543286561966, + -2.105553150177002, + -0.051092155277729034, + -0.3871380388736725, + 1.7405385971069336, + 0.33152487874031067, + 0.2901541590690613, + 0.18082252144813538, + -0.958439826965332, + -0.0231301411986351, + -0.09096163511276245, + -0.39339497685432434, + 0.3956013321876526, + -1.2694969177246094, + 0.5393283367156982, + 0.5886656641960144, + -0.11339372396469116, + 0.24417203664779663, + 1.2450435161590576, + 0.26954036951065063, + 0.39933907985687256, + 0.08412882685661316, + -0.6285504102706909, + -0.36909228563308716, + 0.5608463883399963, + 1.3004331588745117, + -0.18067914247512817, + -0.0013128295540809631, + -1.0720725059509277, + -0.7269788980484009, + 1.7337863445281982, + 0.4458073675632477, + -0.738541841506958, + -0.5478180646896362, + 0.5561954379081726, + 0.5046272873878479, + -0.542716383934021, + 0.4499642252922058, + -0.36045411229133606, + 0.34002983570098877, + -0.3601721525192261, + -0.12138453125953674, + -0.40052667260169983, + 0.7403481602668762, + -0.9347865581512451, + -2.503065586090088, + 0.7143421769142151, + -0.022898808121681213, + 1.9586167335510254, + 0.17696037888526917, + -0.18098454177379608, + -0.47295284271240234, + -1.2857987880706787, + -1.0504834651947021, + 0.3704020380973816, + -0.01506584882736206, + -0.3306606709957123, + -0.22269630432128906, + -0.8807055950164795, + 0.621147632598877, + -0.21013274788856506, + 0.0770358145236969, + -0.002333402633666992, + 0.36562642455101013, + 0.42786353826522827, + 0.5060228109359741, + 0.34435397386550903, + -0.22111089527606964, + 0.21254654228687286, + 0.22105050086975098, + 0.9921614527702332, + 0.5250886082649231, + 1.6507022380828857, + 0.1757812201976776, + 0.26479050517082214, + -1.3012080192565918, + 0.012619107961654663, + -0.0776304304599762, + -0.4507734477519989, + 0.5460008382797241, + 0.898049533367157, + -1.062709927558899, + 0.03307583928108215, + 0.15780282020568848, + 1.433689832687378, + 0.8606209754943848, + 0.11046694219112396, + -0.5023804903030396, + -0.088824562728405, + -0.2365742325782776, + 0.46758604049682617, + 0.06373906135559082, + -1.1900386810302734, + 0.2734510004520416, + 0.4524497985839844, + -0.16491742432117462, + -0.37293872237205505, + 0.6662051677703857, + -0.07957541942596436, + 1.0794687271118164, + 0.21636050939559937, + 0.02423166297376156, + -0.3212699294090271, + -0.8693411350250244, + 0.2791486382484436, + 1.290001630783081, + -0.19579827785491943, + -0.44928237795829773, + -0.01016874611377716, + -0.0008756332099437714, + -0.40847519040107727, + 0.30801090598106384, + 0.8043152093887329, + 0.6298762559890747, + -0.23163138329982758, + -0.2667217254638672, + -0.7658175230026245, + -1.2963749170303345, + -0.8720594048500061, + 0.22746312618255615, + 0.47740113735198975, + -0.6178365349769592, + -1.647819995880127, + -0.1555078774690628, + 0.13863512873649597, + -0.20430317521095276, + -1.263178825378418, + 0.30202388763427734, + 0.2984832525253296, + 0.4611828327178955, + 0.5637180805206299, + 0.2442684769630432, + -0.34087491035461426, + -0.3082147538661957, + 0.12960010766983032, + -0.020080626010894775, + 0.06153261661529541, + 0.13309670984745026, + -0.04846963286399841, + -0.3644934296607971, + 0.5509409308433533, + 0.7220051288604736, + 1.3737545013427734, + 0.5429383516311646, + -0.1654779613018036, + -0.06215853616595268, + -2.3420963287353516, + -0.06145960092544556, + -0.8094825148582458, + 0.0262223482131958, + 2.401597499847412, + -0.016625016927719116, + -1.0563766956329346, + 0.6198148727416992, + 0.8580743074417114, + -0.8713017106056213, + -0.07017096877098083, + 2.471114158630371, + 1.4593441486358643, + -0.34894394874572754, + 0.40626364946365356, + 0.025296151638031006, + -0.3132430613040924, + 0.11442431807518005, + 0.4140213131904602, + 0.257710725069046, + 0.036175668239593506, + -0.14373056590557098, + 0.2634403109550476, + -0.5916968584060669, + -0.587204098701477, + 0.16148413717746735, + 0.733503520488739, + -0.18790334463119507, + 1.6809202432632446, + -2.57277512550354, + -0.8329476118087769, + -0.49744561314582825, + 0.3373641073703766, + 0.6133725047111511, + 0.15554079413414001, + 0.248027503490448, + -0.8373640179634094, + -3.3653650283813477, + 0.9233126640319824, + -0.09150780737400055, + -0.32080382108688354, + -0.34341806173324585, + -0.09150290489196777, + 0.9172846078872681, + 0.7294290661811829, + -1.1549512147903442, + 0.5172845125198364, + -3.9399960041046143, + -0.10694671422243118, + 0.6228541135787964, + -1.2531871795654297, + -0.5852253437042236, + 1.3205987215042114, + 0.20934315025806427, + -0.39715540409088135, + -2.2571640014648438, + -0.29603514075279236, + 0.6430221796035767, + -0.39010941982269287, + 0.47648054361343384, + 0.7216657400131226, + -0.49418044090270996, + 0.11626511812210083, + -0.2805483341217041, + -0.7298954129219055, + -0.3436983525753021, + 1.1991803646087646, + 0.24256160855293274, + 1.0116403102874756, + 0.043711915612220764, + -0.3087325692176819, + -1.1145942211151123, + 0.11343429982662201, + -0.7263582348823547, + 0.10044622421264648, + 0.8231832981109619, + 0.029533445835113525, + -0.7982391119003296, + -0.7990096211433411, + 0.22105970978736877, + 0.5047805309295654, + -0.16073764860630035, + 0.5287466049194336, + 0.4214994013309479, + -0.7483950853347778, + 0.2931097149848938, + 0.43634915351867676, + -0.4283742606639862, + 0.31004855036735535, + 0.5167847275733948, + 0.031522542238235474, + 0.46423929929733276, + 0.168598473072052, + 0.1597903072834015, + -0.5068390369415283, + -1.2069873809814453, + -1.1554988622665405, + -0.1728190779685974, + -0.058705806732177734, + 0.20127274096012115, + -0.7937146425247192, + -0.6667153835296631, + 0.8640887141227722, + -0.47818708419799805, + 0.3411421477794647, + 0.7094160318374634, + -0.27172979712486267, + -0.06377780437469482, + -0.5324657559394836, + 0.1737416386604309, + 0.09266012161970139, + -0.9574347138404846, + -0.3790251910686493, + -0.800642728805542, + -0.19380135834217072, + 0.04855301231145859, + 0.6518816947937012, + 0.19165179133415222, + -0.004553601145744324, + 0.6016268730163574, + 0.15229274332523346, + 0.49227121472358704, + 0.5757831335067749, + 0.585572361946106, + 0.2596888244152069, + 0.3677830398082733, + -0.3386193811893463, + 0.5819059610366821, + 0.3801754117012024, + 0.2708471715450287, + 0.28299057483673096, + -0.5929309129714966, + 0.5434075593948364, + 0.7599376440048218, + -0.2843969464302063, + -0.14671853184700012, + -0.30932968854904175, + 0.9238585829734802, + -0.18089702725410461, + 0.45719343423843384, + -1.1816967725753784, + -0.19320376217365265, + -0.020416706800460815, + 0.772328794002533, + -0.0005424618721008301, + 0.7449535131454468, + -0.21532997488975525, + -2.0887491703033447, + -0.6672860980033875, + -0.1221550703048706, + 1.381487250328064, + -0.1535910815000534, + -0.16467252373695374, + 0.09671318531036377, + 0.023904114961624146, + 0.2313459813594818, + 0.5163057446479797, + 0.23016445338726044, + 0.9461886882781982, + 0.2683289647102356, + 0.4454135298728943, + -0.8374156355857849, + 0.3516765236854553, + -0.2660540044307709, + 0.3315733075141907, + -1.6946271657943726, + -0.2437979131937027, + 0.37933608889579773, + 0.4290444254875183, + -0.242070734500885, + 0.42660248279571533, + -0.10940875113010406, + 2.6668202877044678, + 0.2662818133831024, + -0.6085379123687744, + 0.3730141222476959, + -0.02528977394104004, + 2.4769554138183594, + 0.10748331248760223, + -0.7707177400588989, + 0.21454176306724548, + -0.32495516538619995, + 0.5519877076148987, + -0.18955183029174805, + -0.08740364015102386, + -0.16805438697338104, + 1.4034656286239624, + 0.34349530935287476, + -0.29503846168518066, + 0.2748686969280243, + -0.20318850874900818, + -0.14820638298988342, + -0.7509110569953918, + 0.32036927342414856, + -0.6045479774475098, + 0.06374680995941162, + 0.3456077575683594, + -1.2140417098999023, + -1.4609100818634033, + -0.7526510953903198, + 0.09718263149261475, + 1.3453162908554077, + 0.30944526195526123, + 0.2786405682563782, + 0.012273760512471199, + -0.25247734785079956, + 0.11205294728279114, + -0.34972628951072693, + 0.44710344076156616, + 0.24324741959571838, + 0.2190733253955841, + -0.04906269535422325, + 0.5747466087341309, + 0.46043556928634644, + 0.5774931907653809, + -0.8211442232131958, + -0.2003220170736313, + -0.8948950171470642, + -0.3729666471481323, + 0.20658636093139648, + -0.2318662405014038, + -0.09168979525566101, + -2.0055158138275146, + -0.6896485090255737, + -0.6304444074630737, + -0.9518861174583435, + 0.8194252252578735, + -0.866625189781189, + -0.5333594083786011, + -0.01107296347618103, + 0.3622795045375824, + -0.5668808817863464, + 0.9419622421264648, + -0.12761589884757996, + -1.2740129232406616, + 0.16882415115833282, + 0.20309406518936157, + -0.5375645756721497, + 0.32992106676101685, + 0.48158377408981323, + -0.570033073425293, + 0.2867763936519623, + 0.48416197299957275, + -0.06486096978187561, + -0.3886776566505432, + -0.2690240144729614, + 0.1356840282678604, + -1.0408310890197754, + -0.09599179029464722, + 1.2161872386932373, + 0.3561581075191498, + -1.6448264122009277, + 0.6217079162597656, + 1.5951722860336304, + -0.020853228867053986, + -0.03801730275154114, + 0.6159248352050781, + 0.3363073766231537, + 0.9018160104751587, + 0.1507866382598877, + -0.0923120379447937, + -0.20318064093589783, + -0.21442240476608276, + -0.049798280000686646, + 0.3178531527519226, + -0.06745678186416626, + -0.861135721206665, + -0.18342775106430054, + 0.3173867464065552, + 0.5612871050834656, + -0.38374876976013184, + -0.30385467410087585, + 0.2560656666755676, + 1.7487430572509766, + -0.4126729369163513, + -0.17174378037452698, + -0.4240037500858307, + 0.2385350912809372, + -0.8649812936782837, + -0.4778209328651428, + 0.06391280144453049, + 0.0053960829973220825, + -0.012334838509559631, + 0.20461812615394592, + -0.036036908626556396, + -0.3566182553768158, + 0.301613450050354, + 0.8721566796302795, + -0.48722589015960693, + 0.3398226499557495, + -1.2315900325775146, + 0.5642967224121094, + -1.4531726837158203, + 0.013462558388710022, + -0.06889159977436066, + -0.6754171848297119, + 0.9485833644866943, + 0.3305256962776184, + -0.32347285747528076, + -0.23613670468330383, + 0.05772365629673004, + 0.13226911425590515, + -0.04060804843902588, + 0.7085897922515869, + 1.035390853881836, + -0.03606821596622467, + -0.48548611998558044, + -0.8774223327636719, + 0.455649197101593, + -0.19651919603347778, + 0.2962011396884918, + 0.1991913914680481, + 0.7244064211845398, + -0.5312427282333374, + 0.8429518938064575, + 0.19021645188331604, + 0.35435381531715393, + -0.1924171894788742, + 0.05074203014373779, + -0.6879724264144897, + -0.0026934146881103516, + 0.2340487241744995, + -0.168908029794693, + 0.4328822195529938, + -0.05270576477050781, + 0.3005664348602295, + 0.31126725673675537, + 1.641235113143921, + -0.11340916156768799, + -0.27027544379234314, + 0.8103331923484802, + 0.20617055892944336, + -0.24596095085144043, + -1.0198482275009155, + 0.15145590901374817, + -0.2169712483882904, + 0.07502599060535431, + -0.07079935073852539, + 0.09325655549764633, + -0.03769733011722565, + -0.5073196291923523, + 0.9524679183959961, + -0.16381141543388367, + 0.46234405040740967, + -0.13418853282928467, + -0.7765846252441406, + -0.12709857523441315, + -0.3938026428222656, + 0.523303747177124, + -0.5200521945953369, + -1.2674050331115723, + -0.747268795967102, + 0.4193892478942871, + 0.16557134687900543, + 0.10043859481811523, + -0.751089334487915, + 3.8209187984466553, + -0.6727185845375061, + 1.06625497341156, + -0.17349550127983093, + 0.009306937456130981, + -0.421512246131897, + -0.3924317955970764, + -0.0019035041332244873, + -0.7701817750930786, + -0.41039490699768066, + 0.4713594317436218, + 0.5510579347610474, + -0.24940618872642517, + -0.3575533330440521, + 0.17530012130737305, + 0.6902585029602051, + -0.2694193124771118, + -0.3706909418106079, + 0.01142488420009613, + 0.4588450789451599, + 0.6968225240707397, + -0.3745424449443817, + -0.2179499864578247, + 0.03479941934347153, + -0.14073552191257477, + -0.6875172853469849, + -0.9956170320510864, + -1.0062744617462158, + -0.013629704713821411, + -0.6653904318809509, + 0.3504837453365326, + 1.0808343887329102, + 0.49005430936813354, + 0.409260630607605, + -1.6126407384872437, + 0.21283641457557678, + -0.027643203735351562, + 0.12666073441505432, + -0.5593928098678589, + -1.091878890991211, + 1.0733225345611572, + -0.10814297944307327, + -0.7649459838867188, + -0.47096627950668335, + -0.5049834251403809, + -0.01198260486125946, + 0.7996737957000732, + -0.8183380365371704, + -0.19273307919502258, + 0.6501696705818176, + -0.5993214249610901, + 0.2866671085357666, + 0.7182811498641968, + -0.3225613236427307, + -0.2798386216163635, + -0.2542324662208557, + -0.32343176007270813, + -1.1877939701080322, + 0.06705695390701294, + -0.12879490852355957, + 0.7853724956512451, + -0.17912277579307556, + 0.1403646320104599, + -1.2931150197982788, + 0.48254096508026123, + -0.014364807866513729, + -0.7160733342170715, + 0.38838040828704834, + 0.8877867460250854, + 0.189920112490654, + 0.3203732967376709, + -0.3846493363380432, + 0.30692699551582336, + -0.3867915868759155, + 0.528051495552063, + 0.006934225559234619, + 0.09187878668308258, + 0.011454073712229729, + 0.46974602341651917, + -1.3011860847473145, + 0.09090234339237213, + 0.157183438539505, + 0.3611655831336975, + 0.6069043874740601, + 0.1769777238368988, + -0.2802250385284424, + -0.44323068857192993, + -0.13635599613189697, + -0.38989391922950745, + 0.09958262741565704, + 0.25032705068588257, + -1.266745924949646, + 1.7627270221710205, + 0.267351359128952, + -0.3097967505455017, + 0.7258246541023254, + 0.4889618456363678, + -0.8338127732276917, + -0.3096858263015747, + 0.7528650760650635, + -0.4697069525718689, + 0.5696802735328674, + 0.5278284549713135, + 0.3023088574409485, + 0.32806992530822754, + -1.4554615020751953, + 1.3115336894989014, + 1.2065012454986572, + 0.3575546443462372, + -0.4110828638076782, + -0.82662034034729, + -0.8244377374649048, + -0.1453922837972641, + -2.347731113433838, + 0.7815461158752441, + -1.0058733224868774, + 0.14813069999217987, + 0.4594488739967346, + 0.6934160590171814, + -0.08634228259325027, + 0.34761255979537964, + 0.09742271900177002, + 0.47188371419906616, + -0.11279694736003876, + 0.18842214345932007, + -0.9406355619430542, + -0.4486961364746094, + -0.40361320972442627, + -0.28719258308410645, + -0.020180627703666687, + -0.5214754343032837, + -0.3412930965423584, + 0.2646290957927704, + 0.015205428004264832, + -0.39461061358451843, + 0.2884000539779663, + 0.8625909686088562, + 0.8718942403793335, + -1.0782811641693115, + 0.8767870664596558, + -1.0917973518371582, + 0.34565216302871704, + -0.16202788054943085, + -0.5543527603149414, + -0.586858868598938, + 0.5817118287086487, + 0.7017953991889954, + 0.5022796392440796, + 0.057066142559051514, + -0.36591339111328125, + -0.05700286477804184, + 0.07054376602172852, + 1.2578868865966797, + 0.8801606893539429, + 0.40546292066574097, + -0.4732894003391266, + -0.17954447865486145, + -1.0167797803878784, + -0.5561220645904541, + 0.35491061210632324, + 0.09562385082244873, + 0.3684599697589874, + -0.5406582951545715, + -0.4161156415939331, + 1.6640799045562744, + 0.3539685606956482, + -0.047274306416511536, + 0.404846727848053, + 0.18371710181236267, + -0.5989924073219299, + 0.23710022866725922, + 0.32102832198143005, + -0.0505552664399147, + 1.0545194149017334, + -1.0585075616836548, + -0.09615319967269897, + 0.5056011080741882, + -0.1462307721376419, + -0.18308568000793457, + 0.20604220032691956, + -0.03513404726982117, + 0.19444847106933594, + -0.24492529034614563, + -0.38205814361572266, + 2.4819412231445312, + -0.3305826783180237, + 0.16639921069145203, + 0.17335206270217896, + 0.3464903235435486, + -0.6739550828933716, + 1.4836100339889526, + 0.4235210120677948, + -1.250295877456665, + 0.5296193361282349, + 0.13397732377052307, + -1.250684380531311, + 1.2221341133117676, + -0.5022199153900146, + -0.25378501415252686, + 1.6242036819458008, + -0.7154669761657715, + 0.07036823779344559, + -0.044587939977645874, + -0.5776106119155884, + -0.5247262716293335, + 0.2665473222732544, + 0.08295953273773193, + -0.1456911861896515, + -0.2777424156665802, + -0.6463189125061035, + 0.7989383935928345, + -0.4144386053085327, + -0.19884097576141357, + 0.441701740026474, + -0.03421011567115784, + 0.10751806944608688, + -0.3612484335899353, + 0.5193886756896973, + -0.26214900612831116, + 0.3630935549736023, + -0.3155061602592468, + -0.222696453332901, + 1.3810279369354248, + 0.09519380331039429, + 0.30582359433174133, + -1.3281939029693604, + -0.20903106033802032, + -1.1698729991912842, + 0.6768693923950195, + -0.7334222793579102, + -0.08898771554231644, + 0.5070614814758301, + 0.291425883769989, + 0.2874428331851959, + 0.45865368843078613, + 0.3249104619026184, + -0.21668443083763123, + 0.33175331354141235, + 0.5378289222717285, + 0.9757494926452637, + -0.9645782709121704, + 0.37367549538612366, + 0.6494683623313904, + 0.944194495677948, + -0.04907366633415222, + -0.9062919020652771, + 0.7082793116569519, + -0.09217046201229095, + -0.7162367105484009, + -0.09835436940193176, + -0.0971834659576416, + -0.15991775691509247, + 0.034109435975551605, + 0.4050263464450836, + 0.2307834029197693, + 0.5335110425949097, + -0.3079495429992676, + -2.8429362773895264, + -0.7664029002189636, + 0.6704260110855103, + -0.4396999180316925, + 1.2721668481826782, + -1.3025585412979126, + -0.7353140115737915, + 0.8574904203414917, + -0.02443060278892517, + 0.5315569043159485, + 0.5538901686668396, + -0.6618310213088989, + 1.2275415658950806, + -0.3575376868247986, + 0.31893956661224365, + -0.011991571635007858, + -0.336825966835022, + -0.10327764600515366, + -0.7780866622924805, + 0.750368058681488, + 0.7867337465286255, + 0.03321129456162453, + -0.07173299789428711, + -0.02252984791994095, + 0.6111917495727539, + -1.0607795715332031, + 0.7617909908294678, + 0.1456490308046341, + -1.2251150608062744, + 0.840927004814148, + -0.31929492950439453, + -0.06323043256998062, + -0.5833815932273865, + 0.3244212865829468, + -0.017796099185943604, + -0.10904952883720398, + -0.46162813901901245, + 0.7074488401412964, + 0.06344398856163025, + -0.1861426830291748, + 0.30721646547317505, + 0.7807184457778931, + -0.9288592338562012, + -0.9546561241149902, + -0.23110811412334442, + -0.4663165211677551, + -0.6594774127006531, + -0.10720376670360565, + 0.18477290868759155, + 0.8714513182640076, + -0.7089601755142212, + -0.035385727882385254, + -0.36856287717819214, + -0.14403036236763, + 0.3883414566516876, + 0.3039305806159973, + 0.8280142545700073, + -0.22947312891483307, + 0.21448859572410583, + 0.7411453127861023, + 0.19795583188533783, + 0.22416304051876068, + 0.15367411077022552, + 0.09042126685380936, + 0.21360361576080322, + 0.26544204354286194, + -0.2811606824398041, + 3.0842337608337402, + -0.40602678060531616, + -0.3501754105091095, + -0.23129989206790924, + 0.42573174834251404, + -0.6041852235794067, + 0.36127907037734985, + -0.3639368414878845, + 0.6217703223228455, + -0.37754926085472107, + -0.3104313611984253, + -0.07723313570022583, + 0.7680224180221558, + -0.6494392156600952, + -1.1694189310073853, + -0.32075875997543335, + -0.5688948631286621, + -0.5836538672447205, + 0.21989981830120087, + 0.34979763627052307, + -0.45519858598709106, + 0.31773659586906433, + -0.29541832208633423, + -0.0030275732278823853, + 0.37659820914268494, + -1.8397454023361206, + 0.5368316769599915, + 0.5970951318740845, + -0.11982589960098267, + 0.8232126235961914, + -0.19193795323371887, + -0.182266503572464, + -0.25917625427246094, + 0.7006570100784302, + -0.9687992334365845, + 1.5324877500534058, + -0.15544459223747253, + 0.061267971992492676, + 0.23354369401931763, + 0.8336282968521118, + -0.3214922845363617, + -0.36349010467529297, + 0.2827124297618866, + 0.05043122172355652, + 0.607323169708252, + -0.5161000490188599, + -0.043834537267684937, + 2.277291774749756, + 0.25648489594459534, + -0.7147277593612671, + -0.26986175775527954, + -0.3389665186405182, + 0.30489152669906616, + 1.9188342094421387, + -0.5548888444900513, + -0.8804742097854614, + -0.16973260045051575, + -0.25306910276412964, + -0.6363900899887085, + -0.8979820013046265, + 0.03613948076963425, + 0.42322325706481934, + -0.7526516914367676, + 0.020467698574066162, + -0.18803051114082336, + -0.07716387510299683, + 0.6619535684585571, + -0.052751049399375916, + 0.39754125475883484, + -0.41619938611984253, + 0.14606572687625885, + 1.2833760976791382, + 0.1917041838169098, + 0.30866289138793945, + 0.1370186060667038, + 0.7256690263748169, + 0.2832384705543518, + -0.3046227991580963, + -0.7259610891342163, + -0.35472381114959717, + 0.40993374586105347, + -0.24768494069576263, + 0.5574486255645752, + 0.19121086597442627, + -0.6576335430145264, + 0.013240156695246696, + 0.5245977640151978, + -0.32389718294143677, + 0.3959672749042511, + -0.7452774047851562, + 0.7842358946800232, + 0.028542399406433105, + 0.0812133252620697, + -0.08010366559028625, + 0.020228218287229538, + 0.11292338371276855, + 0.08250260353088379, + -0.037027955055236816, + 0.8206728100776672, + 1.6242122650146484, + -0.1335947960615158, + 0.07843905687332153, + -0.4834957718849182, + 0.06219060719013214, + 0.9257816672325134, + -0.5842143297195435, + -1.4043056964874268, + -0.4047456383705139, + -0.539842963218689, + -0.4088079035282135, + -0.13824054598808289, + -3.366441011428833, + -0.13118155300617218, + -1.2785749435424805, + 0.24608756601810455, + -0.029053397476673126, + 0.052687227725982666, + -1.109459400177002, + 0.6368947625160217, + -0.5449912548065186, + 0.33764344453811646, + -0.5088225603103638, + -0.8425307273864746, + -0.08195725083351135, + -0.6671313047409058, + -1.162530779838562, + 0.9478285312652588, + 0.6250782012939453, + -0.4005166292190552, + -0.46249788999557495, + -0.07506680488586426, + 1.4385390281677246, + -0.263159841299057, + 0.13995856046676636, + 0.42872801423072815, + -0.10794778168201447, + 2.1004960536956787, + -0.1616194248199463, + -0.17741045355796814, + 0.24222442507743835, + -0.08250480890274048, + 0.6855869293212891, + 0.17740365862846375, + -0.19549055397510529, + 0.3176752030849457, + 0.335457980632782, + 0.36235126852989197, + -0.4326435625553131, + -1.1016167402267456, + -0.04123833775520325, + -0.21831114590168, + 0.7196578979492188, + 0.04036799073219299, + -0.10777643322944641, + 0.00854426622390747, + 1.4010295867919922, + -0.5258426666259766, + -0.2249458134174347, + -0.6389309763908386, + 1.011928915977478, + -0.23381438851356506, + 0.4548332691192627, + -0.6003632545471191, + -0.893304705619812, + 0.18820250034332275, + -1.0537649393081665, + -0.04093366861343384, + -1.2187013626098633, + -0.4011901319026947, + -0.3014598488807678, + -1.9277057647705078, + -0.8993512392044067, + 0.4747406244277954, + 0.5209644436836243, + -0.7927092909812927, + -0.008337408304214478, + 0.1336250603199005, + -0.5775066614151001, + -0.13681703805923462, + 0.18732509016990662, + -0.7127585411071777, + -0.2315238118171692, + 0.18443205952644348, + 0.47459718585014343, + -0.4051662087440491, + 0.15287040174007416, + -1.1530742645263672, + -0.47781914472579956, + 0.28687602281570435, + -0.5389171242713928, + 0.37770265340805054, + 0.9054555296897888, + -0.2764236330986023, + 0.1755513846874237, + -1.1450194120407104, + 0.3068646192550659, + 0.08566170930862427, + -0.34393423795700073, + -0.4908638596534729, + 0.02196686714887619, + 0.05105602368712425, + -0.3545818030834198, + -0.27617380023002625, + 0.6953387260437012, + 0.14155909419059753, + 0.23235437273979187, + 0.6783186793327332, + -0.07723680138587952, + -0.07290123403072357, + -1.494457721710205, + 0.261820912361145, + 0.5296084880828857, + -0.06399798393249512, + 0.2577795088291168, + -0.7714942693710327, + -0.011557266116142273, + -0.3002839684486389, + 0.0038826465606689453, + 0.36627960205078125, + -0.14469978213310242, + 0.5220295786857605, + -0.1571657359600067, + 0.4624124765396118, + 0.9664488434791565, + 0.19846582412719727, + -0.7699359655380249, + 0.9176603555679321, + -0.938090443611145, + 0.36770087480545044, + -0.33752843737602234, + -0.42673513293266296, + -0.3532679080963135, + -0.6585776209831238, + 0.6031356453895569, + 1.1642241477966309, + 0.3269156217575073, + -0.9249099493026733, + -0.2415269911289215, + 0.5360554456710815, + -0.18791574239730835, + -0.5027593374252319, + 2.083193778991699, + -1.1414014101028442, + -0.18711146712303162, + -0.20666861534118652, + -0.3924511969089508, + 0.1272396445274353, + 0.45898663997650146, + 0.6063713431358337, + 0.017651408910751343, + -0.0194857120513916, + -0.6895371675491333, + 0.7033226490020752, + -2.450788974761963, + 0.26279252767562866, + 0.10225071012973785, + 0.34718748927116394, + 0.7443967461585999, + 1.0959687232971191, + 0.717518150806427, + 0.11452808976173401, + 0.9694536924362183, + 0.19556647539138794, + -0.24542886018753052, + -0.5662890672683716, + -0.018197495490312576, + -0.6902130246162415, + -0.6452317237854004, + 1.0244836807250977, + -0.4140446186065674, + -0.3429703116416931, + -1.7386479377746582, + -0.5737072229385376, + 1.1624059677124023, + -0.5911492109298706, + 0.24529442191123962, + 0.18340137600898743, + -0.09281827509403229, + -0.5481120944023132, + -0.885148286819458, + 0.3413732647895813, + -0.07745446264743805, + -0.3835347294807434, + -0.6162652969360352, + -0.11463966965675354, + -0.25376051664352417, + -1.7969484329223633, + 0.8671097755432129, + -0.2797418236732483, + -0.6277698874473572, + 0.3805396258831024, + 0.0424276739358902, + 0.022557079792022705, + 0.14788097143173218, + -0.8927725553512573, + -1.368673324584961, + -0.07630607485771179, + 0.010088086128234863, + -0.017115898430347443, + 0.3776668310165405, + 0.25228151679039, + 0.14519590139389038, + 0.07730734348297119, + -0.1927981972694397, + -0.12804055213928223, + 0.14216476678848267, + 0.2943360209465027, + 0.1289633959531784, + 0.34257006645202637, + -0.0416904017329216, + 0.06749984622001648, + -1.3650527000427246, + 0.6061279773712158, + -0.025478720664978027, + -0.02127249538898468, + 0.16748830676078796, + -0.33673250675201416, + -0.3273334503173828, + 0.13634201884269714, + 0.48159658908843994, + 0.12135928869247437, + -0.027201585471630096, + 0.3478892147541046, + -0.4234567880630493, + 0.6219950914382935, + -0.2367621213197708, + 0.3053450286388397, + -0.09506195783615112, + 0.21415740251541138, + 0.018078744411468506, + 0.2223583459854126, + 0.10527181625366211, + -0.07653701305389404, + 0.28941452503204346, + 0.5117697715759277, + 0.20149445533752441, + -0.20965930819511414, + -0.4354689419269562, + 2.377267360687256, + 0.14230409264564514, + -0.05759543180465698, + 0.771138072013855, + -0.3633077144622803, + 0.10030323266983032, + -0.71235191822052, + -0.7111787796020508, + -0.47711181640625, + 0.4908728003501892, + -0.5117917656898499, + -0.03485870361328125, + 0.004695683717727661, + -0.6142479181289673, + 0.11566203832626343, + -0.11298950016498566, + 0.5311114192008972, + 1.0755133628845215, + -0.18102052807807922, + 0.2586507201194763, + -0.10076531767845154, + -0.10865238308906555, + 0.2657306492328644, + 0.03983061760663986, + -0.3735082745552063, + 1.5812329053878784, + -0.4078100025653839, + -0.21090775728225708, + 0.3408356308937073, + -0.13235551118850708, + -0.24867847561836243, + -0.21040011942386627, + 0.7015715837478638, + -0.1950380802154541, + -0.8152107000350952, + -0.7937825918197632, + -0.25394749641418457, + -0.923652172088623, + -1.5000786781311035, + 0.7261918187141418, + -0.6667275428771973, + 0.621334969997406, + 1.302685022354126, + 0.510486364364624, + 0.4045633375644684, + 0.14107149839401245, + -0.17889457941055298, + 0.12353357672691345, + -0.10646455734968185, + 0.07991614192724228, + -0.34821298718452454, + 0.4968249201774597, + -0.5223714113235474, + -0.07447318732738495, + 0.2726801037788391, + 0.8947362303733826, + -0.10502878576517105, + -1.3225657939910889, + 0.011105865240097046, + -0.5004482865333557, + -0.9913705587387085, + 0.42682623863220215, + 0.5628456473350525, + 0.0412842258810997, + -0.9509817361831665, + 0.10671153664588928, + -0.1944923996925354, + -0.14797493815422058, + -1.2213239669799805, + 0.06751615554094315, + -1.6649670600891113, + -0.4238540530204773, + 0.7271500825881958, + -0.6970056891441345, + -0.598037838935852, + -0.28464606404304504, + 0.1380804181098938, + -1.4651418924331665, + 0.05721810460090637, + 0.7757260203361511, + 0.8982136845588684, + -0.5635432004928589, + 0.5906133651733398, + 0.35072991251945496, + -0.5172772407531738, + -0.2205289602279663, + -0.1788518875837326, + -1.1518899202346802, + 0.40453338623046875, + 0.4297538697719574, + 0.18251579999923706, + 0.36708056926727295, + 0.6833146214485168, + 1.3704272508621216, + -0.3475029170513153, + -0.6741892695426941, + 0.05204442888498306, + 0.3515547513961792, + 1.0142287015914917, + -0.8286266326904297, + 0.649224579334259, + 0.7113330364227295, + -0.43637412786483765, + -0.1570926308631897, + 0.5170869827270508, + -0.07342317700386047, + -0.45294851064682007, + -0.0029764026403427124, + -0.03686065226793289, + 0.3484198749065399, + 0.3514639139175415, + -0.1974220871925354, + -0.04750097543001175, + -0.46850964426994324, + -0.30089691281318665, + 0.22062332928180695, + 0.27821001410484314, + 1.8561649322509766, + 1.2597061395645142, + -0.6433283090591431, + 0.592791736125946, + 0.43407300114631653, + 0.49030113220214844, + -0.056860148906707764, + 0.08690899610519409, + 0.136982262134552, + -0.5666018128395081, + -0.4645823836326599, + -0.39767709374427795, + -0.021261543035507202, + -0.4955252707004547, + -0.5171647071838379, + 0.2002246081829071, + -0.5086598992347717, + 0.8733729124069214, + -1.5110188722610474, + 0.2039920836687088, + 0.5024460554122925, + -0.1529320478439331, + -0.5493607521057129, + -0.06700225919485092, + 0.6312997937202454, + -0.8691102266311646, + 1.0123634338378906, + 0.3919137120246887, + -0.3106958568096161, + 0.21319863200187683, + 0.4398263394832611, + 0.006511051207780838, + -0.3078698515892029, + 0.8543851971626282, + 1.6984376907348633, + -0.04994715750217438, + -0.011629149317741394, + 0.1005575954914093, + 0.3353637456893921, + 0.18398422002792358, + 0.7989665269851685, + 0.008383501321077347, + 0.47876036167144775, + 0.36445432901382446, + 1.1556479930877686, + -0.4860900044441223, + 0.8868085145950317, + -1.1394644975662231, + 0.1804235577583313, + -0.6652991771697998, + 0.1651933193206787, + -0.34050270915031433, + -0.47395074367523193, + 0.5019437074661255, + 0.6029521822929382, + -0.14795532822608948, + 0.40397167205810547, + -0.6914085149765015, + -0.9072368741035461, + 0.725033164024353, + 1.1369287967681885, + 0.4718822240829468, + -0.1504405438899994, + 0.6251302361488342, + -0.29853206872940063, + 0.5452800989151001, + -0.8504576683044434, + 0.16285504400730133, + -0.4066890776157379, + 0.6627596616744995, + 0.1688387542963028, + -0.2822902202606201, + 0.027918443083763123, + -0.620897650718689, + 0.5448983311653137, + -1.0216031074523926, + -0.46020305156707764, + 0.004796028137207031, + 0.15106600522994995, + -0.7569572925567627, + 0.6836401224136353, + 0.13312137126922607, + 0.5941363573074341, + 0.4755443334579468, + 0.26786985993385315, + -0.3836592137813568, + -0.7549803256988525, + 0.23878207802772522, + -1.0416839122772217, + -0.9418726563453674, + -1.4904283285140991, + 0.6903831958770752, + 0.33448317646980286, + 1.9008519649505615, + 0.27631551027297974, + 0.12047076225280762, + 0.5751951932907104, + -0.48100894689559937, + 0.08527252823114395, + 0.9030671715736389, + -0.606796383857727, + 0.010392606258392334, + -0.012887537479400635, + 0.15269872546195984, + 0.19054129719734192, + -0.08252143859863281, + 0.9845607876777649, + -0.27982810139656067, + 0.6420854330062866, + -1.6573007106781006, + -0.5908046960830688, + 1.1611381769180298, + -1.2165918350219727, + 0.4008053243160248, + 0.043461449444293976, + -0.14330370724201202, + -0.7806355953216553, + 0.12354837357997894, + 0.8876532912254333, + -2.262342929840088, + -0.20267647504806519, + 0.10021427273750305, + -0.1384214460849762, + 0.4317440390586853, + -0.10852760076522827, + -0.4613076448440552, + -0.6164974570274353, + 1.3034439086914062, + -0.28387174010276794, + -0.38831251859664917, + -0.5576895475387573, + -0.5874996185302734, + -0.24207520484924316, + 0.7076748013496399, + 0.8416930437088013, + 0.5667959451675415, + -0.5912929177284241, + -1.1846489906311035, + -0.4233520030975342, + -0.6585525274276733, + 0.5618703961372375, + -0.0646851509809494, + 0.07546360790729523, + -0.2420254945755005, + -0.28145331144332886, + -0.4440188407897949, + 0.48637983202934265, + -0.17042818665504456, + -0.7932897806167603, + -0.49741944670677185, + 0.38702571392059326, + -0.28921252489089966, + 0.4839569926261902, + 0.6952260136604309, + 0.08009268343448639, + -0.33353477716445923, + 0.4917769134044647, + 0.17250627279281616, + -0.23963864147663116, + -0.054341137409210205, + -0.4103914201259613, + 0.2602246403694153, + -0.10717762261629105, + -0.20271256566047668, + 0.560572624206543, + -0.3903157711029053, + -0.141737163066864, + -0.7299209237098694, + 0.019041016697883606, + -0.12893146276474, + 0.3519127666950226, + 0.2095331847667694, + 0.2942036986351013, + 0.1541450023651123, + 0.47480201721191406, + 0.42694124579429626, + 0.1140993982553482, + -0.06243889778852463, + 1.5078140497207642, + -0.02024560421705246, + -0.639208197593689, + -0.01958957314491272, + 0.8868471384048462, + -0.7095311284065247, + -0.9835084676742554, + 0.18792754411697388, + -0.035621076822280884, + -0.7692540884017944, + 0.06304383277893066, + -0.7357369661331177, + -0.7569776773452759, + 0.043261945247650146, + -0.6177538633346558, + 0.8692828416824341, + -0.006534188985824585, + 0.5745996236801147, + 1.0315927267074585, + 0.7773398160934448, + -0.4034559428691864, + -0.4107506275177002, + -0.10990935564041138, + 0.3870912790298462, + -0.005627579987049103, + 0.5939900279045105, + -0.32785549759864807, + -0.023448526859283447, + -1.3356356620788574, + 0.4850112795829773, + 1.0302497148513794, + 0.25307780504226685, + -0.2691287398338318, + 1.299978256225586, + -0.5170584917068481, + 0.23372995853424072, + 0.16500620543956757, + -0.5319364070892334, + 0.11887800693511963, + 0.04499199986457825, + 0.926981508731842, + -0.4036271870136261, + -0.08194568008184433, + 0.7014361619949341, + -0.06920305639505386, + 0.15687648952007294, + 0.7823855876922607, + 0.7870307564735413, + 0.7601780891418457, + 0.2922743558883667, + 0.9559487700462341, + 0.021703720092773438, + -0.1358954906463623, + 0.49409058690071106, + -0.17907701432704926, + 0.41910210251808167, + 1.0946083068847656, + 0.05029398202896118, + 0.10922098159790039, + -0.5137611627578735, + 0.02231523022055626, + -1.1543642282485962, + -0.20663508772850037, + 0.7477462291717529, + -1.5387163162231445, + 0.003343755379319191, + -0.44162413477897644, + 0.5380470752716064, + -0.4164738655090332, + -0.03468579053878784, + 0.14275676012039185, + -0.23436501622200012, + 0.032220736145973206, + 0.12822428345680237, + -0.3265988826751709, + 0.10413961112499237, + 0.09767653793096542, + -0.29238927364349365, + 0.1273707151412964, + 0.10390490293502808, + -0.7140359878540039, + -0.26430755853652954, + -0.12257440388202667, + -0.378179669380188, + -0.7515367269515991, + 0.0026084184646606445, + -0.5397286415100098, + 0.18509559333324432, + 0.15318776667118073, + 1.1112442016601562, + 0.22724702954292297, + 0.5590603351593018, + -0.5051658153533936, + -0.1887715756893158, + -0.24881894886493683, + 0.3665143847465515, + -0.6492006778717041, + 0.4846296012401581, + 0.7145909667015076, + 0.1445721685886383, + 0.29959890246391296, + -0.7048620581626892, + -0.4323892295360565, + -1.2456375360488892, + 0.3632804751396179, + -0.5462619066238403, + 0.23809555172920227, + 0.31399375200271606, + -0.163296639919281, + -0.12874126434326172, + -0.46010082960128784, + -0.3965723216533661, + -0.2430393099784851, + 0.44524678587913513, + -0.2430008202791214, + 0.6042854189872742, + -0.08372524380683899, + 0.25862228870391846, + -0.36741799116134644, + 0.4236796200275421, + -0.6258299350738525, + -0.36142033338546753, + -0.9875548481941223, + 0.7072330713272095, + -0.2328726053237915, + 0.6563996076583862, + 0.1349104940891266, + 0.41429403424263, + -0.4789424538612366, + 0.07768881320953369, + -0.34465593099594116, + -0.3341214060783386, + -0.36407044529914856, + -0.3012493848800659, + 0.7077333927154541, + 0.2633175253868103, + 0.29401111602783203, + -0.6004996299743652, + -0.03703020513057709, + -0.12062786519527435, + 0.5347371101379395, + -0.5304592847824097, + -0.28648966550827026, + -0.1531500220298767, + 0.38017529249191284, + -0.4249011278152466, + 0.11883150041103363, + 1.5503730773925781, + 0.06680482625961304, + 0.4144829511642456, + 0.038736939430236816, + 0.07923650741577148, + -0.6712644100189209, + -0.9535419344902039, + 0.6326460838317871, + -0.24291589856147766, + 1.1568427085876465, + 0.15185341238975525, + -0.44788888096809387, + -0.28200966119766235, + 0.034449927508831024, + 0.3658595681190491, + 0.8118256330490112, + 0.6157720685005188, + 0.582359790802002, + 0.977157473564148, + -0.028231710195541382, + 0.5892232060432434, + 0.77012038230896, + -0.010031968355178833, + -0.38249677419662476, + -0.15119388699531555, + -0.028215110301971436, + 0.5361288189888, + 0.26659661531448364, + 0.2490263283252716, + -0.03340446949005127, + -0.08380818367004395, + -0.14063164591789246, + 0.04357069730758667, + 0.618064284324646, + -0.6670901775360107, + -0.40193936228752136, + -0.5096115469932556, + 0.8150166869163513, + -0.35384804010391235, + 0.8196952939033508, + -1.5229548215866089, + 0.5778390765190125, + -0.41155076026916504, + -0.2807965874671936, + 0.4786452054977417, + 0.08694684505462646, + -0.21801316738128662, + -0.13125024735927582, + -0.7451107501983643, + 0.6377776861190796, + -0.16433778405189514, + -0.19562219083309174, + 0.6391168236732483, + -0.2604340612888336, + -0.036401182413101196, + 0.6911587119102478, + 0.17884065210819244, + -0.26344990730285645, + 0.13567203283309937, + -0.6707744002342224, + -1.3566029071807861, + -1.8525553941726685, + 0.40857192873954773, + -0.36147522926330566, + 0.868848443031311, + 0.011236056685447693, + 0.725978672504425, + 0.22177495062351227, + -0.04987722635269165, + 0.14643710851669312, + -0.5574890971183777, + -0.608791172504425, + 0.015974432229995728, + 0.47161465883255005, + -0.9007528424263, + 0.30205345153808594, + 0.2805127799510956, + -0.017428115010261536, + -1.0829286575317383, + 1.7747166156768799, + 0.338620662689209, + 0.48368552327156067, + 0.0658479779958725, + 0.3676784038543701, + -0.5096160769462585, + 0.3369303345680237, + -0.25306180119514465, + -0.2124093770980835, + 0.5203329920768738, + -1.200036883354187, + 0.4970604181289673, + 0.3970091938972473, + 0.8752045035362244, + 0.7141172289848328, + 0.6771851778030396, + -0.020777568221092224, + 0.35700732469558716, + 0.9309581518173218, + 0.8739454746246338, + -0.07063993811607361, + -0.19636210799217224, + 0.17659196257591248, + 0.33956006169319153, + -0.39155900478363037, + -0.06764507293701172, + -0.11118901520967484, + -0.44582676887512207, + 0.45003432035446167, + 0.24348527193069458, + -0.04160192608833313, + -0.24141326546669006, + 0.24487781524658203, + 1.5218147039413452, + 0.42651939392089844, + -0.059797339141368866, + 0.06061113625764847, + 1.2052737474441528, + -2.0645244121551514, + 0.5170294046401978, + -0.0454731285572052, + 0.5548422336578369, + 0.30125218629837036, + 0.5992474555969238, + 0.917460024356842, + 0.646334171295166, + 0.8941986560821533, + 0.22556057572364807, + 1.63398277759552, + 0.021399840712547302, + -0.9206895232200623, + -0.26977503299713135, + -0.10561612993478775, + -0.47130340337753296, + 0.18150728940963745, + -0.47212961316108704, + -0.2712177038192749, + -0.1566089391708374, + 1.0178719758987427, + 0.6500933766365051, + 0.5418478846549988, + -1.7373026609420776, + -0.3125283718109131, + 0.4896835684776306, + 0.2594144940376282, + -0.21537211537361145, + 0.40552547574043274, + -1.3095815181732178, + -0.665489137172699, + 0.31949248909950256, + 0.8347548842430115, + -0.18996769189834595, + 0.3121148943901062, + 0.2719923257827759, + 0.25115251541137695, + -0.40236905217170715, + 0.675902247428894, + -0.2633586525917053, + 0.5476192235946655, + 0.8635378479957581, + 0.26558196544647217, + -1.960073709487915, + 0.009417235851287842, + 0.5440810918807983, + 0.008694082498550415, + 0.4065546989440918, + 0.6909083724021912, + 0.2060258388519287, + 0.415834903717041, + -0.4635184407234192, + -1.0939432382583618, + 0.14565865695476532, + 0.2958337664604187, + -0.6411652565002441, + -0.3195543885231018, + -0.789769172668457, + 0.807651162147522, + -2.277653217315674, + 0.27281224727630615, + -0.4499940276145935, + -0.3527516722679138, + -0.6016299724578857, + -1.167222261428833, + 2.626274585723877, + -0.022843986749649048, + -0.13341236114501953, + -0.40401691198349, + 0.6020585894584656, + 2.06398868560791, + 0.7266536355018616, + 0.0769156962633133, + 0.294997900724411, + 0.7082873582839966, + -0.2940194606781006, + 0.3829639256000519, + -0.05298665165901184, + 0.5151137709617615, + -0.10252949595451355, + 0.23417726159095764, + -0.23057709634304047, + 0.7031638622283936, + -0.08010351657867432, + -0.22799625992774963, + -0.32200878858566284, + 0.003479287028312683, + 0.9664350748062134, + 0.1800081580877304, + 0.007136285305023193, + 0.18099066615104675, + 0.4467853009700775, + 0.7277788519859314, + 0.5188379287719727, + -0.31611016392707825, + -0.09194543957710266, + -0.11271277815103531, + 0.6114010810852051, + 0.13518017530441284, + -0.19419050216674805, + 0.5235036611557007, + 0.3628435432910919, + -0.4348730146884918, + 0.16321948170661926, + 0.7543970942497253, + 0.3772065043449402, + 0.44295603036880493, + 0.10496261715888977, + -0.2773049473762512, + 0.08578646183013916, + 0.28554171323776245, + -0.9567294716835022, + 0.23291972279548645, + -0.34367579221725464, + -0.1634768694639206, + -0.19068259000778198, + 0.7880459427833557, + 0.5584802627563477, + -0.19842137396335602, + -0.7453991770744324, + -0.19595065712928772, + -0.2625180184841156, + 0.27324628829956055, + -0.0791144073009491, + -0.1537657380104065, + 0.32739537954330444, + 0.04565399885177612, + -0.9118078947067261, + 0.924746036529541, + 1.0936274528503418, + 0.9476670026779175, + 0.12535232305526733, + 0.3804807960987091, + 0.444112092256546, + 0.1517055779695511, + 0.13414403796195984, + -0.6243314146995544, + -0.20639939606189728, + 0.6861280202865601, + -0.5310560464859009, + 0.28613200783729553, + 0.24817803502082825, + -0.010639555752277374, + -0.3242305517196655, + -0.21785250306129456, + -0.14480796456336975, + -0.15125161409378052, + -0.0016599297523498535, + -0.5355876684188843, + 0.1299896240234375, + 0.020877212285995483, + 1.2017991542816162, + -0.2340097576379776, + 0.2427622675895691, + 0.7389959096908569, + -0.3386830687522888, + -0.14197498559951782, + 1.0691890716552734, + -0.884332001209259, + -0.10683098435401917, + 0.506206750869751, + 0.4253224730491638, + -1.1715677976608276, + -0.26542800664901733, + 0.04447184503078461, + 0.3526298999786377, + 0.5994030237197876, + 0.919786274433136, + 0.1316312551498413, + -0.021131902933120728, + -0.05869530513882637, + -0.053179144859313965, + 1.0100018978118896, + -0.008344471454620361, + -0.4443570077419281, + 0.2928600609302521, + 0.6690055131912231, + -0.0789695605635643, + -0.020881742238998413, + -0.1862718164920807, + -0.06913048028945923, + 0.5267953872680664, + -0.4847622513771057, + -0.3152961730957031, + -1.3481429815292358, + -0.5012121200561523, + 0.5271552801132202, + -0.77191162109375, + 0.09355288743972778, + -0.4123764634132385, + 0.2598007917404175, + -0.32069867849349976, + -0.7367973327636719, + 0.6886000037193298, + 0.3080441653728485, + 0.0682096779346466, + 0.8121291995048523, + -0.524580717086792, + 0.015106767416000366, + 0.3387877941131592, + 0.08753024786710739, + 0.04977923631668091, + 0.193482905626297, + 0.31197601556777954, + 0.20799601078033447, + 0.5591402053833008, + 0.8130830526351929, + -0.12812773883342743, + 0.04860153794288635, + -0.75301194190979, + -0.5467740297317505, + 3.9742276668548584, + -0.24521315097808838, + -0.3322150707244873, + 0.7732901573181152, + -0.09701897203922272, + 2.23622465133667, + -0.877794623374939, + 0.0035872310400009155, + 0.7694201469421387, + -0.40353167057037354, + 0.15053796768188477, + 0.3816526532173157, + -0.41360563039779663, + 0.9186207056045532, + -1.0388903617858887, + 0.10238230228424072, + -0.9496853351593018, + 2.6164398193359375, + -0.6748550534248352, + -0.35611557960510254, + 0.011516377329826355, + -0.9547630548477173, + -0.3537174463272095, + 0.45339250564575195, + -0.2669673562049866, + 0.753591775894165, + 1.136269450187683, + -1.6609584093093872, + 0.11269981414079666, + 0.09715062379837036, + 0.3945777714252472, + 0.5183177590370178, + -0.04876518249511719, + 1.2460949420928955, + 0.5312591195106506, + 0.01078873872756958, + -0.6553707122802734, + 0.0023574382066726685, + 1.098038911819458, + -0.09241560101509094, + 0.22464385628700256, + -0.499397337436676, + -0.1329432725906372, + 0.005114719271659851, + -0.04624950885772705, + -1.0059795379638672, + -0.585199236869812, + 0.7248843908309937, + -0.5640662312507629, + 0.49516889452934265, + -0.6251821517944336, + 0.3277716636657715, + -0.4254647493362427, + -0.08775174617767334, + 0.2942172884941101, + -0.1596149504184723, + -0.14253948628902435, + -0.07140088081359863, + 0.10067608952522278, + -0.5526043176651001, + -0.6654607653617859, + 0.21615827083587646, + -0.1111871600151062, + -0.6708049774169922, + -0.47037720680236816, + -0.3646349310874939, + -0.0296669602394104, + 0.3893653452396393, + -0.47295957803726196, + 0.3145481050014496, + -1.5423015356063843, + -0.08273129165172577, + -0.06935390830039978, + -1.1792702674865723, + 2.1533970832824707, + -0.546649694442749, + -0.35820141434669495, + -0.08319360017776489, + -0.3273507356643677, + -0.6947463750839233, + 0.73639976978302, + -0.6806384325027466, + 0.0032657086849212646, + -0.022208333015441895, + -0.11155855655670166, + 0.8924658298492432, + 0.17537379264831543, + -0.006956827826797962, + -0.5473988056182861, + -1.5273220539093018, + -0.30151882767677307, + 0.040174007415771484, + -0.5444924831390381, + 0.580604076385498, + 0.5293150544166565, + 0.32698485255241394, + -0.7824073433876038, + 1.1081352233886719, + 0.12669813632965088, + -0.012130722403526306, + 0.19016852974891663, + -0.09242989122867584, + -0.2921026945114136, + 0.6857353448867798, + 0.5701072216033936, + -0.45967692136764526, + 0.5708339214324951, + -0.13974329829216003, + -0.09244704991579056, + -0.11290914565324783, + -0.7724436521530151, + -1.6203913688659668, + 1.1427960395812988, + 1.323879599571228, + -0.3910720944404602, + -0.6514862775802612, + -0.37360072135925293, + 0.23112040758132935, + 0.1832330822944641, + 0.904795229434967, + 0.8303227424621582, + 0.2538663446903229, + 0.6987942457199097, + -0.04455651342868805, + 0.2157524675130844, + 0.4639816880226135, + 0.9836827516555786, + -0.9242067337036133, + 0.31504175066947937, + -0.5088341236114502, + 0.4879358410835266, + -0.34984534978866577, + 0.45782339572906494, + 0.5126540660858154, + -0.4160122573375702, + -0.8347499966621399, + -0.4715426564216614, + -0.43123987317085266, + 0.655453085899353, + -0.7295858860015869, + -0.0739014744758606, + -0.048420026898384094, + -0.215294748544693, + -1.0777466297149658, + -0.11718229949474335, + 0.32276204228401184, + -0.9867739677429199, + -1.4764604568481445, + 0.0162307471036911, + -0.34071123600006104, + 0.611638069152832, + -0.37904512882232666, + -0.4659406542778015, + 0.4659457504749298, + -0.023491397500038147, + 0.07559406757354736, + -0.40404364466667175, + -0.008312389254570007, + 1.031830906867981, + -0.22856837511062622, + -0.1394343078136444, + -0.0027174651622772217, + -0.16108758747577667, + -0.014036506414413452, + -0.3802579939365387, + -0.24873590469360352, + 0.3495364189147949, + 0.2397558093070984, + 0.5670714378356934, + 0.4651440382003784, + -0.06080436706542969, + -0.21946442127227783, + 0.11144270747900009, + 0.23139545321464539, + 0.7647786140441895, + -0.417599081993103, + 0.7449997663497925, + -0.012739855796098709, + 1.3617559671401978, + 0.7096899151802063, + 0.3552060127258301, + 0.07149426639080048, + 0.48855060338974, + 0.63566654920578, + -0.7034087181091309, + -0.7937848567962646, + -0.5753863453865051, + 0.28525102138519287, + -0.04463331401348114, + -0.5474942326545715, + -0.25709182024002075, + -0.06916036456823349, + -0.09599845856428146, + 0.04383013769984245, + -0.5462282299995422, + -0.2984253764152527, + -0.25353389978408813, + -0.040736377239227295, + -0.20488974452018738, + 0.14158672094345093, + -0.36802223324775696, + 0.42482858896255493, + 0.027955174446105957, + -0.6106918454170227, + 0.1462007462978363, + 0.5532150864601135, + 0.10524053871631622, + 0.08553719520568848, + 1.3298311233520508, + 0.15541765093803406, + 0.537937343120575, + -0.8155632019042969, + -0.9254430532455444, + -0.5559665560722351, + -0.7927652597427368, + -0.3201082944869995, + -0.47128868103027344, + 0.6540470123291016, + 1.8833746910095215, + 1.9511083364486694, + -0.4640653133392334, + 0.8397201299667358, + -0.07515040040016174, + 1.65464186668396, + 0.1738666296005249, + -0.05724459886550903, + 0.5434339046478271, + -0.3701692223548889, + 1.3979649543762207, + 0.6053990721702576, + 0.5105441808700562, + 0.5501411557197571, + 0.07938209176063538, + 0.4015085995197296, + -0.6795305013656616, + -1.2127584218978882, + 0.039827097207307816, + 0.2574348449707031, + -0.819787323474884, + -0.3303307890892029, + -0.3474911153316498, + -0.6005688905715942, + -0.6477383971214294, + -0.42088988423347473, + 0.7085211277008057, + -0.13304650783538818, + 0.945400595664978, + 0.02526119351387024, + -0.09009970724582672, + -0.895683228969574, + 0.24903973937034607, + -0.0027538537979125977, + -0.13876627385616302, + 0.17340275645256042, + 0.498347669839859, + -0.35395756363868713, + 0.6341930627822876, + 0.1372183859348297, + -1.2007874250411987, + -0.4158223569393158, + -0.7628457546234131, + 0.5351572632789612, + 0.9564297199249268, + -0.5821729302406311, + -0.2999729812145233, + 0.5223087072372437, + 0.29595422744750977, + -0.27311116456985474, + 0.15276798605918884, + -0.19272463023662567, + -0.21099388599395752, + 0.6589227318763733, + -0.04984121024608612, + 0.004681918770074844, + -0.04224946349859238, + -0.8473532199859619, + 0.21473968029022217, + 0.27889207005500793, + -0.6546024680137634, + 0.04124423861503601, + 1.5876479148864746, + 0.08553856611251831, + -0.21265621483325958, + 0.4553530514240265, + 0.31821826100349426, + -0.17511597275733948, + 0.1751185655593872, + 0.08314654231071472, + 0.0952971875667572, + 1.740492820739746, + 0.9580435752868652, + -3.031003713607788, + 19.1435546875, + 0.479636549949646, + 0.25981375575065613, + -0.608008861541748, + -0.6032131314277649, + 0.22604268789291382, + -0.0009787529706954956, + 0.93178790807724, + -0.5147403478622437, + 0.5182029604911804, + -0.1272171139717102, + 1.0856118202209473, + 0.09496816992759705, + -0.31569337844848633, + -0.30366864800453186, + 0.4666401147842407, + -0.5518002510070801, + -1.2738921642303467, + -0.027593642473220825, + 0.4009517729282379, + 0.598143458366394, + 0.09067763388156891, + 1.7327560186386108, + -0.10645616054534912, + 0.06379158049821854, + -0.44390615820884705, + -0.26383090019226074, + 0.9197891354560852, + -0.26531994342803955, + -0.413280725479126, + -0.2500295639038086, + -0.8615676164627075, + 0.36253324151039124, + -0.19636890292167664, + 0.3949238061904907, + 0.008304879069328308, + -0.17541757225990295, + -0.0487934947013855, + -0.6581082344055176, + 0.7619857788085938, + 0.4867043197154999, + 0.6435308456420898, + 0.19842861592769623, + -0.020475732162594795, + -0.1836276799440384, + 0.13042612373828888, + -0.11780527234077454, + -0.07586753368377686, + 0.28707316517829895, + -0.2937049865722656, + -1.593702793121338, + 0.12368810176849365, + 0.36425328254699707, + -0.9145731329917908, + -0.3465374708175659, + -0.4763047397136688, + -0.43310850858688354, + 0.22537927329540253, + 0.44507235288619995, + -1.4185370206832886, + -0.1976744830608368, + -0.41586342453956604, + 0.1361112892627716, + 0.9550120830535889, + 0.043407291173934937, + -0.15605828166007996, + 0.5371201038360596, + -2.6725056171417236, + 0.07794301211833954, + 0.4359576106071472, + -0.07525748014450073, + -0.00806819275021553, + -0.2947748899459839, + -0.29469114542007446, + -0.24431303143501282, + -1.1125847101211548, + 0.36599084734916687, + 0.27097511291503906, + 0.06903761625289917, + 0.7977882027626038, + 0.19442889094352722, + 0.012625135481357574, + -0.4696289896965027, + -0.21112379431724548, + 0.2313767522573471, + 0.07320952415466309, + 0.2318630963563919, + 1.5776069164276123, + -0.724368691444397, + 0.791663408279419, + -0.11051562428474426, + 0.3245569169521332, + -2.147191047668457, + -0.346737802028656, + -0.17219802737236023, + 0.2659653127193451, + -0.14829015731811523, + 0.28271615505218506, + -0.3440825045108795, + 0.41834720969200134, + -0.0030379891395568848, + -0.4877939820289612, + -0.4937347173690796, + -0.4571058452129364, + -0.9840871691703796, + -0.7011384963989258, + -1.0844752788543701, + -0.4765752851963043, + -0.7995976805686951, + -1.2315199375152588, + 0.7018266320228577, + 1.501019835472107, + 0.2387411892414093, + -0.04033556580543518, + -0.29876673221588135, + -1.856968879699707, + 0.3332415819168091, + -0.06688187271356583, + -0.25638461112976074, + 0.5129728317260742, + 0.6889496445655823, + -0.06491196155548096, + -1.1416207551956177, + -0.27540645003318787, + 0.757008969783783, + 0.35653138160705566, + 0.7115530967712402, + 0.973137378692627, + -0.21625208854675293, + 0.7764321565628052, + -0.4180278778076172, + -0.6601558923721313, + 0.1985355019569397, + -0.12674963474273682, + -0.2781749963760376, + 0.8102808594703674, + -0.2614743113517761, + -0.22816279530525208, + -0.34928831458091736, + -0.9142323732376099, + -0.5896889567375183, + -0.3567693829536438, + -0.07425788044929504, + -0.8503079414367676, + 0.30445924401283264, + -3.940739870071411, + 0.4555548131465912, + 0.2349911630153656, + -0.3711749017238617, + -0.22948817908763885, + -0.868277370929718, + 0.1996268332004547, + -0.3635890483856201, + 0.5197726488113403, + 0.012560039758682251, + 0.04616089537739754, + -0.24290096759796143, + 0.41440314054489136, + 0.8066655397415161, + 1.086160659790039, + -0.4719598889350891, + -0.5114438533782959, + 0.09832844138145447, + -0.47255635261535645, + -0.5792282819747925, + -0.36104869842529297, + 0.3525817394256592, + -0.06536325812339783, + 0.2840217351913452, + 0.41751015186309814, + 0.9912695288658142, + 0.18357457220554352, + -0.4598515033721924, + 0.12440480291843414, + -0.4651395082473755, + 0.17154419422149658, + -1.1858712434768677, + 0.31615275144577026, + -0.9245343208312988, + -0.31997770071029663, + 0.3724195957183838, + 0.3622897267341614, + 0.5013670921325684, + -0.4751967489719391, + 0.7343078851699829, + 0.3570232093334198, + 0.2773911952972412, + -0.311674565076828, + -0.15137667953968048, + -0.23771782219409943, + 0.5986912846565247, + 0.0917043685913086, + -0.4252617359161377, + -0.08304008096456528, + 0.6467398405075073, + -0.03999944403767586, + 0.3716014623641968, + -0.7243109345436096, + -0.42016884684562683, + -0.5226705074310303, + -0.255143404006958, + -0.24865314364433289, + -0.07556614279747009, + 0.35791486501693726, + -0.06263647973537445, + 0.911564826965332, + -0.8255384564399719, + -0.45690762996673584, + 0.12112732231616974, + 1.1648821830749512, + -0.8359581232070923, + -0.8693938255310059, + 0.8776324987411499, + -0.10846897959709167, + 2.5517494678497314, + 0.4896306097507477, + 0.03521108627319336, + -0.5971001982688904, + -0.8179471492767334, + 0.39542466402053833, + -0.2207946479320526, + 0.18819139897823334, + 0.6941812634468079, + 1.4695549011230469, + 0.11333415657281876, + 0.5604281425476074, + 0.6283845901489258, + -0.0591050386428833, + 0.2583441734313965, + 0.27655115723609924, + 0.5988090634346008, + -0.24968832731246948, + 0.07751789689064026, + -0.29797589778900146, + 0.23061120510101318, + -0.940205991268158, + -1.4467804431915283, + -0.361605703830719, + -1.628722906112671, + -0.4319497346878052, + -0.09832844883203506, + -0.0802382230758667, + -0.13953837752342224, + 0.7640451192855835, + 0.8137702345848083, + -0.6909164190292358, + -0.38195422291755676, + -0.2584618330001831, + 0.11770493537187576, + 0.8556927442550659, + -2.684274673461914, + -0.3977874517440796, + -0.6626265048980713, + -0.2672290802001953, + -0.0038347989320755005, + 0.618442714214325, + -2.0478172302246094, + -0.03508041799068451, + -0.2251950353384018, + -1.1328709125518799, + -0.13927556574344635, + 0.005283236503601074, + 0.19223234057426453, + -0.8021487593650818, + -0.18252873420715332, + -0.23873202502727509, + -0.26361629366874695, + 0.3108459711074829, + -0.3412618935108185, + -0.0581735223531723, + -2.145944118499756, + 0.4757952392101288, + 0.3977513313293457, + 0.0933414101600647, + 0.9856808185577393, + 0.24089473485946655, + -0.3688519597053528, + -0.14460720121860504, + 0.7734560370445251, + 0.056917011737823486, + -0.7199757099151611, + 0.21811002492904663, + -0.06535883247852325, + 0.7257564663887024, + 0.674484133720398, + 0.049757473170757294, + 0.107459157705307, + 0.29996734857559204, + 0.5697857141494751, + 1.3726563453674316, + -0.03544551134109497, + -0.31794312596321106, + -0.1777399629354477, + 0.4269368648529053, + -0.35401368141174316, + 0.5143010020256042, + -3.9767377376556396, + 3.610269784927368, + -0.002045564353466034, + -0.16997289657592773, + 0.23363813757896423, + 1.00375497341156, + 0.39954206347465515, + -4.239327430725098, + -0.5155072212219238, + 0.5038291811943054, + 0.9579259753227234, + 0.7083909511566162, + -0.7620201706886292, + 0.18812134861946106, + 0.598056435585022, + -0.10790550708770752, + -0.08702260255813599, + 0.41652339696884155, + 0.06839820742607117, + -1.6962463855743408, + 0.06072208285331726, + 0.2125997543334961, + 0.6558294296264648, + -0.5352647304534912, + 0.39792877435684204, + -0.4308973550796509, + -0.20356392860412598, + 0.40161368250846863, + 0.43143197894096375, + 0.28219011425971985, + -0.44988203048706055, + -0.6631779670715332, + 0.06830081343650818, + 0.008721813559532166, + -0.7022178173065186, + 0.3090919256210327, + -0.15900875627994537, + 0.005871079862117767, + 0.6432442665100098, + -0.2062089741230011, + -1.086736798286438, + 2.3058736324310303, + 0.29028213024139404, + -0.540187656879425, + 0.0019461214542388916, + -0.6039957404136658, + -2.0443315505981445, + 2.508335590362549, + -0.14287298917770386, + 0.20566895604133606, + 0.09724198281764984, + 1.6833491325378418, + 1.8065438270568848, + -0.39678728580474854, + 0.9070847630500793, + -0.01150580681860447, + 0.10456163436174393, + 0.005087733268737793, + -0.01072053611278534, + -1.3373433351516724, + 1.3679100275039673, + 0.3268894553184509, + 0.2614385485649109, + 0.33709320425987244, + -0.6447536945343018, + 1.9653843641281128, + 0.5072047114372253, + 0.15532584488391876, + -0.04445645213127136, + -1.151807188987732, + -0.029704079031944275, + 0.0015570521354675293, + 0.06294402480125427, + 1.1905534267425537, + -0.08902344107627869, + 0.5137213468551636, + -0.9899997711181641, + -0.2551480233669281, + -0.03904421627521515, + 1.0539484024047852, + -2.3220396041870117, + 0.1837579756975174, + -1.436476469039917, + 0.23829561471939087, + 0.7731713056564331, + -0.9574203491210938, + -0.803636908531189, + 0.47118961811065674, + 0.33870935440063477, + -0.41285470128059387, + 0.0899607241153717, + 0.34536105394363403, + -0.6702005863189697, + -0.6291059255599976, + 0.3122234344482422, + -0.15898066759109497, + -0.7121239304542542, + -0.41138434410095215, + -0.8944900631904602, + -0.15103864669799805, + 0.037029460072517395, + -0.021934181451797485, + 0.6567384004592896, + 0.1847524344921112, + -0.7356277704238892, + 0.5736474990844727, + -0.7432750463485718, + -0.1356210708618164, + -0.01040603220462799, + 0.40581828355789185, + -0.8664482831954956, + 0.3211629390716553, + -0.2769313454627991, + -0.4135432839393616, + -0.4722522795200348, + 0.016417503356933594, + -0.4124342203140259, + -0.03416509926319122, + 0.04496678709983826, + 0.024782449007034302, + -0.9264707565307617, + -0.5982280373573303, + -0.6703003644943237, + -0.02700728178024292, + -0.39839625358581543, + -0.344628244638443, + 0.3568352162837982, + 0.34009453654289246, + -0.98179692029953, + -0.690441906452179, + -1.7976778745651245, + -0.9182872772216797, + 0.1543770581483841, + -0.12425777316093445, + 0.21585512161254883, + 0.16399672627449036, + -0.6503397822380066, + -0.8490196466445923, + 0.923703134059906, + 0.2263418734073639, + -0.574801504611969, + 0.46761390566825867, + 0.3822421133518219, + -0.20914331078529358, + -0.45014697313308716, + -0.3480885922908783, + -0.046754300594329834, + 0.03625434637069702, + -0.30054086446762085, + 0.1527860462665558, + -1.1115646362304688, + 0.7735863924026489, + -0.14481210708618164, + 0.16804012656211853, + 0.03286733105778694, + -0.8092857003211975, + -0.07369432598352432, + 0.5918994545936584, + -1.048498272895813, + 1.5296106338500977, + 0.45334360003471375, + -0.4922696650028229, + 0.10654410719871521, + 0.06865471601486206, + 0.01947391778230667, + 0.12712618708610535, + 0.3334413468837738, + 0.16799849271774292, + 0.23663538694381714, + -0.2527439594268799, + -0.32669997215270996, + 0.7667524814605713, + 0.4538959264755249, + -0.4733796715736389, + 0.5923535823822021, + 0.25892746448516846, + 0.3941357731819153, + 0.04288396239280701, + 0.4832857847213745, + -0.6068799495697021, + 0.7867070436477661, + 0.9666270613670349, + 0.12466496229171753, + 2.2747585773468018, + -0.8811256885528564, + -1.8620094060897827, + 0.46351924538612366, + -0.4593692421913147, + -0.5449996590614319, + 0.4756103456020355, + -0.1447463035583496, + -0.5166714191436768, + 0.08691524714231491, + 0.5372589826583862, + 0.4836117625236511, + -0.29237160086631775, + 0.6929013729095459, + -2.8295845985412598, + 0.04997531324625015, + -0.0959150567650795, + -0.19604960083961487, + 0.3045461177825928, + -0.09848654270172119, + -0.8917883038520813, + -0.8942406177520752, + -0.3461844325065613, + 0.028530210256576538, + -0.7080342769622803, + -1.0267020463943481, + -0.7637914419174194, + 0.2947525382041931, + 0.4183424115180969, + 0.4156073033809662, + 0.10830843448638916, + -0.23130770027637482, + 0.22831815481185913, + 0.13591846823692322, + -1.4709376096725464, + -0.5113034844398499, + 0.031970202922821045, + -0.47493958473205566, + 0.37574315071105957, + 2.3520758152008057, + -0.25606435537338257, + -0.15911878645420074, + 0.09919048845767975, + 1.2078042030334473, + 0.1465400755405426, + -0.8760212659835815, + -0.8599054217338562, + -0.27937036752700806, + -0.8249286413192749, + -1.2671353816986084, + 0.058153923600912094, + 0.8676239252090454, + 0.3975051939487457, + 0.14772062003612518, + 0.20480681955814362, + -2.0715768337249756, + -0.23484593629837036, + -0.19091303646564484, + -0.6590951681137085, + 0.05686083436012268, + 2.4015936851501465, + 0.19157300889492035, + 0.5454992055892944, + -1.315056562423706, + 0.11442297697067261, + 0.08377915620803833, + 0.7052065134048462, + 0.8241376876831055, + 1.3237457275390625, + -0.7446258068084717, + -0.3843648135662079, + 0.3515750765800476, + 0.4989506006240845, + 0.8015919327735901, + 0.3610665798187256, + -0.7932666540145874, + -0.6246601939201355, + -0.4767536520957947, + -1.7122001647949219, + 0.29602742195129395, + 0.5599638819694519, + -0.3089485168457031, + 0.3990062475204468, + -0.28896623849868774, + -0.8067687749862671, + -0.6222541332244873, + -0.7857779264450073, + 0.1858871579170227, + 1.219991683959961, + 0.06257373094558716, + -0.0155869722366333, + -0.7916178107261658, + -0.03616449236869812, + -0.6485165357589722, + -1.1623605489730835, + 0.05680277943611145, + -0.9311317801475525, + 0.7932144999504089, + 0.46319058537483215, + -5.809260845184326, + -0.5159612894058228, + 0.4910752773284912, + 1.3444651365280151, + 0.3006327450275421, + 0.8456394672393799, + 0.3631410002708435, + 0.0753910169005394, + 0.4448396861553192, + 0.7013760805130005, + -0.24630187451839447, + -0.5489684343338013, + -0.5885894894599915, + 0.34436023235321045, + -0.9564361572265625, + -0.05666328966617584, + 0.31850695610046387, + -0.07295235991477966, + -0.775848388671875, + -0.2707425057888031, + -0.039118945598602295, + 0.6151942610740662, + 0.5129740834236145, + -0.08655023574829102, + 0.33115971088409424, + -0.1538873165845871, + 0.18640480935573578, + -0.28142082691192627, + 0.3911281228065491, + 0.8321959376335144, + 0.3813912272453308, + 0.11539632081985474, + 0.1085934042930603, + -0.07165685296058655, + -0.023834779858589172, + 0.3164120614528656, + 0.1381850242614746, + 0.2161669135093689, + 1.3307586908340454, + -0.7573282122612, + -0.01991674304008484, + 0.8121694922447205, + 0.5316839218139648, + -0.8340657353401184, + -0.05059656500816345, + 1.078744888305664, + 1.2270485162734985, + 0.0907069742679596, + 0.29919517040252686, + 0.0250251442193985, + -0.5132988095283508, + 0.3670618534088135, + -0.5159652233123779, + -1.1936426162719727, + -0.5116519927978516, + -0.1292358934879303, + 0.25086069107055664, + 0.4174925684928894, + 0.45940351486206055, + 0.3561114966869354, + 0.614635705947876, + 0.25951749086380005, + 0.7051178216934204, + 0.3473520278930664, + -0.35252127051353455, + -0.9654884934425354, + 0.22834323346614838, + -0.004136241972446442, + 1.2818882465362549, + 0.14279663562774658, + -0.5633350610733032, + -0.710042417049408, + 0.10094276070594788, + -0.3266731798648834, + -0.26734697818756104, + -0.8202579617500305, + 0.2004675269126892, + -0.11505413055419922, + 0.3796214461326599, + 1.7072675228118896, + -1.1339272260665894, + 0.5411139726638794, + 0.4254973530769348, + 0.9033162593841553, + 0.0075964778661727905, + -0.18063922226428986, + -0.17269748449325562, + 0.3240118622779846, + 0.40746206045150757, + -0.32994669675827026, + -0.5352857708930969, + -0.9914919137954712, + 0.26705437898635864, + 0.4369165897369385, + -0.025561392307281494, + -0.22005361318588257, + -0.04505503177642822, + -1.3452348709106445, + 0.06996869295835495, + 0.23753799498081207, + 0.22835245728492737, + -1.4053173065185547, + 0.1947738528251648, + -0.9229850769042969, + 0.6217946410179138, + 0.7935481071472168, + 1.8229143619537354, + 0.4019874632358551, + 1.2554115056991577, + -0.5239592790603638, + -0.7693261504173279, + 0.5009374618530273, + 0.35130926966667175, + 0.18676453828811646, + -0.18571418523788452, + -0.7115612030029297, + 0.6490879058837891, + -0.3333396315574646, + 0.3511695861816406, + 1.025054931640625, + -0.4266125559806824, + 0.1719609797000885, + 0.10743451118469238, + 0.3038548231124878, + 0.19345936179161072, + 0.5535852909088135, + 0.7049893736839294, + 0.04860130697488785, + 0.07323604822158813, + -0.1366513967514038, + -0.13480812311172485, + -1.0868741273880005, + -0.5672364830970764, + 0.3631635308265686, + 0.2858552634716034, + 0.3038281202316284, + 1.045648455619812, + 2.7008039951324463, + -0.4087498188018799, + -0.2965693771839142, + -0.27168163657188416, + -0.09796766936779022, + -0.3430248498916626, + 0.022881217300891876, + 1.2256624698638916, + 0.7708479166030884, + -1.6663849353790283, + 0.4085692763328552, + -0.04587504267692566, + 0.860538899898529, + 0.02577275037765503, + -0.7858606576919556, + 0.13896331191062927, + -0.9414036273956299, + 0.09293024241924286, + 0.25571563839912415, + -4.282919883728027, + -0.0805436372756958, + 0.40496066212654114, + 0.30941951274871826, + 0.6343306303024292, + 0.02602851390838623, + 0.07943916320800781, + 1.0719573497772217, + 0.565781831741333, + -0.42781856656074524, + -0.26062673330307007, + 0.6501294374465942, + -0.34637874364852905, + -0.4826871156692505, + 0.7890718579292297, + -0.00652080774307251, + 0.22027792036533356, + 0.3714456856250763, + 0.32086777687072754, + 0.07500152289867401, + -0.13597919046878815, + -0.39392271637916565, + 0.38753625750541687, + 0.3453204929828644, + -0.24443283677101135, + 0.8874943256378174, + 0.1335325539112091, + 0.3224731385707855, + 0.14577798545360565, + 0.29275041818618774, + -0.6269582509994507, + -0.34396523237228394, + 0.5910000801086426, + 0.2405182272195816, + -0.45612797141075134, + -0.239736407995224, + -0.8460440635681152, + 0.29824894666671753, + 0.4658595621585846, + 0.07727161049842834, + -0.4222179651260376, + -0.4198954701423645, + -0.3567410707473755, + 0.6029103398323059, + 0.10002613067626953, + -0.1923564374446869, + -0.2179563045501709, + -0.430459201335907, + -0.43887317180633545, + -0.8641388416290283, + -0.5203337669372559, + -0.04507957398891449, + -0.5357949137687683, + 0.4059501886367798, + -0.4434277415275574, + 0.00528639554977417, + -0.6872179508209229, + 2.529811382293701, + 0.16774982213974, + -0.44219595193862915, + -0.2691720724105835, + -1.2828477621078491, + 0.8146153688430786, + -0.5746957659721375, + -0.14259813725948334, + 0.203322172164917, + -0.7996957302093506, + 0.7627797722816467, + 0.41174644231796265, + -0.568374752998352, + 0.9710779786109924, + -0.9572799801826477, + -0.278772234916687, + 0.2920830249786377, + 0.5150238275527954, + -0.33920156955718994, + 0.5691609382629395, + -0.051943063735961914, + -0.8037067651748657, + 0.23996636271476746, + -0.4847465753555298, + 0.1505354940891266, + 0.06154639646410942, + -0.7784394025802612, + -0.22108489274978638, + 0.02913222461938858, + -0.49103444814682007, + 0.2224712371826172, + -0.20646050572395325, + -0.8028627634048462, + 1.2863173484802246, + 0.9609524011611938, + 0.8427243828773499, + 0.9349255561828613, + -0.1859540194272995, + -0.015001192688941956, + 0.4080725908279419, + 0.12261497974395752, + -0.9569862484931946, + -0.5047294497489929, + 0.24802762269973755, + 0.9602178335189819, + 1.3134045600891113, + 0.24858790636062622, + -0.06370304524898529, + -0.1330658495426178, + -1.4922610521316528, + 0.2075079083442688, + -0.04343132674694061, + -0.6307518482208252, + 0.4349950850009918, + 0.338628888130188, + 0.24782848358154297, + -0.2972116470336914, + -0.3460007607936859, + -0.5132675766944885, + -0.7538160085678101, + 0.20277079939842224, + 0.24134306609630585, + -0.3629637360572815, + 1.131544828414917, + 0.17954368889331818, + 0.025465428829193115, + -0.1512233018875122, + -0.1268751621246338, + -0.6847420930862427, + -0.5837042331695557, + -0.1343403309583664, + -0.08374053239822388, + 0.19229349493980408, + -0.8292991518974304, + -0.518587052822113, + -0.3443085551261902, + -0.08614611625671387, + 0.12224699556827545, + 0.3583003282546997, + -1.2862462997436523, + 0.34311556816101074, + -0.2054966241121292, + -0.3932420611381531, + -0.10245216637849808, + -0.10638944804668427, + 0.20403838157653809, + 0.21756654977798462, + 0.39612776041030884, + -0.5374763011932373, + 0.08548754453659058, + 0.6319286823272705, + 0.22030559182167053, + 0.047279953956604004, + -0.20297402143478394, + -0.21959847211837769, + -0.27464181184768677, + 0.6240649819374084, + 0.19025510549545288, + -0.2740788757801056, + -0.6983533501625061, + 0.6869572997093201, + 0.011273473501205444, + -1.5266332626342773, + 1.1382756233215332, + 0.42174798250198364, + 0.16272154450416565, + -0.4708857536315918, + -1.17171049118042, + -0.08213090896606445, + 0.4529012143611908, + 0.8133324384689331, + 0.4356067180633545, + -0.12317775189876556, + 0.1590801328420639, + 0.5586130023002625, + 0.12584660947322845, + 0.053390681743621826, + 1.706559658050537, + 0.08428959548473358, + -0.3745681047439575, + 0.05836832523345947, + 1.8850905895233154, + 0.27613160014152527, + -0.4749895930290222, + -0.18989302217960358, + -0.5135347843170166, + -0.3591998219490051, + -0.23955170810222626, + 0.14537741243839264, + 0.17030978202819824, + 0.7107203602790833, + 0.100881427526474, + 0.0366290807723999, + -0.09985396265983582, + 0.3419015407562256, + -0.7573769688606262, + 0.30628639459609985, + -0.5384090542793274, + -0.7004659175872803, + -0.593670666217804, + 0.008621633052825928, + -0.5878537893295288, + 0.23329602181911469, + -0.3906383514404297, + -0.275933176279068, + 0.26824790239334106, + 0.13879799842834473, + 0.3060799241065979, + 0.10475985705852509, + -0.24628761410713196, + 0.2971157729625702, + 0.6633191108703613, + 0.9700188636779785, + 0.1017291322350502, + -0.33993178606033325, + -0.09256447106599808, + -0.2370956838130951, + 0.4947674572467804, + -0.7153687477111816, + -0.16207967698574066, + -0.6609352231025696, + 0.7492876052856445, + 0.2182208001613617, + 0.7108150720596313, + -0.5397552847862244, + -0.2247633934020996, + 0.2657681107521057, + -0.04599335044622421, + -0.18387609720230103, + -0.5153105854988098, + -0.17496943473815918, + 0.7075588703155518, + 0.09288996458053589, + -0.12175005674362183, + 0.1373770385980606, + -0.1674584448337555, + 0.13590887188911438, + 0.12668901681900024, + 0.6083546876907349, + -1.8136718273162842, + 0.04792794585227966, + -0.5536076426506042, + -0.5147349238395691, + 0.06431138515472412, + -0.07856571674346924, + -0.2729507386684418, + -0.07123967260122299, + -0.2914748191833496, + -1.1947524547576904, + -0.528038740158081, + -0.2622534930706024, + -0.10397425293922424, + 0.4756879210472107, + -0.9420919418334961, + 0.0899127796292305, + 0.04531562328338623, + -0.4630034267902374, + -0.07382524013519287, + 0.12106919288635254, + -0.09981826692819595, + 0.747856616973877, + -0.6241725087165833, + 0.44648563861846924, + -0.378062903881073, + -1.0775971412658691, + -0.5050238966941833, + 0.039551764726638794, + -0.29411250352859497, + 0.14596009254455566, + -0.054537951946258545, + 0.014212429523468018, + -0.32309049367904663, + -0.9425118565559387, + -0.8725425004959106, + 0.13114196062088013, + 0.06692640483379364, + 0.3215818703174591, + -0.8866335153579712, + 0.24195148050785065, + 0.9582960605621338, + -0.059138476848602295, + 1.0824209451675415, + 0.6366380453109741, + -0.09764327108860016, + 0.33482372760772705, + 0.01171015202999115, + 0.5443965196609497, + -0.09453868865966797, + -0.6449990272521973, + 0.6632417440414429, + 1.377567172050476, + 1.122445821762085, + -0.6197369694709778, + 0.43950068950653076, + 0.6432492733001709, + -0.15219539403915405, + -0.23979976773262024, + -0.04386091232299805, + 0.36402225494384766, + -0.8458807468414307, + 0.16364727914333344, + -0.6200336217880249, + -0.8635460138320923, + -0.26698732376098633, + -0.06804639101028442, + -0.19914910197257996, + -0.7208068370819092, + -1.5908451080322266, + -0.2526116371154785, + -0.17913159728050232, + 0.10142198204994202, + 0.8320522308349609, + 0.34064343571662903, + -0.3875579237937927, + 0.2485571950674057, + -0.7493550777435303, + 0.1776665449142456, + -0.02650389075279236, + 0.7402255535125732, + 0.21505428850650787, + 0.9179562330245972, + 2.1462130546569824, + -0.4336579442024231, + 1.6053065061569214, + -0.5369940996170044, + -0.5068773031234741, + 0.5022198557853699, + -0.628236711025238, + -0.5183186531066895, + 0.2731766998767853, + 0.13904720544815063, + -0.1581205129623413, + -0.09850418567657471, + 0.4472474753856659, + 0.39964842796325684, + -0.8058305978775024, + -0.8234357237815857, + -0.30641064047813416, + -0.6144198179244995, + 0.5636077523231506, + 0.06863553822040558, + -0.8096303939819336, + -0.42881232500076294, + -0.050926268100738525, + -0.40780144929885864, + -1.341208577156067, + -0.234521746635437, + -0.6365922689437866, + 0.057430997490882874, + -0.0389447957277298, + 0.19787856936454773, + 0.3662828803062439, + -0.6195852160453796, + -0.6046862006187439, + -0.5046662092208862, + -0.023487448692321777, + 0.18281522393226624, + 0.09306082129478455, + -0.21121354401111603, + -0.1754370927810669, + -0.12050943076610565, + 1.3162379264831543, + -0.2380097508430481, + -0.8993076086044312, + 0.3816338777542114, + 0.7023613452911377, + 0.5010355710983276, + 1.0514014959335327, + 1.1021108627319336, + -0.09482261538505554, + 0.4674168527126312, + 0.6400427222251892, + 0.5972676277160645, + 0.13199928402900696, + 0.4851210117340088, + 0.229420468211174, + -0.2925216257572174, + -0.5944618582725525, + 0.32179805636405945, + -0.4087010622024536, + -0.0038257986307144165, + -0.3192159831523895, + -1.1448497772216797, + 0.36212655901908875, + -0.1680203080177307, + 0.1571706086397171, + 1.6232541799545288, + 0.17111146450042725, + -1.3473122119903564, + 0.11425364017486572, + -0.9556846022605896, + -1.0823086500167847, + 0.07115404307842255, + -0.9611539244651794, + -0.36354732513427734, + -2.258857250213623, + -0.15570467710494995, + 0.006069585680961609, + 0.646101713180542, + 0.6239157319068909, + -0.5356754660606384, + 0.04413875192403793, + 0.48897039890289307, + -0.44938209652900696, + 0.3451753556728363, + -0.0738590657711029, + 0.5480331778526306, + -0.3433460593223572, + 0.8003193140029907, + 0.31348854303359985, + 0.2502719759941101, + 0.5852693915367126, + -0.0737840086221695, + 0.39343130588531494, + -0.3936939239501953, + 0.39932650327682495, + 0.8679237961769104, + 0.9756304025650024, + -0.5215892195701599, + -0.7277511358261108, + -0.7200636267662048, + 0.46541860699653625, + 0.4372289180755615, + 0.11658455431461334, + 0.4734936058521271, + 0.3197551369667053, + -0.31132107973098755, + 0.12940607964992523, + -1.1656595468521118, + -0.6309524774551392, + 0.3600805401802063, + -0.42309287190437317, + -0.4586776793003082, + 0.1964346170425415, + -0.272915244102478, + -1.0223455429077148, + 1.1262751817703247, + -1.2366787195205688, + 0.10804858803749084, + -0.18181030452251434, + 0.33275341987609863, + 0.30175483226776123, + -0.9502060413360596, + 2.943002462387085, + 1.1158862113952637, + 1.1731399297714233, + -0.08967983722686768, + -0.9011891484260559, + 0.12833642959594727, + 0.23766149580478668, + 0.7352456450462341, + -0.11679315567016602, + -0.7167053818702698, + 0.2721063792705536, + 0.2839691936969757, + -1.3755214214324951, + 0.5636693239212036, + 0.12225228548049927, + -0.962083101272583, + -0.26239240169525146, + -0.27142947912216187, + 0.2237665057182312, + -0.1276404857635498, + 0.1773916482925415, + -0.14612269401550293, + 0.1700587272644043, + 0.54911869764328, + -0.14125272631645203, + 0.3124399483203888, + 0.35621047019958496, + 0.5532320141792297, + -0.17509883642196655, + 0.3951512575149536, + 0.7507297992706299, + -0.10775747895240784, + 0.7866163849830627, + -0.9093968868255615, + 0.48363810777664185, + -0.31637755036354065, + 0.08772040903568268, + -0.4905344247817993, + 1.0307896137237549, + -1.04049551486969, + -0.3035340905189514, + 0.36393794417381287, + 0.8016045093536377, + -0.34279513359069824, + 3.8755099773406982, + 1.363832712173462, + -0.2651117444038391, + -1.6565028429031372, + 0.22707349061965942, + 0.19178831577301025, + 0.05905134975910187, + 1.7438240051269531, + 0.5172545909881592, + -0.8436137437820435, + -0.3692289888858795, + 0.4814791679382324, + -0.36329787969589233, + -0.37612196803092957, + 0.3552241325378418, + 0.2573489546775818, + -0.1737031191587448, + -0.27947619557380676, + 0.1430906057357788, + -0.6028742790222168, + 1.290513277053833, + 0.24782413244247437, + 0.25212976336479187, + 0.016022861003875732, + -0.5435165166854858, + -0.795333743095398, + 0.18917864561080933, + -0.7522521615028381, + 0.5002574920654297, + 0.3397907316684723, + 0.103506900370121, + -0.8213133215904236, + 0.0779055655002594, + -0.34246909618377686, + -0.08166778087615967, + -0.8776202201843262, + -0.027803245931863785, + 0.1413728892803192, + 0.7637062072753906, + -0.06975315511226654, + 0.0806061327457428, + -0.30135974287986755, + -0.17001238465309143, + -0.20731720328330994, + 0.6133478879928589, + 0.21308332681655884, + 0.05876530706882477, + -0.06673645973205566, + -0.7577526569366455, + 0.1897129863500595, + -0.1633966863155365, + 0.3224690854549408, + 0.41748738288879395, + -0.19465358555316925, + 1.0089489221572876, + -0.420354425907135, + -0.42247751355171204, + 0.26834434270858765, + -0.38673287630081177, + -0.19802911579608917, + 0.3194839656352997, + 0.19064709544181824, + 0.24380578100681305, + -0.752224326133728, + -0.0816672295331955, + -0.3600877523422241, + -0.6768494248390198, + 0.5018603801727295, + 0.2346770465373993, + 0.05567765235900879, + 0.2783661186695099, + 0.5800180435180664, + 0.7767917513847351, + 0.4061089754104614, + 0.8027091026306152, + 0.8546030521392822, + 0.4922381639480591, + -0.06363369524478912, + 0.2594437301158905, + 1.1353187561035156, + 0.15005803108215332, + -0.11050006747245789, + -0.5625486373901367, + -0.4093594551086426, + 0.08759874105453491, + -0.5161615014076233, + -0.11870065331459045, + -0.940519392490387, + 0.019512176513671875, + -0.37964820861816406, + 0.9646174907684326, + -0.2449696958065033, + -0.07260853052139282, + -0.755867600440979, + -0.20609213411808014, + 0.4458543658256531, + -1.715571641921997, + -0.893791913986206, + -0.3671702742576599, + 0.8065322637557983, + -0.16594091057777405, + -0.2832103371620178, + 0.3217339515686035, + 0.21759262681007385, + -0.21866442263126373, + 0.893085241317749, + -1.7059681415557861, + -0.28817683458328247, + 3.0307226181030273, + 0.3165959119796753, + -0.25009745359420776, + 0.08125299215316772, + 0.16423580050468445, + -0.35529571771621704, + 0.3251636326313019, + 0.6057056784629822, + 0.0732497051358223, + 0.4165348410606384, + 0.7855020761489868, + -0.26017528772354126, + -0.09205393493175507, + -0.6404358148574829, + 0.20040877163410187, + -0.4577532112598419, + 0.27168139815330505, + 0.14577728509902954, + -0.9592577219009399, + -0.7785893082618713, + 0.11391720175743103, + -0.7432669401168823, + 1.68735933303833, + -0.681694507598877, + -0.2000652253627777, + -0.2603636384010315, + -1.1349728107452393, + 0.34222397208213806, + -0.5073109865188599, + -0.13459381461143494, + 0.08654148876667023, + 1.0982921123504639, + -0.14179174602031708, + -0.03491275757551193, + -0.7262904047966003, + -0.3084673285484314, + -0.14723420143127441, + -0.015422701835632324, + -0.6680812835693359, + -1.4221339225769043, + -0.12757328152656555, + -0.506712794303894, + -0.10812985897064209, + 0.13541440665721893, + -0.04817759990692139, + -0.958009660243988, + -0.35938748717308044, + 1.0323166847229004, + -0.10652399063110352, + 0.7658243179321289, + -0.0904090628027916, + -0.17536772787570953, + -0.19292092323303223, + -0.8426915407180786, + 0.16969901323318481, + 0.2123543620109558, + 0.15479344129562378, + -1.1113924980163574, + 0.540642261505127, + -0.29027873277664185, + 0.6758602261543274, + -0.9654281139373779, + -1.5487784147262573, + 0.6046797037124634, + 3.215125799179077, + 1.0095351934432983, + 0.7047476768493652, + -0.1889967918395996, + -0.14452730119228363, + 0.8029260635375977, + 0.28474533557891846, + -1.1821454763412476, + -0.5116859674453735, + -0.4363885819911957, + 0.8927156925201416, + 0.1680791676044464, + -0.24758850038051605, + 0.14076194167137146, + 0.49835774302482605, + -0.40012258291244507, + -0.24035564064979553, + 0.4539481997489929, + -0.5226466059684753, + 0.5767406225204468, + -0.4878242015838623, + 0.09274562448263168, + -0.6176339387893677, + 0.23200789093971252, + 0.5689822435379028, + 1.300390362739563, + -0.5826976895332336, + -0.06961417198181152, + 0.13793277740478516, + 0.8999040126800537, + 0.6102918982505798, + -1.3522471189498901, + -0.588509738445282, + 1.2432727813720703, + 0.06993948668241501, + -0.05858543515205383, + 0.11730538308620453, + 0.25943171977996826, + 0.2201099991798401, + 0.966966450214386, + 0.631633996963501, + 0.719688892364502, + -0.4081220328807831, + -0.9950647354125977, + -0.12801137566566467, + -0.07548900693655014, + 0.15985581278800964, + 0.05581170320510864, + 0.24224048852920532, + 0.18335825204849243, + -2.0785672664642334, + 0.3681061863899231, + 0.4963788390159607, + -0.5326372385025024, + -0.6578128337860107, + -0.335239976644516, + -0.22698891162872314, + -0.2195531129837036, + 0.6543301939964294, + 0.17271769046783447, + -0.4483768939971924, + 0.42165741324424744, + -0.021184831857681274, + 0.13261078298091888, + 0.9546629786491394, + 0.3131234645843506, + 0.5428181886672974, + 0.8469839096069336, + -0.3565446138381958, + 0.6676164269447327, + 0.2619381248950958, + 0.20852401852607727, + -0.3486011028289795, + 0.18167875707149506, + 0.485097736120224, + -0.3326054811477661, + -0.5229178667068481, + -0.0328245535492897, + -0.9701943397521973, + -0.20748360455036163, + 1.8508882522583008, + -0.5425283312797546, + -0.2175837755203247, + 0.0064545683562755585, + -0.1305849254131317, + 0.5156497955322266, + 0.5711028575897217, + -0.5285922288894653, + 0.46330925822257996, + 0.5565111637115479, + 0.45866671204566956, + 0.09716229140758514, + -0.35527127981185913, + -0.4485167860984802, + -0.09789904952049255, + 0.03608164191246033, + -0.3357822299003601, + -0.021457083523273468, + 0.33493900299072266, + 0.7683214545249939, + 0.1974123865365982, + 0.22223174571990967, + -0.49615225195884705, + -0.18374156951904297, + -1.3068749904632568, + -0.018570944666862488, + -0.23059675097465515, + 0.2542046308517456, + -0.18976211547851562, + 2.5374324321746826, + 0.24970483779907227, + -0.9865074157714844, + 0.378791868686676, + 1.4556407928466797, + 1.7810481786727905, + -0.8208122849464417, + 1.5338128805160522, + -0.06508408486843109, + 0.4051632285118103, + -0.6985135674476624, + -0.1034994125366211, + -0.5869872570037842, + 0.8445276021957397, + 0.08671337366104126, + -0.5222479701042175, + -0.2878636121749878, + -0.654718816280365, + 0.05921616405248642, + 0.2126653492450714, + 0.1130627989768982, + -0.054651807993650436, + -0.6252642273902893, + -0.6841390132904053, + 1.9851874113082886, + 1.017804741859436, + 0.2595250606536865, + -0.1278204619884491, + -0.7996622323989868, + 1.948734998703003, + -0.5576460361480713, + -0.7202640175819397, + 0.3467753529548645, + -1.2996313571929932, + 1.245705485343933, + 0.9164491295814514, + -0.03541669249534607, + 0.24288278818130493, + -0.9333873391151428, + -0.8794757723808289, + 1.0126594305038452, + 0.3563932478427887, + -0.004395663738250732, + -0.2818758487701416, + 0.07231873273849487, + 0.4685541093349457, + 0.5045193433761597, + 0.9637789726257324, + 0.6729336977005005, + 0.13728779554367065, + -0.6755672693252563, + 1.4526573419570923, + 0.9503451585769653, + -0.5409931540489197, + -0.32875367999076843, + 0.7376589775085449, + 0.43306243419647217, + 0.21050727367401123, + -0.8092540502548218, + 0.2814820110797882, + 0.29975488781929016, + 1.3077688217163086, + -0.08398312330245972, + 0.0840609073638916, + -0.6259425282478333, + 0.15582427382469177, + 0.027278602123260498, + -0.03481307625770569, + -0.15511038899421692, + 0.5534986257553101, + -1.1734718084335327, + -1.2811193466186523, + 0.13417789340019226, + -0.7409997582435608, + 0.3750338554382324, + -0.18376308679580688, + 0.8229396939277649, + 0.47027602791786194, + -0.37113893032073975, + 0.14475132524967194, + -0.6844074130058289, + -0.5196300745010376, + 0.7837797403335571, + -0.4561293125152588, + 0.36155930161476135, + -0.1330397129058838, + -0.35753872990608215, + 0.17022067308425903, + -2.7535793781280518, + -0.25241583585739136, + 0.3934609293937683, + 0.4554486870765686, + -0.32627829909324646, + -0.017835497856140137, + -0.24708454310894012, + -0.7346959114074707, + 0.4878329038619995, + 1.7463726997375488, + -0.6292930245399475, + -2.0032854080200195, + 0.052890438586473465, + -0.15615876019001007, + -0.5440958142280579, + -6.279190540313721, + 1.4041674137115479, + 1.384781837463379, + -0.8195772767066956, + 0.16006654500961304, + 0.529617190361023, + 0.7944597601890564, + -1.141339659690857, + -0.6010032296180725, + 0.054140396416187286, + 2.5587306022644043, + -0.16468048095703125, + 0.14176404476165771, + 0.5307325124740601, + -0.7395018339157104, + 0.5859231948852539, + 0.39278560876846313, + -0.9421906471252441, + -0.2848964035511017, + 1.2053804397583008, + -0.5451187491416931, + 0.04259181022644043, + -1.6040213108062744, + -0.2650397717952728, + -0.5574419498443604, + 0.1595502495765686, + 0.5597937107086182, + -1.098893642425537, + -1.0971918106079102, + 0.33676469326019287, + -0.5371167659759521, + 0.4595436155796051, + 0.5962374210357666, + 0.14475031197071075, + 0.17013247311115265, + -0.3764525353908539, + -0.33649057149887085, + 0.1751275509595871, + 0.07865003496408463, + 2.1796698570251465, + 0.14909128844738007, + -0.08846952021121979, + -0.8971901535987854, + -0.5861897468566895, + 0.8604033589363098, + -0.9777987003326416, + -0.19195136427879333, + 0.17205458879470825, + 0.15234217047691345, + 0.21502843499183655, + 0.23561398684978485, + 0.49003493785858154, + 0.4726727306842804, + -0.02550634741783142, + -0.2553589344024658, + 0.4302358627319336, + 0.1206928938627243, + 0.8521608114242554, + -0.47724682092666626, + 0.04484456777572632, + 0.148034006357193, + -0.8806006908416748, + -0.513424277305603, + 0.8058642148971558, + 1.1904155015945435, + 0.41299474239349365, + -0.5455538034439087, + -0.019658271223306656, + 0.24748258292675018, + 1.0973848104476929, + 0.2676856517791748, + 0.717804491519928, + 0.29753854870796204, + 2.6270923614501953, + -0.005906686186790466, + -0.290762335062027, + -0.3005239963531494, + 0.1287791132926941, + 0.5636367797851562, + -0.44142794609069824, + 0.4781081974506378, + -0.1698789894580841, + 0.158369779586792, + 0.014428943395614624, + 0.7272855639457703, + -0.3794764578342438, + -0.01111304759979248, + 0.4230729341506958, + -0.6138055920600891, + -0.29202979803085327, + -0.2903307378292084, + 0.4143649935722351, + -0.5217649936676025, + 0.3940154016017914, + 3.5460774898529053, + -0.30913278460502625, + -0.5458576679229736, + -0.2583465576171875, + -0.18635912239551544, + 0.028906479477882385, + -0.3991277813911438, + 0.4607328772544861, + 0.2478102445602417, + -0.13292628526687622, + -1.1630511283874512, + 0.44042202830314636, + -0.08286143839359283, + -0.21193638443946838, + 0.06927435100078583, + 0.2782718241214752, + 0.27850982546806335, + -0.40342235565185547, + 0.5311969518661499, + 0.20555132627487183, + 0.8750472068786621, + 0.33750414848327637, + 0.10048158466815948, + -0.1393965482711792, + 0.5322259664535522, + -0.13694113492965698, + 0.2309504747390747, + -0.07730069756507874, + -0.2871374785900116, + -0.15964053571224213, + 0.12091773003339767, + 0.5090739727020264, + -0.25017258524894714, + -0.04075303673744202, + 0.7803497314453125, + 0.37720224261283875, + 0.13188621401786804, + 0.13042905926704407, + 0.8815581798553467, + -0.06410551071166992, + 0.6258640289306641, + -0.8161208629608154, + 0.2700563669204712, + -0.12732601165771484, + -0.5367125868797302, + -0.36303794384002686, + -0.6895580291748047, + -0.22302398085594177, + 0.45758551359176636, + 0.12161462754011154, + -0.37392371892929077, + -0.436513215303421, + 0.0480261892080307, + -0.36667612195014954, + -0.6661703586578369, + 0.6246919631958008, + 0.8102725744247437, + -0.030750907957553864, + 0.5717172622680664, + -0.23374594748020172, + -0.23655201494693756, + -0.4699273109436035, + 0.377559632062912, + -1.0476136207580566, + 0.1573958396911621, + 0.445600301027298, + -1.0427534580230713, + 0.23876741528511047, + 0.17826829850673676, + -0.7301077842712402, + 0.16496890783309937, + -0.7495721578598022, + -0.22321873903274536, + -2.321929931640625, + -0.24807268381118774, + -0.7838373184204102, + 0.37643545866012573, + 1.2007215023040771, + 1.1089528799057007, + 0.30256587266921997, + -0.6438009738922119, + -0.2715396285057068, + 0.9494513869285583, + -0.038648396730422974, + -0.8483904004096985, + -0.11240026354789734, + -0.39025408029556274, + -0.7409741878509521, + -2.0524048805236816, + -1.2762172222137451, + 0.2213195115327835, + 0.2297029197216034, + -0.9475250840187073, + -0.056637242436409, + 0.09286081790924072, + 0.2096080780029297, + -0.1749230921268463, + 0.6975247859954834, + -0.3160478174686432, + -1.3241853713989258, + -0.09152001142501831, + -0.6231796741485596, + -0.5412635207176208, + 0.19803006947040558, + -0.05897803232073784, + -0.8404381275177002, + -0.7740732431411743, + -0.1839771866798401, + -0.15630996227264404, + 2.063493013381958, + 0.20703347027301788, + 0.4144198000431061, + -0.011765524744987488, + -0.14853698015213013, + -0.4149041771888733, + -0.7532097101211548, + 1.1670831441879272, + 0.6240173578262329, + -0.5221641659736633, + 0.9227805733680725, + -0.6904295682907104, + 0.4172287881374359, + 0.42537713050842285, + -0.35286852717399597 + ], + "vector": [ + -0.015880627557635307, + -0.007046129088848829, + -0.0013465671800076962, + -0.005041389260441065, + -0.02226206287741661, + 0.03188471496105194, + -0.011977038346230984, + 0.005371276754885912, + 0.009403773583471775, + -0.007001750636845827, + 0.003507964313030243, + 0.00043322509736754, + -0.00015040684957057238, + 0.0038134714122861624, + -0.007593883667141199, + -0.004461341071873903, + 0.012466785497963428, + 0.003887396538630128, + 0.017726214602589607, + 0.0038662180304527283, + -0.009036082774400711, + 0.013547400943934917, + 0.0017773144645616412, + -0.007876063697040081, + 0.00820839498192072, + 0.013232378289103508, + -0.0706501230597496, + 0.0026612700894474983, + 0.0032117816153913736, + -0.009558257646858692, + 0.006054622586816549, + -0.034101493656635284, + 0.015539439395070076, + 0.00242172135040164, + 0.0010014944709837437, + -0.020563507452607155, + 0.013038025237619877, + -0.011491728946566582, + -0.008625414222478867, + 0.002619414124637842, + -0.0015809019096195698, + -0.00886357482522726, + 0.016972260549664497, + 0.016267769038677216, + 0.00030955628608353436, + -0.0006070624222047627, + -0.014121501706540585, + -0.001161340856924653, + -0.010062841698527336, + 0.0035681920126080513, + -0.00036889768671244383, + -0.04304322972893715, + -0.0010444625513628125, + -0.00791415385901928, + 0.03558133915066719, + 0.006777269300073385, + 0.005931539461016655, + 0.0036965038161724806, + -0.019593114033341408, + -0.00047284294851124287, + -0.0018595029832795262, + -0.008042062632739544, + 0.008087166585028172, + -0.025951966643333435, + 0.01102533657103777, + 0.012033926323056221, + -0.0023180758580565453, + 0.004991540219634771, + 0.02545207366347313, + 0.005510137882083654, + 0.008163576014339924, + 0.0017198218265548348, + -0.012849278748035431, + -0.0075452495366334915, + 0.0114652244374156, + 0.026584388688206673, + -0.003693572711199522, + -2.6837804398383014e-05, + -0.02191607467830181, + -0.014861424453556538, + 0.03544330596923828, + 0.009113513864576817, + -0.015097802504897118, + -0.011198890395462513, + 0.01137014664709568, + 0.010315952822566032, + -0.011094598099589348, + 0.009198491461575031, + -0.007368661463260651, + 0.006951133720576763, + -0.0073628975078463554, + -0.0024814296048134565, + -0.008187853731215, + 0.015134728513658047, + -0.0191095769405365, + -0.051169462502002716, + 0.01460309512913227, + -0.0004681138671003282, + 0.04003944993019104, + 0.0036175509449094534, + -0.003699815832078457, + -0.009668441489338875, + -0.026285221800208092, + -0.02147473767399788, + 0.007572024129331112, + -0.00030798689112998545, + -0.006759602576494217, + -0.004552517551928759, + -0.01800401508808136, + 0.012697945348918438, + -0.004295684397220612, + 0.0015748214209452271, + -4.770109080709517e-05, + 0.007474397774785757, + 0.008746693842113018, + 0.010344481095671654, + 0.007039531134068966, + -0.00452010752633214, + 0.004345029126852751, + 0.004518873058259487, + 0.020282477140426636, + 0.010734237730503082, + 0.03374483808875084, + 0.0035934457555413246, + 0.005413037724792957, + -0.026600228622555733, + 0.00025796887348406017, + -0.0015869769267737865, + -0.009215034544467926, + 0.011161740869283676, + 0.01835857331752777, + -0.021724678575992584, + 0.0006761600379832089, + 0.0032259183935821056, + 0.029308516532182693, + 0.01759343221783638, + 0.0022582444362342358, + -0.01027002278715372, + -0.001815815456211567, + -0.004836220294237137, + 0.009558729827404022, + 0.0013029996771365404, + -0.024327624589204788, + 0.0055900816805660725, + 0.009249303489923477, + -0.003371360246092081, + -0.007623881101608276, + 0.013619043864309788, + -0.0016267378814518452, + 0.022067274898290634, + 0.004422996658831835, + 0.000495361047796905, + -0.00656763045117259, + -0.01777169480919838, + 0.005706556607037783, + 0.02637113817036152, + -0.004002648871392012, + -0.009184552356600761, + -0.00020787680114153773, + -1.7900321836350486e-05, + -0.008350342512130737, + 0.006296580191701651, + 0.01644238829612732, + 0.01287638209760189, + -0.004735175054520369, + -0.005452516954392195, + -0.015655390918254852, + -0.026501426473259926, + -0.017827264964580536, + 0.0046499646268785, + 0.009759376756846905, + -0.01263025775551796, + -0.033685918897390366, + -0.003179003717377782, + 0.0028340788558125496, + -0.004176511894911528, + -0.025822807103395462, + 0.006174189038574696, + 0.006101808976382017, + 0.009427830576896667, + 0.011523929424583912, + 0.004993511363863945, + -0.00696840975433588, + -0.006300747394561768, + 0.0026493784971535206, + -0.00041050257277674973, + 0.0012578938622027636, + 0.002720858436077833, + -0.0009908509673550725, + -0.007451236248016357, + 0.01126272976398468, + 0.014759747311472893, + 0.028083276003599167, + 0.011099135503172874, + -0.00338281923905015, + -0.0012706894194707274, + -0.04787881299853325, + -0.0012564013013616204, + -0.016548022627830505, + 0.0005360560608096421, + 0.04909517988562584, + -0.0003398605331312865, + -0.02159520983695984, + 0.012670700438320637, + 0.017541371285915375, + -0.01781177520751953, + -0.0014344853116199374, + 0.050516288727521896, + 0.029832961037755013, + -0.00713336281478405, + 0.008305133320391178, + 0.0005171220982447267, + -0.006403539329767227, + 0.002339144004508853, + 0.008463720791041851, + 0.005268307402729988, + 0.0007395289721898735, + -0.0029382433276623487, + 0.005385435651987791, + -0.012095891870558262, + -0.012004047632217407, + 0.0033011746127158403, + 0.014994805678725243, + -0.0038412550929933786, + 0.03436257690191269, + -0.052594516426324844, + -0.017027713358402252, + -0.010169140063226223, + 0.006896639242768288, + 0.012539001181721687, + 0.0031796765979379416, + 0.00507035618647933, + -0.017117995768785477, + -0.06879720836877823, + 0.018875019624829292, + -0.0018706682603806257, + -0.006558102089911699, + -0.007020398508757353, + -0.0018705680267885327, + 0.01875179074704647, + 0.014911512844264507, + -0.023610342293977737, + 0.010574701242148876, + -0.08054422587156296, + -0.0021862813737243414, + 0.012732830829918385, + -0.025618551298975945, + -0.011963596567511559, + 0.02699662744998932, + 0.004279542714357376, + -0.008118935860693455, + -0.046142566949129105, + -0.0060517629608511925, + 0.013145120814442635, + -0.00797489657998085, + 0.00974055752158165, + 0.014752808958292007, + -0.010102391242980957, + 0.002376775024458766, + -0.005735170561820269, + -0.014921045862138271, + -0.0070261284708976746, + 0.02451450563967228, + 0.0049586184322834015, + 0.020680677145719528, + 0.000893590331543237, + -0.006311332806944847, + -0.022785335779190063, + 0.002318905433639884, + -0.014848736114799976, + 0.0020533937495201826, + 0.016828102990984917, + 0.0006037438870407641, + -0.016318175941705704, + -0.01633392833173275, + 0.0045190611854195595, + 0.010319085791707039, + -0.0032859144266694784, + 0.010809017345309258, + 0.008616593666374683, + -0.015299228951334953, + 0.005991959013044834, + 0.008920162916183472, + -0.008757133968174458, + 0.00633823499083519, + 0.010564484633505344, + 0.0006444064201787114, + 0.00949031300842762, + 0.003446610877290368, + 0.003266548039391637, + -0.01036116760224104, + -0.024674102663993835, + -0.023621536791324615, + -0.0035328916274011135, + -0.0012001062277704477, + 0.004114561714231968, + -0.01622568443417549, + -0.013629474677145481, + 0.017664320766925812, + -0.009775443933904171, + 0.006973872426897287, + 0.014502391219139099, + -0.005554895382374525, + -0.001303791650570929, + -0.010885046795010567, + 0.0035517511423677206, + 0.0018942246679216623, + -0.01957256719470024, + -0.00774830486625433, + -0.016367312520742416, + -0.003961826208978891, + 0.0009925555204972625, + 0.013326233252882957, + 0.003917883615940809, + -9.308798325946555e-05, + 0.0122988885268569, + 0.0031132774893194437, + 0.010063361376523972, + 0.011770571582019329, + 0.011970690451562405, + 0.005308745428919792, + 0.007518484722822905, + -0.006922300439327955, + 0.0118957394734025, + 0.007771818432956934, + 0.005536852404475212, + 0.005785096436738968, + -0.012121119536459446, + 0.01110872719436884, + 0.01553519070148468, + -0.005813846364617348, + -0.002999325515702367, + -0.006323539651930332, + 0.018886180594563484, + -0.0036980267614126205, + 0.00934627652168274, + -0.024157093837857246, + -0.00394961005076766, + -0.00041737296851351857, + 0.015788499265909195, + -1.108939522964647e-05, + 0.015228874050080776, + -0.004401929676532745, + -0.04269970953464508, + -0.01364114135503769, + -0.0024971815291792154, + 0.02824135310947895, + -0.0031398190185427666, + -0.0033663539215922356, + 0.0019770802464336157, + 0.0004886650713160634, + 0.00472934078425169, + 0.010554692707955837, + 0.0047051869332790375, + 0.01934266835451126, + 0.005485373083502054, + 0.009105462580919266, + -0.01711905188858509, + 0.007189224008470774, + -0.005438867025077343, + 0.0067782592959702015, + -0.0346427857875824, + -0.004983891732990742, + 0.007754660677164793, + 0.008770833723247051, + -0.00494858343154192, + 0.008720913901925087, + -0.0022366121411323547, + 0.054517053067684174, + 0.005443524103611708, + -0.012440168298780918, + 0.007625422440469265, + -0.0005169917130842805, + 0.050635699182748795, + 0.00219725095666945, + -0.015755565837025642, + 0.004385816864669323, + -0.006642966531217098, + 0.01128412876278162, + -0.0038749545346945524, + -0.0017867679707705975, + -0.003435488324612379, + 0.028690651059150696, + 0.007021977566182613, + -0.006031387951225042, + 0.005619063042104244, + -0.004153725225478411, + -0.00302974134683609, + -0.015350663103163242, + 0.0065492186695337296, + -0.012358603999018669, + 0.001303158001974225, + 0.007065161596983671, + -0.024818312376737595, + -0.029864972457289696, + -0.015386234037578106, + 0.001986677059903741, + 0.027501920238137245, + 0.006325901951640844, + 0.005696170497685671, + 0.000250909011811018, + -0.005161323118954897, + 0.002290666801854968, + -0.007149355951696634, + 0.009140009060502052, + 0.004972638096660376, + 0.004478454124182463, + -0.001002974808216095, + 0.011749383062124252, + 0.00941255409270525, + 0.01180553063750267, + -0.016786418855190277, + -0.004095126409083605, + -0.018294086679816246, + -0.007624452002346516, + 0.004223186522722244, + -0.004739976022392511, + -0.001874388544820249, + -0.0409981943666935, + -0.014098289422690868, + -0.01288799662142992, + -0.019459139555692673, + 0.016751278191804886, + -0.017716174945235252, + -0.010903315618634224, + -0.0002263614587718621, + 0.007405977696180344, + -0.011588585563004017, + 0.019256267696619034, + -0.002608815673738718, + -0.026044286787509918, + 0.0034512244164943695, + 0.004151794593781233, + -0.010989280417561531, + 0.006744483020156622, + 0.009844881482422352, + -0.011653024703264236, + 0.005862488877028227, + 0.009897586889564991, + -0.001325934543274343, + -0.00794562790542841, + -0.005499581806361675, + 0.002773750340566039, + -0.02127741649746895, + -0.0019623329862952232, + 0.024862172082066536, + 0.00728083960711956, + -0.03362472355365753, + 0.012709399685263634, + 0.03260965645313263, + -0.00042629666859284043, + -0.0007771769887767732, + 0.012591177597641945, + 0.006875036749988794, + 0.01843556948006153, + 0.003082488663494587, + -0.0018871088977903128, + -0.0041535645723342896, + -0.00438337679952383, + -0.0010180121753364801, + 0.006497782189399004, + -0.001378999906592071, + -0.017603954300284386, + -0.0037497617304325104, + 0.006488247774541378, + 0.01147423405200243, + -0.007844868116080761, + -0.006211615167558193, + 0.005234678275883198, + 0.03574905917048454, + -0.008436156436800957, + -0.0035109096206724644, + -0.008667788468301296, + 0.004876305349171162, + -0.017682569101452827, + -0.009767957963049412, + 0.0013065513921901584, + 0.00011031060421373695, + -0.0002521576243452728, + 0.004182950593531132, + -0.0007366923382505774, + -0.007290246430784464, + 0.006165798753499985, + 0.017829252406954765, + -0.009960221126675606, + 0.006946898531168699, + -0.02517704665660858, + 0.011535758152604103, + -0.029706798493862152, + 0.00027521129231899977, + -0.00140833156183362, + -0.013807362876832485, + 0.01939162239432335, + 0.0067568435333669186, + -0.006612664088606834, + -0.00482727587223053, + 0.0011800284264609218, + 0.002703940263018012, + -0.0008301388588733971, + 0.014485500752925873, + 0.021166203543543816, + -0.000737332331482321, + -0.00992465578019619, + -0.01793689653277397, + 0.009314707480370998, + -0.004017386585474014, + 0.006055156234651804, + 0.004072013311088085, + 0.014808835461735725, + -0.010860045440495014, + 0.017232228070497513, + 0.0038885411340743303, + 0.0072439550422132015, + -0.003933530300855637, + 0.001037304988130927, + -0.014064026065170765, + -5.506071465788409e-05, + 0.0047845919616520405, + -0.0034529392141848803, + 0.008849289268255234, + -0.0010774490656331182, + 0.0061443946324288845, + 0.0063631488010287285, + 0.033551305532455444, + -0.00231839157640934, + -0.005525164771825075, + 0.016565412282943726, + 0.004214686341583729, + -0.005028110463172197, + -0.0208484698086977, + 0.0030961704906076193, + -0.00443548196926713, + 0.0015337351942434907, + -0.0014473311603069305, + 0.0019064174266532063, + -0.0007706358446739614, + -0.010370992124080658, + 0.019471032544970512, + -0.003348750527948141, + 0.009451569058001041, + -0.002743178280070424, + -0.015875499695539474, + -0.0025982402730733156, + -0.008050396107137203, + 0.010697750374674797, + -0.010631280019879341, + -0.02590920403599739, + -0.01527620479464531, + 0.008573455736041069, + 0.003384728217497468, + 0.0020532377529889345, + -0.015354307368397713, + 0.07810996472835541, + -0.013752195984125137, + 0.021797148510813713, + -0.003546719439327717, + 0.00019025908841285855, + -0.00861685536801815, + -0.008022372610867023, + -3.891279629897326e-05, + -0.015744607895612717, + -0.008389587514102459, + 0.009635867550969124, + 0.011265121400356293, + -0.005098540335893631, + -0.007309361826628447, + 0.003583610989153385, + 0.01411075983196497, + -0.005507662892341614, + -0.007577930111438036, + 0.00023355567827820778, + 0.009380040690302849, + 0.014244945719838142, + -0.0076566655188798904, + -0.0044554900377988815, + 0.0007113947067409754, + -0.0028770165517926216, + -0.014054722152650356, + -0.02035311795771122, + -0.020570984110236168, + -0.00027862819842994213, + -0.01360238902270794, + 0.007164840120822191, + 0.022095192223787308, + 0.010018042288720608, + 0.008366399444639683, + -0.03296675905585289, + 0.004350954666733742, + -0.0005651022074744105, + 0.00258928956463933, + -0.011435509659349918, + -0.02232097089290619, + 0.02194163016974926, + -0.0022107362747192383, + -0.015637574717402458, + -0.009627830237150192, + -0.010323233902454376, + -0.00024495701654814184, + 0.016347505152225494, + -0.016729053109884262, + -0.00393998809158802, + 0.013291235081851482, + -0.012251758947968483, + 0.005860254634171724, + 0.014683619141578674, + -0.006594030186533928, + -0.005720661953091621, + -0.005197202321141958, + -0.006611824035644531, + -0.024281736463308334, + 0.001370826386846602, + -0.0026329178363084793, + 0.016055148094892502, + -0.0036617564037442207, + 0.0028694344218820333, + -0.02643478475511074, + 0.009864448569715023, + -0.00029365569935180247, + -0.014638485386967659, + 0.007939551025629044, + 0.018148774281144142, + 0.0038824831135571003, + 0.006549300625920296, + -0.007863277569413185, + 0.006274421699345112, + -0.007907071150839329, + 0.010794807225465775, + 0.0001417544117430225, + 0.0018782521365210414, + 0.0002341523941140622, + 0.009602885693311691, + -0.026599779725074768, + 0.001858290983363986, + 0.003213256597518921, + 0.0073832059279084206, + 0.012406774796545506, + 0.0036179055459797382, + -0.00572856143116951, + -0.009060840122401714, + -0.0027874871157109737, + -0.007970491424202919, + 0.0020357395987957716, + 0.005117365159094334, + -0.025895729660987854, + 0.03603493049740791, + 0.005465388298034668, + -0.00633308757096529, + 0.01483782846480608, + 0.009995709173381329, + -0.0170453991740942, + -0.006330819800496101, + 0.015390608459711075, + -0.009602086618542671, + 0.011645812541246414, + 0.010790248401463032, + 0.006180014461278915, + 0.0067066410556435585, + -0.029753588140010834, + 0.02681131288409233, + 0.02466416358947754, + 0.00730938883498311, + -0.008403650484979153, + -0.016898365691304207, + -0.01685374788939953, + -0.0029722133185714483, + -0.04799400269985199, + 0.015976926311850548, + -0.020562784746289253, + 0.0030281939543783665, + 0.009392383508384228, + 0.014175308868288994, + -0.0017650709487497807, + 0.0071061453782022, + 0.0019915851298719645, + 0.009646585211157799, + -0.0023058762308210135, + 0.003851860761642456, + -0.01922914758324623, + -0.00917256809771061, + -0.008250950835645199, + -0.0058709969744086266, + -0.0004125468840356916, + -0.010660375468432903, + -0.006976958364248276, + 0.005409738048911095, + 0.0003108402597717941, + -0.008066913112998009, + 0.005895680747926235, + 0.017633704468607903, + 0.01782388798892498, + -0.022042997181415558, + 0.017923910170793533, + -0.022319305688142776, + 0.007066069636493921, + -0.0033122901804745197, + -0.011332476511597633, + -0.011996990069746971, + 0.011891770176589489, + 0.01434660516679287, + 0.010267960838973522, + 0.001166586996987462, + -0.00748026417568326, + -0.001165293506346643, + 0.0014421063242480159, + 0.025714626535773277, + 0.01799287647008896, + 0.008288764394819736, + -0.00967532116919756, + -0.0036703769583255053, + -0.02078574150800705, + -0.011368646286427975, + 0.007255337201058865, + 0.001954811392351985, + 0.007532323244959116, + -0.011052524670958519, + -0.0085065346211195, + 0.03401831537485123, + 0.007236079312860966, + -0.000966415274888277, + 0.008276167325675488, + 0.003755676792934537, + -0.01224503293633461, + 0.00484697287902236, + 0.006562691181898117, + -0.001033487031236291, + 0.021557241678237915, + -0.021638771519064903, + -0.001965632662177086, + 0.010335860773921013, + -0.002989354310557246, + -0.00374276889488101, + 0.00421206234022975, + -0.0007182353874668479, + 0.003975055180490017, + -0.005006938707083464, + -0.0078103067353367805, + 0.05073762312531471, + -0.006758008152246475, + 0.003401651978492737, + 0.00354378717020154, + 0.0070832036435604095, + -0.013777473010122776, + 0.0303290206938982, + 0.00865792017430067, + -0.025559445843100548, + 0.010826858691871166, + 0.0027388606686145067, + -0.02556738816201687, + 0.024983743205666542, + -0.010266739875078201, + -0.005188055336475372, + 0.033203136175870895, + -0.014626089483499527, + 0.0014385180547833443, + -0.0009114986751228571, + -0.011807930655777454, + -0.010726830922067165, + 0.005448951851576567, + 0.0016959182685241103, + -0.0029783237259835005, + -0.005677809938788414, + -0.013212515041232109, + 0.01633247174322605, + -0.008472251705825329, + -0.00406485004350543, + 0.009029584005475044, + -0.0006993477582000196, + 0.0021979615557938814, + -0.007384899538010359, + 0.010617716237902641, + -0.00535903824493289, + 0.00742261903360486, + -0.006449803244322538, + -0.00455252081155777, + 0.028231963515281677, + 0.0019460200564935803, + 0.006251865532249212, + -0.027151891961693764, + -0.00427316315472126, + -0.023915383964776993, + 0.013837049715220928, + -0.014993144199252129, + -0.0018191507551819086, + 0.010365714319050312, + 0.005957536865025759, + 0.005876112729310989, + 0.00937612820416689, + 0.0066420529037714005, + -0.004429618827998638, + 0.0067819394171237946, + 0.010994684882462025, + 0.019946971908211708, + -0.019718600437045097, + 0.007638942450284958, + 0.013276898302137852, + 0.019301900640130043, + -0.0010031991405412555, + -0.018527070060372353, + 0.014479153789579868, + -0.0018842146964743733, + -0.01464182510972023, + -0.002010630676522851, + -0.0019866940565407276, + -0.0032691536471247673, + 0.0006972895935177803, + 0.008279839530587196, + 0.004717839881777763, + 0.010906415991485119, + -0.006295325700193644, + -0.0581173449754715, + -0.01566735841333866, + 0.013705329969525337, + -0.00898866169154644, + 0.02600654773414135, + -0.026627836748957634, + -0.015031816437840462, + 0.017529433593153954, + -0.0004994279006496072, + 0.010866467840969563, + 0.011323019862174988, + -0.013529624789953232, + 0.02509428560733795, + -0.007309041917324066, + 0.006519991438835859, + -0.00024514031247235835, + -0.006885637994855642, + -0.0021112756803631783, + -0.015906205400824547, + 0.0153395626693964, + 0.016082976013422012, + 0.0006789290928281844, + -0.0014664174523204565, + -0.0004605713183991611, + 0.012494420632719994, + -0.021685216575860977, + 0.015573077835142612, + 0.0029774620197713375, + -0.025044681504368782, + 0.017190832644701004, + -0.006527256220579147, + -0.001292601926252246, + -0.011925905011594296, + 0.006632052827626467, + -0.00036380061646923423, + -0.0022292686626315117, + -0.00943693332374096, + 0.014462176710367203, + 0.001296967500820756, + -0.0038052622694522142, + 0.006280339322984219, + 0.015960006043314934, + -0.018988406285643578, + -0.019515765830874443, + -0.004724477883428335, + -0.009532776661217213, + -0.013481510803103447, + -0.0021915363613516092, + 0.0037772604264318943, + 0.01781483367085457, + -0.014493072405457497, + -0.0007233804208226502, + -0.007534426636993885, + -0.0029443721286952496, + 0.007938754744827747, + 0.00621316721662879, + 0.01692686229944229, + -0.004691054578870535, + 0.004384730011224747, + 0.015151023864746094, + 0.004046755377203226, + 0.004582501947879791, + 0.0031415163539350033, + 0.0018484564498066902, + 0.004366638604551554, + 0.005426356568932533, + -0.005747688468545675, + 0.06305012106895447, + -0.008300290443003178, + -0.007158536929637194, + -0.004728398285806179, + 0.008703113533556461, + -0.012351187877357006, + 0.007385525852441788, + -0.00743985828012228, + 0.012710674665868282, + -0.007718132808804512, + -0.006346060428768396, + -0.0015788552118465304, + 0.015700465068221092, + -0.013276302255690098, + -0.023906100541353226, + -0.006557180546224117, + -0.011629757471382618, + -0.011931471526622772, + 0.004495349712669849, + 0.007150814402848482, + -0.009305495768785477, + 0.00649539940059185, + -0.006039153318852186, + -6.189182749949396e-05, + 0.007698690984398127, + -0.037609394639730453, + 0.010974298231303692, + 0.012206247076392174, + -0.002449566964060068, + 0.01682870276272297, + -0.003923733253031969, + -0.0037260225508362055, + -0.005298267118632793, + 0.014323333278298378, + -0.01980488933622837, + 0.03132821246981621, + -0.0031777098774909973, + 0.0012524838093668222, + 0.004774267785251141, + 0.017041627317667007, + -0.006572175770998001, + -0.007430725730955601, + 0.005779410246759653, + 0.0010309512726962566, + 0.012415336444973946, + -0.010550487786531448, + -0.0008960970444604754, + 0.04655403271317482, + 0.005243248306214809, + -0.014610977843403816, + -0.005516707897186279, + -0.006929396651685238, + 0.006232811603695154, + 0.03922618553042412, + -0.011343436315655708, + -0.017999285832047462, + -0.003469795687124133, + -0.005173420067876577, + -0.013009542599320412, + -0.01835719309747219, + 0.0007387892110273242, + 0.008651833981275558, + -0.015386246144771576, + 0.0004184153804089874, + -0.003843854647129774, + -0.0015774392522871494, + 0.013532130047678947, + -0.001078374800272286, + 0.008126823231577873, + -0.008508246392011642, + 0.002985980361700058, + 0.02623569592833519, + 0.003918954636901617, + 0.006309908349066973, + 0.0028010327368974686, + 0.014834647066891193, + 0.005790164228528738, + -0.0062273177318274975, + -0.014840617775917053, + -0.007251518778502941, + 0.008380159735679626, + -0.005063353106379509, + 0.011395764537155628, + 0.003908869810402393, + -0.01344381645321846, + 0.0002706647792365402, + 0.010724203661084175, + -0.006621338427066803, + 0.008094646967947483, + -0.015235495753586292, + 0.016031913459300995, + 0.0005834841867908835, + 0.0016602210234850645, + -0.0016375365667045116, + 0.0004135197668801993, + 0.002308460883796215, + 0.0016865774523466825, + -0.000756952038500458, + 0.016776783391833305, + 0.03320331126451492, + -0.002731040585786104, + 0.001603507436811924, + -0.009883967228233814, + 0.0012713450705632567, + 0.018925493583083153, + -0.011942928656935692, + -0.028707824647426605, + -0.008274100720882416, + -0.011035856790840626, + -0.008357144892215729, + -0.0028260124381631613, + -0.06881920248270035, + -0.0026817074976861477, + -0.026137545704841614, + 0.005030698608607054, + -0.000593930424656719, + 0.0010770701337605715, + -0.022680364549160004, + 0.013019859790802002, + -0.011141102761030197, + 0.0069023496471345425, + -0.010401715524494648, + -0.017223617061972618, + -0.0016754289390519261, + -0.013637976720929146, + -0.023765288293361664, + 0.01937619037926197, + 0.012778297066688538, + -0.00818764790892601, + -0.009454714134335518, + -0.0015345695428550243, + 0.029407646507024765, + -0.005379702430218458, + 0.002861133310943842, + 0.008764365687966347, + -0.0022067460231482983, + 0.04293984919786453, + -0.003303940175101161, + -0.0036267517134547234, + 0.004951725713908672, + -0.0016866225050762296, + 0.01401526015251875, + 0.0036266129463911057, + -0.003996358253061771, + 0.006494144443422556, + 0.006857672706246376, + 0.007407444529235363, + -0.008844410069286823, + -0.0225200392305851, + -0.0008430237066932023, + -0.004462873097509146, + 0.01471176277846098, + 0.0008252314291894436, + -0.002203243086114526, + 0.00017466802091803402, + 0.028640851378440857, + -0.010749652981758118, + -0.004598503932356834, + -0.01306148525327444, + 0.020686576142907143, + -0.004779801703989506, + 0.00929802842438221, + -0.01227305643260479, + -0.01826157607138157, + 0.003847370622679591, + -0.021541818976402283, + -0.0008367954287678003, + -0.024913568049669266, + -0.008201416581869125, + -0.006162658333778381, + -0.03940754383802414, + -0.018385183066129684, + 0.009704988449811935, + 0.010649928823113441, + -0.016205132007598877, + -0.0001704392780084163, + 0.002731659449636936, + -0.011805805377662182, + -0.0027969121001660824, + 0.0038294338155537844, + -0.014570721425116062, + -0.004732975736260414, + 0.003770292503759265, + 0.009702056646347046, + -0.008282698690891266, + 0.0031250864267349243, + -0.02357197180390358, + -0.009767921641469002, + 0.005864525679498911, + -0.01101693045347929, + 0.007721268571913242, + 0.018509970977902412, + -0.0056508504785597324, + 0.003588747465983033, + -0.023407308384776115, + 0.006273146718740463, + 0.0017511581536382437, + -0.007030950393527746, + -0.01003459095954895, + 0.00044906247057951987, + 0.0010437238961458206, + -0.007248615846037865, + -0.005645743105560541, + 0.014214613474905491, + 0.002893852535635233, + 0.004749954678118229, + 0.013866676948964596, + -0.0015789300668984652, + -0.0014902993571013212, + -0.030550777912139893, + 0.005352330859750509, + 0.010826637037098408, + -0.0013082927325740457, + 0.0052697136998176575, + -0.01577143929898739, + -0.00023626192705705762, + -0.0061386204324662685, + 7.937185000628233e-05, + 0.0074877506121993065, + -0.0029580567497760057, + 0.010671703144907951, + -0.003212894778698683, + 0.009452967904508114, + 0.01975684054195881, + 0.004057180602103472, + -0.01573958434164524, + 0.0187594722956419, + -0.019177118316292763, + 0.007516805082559586, + -0.006899998523294926, + -0.008723625913262367, + -0.007221756037324667, + -0.013463116250932217, + 0.012329732067883015, + 0.02379990555346012, + 0.006683043669909239, + -0.01890767365694046, + -0.004937468096613884, + 0.010958430357277393, + -0.003841508412733674, + -0.010277766734361649, + 0.04258614033460617, + -0.023333346471190453, + -0.0038250668440014124, + -0.0042248680256307125, + -0.00802276935428381, + 0.0026011241134256124, + 0.009382934309542179, + 0.012395878322422504, + 0.0003608427650760859, + -0.0003983408969361335, + -0.014096013270318508, + 0.014377825893461704, + -0.05010078847408295, + 0.005372193641960621, + 0.002090282505378127, + 0.00709745567291975, + 0.0152174923568964, + 0.02240457944571972, + 0.014668021351099014, + 0.0023412653245031834, + 0.019818268716335297, + 0.003997910302132368, + -0.005017233081161976, + -0.011576487682759762, + -0.00037200626684352756, + -0.014109830372035503, + -0.013190289959311485, + 0.020943230018019676, + -0.008464197628200054, + -0.007011245004832745, + -0.03554268926382065, + -0.0117281349375844, + 0.023762736469507217, + -0.01208469644188881, + 0.005014484748244286, + 0.003749222494661808, + -0.00189745775423944, + -0.011204901151359081, + -0.018094835802912712, + 0.006978597026318312, + -0.0015833796933293343, + -0.007840491831302643, + -0.012598137371242046, + -0.0023435463663190603, + -0.0051875547505915165, + -0.03673451021313667, + 0.017726080492138863, + -0.0057186828926205635, + -0.012833322398364544, + 0.007779263891279697, + 0.0008673369302414358, + 0.0004611280164681375, + 0.0030230889096856117, + -0.01825069636106491, + -0.027979401871562004, + -0.0015599034959450364, + 0.00020622789452318102, + -0.00034989547566510737, + 0.007720536552369595, + 0.005157319828867912, + 0.0029681988526135683, + 0.0015803722199052572, + -0.003941318951547146, + -0.0026174967642873526, + 0.002906234236434102, + 0.006017028354108334, + 0.0026363623328506947, + 0.007003063336014748, + -0.0008522651041857898, + 0.0013798802392557263, + -0.027905385941267014, + 0.012390903197228909, + -0.0005208543152548373, + -0.0004348676302470267, + 0.0034239161759614944, + -0.006883727386593819, + -0.006691585294902325, + 0.0027872014325112104, + 0.009845143184065819, + 0.0024809136521071196, + -0.0005560743156820536, + 0.007111800834536552, + -0.008656607940793037, + 0.012715269811451435, + -0.004840061068534851, + 0.006242081988602877, + -0.0019433248089626431, + 0.004377959296107292, + 0.0003695786581374705, + 0.004545609001070261, + 0.0021520419977605343, + -0.001564624486491084, + 0.005916419439017773, + 0.010461964644491673, + 0.0041190944612026215, + -0.0042860060930252075, + -0.008902168832719326, + 0.048597805202007294, + 0.00290908245369792, + -0.0011774071026593447, + 0.015764158219099045, + -0.007426997181028128, + 0.0020504705607891083, + -0.014562409371137619, + -0.014538426883518696, + -0.009753461927175522, + 0.01003477443009615, + -0.010462414473295212, + -0.0007126066484488547, + 9.599253826308995e-05, + -0.012556896544992924, + 0.00236444640904665, + -0.0023098124656826258, + 0.010857360437512398, + 0.02198641560971737, + -0.003700551576912403, + 0.005287523847073317, + -0.002059916965663433, + -0.002221150090917945, + 0.005432256497442722, + 0.0008142460719682276, + -0.007635524030774832, + 0.03232469782233238, + -0.008336744271218777, + -0.004311527591198683, + 0.006967606488615274, + -0.0027057062834501266, + -0.005083663854748011, + -0.00430115032941103, + 0.014342029578983784, + -0.0039871083572506905, + -0.016665121540427208, + -0.016227073967456818, + -0.005191376898437738, + -0.018881959840655327, + -0.03066568449139595, + 0.014845333993434906, + -0.013629722408950329, + 0.012701774947345257, + 0.026630422100424767, + 0.01043572835624218, + 0.00827037449926138, + 0.002883884822949767, + -0.003657091408967972, + 0.002525361953303218, + -0.002176424954086542, + 0.0016337031265720725, + -0.007118419744074345, + 0.010156451724469662, + -0.010678690858185291, + -0.0015224342932924628, + 0.005574322305619717, + 0.018290840089321136, + -0.002147073857486248, + -0.027036838233470917, + 0.00022703406284563243, + -0.010230522602796555, + -0.020266307517886162, + 0.008725488558411598, + 0.011506094597280025, + 0.0008439617813564837, + -0.019440650939941406, + 0.0021814738865941763, + -0.003975952975451946, + -0.003025009762495756, + -0.02496718056499958, + 0.0013802136527374387, + -0.03403645008802414, + -0.008664729073643684, + 0.014864923432469368, + -0.014248690567910671, + -0.012225518934428692, + -0.0058189393021166325, + 0.0028227390721440315, + -0.02995148114860058, + 0.0011696935398504138, + 0.01585794799029827, + 0.018361927941441536, + -0.011520354077219963, + 0.012073742225766182, + 0.007169872522354126, + -0.010574552230536938, + -0.004508211277425289, + -0.0036562185268849134, + -0.023547761142253876, + 0.008269761689007282, + 0.008785337209701538, + 0.003731118980795145, + 0.007504124194383621, + 0.013968807645142078, + 0.0280152577906847, + -0.007103904150426388, + -0.013782260939478874, + 0.0010639295214787126, + 0.0071867345832288265, + 0.02073359116911888, + -0.016939381137490273, + 0.013271914795041084, + 0.014541580341756344, + -0.008920673280954361, + -0.0032114002387970686, + 0.010570663027465343, + -0.001500969287008047, + -0.009259498678147793, + -6.0845759435324e-05, + -0.0007535319309681654, + 0.0071226488798856735, + 0.007184877526015043, + -0.004035844001919031, + -0.0009710490121506155, + -0.009577610529959202, + -0.006151150446385145, + 0.004510140512138605, + 0.00568736856803298, + 0.03794505447149277, + 0.025751816108822823, + -0.01315137930214405, + 0.012118274345993996, + 0.008873632177710533, + 0.0100230872631073, + -0.0011623760219663382, + 0.001776656019501388, + 0.002800289774313569, + -0.011582881212234497, + -0.009497326798737049, + -0.008129600435495377, + -0.00043464370537549257, + -0.010129882954061031, + -0.010572251863777637, + 0.004093135241419077, + -0.01039839070290327, + 0.0178541149944067, + -0.03088933229446411, + 0.004170152358710766, + 0.010271362960338593, + -0.0031263467390090227, + -0.011230426840484142, + -0.0013697082176804543, + 0.0129054831340909, + -0.01776697486639023, + 0.020695459097623825, + 0.008011781610548496, + -0.006351467687636614, + 0.004358359612524509, + 0.008991246111690998, + 0.00013310357462614775, + -0.006293696351349354, + 0.017465954646468163, + 0.034720681607723236, + -0.0010210556210950017, + -0.00023773140856064856, + 0.002055670600384474, + 0.006855746265500784, + 0.003761137370020151, + 0.016333047300577164, + 0.0001713815436232835, + 0.009787162765860558, + 0.00745043670758605, + 0.023624585941433907, + -0.009937000460922718, + 0.018128776922822, + -0.0232937503606081, + 0.0036883477587252855, + -0.013600523583590984, + 0.0033770003356039524, + -0.006960800848901272, + -0.009688841179013252, + 0.010261093266308308, + 0.012325981631875038, + -0.003024609060958028, + 0.008258278481662273, + -0.014134269207715988, + -0.018546387553215027, + 0.014821648597717285, + 0.023241914808750153, + 0.009646555408835411, + -0.003075413638725877, + 0.012779360637068748, + -0.006102806888520718, + 0.01114700734615326, + -0.017385665327310562, + 0.0033291997388005257, + -0.008313830010592937, + 0.013548608869314194, + 0.0034515229053795338, + -0.005770779214799404, + 0.0005707288510166109, + -0.012692835181951523, + 0.011139202862977982, + -0.02088434435427189, + -0.009407800622284412, + 9.804384899325669e-05, + 0.0030881997663527727, + -0.01547426450997591, + 0.013975461944937706, + 0.002721362514421344, + 0.012145761400461197, + 0.009721418842673302, + 0.005475987680256367, + -0.007843037135899067, + -0.015433849766850471, + 0.0048813545145094395, + -0.02129485085606575, + -0.01925443671643734, + -0.030468406155705452, + 0.014113308861851692, + 0.006837745197117329, + 0.03885858133435249, + 0.005648639984428883, + 0.0024627498351037502, + 0.011758552864193916, + -0.009833130054175854, + 0.0017432022141292691, + 0.01846114732325077, + -0.012404567562043667, + 0.000212453116546385, + -0.0002634562843013555, + 0.0031215769704431295, + 0.003895181929692626, + -0.0016869624378159642, + 0.020127099007368088, + -0.005720446817576885, + 0.013125970959663391, + -0.033879730850458145, + -0.012077653780579567, + 0.023736819624900818, + -0.02487044408917427, + 0.008193549700081348, + 0.0008884701528586447, + -0.002929517300799489, + -0.015958312898874283, + 0.0025256644003093243, + 0.01814604550600052, + -0.046248435974121094, + -0.004143258091062307, + 0.0020486521534621716, + -0.0028297104872763157, + 0.00882602110505104, + -0.002218599198386073, + -0.00943038146942854, + -0.012602883391082287, + 0.02664593607187271, + -0.005803109612315893, + -0.007938163354992867, + -0.01140069030225277, + -0.012010089121758938, + -0.004948675166815519, + 0.014466796070337296, + 0.017206493765115738, + 0.011586849577724934, + -0.012087633833289146, + -0.02421744540333748, + -0.008654465898871422, + -0.013462603092193604, + 0.011486157774925232, + -0.0013223402202129364, + 0.0015426812460646033, + -0.0049476586282253265, + -0.0057536703534424305, + -0.009076952002942562, + 0.009942925535142422, + -0.003484015353024006, + -0.016216998919844627, + -0.010168605484068394, + 0.007911857217550278, + -0.005912289954721928, + 0.009893395937979221, + 0.014212309382855892, + 0.0016373121179640293, + -0.006818357389420271, + 0.010053256526589394, + 0.00352649693377316, + -0.00489886524155736, + -0.0011108805192634463, + -0.008389515802264214, + 0.005319698713719845, + -0.00219100178219378, + -0.004143995698541403, + 0.011459628120064735, + -0.007979115471243858, + -0.002897492842748761, + -0.014921567402780056, + 0.00038925014086999, + -0.002635709475725889, + 0.007194053381681442, + 0.004283427726477385, + 0.006014323327690363, + 0.0031511427368968725, + 0.009706243872642517, + 0.008727839216589928, + 0.0023325018119066954, + -0.001276420778594911, + 0.03082381747663021, + -0.00041387518285773695, + -0.013067152351140976, + -0.0004004641086794436, + 0.018129564821720123, + -0.014504744671285152, + -0.02010558545589447, + 0.0038417496252804995, + -0.0007281916332431138, + -0.015725644305348396, + 0.001288787228986621, + -0.015040462836623192, + -0.015474680811166763, + 0.0008843917166814208, + -0.012628567405045033, + 0.01777050271630287, + -0.0001335765846306458, + 0.011746377684175968, + 0.021088559180498123, + 0.01589093916118145, + -0.008247735910117626, + -0.008396859280765057, + -0.002246845979243517, + 0.00791319739073515, + -0.00011504302528919652, + 0.012142769992351532, + -0.0067022573202848434, + -0.00047935161273926497, + -0.027304023504257202, + 0.009914948605000973, + 0.02106110379099846, + 0.005173597950488329, + -0.005501722916960716, + 0.026575088500976562, + -0.010570080950856209, + 0.004778075497597456, + 0.003373175160959363, + -0.01087422575801611, + 0.002430189633741975, + 0.0009197587496601045, + 0.018950020894408226, + -0.008251236751675606, + -0.0016751923831179738, + 0.014339261688292027, + -0.0014146985486149788, + 0.003206981811672449, + 0.015994086861610413, + 0.016089048236608505, + 0.0155401062220335, + 0.005974882282316685, + 0.019542191177606583, + 0.00044368303497321904, + -0.002778073074296117, + 0.010100554674863815, + -0.0036608208902180195, + 0.008567585609853268, + 0.02237676829099655, + 0.0010281456634402275, + 0.002232773695141077, + -0.010502674616873264, + 0.00045618394506163895, + -0.023598341271281242, + -0.0042241825722157955, + 0.01528596505522728, + -0.031455542892217636, + 6.835544627392665e-05, + -0.0090279970318079, + 0.010999144054949284, + -0.0085138576105237, + -0.0007090718136169016, + 0.0029183360747992992, + -0.0047910576686263084, + 0.0006586794042959809, + 0.002621252788230777, + -0.006676568649709225, + 0.0021288967691361904, + 0.0019967739935964346, + -0.005977231543511152, + 0.002603803528472781, + 0.0021240985952317715, + -0.01459683571010828, + -0.005403164774179459, + -0.0025057538878172636, + -0.007731019984930754, + -0.015363452956080437, + 5.332316140993498e-05, + -0.011033520102500916, + 0.0037838569842278957, + 0.0031315742526203394, + 0.02271685190498829, + 0.0046455468982458115, + 0.011428712867200375, + -0.010326961986720562, + -0.0038590040057897568, + -0.0050865355879068375, + 0.007492550183087587, + -0.013271425850689411, + 0.009907145984470844, + 0.014608181081712246, + 0.002955448115244508, + 0.006124615669250488, + -0.014409296214580536, + -0.008839210495352745, + -0.025464216247200966, + 0.007426440250128508, + -0.011167078278958797, + 0.0048673199489712715, + 0.006418885663151741, + -0.0033382270485162735, + -0.0026318212039768696, + -0.00940571166574955, + -0.008107015863060951, + -0.004968383815139532, + 0.009102053940296173, + -0.004967597313225269, + 0.012353235855698586, + -0.00171157147269696, + 0.005286942236125469, + -0.007511022035032511, + 0.008661163039505482, + -0.012793664820492268, + -0.00738841388374567, + -0.020188305526971817, + 0.014457765966653824, + -0.004760548938065767, + 0.013418591581285, + 0.0027579371817409992, + 0.0084692956879735, + -0.009790885262191296, + 0.0015881704166531563, + -0.007045703940093517, + -0.006830349564552307, + -0.00744258938357234, + -0.006158356089144945, + 0.014467993751168251, + 0.005382925737649202, + 0.006010386161506176, + -0.012275844812393188, + -0.0007569980225525796, + -0.002465961268171668, + 0.01093147974461317, + -0.010844029486179352, + -0.005856627132743597, + -0.0031308026518672705, + 0.0077718161046504974, + -0.008686133660376072, + 0.0024292387533932924, + 0.03169383853673935, + 0.0013656722148880363, + 0.00847315788269043, + 0.000791888334788382, + 0.001619809539988637, + -0.013722469098865986, + -0.019492989405989647, + 0.012933005578815937, + -0.004965861327946186, + 0.023649008944630623, + 0.003104296512901783, + -0.009156065993010998, + -0.005765043664723635, + 0.0007042501238174736, + 0.007479163818061352, + 0.01659592241048813, + 0.01258805487304926, + 0.011905016377568245, + 0.019975753501057625, + -0.0005771328578703105, + 0.012045323848724365, + 0.015743354335427284, + -0.00020508069428615272, + -0.007819273509085178, + -0.0030908139888197184, + -0.000576793507207185, + 0.010959929786622524, + 0.005449959542602301, + 0.005090774968266487, + -0.0006828781333751976, + -0.0017132670618593693, + -0.0028748931363224983, + 0.0008907034643925726, + 0.012634913437068462, + -0.013637135736644268, + -0.008216733112931252, + -0.010417845100164413, + 0.016661155968904495, + -0.0072336154989898205, + 0.016756799072027206, + -0.031133335083723068, + 0.011812601238489151, + -0.008413216099143028, + -0.005740245338529348, + 0.00978480838239193, + 0.0017774298321455717, + -0.004456781782209873, + -0.002683111699298024, + -0.015232088975608349, + 0.01303790882229805, + -0.0033595107961446047, + -0.003999049309641123, + 0.013065285049378872, + -0.005323980003595352, + -0.000744139077141881, + 0.014129162766039371, + 0.0036559889558702707, + -0.005385632161051035, + 0.002773504937067628, + -0.013712451793253422, + -0.027732649818062782, + -0.03787126764655113, + 0.00835232064127922, + -0.007389536127448082, + 0.017761623486876488, + 0.0002296955353813246, + 0.014840977266430855, + 0.004533682484179735, + -0.001019626040942967, + 0.0029935725033283234, + -0.011396592482924461, + -0.01244534645229578, + 0.0003265608102083206, + 0.00964108482003212, + -0.018413836136460304, + 0.006174793466925621, + 0.005734443664550781, + -0.00035627803299576044, + -0.02213800512254238, + 0.036280032247304916, + 0.0069223265163600445, + 0.009887846186757088, + 0.0013461116468533874, + 0.0075163459405303, + -0.0104179373010993, + 0.006887771654874086, + -0.005173271056264639, + -0.004342224914580584, + 0.010637020692229271, + -0.02453201450407505, + 0.010161265730857849, + 0.008115947246551514, + 0.01789155788719654, + 0.014598497189581394, + 0.013843505643308163, + -0.0004247499455232173, + 0.00729819992557168, + 0.019031314179301262, + 0.017865819856524467, + -0.0014440723462030292, + -0.004014174919575453, + 0.0036100195720791817, + 0.006941530387848616, + -0.00800453033298254, + -0.0013828491792082787, + -0.0022730056662112474, + -0.009113910607993603, + 0.009199924767017365, + 0.004977500531822443, + -0.0008504564175382257, + -0.004935143049806356, + 0.005005967803299427, + 0.03111002780497074, + 0.008719215169548988, + -0.0012224201345816255, + 0.0012390563497319818, + 0.0246390700340271, + -0.042204488068819046, + 0.01056948583573103, + -0.0009295943309552968, + 0.011342482641339302, + 0.006158413365483284, + 0.012250246480107307, + 0.01875537633895874, + 0.013212827034294605, + 0.018279850482940674, + 0.004611071199178696, + 0.033403050154447556, + 0.0004374709096737206, + -0.018821395933628082, + -0.005514934659004211, + -0.0021590807009488344, + -0.009634722024202347, + 0.003710502292960882, + -0.009651612490415573, + -0.00554442685097456, + -0.003201512387022376, + 0.02080806903541088, + 0.013289675116539001, + 0.011076843366026878, + -0.0355151891708374, + -0.006388929206877947, + 0.010010463185608387, + 0.005303137470036745, + -0.004402791149914265, + 0.008290043100714684, + -0.026771405711770058, + -0.013604406267404556, + 0.006531294900923967, + 0.017064658924937248, + -0.003883455879986286, + 0.006380476523190737, + 0.005560262128710747, + 0.0051342397928237915, + -0.008225517347455025, + 0.013817278668284416, + -0.00538376672193408, + 0.011194825172424316, + 0.01765306107699871, + 0.005429217126220465, + -0.04006923362612724, + 0.00019251389312557876, + 0.011122495867311954, + 0.00017773067520465702, + 0.008311082608997822, + 0.01412404514849186, + 0.004211727995425463, + 0.008500795811414719, + -0.00947557669132948, + -0.022363172844052315, + 0.002977658761665225, + 0.006047646049410105, + -0.013107160106301308, + -0.0065325601026415825, + -0.016145028173923492, + 0.016510585322976112, + -0.04656141996383667, + 0.005577023606747389, + -0.00919910054653883, + -0.007211202755570412, + -0.012298951856791973, + -0.023861195892095566, + 0.05368819087743759, + -0.00046699316590093076, + -0.0027273113373667, + -0.008259203284978867, + 0.012307713739573956, + 0.042193539440631866, + 0.014854774810373783, + 0.0015723658725619316, + 0.006030558608472347, + 0.014479318633675575, + -0.006010556593537331, + 0.007828823290765285, + -0.0010831911349669099, + 0.010530325584113598, + -0.002095981501042843, + 0.004787219688296318, + -0.004713622387498617, + 0.01437458023428917, + -0.0016375335399061441, + -0.00466086296364665, + -0.006582734640687704, + 7.11260800017044e-05, + 0.019756559282541275, + 0.0036798559594899416, + 0.0001458850601920858, + 0.0036999410949647427, + 0.009133505634963512, + 0.01487777754664421, + 0.010606457479298115, + -0.00646215071901679, + -0.0018796146614477038, + -0.0023041553795337677, + 0.012498700059950352, + 0.0027634501457214355, + -0.003969781566411257, + 0.010701837949454784, + 0.0074175079353153706, + -0.008889986202120781, + 0.003336649853736162, + 0.015421926975250244, + 0.0077111260034143925, + 0.009055225178599358, + 0.002145721111446619, + -0.005668866913765669, + 0.0017537084640935063, + 0.0058372486382722855, + -0.019558150321245193, + 0.00476151192560792, + -0.007025667000561953, + -0.0033419113606214523, + -0.003898070426657796, + 0.016109799966216087, + 0.011416854336857796, + -0.004056272096931934, + -0.01523798517882824, + -0.0040057641454041, + -0.005366581492125988, + 0.005585896782577038, + -0.0016173134790733457, + -0.0031433894764631987, + 0.006692851427942514, + 0.000933291797991842, + -0.018639830872416496, + 0.018904322758316994, + 0.02235671691596508, + 0.019372889772057533, + 0.002562542213127017, + 0.007778061553835869, + 0.0090788584202528, + 0.0031012743711471558, + 0.0027422686107456684, + -0.01276303082704544, + -0.004219364374876022, + 0.014026321470737457, + -0.01085622888058424, + 0.005849315784871578, + 0.00507343327626586, + -0.00021750143787357956, + -0.006628153380006552, + -0.004453497007489204, + -0.002960268408060074, + -0.003091993974521756, + -3.39334765158128e-05, + -0.010948867537081242, + 0.0026573410723358393, + 0.00042678695172071457, + 0.024568039923906326, + -0.004783795215189457, + 0.004962720442563295, + 0.01510708499699831, + -0.006923602428287268, + -0.0029023545794188976, + 0.02185712940990925, + -0.0180781502276659, + -0.0021839155815541744, + 0.010348241776227951, + 0.00869474746286869, + -0.02395002916455269, + -0.005426069721579552, + 0.0009091253741644323, + 0.0072087133303284645, + 0.01225342694669962, + 0.018802931532263756, + 0.002690900582820177, + -0.0004319935105741024, + -0.0011998915579169989, + -0.001087126205675304, + 0.020647183060646057, + -0.00017058367666322738, + -0.009083865210413933, + 0.005986855365335941, + 0.013676290400326252, + -0.0016143524553626776, + -0.0004268795601092279, + -0.003807902103289962, + -0.0014132148353382945, + 0.010769129730761051, + -0.009909857995808125, + -0.006445510778576136, + -0.027559706941246986, + -0.010246138088405132, + 0.010776486247777939, + -0.015779972076416016, + 0.0019124752143397927, + -0.00843009538948536, + 0.00531103415414691, + -0.006555952597409487, + -0.015062139369547367, + 0.014076855033636093, + 0.00629726005718112, + 0.00139439117629081, + 0.016602128744125366, + -0.010723855346441269, + 0.0003088233934249729, + 0.006925743073225021, + 0.0017893561162054539, + 0.0010176228825002909, + 0.003955316264182329, + 0.0063776373863220215, + 0.004252003505825996, + 0.011430345475673676, + 0.016621626913547516, + -0.002619279082864523, + 0.0009935474954545498, + -0.01539361011236906, + -0.01117754727602005, + 0.08124401420354843, + -0.005012823268771172, + -0.00679137883707881, + 0.01580815203487873, + -0.0019833315163850784, + 0.04571450874209404, + -0.01794450730085373, + 7.333275425480679e-05, + 0.015729038044810295, + -0.008249283768236637, + 0.003077405272051692, + 0.0078020174987614155, + -0.00845522340387106, + 0.018779104575514793, + -0.02123774215579033, + 0.0020929723978042603, + -0.019414149224758148, + 0.0534871406853199, + -0.013795871287584305, + -0.007279970217496157, + 0.000235426050494425, + -0.01951795071363449, + -0.007230945862829685, + 0.009268575347959995, + -0.005457538180053234, + 0.015405463986098766, + 0.023228434845805168, + -0.03395450487732887, + 0.0023038904182612896, + 0.0019860228057950735, + 0.008066241629421711, + 0.010595823638141155, + -0.0009968928061425686, + 0.025473566725850105, + 0.010860379785299301, + 0.00022055114095564932, + -0.013397558592259884, + 4.819244350073859e-05, + 0.022446898743510246, + -0.0018892260268330574, + 0.004592331126332283, + -0.010209038853645325, + -0.0027177217416465282, + 0.00010455876326886937, + -0.0009454656392335892, + -0.020564954727888107, + -0.011963062919676304, + 0.014818606898188591, + -0.011531046591699123, + 0.010122598148882389, + -0.01278042234480381, + 0.006700543686747551, + -0.008697655983269215, + -0.0017938842065632343, + 0.006014600861817598, + -0.003262963378801942, + -0.0029138943646103144, + -0.0014596279943361878, + 0.0020580929704010487, + -0.01129673421382904, + -0.01360382605344057, + 0.004418862517923117, + -0.002272967714816332, + -0.013713076710700989, + -0.009615788236260414, + -0.007454128935933113, + -0.0006064733024686575, + 0.00795968621969223, + -0.009668579325079918, + 0.006430217996239662, + -0.031528834253549576, + -0.0016912524588406086, + -0.0014177823904901743, + -0.024107489734888077, + 0.04402128979563713, + -0.011175005696713924, + -0.007322610355913639, + -0.0017007032874971628, + -0.006691938731819391, + -0.014202503487467766, + 0.015054012648761272, + -0.013914098963141441, + 6.675995973637328e-05, + -0.0004539986839517951, + -0.002280560089275241, + 0.0182444266974926, + 0.0035851169377565384, + -0.0001422164641553536, + -0.011190319433808327, + -0.031222613528370857, + -0.006163864396512508, + 0.0008212659158743918, + -0.011130905710160732, + 0.011869125068187714, + 0.01082063838839531, + 0.006684458814561367, + -0.01599453203380108, + 0.02265329472720623, + 0.0025900541804730892, + -0.0002479849208611995, + 0.0038875616155564785, + -0.0018895181128755212, + -0.005971373058855534, + 0.014018294401466846, + 0.01165454089641571, + -0.009397045709192753, + 0.011669396422803402, + -0.002856732811778784, + -0.0018898689886555076, + -0.0023081698454916477, + -0.015790848061442375, + -0.03312520310282707, + 0.02336185611784458, + 0.027063697576522827, + -0.00799457635730505, + -0.01331815030425787, + -0.007637414149940014, + 0.004724729340523481, + 0.0037457821890711784, + 0.018496474251151085, + 0.016974052414298058, + 0.005189718212932348, + 0.0142852533608675, + -0.0009108562371693552, + 0.004410566762089729, + 0.00948504637926817, + 0.02010914869606495, + -0.018893297761678696, + 0.006440309341996908, + -0.0104019520804286, + 0.009974734857678413, + -0.0071517894975841045, + 0.009359154850244522, + 0.010480042546987534, + -0.008504421450197697, + -0.01706455834209919, + -0.009639613330364227, + -0.008815715089440346, + 0.013399242423474789, + -0.014914718456566334, + -0.0015107470098882914, + -0.00098983698990196, + -0.004401209764182568, + -0.02203207090497017, + -0.0023955246433615685, + 0.006598133128136396, + -0.02017234079539776, + -0.030182864516973495, + 0.0003318005765322596, + -0.006965063512325287, + 0.012503543868660927, + -0.007748712319880724, + -0.009525093249976635, + 0.009525197558104992, + -0.0004802280163858086, + 0.0015453482046723366, + -0.008259749971330166, + -0.00016992782184388489, + 0.021093428134918213, + -0.0046725585125386715, + -0.0028504161164164543, + -5.555237294174731e-05, + -0.0032930681481957436, + -0.0002869443269446492, + -0.007773506920784712, + -0.0050848377868533134, + 0.007145474199205637, + 0.004901260137557983, + 0.011592481285333633, + 0.009508808143436909, + -0.0012430065544322133, + -0.004486449062824249, + 0.0022781917359679937, + 0.004730351734906435, + 0.01563415303826332, + -0.008536860346794128, + 0.015229820273816586, + -0.0002604372857604176, + 0.02783799357712269, + 0.014507990330457687, + 0.007261376362293959, + 0.0014615370891988277, + 0.009987302124500275, + 0.012994751334190369, + -0.014379586093127728, + -0.01622712053358555, + -0.011762460693717003, + 0.005831305868923664, + -0.0009124262141995132, + -0.011192269623279572, + -0.005255655385553837, + -0.0014138257829472423, + -0.0019624694250524044, + 0.0008960071136243641, + -0.011166389100253582, + -0.006100625731050968, + -0.005182921886444092, + -0.0008327622781507671, + -0.004188503138720989, + 0.002894417382776737, + -0.007523374632000923, + 0.008684650994837284, + 0.0005714797298423946, + -0.012484201230108738, + 0.0029887405689805746, + 0.011309219524264336, + 0.0021514026448130608, + 0.0017486127326264977, + 0.027185361832380295, + 0.003177159233018756, + 0.01099690143018961, + -0.016672328114509583, + -0.01891857013106346, + -0.011365467682480812, + -0.016206275671720505, + -0.006543883588165045, + -0.009634421207010746, + 0.013370498083531857, + 0.03850129619240761, + 0.039885956794023514, + -0.009486756287515163, + 0.01716616190969944, + -0.001536278403364122, + 0.03382537513971329, + 0.003554306458681822, + -0.0011702352203428745, + 0.011109265498816967, + -0.007567265070974827, + 0.028578203171491623, + 0.012376002036035061, + 0.010436910204589367, + 0.011246380396187305, + 0.0016227856976911426, + 0.008207926526665688, + -0.013891450129449368, + -0.024792077019810677, + 0.0008141741272993386, + 0.005262667778879404, + -0.01675868034362793, + -0.006752858869731426, + -0.007103662937879562, + -0.012277260422706604, + -0.013241533190011978, + -0.008604133501648903, + 0.014484097249805927, + -0.002719832118600607, + 0.019326556473970413, + 0.0005164074245840311, + -0.0018418828258290887, + -0.018310198560357094, + 0.005091049242764711, + -5.6296255934285e-05, + -0.0028367596678435802, + 0.0035448234993964434, + 0.01018758025020361, + -0.007235854398459196, + 0.01296462956815958, + 0.002805116819217801, + -0.024547358974814415, + -0.008500538766384125, + -0.015594640746712685, + 0.010940068401396275, + 0.019552022218704224, + -0.011901197023689747, + -0.006132262758910656, + 0.01067740935832262, + 0.006050108466297388, + -0.005583134479820728, + 0.0031229928135871887, + -0.003939815331250429, + -0.004313288256525993, + 0.013470171019434929, + -0.0010188898304477334, + 9.571114060236141e-05, + -0.0008636938291601837, + -0.017322203144431114, + 0.004389862529933453, + 0.005701311863958836, + -0.013381853699684143, + 0.000843144312966615, + 0.03245583921670914, + 0.001748640788719058, + -0.00434727082028985, + 0.009308653883635998, + 0.00650524627417326, + -0.0035798463504761457, + 0.003579899435862899, + 0.001699741231277585, + 0.0019481334602460265, + 0.03558040410280228, + 0.019585013389587402, + -0.06196195259690285, + 0.391346275806427, + 0.009805074892938137, + 0.005311299115419388, + -0.012429353781044483, + -0.012331315316259861, + 0.004620926920324564, + -2.000837048399262e-05, + 0.019048277288675308, + -0.010522691532969475, + 0.010593476705253124, + -0.002600663574412465, + 0.022192856296896935, + 0.0019414074486121535, + -0.006453630514442921, + -0.006207812577486038, + 0.009539391845464706, + -0.011280296370387077, + -0.026041816920042038, + -0.0005640890449285507, + 0.008196543902158737, + 0.01222767774015665, + 0.0018536972347646952, + 0.03542224317789078, + -0.0021762531250715256, + 0.0013040732592344284, + -0.009074647910892963, + -0.005393420811742544, + 0.018802989274263382, + -0.005423860624432564, + -0.008448581211268902, + -0.005111283622682095, + -0.01761278323829174, + 0.0074111646972596645, + -0.004014314152300358, + 0.00807331595569849, + 0.00016977429913822562, + -0.003586011938750744, + -0.000997471623122692, + -0.013453520834445953, + 0.015577060170471668, + 0.009949559345841408, + 0.013155519030988216, + 0.004056420177221298, + -0.00041857961332425475, + -0.0037538488395512104, + 0.002666264306753874, + -0.002408260013908148, + -0.0015509385848417878, + 0.005868555512279272, + -0.006004128139466047, + -0.03257961571216583, + 0.0025285209994763136, + 0.007446326781064272, + -0.018696360290050507, + -0.0070841675624251366, + -0.009736963547766209, + -0.008853915147483349, + 0.004607365000993013, + 0.009098488837480545, + -0.02899875119328499, + -0.004041003528982401, + -0.008501378819346428, + 0.0027824847493320704, + 0.01952304318547249, + 0.0008873629849404097, + -0.0031902554910629988, + 0.010980194434523582, + -0.05463327839970589, + 0.001593366963788867, + 0.008912158198654652, + -0.0015384673606604338, + -0.00016493578732479364, + -0.0060259997844696045, + -0.006024288013577461, + -0.004994422197341919, + -0.022744255140423775, + 0.007481847424060106, + 0.005539467558264732, + 0.0014113164506852627, + 0.01630895957350731, + 0.003974654711782932, + 0.0002580920699983835, + -0.009600493125617504, + -0.004315943922847509, + 0.004729969426989555, + 0.0014966016169637442, + 0.004739911761134863, + 0.03225057199597359, + -0.014808064326643944, + 0.016183750703930855, + -0.002259239787235856, + 0.006634825374931097, + -0.04389442130923271, + -0.007088263053447008, + -0.0035201956052333117, + 0.005437053740024567, + -0.0030314538162201643, + 0.0057794866152107716, + -0.007033981382846832, + 0.00855215359479189, + -6.210475112311542e-05, + -0.00997183471918106, + -0.01009327918291092, + -0.009344485588371754, + -0.020117416977882385, + -0.014333176426589489, + -0.022169621661305428, + -0.009742493741214275, + -0.016345949843525887, + -0.025175614282488823, + 0.014347244054079056, + 0.030684923753142357, + 0.004880518652498722, + -0.000824568560346961, + -0.006107604131102562, + -0.03796149045228958, + 0.006812363397330046, + -0.0013672471977770329, + -0.0052411979995667934, + 0.010486559011042118, + 0.014084002934396267, + -0.0013269769260659814, + -0.02333782985806465, + -0.005630056373775005, + 0.015475320629775524, + 0.007288470398634672, + 0.014546078629791737, + 0.019893571734428406, + -0.004420780576765537, + 0.01587238349020481, + -0.00854562595486641, + -0.01349538005888462, + 0.004058605059981346, + -0.002591107040643692, + -0.005686652846634388, + 0.016564343124628067, + -0.005345245357602835, + -0.004664267413318157, + -0.007140402216464281, + -0.018689393997192383, + -0.01205484475940466, + -0.007293335627764463, + -0.00151803286280483, + -0.017382605001330376, + 0.006223974283784628, + -0.08055943250656128, + 0.00931277871131897, + 0.004803857766091824, + -0.007587823551148176, + -0.004691361915320158, + -0.017749948427081108, + 0.00408091489225626, + -0.007432748097926378, + 0.0106255654245615, + 0.0002567613555584103, + 0.0009436541586183012, + -0.004965555854141712, + 0.008471526205539703, + 0.016490435227751732, + 0.022204075008630753, + -0.009648142382502556, + -0.010455301962792873, + 0.002010100521147251, + -0.009660336188971996, + -0.0118410000577569, + -0.0073808166198432446, + 0.007207728922367096, + -0.0013362026074901223, + 0.005806175991892815, + 0.008535042405128479, + 0.020264243707060814, + 0.0037527631502598524, + -0.00940061453729868, + 0.0025431723333895206, + -0.009508715942502022, + 0.003506829496473074, + -0.024242430925369263, + 0.006463021505624056, + -0.01889999397099018, + -0.0065412139520049095, + 0.007613268680870533, + 0.007406186778098345, + 0.0102493055164814, + -0.009714312851428986, + 0.015011249110102654, + 0.0072985244914889336, + 0.005670629907399416, + -0.006371475290507078, + -0.0030945506878197193, + -0.004859598353505135, + 0.012238876894116402, + 0.0018746864516288042, + -0.008693506009876728, + -0.0016975649632513523, + 0.013221119530498981, + -0.0008176973205991089, + 0.007596543524414301, + -0.014806884340941906, + -0.008589393459260464, + -0.010684805922210217, + -0.005215824581682682, + -0.005083146039396524, + -0.0015447773039340973, + 0.007316752336919308, + -0.0012804598081856966, + 0.018634863197803497, + -0.01687624864280224, + -0.009340433403849602, + 0.002476171590387821, + 0.023813357576727867, + -0.017089255154132843, + -0.017772773280739784, + 0.017941193655133247, + -0.0022174008190631866, + 0.05216469243168831, + 0.01000938005745411, + 0.0007198103121481836, + -0.012206350453197956, + -0.01672106236219406, + 0.008083554916083813, + -0.004513642750680447, + 0.0038471436128020287, + 0.014190951362252235, + 0.03004169650375843, + 0.0023168581537902355, + 0.011456673964858055, + 0.01284588873386383, + -0.0012082676403224468, + 0.005281256977468729, + 0.005653457250446081, + 0.012241284362971783, + -0.005104308016598225, + 0.0015846764435991645, + -0.006091437302529812, + 0.004714319948107004, + -0.019220365211367607, + -0.029576124623417854, + -0.007392203435301781, + -0.03329552337527275, + -0.00883022602647543, + -0.0020101007539778948, + -0.0016402873443439603, + -0.0028525437228381634, + 0.015619158744812012, + 0.016635674983263016, + -0.014124209061264992, + -0.007808182388544083, + -0.0052836621180176735, + 0.0024062087759375572, + 0.017492685467004776, + -0.05487386882305145, + -0.008131856098771095, + -0.013545886613428593, + -0.0054628886282444, + -7.83937139203772e-05, + 0.012642649933695793, + -0.04186294972896576, + -0.0007171391043812037, + -0.004603598732501268, + -0.023158960044384003, + -0.0028471711557358503, + 0.0001080037109204568, + 0.003929751459509134, + -0.016398100182414055, + -0.003731383476406336, + -0.004880331456661224, + -0.005389033351093531, + 0.006354536395519972, + -0.006976320408284664, + -0.0011892248876392841, + -0.04386892914772034, + 0.00972654763609171, + 0.008131118491292, + 0.0019081521313637495, + 0.020149994641542435, + 0.00492454320192337, + -0.0075403363443911076, + -0.0029561640694737434, + 0.01581154391169548, + 0.00116353842895478, + -0.014718259684741497, + 0.004458761774003506, + -0.0013361121527850628, + 0.01483643427491188, + 0.013788288459181786, + 0.0010171779431402683, + 0.00219675712287426, + 0.006132147740572691, + 0.011647968553006649, + 0.028060825541615486, + -0.0007246026070788503, + -0.0064996215514838696, + -0.003633487969636917, + 0.008727749809622765, + -0.007237001787871122, + 0.010513709858059883, + -0.08129532635211945, + 0.07380372285842896, + -4.181689291726798e-05, + -0.0034747079480439425, + 0.0047761984169483185, + 0.020519480109214783, + 0.00816772598773241, + -0.0866633728146553, + -0.010538368485867977, + 0.010299637913703918, + 0.019582610577344894, + 0.01448143646121025, + -0.015577763319015503, + 0.0038457117043435574, + 0.012225898914039135, + -0.002205881755799055, + -0.0017789785051718354, + 0.008514869958162308, + 0.0013982452219352126, + -0.03467588499188423, + 0.001241324353031814, + 0.004346116911619902, + 0.013406936079263687, + -0.010942265391349792, + 0.008134745992720127, + -0.008808713406324387, + -0.00416139978915453, + 0.008210075087845325, + 0.0088196424767375, + 0.005768732633441687, + -0.009196811355650425, + -0.013557160273194313, + 0.0013962542871013284, + 0.0001782975741662085, + -0.014355240389704704, + 0.006318679079413414, + -0.0032505712006241083, + 0.00012002082803519443, + 0.013149661011993885, + -0.004215471912175417, + -0.02221585437655449, + 0.04713832214474678, + 0.00593415554612875, + -0.011042904108762741, + 3.978401218773797e-05, + -0.01234731450676918, + -0.04179169237613678, + 0.051277197897434235, + -0.002920712111517787, + 0.004204432480037212, + 0.001987890340387821, + 0.03441223129630089, + 0.036930665373802185, + -0.008111410774290562, + 0.01854327693581581, + -0.00023520995455328375, + 0.002137524075806141, + 0.00010400709288660437, + -0.00021915689285378903, + -0.02733893133699894, + 0.027963798493146896, + 0.006682508625090122, + 0.0053445142693817616, + 0.006891101133078337, + -0.013180517591536045, + 0.04017779603600502, + 0.010368642397224903, + 0.003175282385200262, + -0.0009088107035495341, + -0.023546069860458374, + -0.0006072320975363255, + 3.183037551934831e-05, + 0.001286746934056282, + 0.024338146671652794, + -0.001819881028495729, + 0.01050186064094305, + -0.02023828588426113, + -0.0052159191109240055, + -0.0007981698727235198, + 0.021545570343732834, + -0.047468800097703934, + 0.0037565124221146107, + -0.029365483671426773, + 0.004871409852057695, + 0.015805723145604134, + -0.019572272896766663, + -0.016428522765636444, + 0.009632396511733532, + 0.006924139801412821, + -0.008439872413873672, + 0.0018390417098999023, + 0.007060118485242128, + -0.013700720854103565, + -0.012860634364187717, + 0.006382695399224758, + -0.0032499968074262142, + -0.014557748101651669, + -0.008409813977777958, + -0.018285807222127914, + -0.003087640507146716, + 0.0007569827721454203, + -0.0004483942757360637, + 0.013425517827272415, + 0.0037768417969346046, + -0.015038230456411839, + 0.01172691397368908, + -0.015194562263786793, + -0.0027724632527679205, + -0.00021272758021950722, + 0.008296028710901737, + -0.017712557688355446, + 0.006565443240106106, + -0.005661229137331247, + -0.00845394842326641, + -0.009654119610786438, + 0.00033561838790774345, + -0.008431276306509972, + -0.0006984274950809777, + 0.0009192433208227158, + 0.0005066206213086843, + -0.018939580768346786, + -0.012229407206177711, + -0.013702761381864548, + -0.0005521022249013186, + -0.008144302293658257, + -0.007045137695968151, + 0.007294681388884783, + 0.0069524566642940044, + -0.020070597529411316, + -0.014114509336650372, + -0.036749422550201416, + -0.018772287294268608, + 0.00315588666126132, + -0.002540166489779949, + 0.004412665497511625, + 0.0033525386825203896, + -0.013294712640345097, + -0.0173562690615654, + 0.018883002921938896, + 0.004627042915672064, + -0.01175050437450409, + 0.009559298865497112, + 0.007814067415893078, + -0.004275457467883825, + -0.009202226996421814, + -0.007115876767784357, + -0.0009557849843986332, + 0.0007411373662762344, + -0.006143872160464525, + 0.0031233620829880238, + -0.022723402827978134, + 0.01581420749425888, + -0.00296035292558372, + 0.0034351968206465244, + 0.0006718975491821766, + -0.016543999314308167, + -0.0015065122861415148, + 0.012100033462047577, + -0.021434154361486435, + 0.03126939758658409, + 0.009267575107514858, + -0.010063329711556435, + 0.0021780510433018208, + 0.0014034889172762632, + 0.0003980998008046299, + 0.0025988046545535326, + 0.006816447246819735, + 0.0034343458246439695, + 0.004837470594793558, + -0.005166773218661547, + -0.0066786352545022964, + 0.01567450352013111, + 0.009278866462409496, + -0.009677167050540447, + 0.012109316885471344, + 0.005293181166052818, + 0.008057205937802792, + 0.0008766647079028189, + 0.009879674762487411, + -0.012406275607645512, + 0.016082430258393288, + 0.019760483875870705, + 0.0025484906509518623, + 0.0465022474527359, + -0.018012603744864464, + -0.03806453198194504, + 0.009475593455135822, + -0.0093907555565238, + -0.011141274124383926, + 0.00972276832908392, + -0.002959007862955332, + -0.010562167502939701, + 0.001776783843524754, + 0.010983034037053585, + 0.009886338375508785, + -0.0059768701903522015, + 0.014164786785840988, + -0.05784440040588379, + 0.001021631178446114, + -0.001960764406248927, + -0.004007786512374878, + 0.00622575031593442, + -0.002013332676142454, + -0.018230576068162918, + -0.01828070916235447, + -0.007076950743794441, + 0.0005832350580021739, + -0.014474145136773586, + -0.020988579839468002, + -0.015613973140716553, + 0.006025542970746756, + 0.008552055805921555, + 0.00849614292383194, + 0.0022141188383102417, + -0.004728558007627726, + 0.004667443688958883, + 0.0027785429265350103, + -0.03006996214389801, + -0.010452432557940483, + 0.0006535578286275268, + -0.009709055535495281, + 0.007681210990995169, + 0.04808282107114792, + -0.005234651267528534, + -0.0032528203446418047, + 0.002027723239734769, + 0.024690799415111542, + 0.0029956772923469543, + -0.017908254638314247, + -0.01757880300283432, + -0.005711089354008436, + -0.016863783821463585, + -0.025903690606355667, + 0.0011888241861015558, + 0.017736591398715973, + 0.008126086555421352, + 0.003019810887053609, + 0.004186808131635189, + -0.04234866052865982, + -0.004800889175385237, + -0.0039027812890708447, + -0.013473696075379848, + 0.0011623899918049574, + 0.04909510165452957, + 0.003916272893548012, + 0.011151486076414585, + -0.026883330196142197, + 0.002339116530492902, + 0.0017126735765486956, + 0.014416337944567204, + 0.01684761419892311, + 0.027060959488153458, + -0.015222175046801567, + -0.007857461459934711, + 0.007187149953097105, + 0.010199906304478645, + 0.016386717557907104, + 0.007381182163953781, + -0.016216525807976723, + -0.01276975218206644, + -0.009746139869093895, + -0.03500202298164368, + 0.006051605101674795, + 0.011447183787822723, + -0.0063157472759485245, + 0.008156771771609783, + -0.005907255224883556, + -0.01649254560470581, + -0.012720565311610699, + -0.01606343686580658, + 0.0038000387139618397, + 0.024939944967627525, + 0.0012791771441698074, + -0.00031864005723036826, + -0.01618281938135624, + -0.0007393005071207881, + -0.01325744017958641, + -0.0237618088722229, + 0.0011612031375989318, + -0.019034864380955696, + 0.016215460374951363, + 0.009468873962759972, + -0.11875707656145096, + -0.01054765097796917, + 0.01003891322761774, + 0.02748452126979828, + 0.006145750172436237, + 0.01728716865181923, + 0.007423589006066322, + 0.0015411972999572754, + 0.00909373164176941, + 0.014338033273816109, + -0.005035079549998045, + -0.011222406290471554, + -0.012032369151711464, + 0.0070396591909229755, + -0.01955215446650982, + -0.0011583516607061028, + 0.006511147599667311, + -0.0014913445338606834, + -0.01586044952273369, + -0.005534712690860033, + -0.0007996975327841938, + 0.012576242908835411, + 0.010486584156751633, + -0.001769321970641613, + 0.006769804283976555, + -0.0031458749435842037, + 0.003810620866715908, + -0.00575300632044673, + 0.007995721884071827, + 0.017012346535921097, + 0.0077966731041669846, + 0.002359014470130205, + 0.0022199442610144615, + -0.0014648608630523086, + -0.00048724768566899, + 0.006468322593718767, + 0.0028248773887753487, + 0.004419039003551006, + 0.027204323559999466, + -0.015481846407055855, + -0.00040715234354138374, + 0.016602952033281326, + 0.01086906436830759, + -0.017050569877028465, + -0.0010343312751501799, + 0.022052476182579994, + 0.025084206834435463, + 0.0018542970065027475, + 0.006116362288594246, + 0.0005115819512866437, + -0.010493222624063492, + 0.0075037418864667416, + -0.010547731071710587, + -0.02440129965543747, + -0.010459557175636292, + -0.0026419328060001135, + 0.005128274206072092, + 0.008534682914614677, + 0.00939145591109991, + 0.007279886864125729, + 0.01256482396274805, + 0.005305242724716663, + 0.014414524659514427, + 0.007100819610059261, + -0.007206492591649294, + -0.019737208262085915, + 0.004667956382036209, + -8.455602801404893e-05, + 0.02620527893304825, + 0.0029191512148827314, + -0.01151609979569912, + -0.014515196904540062, + 0.0020635442342609167, + -0.0066780876368284225, + -0.005465298891067505, + -0.016768302768468857, + 0.004098101053386927, + -0.0023520190734416246, + 0.007760494016110897, + 0.03490118682384491, + -0.023180553689599037, + 0.011061839759349823, + 0.008698321878910065, + 0.018466239795088768, + 0.00015529265510849655, + -0.003692756639793515, + -0.003530405927449465, + 0.0066236830316483974, + 0.008329631760716438, + -0.0067450073547661304, + -0.010942695662379265, + -0.020268788561224937, + 0.005459317471832037, + 0.008931762538850307, + -0.0005225443164817989, + -0.004498493857681751, + -0.0009210472926497459, + -0.027500256896018982, + 0.0014303502393886447, + 0.00485592195764184, + 0.004668144974857569, + -0.028728505596518517, + 0.003981706686317921, + -0.018868323415517807, + 0.012711171992123127, + 0.016222279518842697, + 0.03726532310247421, + 0.008217716589570045, + 0.02566402219235897, + -0.01071115117520094, + -0.015727117657661438, + 0.010240523144602776, + 0.007181716151535511, + 0.0038179748225957155, + -0.0037965027149766684, + -0.014546244405210018, + 0.013269120827317238, + -0.0068143680691719055, + 0.00717886071652174, + 0.020954908803105354, + -0.008721119724214077, + 0.0035153497010469437, + 0.002196253277361393, + 0.006211618427187204, + 0.00395483523607254, + 0.011316787451505661, + 0.014411898329854012, + 0.0009935428388416767, + 0.001497143879532814, + -0.0027935258112847805, + -0.0027558444999158382, + -0.02221866138279438, + -0.011595855467021465, + 0.00742404954507947, + 0.0058436584658920765, + 0.00621107267215848, + 0.02137589640915394, + 0.05521177500486374, + -0.008355957455933094, + -0.006062684115022421, + -0.0055539109744131565, + -0.002002725377678871, + -0.007012360263615847, + 0.0004677542601712048, + 0.02505587227642536, + 0.015758225694298744, + -0.03406543657183647, + 0.008352266624569893, + -0.0009378105169162154, + 0.017591753974556923, + 0.0005268650711514056, + -0.01606512814760208, + 0.002840787637978792, + -0.0192448478192091, + 0.0018997467122972012, + 0.00522752245888114, + -0.08755452185869217, + -0.0016465308144688606, + 0.0082784965634346, + 0.006325375754386187, + 0.012967442162334919, + 0.0005320935742929578, + 0.001623952412046492, + 0.021913722157478333, + 0.011566118337213993, + -0.008745773695409298, + -0.005327918566763401, + 0.013290412724018097, + -0.007080922834575176, + -0.00986743625253439, + 0.016130773350596428, + -0.00013330303772818297, + 0.0045030792243778706, + 0.007593359332531691, + 0.006559409201145172, + 0.0015332349576056004, + -0.002779784146696329, + -0.00805285107344389, + 0.007922294549643993, + 0.007059289142489433, + -0.004996871575713158, + 0.01814279519021511, + 0.0027297683991491795, + 0.006592227146029472, + 0.0029800981283187866, + 0.005984614137560129, + -0.01281673088669777, + -0.007031584158539772, + 0.012081647291779518, + 0.004916846286505461, + -0.009324495680630207, + -0.0049008638598024845, + -0.017295440658926964, + 0.00609701918438077, + 0.00952343549579382, + 0.0015796417137607932, + -0.008631282486021519, + -0.008583804592490196, + -0.00729275681078434, + 0.012325125746428967, + 0.0020448060240596533, + -0.003932288382202387, + -0.004455619025975466, + -0.008799755945801735, + -0.008971760049462318, + -0.017665347084403038, + -0.01063703652471304, + -0.0009215489844791591, + -0.010953104123473167, + 0.008298724889755249, + -0.009064868092536926, + 0.00010806829232024029, + -0.014048602432012558, + 0.05171621963381767, + 0.003429262200370431, + -0.009039686992764473, + -0.005502608604729176, + -0.0262248944491148, + 0.016652951017022133, + -0.011748343706130981, + -0.002915093442425132, + 0.0041564577259123325, + -0.01634795404970646, + 0.015593291260302067, + 0.008417216129601002, + -0.011619124561548233, + 0.019851472228765488, + -0.019569404423236847, + -0.00569886201992631, + 0.0059709707275033, + 0.010528486222028732, + -0.0069342018105089664, + 0.011635196395218372, + -0.0010618573287501931, + -0.016429949551820755, + 0.004905564710497856, + -0.009909537620842457, + 0.0030773545149713755, + 0.0012581755872815847, + -0.01591341756284237, + -0.004519576206803322, + 0.0005955418455414474, + -0.010038078762590885, + 0.004547916818410158, + -0.004220613744109869, + -0.01641269586980343, + 0.026295822113752365, + 0.0196444783359766, + 0.017227577045559883, + 0.019112419337034225, + -0.003801405429840088, + -0.0003066651406697929, + 0.00834211241453886, + 0.0025065834634006023, + -0.019563399255275726, + -0.010318041779100895, + 0.005070358514785767, + 0.0196294616907835, + 0.02684955857694149, + 0.005081812385469675, + -0.001302263350225985, + -0.002720227697864175, + -0.030505871400237083, + 0.0042420257814228535, + -0.0008878543740138412, + -0.012894282117486, + 0.008892481215298176, + 0.006922494620084763, + 0.005066287703812122, + -0.00607581390067935, + -0.007073195651173592, + -0.010492583736777306, + -0.015410047955811024, + 0.004145186394453049, + 0.004933708347380161, + -0.0074199652299284935, + 0.023131851106882095, + 0.003670360893011093, + 0.0005205825436860323, + -0.0030914151575416327, + -0.0025936730671674013, + -0.013997988775372505, + -0.011932500638067722, + -0.002746281446889043, + -0.0017118840478360653, + 0.003931001760065556, + -0.016953127458691597, + -0.010601328685879707, + -0.007038602605462074, + -0.0017610606737434864, + 0.002499060705304146, + 0.007324632257223129, + -0.026294369250535965, + 0.007014214526861906, + -0.004200909286737442, + -0.00803893618285656, + -0.0020944008138030767, + -0.002174889435991645, + 0.0041710990481078625, + 0.00444765156134963, + 0.008097928017377853, + -0.010987476445734501, + 0.0017475977074354887, + 0.012918340042233467, + 0.0045036450028419495, + 0.0009665307588875294, + -0.004149340558797121, + -0.004489189479500055, + -0.005614425055682659, + 0.01275758445262909, + 0.0038893313612788916, + -0.005602917168289423, + -0.014276240020990372, + 0.014043274335563183, + 0.00023046044225338846, + -0.03120853193104267, + 0.023269446566700935, + 0.008621674962341785, + 0.003326470497995615, + -0.009626184590160847, + -0.023952946066856384, + -0.0016789790242910385, + 0.009258531965315342, + 0.01662672497332096, + 0.008904985152184963, + -0.0025180880911648273, + 0.0032520301174372435, + 0.011419568210840225, + 0.0025726465974003077, + 0.001091450685635209, + 0.034886717796325684, + 0.001723108347505331, + -0.007657189853489399, + 0.00119320722296834, + 0.038536373525857925, + 0.00564488023519516, + -0.009710078127682209, + -0.0038819294422864914, + -0.010498046875, + -0.007343020290136337, + -0.004897087812423706, + 0.00297190947458148, + 0.0034815948456525803, + 0.014529055915772915, + 0.0020622904412448406, + 0.000748797960113734, + -0.0020412863232195377, + 0.006989396642893553, + -0.015482843853533268, + 0.006261326372623444, + -0.011006544344127178, + -0.01431942731142044, + -0.012136241421103477, + 0.0001762496103765443, + -0.012017329223453999, + 0.0047692046500742435, + -0.007985709235072136, + -0.005640823859721422, + 0.005483716260641813, + 0.0028374083340168, + 0.006257105618715286, + 0.002141576260328293, + -0.00503478804603219, + 0.006073853932321072, + 0.013560045510530472, + 0.019829820841550827, + 0.002079620026051998, + -0.006949129514396191, + -0.0018922693561762571, + -0.004846880212426186, + 0.010114391334354877, + -0.014624081552028656, + -0.0033133490942418575, + -0.013511312194168568, + 0.015317474491894245, + 0.004461026284843683, + 0.01453099213540554, + -0.011034064926207066, + -0.004594774451106787, + 0.0054330225102603436, + -0.0009402291034348309, + -0.003758927108719945, + -0.010534348897635937, + -0.003576850751414895, + 0.0144644258543849, + 0.0018989233067259192, + -0.002488902071490884, + 0.002808359917253256, + -0.003423305694013834, + 0.00277834665030241, + 0.0025898676831275225, + 0.01243642345070839, + -0.03707638010382652, + 0.0009797774255275726, + -0.011317244730889797, + -0.010522580705583096, + 0.0013146995333954692, + -0.0016060967463999987, + -0.00557985482737422, + -0.001456332509405911, + -0.005958537571132183, + -0.024423986673355103, + -0.010794546455144882, + -0.0053611742332577705, + -0.00212551630102098, + 0.009724353440105915, + -0.01925892010331154, + 0.0018380616093054414, + 0.0009263745159842074, + -0.009465048089623451, + -0.0015091885579749942, + 0.002474983222782612, + -0.0020405566319823265, + 0.015288221649825573, + -0.012759782373905182, + 0.009127379395067692, + -0.007728633005172014, + -0.02202901430428028, + -0.010324060916900635, + 0.0008085455629043281, + -0.006012458819895983, + 0.0029838208574801683, + -0.001114903949201107, + 0.0002905406872741878, + -0.006604847498238087, + -0.019267503172159195, + -0.01783714070916176, + 0.002680898178368807, + 0.0013681575655937195, + 0.0065740072168409824, + -0.018125198781490326, + 0.004946145694702864, + 0.01959017664194107, + -0.0012089512310922146, + 0.022127626463770866, + 0.013014611788094044, + -0.0019960938952863216, + 0.006844706833362579, + 0.00023938732920214534, + 0.011128944344818592, + -0.0019326277542859316, + -0.01318553276360035, + 0.013558464124798775, + 0.028161216527223587, + 0.022945843636989594, + -0.012669107876718044, + 0.008984588086605072, + 0.013149763457477093, + -0.003111287485808134, + -0.004902158863842487, + -0.0008966362220235169, + 0.007441604044288397, + -0.017292100936174393, + 0.003345395205542445, + -0.01267517264932394, + -0.017653226852416992, + -0.005457946565002203, + -0.0013910531997680664, + -0.004071149043738842, + -0.014735250733792782, + -0.03252119570970535, + -0.005164068192243576, + -0.003661936614662409, + 0.0020733410492539406, + 0.01700940914452076, + 0.006963677704334259, + -0.007922736927866936, + 0.005081184674054384, + -0.01531885378062725, + 0.0036319869104772806, + -0.0005418115761131048, + 0.015132222324609756, + 0.004396294243633747, + 0.018765520304441452, + 0.04387442767620087, + -0.008865146897733212, + 0.03281682729721069, + -0.010977618396282196, + -0.010361949913203716, + 0.010266738943755627, + -0.012842865660786629, + -0.010595842264592648, + 0.005584474187344313, + 0.0028425026684999466, + -0.0032324129715561867, + -0.002013693330809474, + 0.009142953902482986, + 0.008169899694621563, + -0.01647336781024933, + -0.016833264380693436, + -0.00626386608928442, + -0.012560410425066948, + 0.011521673761308193, + 0.001403096946887672, + -0.016551045700907707, + -0.00876608956605196, + -0.001041071373037994, + -0.008336570113897324, + -0.027417948469519615, + -0.004794261883944273, + -0.013013675808906555, + 0.001174045610241592, + -0.0007961374358274043, + 0.004045175854116678, + 0.007487817667424679, + -0.012666005641222, + -0.012361429631710052, + -0.010316749103367329, + -0.0004801472823601216, + 0.0037372400984168053, + 0.0019024161156266928, + -0.004317778628319502, + -0.0035864110104739666, + -0.002463540295138955, + 0.026907479390501976, + -0.004865566268563271, + -0.018384290859103203, + 0.007801633793860674, + 0.014358174987137318, + 0.010242528282105923, + 0.02149350382387638, + 0.022530140355229378, + -0.001938431989401579, + 0.0095552708953619, + 0.013084212318062782, + 0.012209773063659668, + 0.0026984240394085646, + 0.009917192161083221, + 0.004689977969974279, + -0.00597993703559041, + -0.012152415700256824, + 0.00657842680811882, + -0.00835496000945568, + -7.820971950422972e-05, + -0.006525642238557339, + -0.023403840139508247, + 0.007402850780636072, + -0.0034347916953265667, + 0.0032129944302141666, + 0.03318372741341591, + 0.003497983328998089, + -0.0275427233427763, + 0.002335654804483056, + -0.019536789506673813, + -0.022125329822301865, + 0.0014545819722115993, + -0.0196485985070467, + -0.007431895472109318, + -0.04617718234658241, + -0.003183026798069477, + 0.0001240788260474801, + 0.013208074495196342, + 0.012754533439874649, + -0.010950662195682526, + 0.0009023160673677921, + 0.009995883330702782, + -0.009186591021716595, + 0.007056322414427996, + -0.0015098800649866462, + 0.011203287169337273, + -0.007018926553428173, + 0.016360701993107796, + 0.006408557761460543, + 0.0051162391901016235, + 0.011964497156441212, + -0.0015083455946296453, + 0.008042804896831512, + -0.00804817397147417, + 0.00816331896930933, + 0.017742721363902092, + 0.019944537431001663, + -0.010662700980901718, + -0.014877211302518845, + -0.014720057137310505, + 0.009514421224594116, + 0.008938147686421871, + 0.002383305225521326, + 0.00967949628829956, + 0.006536663975566626, + -0.006364248692989349, + 0.0026454119943082333, + -0.023829249665141106, + -0.012898383662104607, + 0.007361024618148804, + -0.008649168536067009, + -0.009376618079841137, + 0.004015657585114241, + -0.0055791293270885944, + -0.020899521186947823, + 0.023024125024676323, + -0.02528107352554798, + 0.0022088068071752787, + -0.0037166967522352934, + 0.006802384275943041, + 0.006168688647449017, + -0.019424794241786003, + 0.060162968933582306, + 0.02281174622476101, + 0.02398216910660267, + -0.0018332996405661106, + -0.018422754481434822, + 0.0026235454715788364, + 0.0048584467731416225, + 0.015030419453978539, + -0.0023875695187598467, + -0.0146514056250453, + 0.005562593694776297, + 0.005805102176964283, + -0.028119396418333054, + 0.011522932909429073, + 0.002499168971553445, + -0.019667593762278557, + -0.005364013835787773, + -0.00554875610396266, + 0.004574395250529051, + -0.0026093183550983667, + 0.003626367310062051, + -0.0029871449805796146, + 0.003476462559774518, + 0.01122547872364521, + -0.0028875896241515875, + 0.006387121509760618, + 0.007281910162419081, + 0.011309565976262093, + -0.0035794961731880903, + 0.00807796511799097, + 0.015346957370638847, + -0.0022028556559234858, + 0.016080576926469803, + -0.018590543419122696, + 0.009886877611279488, + -0.006467617116868496, + 0.0017932435730472207, + -0.010027856566011906, + 0.0210721418261528, + -0.02127055637538433, + -0.006205061916261911, + 0.007439880631864071, + 0.0163869746029377, + -0.007007664069533348, + 0.07922595739364624, + 0.02788044698536396, + -0.005419604480266571, + -0.03386342152953148, + 0.004641999024897814, + 0.0039206743240356445, + 0.0012071700766682625, + 0.03564850240945816, + 0.010574089363217354, + -0.017245758324861526, + -0.007548043970018625, + 0.00984274223446846, + -0.007426796015352011, + -0.007688955403864384, + 0.007261746563017368, + 0.005260912235826254, + -0.0035509637091308832, + -0.005713252816349268, + 0.0029251608066260815, + -0.012324389070272446, + 0.0263815987855196, + 0.005066198762506247, + 0.005154217593371868, + 0.00032755083520896733, + -0.01111095491796732, + -0.016258783638477325, + 0.0038673256058245897, + -0.015378078445792198, + 0.010226622223854065, + 0.006946246139705181, + 0.002115962328389287, + -0.01678987592458725, + 0.001592601416632533, + -0.007000999059528112, + -0.0016695114318281412, + -0.0179409421980381, + -0.0005683738854713738, + 0.002890045987442136, + 0.015612230636179447, + -0.001425944035872817, + 0.0016478083562105894, + -0.006160612218081951, + -0.0034755151718854904, + -0.004238127265125513, + 0.01253849733620882, + 0.004356002435088158, + 0.0012013225350528955, + -0.001364274648949504, + -0.015490523539483547, + 0.0038782490883022547, + -0.003340272232890129, + 0.006592144258320332, + 0.008534576743841171, + -0.003979248460382223, + 0.020625658333301544, + -0.008593186736106873, + -0.008636588230729103, + 0.005485687404870987, + -0.00790587067604065, + -0.004048253409564495, + 0.006531120277941227, + 0.003897344693541527, + 0.00498405285179615, + -0.015377509407699108, + -0.001669500139541924, + -0.00736117223277688, + -0.013836641795933247, + 0.010259389877319336, + 0.004797436762601137, + 0.001138202496804297, + 0.0056905597448349, + 0.011857145465910435, + 0.015879733487963676, + 0.008301971480250359, + 0.016409555450081825, + 0.017470408231019974, + 0.010062686167657375, + -0.0013008456444367766, + 0.005303734913468361, + 0.023209000006318092, + 0.0030675940215587616, + -0.002258921740576625, + -0.011500023305416107, + -0.008368419483304024, + 0.0017907563596963882, + -0.010551744140684605, + -0.0024265639949589968, + -0.01922677271068096, + 0.0003988819080404937, + -0.007761041168123484, + 0.019719403237104416, + -0.0050078462809324265, + -0.0014843157259747386, + -0.015451988205313683, + -0.004213083069771528, + 0.00911447498947382, + -0.03507094830274582, + -0.018271535634994507, + -0.007505958434194326, + 0.016487712040543556, + -0.0033922831062227488, + -0.005789589136838913, + 0.006577116437256336, + 0.004448184743523598, + -0.0044700950384140015, + 0.01825708895921707, + -0.034874625504016876, + -0.005891117732971907, + 0.06195620819926262, + 0.006472080945968628, + -0.005112671758979559, + 0.001661031972616911, + 0.003357426030561328, + -0.0072632101364433765, + 0.006647228263318539, + 0.012382269836962223, + 0.001497423043474555, + 0.008515103720128536, + 0.016057796776294708, + -0.005318690091371536, + -0.0018818326061591506, + -0.01309224870055914, + 0.00409690011292696, + -0.00935771968215704, + 0.005553906317800283, + 0.0029800839256495237, + -0.019609834998846054, + -0.015916481614112854, + 0.0023287772201001644, + -0.015194396488368511, + 0.03449421003460884, + -0.013935687951743603, + -0.004089877009391785, + -0.005322540178894997, + -0.02320192940533161, + 0.006995988078415394, + -0.010370815172791481, + -0.0027514633256942034, + 0.0017691432731226087, + 0.02245207503437996, + -0.0028986085671931505, + -0.000713711662683636, + -0.014847349375486374, + -0.006305910646915436, + -0.0030098671559244394, + -0.0003152819408569485, + -0.013657396659255028, + -0.02907228283584118, + -0.002607944654300809, + -0.01035858690738678, + -0.0022104682866483927, + 0.002768238540738821, + -0.0009848810732364655, + -0.01958432048559189, + -0.007346856873482466, + 0.021103357896208763, + -0.002177639864385128, + 0.015655530616641045, + -0.001848206971772015, + -0.003584992839023471, + -0.00394382793456316, + -0.01722690463066101, + 0.003469109069555998, + 0.004341100342571735, + 0.003164398716762662, + -0.022719882428646088, + 0.011052196845412254, + -0.005934086162596941, + 0.01381641998887062, + -0.019735975190997124, + -0.03166123852133751, + 0.012361296452581882, + 0.0657259076833725, + 0.020637642592191696, + 0.014406957663595676, + -0.0038636079989373684, + -0.0029545307625085115, + 0.016413990408182144, + 0.00582096865400672, + -0.02416626550257206, + -0.010460251942276955, + -0.008920968510210514, + 0.01824953407049179, + 0.00343599496409297, + -0.005061381962150335, + 0.0028775567188858986, + 0.010187787003815174, + -0.00817959289997816, + -0.004913522396236658, + 0.00927993468940258, + -0.010684316977858543, + 0.011790146119892597, + -0.00997245218604803, + 0.0018959726439788938, + -0.012626116164028645, + 0.004742871969938278, + 0.01163154374808073, + 0.026583513244986534, + -0.011911923997104168, + -0.0014231028035283089, + 0.0028197208885103464, + 0.01839648373425007, + 0.012476025149226189, + -0.027643606066703796, + -0.012030738405883312, + 0.025415875017642975, + 0.0014297531452029943, + -0.0011976455571129918, + 0.002398040844127536, + 0.00530348950996995, + 0.004499646369367838, + 0.01976742222905159, + 0.01291231531649828, + 0.014712397009134293, + -0.008343123830854893, + -0.02034182660281658, + -0.002616900485008955, + -0.0015432004583999515, + 0.003267887281253934, + 0.001140942913480103, + 0.004952054005116224, + 0.0037483409978449345, + -0.04249156266450882, + 0.007525090593844652, + 0.010147332213819027, + -0.01088855229318142, + -0.013447482138872147, + -0.006853216327726841, + -0.00464027002453804, + -0.004488262347877026, + 0.013376287184655666, + 0.0035308189690113068, + -0.009166042320430279, + 0.00861982349306345, + -0.00043307553278282285, + 0.002710924716666341, + 0.019515905529260635, + 0.0064010946080088615, + 0.011096678674221039, + 0.017314651980996132, + -0.007288740947842598, + 0.013647894375026226, + 0.005354727152734995, + 0.00426279753446579, + -0.007126353681087494, + 0.003714007558301091, + 0.009916716255247593, + -0.006799359805881977, + -0.010689862072467804, + -0.0006710230954922736, + -0.019833408296108246, + -0.004241528920829296, + 0.037837184965610504, + -0.011090753600001335, + -0.004448003601282835, + 0.00013194892380852252, + -0.0026695106644183397, + 0.010541283525526524, + 0.011674894019961357, + -0.01080586202442646, + 0.009471300058066845, + 0.011376600712537766, + 0.009376393631100655, + 0.001986261224374175, + -0.007262710481882095, + -0.009168902412056923, + -0.0020013225730508566, + 0.0007376068388111889, + -0.006864301394671202, + -0.0004386410873848945, + 0.006847063545137644, + 0.015706578269600868, + 0.004035645630210638, + 0.004543020855635405, + -0.010142700746655464, + -0.0037561769131571054, + -0.026716075837612152, + -0.00037964057992212474, + -0.004714024253189564, + 0.005196633283048868, + -0.003879253286868334, + 0.05187201499938965, + 0.005104645621031523, + -0.020166892558336258, + 0.0077435350976884365, + 0.02975725382566452, + 0.03640946373343468, + -0.01677963323891163, + 0.03135530278086662, + -0.0013304955791682005, + 0.008282637223601341, + -0.014279515482485294, + -0.0021158093586564064, + -0.011999614536762238, + 0.017264438793063164, + 0.001772657036781311, + -0.010676167905330658, + -0.005884714424610138, + -0.013384232297539711, + 0.0012105393689125776, + 0.004347457550466061, + 0.002311310963705182, + -0.001117231440730393, + -0.012782099656760693, + -0.01398566085845232, + 0.040582627058029175, + 0.02080669440329075, + 0.0053053973242640495, + -0.002612997544929385, + -0.016347268596291542, + 0.039837438613176346, + -0.011399800889194012, + -0.014724154025316238, + 0.007089030463248491, + -0.02656799741089344, + 0.025465605780482292, + 0.018734710291028023, + -0.0007240134291350842, + 0.004965184256434441, + -0.01908097416162491, + -0.01797887496650219, + 0.020701510831713676, + 0.007285646628588438, + -8.985931344795972e-05, + -0.005762308370321989, + 0.0014783914666622877, + 0.009578519500792027, + 0.010313746519386768, + 0.019702261313796043, + 0.013756593689322472, + 0.0028065356891602278, + -0.013810430653393269, + 0.029696263372898102, + 0.01942763850092888, + -0.011059369891881943, + -0.006720618810504675, + 0.015079754404723644, + 0.008852972649037838, + 0.004303340800106525, + -0.016543351113796234, + 0.005754257086664438, + 0.006127804517745972, + 0.026734348386526108, + -0.0017168432241305709, + 0.001718433341011405, + -0.012795966118574142, + 0.0031854715198278427, + 0.000557648774702102, + -0.0007116738706827164, + -0.003170877927914262, + 0.011315016075968742, + -0.023988952860236168, + -0.026189561933279037, + 0.0027429608162492514, + -0.015148049220442772, + 0.00766671122983098, + -0.0037566169630736113, + 0.016823124140501022, + 0.009613719768822193, + -0.007587088271975517, + 0.002959110541269183, + -0.01399114727973938, + -0.010622651316225529, + 0.016022587195038795, + -0.009324522688984871, + 0.007391254883259535, + -0.002719693351536989, + -0.007309063337743282, + 0.0034797731786966324, + -0.0562906451523304, + -0.005160065833479166, + 0.008043410256505013, + 0.009310608729720116, + -0.006670014932751656, + -0.0003646060358732939, + -0.005051079671829939, + -0.015019181184470654, + 0.009972630068659782, + 0.03570060431957245, + -0.012864459306001663, + -0.04095259681344032, + 0.0010812242981046438, + -0.003192309523001313, + -0.011122796684503555, + -0.1283637136220932, + 0.028704997152090073, + 0.028308704495429993, + -0.016754386946558952, + 0.003272195113822818, + 0.01082681491971016, + 0.016240917146205902, + -0.023332083597779274, + -0.012286139652132988, + 0.0011067768791690469, + 0.052307408303022385, + -0.0033665166702121496, + 0.0028980423230677843, + 0.01084961462765932, + -0.015117427334189415, + 0.011977862566709518, + 0.008029605261981487, + -0.019260937348008156, + -0.0058240569196641445, + 0.02464125119149685, + -0.011143708601593971, + 0.0008706923690624535, + -0.03279055282473564, + -0.005418132990598679, + -0.011395628564059734, + 0.0032616406679153442, + 0.01144370436668396, + -0.022464372217655182, + -0.022429581731557846, + 0.0068843853659927845, + -0.010980126447975636, + 0.009394320659339428, + 0.012188713066279888, + 0.002959089819341898, + 0.003477970138192177, + -0.007695713080465794, + -0.006878781598061323, + 0.0035800831392407417, + 0.00160782050807029, + 0.04455837607383728, + 0.0030478311236947775, + -0.0018085574265569448, + -0.018341004848480225, + -0.011983311735093594, + 0.017588982358574867, + -0.019988862797617912, + -0.003924007527530193, + 0.003517263336107135, + 0.0031142879743129015, + 0.004395765718072653, + 0.004816590342670679, + 0.010017645545303822, + 0.009662714786827564, + -0.0005214190459810197, + -0.005220230668783188, + 0.00879519060254097, + 0.0024672907311469316, + 0.017420481890439987, + -0.009756222367286682, + 0.0009167448151856661, + 0.0030262174550443888, + -0.018001871183514595, + -0.010495787486433983, + 0.016474055126309395, + 0.024335328489542007, + 0.00844273529946804, + -0.011152602732181549, + -0.0004018684849143028, + 0.005059216637164354, + 0.022433528676629066, + 0.005472222343087196, + 0.014673874713480473, + 0.006082496605813503, + 0.05370490625500679, + -0.00012074871483491734, + -0.005943972151726484, + -0.00614352710545063, + 0.002632595133036375, + 0.011522267945110798, + -0.009023986756801605, + 0.009773830883204937, + -0.0034727882593870163, + 0.0032375087030231953, + 0.0002949668269138783, + 0.014867693185806274, + -0.007757530082017183, + -0.00022718089167028666, + 0.008648760616779327, + -0.012547854334115982, + -0.0059698824770748615, + -0.0059351492673158646, + 0.00847074668854475, + -0.010666294023394585, + 0.008054745383560658, + 0.07249145954847336, + -0.006319514010101557, + -0.01115881372243166, + -0.005281305871903896, + -0.0038096869830042124, + 0.000590926967561245, + -0.008159256540238857, + 0.00941863190382719, + 0.005065914709120989, + -0.0027173745911568403, + -0.023775925859808922, + 0.009003423154354095, + -0.0016939130146056414, + -0.004332555457949638, + 0.0014161559520289302, + 0.005688632372766733, + 0.005693497601896524, + -0.008247049525380135, + 0.010859109461307526, + 0.004202027805149555, + 0.017888342961668968, + 0.006899502128362656, + 0.002054116688668728, + -0.0028496442828327417, + 0.010880145244300365, + -0.002799449022859335, + 0.004721255507320166, + -0.0015802363632246852, + -0.005869870539754629, + -0.0032634863164275885, + 0.0024718870408833027, + 0.01040685549378395, + -0.0051142075099051, + -0.0008331027929671109, + 0.015952469781041145, + 0.007711038924753666, + 0.0026961127296090126, + 0.0026663243770599365, + 0.018021445721387863, + -0.0013104908866807818, + 0.01279436144977808, + -0.016683727502822876, + 0.005520686041563749, + -0.0026028896681964397, + -0.010971863754093647, + -0.007421482354402542, + -0.014096439816057682, + -0.0045592160895466805, + 0.00935429148375988, + 0.0024861334823071957, + -0.00764401676133275, + -0.008923516608774662, + 0.000981785822659731, + -0.007495856378227472, + -0.013618332333862782, + 0.012770401313900948, + 0.016564173623919487, + -0.0006286321440711617, + 0.011687454767525196, + -0.004778402391821146, + -0.0048357658088207245, + -0.009606591425836086, + 0.007718345150351524, + -0.02141606993973255, + 0.003217598656192422, + 0.00910928100347519, + -0.021316714584827423, + 0.004881054628640413, + 0.003644288517534733, + -0.014925387687981129, + 0.00337241287343204, + -0.015323291532695293, + -0.004563197493553162, + -0.04746655747294426, + -0.005071279592812061, + -0.01602376438677311, + 0.007695363834500313, + 0.024546010419726372, + 0.02267001010477543, + 0.006185268517583609, + -0.013161041773855686, + -0.00555100804194808, + 0.019409365952014923, + -0.000790078251156956, + -0.01734340563416481, + -0.002297766739502549, + -0.007977853529155254, + -0.015147525817155838, + -0.04195673391222954, + -0.026089347898960114, + 0.004524372052401304, + 0.004695751704275608, + -0.01936998777091503, + -0.0011578191770240664, + 0.001898327493108809, + 0.004284958820790052, + -0.0035759033635258675, + 0.01425930205732584, + -0.006460876204073429, + -0.027069946750998497, + -0.0018709177384153008, + -0.012739486061036587, + -0.011064897291362286, + 0.004048272967338562, + -0.0012056712293997407, + -0.01718083955347538, + -0.01582416146993637, + -0.0037609937135130167, + -0.0031954003497958183, + 0.04218340665102005, + 0.004232326988130808, + 0.008471867069602013, + -0.00024051929358392954, + -0.0030364994890987873, + -0.008481768891215324, + -0.015397652983665466, + 0.02385835163295269, + 0.012756610289216042, + -0.010674454271793365, + 0.018864141777157784, + -0.01411425694823265, + 0.008529290556907654, + 0.008695864118635654, + -0.0072135915979743 + ] + } + }, + "global_mean": [ + -0.3638943135738373, + 0.8156392574310303, + -0.22698888182640076, + -1.155468225479126, + -0.5551639199256897, + -0.6616654396057129, + -0.2947668433189392, + -0.16462060809135437, + -0.36696985363960266, + -0.29254066944122314, + -0.101655974984169, + 0.8117085695266724, + 0.25769317150115967, + 0.052843645215034485, + -1.1980401277542114, + 0.2740432322025299, + -0.1797167956829071, + 0.5702908039093018, + -0.14313139021396637, + 2.1558480262756348, + -0.1765814870595932, + -0.21055321395397186, + -0.9929035902023315, + 0.5553900003433228, + 0.15571121871471405, + -0.2775999903678894, + -0.05450254678726196, + 0.9251694679260254, + -0.6744170784950256, + 0.5691275596618652, + -0.41801905632019043, + 0.6945636868476868, + 0.8900175094604492, + -0.025075629353523254, + -0.625995397567749, + -1.6511492729187012, + -0.13420861959457397, + 0.22780099511146545, + 0.15236809849739075, + 0.12807999551296234, + -0.052451714873313904, + -0.06252619624137878, + -0.5442109704017639, + -0.19256888329982758, + -1.000999093055725, + -0.4627726078033447, + 0.029584884643554688, + -0.5241636037826538, + -0.8898236751556396, + -0.01930733025074005, + 0.23365414142608643, + -3.1869168281555176, + -0.7405413389205933, + 0.27965760231018066, + -0.8771336078643799, + -0.4255990982055664, + -0.7353976964950562, + -0.4668665826320648, + -1.133933424949646, + -0.372944712638855, + 0.2477508932352066, + -0.17071618139743805, + 0.08838611841201782, + 0.03007715940475464, + 0.0598941370844841, + 0.36503931879997253, + 0.44270846247673035, + -0.09552723169326782, + -0.37126240134239197, + 0.4055872857570648, + 0.37218528985977173, + -0.3394317030906677, + -0.2599767744541168, + -1.1250227689743042, + 0.24780479073524475, + 0.6367711424827576, + -0.5053784847259521, + 0.2183181196451187, + 0.4421730935573578, + 0.2668100595474243, + -0.26825013756752014, + -0.7564986348152161, + 0.47298532724380493, + -0.08777938783168793, + 0.2581101059913635, + 0.9888737201690674, + 1.1894110441207886, + -2.74368953704834, + -0.36973926424980164, + -0.8285117149353027, + 1.0697579383850098, + -0.08434173464775085, + -0.3812674283981323, + -1.4151782989501953, + 0.4837207794189453, + -2.8872227668762207, + -0.9590705037117004, + 0.004349352791905403, + -1.3717577457427979, + 0.15716692805290222, + -0.4330645501613617, + -0.7192168235778809, + -0.09771077334880829, + -0.9599134922027588, + -0.5439608693122864, + -0.8158199787139893, + -0.04124312102794647, + 0.6955982446670532, + 0.05145642161369324, + 0.3240615725517273, + -0.02894483506679535, + 0.2971442937850952, + -0.3860306143760681, + -0.2649139165878296, + 0.15060566365718842, + -0.8671218156814575, + 0.5440235733985901, + -0.09287571907043457, + -0.056215494871139526, + -0.5464094877243042, + -0.9195473194122314, + -1.720839500427246, + 0.7236194610595703, + -0.8982537984848022, + 0.14175744354724884, + 0.11645323038101196, + 0.312411904335022, + -0.5538644790649414, + -0.4671909213066101, + -0.22616532444953918, + 0.21906857192516327, + -0.26826950907707214, + -0.5449599623680115, + 1.908613920211792, + 0.5843241214752197, + 1.21311616897583, + -1.2783681154251099, + 0.24998006224632263, + -2.284590721130371, + 0.054682642221450806, + -0.04700353741645813, + -0.38750889897346497, + -1.445648431777954, + -0.260742723941803, + -0.7727464437484741, + 0.016573190689086914, + -2.053135871887207, + 0.09419608116149902, + 1.0815207958221436, + -0.32457128167152405, + 0.46446293592453003, + -0.06514476984739304, + -0.3362598419189453, + 0.4433790445327759, + -0.5876016616821289, + 0.9958272576332092, + 0.7001647353172302, + 0.07250885665416718, + -0.053417451679706573, + -0.36623942852020264, + 1.2794322967529297, + -0.051675472408533096, + 0.09151951968669891, + 0.6592327356338501, + 0.1815318614244461, + -0.7941368222236633, + 0.11447484791278839, + -0.944342851638794, + 0.23635511100292206, + -0.052628323435783386, + -0.33434897661209106, + -0.6425939798355103, + -0.7817308902740479, + 0.4845905303955078, + -0.49996766448020935, + 0.7340786457061768, + -0.6127814054489136, + 0.5331918001174927, + 0.1522473394870758, + -0.3606385886669159, + -0.1872846633195877, + 0.034212566912174225, + 0.1931913197040558, + -0.5698187351226807, + -0.5502984523773193, + 0.7034125328063965, + 0.1339980959892273, + 0.19390207529067993, + 0.24271592497825623, + 0.8791037201881409, + -0.16180050373077393, + -0.5980045199394226, + 0.5698187947273254, + -0.6013350486755371, + -0.5523141622543335, + 0.33633953332901, + 0.035719484090805054, + 0.7980554103851318, + 0.37018078565597534, + 0.3971179127693176, + -2.077025890350342, + -0.4492461085319519, + 0.12321656942367554, + -0.511528491973877, + -0.20216695964336395, + -0.8887507915496826, + 0.082508884370327, + 2.1653828620910645, + -8.996084213256836, + -0.0042040348052978516, + -0.6178766489028931, + -0.6460418701171875, + -0.32400402426719666, + 1.2484923601150513, + 0.6071676015853882, + -0.26255208253860474, + 0.8371078968048096, + 0.17296317219734192, + -1.2997510433197021, + 0.8534824252128601, + -0.422100305557251, + 1.1221240758895874, + -0.9246490001678467, + -0.036131054162979126, + -2.0506985187530518, + 0.7292265892028809, + 0.2932015061378479, + 0.5023946762084961, + 0.6996384859085083, + -1.161150336265564, + 0.2573801279067993, + -0.09084422886371613, + -0.3048052489757538, + -76.40300750732422, + -2.865527629852295, + 1.8819996118545532, + -0.30613407492637634, + -0.5532981753349304, + 0.18095357716083527, + -0.4611009359359741, + 0.8213002681732178, + 0.5079944729804993, + -0.07826242595911026, + 4.465114116668701, + -0.4982113242149353, + -0.4503895044326782, + 0.5096895694732666, + -0.5665721893310547, + 0.8061141967773438, + -0.4925195276737213, + 0.5630791783332825, + -0.4824939966201782, + 0.21977925300598145, + 0.06069204956293106, + 0.09009809046983719, + -0.3126052916049957, + 1.1154439449310303, + -0.8004194498062134, + -0.3804168701171875, + -0.42675691843032837, + -0.2427959144115448, + -1.2879698276519775, + 0.23734474182128906, + -0.8622158765792847, + 0.32585787773132324, + 0.3291071653366089, + -0.46538281440734863, + -0.5228284597396851, + -0.7100300788879395, + 0.07148651778697968, + 12.183202743530273, + -1.381371021270752, + -0.20609547197818756, + -0.5984461307525635, + -1.5406928062438965, + 0.3078334927558899, + -0.061321377754211426, + -0.434635192155838, + -1.3087184429168701, + -0.37920212745666504, + -0.2651083469390869, + -0.40155699849128723, + -1.6710184812545776, + -0.24005183577537537, + -0.14826342463493347, + 0.23980112373828888, + 0.3518672287464142, + -0.19157437980175018, + -0.14932972192764282, + 0.38868218660354614, + 0.5319955348968506, + 0.2820436954498291, + 1.6856149435043335, + 1.1122124195098877, + -0.7368069291114807, + -0.14572854340076447, + -0.2495550513267517, + -1.1133683919906616, + 0.9807107448577881, + -0.026689058169722557, + -0.08613292872905731, + 0.19522634148597717, + 0.6236790418624878, + 1.0094481706619263, + -0.24861928820610046, + -0.831011950969696, + 0.47377997636795044, + -0.5467215180397034, + -0.07795757055282593, + -0.15241199731826782, + -0.2227824330329895, + -0.631287693977356, + -0.7514859437942505, + 0.6205404996871948, + 0.32297199964523315, + -1.5888066291809082, + 0.3278498649597168, + -0.47488436102867126, + 0.763041079044342, + -1.7149193286895752, + 0.771967887878418, + 0.38700994849205017, + 0.11920235306024551, + 0.336503803730011, + -0.9461542367935181, + -0.3815661072731018, + 0.8175693154335022, + 1.43599534034729, + -0.8185601234436035, + -0.33812540769577026, + 0.05875656008720398, + -0.2545515298843384, + -0.6155524253845215, + 1.0685704946517944, + -0.2945713996887207, + 0.42978790402412415, + -1.0962053537368774, + -0.2189209759235382, + -0.48733794689178467, + 1.4522805213928223, + 0.06070598214864731, + -0.6415203809738159, + 0.5936837196350098, + -0.1553552746772766, + -0.1899174600839615, + -0.0820508599281311, + -0.2475663423538208, + -0.3187182545661926, + -0.5247535705566406, + -0.4486699104309082, + 0.6564663052558899, + -0.2949114739894867, + 1.57143235206604, + 0.2836945950984955, + -0.4068918228149414, + 0.38405606150627136, + 1.7715682983398438, + -0.3072096109390259, + 0.07231925427913666, + -0.3540281355381012, + -0.17460423707962036, + 0.9970828890800476, + -0.02427782118320465, + 0.4888553023338318, + 1.0524426698684692, + 0.1146271750330925, + 0.05271478369832039, + 0.24728500843048096, + -8.954717636108398, + 0.048860810697078705, + 0.790601372718811, + -0.38296014070510864, + 0.013159707188606262, + 0.778527021408081, + 0.6162928938865662, + 0.5968750715255737, + -0.2931968867778778, + -0.3662163317203522, + -0.1609029471874237, + -1.6927719116210938e-05, + 0.13634704053401947, + -5.548180103302002, + 1.4525446891784668, + 0.567284882068634, + -1.0208412408828735, + -0.37281376123428345, + -0.16663284599781036, + -0.2988557815551758, + 0.35920262336730957, + -0.22823578119277954, + 0.28055113554000854, + 0.19094398617744446, + 0.5500678420066833, + -0.12650145590305328, + 0.23957733809947968, + -0.007744535803794861, + 0.8320035934448242, + -0.031604230403900146, + -0.591154158115387, + -0.6123666763305664, + 0.45224618911743164, + -0.041459619998931885, + 0.33321207761764526, + -0.8127281665802002, + -0.17163346707820892, + -0.01211811788380146, + 0.726246178150177, + -0.32353347539901733, + -0.0881994292140007, + 0.38988322019577026, + 0.7781466841697693, + -4.277487277984619, + -0.5110677480697632, + 0.13645119965076447, + 0.002469301223754883, + -0.3615189790725708, + -0.6311495304107666, + -0.021108955144882202, + 0.8911864757537842, + 1.2549471855163574, + 0.13911119103431702, + 1.168792963027954, + 0.13232506811618805, + -0.8892530202865601, + -0.19276049733161926, + -0.19019299745559692, + 0.06781584024429321, + 0.9686974287033081, + -0.0641559362411499, + 0.6125842332839966, + 1.657264232635498, + 0.3159293532371521, + 2.9880752563476562, + -0.823817253112793, + -0.08966377377510071, + -0.24999427795410156, + 0.24590031802654266, + 0.021297931671142578, + 1.403928518295288, + 0.5255011320114136, + -0.45106297731399536, + -0.3607780635356903, + -0.14067412912845612, + -15.524510383605957, + -0.3669447898864746, + 3.114483594894409, + -0.8192495107650757, + -1.1475284099578857, + 0.3645545244216919, + 1.0206894874572754, + -0.09468824416399002, + 0.20840254426002502, + -0.42276331782341003, + 0.6741758584976196, + -0.5156270265579224, + -0.38557612895965576, + -0.023896783590316772, + 0.09013211727142334, + 0.959901750087738, + 0.421639084815979, + -0.6175613403320312, + 0.08561857044696808, + 0.05373367294669151, + 0.2774861454963684, + 0.23463483154773712, + 0.25910070538520813, + 0.9910882711410522, + 0.46155285835266113, + 0.5831050276756287, + 1.2517666816711426, + -0.621978223323822, + 1.0736429691314697, + -0.3929876387119293, + -0.24074125289916992, + -1.148932695388794, + 0.005645405501127243, + -0.12721772491931915, + 0.3531278371810913, + -0.7758052349090576, + 0.4473456144332886, + -0.41498684883117676, + 0.5859736204147339, + 0.00860011950135231, + 3.719755172729492, + -0.9285846948623657, + -0.266493558883667, + -0.8205241560935974, + 0.5923621654510498, + -0.16690602898597717, + -0.04223409295082092, + 0.37609413266181946, + -0.34315037727355957, + -0.07929475605487823, + -0.041353821754455566, + 0.6749347448348999, + 0.21096748113632202, + -0.0024986304342746735, + 0.691026508808136, + -0.06087922304868698, + -0.34493133425712585, + 0.7562311887741089, + -0.5475757718086243, + -0.8428187370300293, + -0.39025557041168213, + -0.4867417812347412, + 3.283827781677246, + -0.7537840604782104, + -0.02208814024925232, + 0.028751304373145103, + 0.5876407623291016, + -0.5487008690834045, + 1.0637025833129883, + -0.3918549716472626, + -0.025022223591804504, + -0.40567171573638916, + -1.3085319995880127, + -0.9030601978302002, + -0.07183945924043655, + 0.33111754059791565, + 0.36890891194343567, + 0.03652387857437134, + 0.8059824705123901, + 0.7786769866943359, + 1.5775001049041748, + -0.2266431450843811, + -0.16711395978927612, + -0.2572162449359894, + -0.013616159558296204, + 0.49284252524375916, + 0.053014859557151794, + -0.6139729022979736, + 0.7711181044578552, + -0.2283165156841278, + -0.23818613588809967, + -0.42480185627937317, + 0.3365863859653473, + 0.10590779036283493, + -1.6171858310699463, + 0.021406453102827072, + -0.04527759552001953, + -1.1763733625411987, + -3.7247817516326904, + 0.43726831674575806, + -0.4644937515258789, + 0.3907032310962677, + -0.8200691342353821, + 0.6848820447921753, + 0.35156285762786865, + 0.5153797268867493, + 11.682784080505371, + 0.21958455443382263, + -1.1663627624511719, + -2.8396596908569336, + -0.01912074163556099, + 0.25352632999420166, + -0.07703616470098495, + -0.4725881814956665, + 0.15929722785949707, + -0.9253993630409241, + -2.0428361892700195, + 0.8018878698348999, + 0.33090364933013916, + -0.6550250053405762, + -0.38712987303733826, + -0.0549929141998291, + 0.631895899772644, + -0.3124595880508423, + -0.16077914834022522, + -1.0392417907714844, + -0.022781826555728912, + -0.784873366355896, + -0.8044175505638123, + -0.1812036633491516, + -0.33799028396606445, + 0.15827715396881104, + -0.2253016084432602, + -0.14670318365097046, + -0.4347881078720093, + -1.2340703010559082, + -0.29840177297592163, + -0.3221314251422882, + 1.0559558868408203, + -0.5041528940200806, + -0.6187759041786194, + -0.1320696771144867, + -0.347587525844574, + 1.0348622798919678, + -0.08771462738513947, + 0.03247286379337311, + 0.37645816802978516, + -0.8825907111167908, + -0.37413719296455383, + -0.28231894969940186, + 0.2685961127281189, + 0.19010846316814423, + 0.07276683300733566, + -0.11619387567043304, + -0.2975715100765228, + 1.1186376810073853, + -0.17280523478984833, + -0.2562580108642578, + 0.24670295417308807, + -1.1152443885803223, + 0.34163954854011536, + -0.1286899745464325, + -0.3647139072418213, + -0.10066893696784973, + -0.05651623010635376, + -0.3488481640815735, + -0.8470334410667419, + -1.2677483558654785, + 0.4820367097854614, + -0.021326452493667603, + -0.6766573190689087, + 0.033878620713949203, + -1.8206062316894531, + -0.06488023698329926, + 0.19656749069690704, + -0.7260316014289856, + 0.4931252598762512, + -0.07157734781503677, + -9.230151772499084e-05, + 0.32238638401031494, + -0.06541402637958527, + -0.3571198582649231, + 0.5622191429138184, + 2.444591999053955, + -0.9478738307952881, + 0.30714964866638184, + -0.0466705784201622, + -0.01851431280374527, + -0.8679980039596558, + -0.011173125356435776, + -0.25117090344429016, + -0.7414592504501343, + -0.041084036231040955, + -0.5628559589385986, + -0.4962511360645294, + -0.3576053977012634, + -0.059391170740127563, + 0.3168810307979584, + -0.058248892426490784, + 0.3082190155982971, + -0.6796019077301025, + -1.7777297496795654, + 0.0495033860206604, + -0.20675450563430786, + 0.34596553444862366, + 0.4095781445503235, + -0.2790655493736267, + 0.023565825074911118, + -0.6293269991874695, + -0.14126457273960114, + 0.3471122086048126, + -0.08967652916908264, + 0.5581309795379639, + 0.46619006991386414, + -0.9452546238899231, + -1.1079702377319336, + -0.4037182629108429, + -0.5534648895263672, + 0.814857006072998, + 0.9447171688079834, + 0.2891097068786621, + -0.509108304977417, + 0.8053056001663208, + 0.6636624336242676, + -1.0991971492767334, + -0.4529827833175659, + -0.1286589354276657, + -0.6934534311294556, + 0.10621996968984604, + -0.7541937828063965, + 0.6746962070465088, + 1.360468864440918, + -0.12991926074028015, + -1.3841384649276733, + 0.05623912811279297, + 0.16883540153503418, + -0.20728494226932526, + 0.9816536903381348, + 0.059099115431308746, + 0.8015797138214111, + -0.022544369101524353, + 1.017892837524414, + 0.670648455619812, + -0.2936748266220093, + 0.023876190185546875, + -1.1012697219848633, + 0.2779775857925415, + 2.498619318008423, + -1.4241119623184204, + 1.1731702089309692, + 0.8913556337356567, + 1.1608636379241943, + 0.3928186297416687, + 0.3443031311035156, + -0.19653460383415222, + 0.15002131462097168, + -0.8411246538162231, + -0.020099546760320663, + -0.8929684162139893, + -0.8905640840530396, + -0.016303837299346924, + 0.36313989758491516, + -0.408310204744339, + 0.6748510599136353, + -1.9068491458892822, + -0.34980812668800354, + 1.1210122108459473, + -0.32213592529296875, + -0.7179567813873291, + -0.015994511544704437, + 2.0722081661224365, + -0.6301087141036987, + -0.05383189022541046, + -5.919086456298828, + -0.13326677680015564, + -0.23215073347091675, + 0.2621924877166748, + -0.5686488151550293, + -0.10409516096115112, + -0.03299565613269806, + -0.6496216654777527, + -1.2082675695419312, + -1.1118311882019043, + -0.8240620493888855, + -0.3724513351917267, + 0.5068982839584351, + -2.407501697540283, + 0.009650945663452148, + 0.03823639452457428, + 0.2127925008535385, + -1.101225733757019, + 1.2370661497116089, + 0.8130720853805542, + -1.9023514986038208, + -0.25801658630371094, + 0.4912458062171936, + -0.0015602502971887589, + 0.8162828683853149, + 0.1426873803138733, + 0.8045592308044434, + 0.11880779266357422, + 0.19818729162216187, + 0.23288920521736145, + 0.06469342112541199, + 1.8992856740951538, + 0.19563141465187073, + 0.09641140699386597, + -0.14778530597686768, + 0.15752309560775757, + -0.2138245403766632, + 0.16432806849479675, + -0.09277847409248352, + 0.46757858991622925, + 0.2928326427936554, + 1.23760986328125, + -0.12640690803527832, + -0.48582297563552856, + -0.060151226818561554, + -3.0313467979431152, + 0.4761345386505127, + 0.263405978679657, + -0.05291818827390671, + 0.10997527092695236, + 0.12157226353883743, + 0.09030161798000336, + -0.4728913903236389, + -0.2589373290538788, + -0.579937219619751, + 0.8156353831291199, + 1.1983342170715332, + -0.3473118543624878, + -0.8357922434806824, + 0.53797447681427, + 0.09360454976558685, + 0.7701365351676941, + -0.7961605787277222, + 0.6942479014396667, + -0.4697225093841553, + -0.39948153495788574, + 0.05387651175260544, + 0.1168467178940773, + 0.7416768074035645, + -0.4910199046134949, + -0.3613568842411041, + 1.9092049598693848, + 0.7973744869232178, + 0.02413056045770645, + 0.6632508635520935, + -0.6699990034103394, + -0.7242264747619629, + -0.6454476714134216, + 0.2429216206073761, + -0.5339360237121582, + 0.06401024013757706, + 0.774480402469635, + -0.5503812432289124, + 0.8219490051269531, + 0.5979450941085815, + 0.29227277636528015, + 0.14690788090229034, + -0.422340989112854, + -0.06612956523895264, + -0.17560461163520813, + 0.32757121324539185, + -0.34369587898254395, + 0.426118403673172, + -0.4031484127044678, + 0.6928973197937012, + -3.499837875366211, + 0.43920037150382996, + 0.04003840684890747, + 0.023211196064949036, + -0.6823647022247314, + -0.6081068515777588, + -0.17202934622764587, + 0.4067561626434326, + -1.7078831195831299, + 0.38679346442222595, + 0.5267177820205688, + -7.585752964019775, + 0.09477722644805908, + -0.7801034450531006, + -0.5244342088699341, + -0.013905130326747894, + -0.24161924421787262, + -0.5429924726486206, + 0.020447611808776855, + -0.4251724183559418, + -0.7172186374664307, + -1.1491668224334717, + 0.02601325511932373, + -0.6799355745315552, + 0.5580043792724609, + 0.4114663600921631, + -0.9891476035118103, + -0.349468469619751, + 0.9186279773712158, + -0.03231023997068405, + -0.48412424325942993, + 0.02651052549481392, + -0.1271476000547409, + -0.27822113037109375, + -0.4974185824394226, + -0.1152656301856041, + -0.05273524671792984, + 0.313586950302124, + 0.10768931359052658, + 0.48240557312965393, + -0.13947045803070068, + 0.3313772678375244, + 0.14892257750034332, + -0.15170161426067352, + 0.41818711161613464, + 0.07715459913015366, + -0.9270496368408203, + -0.9571491479873657, + 0.09778612852096558, + -0.8986937403678894, + 0.07477587461471558, + -1.3745074272155762, + -1.0098662376403809, + 0.060073211789131165, + 0.048607513308525085, + 0.02991437539458275, + -0.06693156063556671, + -0.983687162399292, + 0.3881664276123047, + -0.30421382188796997, + 0.2039669156074524, + -0.1504611223936081, + -0.0835915356874466, + -0.08034081757068634, + -0.32598981261253357, + -4.975754261016846, + 0.6438438296318054, + -0.009005323052406311, + -0.19355572760105133, + 0.14346536993980408, + -0.7975908517837524, + 1.21842622756958, + -0.11469118297100067, + -0.08973626792430878, + -0.12490996718406677, + 0.24634097516536713, + 0.13856343924999237, + 0.8450868129730225, + 1.3639345169067383, + -0.0006930679082870483, + 0.043632395565509796, + -0.3330501317977905, + -0.8800164461135864, + -0.27750420570373535, + 0.36529672145843506, + -1.0556923151016235, + -0.1050122082233429, + 0.91634202003479, + -0.6639429330825806, + 0.33680394291877747, + -0.1775277554988861, + 0.001522757112979889, + -0.2002086192369461, + -0.9720562100410461, + 1.438071846961975, + -0.2962571680545807, + 0.10055799037218094, + -1.149145245552063, + -0.46596580743789673, + -0.37018078565597534, + -1.9280078411102295, + -1.0875946283340454, + 0.5759331583976746, + 0.8844428062438965, + 0.05464768409729004, + 0.5623793005943298, + 0.05893414840102196, + -0.5767859220504761, + 0.08923318982124329, + -0.09389667958021164, + -0.47663170099258423, + -0.31984829902648926, + 1.7209585905075073, + -0.19746574759483337, + -0.3136039972305298, + 0.5893129706382751, + -0.21272408962249756, + 0.035103317350149155, + -3.264106273651123, + 0.06724435091018677, + 1.2990972995758057, + 1.0757155418395996, + 0.9049702882766724, + -0.06195679306983948, + -0.2167256474494934, + 0.4208211302757263, + -0.3380300998687744, + 0.17796102166175842, + 0.4017701745033264, + -0.5467091798782349, + -0.0012700483202934265, + -0.3007665276527405, + 0.48233819007873535, + 0.11750632524490356, + -0.5162006616592407, + -0.155477836728096, + 0.6741883754730225, + 0.07529491186141968, + -0.07011745125055313, + 0.009042724967002869, + 1.2235713005065918, + -0.34720107913017273, + 0.09608831256628036, + -0.19856834411621094, + 0.0005805935943499207, + 0.05696185678243637, + -0.10285881161689758, + 0.16065609455108643, + 2.084479808807373, + 1.7977268695831299, + 0.1818539798259735, + -0.46318376064300537, + 0.18867458403110504, + 0.31319451332092285, + -0.3219243586063385, + -0.2044079601764679, + 0.023040324449539185, + -0.8899802565574646, + -0.03363814949989319, + 0.31649041175842285, + 0.26905256509780884, + -0.9742152094841003, + -0.3463701605796814, + 0.09031102061271667, + 0.010819405317306519, + -0.8527430295944214, + -1.3911664485931396, + -0.7857791781425476, + -0.445046603679657, + 0.5052202939987183, + -0.3581957221031189, + -1.0161155462265015, + -0.5728759765625, + -0.6840963363647461, + -0.3228907883167267, + 0.03381943702697754, + -5.189471244812012, + 0.6606417894363403, + 0.5860849022865295, + 0.11152322590351105, + 0.04852835834026337, + 0.3821374177932739, + 0.4687357544898987, + 23.02627182006836, + -0.38247525691986084, + 0.17380116879940033, + -0.8174996972084045, + 0.783584713935852, + -0.2247772514820099, + -0.7158490419387817, + 0.05330783873796463, + -0.18995386362075806, + 0.02279595471918583, + -0.5074229836463928, + -0.18066003918647766, + 1.0248887538909912, + -1.424515962600708, + 0.08712383359670639, + -0.04903310909867287, + 0.34071213006973267, + 0.058753013610839844, + 1.619633436203003, + -0.3937072157859802, + 1.3393793106079102, + 0.6053324341773987, + -0.1800280213356018, + -0.8264753222465515, + -0.6224709749221802, + 0.2887883484363556, + -0.30981916189193726, + -0.29034316539764404, + -1.1546838283538818, + -0.42434370517730713, + -0.09647864103317261, + 0.2598346173763275, + 0.1713387817144394, + -0.4565452039241791, + -0.6681204438209534, + 0.04559093713760376, + 0.11299818754196167, + 1.1704803705215454, + 0.5576043128967285, + 0.9267158508300781, + 0.49545422196388245, + 1.9579523801803589, + 0.04929964989423752, + 0.2189694046974182, + 5.007726669311523, + -0.5824117660522461, + 0.0005676932632923126, + 0.4656933844089508, + 0.16575506329536438, + 0.21056997776031494, + -0.6824979186058044, + -0.5622429251670837, + -0.40079933404922485, + -0.25803136825561523, + 0.2972875237464905, + 1.1592180728912354, + -0.09222477674484253, + 0.5005266666412354, + -0.14401648938655853, + -0.23933032155036926, + 0.9350992441177368, + 1.3514169454574585, + -0.527492880821228, + -0.7928592562675476, + -0.30021506547927856, + 0.23256739974021912, + 1.172591209411621, + 0.22928181290626526, + -0.1227031946182251, + -0.152875155210495, + -0.49090564250946045, + -0.09322261810302734, + 0.25797295570373535, + -1.6819742918014526, + 0.13147103786468506, + 0.5701368451118469, + -1.1899685859680176, + 1.0806612968444824, + 0.3821199834346771, + 0.580051600933075, + 0.37554824352264404, + 0.14806634187698364, + 1.1487994194030762, + 0.26788896322250366, + 0.26903805136680603, + 0.8826028108596802, + 0.20082232356071472, + 0.5326035022735596, + -0.7501159906387329, + -0.29735562205314636, + -0.36363187432289124, + -0.1819429099559784, + -0.002900823950767517, + 0.08047157526016235, + -0.5825777053833008, + 0.4824841618537903, + 0.663274347782135, + -0.30342626571655273, + -0.7022203207015991, + -1.8775357007980347, + -0.9275016784667969, + 1.4021615982055664, + 0.8006885051727295, + 0.5597949624061584, + 0.8009922504425049, + -0.05118143558502197, + 0.8989228010177612, + -1.1155997514724731, + 0.2028895914554596, + -0.16473034024238586, + -0.10162079334259033, + -0.9297299385070801, + 1.0035862922668457, + -0.7457880973815918, + -0.11949029564857483, + -5.767138481140137, + 0.42626798152923584, + -0.4982735514640808, + -0.1506902128458023, + -0.7355526685714722, + 1.4512567520141602, + 0.2786431610584259, + -0.26506251096725464, + 0.1838364601135254, + 0.2577732801437378, + 0.44419223070144653, + 1.1237850189208984, + -0.13958260416984558, + 0.45043468475341797, + -0.1699424684047699, + 0.09341837465763092, + 0.6699187159538269, + -0.9534103274345398, + 0.7248632907867432, + 0.862753689289093, + -1.5617523193359375, + -0.6296603679656982, + -0.5538117289543152, + 0.7354726195335388, + 0.39690881967544556, + -6.702319145202637, + -0.03633114695549011, + 0.06623835861682892, + -0.6752843856811523, + -0.2532070577144623, + -0.4351257383823395, + 0.5575525164604187, + 0.18681827187538147, + 0.08953857421875, + 0.18453596532344818, + 0.767850399017334, + 0.3289669156074524, + 0.4651399254798889, + -0.5089549422264099, + -0.3480314612388611, + 0.7802172899246216, + 0.24631762504577637, + -0.6824415922164917, + -0.5358269214630127, + 0.0016209185123443604, + 0.08946142345666885, + 0.12383025884628296, + -0.512447714805603, + -0.6564180850982666, + 0.798395037651062, + -0.03382927179336548, + 0.24755485355854034, + 0.09059649705886841, + -2.410855293273926, + 0.44052833318710327, + -0.007833033800125122, + 0.4051939845085144, + 0.47480809688568115, + 0.1391296684741974, + -0.018739983439445496, + -0.036236293613910675, + -0.8127632737159729, + 0.3151697814464569, + -0.6948155164718628, + 0.3178451955318451, + -0.48118987679481506, + -0.7147037982940674, + 0.14187462627887726, + 0.7824660539627075, + 0.06603579223155975, + -0.013966202735900879, + -0.4985436797142029, + -0.2617384195327759, + 0.5982012748718262, + 0.35392436385154724, + -0.5897144079208374, + 0.21384179592132568, + -0.22398048639297485, + -0.11036244034767151, + -0.4595942497253418, + 1.1701979637145996, + -0.5365369319915771, + 1.1521949768066406, + -0.22861161828041077, + 0.34125494956970215, + 0.5110454559326172, + 0.9984999895095825, + 0.45519667863845825, + 0.22093531489372253, + -0.7268939018249512, + 2.359896183013916, + -0.46805715560913086, + 0.9863536357879639, + 1.1515483856201172, + 0.7600839734077454, + 0.783047080039978, + 0.7321344614028931, + 0.16862207651138306, + -0.3222440481185913, + 0.12083315849304199, + -0.3612940013408661, + 0.2460818588733673, + 0.1177867203950882, + 0.3476426899433136, + -1.4998362064361572, + -16.196483612060547, + -0.005119591951370239, + -0.14448344707489014, + -0.5533614158630371, + -0.5035939812660217, + 0.6867753267288208, + 0.10761258006095886, + -0.7391456365585327, + -5.502520561218262, + 0.7864512801170349, + -0.09045436978340149, + -0.34544670581817627, + 0.09171578288078308, + -0.2159387469291687, + 0.47290241718292236, + -0.18845494091510773, + -0.13869664072990417, + 0.7546255588531494, + -0.7501757144927979, + 0.5009085536003113, + 0.1369422972202301, + 0.5663101673126221, + 0.4223799705505371, + 0.3923947215080261, + -0.28177568316459656, + -0.4936008155345917, + 0.05994325131177902, + 0.3492603898048401, + -0.6326892971992493, + -0.17150938510894775, + -0.6325843334197998, + -0.81561279296875, + -0.2497422695159912, + -0.36813884973526, + 0.03750450164079666, + -0.39287665486335754, + 0.3119025230407715, + 0.14665837585926056, + 0.15800762176513672, + -1.0893744230270386, + 0.5978877544403076, + 0.1895577311515808, + 0.7493703961372375, + -0.13915085792541504, + 0.25609830021858215, + 0.2365795373916626, + 0.3913121223449707, + 0.6617140769958496, + -0.3484395444393158, + 0.7909047603607178, + 0.9578168392181396, + -0.015782266855239868, + 0.3860606849193573, + 0.5887383222579956, + 0.47691166400909424, + -0.5746030807495117, + 0.514941930770874, + -0.6589580178260803, + -0.2801327705383301, + 0.5126349329948425, + -3.0420079231262207, + 0.792547345161438, + 0.8529192805290222, + -0.30195456743240356, + -0.1919374167919159, + 0.11234252154827118, + -0.857666552066803, + -0.1775050014257431, + -0.9169138669967651, + 0.6777153015136719, + -0.3800687789916992, + -0.22531913220882416, + -0.04111737012863159, + -0.6227775812149048, + 0.24621954560279846, + 0.13988181948661804, + -0.46441513299942017, + 0.4313064217567444, + -0.57771897315979, + 1.2287366390228271, + -0.11308829486370087, + 0.585199236869812, + -0.36324992775917053, + 3.3013668060302734, + -0.29804763197898865, + -1.4313983917236328, + -0.15495359897613525, + 0.023003146052360535, + -0.6073142886161804, + -0.05077335983514786, + 0.2902339994907379, + -0.5317014455795288, + 0.8491004705429077, + 0.46167317032814026, + -0.37627243995666504, + 0.3393399119377136, + -1.1674326658248901, + -0.35474804043769836, + 1.811187744140625, + 0.018759459257125854, + 0.007279060781002045, + -0.09832017123699188, + 0.3740296959877014, + -0.12588509917259216, + -0.04660820960998535, + 0.17725352942943573, + 0.41810715198516846, + 0.3134942650794983, + 0.5182384252548218, + -0.07792220264673233, + -0.6308456063270569, + -0.6506790518760681, + 0.23052437603473663, + 0.10729914903640747, + -0.8494701385498047, + 1.8647089004516602, + 0.39918941259384155, + 0.43625637888908386, + 0.4140869677066803, + 0.241419717669487, + -1.0284476280212402, + -0.43871840834617615, + 0.7596091032028198, + -0.0985606238245964, + -0.7607581615447998, + -0.25022464990615845, + 0.03287336230278015, + 0.9852682948112488, + -0.5252687931060791, + 1.0131373405456543, + -0.6099862456321716, + 0.6169577836990356, + -0.5534382462501526, + 0.1254652440547943, + 1.157749891281128, + -2.152817726135254, + 1.0189297199249268, + -0.16920049488544464, + 0.07272666692733765, + -3.6857128143310547, + -0.60038822889328, + 0.49765288829803467, + -0.14048494398593903, + 0.6663312911987305, + 0.26301077008247375, + -0.18774756789207458, + 0.6225188970565796, + -0.10082246363162994, + -0.03536994010210037, + -0.6219631433486938, + -0.3725545406341553, + 0.768917441368103, + -0.5090024471282959, + 0.06631821393966675, + -0.9077442288398743, + 0.5783683061599731, + 0.0039865076541900635, + -0.018714554607868195, + 0.21475091576576233, + -0.3576050102710724, + 0.2934144139289856, + -0.009697675704956055, + 0.03440633416175842, + -0.5792983770370483, + 0.36494219303131104, + -0.10065767168998718, + 0.10945258289575577, + 0.18059755861759186, + 0.8812578916549683, + 1.4405497312545776, + 0.6625509262084961, + -0.32094162702560425, + -0.3761567175388336, + 0.1661514937877655, + 0.3119621276855469, + -0.17406651377677917, + -0.2888674736022949, + 1.7497878074645996, + 0.08898627012968063, + -0.41181519627571106, + -0.6711698770523071, + 0.04512345790863037, + -1.3228462934494019, + 0.6136732697486877, + -0.22236545383930206, + 1.186146855354309, + -6.64900016784668, + 0.32713770866394043, + 0.24336428940296173, + 1.2559354305267334, + -0.1336967945098877, + -1.5660457611083984, + -0.44017136096954346, + 0.0913323312997818, + -1.2743960618972778, + -0.29476115107536316, + -0.3184945583343506, + 0.37391453981399536, + -0.6125074028968811, + -0.5939486026763916, + -0.7414113879203796, + 0.2993744909763336, + -0.9442518949508667, + -0.46040207147598267, + -0.09837239980697632, + -0.8519002199172974, + 0.05814659595489502, + 0.04046589136123657, + 0.8862483501434326, + 0.27600160241127014, + -4.990333557128906, + -0.4073728621006012, + -0.05923159420490265, + 0.13205409049987793, + 0.0971778929233551, + 0.6095625162124634, + 1.0793181657791138, + -0.4176105260848999, + 0.7653677463531494, + 0.7108166813850403, + -0.3896099925041199, + 0.19173890352249146, + 0.7367841601371765, + 0.10958714783191681, + 0.0636073499917984, + -0.6905795335769653, + -1.9499142169952393, + 0.2020265758037567, + -0.24066293239593506, + 1.7210185527801514, + 0.9453140497207642, + 0.22174251079559326, + 0.2555962800979614, + -0.03651481866836548, + 0.163167342543602, + 0.3119582533836365, + 1.0131173133850098, + 0.2372054010629654, + -0.9036861658096313, + 0.4797503352165222, + -1.3566521406173706, + 0.5421177744865417, + 0.3126707077026367, + -0.509050726890564, + -0.6809574365615845, + -0.34015825390815735, + 0.2704308032989502, + 0.8151072859764099, + 0.21886539459228516, + 0.46535250544548035, + -0.08254377543926239, + -0.3754006028175354, + -0.20207838714122772, + 0.18256592750549316, + -0.30910149216651917, + -0.34074854850769043, + -0.40851232409477234, + 0.5796668529510498, + 0.3839188814163208, + -0.5297002792358398, + -0.010445833206176758, + 0.3280320465564728, + -0.24693064391613007, + 0.2581585943698883, + 0.35010892152786255, + -0.1907671093940735, + -0.47423893213272095, + -0.8865213990211487, + -0.4218933582305908, + -0.25340259075164795, + 0.5112384557723999, + 1.0753716230392456, + -0.2947242259979248, + 0.18552358448505402, + 0.20722338557243347, + -0.15338721871376038, + 0.7282012104988098, + -0.4484270513057709, + -0.016630060970783234, + 0.28431856632232666, + 0.5145649909973145, + 0.3777838945388794, + -1.7983955144882202, + -1.2209795713424683, + -0.324440062046051, + 0.3256046175956726, + 1.385947585105896, + 0.8378399610519409, + 0.9582124352455139, + -0.2130376547574997, + 0.28695642948150635, + 0.3937598466873169, + -0.31668704748153687, + 0.22572335600852966, + 0.33433106541633606, + -0.11587628722190857, + -0.09430024027824402, + 0.19071544706821442, + -0.22172938287258148, + -0.004255697131156921, + -0.14907246828079224, + 0.27380168437957764, + 0.9553052186965942, + -0.4637953042984009, + -1.0965794324874878, + 0.19900928437709808, + -0.45294100046157837, + -0.19937443733215332, + 0.08467882871627808, + 1.0319797992706299, + 0.8020539879798889, + 0.040296267718076706, + -0.0238533616065979, + -0.2396596074104309, + -0.9939598441123962, + 0.7596524357795715, + -0.49374207854270935, + -0.2325592339038849, + -0.15543478727340698, + -0.46776965260505676, + 0.08752074092626572, + 0.4902600049972534, + 0.552419900894165, + -0.09166783094406128, + -0.6500771045684814, + -0.21888305246829987, + 0.4089953601360321, + -1.6418304443359375, + 0.028700843453407288, + 0.07103621959686279, + -0.11327823996543884, + 0.27038729190826416, + -0.6202454566955566, + 1.7058789730072021, + -0.45479345321655273, + -0.9855334162712097, + 0.30960679054260254, + 0.03188314288854599, + -0.675915539264679, + 0.16795039176940918, + 0.7729288339614868, + -0.5877794027328491, + 0.22028616070747375, + -1.1159484386444092, + 0.18786680698394775, + 0.7393141388893127, + -0.03521372377872467, + 0.9512991905212402, + 0.36223143339157104, + 0.4532046616077423, + 0.16693386435508728, + 1.6511297225952148, + -1.086746335029602, + 0.49103257060050964, + -0.319843590259552, + 0.25787773728370667, + -2.7266652584075928, + -0.00095357745885849, + 0.29714536666870117, + -0.4272245168685913, + -0.010918177664279938, + -0.37840983271598816, + 0.0012240707874298096, + -0.7837941646575928, + -0.5438470840454102, + -1.075592279434204, + 0.6669589281082153, + 0.09743934869766235, + 0.6317468881607056, + -0.5626062750816345, + 0.9435088634490967, + 0.21681830286979675, + 0.17826862633228302, + -0.1376534402370453, + 0.02311873435974121, + -0.22937868535518646, + 0.41100189089775085, + -0.09075839072465897, + 0.33832311630249023, + -1.3970969915390015, + -0.12024956941604614, + 0.15502220392227173, + -0.1178903728723526, + 0.39488834142684937, + 0.39880555868148804, + 0.177296981215477, + -0.040870361030101776, + 0.9454346895217896, + -0.015999898314476013, + -0.17277388274669647, + 0.322742223739624, + -0.07560363411903381, + -0.1523541808128357, + -0.0667717456817627, + 0.5409991145133972, + 0.7243568897247314, + 0.014155671000480652, + -0.8512284755706787, + -1.3397893905639648, + 0.24758590757846832, + -0.3349800705909729, + 0.240021213889122, + -0.7335302829742432, + 0.29247748851776123, + -0.0876656025648117, + 0.2944667339324951, + 0.267784982919693, + 0.8328141570091248, + -0.7988436222076416, + 0.6917092204093933, + 0.21994173526763916, + -0.03526892513036728, + -0.10317099094390869, + -0.14755499362945557, + -0.977128267288208, + 0.36342060565948486, + -0.6931611895561218, + 0.3683169484138489, + 1.4758403301239014, + 0.10340806096792221, + -0.6402853727340698, + 2.1767749786376953, + -0.7459930181503296, + 1.0692607164382935, + 0.6397578716278076, + 0.43665480613708496, + -0.07084810733795166, + 0.5215381383895874, + 0.991102397441864, + 0.3793748915195465, + -0.29263609647750854, + -1.156901478767395, + -0.0794382095336914, + -0.7366253733634949, + 0.1764858365058899, + -0.4132046699523926, + 0.32484108209609985, + -0.33370304107666016, + 0.4154982566833496, + -0.4645511507987976, + 0.3199027180671692, + 0.2656784653663635, + -0.7042151689529419, + 0.0024633407592773438, + 0.4644142687320709, + -0.4924713969230652, + 0.14484703540802002, + 0.3392713963985443, + 0.10783545672893524, + -0.6298470497131348, + -0.05607131868600845, + -0.07245111465454102, + 0.013124391436576843, + 0.1302107572555542, + 0.8128482103347778, + 0.31454652547836304, + -0.1594899445772171, + -0.4378341734409332, + 0.31186380982398987, + 0.7682960033416748, + -0.5255670547485352, + -0.7819580435752869, + -0.1287059187889099, + -0.42175257205963135, + -0.047854259610176086, + -1.0664894580841064, + -0.2863607704639435, + -0.8161163330078125, + 0.5796571969985962, + 0.1887376606464386, + -0.2766239643096924, + 2.2776176929473877, + -0.13987338542938232, + 0.17746290564537048, + -0.786775529384613, + 0.21189717948436737, + -0.9318339228630066, + 0.08136387914419174, + -0.8328608274459839, + -0.17480476200580597, + -0.39804041385650635, + -0.9739877581596375, + 1.7779555320739746, + -0.7246623039245605, + 0.6413657665252686, + -1.4635734558105469, + 0.7239818572998047, + -1.6961452960968018, + 0.009646974503993988, + 0.214412122964859, + 0.43175750970840454, + -0.25600337982177734, + -0.017886579036712646, + 0.4886135458946228, + 0.9825310111045837, + 0.5130898952484131, + 0.5880722999572754, + 0.9556911587715149, + 0.13363608717918396, + 0.06664760410785675, + -0.15009385347366333, + -0.6965434551239014, + -0.7933427691459656, + -0.6815489530563354, + -0.4950942099094391, + -0.36937475204467773, + -0.10959160327911377, + 0.5578176975250244, + 0.6913934946060181, + -0.15042555332183838, + -0.2013956606388092, + -0.2507798969745636, + 0.9124094843864441, + -0.3292394280433655, + 0.714255154132843, + -0.22086796164512634, + 0.8543230295181274, + -0.08171620965003967, + 0.490741491317749, + 1.3072052001953125, + 0.06827045977115631, + -0.2888694405555725, + -0.7886489629745483, + -0.028943371027708054, + 0.42191052436828613, + -0.5418583154678345, + 2.0842390060424805, + 0.056002721190452576, + 0.9640071392059326, + -0.45670315623283386, + 0.5017364025115967, + 0.8418151140213013, + 0.5930908918380737, + -0.38550132513046265, + 0.34518274664878845, + -0.9257618188858032, + 0.025188058614730835, + 0.6589388251304626, + 0.3004809617996216, + 0.38184869289398193, + -0.05137288570404053, + -0.7218787670135498, + 0.09873657673597336, + -0.7371705770492554, + -0.5425682067871094, + -0.9023467302322388, + -0.5806605219841003, + -0.20357243716716766, + -0.6372972726821899, + -0.5697363615036011, + 0.7342236638069153, + 0.22161149978637695, + -0.9063700437545776, + 0.7428518533706665, + -0.9333349466323853, + 0.6107296347618103, + 0.9996510744094849, + -0.03891205042600632, + 0.2969740927219391, + -0.7153952121734619, + -0.32443684339523315, + -0.019654422998428345, + -2.039415121078491, + 0.14761099219322205, + 0.04907506704330444, + 1.1183668375015259, + 0.47216129302978516, + -7.940141201019287, + -0.571255087852478, + 1.2409945726394653, + 0.19741040468215942, + 1.3159518241882324, + -0.2550893723964691, + 0.16535116732120514, + -0.661097526550293, + 1.6132397651672363, + 0.2301855981349945, + -0.12271726131439209, + -0.1903558224439621, + -0.3986138701438904, + -0.940491259098053, + 0.17651605606079102, + 1.5832668542861938, + 0.06741690635681152, + -0.15989109873771667, + 0.791184663772583, + -0.16356368362903595, + -0.12201423943042755, + 0.8135799765586853, + 1.0520830154418945, + 0.4291853904724121, + -0.6293569803237915, + -0.3382473587989807, + 0.29562291502952576, + -0.2709864377975464, + -0.46371257305145264, + -1.1827141046524048, + -0.4289626479148865, + 0.7477540969848633, + 0.2772323489189148, + -0.2129860520362854, + 0.164516881108284, + -0.7110295295715332, + -0.8837371468544006, + 0.2787715792655945, + 0.3642992079257965, + -0.22597628831863403, + 0.3462453782558441, + 0.3662341237068176, + -0.02710932493209839, + 0.4295467138290405, + -2.6076855659484863, + -0.37059858441352844, + -0.7926857471466064, + -0.607914924621582, + -0.02399301528930664, + 0.7475690245628357, + -0.19439467787742615, + -0.5513246655464172, + -0.5766035318374634, + 0.9000563621520996, + 0.4549480080604553, + -0.4849548637866974, + -1.9201053380966187, + 67.43925476074219, + -0.025851845741271973, + 0.41277334094047546, + -0.16921468079090118, + -0.21635234355926514, + 0.4019894301891327, + 0.9109015464782715, + 0.313788503408432, + -0.16867724061012268, + 0.10914885997772217, + -0.6394162178039551, + -0.3134039044380188, + 0.17241589725017548, + 0.8180370926856995, + -0.3711707592010498, + -1.2515759468078613, + 0.38987112045288086, + -0.4818980097770691, + -0.7973165512084961, + -0.5101888179779053, + 0.5621875524520874, + 0.9562743902206421, + 0.3128793239593506, + 0.011928871273994446, + -0.43801283836364746, + -0.09387775510549545, + 1.1026012897491455, + 0.5559952855110168, + 0.16252681612968445, + 0.379424512386322, + 0.8653435707092285, + 0.9053104519844055, + -0.029756367206573486, + -0.4673137068748474, + 0.5836201906204224, + 0.9360705614089966, + 1.4440854787826538, + -0.8193600177764893, + -0.4028840661048889, + 0.4860542416572571, + -0.34104377031326294, + -0.22222140431404114, + 0.4602997899055481, + -0.19428017735481262, + -0.2721782326698303, + 1.2030069828033447, + -0.05438050627708435, + -0.32626235485076904, + 0.9507064819335938, + -0.5767075419425964, + 0.29429686069488525, + 5.466003894805908, + 0.05275225639343262, + 1.3236167430877686, + -0.44283485412597656, + -0.28417304158210754, + 0.42473170161247253, + 0.4490601122379303, + 0.28103014826774597, + 0.7421656847000122, + 0.4701417088508606, + -0.3264142870903015, + -0.19016022980213165, + 0.14997313916683197, + -1.2169339656829834, + -0.022390544414520264, + 0.013134792447090149, + 0.5875681638717651, + -0.69534832239151, + 0.776119589805603, + -0.3337565064430237, + -4.493120193481445, + 1.5815364122390747, + -0.6228700876235962, + 0.9501513838768005, + -0.19619220495224, + -0.9717957377433777, + -0.28118330240249634, + 0.5226548314094543, + 0.9727849960327148, + -0.33184632658958435, + 0.28090792894363403, + -0.7940608859062195, + -0.8062534332275391, + -0.15926778316497803, + -0.6740731000900269, + 19.671600341796875, + -0.006590098142623901, + -0.41511791944503784, + -0.41762763261795044, + 0.7315349578857422, + 0.090741828083992, + 0.7474223375320435, + 0.2880570590496063, + 0.06010638177394867, + 0.056918054819107056, + 0.14786049723625183, + -0.9683607816696167, + 0.24181781709194183, + -0.0957849770784378, + -0.17316600680351257, + -0.09746411442756653, + 0.09723816812038422, + 0.19989778101444244, + -0.4294295608997345, + 0.11022396385669708, + -0.13001376390457153, + 0.9416266679763794, + -1.9229953289031982, + 0.7566602230072021, + 0.7685073614120483, + 0.467759907245636, + 0.304872989654541, + 0.6707927584648132, + 0.377583384513855, + 0.659466564655304, + 0.30528104305267334, + 0.12392806261777878, + 0.17767296731472015, + 1.2706573009490967, + -0.1837034821510315, + -0.12443137168884277, + -0.17540127038955688, + -0.22100651264190674, + -0.021306663751602173, + -0.4883415699005127, + 0.04055090993642807, + -0.24922612309455872, + -0.5905036926269531, + -0.43976670503616333, + -0.06912277638912201, + 0.1901429295539856, + -0.21005553007125854, + 0.1743183583021164, + 0.16069969534873962, + -0.11832523345947266, + 0.49251624941825867, + 0.18703007698059082, + 0.4399096965789795, + 0.6439054012298584, + 0.5915716886520386, + -0.6123141646385193, + -0.19547167420387268, + -0.8376016616821289, + 1.0275752544403076, + 0.8952312469482422, + 5.606249809265137, + 0.3058033287525177, + 0.3614635765552521, + -1.162060260772705, + 0.2815927267074585, + 2.9017210006713867, + 0.37233564257621765, + -0.8657207489013672, + 0.16489073634147644, + 0.20021779835224152, + 0.4314059913158417, + -0.20536547899246216, + 1.3132412433624268, + 0.7480735778808594, + 0.6788278818130493, + -0.0441257506608963, + -0.12380493432283401, + 10.746845245361328, + -0.5930241346359253, + 0.20071354508399963, + 0.457780659198761, + 0.18371276557445526, + 0.40192174911499023, + 0.7196663022041321, + -0.0801537036895752, + 0.11248385906219482, + 0.6137077212333679, + 1.502436637878418, + 0.5283350944519043, + 0.03874729573726654, + 0.4440678656101227, + 1.289533257484436, + 0.07286436855792999, + 1.0289260149002075, + 0.9666580557823181, + -0.5600000619888306, + -0.3887862265110016, + 0.11624164134263992, + 0.9256327152252197, + -0.6940479278564453, + -1.1071444749832153, + 0.5117099285125732, + 0.23102551698684692, + -0.33061832189559937, + 0.3370859622955322, + 0.5753159523010254, + -0.3978068232536316, + -0.6749304533004761, + -0.09689846634864807, + -0.015063606202602386, + -0.0508514940738678, + -0.32007110118865967, + 0.12751546502113342, + -1.0167651176452637, + 0.7836614847183228, + -0.2946240305900574, + -0.23569625616073608, + 1.220264196395874, + 0.27742210030555725, + -0.3519311547279358, + -0.7025281190872192, + -0.23862770199775696, + -0.09926905483007431, + -1.6317592859268188, + -0.16016730666160583, + 0.12867183983325958, + 0.09351328015327454, + 0.059800662100315094, + 0.005608215928077698, + 0.4130350649356842, + -0.7041730880737305, + -1.304570198059082, + -0.19234122335910797, + -0.03661848604679108, + 1.242070198059082, + 0.22252696752548218, + 0.6063014268875122, + 0.664662778377533, + 0.22697728872299194, + 0.7417586445808411, + 0.8741170167922974, + 0.7776513695716858, + 0.9147608280181885, + -0.4235958456993103, + 0.26323312520980835, + -0.16340047121047974, + 0.7297130823135376, + -0.8301966786384583, + 0.0212399959564209, + 2.7077250480651855, + -0.2280176728963852, + -0.29359719157218933, + -0.6239785552024841, + 0.6847083568572998, + 0.1344461292028427, + 1.351243019104004, + -0.5180972218513489, + -1.1100068092346191, + 0.21646198630332947, + 0.2394469827413559, + -0.34543150663375854, + 0.21023139357566833, + -0.33486419916152954, + 0.6878309845924377, + -0.049545854330062866, + -0.35400262475013733, + -0.5041074752807617, + 0.41601288318634033, + -0.6918027400970459, + -0.28910940885543823, + 0.2050769031047821, + -0.14839541912078857, + 1.4064627885818481, + -0.11148881912231445, + 0.17286542057991028, + -0.4997677505016327, + -0.08203230053186417, + 0.01949295401573181, + 0.757314145565033, + 0.07842596620321274, + 0.6863521337509155, + 0.2632977366447449, + 0.15736302733421326, + 0.6601260304450989, + 0.6110318899154663, + 0.10456062853336334, + 0.26137644052505493, + -0.13841553032398224, + -0.4394891858100891, + 3.0618252754211426, + 0.22632651031017303, + -0.08528639376163483, + 0.20203448832035065, + 0.2509258985519409, + 0.7202842831611633, + -0.7166916728019714, + -0.6195501685142517, + -0.5919373631477356, + 0.04554815590381622, + -0.02174973115324974, + 0.6201572418212891, + 1.4532911777496338, + -0.616668701171875, + -0.3894466757774353, + -0.2218959927558899, + -0.7486461400985718, + -0.10365623235702515, + 0.461309015750885, + -0.6569080352783203, + 0.4162951707839966, + 0.33966049551963806, + 0.7046147584915161, + -2.568413257598877, + -0.20007948577404022, + 0.16923171281814575, + -0.2075914740562439, + 0.11588739603757858, + -1.0899877548217773, + 0.5493899583816528, + 0.17212651669979095, + 0.03893851488828659, + -0.18631750345230103, + -0.39645084738731384, + 0.49080580472946167, + -0.4953138530254364, + 0.7134547233581543, + -0.1849374920129776, + -0.5002537965774536, + 1.1073862314224243, + 1.2621769905090332, + -0.2969033122062683, + -0.7325803637504578, + -0.19576624035835266, + -0.47617238759994507, + -1.6390831470489502, + 0.6097931265830994, + 0.015288114547729492, + -0.46135905385017395, + -1.6052944660186768, + 0.2027949094772339, + 0.42898839712142944, + 0.618159294128418, + 0.6052121520042419, + 0.822738766670227, + 0.26114845275878906, + 1.1596484184265137, + -0.09981343150138855, + -0.734588086605072, + 0.31669697165489197, + -1.1596293449401855, + -0.7825613021850586, + 0.38761577010154724, + 0.06367361545562744, + -0.09860364347696304, + 0.4080096483230591, + -0.5810303092002869, + -0.6081860065460205, + 0.09836070239543915, + 0.20337709784507751, + -0.40814852714538574, + 0.4655499756336212, + -0.8987447619438171, + 0.7800219655036926, + 0.41582074761390686, + -0.08491445332765579, + 0.6355773210525513, + 1.392914056777954, + 0.14010687172412872, + -0.4131084680557251, + 0.749113917350769, + -0.14709265530109406, + 0.11983732879161835, + -0.24872714281082153, + -0.20930123329162598, + -0.9960774183273315, + -0.16548605263233185, + -0.28009551763534546, + -0.3881843686103821, + 3.5928611755371094, + 3.5033555030822754, + -0.7841291427612305, + -0.3372917175292969, + -0.9077785611152649, + 0.18120825290679932, + 0.388713538646698, + -0.7551993131637573, + 0.44863998889923096, + -0.22187836468219757, + 0.018966376781463623, + -0.5198910236358643, + 1.308159589767456, + 0.2128329873085022, + -1.3812179565429688, + -0.342982679605484, + 0.39776474237442017, + 0.4270828366279602, + -0.581788182258606, + -0.9458949565887451, + -0.8677456378936768, + -0.39229506254196167, + 0.02881038188934326, + -0.582219123840332, + -0.694584846496582, + 1.1253328323364258, + 0.07747486978769302, + 0.8657785654067993, + -0.2819458246231079, + -0.17162132263183594, + -1.254827857017517, + -0.7704883813858032, + -1.0409585237503052, + -0.1649344116449356, + -0.8930377960205078, + 0.1422564834356308, + -0.572639524936676, + 0.8918157815933228, + 0.47266751527786255, + -0.7194091081619263, + -0.0829840674996376, + -0.5092648267745972, + 1.340071439743042, + -1.0465097427368164, + -0.6048539280891418, + -0.3317873477935791, + 1.1426117420196533, + 0.7641005516052246, + -0.1274147778749466, + 0.48610228300094604, + 0.013942748308181763, + 0.07825049012899399, + -0.3910464942455292, + 1.017453670501709, + -1.0462255477905273, + 0.9351263642311096, + -0.6347616314888, + 0.9472492933273315, + 0.2655748128890991, + -0.7502021789550781, + 0.31913378834724426, + -0.6667221188545227, + -0.3380815386772156, + -0.6202064156532288, + -0.2502228319644928, + 0.3753843605518341, + 0.5499740839004517, + -0.45725947618484497, + -0.8778083324432373, + 0.7159550786018372, + 0.2371424436569214, + 2.997987747192383, + 0.3571875989437103, + 4.122473239898682, + 488.2902526855469, + -0.8508025407791138, + -0.6172552704811096, + -0.7239929437637329, + -0.6249412298202515, + 0.1351146399974823, + 2.230909824371338, + -0.11238383501768112, + -1.4751505851745605, + -1.3618414402008057, + -1.3245736360549927, + -0.2653900384902954, + -0.8462250232696533, + 0.8836115002632141, + 0.06575953960418701, + 0.26489561796188354, + 0.42946767807006836, + -0.011054426431655884, + -0.4112071692943573, + 0.40385541319847107, + 0.4107075035572052, + -0.3840044438838959, + 0.24836188554763794, + -0.5976323485374451, + -0.16471225023269653, + 0.7533339262008667, + -0.832862138748169, + -0.11144395172595978, + -0.05932942032814026, + 0.3348793685436249, + 0.2489454597234726, + 0.45060253143310547, + -0.5737272500991821, + -0.32892507314682007, + -0.42561808228492737, + -0.5854438543319702, + 0.17284747958183289, + 0.2131562978029251, + -0.4302026033401489, + -0.11422625184059143, + -0.42613959312438965, + 0.9538027048110962, + 0.09559230506420135, + 0.15711374580860138, + 0.04459671676158905, + -0.20361678302288055, + 0.07894058525562286, + 0.3951910138130188, + 0.42397838830947876, + -0.2451024353504181, + 1.3062727451324463, + 0.18413905799388885, + -0.6110050678253174, + 0.17155158519744873, + 0.5537867546081543, + -0.3161754310131073, + -0.33708399534225464, + -0.9308716058731079, + -0.2531859874725342, + 0.5229983329772949, + -0.23900465667247772, + -0.33486002683639526, + 0.10446666181087494, + 0.8028192520141602, + 0.5133847594261169, + -0.19798991084098816, + 0.2942478358745575, + -0.39822453260421753, + -0.23849311470985413, + 0.7464388608932495, + 0.2348167449235916, + -0.1594800055027008, + 0.7017725706100464, + -0.09573547542095184, + -0.5901051163673401, + 0.7412848472595215, + -0.5491797924041748, + -0.021967202425003052, + -0.36268651485443115, + -0.022267669439315796, + -0.28831008076667786, + 0.4423068165779114, + -0.6874914169311523, + 0.20882143080234528, + 0.22247204184532166, + 0.14874649047851562, + 0.5256584882736206, + 0.29585006833076477, + -1.2871392965316772, + -0.3086066246032715, + 0.2686992287635803, + -0.08288121968507767, + -1.854112982749939, + -0.14423556625843048, + -0.7919942736625671, + 0.20550625026226044, + -0.2664918601512909, + -0.3264744281768799, + -0.11857694387435913, + 1.5305118560791016, + 0.8148282170295715, + 0.18158955872058868, + 0.2854631543159485, + 0.2907502055168152, + 0.4228476285934448, + -0.5577698945999146, + 0.277946412563324, + -0.9426112174987793, + -0.4207225739955902, + -0.056587427854537964, + -0.0491359680891037, + -7.369939804077148, + 0.37734732031822205, + -0.6348859071731567, + -0.3318824768066406, + -0.2832849323749542, + 0.29742860794067383, + -0.29108476638793945, + 0.09579269587993622, + -1.5942370891571045, + -0.2586520314216614, + 0.7376424074172974, + -2.697861433029175, + 0.1470087766647339, + -0.004874721169471741, + -0.33017879724502563, + -0.5464096069335938, + 0.4270498752593994, + -0.025215566158294678, + -0.43772923946380615, + 3.379338502883911, + 0.020239338278770447, + 0.10534065961837769, + -0.10981327295303345, + 0.5409107804298401, + -0.366900771856308, + -0.1650182157754898, + 0.37673038244247437, + -0.016079366207122803, + 0.48408839106559753, + 0.32261544466018677, + -0.313257098197937, + 0.006289154291152954, + 0.5826155543327332, + -0.15827065706253052, + 9.635527610778809, + -0.09126818925142288, + 0.8037229180335999, + 0.34187424182891846, + 0.561847448348999, + -0.6520162224769592, + -0.018435005098581314, + 0.7126293182373047, + -0.47032904624938965, + 0.31689339876174927, + -0.9483275413513184, + -0.5029628872871399, + -0.2917259931564331, + -0.2646714746952057, + -0.5998138785362244, + -0.4042696952819824, + -0.30834177136421204, + 0.43186017870903015, + 0.07628270983695984, + 0.48063212633132935, + -1.4752097129821777, + -0.34413987398147583, + 0.020896345376968384, + 0.34482845664024353, + 0.39205408096313477, + 1.4242876768112183, + -0.14947639405727386, + 0.03130897879600525, + 0.11065284162759781, + 0.3192574679851532, + 0.3148733079433441, + -0.8334310054779053, + 0.33691129088401794, + 0.7142802476882935, + -0.14918680489063263, + 0.1927354484796524, + -0.6019052863121033, + -0.8510074615478516, + 0.15235663950443268, + -0.11577944457530975, + 0.18658021092414856, + -1.1513080596923828, + -0.37158092856407166, + 0.3143993616104126, + -0.9974075555801392, + -1.1603440046310425, + -0.08752091974020004, + 0.2646513283252716, + -1.5977648496627808, + 0.34746336936950684, + -0.5852221846580505, + -1.1164988279342651, + 0.4987262487411499, + -0.35344403982162476, + -0.3380235433578491, + -0.320780873298645, + -0.4924485385417938, + -0.26083245873451233, + 1.0931158065795898, + -0.7706677913665771, + -0.42746877670288086, + 0.031639933586120605, + 0.5122264623641968, + -0.3845297694206238, + -0.1656067967414856, + 1.483701229095459, + 0.5851056575775146, + 0.48819899559020996, + 0.8115295767784119, + 1.0186151266098022, + -0.11023814231157303, + -0.7612695097923279, + -0.6842600107192993, + 0.6567152738571167, + -0.22015847265720367, + 0.45862650871276855, + 0.552687406539917, + 0.5494910478591919, + -2.6255640983581543, + 0.32305794954299927, + 1.0850650072097778, + 0.23376348614692688, + 0.8379555940628052, + 0.12256007641553879, + 0.7216413021087646, + -0.2133539617061615, + 0.18069499731063843, + 0.7602221965789795, + -0.7330774664878845, + -0.3757781386375427, + -0.1591663956642151, + -2.0060818195343018, + 1.0460965633392334, + 0.09752446413040161, + -0.6733306050300598, + 0.11156822741031647, + 0.6753724217414856, + -0.530765175819397, + 1.0740777254104614, + 0.6885031461715698, + 0.14586900174617767, + 0.034445613622665405, + 0.27614495158195496, + -0.002463720738887787, + 2.572920799255371, + -1.0996432304382324, + -0.4289250075817108, + 0.22581152617931366, + 0.3928768038749695, + -0.5082072615623474, + -0.2687276303768158, + -0.7123584747314453, + -0.8145756721496582, + -0.04610307514667511, + -0.17679950594902039, + 0.7825135588645935, + 0.06574060022830963, + -0.06383901834487915, + 0.2670571208000183, + 0.5082454681396484, + 0.18782110512256622, + 0.43294158577919006, + -0.017586886882781982, + 0.5815704464912415, + 0.6933376789093018, + -0.5514836311340332, + -0.9686824083328247, + 2.9846174716949463, + 0.3727150559425354, + 0.3604661822319031, + 0.7087154388427734, + 0.16728082299232483, + -0.8920477628707886, + -0.7794562578201294, + 0.4419842064380646, + -0.7367736101150513, + 0.3450508117675781, + 0.16627879440784454, + 0.7481304407119751, + 0.25003182888031006, + -0.2881702482700348, + -0.9242340326309204, + 0.347389280796051, + 1.8454387187957764, + -2.17814302444458, + -0.5409110188484192, + 0.04569420963525772, + 0.11954204738140106, + -0.07297615706920624, + -0.09605240076780319, + 0.35228461027145386, + -1.670708179473877, + -4.480825424194336, + -0.8515321612358093, + -0.5664015412330627, + 0.35502147674560547, + -0.6038370728492737, + 0.1057015061378479, + -4.492672920227051, + 0.1883426457643509, + -0.7514297962188721, + -0.36119407415390015, + 0.8022102117538452, + -0.6769110560417175, + 0.6043985486030579, + -1.5851616859436035, + 0.32089999318122864, + 0.17882299423217773, + 0.1728973537683487, + 0.587804913520813, + 0.39537835121154785, + -0.38916677236557007, + 0.7208463549613953, + -3.235774278640747, + 0.46945276856422424, + 0.5143802165985107, + 0.014654681086540222, + 0.2764708995819092, + -0.1820993721485138, + -0.5906785130500793, + -0.3331482410430908, + -0.8714126348495483, + 0.2400876134634018, + 1.3235408067703247, + 0.2423318773508072, + 0.08392056077718735, + 0.11480378359556198, + 0.03368498384952545, + -0.5664176344871521, + -0.6542923450469971, + 0.3473138213157654, + 0.7158488631248474, + 6.831682205200195, + 1.0415571928024292, + -0.04415401071310043, + 0.05082949995994568, + 0.05777129530906677, + 1.360403299331665, + -4.858216285705566, + 0.45560571551322937, + 0.011606290936470032, + -0.19988498091697693, + -0.9754502773284912, + -0.6870397329330444, + -0.23170720040798187, + -1.1356077194213867, + 0.6078161001205444, + -0.011308528482913971, + 0.06630589812994003, + -0.04089321196079254, + -0.6439038515090942, + 1.1113020181655884, + -0.5376312136650085, + 0.45997822284698486, + -0.6218138933181763, + 0.21467238664627075, + -4.86640739440918, + -0.6186651587486267, + 0.2702505886554718, + -0.7953864336013794, + 2.913851499557495, + 0.8780132532119751, + -1.0368759632110596, + 0.2197258323431015, + 0.25288984179496765, + 0.6456667184829712, + -0.10808868706226349, + -0.49292439222335815, + 0.27816957235336304, + -0.09570961445569992, + -0.05082191526889801, + 0.35757356882095337, + -0.12403486669063568, + -0.3009147047996521, + 0.9193717241287231, + -0.20655900239944458, + 0.23518367111682892, + -0.44815966486930847, + 0.8376805782318115, + -1.5043823719024658, + -0.11024439334869385, + 0.694881796836853, + -2.86470103263855, + -0.19228771328926086, + 0.2219873070716858, + 1.2725123167037964, + 0.6710931062698364, + 1.5109632015228271, + -0.552884578704834, + 0.37356436252593994, + -0.5959258079528809, + -0.5632480978965759, + 0.8930540084838867, + -0.1197480857372284, + -0.3565977215766907, + 0.27992960810661316, + 0.8163493871688843, + 0.038014836609363556, + -0.541392982006073, + -0.4582887887954712, + 0.16588973999023438, + 0.576511800289154, + -0.7214621305465698, + 0.06401924788951874, + 0.30240118503570557, + 0.9374830722808838, + -0.0634859949350357, + -0.07953134924173355, + 0.0726526752114296, + -0.25445181131362915, + 0.7016956210136414, + -0.9265676140785217, + 0.547688364982605, + -0.12503698468208313, + 0.11663146317005157, + 0.7656363844871521, + 0.2545890212059021, + -0.3536301851272583, + -0.001506716012954712, + -1.1364928483963013, + 0.07300910353660583, + 0.5173473358154297, + -0.05044671893119812, + -1.2388607263565063, + 0.15661108493804932, + -0.5348118543624878, + 0.09936085343360901, + 0.3395669460296631, + -0.49779775738716125, + 0.16752660274505615, + 0.010216064751148224, + -0.7232890725135803, + -0.05196589231491089, + 0.788240373134613, + 0.2991330027580261, + -0.11535272002220154, + 1.3536064624786377, + -0.5992517471313477, + -0.6310921907424927, + -0.11221250891685486, + -0.368613600730896, + 0.6632566452026367, + -0.6704752445220947, + -0.14975720643997192, + -0.06349078565835953, + -0.16607321798801422, + -1.075429916381836, + -0.5227233171463013, + 0.3881259262561798, + 0.24343231320381165, + 0.09255249053239822, + -0.6096014976501465, + 0.02607911080121994, + -0.09597685933113098, + 0.1057339534163475, + 0.26037073135375977, + 1.2082871198654175, + -0.6302998065948486, + 0.1515738070011139, + -0.3544931411743164, + 0.4507133364677429, + -0.2884123921394348, + -0.0987558662891388, + -0.5264518857002258, + -0.8223188519477844, + 0.32227230072021484, + -0.4790710210800171, + -0.1133095771074295, + -0.2845938801765442, + -0.08982616662979126, + 0.4219452738761902, + -0.39313310384750366, + 0.4318700432777405, + -0.38099178671836853, + 1.5988883972167969, + -0.7777655720710754, + -0.793940544128418, + 0.4561759829521179, + -0.635127067565918, + -0.30423614382743835, + 0.8484496474266052, + -0.40733543038368225, + -0.782642126083374, + -0.5406637191772461, + -0.20258715748786926, + 0.09185492992401123, + 0.7884311676025391, + -0.01256638765335083, + 0.23788335919380188, + -0.8029665946960449, + -0.4763428270816803, + 0.21638169884681702, + -1.166308879852295, + 0.3363150954246521, + 0.07178671658039093, + 0.13121823966503143, + -0.5494387149810791, + -0.10253805667161942, + 0.7458382844924927, + 0.2304266393184662, + -0.3805595934391022, + 0.6448284387588501, + -0.03400954604148865, + -0.2650231719017029, + -0.7385467886924744, + -0.022170454263687134, + -0.1187065839767456, + -0.4428703188896179, + 0.7681870460510254, + 0.5531624555587769, + 1.6002126932144165, + -0.0749826431274414, + 0.5653389096260071, + 0.2823808789253235, + -0.3853754997253418, + -0.028934761881828308, + -0.2958635687828064, + -0.7737330794334412, + 0.19971665740013123, + -1.036321759223938, + -0.16320955753326416, + -0.5474708676338196, + 1.1326837539672852, + 1.3336517810821533, + 0.6776552200317383, + -0.10826922953128815, + -0.2570815980434418, + -0.3313554525375366, + -0.2175101637840271, + -6.149314880371094, + 0.43248122930526733, + -0.1892644762992859, + 0.06575025618076324, + 0.6306383609771729, + -3.296626567840576, + 0.4854266047477722, + 0.9128521680831909, + 0.41370928287506104, + 0.047402337193489075, + 0.2905828058719635, + 0.8439040184020996, + 0.3805984854698181, + -0.06207500398159027, + -0.18223899602890015, + -0.9676763415336609, + 0.38946446776390076, + -0.7138509750366211, + 0.08940798044204712, + 0.33706051111221313, + -0.6802623867988586, + -0.10782407224178314, + 0.3071940541267395, + 0.21011994779109955, + 0.19969624280929565, + 0.7380646467208862, + -1.0349611043930054, + -0.26626133918762207, + -0.5275329351425171, + -0.014802955090999603, + -0.3286195993423462, + -15.888961791992188, + 0.6480773687362671, + 0.2674124836921692, + 0.8761093616485596, + 0.715444803237915, + -0.9465560913085938, + 1.3831291198730469, + -0.08291952311992645, + 0.9080889225006104, + -0.709153413772583, + -0.6099313497543335, + 0.9150118827819824, + 0.08131420612335205, + 3.303246259689331, + -0.38906991481781006, + 0.6132529377937317, + 0.07363170385360718, + 0.281288206577301, + 0.05765467882156372, + 0.8396999835968018, + 0.08876585960388184, + 0.3262774646282196, + -0.2522231638431549, + -0.5133254528045654, + 0.15565325319766998, + 0.016742847859859467, + 0.20411774516105652, + -1.1259992122650146, + 0.13857130706310272, + 0.33261987566947937, + -0.1513013243675232, + 0.008255183696746826, + 0.488874226808548, + 0.9076381921768188, + -0.6306147575378418, + -2.1809449195861816, + -0.22103723883628845, + 0.32973533868789673, + -0.1059466004371643, + -0.12127147614955902, + 0.36396509408950806, + -1.0053880214691162, + 0.5029644966125488, + -0.9110007882118225, + 0.6718200445175171, + 5.201345920562744, + -0.20919588208198547, + 0.46811795234680176, + -0.6381404995918274, + -0.12353271245956421, + 0.7671797871589661, + 0.45082345604896545, + -1.9182454347610474, + 0.298538476228714, + 0.03728702664375305, + 0.12148784846067429, + -0.8938066363334656, + -0.10922926664352417, + 0.48603349924087524, + 1.3401107788085938, + -1.027076005935669, + 0.11015398800373077, + 0.3432219326496124, + -0.2170100212097168, + 1.556321144104004, + -0.2460036426782608, + -0.3378413915634155, + 0.5444364547729492, + -0.43681979179382324, + -0.8814932107925415, + 0.49985671043395996, + 1.4264578819274902, + 0.4074028432369232, + 0.015158742666244507, + 0.12174870818853378, + -0.6298409700393677, + -0.43721139430999756, + -0.4073651134967804, + 1.703301191329956, + -0.7815505862236023, + -0.6084152460098267, + 0.7275637984275818, + 0.09606657177209854, + 0.34801578521728516, + -2.749483108520508, + 0.1938336342573166, + -0.8450489044189453, + -0.25954729318618774, + -0.4874612092971802, + -1.0838665962219238, + -1.3074547052383423, + -0.45051127672195435, + 0.647395133972168, + -1.2966797351837158, + -0.3083626925945282, + 0.9306995272636414, + -0.6427614092826843, + 0.3557727336883545, + -0.14971311390399933, + -0.5772634148597717, + 1.0892399549484253, + -0.5948810577392578, + -0.11169394850730896, + -1.0114785432815552, + 0.5341165065765381, + 1.6054408550262451, + -1.1454017162322998, + -0.1487654149532318, + -0.10166370868682861, + 0.5377229452133179, + -0.08218502998352051, + 0.3817439079284668, + -0.14268532395362854, + -0.017127223312854767, + -0.698636531829834, + -0.7683253288269043, + 0.22459086775779724, + -0.2750369906425476, + -0.36752283573150635, + -0.5899179577827454, + -0.7436984777450562, + 1.7163646221160889, + 0.47325628995895386, + 0.3053591251373291, + 0.8054672479629517, + -0.07859967648983002, + -0.3088698387145996, + 0.23097145557403564, + -0.5781786441802979, + -0.11924459040164948, + -0.26119348406791687, + -0.1446554958820343, + -0.8076830506324768, + -0.1413363516330719, + -0.1061813086271286, + 3.844186305999756, + 0.26216211915016174, + -2.8137073516845703, + 1.2793217897415161, + 0.07787838578224182, + -0.18917334079742432, + -0.13586029410362244, + -0.7169165015220642, + 1.3694663047790527, + -0.14662864804267883, + 0.5402584671974182, + -0.21858760714530945, + 0.25240781903266907, + 0.6360363364219666, + 0.20135682821273804, + 2.601065158843994, + -1.417220115661621, + -0.5959542393684387, + -0.022918030619621277, + -1.0081405639648438, + 0.08046935498714447, + -0.022428158670663834, + 0.13720309734344482, + 0.005896247923374176, + 1.5822864770889282, + 0.2143864780664444, + -0.6128341555595398, + 0.4936387538909912, + -3.3566291332244873, + -0.23319563269615173, + -0.7510186433792114, + 0.3588925898075104, + 0.4558367431163788, + 0.02409033477306366, + 1.2743420600891113, + 0.4001314640045166, + 0.32922038435935974, + -0.7090795040130615, + -0.7884976267814636, + 0.4118139147758484, + -0.4070132076740265, + 0.7863361239433289, + -1.2438629865646362, + -0.0386848971247673, + 0.04480086266994476, + 1.1596980094909668, + -0.3761867582798004, + -0.1316487342119217, + -0.7139047980308533, + -0.20446467399597168, + -2.4460792541503906, + 0.5637187957763672, + 0.7567381858825684, + -0.3500492572784424, + -1.9826853275299072, + 0.0677739679813385, + -0.8263899683952332, + -0.3567979633808136, + -0.48628026247024536, + -1.9128978252410889, + -0.19259336590766907, + -0.5962191224098206, + -0.4155522584915161, + 0.18473100662231445, + 0.33701497316360474, + -0.21991728246212006, + 0.24169209599494934, + 0.647162914276123, + 0.41843292117118835, + 0.6768830418586731, + -0.41820985078811646, + -0.03999105095863342, + 0.023658812046051025, + 0.52076655626297, + -0.4835076630115509, + -0.21545393764972687, + -0.6115115880966187, + 0.07271550595760345, + -0.4162660837173462, + -0.5002155900001526, + -0.5291718244552612, + 0.3512018918991089, + -0.7299548983573914, + 0.13640853762626648, + 0.5723496675491333, + 0.24491021037101746, + 0.12313632667064667, + -0.29047009348869324, + -0.6826163530349731, + -0.3702479898929596, + -0.2831663489341736, + 0.787322998046875, + 0.6262288689613342, + -0.4035484492778778, + 0.7182466983795166, + 0.410763680934906, + -0.6452363729476929, + -1.182141661643982, + -0.48471635580062866, + -1.140876293182373, + 0.021411940455436707, + -0.08931948244571686, + -0.2814350128173828, + -0.13865140080451965, + 1.108364462852478, + 0.09600845724344254, + 1.0269848108291626, + 0.2468993365764618, + 0.39863666892051697, + 0.09536422789096832, + 0.11999234557151794, + 0.7410159111022949, + -0.9987346529960632, + 0.031695008277893066, + 0.36099785566329956, + -0.1454673409461975, + -0.037693046033382416, + 1.1356654167175293, + 0.4229061007499695, + 0.9872615337371826, + 0.5051906108856201, + -0.30827105045318604, + -0.630835771560669, + 0.9133321642875671, + -0.9285150766372681, + 0.8146045207977295, + 0.4700334966182709, + -1.2126872539520264, + 0.5396438241004944, + -0.04718957841396332, + 0.3280884623527527, + 0.6399850845336914, + -0.6148581504821777, + -0.2600313127040863, + 1.037691593170166, + 1.1414272785186768, + 0.8257012367248535, + -0.005575522780418396, + 0.0431039035320282, + 0.6292771100997925, + -0.8981033563613892, + -0.5805619955062866, + -0.19260798394680023, + 1.12294602394104, + 0.6138796210289001, + -0.4206081032752991, + 0.4696153700351715, + 0.3081066608428955, + -0.2540718913078308, + 0.5962469577789307, + 0.6214570999145508, + 3.501448631286621, + -0.13742783665657043, + 1.891751766204834, + -0.040113747119903564, + -0.5475739240646362, + -0.15865088999271393, + 1.0473511219024658, + -0.16445228457450867, + -0.013380080461502075, + -0.31144118309020996, + -0.29442813992500305, + 0.5830310583114624, + 0.2763519287109375, + -3.5133705139160156, + 0.6287684440612793, + 0.08963384479284286, + -0.21078705787658691, + 0.04191729426383972, + 0.27698850631713867, + -5.279708385467529, + 0.15976010262966156, + -0.05251200124621391, + 0.3459424376487732, + -0.14501050114631653, + 0.050745852291584015, + -0.8211952447891235, + 0.5154410600662231, + -1.2204567193984985, + 0.541459321975708, + 0.023525193333625793, + -0.3750700354576111, + 0.8558154702186584, + -0.10012304782867432, + 1.3497569561004639, + -0.2806146740913391, + -0.8134095072746277, + 0.24464698135852814, + -0.8175399303436279, + 0.19595512747764587, + -0.1304686963558197, + -0.196746826171875, + -1.0185235738754272, + -2.2662484645843506, + 0.22124283015727997, + 0.22757965326309204, + -0.04506031796336174, + 0.899321973323822, + -0.6466032266616821, + -0.13369688391685486, + -0.5224213004112244, + -0.4004499316215515, + 0.016241073608398438, + -1.8595683574676514, + 0.5266231298446655, + -3.0402262210845947, + -0.12669923901557922, + -0.04175001382827759, + -1.8313977718353271, + -0.10245789587497711, + 0.5245605707168579, + -0.12142904847860336, + -0.26897281408309937, + -0.23282040655612946, + -0.37898820638656616, + -0.1250181496143341, + -0.06511729955673218, + -0.44939756393432617, + -1.1324985027313232, + 0.18816079199314117, + -0.28432920575141907, + 1.294684886932373, + -0.3985117971897125, + 0.4267003834247589, + 0.29450854659080505, + -0.23624268174171448, + 0.05202377587556839, + -0.3936641812324524, + -0.5033529996871948, + -0.22532527148723602, + 1.2872246503829956, + 0.6104683876037598, + -0.470162957906723, + -0.08019493520259857, + -0.25402238965034485, + -0.22794793546199799, + 0.14903782308101654, + -1.3550856113433838, + -0.0021085888147354126, + -0.49699175357818604, + -0.1586921513080597, + 0.22630304098129272, + 0.08210770040750504, + 1.122938632965088, + 0.4685463309288025, + -0.38191282749176025, + -0.037279434502124786, + -0.24255847930908203, + -0.25146928429603577, + 0.3286379277706146, + -0.548319399356842, + -0.3010314702987671, + 0.43199020624160767, + 0.017252877354621887, + 0.49473240971565247, + -0.6227160692214966, + 0.15776419639587402, + 1.1678372621536255, + -0.13860799372196198, + -0.3583552837371826, + -0.22346848249435425, + -0.37686774134635925, + 0.30576613545417786, + 0.3572160005569458, + 0.3904242515563965, + -0.8482397794723511, + 0.3151605427265167, + 0.8865675926208496, + -0.3198702335357666, + 0.02453121542930603, + -0.5729196667671204, + 0.1764400601387024, + -0.6821225881576538, + -0.7404242753982544, + -0.21282917261123657, + -0.9911458492279053, + -0.7932838797569275, + 0.699598491191864, + -0.9265718460083008, + -0.4143563508987427, + 0.4065190553665161, + 0.23485806584358215, + 0.0173063725233078, + -0.060323119163513184, + -0.6370337009429932, + 0.5578001737594604, + -0.9299322366714478, + -0.051842838525772095, + -1.1027151346206665, + -0.03955024480819702, + -0.11554091423749924, + -0.3585057258605957, + -0.14546096324920654, + -1.309342622756958, + -0.4181196093559265, + -0.9736178517341614, + 0.8313076496124268, + 0.005322694778442383, + 0.3720678687095642, + 0.563495397567749, + -0.3774077892303467, + -0.83205246925354, + -0.34913480281829834, + 1.4123945236206055, + -0.5267592072486877, + -0.1729813516139984, + -0.4962499439716339, + -0.38149482011795044, + -0.5260848999023438, + 0.04096844047307968, + 0.2996416687965393, + -0.2595384120941162, + 0.25621500611305237, + -0.08321493864059448, + 0.4962995648384094, + 0.4845843017101288, + 0.1992247849702835, + 0.11131361126899719, + 0.3987489342689514, + 0.2488844245672226, + 0.04728636518120766, + 0.2797432243824005, + 0.6002997159957886, + 0.20574632287025452, + 0.30041882395744324, + -0.12457387149333954, + 0.12156406044960022, + -0.10677915811538696, + -0.205171138048172, + 0.28141993284225464, + -0.26772013306617737, + -0.8826287984848022, + -0.1972687840461731, + 0.5514196157455444, + -0.5148943662643433, + 0.2417028844356537, + 0.25616729259490967, + -0.9172600507736206, + 0.9985631108283997, + 0.17800024151802063, + -0.6434017419815063, + 0.3718299865722656, + 0.0787123441696167, + -0.7538992762565613, + 0.027357764542102814, + -0.5969861149787903, + -0.5779106020927429, + 0.5151836276054382, + 1.2970190048217773, + 0.21206821501255035, + 0.4097866117954254, + -2.1449639797210693, + 1.6242682933807373, + -0.6742891073226929, + 0.3861843943595886, + -0.08626953512430191, + -0.3432008922100067, + -0.15448293089866638, + -0.2120002806186676, + 0.01614953577518463, + -0.22417525947093964, + 0.2635462284088135, + 0.07980550080537796, + -0.4444488286972046, + 0.6528710722923279, + 1.2780063152313232, + 0.624153733253479, + 0.384014368057251, + -0.11174047738313675, + -0.2598973512649536, + -0.30014657974243164, + -0.5402070879936218, + 0.8686450719833374, + 0.12471739947795868, + 0.5230908393859863, + -0.7787073850631714, + -2.658165693283081, + -0.7490584850311279, + 0.07195371389389038, + 0.009121432900428772, + 1.2323905229568481, + 2.1275153160095215, + 0.013691343367099762, + 0.7109212279319763, + -0.3145010769367218, + 0.26829081773757935, + -0.5164141654968262, + -0.13461250066757202, + -0.3851228356361389, + -0.33224308490753174, + -0.024554207921028137, + 0.011072978377342224, + 0.04467718303203583, + -0.06493794918060303, + -0.0702648013830185, + 0.6840177178382874, + -0.618491530418396, + 0.4457302987575531, + 0.16017264127731323, + -2.368725299835205, + -0.1674932837486267, + -1.1132001876831055, + 0.934404730796814, + 0.5864737033843994, + 0.4719497561454773, + 0.19156010448932648, + 0.20332218706607819, + -0.05744980275630951, + 0.034200623631477356, + 0.2898436188697815, + 0.11449913680553436, + -0.3684110641479492, + 0.3140840232372284, + -0.01718229055404663, + 0.4414946138858795, + -0.2671493887901306, + 0.2234228551387787, + 0.5920072793960571, + -0.14899426698684692, + 0.7902634143829346, + -0.1338011622428894, + -0.8458359241485596, + -0.08203159272670746, + -0.14512042701244354, + -0.4128059148788452, + -0.16546234488487244, + -4.018583297729492, + 0.03627437353134155, + 0.47080719470977783, + 0.38235610723495483, + -1.6808909177780151, + 0.6906571984291077, + -0.10585129261016846, + 0.4734448194503784, + 0.2660890221595764, + 0.0023118630051612854, + -0.04167075827717781, + -1.0411335229873657, + 0.6552788019180298, + -0.20019406080245972, + -0.5340813398361206, + -0.6247625350952148, + -1.1193480491638184, + 0.5545694231987, + 0.3510633409023285, + -0.00837370753288269, + -1.1033222675323486, + 0.7788625955581665, + 0.09805324673652649, + -0.10125075280666351, + -0.6357983350753784, + -0.5555120706558228, + -0.06746810674667358, + -0.38159555196762085, + 0.18160654604434967, + 0.9059612154960632, + -0.21989674866199493, + 1.040340542793274, + -0.7219821214675903, + -1.0775560140609741, + -0.5081749558448792, + -0.9915292859077454, + 0.4119434356689453, + -0.6540608406066895, + -0.19142138957977295, + -0.15528026223182678, + 0.01518222689628601, + -3.735913038253784, + -0.00924605131149292, + -0.20777744054794312, + -0.5881617665290833, + 0.171514630317688, + 0.08804282546043396, + -0.10019508004188538, + -10.651754379272461, + -0.5681533813476562, + -0.6385273933410645, + 0.4460608959197998, + 0.11045487225055695, + -0.38100236654281616, + 0.41334712505340576, + -0.7031165361404419, + 0.31988707184791565, + -0.3570098876953125, + -0.06968501210212708, + 0.25689899921417236, + -1.5950663089752197, + -0.13749578595161438, + -1.055044412612915, + -0.6041999459266663, + 0.6280769109725952, + -0.2776975631713867, + 0.20258671045303345, + 0.38636890053749084, + -1.2997386455535889, + 0.0757165253162384, + -0.8521132469177246, + -0.5104659199714661, + 0.3892118036746979, + -0.2540951669216156, + 0.2430225908756256, + -0.5640240907669067, + 0.34110352396965027, + 0.20684866607189178, + -0.8543217182159424, + -0.448885977268219, + 1.26786470413208, + -0.28741711378097534, + 0.06496679782867432, + 0.4496564567089081, + -0.060186341404914856, + 0.35575827956199646, + 0.9464462399482727, + 0.22759222984313965, + -0.4034357964992523, + 0.08990639448165894, + 0.21772482991218567, + 0.37177348136901855, + -6.015352249145508, + 1.7927371263504028, + 1.4152188301086426, + -0.1579035520553589, + 0.3789413571357727, + 0.3914995789527893, + -0.10485648363828659, + 0.42574241757392883, + 0.18438823521137238, + -0.024139463901519775, + -0.8457694053649902, + 0.6037420034408569, + 0.24636295437812805, + 1.0037881135940552, + 0.31198564171791077, + 0.6274398565292358, + -1.8151130676269531, + -0.11938970535993576, + -0.05998827517032623, + -0.5670021176338196, + -0.3583240509033203, + 0.3672478497028351, + -0.8898476362228394, + -0.2608620524406433, + -0.9257367849349976, + -0.26846402883529663, + 0.0535944327712059, + 0.581281304359436, + 10.174663543701172, + -0.27332597970962524, + 0.4588548541069031, + -0.4063059985637665, + -0.20281514525413513, + 1.4946503639221191, + 0.14785051345825195, + 0.17327329516410828, + -0.7957300543785095, + -0.5392885208129883, + -0.31727880239486694, + -0.4362080693244934, + -0.6830301284790039, + -0.265637069940567, + -0.09018015116453171, + -0.5345657467842102, + -1.0843489170074463, + 1.78556227684021, + -0.6288752555847168, + -0.2030174732208252, + 0.015687786042690277, + 0.0003956258296966553, + -0.060989901423454285, + -0.4745422601699829, + 0.380995512008667, + 1.4788248538970947, + 2.1201252937316895, + 0.006598740816116333, + -0.6039009094238281, + 0.3261137902736664, + -0.3813592195510864, + -0.5017093420028687, + -1.0887326002120972, + -0.13327519595623016, + -0.04216602444648743, + 1.2165050506591797, + -0.743451714515686, + -0.7251814603805542, + -2.6271352767944336, + 0.7815340161323547, + 0.36865508556365967, + -0.3045611083507538, + 0.08979495614767075, + 0.15141206979751587, + -1.81034255027771, + -0.3003978133201599, + 0.42394551634788513, + 1.2724450826644897, + -0.7347694039344788, + 0.4955434203147888, + -0.06791791319847107, + -2.469027042388916, + -0.32142210006713867, + 0.3953411877155304, + 1.0222094058990479, + -0.1336970031261444, + -0.07641933858394623, + 0.35327789187431335, + -0.06820295751094818, + 1.0025193691253662, + -1.197789192199707, + 0.22038307785987854, + -0.7242729663848877, + 0.03386421501636505, + 0.4093537926673889, + 0.06677580624818802, + 0.1199726015329361, + 0.772657573223114, + -0.34025833010673523, + 0.3243796229362488, + 0.06547249853610992, + -0.4769384562969208, + 0.12553748488426208, + 0.33700162172317505, + 0.0863569974899292, + 0.051979802548885345, + -0.6711994409561157, + -0.14457136392593384, + -1.217391014099121, + 0.3737587332725525, + -1.8773233890533447, + -0.4124497175216675, + 0.06390663981437683, + 0.24029865860939026, + -0.16451925039291382, + 0.0989893451333046, + -0.35012757778167725, + -0.5378254652023315, + 0.055948078632354736, + -0.28059500455856323, + -0.12170016020536423, + 0.32663410902023315, + -1.3970328569412231, + -1.7969715595245361, + -0.18223285675048828, + 1.191504716873169, + -0.8462836742401123, + -0.9748399257659912, + 0.6000139713287354, + 0.21640773117542267, + -0.9873977303504944, + 0.5909446477890015, + -2.229360818862915, + 1.64274263381958, + 0.1343434900045395, + 0.02158397063612938, + -0.3324369192123413, + 0.4542606472969055, + -0.3752667009830475, + -0.3248697519302368, + -0.46457716822624207, + 0.2776954770088196, + -0.10510797053575516, + 0.544277548789978, + 0.642063558101654, + 0.0909663587808609, + 0.27126580476760864, + 1.14385986328125, + -0.05622017756104469, + 0.1096625030040741, + -0.34013622999191284, + 0.21052978932857513, + 0.32068294286727905, + 0.380985826253891, + -0.5290120244026184, + -0.42040377855300903, + -0.46027153730392456, + -0.37048783898353577, + -0.4517361521720886, + -0.050206638872623444, + 0.32694947719573975, + -0.9108973741531372, + 1.129848837852478, + 0.5346716642379761, + 0.6810858249664307, + -0.09081839770078659, + -0.9672896862030029, + -0.26942265033721924, + 0.8807500004768372, + -0.1646779477596283, + 0.004045888781547546, + -0.12334564328193665, + 1.4229600429534912, + 0.15752458572387695, + 8.74012279510498, + 0.008822187781333923, + 1.3685576915740967, + -0.24290871620178223, + 0.31307607889175415, + -0.21131524443626404, + -0.8629247546195984, + -0.895693302154541, + -0.49785029888153076, + 0.8046890497207642, + 0.08119218051433563, + 0.038498811423778534, + 0.7262532114982605, + -0.33821505308151245, + 0.1950930953025818, + 0.5597072243690491, + 0.8739386796951294, + 0.45884889364242554, + -0.017444521188735962, + 0.43645793199539185, + 0.14447258412837982, + 0.0013546720147132874, + 1.4922593832015991, + -0.37346506118774414, + 0.062405601143836975, + -3.8003861904144287, + -0.22819621860980988, + -0.29841774702072144, + -0.2224217653274536, + 0.13426795601844788, + -0.7020986080169678, + 1.8871053457260132, + -0.10754570364952087, + 0.3972758650779724, + 0.11028116941452026, + 0.49065953493118286, + -0.11201940476894379, + 0.33635857701301575, + -0.01769135147333145, + 0.4731976091861725, + -0.5395122170448303, + 0.4333418905735016, + -0.3797644078731537, + -0.08358979225158691, + -1.6459310054779053, + -0.6007323265075684, + -0.4346163272857666, + -0.5138675570487976, + 0.11092778295278549, + 0.05434023216366768, + 1.6349493265151978, + 1.1252543926239014, + -1.0627260208129883, + 0.889055609703064, + 0.5463074445724487, + -1.1136858463287354, + 0.8504983186721802, + -1.0338349342346191, + -0.45549362897872925, + 0.20670819282531738, + 0.2883119583129883, + -0.03508811071515083, + -0.04986298084259033, + 0.08899664133787155, + 0.37376952171325684, + -1.0858808755874634, + 0.6316333413124084, + 0.46239617466926575, + 0.6767633557319641, + -0.4772045910358429, + 0.30182796716690063, + -1.2155673503875732, + 0.2215515375137329, + 0.48951587080955505, + -0.3420858383178711, + -0.03399071842432022, + -0.19177158176898956, + -0.5992878675460815, + 0.748549222946167, + -0.2696778178215027, + -1.5337278842926025, + -0.8617779612541199, + 0.24849215149879456, + -0.4888705611228943, + 0.22606033086776733, + 0.46167051792144775, + -0.6027792096138, + -0.6733918190002441, + 0.7747046947479248, + 0.4854016900062561, + -0.4064350724220276, + 0.2964729070663452, + -0.37286949157714844, + 0.038858652114868164, + -0.6163694858551025, + 0.5648512840270996, + 0.1091315746307373, + -0.10757935047149658, + -0.3433920741081238, + 0.0325167141854763, + 0.06265867501497269, + 0.9929764866828918, + -0.29416489601135254, + 0.3708283305168152, + 0.20826369524002075, + 0.2924412488937378, + 2.142538547515869, + 1.5493048429489136, + 0.6477192044258118, + -6.780346870422363, + 0.3108087182044983, + 0.27527162432670593, + -0.40183764696121216, + 0.3894693851470947, + -15.672719955444336, + 0.023819491267204285, + 0.09594402462244034, + 0.002247855067253113, + -0.3498634696006775, + 0.47126930952072144, + -3.1427910327911377, + 0.3169156610965729, + -0.8783719539642334, + 0.26758021116256714, + -0.37521854043006897, + 0.36416158080101013, + -0.527990996837616, + -0.027555953711271286, + 0.7904060482978821, + -0.6635563373565674, + -0.7635256052017212, + 0.0317322313785553, + 0.3575236201286316, + 0.5091052055358887, + -0.14706972241401672, + 0.2889626622200012, + 0.18713349103927612, + -0.2913582921028137, + 1.00164794921875, + -0.9669328331947327, + -1.1777468919754028, + -0.9206641912460327, + -0.9050847291946411, + 1.0538334846496582, + 0.13051725924015045, + -0.5832038521766663, + 1.1970341205596924, + -2.0294651985168457, + 1.1415834426879883, + -0.750034749507904, + -0.3268067538738251, + 0.24457311630249023, + -0.2112184464931488, + -1.0296413898468018, + 0.3614416718482971, + -0.2132566273212433, + 1.1064238548278809, + -0.9247519969940186, + -0.18102271854877472, + 0.05870047211647034, + 0.28063011169433594, + -0.6901625990867615, + 2.496734619140625, + -1.4508998394012451, + -0.5897144079208374, + -0.5021761655807495, + 0.006149716675281525, + -1.4698797464370728, + 0.9617185592651367, + -0.008621692657470703, + -5.023646354675293, + -0.22960886359214783, + -2.2216029167175293, + 0.1645319163799286, + 0.44945576786994934, + -0.49848872423171997, + 0.6156154274940491, + -0.04596354439854622, + 0.10920872539281845, + -0.10713137686252594, + 1.3355844020843506, + 0.16967493295669556, + 0.45241472125053406, + 0.41754716634750366, + 1.1761033535003662, + 0.3375362753868103, + 0.3858536183834076, + 0.029440298676490784, + 1.137778639793396, + 0.11383414268493652, + -0.5846295356750488, + -0.17721521854400635, + -1.5138771533966064, + 0.06195460259914398, + -0.21436721086502075, + -0.05774348974227905, + 0.5066099166870117, + -0.5374518632888794, + -0.5378895401954651, + 0.4070424735546112, + -1.0092391967773438, + 0.41965603828430176, + -2.2923741340637207, + -0.5280884504318237, + 0.361358106136322, + -0.7771522998809814, + 0.1907312273979187, + 1.1951178312301636, + -1.6117844581604004, + -0.7215571999549866, + -0.9428020715713501, + -0.29937607049942017, + -0.9138814210891724, + 0.13761630654335022, + -0.3276884853839874, + -0.05758785828948021, + -0.1824730783700943, + -0.15168574452400208, + 0.20420919358730316, + 0.11599748581647873, + -0.24580416083335876, + 0.1898728907108307, + -7.1111555099487305, + -0.9607067704200745, + -0.0099593885242939, + -0.15447205305099487, + 0.3484055995941162, + -2.666813373565674, + -0.49018293619155884, + 0.16703522205352783, + -0.03755080699920654, + -0.5824081301689148, + 0.2406790852546692, + 0.23383475840091705, + 0.4192211627960205, + 0.42960989475250244, + -0.19882848858833313, + -1.0533339977264404, + 0.1178971379995346, + -0.7571977376937866, + 0.3064117729663849, + 0.9408798813819885, + -0.04226406663656235, + -0.7715400457382202, + 0.13512034714221954, + 0.7661651372909546, + 0.4820646643638611, + 0.2786746025085449, + 0.10600869357585907, + 0.028940171003341675, + 0.39272671937942505, + -2.1899592876434326, + -0.5061315298080444, + 0.008175782859325409, + -0.5808954834938049, + -5.495291233062744, + -0.334095299243927, + -0.3060828447341919, + 0.12068550288677216, + 0.1077435091137886, + -1.4898821115493774, + -0.6137086153030396, + -0.15848161280155182, + -0.7269155979156494, + 0.1394561231136322, + 0.1582995057106018, + 0.37563884258270264, + 0.27679651975631714, + -0.11575578153133392, + 0.23328638076782227, + 0.4771519601345062, + 0.9227536916732788, + 0.3994612693786621, + -0.09060156345367432, + 0.49905815720558167, + 0.11073967069387436, + 0.8114632368087769, + 0.025150209665298462, + 0.44451606273651123, + -0.42967453598976135, + -0.6428411602973938, + 0.7991142272949219, + -0.36631128191947937, + 0.8449660539627075, + 0.6575990915298462, + -0.834021806716919, + 0.24731199443340302, + -0.23480170965194702, + 1.2310562133789062, + 0.3883468806743622, + -2.660507917404175, + 0.868655264377594, + -1.127698302268982, + 0.5130553245544434, + 0.06854619085788727, + 0.6604777574539185, + -0.0400267094373703, + 0.0752536952495575, + -0.7039734721183777, + -0.6254662871360779, + 0.48493945598602295, + -0.64485764503479, + -0.5262860059738159, + -0.30264413356781006, + -0.6768644452095032, + -0.008301883935928345, + 2.047518014907837, + 0.23141083121299744, + 0.09762126952409744, + 0.5097653865814209, + -0.8074198365211487, + -0.19359269738197327, + -0.2798544764518738, + 2.1486778259277344, + -0.0923856645822525, + -0.026985570788383484, + 1.0451306104660034, + 0.2649288773536682, + -0.5813959836959839, + -0.5252367258071899, + -0.19311469793319702, + 0.972137987613678, + 0.01463918387889862, + -0.7341102361679077, + -0.29082372784614563, + -0.14823508262634277, + -0.5915520191192627, + 0.2987169325351715, + -0.2534788250923157, + 0.7039986252784729, + -0.3793601989746094, + 0.2511744499206543, + 0.2608353793621063, + 0.690679669380188, + -0.8283936381340027, + 0.04163481295108795, + -0.4541686177253723, + 0.015939071774482727, + 0.20182476937770844, + -0.24322910606861115, + -0.26186349987983704, + -0.38242754340171814, + 0.5690597891807556, + -0.24872702360153198, + -0.03055315464735031, + -0.5921780467033386, + -0.7617796063423157, + 0.42623060941696167, + 0.1528807133436203, + 1.0295145511627197, + -0.38424691557884216, + 0.5449966192245483, + -0.21283750236034393, + 0.3397877812385559, + -0.11074750870466232, + 0.07016806304454803, + -0.6970336437225342, + -0.7488813400268555, + -0.5587698221206665, + -1.018447995185852, + -0.854991614818573, + 0.5403101444244385, + -0.2403465211391449, + -0.8632318377494812, + -0.3211477994918823, + 0.5814815759658813, + -0.06299899518489838, + -0.6788420677185059, + 0.7403070330619812, + -0.4391595721244812, + 0.06255476921796799, + 3.1738693714141846, + 0.3321765065193176, + 0.2701946198940277, + 0.18649674952030182, + -0.7203090190887451, + -0.3139686584472656, + 0.4348315894603729, + 3.074030876159668, + 0.7623060941696167, + -0.22067520022392273, + -0.8167855739593506, + 1.2710068225860596, + -0.11795671284198761, + -0.3439396321773529, + 0.5125687122344971, + 0.054249703884124756, + -0.5439014434814453, + -0.9262092113494873, + 0.08595895767211914, + -2.682088851928711, + 0.5793640613555908, + -0.3229488730430603, + 1.2705563306808472, + -0.3920806050300598, + -0.1193423867225647, + 0.009678095579147339, + -0.08407232910394669, + -0.46743202209472656, + 0.6015118956565857, + 0.17188811302185059, + 0.24677357077598572, + -0.1306067854166031, + -0.07580350339412689, + -1.160151481628418, + 1.7831733226776123, + -0.00487925112247467, + 0.4311329424381256, + -0.4748377799987793, + -0.8075583577156067, + -0.17954963445663452, + 1.1964377164840698, + 2.3527488708496094, + 0.5926045775413513, + -0.19337451457977295, + 15.151253700256348, + -0.011860743165016174, + 0.6467512249946594, + 0.4236143231391907, + 0.4938485622406006, + -0.858484148979187, + -1.311728835105896, + 0.9011795520782471, + -0.11973321437835693, + -0.343595027923584, + 1.8073232173919678, + -0.03529413044452667, + -0.8183560371398926, + -0.3548514246940613, + -0.3440712094306946 + ], + "neutral_projector": { + "component_count": 1, + "components": [ + [ + 0.006235094740986824, + -0.0016294117085635662, + -0.001528066350147128, + 0.0018502144375815988, + 0.008034867234528065, + -0.018375996500253677, + 0.00436057336628437, + -0.005813265219330788, + 0.0009029200300574303, + 0.00221233069896698, + -0.0011576629476621747, + 0.002738225506618619, + -0.005142372101545334, + -0.004776523448526859, + -0.0008927163435146213, + 0.004546331241726875, + -0.0010369591182097793, + 0.0017625609179958701, + -0.008013891987502575, + 0.004748913925141096, + 0.003465797519311309, + -0.011286954395473003, + -0.0012368483003228903, + 0.010077659972012043, + 5.9153957408852875e-05, + -0.004263510461896658, + 0.034491024911403656, + -0.0011151619255542755, + -0.003965588286519051, + 0.0021673892624676228, + -0.004456501454114914, + 0.024917302653193474, + -0.007161593530327082, + -0.002971263136714697, + 0.003574402304366231, + 0.011580415070056915, + -0.004949536640197039, + 0.0027941609732806683, + 0.006865072995424271, + -0.00128921156283468, + -0.001983785070478916, + 0.0004651961207855493, + -0.006863094866275787, + -0.00832317303866148, + 0.0024725371040403843, + 0.001188980182632804, + 0.0025475339498370886, + -0.0008755087619647384, + 0.009029732085764408, + -0.0035183585714548826, + 0.0005622169701382518, + 0.016708241775631905, + 0.0010516479378566146, + 0.0036487546749413013, + -0.005281021818518639, + -0.00568497646600008, + 0.0005569867789745331, + -0.007214609533548355, + 0.004826065618544817, + 0.0010339414002373815, + 0.00026589183835312724, + -0.00044066464761272073, + -0.005163826979696751, + 0.006853784434497356, + -0.004335356410592794, + -9.070790838450193e-05, + 0.0029243244789540768, + -0.012222148478031158, + -0.023917099460959435, + -0.005446769762784243, + -0.00351213407702744, + 0.003259232733398676, + 0.0023689488880336285, + 0.0016877759480848908, + -0.005860885605216026, + -0.0036448261234909296, + 0.003958819899708033, + 0.001522699254564941, + 0.010580272413790226, + 0.009012218564748764, + -0.010201570577919483, + -0.00605636416003108, + 0.009600981138646603, + 0.006139025557786226, + -0.002129283035174012, + -0.00377530581317842, + 0.004249006509780884, + 0.0021335138007998466, + 0.004864600021392107, + -0.0028550680726766586, + 4.0482784243067726e-05, + -0.0037075106520205736, + 0.003942503593862057, + -0.006898081861436367, + 0.012932805344462395, + 0.023514244705438614, + -0.0111400680616498, + 0.00016891666746232659, + -0.0029966726433485746, + -0.0038973025511950254, + -0.0030669711995869875, + 0.00813264586031437, + 0.012547855265438557, + 0.010988188907504082, + -0.011787476018071175, + -0.002596349688246846, + -0.00014637221465818584, + 0.0016333766980096698, + 0.003318964969366789, + -0.008398396894335747, + 0.006075081881135702, + 0.0031662879046052694, + 0.003971026744693518, + -0.0011311958078294992, + -0.00234002317301929, + -0.002182304160669446, + -0.007583714555948973, + -0.00030377687653526664, + -0.0016016567824408412, + -0.0048362938687205315, + -0.010527737438678741, + -0.004689648747444153, + -0.004070737864822149, + 0.005330520216375589, + -0.0002251487603643909, + 0.007680959068238735, + -0.0011879649246111512, + 0.0007669770857319236, + 0.009409341961145401, + -0.005329502746462822, + -0.0031721494160592556, + 0.009229565039277077, + 0.004407904576510191, + -0.0052528902888298035, + -0.014797353185713291, + -0.003973866812884808, + -0.0003959028981626034, + 0.0023533350322395563, + 5.089736441732384e-05, + -0.005837621632963419, + -0.0029858481138944626, + -0.009915249422192574, + 0.0050592124462127686, + -0.00145953509490937, + -0.007406981661915779, + -0.0020374739542603493, + 0.0032595968805253506, + -0.005404575262218714, + 0.004606264643371105, + -0.008696657605469227, + -0.0011741616763174534, + 0.00015292824537027627, + 0.006206594407558441, + 0.009045662358403206, + -0.00015673573943786323, + -0.010800058022141457, + 0.007558656856417656, + 0.0008875304483808577, + -0.0004819774767383933, + -0.0002576244296506047, + 0.0053261686116456985, + -0.0029715034179389477, + -0.00593041256070137, + -0.0010577690554782748, + -0.00014961139822844416, + -0.0019173658220097423, + 0.0035910988226532936, + 0.004743966739624739, + 0.010062990710139275, + -0.008338632993400097, + -0.008161555044353008, + 0.020422261208295822, + 0.01623903214931488, + 0.0009578591561876237, + -0.0033492769580334425, + 0.003767063608393073, + 0.010030939243733883, + -0.003524871775880456, + 0.002724793739616871, + 0.0017355801537632942, + -0.004373002331703901, + -0.0034426029305905104, + 0.0032028292771428823, + 0.003750407136976719, + -0.0005314633599482477, + -0.004583942238241434, + -0.004521918948739767, + 9.447998309042305e-05, + -0.0034635665360838175, + 0.000987557228654623, + -0.0014689526287838817, + -0.00315855978988111, + -0.011751062236726284, + -0.0069145457819104195, + 0.006235744804143906, + 0.0006417797994799912, + 0.030157333239912987, + 0.001771887531504035, + 0.004743051249533892, + -0.005063403397798538, + -0.017552901059389114, + 0.004306386690586805, + 0.007407838944345713, + -0.011328420601785183, + -0.006091956049203873, + 0.009147662669420242, + 0.003938646521419287, + -0.014218159019947052, + -0.026958473026752472, + -0.001600823481567204, + -0.0020842328667640686, + -0.011038132943212986, + 0.0012659778585657477, + -0.0035385708324611187, + -0.0027643488720059395, + -0.0012744629057124257, + -0.003445759881287813, + -5.553397932089865e-05, + -0.007799922022968531, + 0.004472731612622738, + 0.0022898386232554913, + -0.0025060847401618958, + -0.010044860653579235, + -0.0016109065618366003, + -0.01474715955555439, + 0.021098041906952858, + 0.009792854078114033, + 0.004606451373547316, + 0.0025526261888444424, + 0.002540526445955038, + -0.0004366576031316072, + -0.003238379256799817, + -0.0014047300210222602, + -0.1692519634962082, + -0.019740086048841476, + -0.0010227723978459835, + -0.0016676434315741062, + 0.007058235816657543, + -0.006572095677256584, + -0.008138713426887989, + -0.014403355307877064, + 0.006090386305004358, + -0.0043856315314769745, + 0.03240632265806198, + -0.0005999741842970252, + -0.01039457693696022, + 0.0144850704818964, + 0.010112459771335125, + -0.015053607523441315, + -0.0019713500514626503, + 0.008352573961019516, + 0.013315416872501373, + 0.00022935734887141734, + -0.005242979619652033, + 0.00655297189950943, + -0.0012790898326784372, + -0.005759476218372583, + -0.0026665092445909977, + 0.0035394281148910522, + 0.0010974776232615113, + 0.003969247452914715, + 0.006299045402556658, + -0.009567522443830967, + -0.00251335883513093, + -0.004448969382792711, + 0.0022469491232186556, + 0.005405778996646404, + 0.007227780297398567, + -0.003038410097360611, + 0.0021992051042616367, + -0.025941941887140274, + -0.01435182522982359, + 0.0009276701603084803, + 0.002986977342516184, + 0.00509635079652071, + -9.70031032920815e-05, + 0.002533978782594204, + 0.0017022833926603198, + 0.0031496251467615366, + -0.0011034976923838258, + 0.007259483449161053, + -0.002478951122611761, + 0.008699217811226845, + 0.004970985930413008, + -0.004823962692171335, + -0.003833227092400193, + 0.004012025892734528, + -0.006766602396965027, + -0.002687318716198206, + 0.0020115282386541367, + -0.0003308209707029164, + 0.00794152170419693, + -0.0030099640134721994, + -0.01142923440784216, + -0.004547503776848316, + 0.0003299416566733271, + 0.011442301794886589, + 0.005206971894949675, + -0.008485617116093636, + 0.005255146883428097, + -0.0032803653739392757, + -0.010484009049832821, + -0.0005655906861647964, + 0.004781057592481375, + 0.002138374373316765, + -0.00715042045339942, + -0.0014067284064367414, + 0.0071121701039373875, + 0.0006485632038675249, + 0.005551050882786512, + 0.004675399046391249, + 0.0004432207497302443, + -0.012897795997560024, + -0.0029735250864177942, + -0.0012857133988291025, + -0.0009701181552372873, + 0.00027032027719542384, + -0.006933171302080154, + -0.009050576016306877, + -0.003948559518903494, + -0.001072490238584578, + -0.0070257168263196945, + 0.0032639384735375643, + -0.0005942836869508028, + -0.0023941213730722666, + -0.0053029293194413185, + -0.0057610273361206055, + 0.00012104933557566255, + -0.010026287287473679, + -0.009335627779364586, + 0.0004138816148042679, + -0.0005535506061278284, + 0.0023527333978563547, + -0.007517954800277948, + 0.0038408173713833094, + -0.004519273992627859, + 0.00898574385792017, + -0.002165532670915127, + 0.005450945347547531, + -0.010210911743342876, + -0.003422427922487259, + -0.0034878510050475597, + 0.003050342435017228, + 0.017966944724321365, + 0.0034826407209038734, + -0.0018978383159264922, + -0.007907910272479057, + -0.0029955084901303053, + 0.004006087314337492, + -0.00393283274024725, + 0.004518120549619198, + -0.005682501010596752, + -0.011800359934568405, + -0.0060662636533379555, + -0.00597547460347414, + -0.005844702012836933, + -0.005009548272937536, + 0.0036182021722197533, + -0.0005757224280387163, + -0.0008291901904158294, + -0.003935901913791895, + 0.0006710598827339709, + -0.0013720005517825484, + -0.0051008788868784904, + -0.0003811019705608487, + 0.0012745978310704231, + -0.0038852279540151358, + -0.0004991359310224652, + -0.03309500962495804, + -0.0030995092820376158, + 0.007557273842394352, + -0.00522095849737525, + -0.004638677928596735, + -0.024832388386130333, + 0.0009924378246068954, + 0.007770994678139687, + -0.008961142972111702, + 0.004686095751821995, + -0.002336282981559634, + 0.010098527185618877, + -0.0023744171485304832, + -0.000988496351055801, + -0.02615375630557537, + -0.007932180538773537, + 0.002393437782302499, + -0.0005258850869722664, + 0.0012992764823138714, + -0.0031423557084053755, + -0.00051339395577088, + -0.004410855937749147, + 0.002080713165923953, + 0.004363399464637041, + -0.002764284610748291, + 0.010197256691753864, + 0.010583077557384968, + 0.005486277397722006, + -0.0013788184151053429, + -0.011209906078875065, + -0.0027287432458251715, + -0.0021166757214814425, + 0.00017244690388906747, + -0.0007914847228676081, + -0.0007249480113387108, + 0.010365061461925507, + -0.002074220683425665, + -0.003734901547431946, + -0.000197689063497819, + -0.0004684023733716458, + -0.00706147775053978, + -0.009030482731759548, + -0.0041086794808506966, + 0.021724775433540344, + 0.0002551240904722363, + 0.010430524125695229, + 0.005219286773353815, + -0.005857852287590504, + 0.005392161197960377, + 0.006529185920953751, + 0.019921470433473587, + 0.005796664860099554, + 0.005092096049338579, + 0.008677608333528042, + -0.007243644911795855, + 0.01198235247284174, + 0.0032113888300955296, + 0.005102541297674179, + 0.002605285495519638, + 0.008170528337359428, + -0.004591591656208038, + -0.0016434212448075414, + 0.014095327816903591, + 0.0001223598956130445, + -0.005186340305954218, + 0.001832986599765718, + -0.004698771983385086, + -0.004518983419984579, + 0.004985873121768236, + -0.0036466047167778015, + -0.0009481260785833001, + -0.003077773842960596, + 0.001905605080537498, + 0.0023948538582772017, + -0.0020871167071163654, + 0.006980163976550102, + 0.0002494957880116999, + 0.002661552280187607, + -0.001250996720045805, + 0.011821742169559002, + -0.009340795688331127, + -0.015056218951940536, + 0.0017073240596801043, + -0.001469815499149263, + -0.004922311753034592, + -0.0005393871106207371, + -0.011271812953054905, + -0.0030562446918338537, + 0.007741948124021292, + 0.0038707666099071503, + 0.013985035941004753, + 0.006175840273499489, + -0.010030119679868221, + -0.0050092716701328754, + 0.01284433901309967, + 0.006058941595256329, + 0.0010213152272626758, + -0.0017364849336445332, + 0.0028692607302218676, + 0.0021928614005446434, + -0.00466866884380579, + -0.01773066259920597, + 0.007583715487271547, + 0.0008191331289708614, + -0.0019984073005616665, + -0.00028337512048892677, + 0.0062765441834926605, + 0.0046345628798007965, + 4.538180655799806e-05, + -0.002703918144106865, + -0.0021531134843826294, + -0.0031855131965130568, + 0.003911589737981558, + 0.005310220643877983, + -0.004326189402490854, + -0.005639370065182447, + 0.006980398669838905, + -0.010417350567877293, + 0.010069704614579678, + -0.011049537919461727, + 0.01714928075671196, + 0.0031523879151791334, + -0.0005873767659068108, + 0.007406930439174175, + -0.007292920257896185, + -0.002880138112232089, + 0.008158791810274124, + 0.003248471999540925, + -0.002126347739249468, + -0.004779630806297064, + -0.0027364701963961124, + -0.006729735992848873, + -0.014335657469928265, + -0.0021119422744959593, + -0.0013289917260408401, + 0.005120132118463516, + 0.004595253150910139, + 0.0032572634518146515, + -0.0011102487333118916, + 0.0016600056551396847, + -0.009561050683259964, + 0.004309352487325668, + -0.003740249667316675, + 0.0019224203424528241, + -0.006163463927805424, + 0.00035265093902125955, + 0.0032476100604981184, + 0.005936595145612955, + -0.0016060841735452414, + 0.0003539870085660368, + -0.0012643056688830256, + -0.005305602680891752, + -0.00253116711974144, + -0.009067244827747345, + -0.0019472328713163733, + -0.01460001990199089, + 0.008348982781171799, + 0.0024040681309998035, + -0.005498107057064772, + -0.003343293210491538, + 0.0005979082779958844, + 0.008307880721986294, + -0.0040797097608447075, + 0.00570755684748292, + -0.0012593066785484552, + 0.007516882847994566, + 0.0007932161097414792, + 0.0013139008078724146, + 0.002583377994596958, + -0.010438402183353901, + 0.0008452023612335324, + 0.001959281275048852, + 0.0009626615792512894, + 0.008363069035112858, + -0.0030566758941859007, + 0.00204194663092494, + -0.002426540944725275, + 0.013489353470504284, + 0.012755624949932098, + 0.010411390103399754, + -0.00360978115350008, + 6.44124247628497e-06, + 0.005668926052749157, + -0.0018853842047974467, + -0.042661409825086594, + 0.008057228289544582, + -0.0152458306401968, + 0.003142450237646699, + -0.0063280100002884865, + -0.001261907978914678, + 0.0063542998395860195, + 0.003699547378346324, + 0.005073145963251591, + 0.001882819109596312, + -0.003358240472152829, + -0.005608836654573679, + 0.006923893466591835, + 0.004954560659825802, + -0.004264484625309706, + -0.0026870372239500284, + 0.006749763619154692, + 0.006290610879659653, + -0.001892566098831594, + -0.006456725299358368, + -0.009277098812162876, + -0.0010776238050311804, + 0.0032411699648946524, + 3.1554980523651466e-05, + -0.00010520350042497739, + 0.0018959376029670238, + 0.009960195980966091, + 0.007698172237724066, + 0.0017775606829673052, + 0.007642192766070366, + -0.0044881184585392475, + -0.004795221146196127, + -0.006843984127044678, + -0.005073510110378265, + 0.008803342469036579, + -0.005960965994745493, + -0.00043418994755484164, + -0.004919748287647963, + 0.004742047283798456, + 0.009490594267845154, + -0.008100677281618118, + -0.001561512122862041, + 0.006008099764585495, + 0.0045078229159116745, + 0.00585249625146389, + 0.002827317686751485, + -0.007976805791258812, + 0.009061641991138458, + 0.0004036522295791656, + -0.012541885487735271, + 0.004996887408196926, + -0.005376702174544334, + -0.007708370685577393, + 0.005169983487576246, + 0.0028255535289645195, + 0.004726232495158911, + 0.0034636177588254213, + 0.008969743736088276, + -0.004621398169547319, + 0.00047890460700728, + -0.004451835062354803, + -0.0015506305499002337, + -0.0009757094085216522, + 0.009795122779905796, + -0.0014143796870484948, + -4.2148760257987306e-05, + 0.010431040078401566, + -0.002318012760952115, + -0.007887209765613079, + -0.0011065740836784244, + -0.0018803353887051344, + 0.0016086982795968652, + -0.004686296451836824, + 0.0025380952283740044, + -0.021117117255926132, + -0.006461448036134243, + -0.00024048122577369213, + 0.0002690603141672909, + -0.005248337984085083, + 0.011828022077679634, + 0.00019892847922164947, + -0.0006427361513487995, + 0.0017859749495983124, + -0.002973297145217657, + -0.0008120691054500639, + -0.0016786723863333464, + 0.000584212364628911, + 0.0022351816296577454, + -0.0010529400315135717, + -0.00345551292411983, + -0.002876417012885213, + 0.013798114843666553, + -0.01785176247358322, + -0.0009336811490356922, + 0.0015078799333423376, + -0.002446143887937069, + 0.004160294774919748, + 0.008164730854332447, + 0.005590264219790697, + -0.007627078332006931, + 0.0023735775612294674, + -0.0010517638875171542, + 0.0021210333798080683, + -0.001186721958220005, + -0.003092135302722454, + 0.01609010621905327, + -0.012552930973470211, + -0.003652778221294284, + -0.002980679739266634, + 0.006765719037503004, + 0.007849941030144691, + 0.0030366836581379175, + 0.000789016776252538, + 0.019326116889715195, + -0.0062889778055250645, + 0.001730256830342114, + -0.00027003654395230114, + -0.004695843439549208, + -0.010342350229620934, + 0.0018181240884587169, + -0.0019802453462034464, + 0.0041311150416731834, + 0.0016581453382968903, + 0.003102619666606188, + -0.008455212228000164, + 0.004677681718021631, + -0.0022656519431620836, + 0.0038606426678597927, + 0.0036123853642493486, + 0.00209024571813643, + 0.001436632010154426, + 0.00034417249844409525, + -0.004179263021796942, + 0.0018728275317698717, + 0.006738272495567799, + -0.0034536097664386034, + -0.00833573006093502, + -0.008227684535086155, + -0.02075796388089657, + -0.013989845290780067, + 0.008966741152107716, + -0.00813006516546011, + 0.0009437943226657808, + 0.005602560471743345, + 0.008138411678373814, + -0.005406229756772518, + -0.006955625955015421, + -0.004317343235015869, + -0.0001831030531320721, + 0.00814738217741251, + 0.0002796836488414556, + -0.005143007729202509, + -0.017893299460411072, + -0.003489316673949361, + -0.0026297473814338446, + 0.0055089895613491535, + 0.006835588254034519, + 0.01513952948153019, + 0.0037452345713973045, + -0.001857593422755599, + 0.0003598725306801498, + -0.004674707539379597, + 0.0030119656585156918, + 0.003785383189097047, + -0.043363846838474274, + -0.0017766989767551422, + -0.003110976191237569, + -0.004908198490738869, + 0.00341294938698411, + -0.001420642714947462, + 0.0016589727019891143, + -0.005324323661625385, + -0.0007001466583460569, + -0.01123972237110138, + 0.0009368456085212529, + -0.003634439082816243, + -0.003949637990444899, + -0.0013288892805576324, + 0.0012894313549622893, + 0.0006630991701968014, + 0.0013145097764208913, + 0.0034655905328691006, + 0.00379249919205904, + 0.008066736161708832, + -0.02274331822991371, + -0.0025833980180323124, + -0.003170469542965293, + -0.0029659902211278677, + 0.00018322224786970764, + 0.006669238675385714, + -0.012349281460046768, + -0.00023880517983343452, + 0.011024948209524155, + -0.010223791934549809, + -0.0010278398403897882, + 0.021378422155976295, + -0.008250954560935497, + 0.006152171641588211, + 0.003928124904632568, + -0.02251589298248291, + 0.009843015111982822, + -6.241864321054891e-05, + -0.004016014281660318, + 0.004639165475964546, + 0.004364833701401949, + -0.0015881467843428254, + -0.0009965571807697415, + 0.0032485253177583218, + 0.002025583293288946, + 0.0026144087314605713, + -0.0062288823537528515, + 0.003394267288967967, + -0.0012065018527209759, + -0.00456039747223258, + -0.0032282629981637, + -0.0022609448060393333, + 0.002395090414211154, + -0.007192096207290888, + 0.004772437736392021, + -0.0018519159639254212, + -0.00012153184798080474, + 0.0011744326911866665, + -0.015956047922372818, + -0.0030870933551341295, + 0.00013133921311236918, + 0.018416542559862137, + -0.002160490956157446, + 0.021834244951605797, + -0.005110268946737051, + 0.008239849470555782, + -0.0007521078805439174, + -0.0031227017752826214, + -0.006127603352069855, + -0.00023962488921824843, + 0.0013497528852894902, + 0.0028709431644529104, + 0.004235869739204645, + -0.00458714971318841, + -0.0018535866402089596, + -0.006426203530281782, + 0.005103230010718107, + -0.0014024543343111873, + -0.0021397823002189398, + -0.006212768144905567, + 0.0032531542237848043, + 0.011627985164523125, + -0.006580356974154711, + 0.002451283158734441, + 0.004531530197709799, + 0.0034561820793896914, + -0.005197499878704548, + -0.002467683982104063, + -0.001004065852612257, + -0.011191016063094139, + -0.001385404379107058, + -0.009204654954373837, + 0.0007108114077709615, + 0.010807479731738567, + 0.005693803075700998, + -0.005813801195472479, + 0.0015858412953093648, + -0.0009997376473620534, + 0.012184644117951393, + 0.00797840766608715, + -0.01016699057072401, + 0.004952247720211744, + -0.0035553539637476206, + -0.003994064871221781, + 0.0036942034494131804, + -0.014355692081153393, + 0.009546400047838688, + -0.004764880519360304, + 0.000615808239672333, + 0.0019668866880238056, + 0.0019287666073068976, + 0.0035086642019450665, + -0.004546051844954491, + 0.0007546840934082866, + -0.000439044670201838, + 0.00044699327554553747, + -0.0009692753083072603, + 0.0008800562936812639, + 0.011484190821647644, + -0.010179487988352776, + 0.0019683544524013996, + 0.008592979051172733, + -0.008393419906497002, + 0.0025587198324501514, + -0.001044918899424374, + 0.003913071937859058, + -0.0025303580332547426, + -0.0027915046084672213, + 0.005928340833634138, + 0.0016002169577404857, + -0.004715236369520426, + 0.0005360603099688888, + 0.0043526869267225266, + -0.005562208592891693, + -0.0030697037000209093, + 0.012551948428153992, + 0.00648601446300745, + -0.0015079830773174763, + 0.0025268953759223223, + -0.0008533818181604147, + 0.003026261692866683, + -0.005025752354413271, + -0.009183411486446857, + 0.0018033450469374657, + 0.004913913551717997, + 0.0030065118335187435, + -0.0025811661034822464, + -0.0011038110824301839, + -0.008925540372729301, + -0.007248444948345423, + 0.0019113474991172552, + -0.0016208719462156296, + -0.005426144693046808, + -0.004653927404433489, + 0.0024561339523643255, + -0.0021595736034214497, + -0.0004893576260656118, + -0.005956883076578379, + -0.0048383679240942, + 0.007461996283382177, + -0.0040761991403996944, + 0.002019810490310192, + 0.001695342711172998, + 0.004286639392375946, + -0.002296674530953169, + 0.002952760551124811, + -0.00432383269071579, + 0.00952968094497919, + -0.012358277104794979, + 0.008044959977269173, + 0.003731271019205451, + -0.004580804146826267, + 0.006330064032226801, + 0.0060519627295434475, + 0.00957489013671875, + 0.0007159654633142054, + 0.010456262156367302, + 0.00026502498076297343, + 0.00022163191169966012, + 0.0012541065225377679, + -0.0015595067525282502, + -0.0021101413294672966, + 0.0010024228831753135, + 0.0003678907814901322, + -0.0024710313882678747, + 0.017467567697167397, + -0.005039738491177559, + -0.00541547778993845, + -0.0024523274041712284, + -0.010876971296966076, + 0.0045364596880972385, + -0.001575919915921986, + 0.016031328588724136, + -0.0037766462191939354, + 0.006032463163137436, + 0.003683699294924736, + 0.0020726597867906094, + 0.004004746675491333, + -0.006895590573549271, + -0.008183330297470093, + 0.0007546163978986442, + 0.0024913782253861427, + -0.004298716317862272, + 0.0015397249953821301, + -0.004757079761475325, + 0.004835702478885651, + 0.0022463949862867594, + -0.038729771971702576, + -0.004663968458771706, + 0.00253100018016994, + -0.0024389454629272223, + 0.0019847452640533447, + -0.003867923282086849, + -0.02370128221809864, + -0.0026599224656820297, + 0.006301077548414469, + -0.0009282118990086019, + -0.004700200632214546, + 0.005063333082944155, + 0.0031985908281058073, + -0.0003622910880949348, + -0.0035915966145694256, + 0.00750776519998908, + 0.0054125613532960415, + -0.0012964349007233977, + 0.0013661320554092526, + -0.003336262656375766, + 0.0025298206601291895, + 0.0019075913587585092, + 0.0030117661226540804, + 0.0005080311093479395, + -0.0057161287404596806, + -0.0012057762360200286, + -0.00457420852035284, + -0.0032293882686644793, + -0.00613327044993639, + 0.0031139219645410776, + 0.0012194819282740355, + 0.005102051421999931, + 0.004523689858615398, + -0.0063719237223267555, + -0.0028713676147162914, + -0.0005128008197061718, + -0.013080538250505924, + 0.004285531118512154, + -0.0001780094753485173, + -0.00439015869051218, + -0.0015169327380135655, + 0.0010162483667954803, + 0.0039054625667631626, + -0.006731939967721701, + -0.00718015106394887, + -0.0036479549016803503, + -0.0025741644203662872, + -0.0005040199030190706, + 0.002144091296941042, + -0.01001428160816431, + -0.0018297175411134958, + -0.004893307574093342, + -0.009931948967278004, + -0.0007292877999134362, + 0.005458977073431015, + 0.00865127518773079, + -0.0019166565034538507, + -0.0071990033611655235, + 0.005460772663354874, + 0.019335366785526276, + 0.0024483210872858763, + 0.010107950307428837, + 0.008289432153105736, + 0.0041877273470163345, + 0.03726956248283386, + 0.0009014790412038565, + 0.012842150405049324, + -0.0018780233804136515, + -0.0008354593301191926, + 0.0010693439980968833, + 0.014277740381658077, + -0.006261445116251707, + 0.007043434306979179, + -0.003557383781298995, + 0.007521918509155512, + 0.004564578179270029, + -0.003562257159501314, + 0.015232009813189507, + 0.011697598733007908, + -0.007884549908339977, + -0.007349536754190922, + 0.005172868259251118, + 0.002496203174814582, + 0.003586521605029702, + -0.014491567388176918, + 0.0009879118297249079, + -0.002143123419955373, + -0.00457413587719202, + 0.00024461481370963156, + -0.028432168066501617, + -0.0016318642301484942, + 0.004970915149897337, + -0.007543396670371294, + 0.005448311101645231, + -0.010049611330032349, + 0.001151415752246976, + 0.0017157885013148189, + -0.002427289728075266, + -0.002039088634774089, + -0.0022596511989831924, + 0.005790092516690493, + 0.005978449247777462, + -0.00031152836163528264, + 0.004010428208857775, + -0.005081404931843281, + 0.0022182262036949396, + -0.003030305728316307, + 0.0013602140825241804, + -0.012488085776567459, + 0.0072732288390398026, + 0.004627950955182314, + 0.005045024678111076, + -0.00047633846406824887, + 0.003978648688644171, + -0.0051954444497823715, + 0.010334251448512077, + 0.00502146128565073, + -0.0035945973359048367, + 0.006327194627374411, + -0.0021337701473385096, + 0.007071295287460089, + 0.001601297757588327, + 0.0005809271824546158, + 0.018507633358240128, + 0.008016891777515411, + -0.005716655403375626, + -0.005522882100194693, + 0.005609581246972084, + 0.003484267508611083, + -0.0014360081404447556, + 0.006150090601295233, + 0.006111320573836565, + 0.005011814180761576, + 0.008942310698330402, + 6.113232666393742e-05, + -0.0015652971342206001, + -0.0060573662631213665, + 0.009531885385513306, + -0.0007854223949834704, + 0.009400995448231697, + 0.0018847399624064565, + 0.0007073155720718205, + 0.0013835096033290029, + -0.007897152565419674, + -0.006509213708341122, + 0.007337008137255907, + -0.003277927404269576, + 0.011237959377467632, + -2.0696357751148753e-05, + 0.0033223899081349373, + 0.007772188633680344, + 0.004017362371087074, + -0.0010057862382382154, + -0.0001285049511352554, + 0.00737736327573657, + 0.0011248112423345447, + -0.008107660338282585, + 0.0014206226915121078, + -0.0010525775142014027, + -0.007793597877025604, + -0.004702846519649029, + 0.0034291537012904882, + 0.004773301538079977, + 0.0006029841024428606, + -0.0026566251181066036, + -0.0025307100731879473, + -0.00641090702265501, + 0.009275209158658981, + 0.0031930229160934687, + 0.009661724790930748, + -0.004347796551883221, + 0.0006710708257742226, + 0.0006016352563165128, + -0.005080386530607939, + 0.003863684367388487, + -0.004620278254151344, + -0.013173366896808147, + -0.0037675430066883564, + 0.005257538519799709, + -0.007568597327917814, + 0.01096479594707489, + -0.0103599289432168, + -0.002049171831458807, + 0.001746669295243919, + 0.002928297035396099, + 0.007288661319762468, + -0.008045320399105549, + -0.009543226100504398, + -0.004773860797286034, + 0.006822740193456411, + 0.003254527458921075, + -0.002669219858944416, + 0.003821977414190769, + -0.001679692417383194, + -0.0300198495388031, + 0.009183046407997608, + -0.0018293877365067601, + 0.007280130870640278, + 0.0032350781839340925, + 0.0025076763704419136, + -0.004190702922642231, + -0.002402136567980051, + 0.0009832940995693207, + 0.0028156661428511143, + 0.00442542927339673, + -0.010941374115645885, + 0.01940632238984108, + -0.002712843008339405, + -0.002418429823592305, + 0.005214937962591648, + -0.004568964708596468, + -0.010484378784894943, + -0.0040758633986115456, + 0.0029296809807419777, + -0.010910289362072945, + -0.0013468129327520728, + 0.004855379927903414, + 0.0022985634859651327, + 0.00021080064470879734, + 0.00842910073697567, + 0.0014710620744153857, + -0.010851820930838585, + 0.0012917626881971955, + -0.000567053270060569, + 0.015689680352807045, + 0.006640194915235043, + -0.012647533789277077, + 0.002656488213688135, + -0.0030036999378353357, + -0.004245459567755461, + -0.0023067856673151255, + 0.005882512778043747, + 0.0021342039108276367, + -0.0032514522317796946, + -0.002327512251213193, + 0.0076673272997140884, + -0.0011629944201558828, + -0.0031070662662386894, + 0.005539034027606249, + 0.00914616510272026, + -0.006143813021481037, + 0.0029549929313361645, + 0.01080221589654684, + -0.004719945602118969, + 0.0003077773144468665, + 0.0036922830622643232, + 0.001106899231672287, + 0.0038935556076467037, + 0.014821242541074753, + 0.000998580944724381, + -0.004331451375037432, + 0.0011125615565106273, + -0.0051716966554522514, + -0.0029744254425168037, + -0.003084563184529543, + 0.0008573655504733324, + -0.0012651107972487807, + -5.247193621471524e-05, + 0.0009100790484808385, + 0.001163642155006528, + -0.0026667872443795204, + -0.007483628112822771, + 0.0008925065631046891, + 0.0048371851444244385, + 0.009762542322278023, + 0.004277631174772978, + -0.0074352421797811985, + 0.0015759541420266032, + -0.005360122304409742, + 0.0060586994513869286, + 0.006509154103696346, + 0.00390761811286211, + -0.0007276759715750813, + -0.001748592359945178, + 0.0003552624548319727, + -0.00429999316111207, + 0.01772405579686165, + -0.0034454544074833393, + 0.0030621883925050497, + -0.0059948512353003025, + -0.0005603458848781884, + -0.0059004840441048145, + 0.005415161140263081, + -0.00331837753765285, + -0.0017347142565995455, + -0.0009619538323022425, + -0.003458569757640362, + -0.00723949633538723, + -0.00700762216001749, + 0.008849094621837139, + -0.005372286774218082, + -0.027589289471507072, + 0.0030441873241215944, + 0.006608801893889904, + -0.009062203578650951, + 0.002131215063855052, + 0.0033086498733609915, + 0.005779569502919912, + 0.006044344045221806, + 0.010521688498556614, + -0.00020981366105843335, + 0.004551688674837351, + 0.007542782928794622, + 0.0025153220631182194, + 0.004733433481305838, + -0.006432411260902882, + 0.004044248256832361, + -0.004342156462371349, + -0.021721063181757927, + -0.004539808724075556, + 0.0025531346909701824, + 0.003791376482695341, + 0.00031265991856344044, + -0.004490827675908804, + 0.0011913011549040675, + 0.00290590594522655, + -0.017610449343919754, + 0.003367501776665449, + 0.00472357077524066, + -0.002829659031704068, + -0.003415433457121253, + 0.0005780537612736225, + 0.0010791468666866422, + -0.003490379313006997, + -0.0015596767188981175, + 0.012417411431670189, + 0.012651355937123299, + -0.0003847841580864042, + 0.004209244158118963, + 0.0075712562538683414, + -0.007201006636023521, + 0.009411183185875416, + -0.008172392845153809, + -0.00907160248607397, + -0.005551081616431475, + -0.00037545838858932257, + -0.00878902617841959, + -0.006612646859139204, + 0.001959935761988163, + 0.0011229125084355474, + -0.0009412480285391212, + 0.0035506151616573334, + -0.0014961836859583855, + 0.003918015398085117, + -0.0021096966229379177, + -0.001639769528992474, + -0.010941904038190842, + 0.0008600717410445213, + 0.011173353530466557, + 0.004734414163976908, + 0.003882724093273282, + 0.010196706280112267, + -0.00829313974827528, + -0.007035662420094013, + -0.0008526966557838023, + 0.008477186784148216, + 0.001501386403106153, + 0.004557602573186159, + -0.0035380639601498842, + 0.008637435734272003, + -0.0012136073783040047, + 0.008065263740718365, + 0.006427849642932415, + -0.004009352531284094, + 0.0030622866470366716, + 0.006424018181860447, + 0.00047084756079129875, + -0.010019546374678612, + 0.023627201095223427, + -0.0032176212407648563, + -0.010592348873615265, + -0.01223854161798954, + 0.015493864193558693, + -0.004972162190824747, + 0.004785065073519945, + 0.005970682483166456, + 0.00034782293369062245, + -0.0020220454316586256, + 0.008649124763906002, + -0.007112209219485521, + -0.004211597144603729, + -0.00010358689905842766, + 0.006574252620339394, + -0.0024407466407865286, + -0.004901390057057142, + 0.002662182319909334, + 0.0013448651880025864, + -0.0013797481078654528, + -0.01088088657706976, + -0.00629068398848176, + 0.006683825980871916, + -0.009794563055038452, + -0.006364921573549509, + 0.001673665246926248, + 0.001175571815110743, + -0.004175066482275724, + -0.0042700087651610374, + 0.00920895952731371, + 0.0026570865884423256, + -0.0013151320163160563, + -0.0037969984114170074, + -0.007094900589436293, + 0.004220655187964439, + -0.0011226644273847342, + 0.005257313139736652, + 0.004203309770673513, + 0.0003337227972224355, + 0.0009546636138111353, + -0.009552433155477047, + -0.0020404334645718336, + 0.006423108745366335, + -0.008315812796354294, + -0.007687848061323166, + 0.00585001427680254, + -0.0008174963295459747, + 0.0056360987946391106, + -0.006580159068107605, + -0.004312530159950256, + 0.006394156254827976, + 0.001863475306890905, + -0.005513050593435764, + 0.008075293153524399, + 0.005294594913721085, + -0.004689213819801807, + -0.0004325547779444605, + -0.011152145452797413, + 0.01775112934410572, + -0.0008879539673216641, + -0.007387484889477491, + 0.0036817239597439766, + 0.003453584620729089, + -0.0011599897406995296, + -0.002565062139183283, + 0.004772741347551346, + -0.008782223798334599, + -0.0004943109233863652, + 0.00032131673651747406, + 0.005453623365610838, + 0.0013138969661667943, + 0.00048068512114696205, + -0.003245846601203084, + -0.002376610180363059, + -0.00860083568841219, + -0.0026388729456812143, + -0.0009312230977229774, + -0.003965230658650398, + -0.006875591818243265, + -0.010160881094634533, + -0.009341945871710777, + -0.000759046757593751, + -0.0019987563136965036, + 0.002633020980283618, + -0.006070511415600777, + 0.00024487925111316144, + -0.007420544512569904, + 0.012297412380576134, + -0.004246504977345467, + 0.008657066151499748, + 0.0011945052538067102, + 0.0034595082979649305, + 0.006978416349738836, + -0.0037970193661749363, + -0.006990653928369284, + 0.004152433946728706, + -0.003916862886399031, + 0.008610819466412067, + 0.0077738226391375065, + -0.005166863091289997, + -0.011749996803700924, + -0.003932292573153973, + -0.00013934036542195827, + -0.009980041533708572, + 0.00231037731282413, + -0.0032416090834885836, + 0.005113912280648947, + -0.004488798324018717, + 0.00493006594479084, + -0.011493215337395668, + -0.002186774741858244, + 0.005107944365590811, + -0.0008756759343668818, + 0.006784695666283369, + -0.004458943847566843, + 0.0075544207356870174, + 0.0022659737151116133, + -0.0025934220757335424, + 0.00010626328730722889, + 0.004143520724028349, + -0.005440351087599993, + -0.009070034138858318, + 7.273304800037295e-05, + -0.002417065668851137, + -0.008688514120876789, + -0.00018578146409709007, + 0.008688163943588734, + -0.005166108254343271, + 0.013321437872946262, + 0.016821006312966347, + 0.019220581278204918, + 0.0001037907786667347, + 0.001320608425885439, + -0.01577875204384327, + -0.005628455895930529, + -0.0075147501192986965, + -0.006318775005638599, + 0.003056755755096674, + 0.0010145348496735096, + -0.014288095757365227, + 0.00231510354205966, + -0.004772021435201168, + 0.008450288325548172, + -0.004335119388997555, + -0.0018678687047213316, + 0.003259854856878519, + -0.009925220161676407, + -1.6585865523666143e-05, + -0.001934847212396562, + 0.007721348199993372, + 0.0012351397890597582, + -0.009505843743681908, + 0.015827486291527748, + -0.0035967992153018713, + 0.0005621850723400712, + 0.002962584374472499, + 0.004704440012574196, + 0.002159605035558343, + -0.0014247526414692402, + 0.01203891634941101, + 0.0019213897176086903, + -0.0047331457026302814, + 0.004894881974905729, + 0.007314495276659727, + 0.00782484095543623, + 0.007893589325249195, + 0.008982794359326363, + -0.010927340015769005, + 0.0012407962931320071, + -0.001637130044400692, + 0.008333534933626652, + 0.0035485888365656137, + 0.003252801951020956, + -0.006086468230932951, + -0.004153796471655369, + -0.0028075817972421646, + 0.0072386921383440495, + 0.005474527832120657, + 0.008210267871618271, + 0.009848646819591522, + -0.007469006348401308, + 0.0027438169345259666, + -0.0030305986292660236, + 0.0064305090345442295, + 0.0026173328515142202, + 0.0019308297196403146, + -0.0033360468223690987, + -0.001141293323598802, + 0.005891656503081322, + -0.005172877572476864, + 0.013998256996273994, + -0.005528145004063845, + -0.002633357187733054, + 0.0012787439627572894, + -0.0024763918481767178, + 0.005285934079438448, + -0.0028510980773717165, + -0.007489460986107588, + -0.0010078145423904061, + 0.008177337236702442, + 0.005282132886350155, + -0.0035908473655581474, + 0.0006327314767986536, + 0.00021157598530407995, + -0.009255033917725086, + 0.003089158795773983, + 0.007897846400737762, + 0.013087226077914238, + -0.0023253082763403654, + 0.009365221485495567, + -0.001391508267261088, + -0.0002330307470401749, + -0.004569627344608307, + -0.013463628478348255, + 0.00024074834072962403, + -0.0020111168269068003, + -0.003046097233891487, + -0.001262916368432343, + -0.014855491928756237, + 0.00042724423110485077, + 0.00025878477026708424, + -0.0011989749036729336, + -0.006192354019731283, + 0.013801691122353077, + 0.009403785690665245, + 0.001164293964393437, + -0.0041033304296433926, + 0.007012843620032072, + 0.0026904302649199963, + 0.006281303241848946, + 0.005369504913687706, + 0.004468121565878391, + 0.003248966997489333, + -0.007262509316205978, + -0.001783069223165512, + -0.004197552800178528, + 0.0006364249857142568, + -0.005455917213112116, + -0.0007844489300623536, + 0.0005051485495641828, + 0.002171794418245554, + 0.00256740883924067, + 0.0013743372401222587, + -0.0056907315738499165, + 0.000571252778172493, + 0.0038785452488809824, + 0.008108533918857574, + -0.003943982534110546, + -0.012784622609615326, + -0.0018096636049449444, + 0.00747156236320734, + -0.019601592794060707, + 0.014128254726529121, + 0.002950201276689768, + 0.0021423387806862593, + 0.005861144512891769, + -0.0020989575423300266, + 0.0025896269362419844, + -0.011380840092897415, + 0.005866708233952522, + -0.0005754246958531439, + -0.0024249537382274866, + -0.0010385161731392145, + 0.002469186671078205, + -0.005324430298060179, + -0.010607736185193062, + -0.004970789887011051, + -0.00046678021317347884, + -0.01061171479523182, + 0.00251010968349874, + -0.0012421704595908523, + -0.006083624437451363, + 0.0016931508434936404, + -0.006651751697063446, + -0.002095501171424985, + -0.009120454080402851, + 0.007166609633713961, + 0.005948449485003948, + 0.00026914794580079615, + 0.0168765839189291, + -0.0001537100033601746, + -0.011480006389319897, + 0.011767810210585594, + -0.00024689571000635624, + 0.00037721116677857935, + 0.001737837796099484, + -0.009407885372638702, + 0.0011165878968313336, + 0.0005640048766508698, + 0.004438568372279406, + -0.002912233117967844, + 0.0030091553926467896, + -0.006220073904842138, + -0.0009517256403341889, + 0.0013465244555845857, + 0.0029542078264057636, + -0.005655847955495119, + -0.00941792968660593, + 0.006605714093893766, + 0.00022246636217460036, + -0.002403832273557782, + 0.001679118606261909, + 0.0006165570230223238, + 0.0004960658261552453, + 0.0028251835610717535, + 0.00017395583563484251, + -0.0021079489961266518, + -0.013095867820084095, + -0.002406499581411481, + -0.006020164582878351, + 0.005362196825444698, + 0.0016356284031644464, + 0.0033466843888163567, + -0.009041779674589634, + 0.010672809556126595, + -0.0011160600697621703, + 0.0006847464828751981, + -0.005732564255595207, + -0.00018630675913300365, + 0.014713119715452194, + 0.0001679144916124642, + 0.011762570589780807, + -0.002129211090505123, + -0.0008533509681001306, + -0.0016784298932179809, + 0.002427874132990837, + 0.004426127765327692, + 0.005704876035451889, + 0.0028385960031300783, + -0.0004416631709318608, + 0.006622920744121075, + -0.005507729481905699, + 0.00022404342598747462, + -0.009079458191990852, + 0.0037485146895051003, + -0.009291190654039383, + -0.0010658655082806945, + 0.004358007572591305, + 0.004399145487695932, + 0.006549459416419268, + 0.014533416368067265, + -0.031372543424367905, + 0.005101419985294342, + -0.006954174023121595, + 0.0052748676389455795, + -0.002198254456743598, + 0.006678979843854904, + 0.004322529304772615, + 0.0013507100520655513, + 0.0034100718330591917, + -0.0003318369563203305, + 0.00777963874861598, + -0.006765142548829317, + -0.001404505455866456, + -0.003856981173157692, + 0.006266211625188589, + 0.001891418593004346, + -0.002129475586116314, + -0.00439457455649972, + 0.005105042830109596, + 0.0012680587824434042, + -0.004753259010612965, + -0.0007313694804906845, + 0.013685295358300209, + -0.0016771791270002723, + -0.01484318170696497, + -0.012332934886217117, + 0.007507496513426304, + 0.0013802938628941774, + 0.005548591259866953, + 0.0033993450924754143, + 0.00709686242043972, + -0.006585690192878246, + 0.0005264985375106335, + -0.012604831717908382, + 0.0005528987385332584, + 0.004164886195212603, + 0.002927501453086734, + 0.0011062459088861942, + -0.0013477816246449947, + -0.00363870314322412, + -0.005167729686945677, + -0.003442689310759306, + -0.014230762608349323, + -0.00281519815325737, + -0.003958905581384897, + -0.005039869341999292, + -0.0032857758924365044, + 0.010805154219269753, + 0.001438753679394722, + 0.004284726921468973, + 0.0010227010352537036, + -0.0024774717167019844, + -0.00020726688671857119, + 0.01598113775253296, + -0.0032363831996917725, + 0.0031507278326898813, + 0.009713341481983662, + -0.0013064997037872672, + 0.0086845513433218, + 0.006571353413164616, + 0.006372665520757437, + -0.009104441851377487, + 0.004784463904798031, + -0.006196449976414442, + 0.0067214216105639935, + -0.00790143758058548, + 0.0029634872917085886, + 0.010879511013627052, + -0.0026975919026881456, + -0.009841861203312874, + 0.0033321292139589787, + -0.00010581669630482793, + 0.0049886214546859264, + -0.005236698314547539, + 0.0001750948722474277, + -0.000870048999786377, + -0.006484935991466045, + 0.003096562111750245, + 0.0023644273169338703, + -0.006049619521945715, + -0.002435684436932206, + 0.00670408783480525, + 0.002150322077795863, + 0.007955878041684628, + 0.011897450312972069, + 0.019285228103399277, + -0.003449048148468137, + 0.0037241310346871614, + -0.006831386126577854, + 0.0015978411538526416, + -0.012614389881491661, + -0.0006180551717989147, + 0.010683350265026093, + -0.002892756601795554, + 0.003808592678979039, + 0.0024365580175071955, + -0.0009043863392435014, + 0.004348715767264366, + 0.005484520923346281, + -0.003412015037611127, + -0.006495588459074497, + 0.0010499398922547698, + 0.007133853621780872, + -0.015889765694737434, + -0.0022448142990469933, + -0.005809256341308355, + -0.002262065652757883, + -0.007630839012563229, + 0.010509503073990345, + 5.234216951066628e-05, + 0.00019299979612696916, + 0.006233228370547295, + -0.007540819235146046, + 0.013564391061663628, + -0.004028121940791607, + -0.0035340485628694296, + -0.006255659274756908, + -0.005499936640262604, + -0.013154024258255959, + 0.0022269736509770155, + -0.002092427108436823, + -0.009193834848701954, + -0.0019341525621712208, + -0.0022451947443187237, + 0.005184286739677191, + -0.002952196402475238, + -0.0018784321146085858, + 0.0030902677681297064, + 0.0039699445478618145, + -0.0006977647426538169, + 0.004742758348584175, + -0.004041751381009817, + 0.0024791613686829805, + 0.0026311432011425495, + 0.005375588312745094, + -0.007541378494352102, + -0.011191301979124546, + -0.0007306042825803161, + 0.0011866296408697963, + 0.001250116853043437, + -0.010575640015304089, + 0.03119095042347908, + -0.005617531947791576, + 0.0012896456755697727, + 0.0006476350245065987, + -0.0018065866315737367, + -0.002829990116879344, + -0.007987985387444496, + -0.0013664732687175274, + -0.01967373862862587, + -0.0018200362101197243, + -0.002834676532074809, + 0.0019597536884248257, + 0.01075793243944645, + -0.009259088896214962, + 0.00013632238551508635, + 0.006428611930459738, + -0.0015247144037857652, + 0.0062218052335083485, + -0.0024075701367110014, + 0.0014399440260604024, + -0.006066279951483011, + -0.009657504968345165, + -0.006700693164020777, + 0.009577020071446896, + 0.002889215014874935, + -0.0034564686939120293, + -0.003077736357226968, + 0.0020353158470243216, + -0.0009303824626840651, + 0.012967681512236595, + 0.0037479731254279613, + -0.003922478295862675, + -0.010566048324108124, + -0.0012936280108988285, + -0.0068321628496050835, + -0.005572231020778418, + -0.003327121026813984, + -0.001304065459407866, + -0.00431170966476202, + 0.000799046247266233, + -0.00550971832126379, + -0.004785019438713789, + -0.007662370800971985, + 0.023495299741625786, + 0.0038138539530336857, + -0.0009483639732934535, + -0.0060682897455990314, + -0.00013411774125415832, + -0.003513090079650283, + -0.0020585283637046814, + 3.39075704687275e-05, + 0.004178917035460472, + 0.021455058827996254, + -0.002052356954663992, + -0.00024164537899196148, + 0.006158656440675259, + 0.007516164798289537, + 0.005097148008644581, + -0.010968872345983982, + 0.007313011679798365, + -0.0018847939791157842, + -0.0015737449284642935, + 0.01318742148578167, + 0.007377907633781433, + 0.011805383488535881, + -0.015399887226521969, + -0.0047194152139127254, + 0.0093739815056324, + 0.002981313969939947, + -0.006254115141928196, + -0.020396225154399872, + -0.006162434816360474, + 0.0023538002278655767, + -0.0007378237787634134, + -0.0071464828215539455, + 0.00022927091049496084, + 0.0002727987593971193, + 0.006048156414180994, + 0.001206548884510994, + 0.00278014549985528, + -0.0015171363484114408, + 0.000265862385276705, + -0.007367326412349939, + 0.0043262336403131485, + 0.006448814645409584, + 0.0038772625848650932, + -0.002030863193795085, + -0.005137538071721792, + -0.004429106134921312, + -0.0010302074952051044, + -0.0048796553164720535, + -0.00045905064325779676, + -0.004881418775767088, + -0.003004986559972167, + -0.0018358752131462097, + 0.0034384478349238634, + 0.00037527456879615784, + -0.0008380250656045973, + -0.0014139136765152216, + -0.0023796288296580315, + -0.0005731575074605644, + -0.003590943291783333, + 0.0007308526546694338, + 0.003011789871379733, + -0.011874585412442684, + -0.006675026845186949, + -0.006112143397331238, + -0.004142635967582464, + 0.010425192303955555, + -0.004759073257446289, + 0.0020894191693514585, + 0.0024499106220901012, + -0.0028146393597126007, + 0.008773702196776867, + 0.00014385355461854488, + 0.003799969796091318, + -0.006582890171557665, + -0.0013410726096481085, + 0.002432252513244748, + 0.003911856096237898, + -0.00021255164756439626, + 0.0035184635780751705, + 0.001444731606170535, + 0.004907597787678242, + 0.0028681328985840082, + -0.0011752867139875889, + -0.006508383434265852, + 0.008914320729672909, + -0.007943964563310146, + -0.006377017591148615, + -0.006016476079821587, + -0.006806404795497656, + -0.0038055286277085543, + -0.0012672985903918743, + -0.0027376243378967047, + -0.0002137513511115685, + 0.0070826392620801926, + 0.003093492006883025, + -0.0010383442277088761, + 0.0045791007578372955, + -0.002375938929617405, + -0.0015012684743851423, + 0.001521365949884057, + -0.002411407418549061, + 0.004068745765835047, + 0.001018535578623414, + 0.005494722165167332, + -0.004165223333984613, + 0.0039070784114301205, + -0.002703204983845353, + -0.0030853417702019215, + -0.010962525382637978, + 0.005822591949254274, + -0.006814047694206238, + -0.006872851401567459, + 0.000761289382353425, + 0.0011999671114608645, + -0.013388453051447868, + 0.005164635367691517, + -0.001944193965755403, + -0.0009452271624468267, + -0.003133258316665888, + 0.003836279036477208, + 0.0025837102439254522, + 0.002288599032908678, + -0.0026396913453936577, + -0.004253039136528969, + -0.007997557520866394, + 0.0010233439970761538, + -0.0018967570504173636, + -0.00029332732083275914, + 0.008040497079491615, + -0.008373705670237541, + -0.006798718124628067, + 0.0038931744638830423, + 0.004545985721051693, + -0.007776100654155016, + 0.001118801417760551, + -0.004291842225939035, + 0.004126840271055698, + -0.00414746580645442, + -0.0009146075462922454, + 0.002079374622553587, + 0.0037957343738526106, + 0.02228332869708538, + 0.0070801046676933765, + -0.00832687970250845, + 0.003798105986788869, + -0.001661163056269288, + 0.0010160014498978853, + -0.005364065524190664, + 0.001343603478744626, + 0.007742840331047773, + -0.006761886179447174, + -0.005904820282012224, + 0.00043043377809226513, + -0.00564198475331068, + 0.0026761784683912992, + -0.0015762990806251764, + -0.005877602379769087, + -0.0015169155085459352, + 0.0017496906220912933, + 0.0037450704257935286, + -0.00011943803110625595, + -0.0004632161289919168, + -0.009843329899013042, + -0.006651415955275297, + 0.0036446910817176104, + -0.0023667067289352417, + 0.0023381421342492104, + 0.0021122233010828495, + -0.01935594342648983, + 0.005286387633532286, + 0.006131106987595558, + -0.007610132917761803, + -5.338218034012243e-05, + -0.020919669419527054, + 0.008597098290920258, + -0.0017677450086921453, + -0.009341532364487648, + 0.005141692701727152, + -0.005118190310895443, + -0.0016374601982533932, + 0.0013398848241195083, + -0.006442685145884752, + 0.013486644253134727, + 0.001043536583893001, + 0.00856427289545536, + -0.02384871058166027, + 0.005303665529936552, + 0.0054968008771538734, + 0.0008665846544317901, + 0.007690561935305595, + 0.0012167044915258884, + 0.007763386704027653, + -0.0010332991369068623, + -0.01167709194123745, + -0.0034052517730742693, + 0.021152742207050323, + 0.0008373350137844682, + 0.0016147259157150984, + 0.0004729819484055042, + -0.0003856186231132597, + 0.005550855305045843, + -0.010746590793132782, + -0.0047074295580387115, + 0.0004921768559142947, + 0.005981108173727989, + -0.001325138146057725, + -0.008519591763615608, + -0.0019874253775924444, + -0.0033165731001645327, + 0.002957717515528202, + 0.001402615918777883, + 0.0023596682585775852, + 0.0035877032205462456, + 0.012497320771217346, + 0.0018026321195065975, + -0.0044028619304299355, + 0.009416522458195686, + -0.00358398980461061, + 0.003178816055878997, + -0.007417036686092615, + 0.006190655753016472, + 0.0033993276301771402, + -0.005040359683334827, + -0.0012581998016685247, + -0.0018546448554843664, + 0.00697973882779479, + 0.006041219457983971, + -0.0009814612567424774, + 0.007538952864706516, + -0.00025481218472123146, + 0.001421551569364965, + 0.0035778875462710857, + 0.004887350834906101, + 0.008074935525655746, + 0.01181113813072443, + -0.004938723053783178, + 0.0034362846054136753, + -0.0030974899418652058, + 0.01404182892292738, + -0.002398646902292967, + -0.002303340472280979, + 0.010068810544908047, + -0.024897588416934013, + 0.0019460917683318257, + 0.005882440600544214, + 0.002421758370473981, + 0.004828558303415775, + 0.003768899943679571, + -0.0002089781773975119, + 0.005026090424507856, + -0.003258579410612583, + -0.003124330658465624, + 0.004570269491523504, + -0.011311180889606476, + -0.0018709846772253513, + -9.826885798247531e-05, + 0.0025781490840017796, + 0.0071154627948999405, + 0.000916629855055362, + -0.003698499407619238, + 0.0007022998761385679, + -0.00010417806333862245, + -0.0029833680018782616, + 0.004768450278788805, + -0.0004627361777238548, + -0.00735160568729043, + 0.0012982586631551385, + 3.9663147617829964e-05, + 0.00046999831101857126, + 0.0017160727875307202, + 0.003697150619700551, + -0.0054180617444217205, + -0.004084064159542322, + 0.009198784828186035, + -0.0030426152516156435, + 0.004292210564017296, + -0.0013571081217378378, + -0.0009336370858363807, + 0.005410260986536741, + 0.015542665496468544, + -0.006919223349541426, + -0.015944307669997215, + 0.002559893298894167, + 0.008125979453325272, + 0.0023329593241214752, + 0.0010390238603577018, + -0.00493844086304307, + -0.01233260240405798, + -0.006321555469185114, + 0.002803583862259984, + -0.0006266711861826479, + 0.0017354181036353111, + -0.000416579598095268, + -0.005188429728150368, + -0.010682642459869385, + 0.014483545906841755, + 0.0019952827133238316, + 0.009798276238143444, + -0.0026214709505438805, + 0.008751694113016129, + 0.0003999676846433431, + -0.0042383261024951935, + 0.0024789003655314445, + 0.014138530939817429, + 0.0018746728310361505, + 0.0024060956202447414, + -0.004811183083802462, + 0.0076921191066503525, + -0.00015731531311757863, + 0.0021276434417814016, + 0.001144780544564128, + 0.0147287892177701, + -0.00034688058076426387, + -0.00027993341791443527, + 0.005870460532605648, + 0.014161362312734127, + 0.0010437757009640336, + 0.004089220426976681, + -0.0036513344384729862, + 0.007691685575991869, + -0.0030119309667497873, + -0.004086218774318695, + 0.0010539364302530885, + -0.003993102349340916, + 0.000860301312059164, + -0.0008126363973133266, + -0.004913872107863426, + 0.0006544514326378703, + -0.0007606833823956549, + 0.002659253077581525, + 0.0005754021694883704, + -0.000940576137509197, + 0.0021957065910100937, + 0.010171591304242611, + -0.0035737906582653522, + 0.0023726811632514, + -0.0022701441776007414, + -0.004154046066105366, + 0.0032114647328853607, + -0.0027892976067960262, + -0.0013477900065481663, + -0.001386165269650519, + -0.027891069650650024, + 0.003717584302648902, + -0.005281628109514713, + -0.0005782846710644662, + -0.01590833254158497, + -0.006304418668150902, + -0.00319421524181962, + 0.003041530027985573, + -0.004690133035182953, + -0.011246038600802422, + 0.008510793559253216, + 0.006788365077227354, + -0.005249858368188143, + 0.0008636103011667728, + 0.0026740480680018663, + 0.002656229306012392, + 0.0015588916139677167, + 0.0012344182468950748, + 0.00039601768366992474, + -0.0007048166007734835, + 0.0027441885322332382, + 0.003629769431427121, + 0.004256159998476505, + 0.0028764805756509304, + 0.00692578312009573, + -0.007590171881020069, + 0.004032351542264223, + -0.0020442623645067215, + 0.009052649140357971, + 0.004396824166178703, + -0.004802420269697905, + -0.0022536490578204393, + -0.00210210750810802, + -0.0020024538971483707, + -0.015249780379235744, + 0.004654982592910528, + -0.006276119500398636, + 0.0066908239386975765, + 0.006530494429171085, + 0.001557497656904161, + 0.008992478251457214, + 0.0038151280023157597, + -0.0012236464535817504, + -0.006442854646593332, + -0.013021732680499554, + -0.018145374953746796, + 0.005013083107769489, + -0.0014655503910034895, + -0.004610822070389986, + -0.014043852686882019, + -0.002645891159772873, + 0.010830262675881386, + -0.01075118500739336, + 0.008538086898624897, + -0.007973210886120796, + -0.0088062584400177, + -0.0008171536028385162, + -0.0031904317438602448, + -0.0024658513721078634, + -0.0068381004966795444, + -0.0003709964221343398, + 0.018078934401273727, + 0.000620342034380883, + -0.003957759123295546, + 0.006142826750874519, + 0.0036194943822920322, + 0.0004660036647692323, + 0.006069545168429613, + 0.009019419550895691, + 0.004717546049505472, + -0.007217095233500004, + -0.001481433748267591, + -0.010508105158805847, + -0.0033039269037544727, + -0.0028250592295080423, + 0.010237195529043674, + -0.0007535223849117756, + 0.004551825113594532, + -0.0030224754009395838, + 0.0018112496472895145, + -0.005654682405292988, + 0.005046395119279623, + -0.01272645965218544, + -0.0017255612183362246, + 0.011050350032746792, + -0.0012827989412471652, + 0.005556138232350349, + -0.0010890527628362179, + -0.006020349450409412, + 0.00451666209846735, + -0.0032833998557180166, + -0.010704422369599342, + -0.007563902530819178, + 0.0013203057460486889, + 0.002742966404184699, + -0.00019381730817258358, + 0.0020518293604254723, + -0.012980078347027302, + 0.002994328737258911, + 0.0007305073668248951, + -0.0007599524687975645, + 0.008145301602780819, + 0.002506126882508397, + -0.002005459275096655, + 0.006508942227810621, + -0.002994999522343278, + -0.013953577727079391, + 0.0033185265492647886, + 0.00404196884483099, + -0.00822096224874258, + 0.000486074888613075, + -0.0003479925508145243, + -0.0073929717764258385, + -0.003567673033103347, + -0.005108156707137823, + -0.011539085768163204, + -0.007252673618495464, + 0.03406096249818802, + 0.8689703345298767, + -0.003584137186408043, + 0.0010923261288553476, + 0.01719803735613823, + 0.004110680427402258, + -0.004110900219529867, + -0.001965699950233102, + -0.007831385359168053, + 0.0031777608674019575, + -0.009685915894806385, + 0.0045196679420769215, + -0.014354589395225048, + -0.004791774787008762, + 0.0033617904409766197, + 0.004274637438356876, + 0.003114661667495966, + 0.004563902039080858, + 0.005045605823397636, + -0.0032439471688121557, + -0.004214451182633638, + -0.005771763157099485, + -0.001018825569190085, + -0.00863581895828247, + 0.00504725007340312, + 0.0010223742574453354, + 0.005382669623941183, + 0.005970661994069815, + -0.008745464496314526, + -0.006729739718139172, + 0.00043261703103780746, + -0.0025226278230547905, + 0.002511005848646164, + 1.7415750335203484e-05, + 0.00038584545836783946, + 0.0012384235160425305, + 0.002036537043750286, + 0.00471979146823287, + -0.0030630684923380613, + 0.006086012348532677, + -0.007662882562726736, + -0.005533741321414709, + -0.0019148627761751413, + 0.00030669523403048515, + -0.0003398543340153992, + 0.00471342820674181, + -0.0041677323170006275, + 0.0024402800481766462, + -0.0034129503183066845, + -0.0045639225281775, + 0.0009192141005769372, + 0.014262562617659569, + -0.008044722490012646, + 0.0008549782214686275, + 0.0062228040769696236, + -0.0011180710280314088, + 0.003647108329460025, + 0.0036066556349396706, + -0.0028210768941789865, + -0.005222551058977842, + 0.014702239073812962, + 0.00017265156202483922, + 0.00595490587875247, + -0.002448141109198332, + -0.010216692462563515, + -0.005856113042682409, + 0.0008644724148325622, + -0.006216048263013363, + 0.017357390373945236, + 0.0002501076669432223, + -0.003303942969068885, + 0.0045180548913776875, + 0.00021011954231653363, + 0.006740108132362366, + 0.0033539216965436935, + 0.007840478792786598, + 0.011211147531867027, + -0.004773703869432211, + -0.004693910479545593, + -0.0028623524121940136, + -0.0032903924584388733, + -0.004220105241984129, + -0.0006834751693531871, + 0.008210211992263794, + 0.005933227017521858, + -0.00306926597841084, + -0.0023422432132065296, + -0.0023724264465272427, + -0.014977086335420609, + 0.00378325954079628, + -0.011202404275536537, + 0.003688995260745287, + -0.001552168745547533, + 0.019831709563732147, + 0.000836248742416501, + -0.001483093947172165, + -0.0032987857703119516, + -0.005519780796021223, + -0.006579702254384756, + 0.001277421717531979, + 0.0029981876723468304, + 0.004229736980050802, + 0.008481555618345737, + 0.0044805509969592094, + 0.002836263505741954, + -0.0006117603625170887, + 0.003294553142040968, + -0.0017935483483597636, + 0.00029881097725592554, + 0.005886784754693508, + 0.009943760000169277, + -0.009515746496617794, + 0.0040532988496124744, + 0.0021935126278549433, + -0.0008160643046721816, + -0.002489604754373431, + 0.015522568486630917, + -0.0011007102439180017, + 1.4556709174939897e-05, + 0.0010501823853701353, + -0.0024924147874116898, + -0.00447630463168025, + -0.006533681880682707, + 0.005611782893538475, + -0.0014755231095477939, + -0.01426078099757433, + -0.002155583817511797, + -0.007936539128422737, + -0.00689971586689353, + 0.006607845425605774, + -0.004530883859843016, + 0.006551137659698725, + 0.007261387538164854, + -0.0004201665869913995, + 0.007255620323121548, + -0.0007541737868450582, + -0.0017716336296871305, + 0.005527549888938665, + -0.003205851186066866, + 0.0016685775481164455, + 0.005871457047760487, + 0.000571410811971873, + 0.002843547845259309, + 0.005383513867855072, + 0.0033108056522905827, + -0.004776723682880402, + 0.0422695055603981, + -0.004386706277728081, + -0.003251855494454503, + 0.004835238214582205, + 0.0007284043240360916, + 0.007432225625962019, + -0.003960990812629461, + 0.00019806223281193525, + -0.006474826484918594, + -0.0019029885297641158, + -0.0006492846878245473, + -0.0004134465998504311, + -0.003867032937705517, + -0.006388222333043814, + -0.009210092015564442, + 0.003728751791641116, + 0.002635073149576783, + -0.003956320695579052, + 0.006076270714402199, + -0.00010044661758001894, + 0.0029465937986969948, + -0.0025299708358943462, + 0.0044639864936470985, + 0.0010191798210144043, + -0.0060475533828139305, + -0.000816717220004648, + -0.0040989224798977375, + 0.004110283218324184, + 0.0019222699338570237, + 0.0013440296752378345, + -0.006593444850295782, + 0.01093032956123352, + -0.011389130726456642, + 0.011597633361816406, + 0.0033741951920092106, + -0.003863272489979863, + -0.008743967860937119, + -0.0023123673163354397, + 0.0038231867365539074, + -0.0043323892168700695, + -0.004501738119870424, + -0.007355018053203821, + 0.004156883805990219, + -0.0008769644773565233, + 0.0023618675768375397, + -0.008660202845931053, + 0.0005914397770538926, + 0.0005744905793108046, + -4.3562806240515783e-05, + 0.001560261589474976, + 0.0004307841882109642, + -0.005850650370121002, + 0.0056382594630122185, + -0.0007776115671731532, + 0.0031919977627694607, + 0.002547437557950616, + 0.006427183281630278, + -6.879043212393299e-05, + 0.008565759286284447, + -0.00016655531362630427, + -0.010738792829215527, + 0.009232950396835804, + 0.010276165790855885, + 0.00017786874377634376, + -0.005380771588534117, + 0.016975881531834602, + 0.00765238469466567, + -0.005364961922168732, + -0.0021802433766424656, + -0.013077229261398315, + -0.0017989421030506492, + -0.006461922079324722, + 0.008183781988918781, + 0.01221686601638794, + -0.00700848363339901, + 0.0018373258644714952, + 0.0003414934908505529, + -0.004201119299978018, + -0.006797872483730316, + 0.0012188877444714308, + -0.00403437577188015, + -0.00508898263797164, + 0.008118231780827045, + -0.0021694472525268793, + -0.0015392685309052467, + 0.0003062706673517823, + -0.003982373513281345, + 0.00461521977558732, + 0.000788077712059021, + 0.00027707128901965916, + 0.016562432050704956, + 0.011816063895821571, + 0.005056275986135006, + 0.013559901155531406, + 0.006634443067014217, + 0.0015746054705232382, + 0.00089201086666435, + 0.001517504802905023, + -0.007370253559201956, + -0.006135720293968916, + 0.006017798557877541, + 0.00636901194229722, + 0.002870964352041483, + 0.0005504037253558636, + -0.010733330622315407, + 0.024503381922841072, + 0.003974332939833403, + 0.0068823229521512985, + 0.0036544869653880596, + 0.0020503767300397158, + 0.004940020851790905, + 0.023147232830524445, + -0.0026088361628353596, + 0.0038078047800809145, + 0.013323880732059479, + -0.0028049559332430363, + 0.004596474580466747, + 0.005945317447185516, + 0.0021126950159668922, + -0.002086083171889186, + -0.0007465318194590509, + -0.0014389387797564268, + 0.0011398717761039734, + 0.0034924007486552, + 0.0015987638616934419, + 0.017797907814383507, + 0.004139966331422329, + 0.023041317239403725, + -0.006568720564246178, + -0.0061542801558971405, + -0.003648641286417842, + 0.001510470057837665, + -0.0028695869259536266, + -0.00788895320147276, + 0.002737713046371937, + 0.001821664278395474, + -0.0013115713372826576, + 0.001694640377536416, + -0.0042543732561171055, + -0.005093638319522142, + 0.0006799902184866369, + -0.00039393239421769977, + -0.004559550900012255, + -0.0008335990714840591, + -0.013900219462811947, + -0.0037301380652934313, + 0.005424178205430508, + 0.0024111992679536343, + -0.001834416063502431, + 0.005034106317907572, + -0.005065024830400944, + 0.04398069903254509, + -0.02823774516582489, + 0.0009122136398218572, + 5.585196413449012e-05, + -1.8913244730356382e-06, + -0.00017191586084663868, + -0.002887389389798045, + 0.01766774244606495, + 0.0052104247733950615, + -0.0015238095074892044, + -0.013175439089536667, + -0.0018464626045897603, + 0.006891254335641861, + 0.002724129008129239, + -0.006762183737009764, + -0.003058102447539568, + 0.010525343008339405, + -0.002732672728598118, + -0.00013598712394014, + 0.0033526550978422165, + 0.0048890504986047745, + 0.00662508700042963, + 0.012264672666788101, + 0.009573397226631641, + -0.005524483043700457, + 0.002676447620615363, + 0.005721580237150192, + -0.0018264360260218382, + -0.0032406800892204046, + -0.0027368476148694754, + 0.0013373277615755796, + 0.0012869092170149088, + -0.004154775757342577, + -0.0017067440785467625, + 0.006566472351551056, + -0.002044321969151497, + 0.003086687298491597, + 0.0010929309064522386, + -0.005500816740095615, + -0.00048499013064429164, + 0.008134174160659313, + -0.031302593648433685, + -0.0065937046892941, + 0.005707793869078159, + 0.0052454532124102116, + 0.0015947746578603983, + 0.017973247915506363, + -0.013066698797047138, + 0.005166647955775261, + 0.0010893048020079732, + -0.0009421689319424331, + -0.016328617930412292, + -0.016140660271048546, + 0.0038769373204559088, + -0.006618058308959007, + -0.00029837118927389383, + -0.0002120917779393494, + 0.0028026087675243616, + -0.0011072095949202776, + 0.026253819465637207, + -0.008345124311745167, + -0.0029707211069762707, + 0.00010882804053835571, + 0.0003021329175680876, + 0.005215296056121588, + -0.01676863804459572, + 0.0005017546936869621, + -0.0013435286236926913, + 0.0009558648453094065, + -0.007249738555401564, + 0.0017620257567614317, + -0.0032726076897233725, + -0.005362576339393854, + -0.01180690061300993, + 0.0029238001443445683, + -0.0022306947503238916, + 0.007704455405473709, + -0.0011498070089146495, + 0.0010886501986533403, + -0.008204768411815166, + 0.03688763827085495, + -0.0004070119757670909, + 0.013105712831020355, + -0.004160391632467508, + -0.0029253761749714613, + 0.008504088968038559, + 0.001868917723186314, + -0.0014943407149985433, + -0.0011758236214518547, + 0.0031547294929623604, + -0.002939211670309305, + -0.006104070693254471, + 0.010364069603383541, + 0.008287637494504452, + -0.0012190673733130097, + 0.0071495296433568, + 0.0036793933250010014, + 0.005128637421876192, + 0.01374404039233923, + 0.0014684241032227874, + -0.001125608803704381, + -0.0031531881541013718, + -0.003459873842075467, + -0.005932187661528587, + 0.002300069434568286, + -0.0003788561443798244, + 0.008496200665831566, + 0.006336068268865347, + -0.001656052889302373, + -0.012484759092330933, + 0.006372916512191296, + -0.007155509199947119, + 0.004573418293148279, + 0.005170502699911594, + 0.0050909570418298244, + 0.0005197751452215016, + 0.0014702087501063943, + -0.00300220912322402, + 0.005457194522023201, + 0.00456036813557148, + 0.005495901685208082, + -0.0005790969589725137, + 0.005563931539654732, + 0.0021437685936689377, + -0.0031684343703091145, + 0.0019569324795156717, + -0.0037848486099392176, + 0.00010405782813904807, + 0.00905663799494505, + 0.0007474590092897415, + 0.01039449404925108, + 0.006886498536914587, + -0.0022727514151483774, + 0.0016540847718715668, + -0.007250670809298754, + 0.002307137241587043, + 0.00031755072996020317, + 0.007851200178265572, + -0.009471386671066284, + -0.0015008951304480433, + 0.000590429874137044, + -0.004165345337241888, + -0.0054566459730267525, + -0.0031357465777546167, + 0.005377509165555239, + 0.0009529032977297902, + 0.004074312746524811, + -0.004565285984426737, + 0.004543098155409098, + 0.002518660156056285, + 0.013705495744943619, + -0.011383109726011753, + 0.0026663721073418856, + -0.0033229379914700985, + 0.00010697954712668434, + 0.007999932393431664, + 0.001234888331964612, + -0.002415604190900922, + 0.010894636623561382, + -0.01643562875688076, + -0.0014227695064619184, + 0.005096364300698042, + 0.003404776332899928, + -0.0043241847306489944, + 0.000839216576423496, + -0.0034501953050494194, + -0.004679941572248936, + -0.0009728037402965128, + -0.0006951604154892266, + 0.001884009689092636, + 0.005813656374812126, + -0.003923456184566021, + -0.000135503985802643, + 0.0007979878573678434, + -0.014501289464533329, + -0.012813225388526917, + -0.0046917456202209, + 0.003141909372061491, + -0.006898859050124884, + -0.0012214947491884232, + -0.011240062303841114, + -0.008395749144256115, + -0.00043442813330329955, + -0.028228091076016426, + 0.004084062296897173, + 0.016911963000893593, + -0.0028370986692607403, + 0.006154020316898823, + 0.0015267250128090382, + 0.0010352516546845436, + 0.006207138299942017, + 0.005821045953780413, + 0.00148855522274971, + -0.0025388654321432114, + -0.004249359481036663, + 0.006040664855390787, + -0.006388036534190178, + 0.0351809486746788, + 0.0011625272454693913, + -0.0003505403583403677, + -0.005070215556770563, + -0.010835479013621807, + 0.004837791435420513, + 0.010703391395509243, + 0.009495562873780727, + 0.003331537824124098, + -0.0034616373013705015, + 0.008487986400723457, + 0.010109350085258484, + 0.004404931329190731, + 0.004251739475876093, + -0.0012605474330484867, + -0.005159137304872274, + 0.0024399938993155956, + -0.001801947015337646, + 0.0023589790798723698, + 0.0015263105742633343, + 0.010649838484823704, + 0.0007497937767766416, + -0.008431406691670418, + 0.00819976907223463, + -0.0039322576485574245, + -0.020845361053943634, + 0.002725731348618865, + -0.0008676693541929126, + 0.0012470721267163754, + -0.004797494504600763, + -0.0013873224379494786, + 0.010481973178684711, + 0.008683579042553902, + 0.012918679043650627, + 0.0015948086511343718, + 0.010561393573880196, + 0.000311643467284739, + -0.006117028649896383, + -0.008568760007619858, + 0.0002043946587946266, + -0.0031604922842234373, + 0.0014537894167006016, + -0.0003454226243775338, + 0.0010385215282440186, + 0.005234581883996725, + -0.002339067403227091, + -0.027222102507948875, + -0.002016807906329632, + -0.006740548647940159, + 0.013748673722147942, + 0.004942035768181086, + -0.002265442628413439, + -0.005234252195805311, + -0.00538559490814805, + -0.010473874397575855, + 0.00826965644955635, + -0.001576874521560967, + -0.009831992909312248, + 0.0014120807172730565, + -0.005601086653769016, + -0.00395372835919261, + 0.004238147754222155, + 0.005697796121239662, + 0.013049358502030373, + 0.014668013900518417, + -0.0021623168140649796, + -0.003955910447984934, + 0.002087334869429469, + -0.002666945569217205, + -0.0005828605499118567, + 0.009121840819716454, + 0.007345485966652632, + -0.014903885312378407, + 0.0016724837478250265, + -0.008302335627377033, + -0.006128428038209677, + 0.007160935550928116, + -0.00027970015071332455, + 0.0038774472195655107, + 0.009156681597232819, + 0.013009433634579182, + -0.0029592770151793957, + 0.008764366619288921, + -0.006440144497901201, + -0.0038665872998535633, + 0.04418293759226799, + 0.003373958868905902, + -0.0030038724653422832, + -0.01152587216347456, + -0.005312327295541763, + -0.003464146051555872, + 0.0006709793815389276, + -0.0020630599465221167, + -0.010475707240402699, + -0.0033020798582583666, + -0.0011475764913484454, + 0.0003572814166545868, + 0.007399768102914095, + -0.003919845912605524, + 0.005961872637271881, + -0.0023757757153362036, + -0.007493616547435522, + -0.004685590509325266, + 0.002809076337143779, + 0.0033047031611204147, + 0.0022249172907322645, + -0.005382702220231295, + -0.00857556238770485, + -0.007443813607096672, + -0.0003102667978964746, + 0.0009913326939567924, + 0.0013065011007711291, + 0.007550461683422327, + -0.0004987004795111716, + -0.0050547304563224316, + -0.003046942874789238, + -0.0049076080322265625, + -0.005058834329247475, + 0.00152934982907027, + 0.0026978699024766684, + -0.005077352747321129, + -0.0008694601128809154, + -0.0001193559292005375, + -0.0123531399294734, + 0.006642415188252926, + 0.0029972498305141926, + -0.002145222155377269, + -0.008290020748972893, + -4.947914931108244e-05, + 0.0015172282001003623, + -0.01649620570242405, + -0.008148564957082272, + -0.0024762530811131, + -0.002119628945365548, + 0.00263472949154675, + 0.0027303388342261314, + 0.0018801476107910275, + 0.0009726052521727979, + 0.012417695485055447, + 0.007452766876667738, + 0.0033931639045476913, + -0.0026478623040020466, + -0.002667124615982175, + 0.0022220276296138763, + -0.0053307670168578625, + -0.0012399868573993444, + -0.0028178964275866747, + -0.008006973192095757, + -0.007902299985289574, + 0.005220774095505476, + 0.006352643016725779, + -0.0015935441479086876, + -0.0008546779863536358, + -0.008419361896812916, + -0.0036476801615208387, + 0.005818950943648815, + -0.0013896786840632558, + 0.0031922294292598963, + 0.003535149386152625, + 0.0009622746729291975, + 0.007922055199742317, + -0.001564900972880423, + -0.0068037924356758595, + -0.004449143074452877, + -0.012907909229397774, + 0.007609592285007238, + -0.007613114081323147, + -0.0009777913801372051, + -0.005836655851453543, + 0.0010665571317076683, + -0.00010162601392949, + -0.0018743096152320504, + -0.0036403804551810026, + 0.00023473455803468823, + 0.007314636372029781, + 0.008793236687779427, + 0.005053694825619459, + -0.0018755003111436963, + -0.0010511567816138268, + -0.002529738936573267, + -0.0007001826888881624, + 0.003298175521194935, + 0.005093144252896309, + -0.0014751426642760634, + -0.002561724977567792, + -0.0034912496339529753, + 0.00978385005146265, + -0.002795287175104022, + 0.010316955856978893, + -0.00553602259606123, + -0.008489220403134823, + -0.018429668620228767, + -0.006317072547972202, + -0.013028332963585854, + 0.010017326101660728, + 0.01363800186663866, + -0.0055018020793795586, + -9.980693721445277e-05, + 0.0011782462242990732, + -0.0118899280205369, + 0.0030483240261673927, + -0.0023909318260848522, + 0.001989679178223014, + -0.0041598486714065075, + -0.010182050988078117, + 0.0023152518551796675, + -0.00248181214556098, + 0.014934239909052849, + -0.0048619043081998825, + -0.002599556464701891, + 0.002875765785574913, + -0.010356887243688107, + -0.0013773618265986443, + -0.004325942136347294, + 0.011109721846878529, + 0.007730902638286352, + 0.005394543055444956, + 0.017459791153669357, + -0.0009900169679895043, + -0.0024297148920595646, + -0.012271800078451633, + -0.010335247032344341, + -0.024995107203722, + 0.008500954136252403, + -0.004000017885118723, + 0.0033042740542441607, + -0.002034036675468087, + 0.0020819075871258974, + 0.0014205588959157467, + -0.015434429980814457, + -0.00782783143222332, + 0.016065482050180435, + -0.0008053095079958439, + 0.0008008742006495595, + -0.014033688232302666, + 0.005596197675913572, + 0.003502414794638753, + -0.0031587472185492516, + 0.002862143563106656, + 0.0016047029057517648, + 0.00017817130719777197, + 0.05560406297445297, + 0.0035516174975782633, + 0.0019554223399609327, + -0.0022442496847361326, + -0.010095021687448025, + 0.009543045423924923, + -0.005409824661910534, + -0.009933632798492908, + 0.004810708109289408, + 0.003483060747385025, + 0.003130591008812189, + 0.0011826115660369396, + 0.0025607487186789513, + 0.0023927446454763412, + -0.008808881975710392, + -0.0023185100872069597, + -0.002751352731138468, + -0.005854748655110598, + 0.0013473170110955834, + -0.0017940168036147952, + -0.0010656455997377634, + 0.006871272809803486, + -0.004072021692991257, + -0.005275225266814232, + -0.0016386678908020258, + -0.014910737052559853, + -0.006182878278195858, + 0.004167303442955017, + -0.0003397381224203855, + -0.0029302206821739674, + 0.007645731326192617, + 0.000959839322604239, + -0.005075545981526375, + -0.00013462925562635064, + 0.008039131760597229, + 0.0020736290607601404, + 0.006171840708702803, + -0.0003649494028650224, + -0.006721013691276312, + 0.004574064631015062, + 0.005716085899621248, + -0.00026055940543301404, + 0.0079885795712471, + -0.010835867375135422, + -0.003605699399486184, + 0.0038166362792253494, + 0.0007599074742756784, + 0.005485048517584801, + 0.0017449884908273816, + 0.010225151665508747, + 0.004994465969502926, + 0.001048944890499115, + 0.0006619630148634315, + -0.00028290346381254494, + 0.0066850618459284306, + -0.001265719998627901, + 0.0050819749012589455, + -0.02303840033710003, + -0.011322570033371449, + -0.0010881921043619514, + 0.004863517824560404, + 6.06589819653891e-05, + 0.001698975102044642, + 0.01016929466277361, + -0.00024424894945695996, + -0.000989454914815724, + 0.007463081739842892, + -0.007277295924723148, + 0.00205437745898962, + 0.007939075119793415, + -0.009342656470835209, + 0.012974138371646404, + -0.002342472318559885, + -0.0038569187745451927, + -0.006065547466278076, + 0.007474040612578392, + 0.0003404162416700274, + 0.001894232933409512, + 0.006778111215680838, + 0.0008453793125227094, + 0.007088836748152971, + -0.0020818165503442287, + 0.0003986507363151759, + 0.006137266755104065, + -0.0003373486688360572, + 0.0012313203187659383, + 0.0039254180155694485, + -0.003444054862484336, + 0.0022963369265198708, + 4.9425863835494965e-05, + -0.012979468330740929, + -0.012376777827739716, + -0.000597283011302352, + -0.010503308847546577, + 0.002895941259339452, + 0.0011563639855012298, + -0.001086738775484264, + -0.0042459359392523766, + 0.008355115540325642, + -0.0007802433101460338, + 0.0017298710299655795, + -0.011097277514636517, + -0.007904565893113613, + -0.001267443411052227, + 0.0029632507357746363, + 0.005221220664680004, + 0.01829468086361885, + -0.003549204906448722, + -0.00282765319570899, + 0.007619093172252178, + -0.007606462109833956, + -0.0018450615461915731, + -0.00200415076687932, + 0.0026216134428977966, + 0.004287125542759895, + 0.007308874744921923, + 0.009064992889761925, + 0.0008123124134726822, + -0.0015502531314268708, + 0.0038111575413495302, + -0.004974787589162588, + -0.0020255811978131533, + -0.005809181369841099, + 0.0006386401364579797, + 0.0014598489506170154, + -0.0006119331228546798, + 0.005997801199555397, + -0.0011294811265543103, + 0.004528708290308714, + -0.006519516464322805, + 0.00981541071087122, + -0.002485825214534998, + 6.354875222314149e-05, + 0.00796821340918541, + -0.003671786980703473, + -0.0027370071038603783, + 0.007226155139505863, + -0.004791491199284792, + 0.0023710394743829966, + 0.0077660661190748215, + 0.002853159327059984, + 0.0006492562824860215, + 0.003859853371977806, + 0.005174859892576933, + -0.005788909737020731, + 0.0051893009804189205, + -0.0047670756466686726, + -0.0028677494265139103, + -0.00319487601518631, + -0.00474086357280612, + 0.0008166072657331824, + 0.014599308371543884, + 0.007099673617631197, + -0.006356560625135899, + -0.004026292823255062, + -0.0014056614600121975, + -0.0028799460269510746, + -0.006752249784767628, + -0.0024911328218877316, + 0.018104147166013718, + -0.01480935886502266, + -0.00393431494012475, + -0.0016911218408495188, + -8.890399476513267e-05, + 0.0018451170763000846, + -0.0003875946276821196, + -0.0031798791605979204, + -0.009739595465362072, + -0.002543698763474822, + -0.0003264439292252064, + 0.0003853980451822281, + 0.00405365414917469, + 0.003027659608051181, + 0.0033819149248301983, + -0.023899268358945847, + -0.0017492333427071571, + 0.0038789601530879736, + 0.00018045768956653774, + -0.015153469517827034, + 0.0020013712346553802, + 0.0004233256040606648, + 5.86175883654505e-06, + -0.0021386791486293077, + 0.004650013986974955, + -0.0009185443050228059, + -0.0002993540547322482, + -0.0021557521540671587, + -0.0008315707673318684, + -0.003175649093464017, + 0.006769482512027025, + -0.00458923215046525, + -0.005566279403865337, + 0.010610232129693031, + -0.0008650661911815405, + 0.003909172024577856, + 0.003245777916163206, + 0.009398379363119602, + 0.003286451566964388, + -0.0018518551951274276, + -0.0051002297550439835, + 0.005132585298269987, + -0.0027391265612095594, + -0.0019364436157047749, + -0.0071104420349001884, + 0.0011554636294022202, + -0.0028179294895380735, + 0.004337213467806578, + -0.0027804600540548563, + -0.008259536698460579, + -0.007864517159759998, + 0.0009093076223507524, + 0.004624010529369116, + -0.0012338641099631786, + 0.005609865300357342, + -0.004695835057646036, + 0.0066015091724693775, + -0.002010398544371128, + 0.0033619278110563755, + -0.009517018683254719, + 0.002222553826868534, + -0.003927771467715502, + -0.0022232842165976763, + 0.005345878191292286, + -0.003569417865946889, + 0.0012813920620828867, + -0.0017061105463653803, + 0.012271658517420292, + -0.0006769513129256666, + -0.002381957368925214, + -0.004048129078000784, + 0.00443485239520669, + -0.0029044137336313725, + 0.006466752849519253, + -0.0044143046252429485, + 0.0038684059400111437, + 0.001494801603257656, + 0.01661984808743, + 0.000831242767162621, + 0.006380409933626652, + 0.003814414609223604, + -0.0016212946502491832, + 0.006023992784321308, + -0.0006244589458219707, + -0.0013941843062639236, + -0.0028185604605823755, + 0.01583799533545971, + 0.004212917760014534, + 0.0032140815164893866, + 0.006308284588158131, + -0.0035538470838218927, + 0.008097337558865547, + 0.0003936947323381901, + -0.009383140131831169, + -0.0026694873813539743, + 0.00025811302475631237, + -0.007516774814575911, + 0.002116924850270152, + -0.010114641860127449, + 0.0014296796871349216, + -0.004112620372325182, + 0.0025510957930237055, + 0.0021354693453758955, + 0.007509817369282246, + -0.005569513887166977, + 0.0005038099479861557, + -0.0015532829565927386, + -0.006405712105333805, + 0.003485324326902628, + 0.002390752313658595, + 0.009145565330982208, + 0.015350868925452232, + -0.005516687408089638, + 0.00265878695063293, + 0.0007888932013884187, + 0.008133207447826862, + -0.00106851349119097, + -0.0044189863838255405, + -0.001083621522411704, + -0.007765051908791065, + -0.005122793838381767, + 0.0008508976898156106, + 0.0005220076418481767, + 0.0016074066516011953, + -0.006047300063073635, + 0.007433703634887934, + 0.0012554521672427654, + -0.010081993415951729, + -0.013046052306890488, + -0.01011630892753601, + 0.006207699421793222, + -0.004717094823718071, + -0.0038124697748571634, + -0.004016902297735214, + -0.004100529011338949, + 0.004335671663284302, + 0.0022860511671751738, + 0.007502289023250341, + -0.003084937809035182, + 0.002979135373607278, + 0.004882723558694124, + 0.006801772862672806, + 0.00039777017082087696, + -0.0023662711028009653, + 0.004689223598688841, + 0.0145054180175066, + 0.0018422469729557633, + -0.0027284943498671055, + -0.0027181708719581366, + -0.002863634144887328, + -0.0008299539913423359, + 0.0018898994894698262, + -0.000412414112361148, + 0.007176823448389769, + -0.003439737483859062, + -0.004707702435553074, + -0.00703551946207881, + -0.0019048948306590319, + -0.00748975295573473, + -0.014517444185912609, + 0.001141818007454276, + -0.0022265524603426456, + 0.008574621751904488, + 0.0031250694300979376, + -0.006468343548476696, + 0.00652543967589736, + 0.001408756012097001, + 0.0036867756862193346, + 7.664645818294957e-05, + 0.0016277172835543752, + 0.0036267274990677834, + -0.00402003014460206, + -0.0063442038372159, + 0.0028845847118645906, + 0.002795485081151128, + 0.0023129198234528303, + 0.007435963489115238, + -0.00519019179046154, + -0.0023484104312956333, + 0.005541739985346794, + 0.0035812545102089643, + 0.0010464477818459272, + 0.0032847956754267216, + 0.02386489510536194, + 0.0006447023479267955, + -0.002253090962767601, + -0.0023891355376690626, + 0.001252390444278717, + 0.0003706833813339472, + -0.002287615556269884, + 0.002279779640957713, + 0.003651275997981429, + 0.004639398772269487, + 0.0008347399416379631, + 0.0009467821219004691, + -0.004522319417446852, + 0.002385940868407488, + -0.0031026394572108984, + 0.0032567130401730537, + -0.011059826239943504, + 0.004824868869036436, + 0.007527004461735487, + -0.0017607363406568766, + -0.0077631836757063866, + -0.0024612797424197197, + -0.007852361537516117, + 2.0333392967586406e-05, + -0.0036813474725931883, + -0.0037510001566261053, + -0.008024001494050026, + -0.0015253691235557199, + -0.005179114174097776, + -0.000507573364302516, + 0.00012574958964250982, + -0.0008095985976979136, + 0.011232434771955013, + 0.002675841096788645, + 0.005864310543984175, + 0.0018595189321786165, + 0.0071738529950380325, + 0.012427816167473793, + -0.006750219501554966, + 6.006394687574357e-05, + -0.0021496412809938192, + -0.01649097539484501, + -0.0016945524839684367, + 0.018005352467298508, + -0.0013154795160517097, + 0.007210926152765751, + 0.011840232647955418, + 7.402397750411183e-05, + 0.0067950282245874405, + 0.0018777975346893072, + 0.011127813719213009, + 0.0033131411764770746, + -0.002737474860623479, + -0.004414261318743229, + -0.00309367454610765, + 0.0025191360618919134, + -0.0009215195896103978, + -0.0005807415582239628, + 0.006955414544790983, + -0.006707044783979654, + 0.0025901049375534058, + -0.000537133018951863, + 0.009941618889570236, + 0.00662843557074666, + -0.0011083149584010243, + -0.00572837283834815, + -0.00684012845158577, + 0.0018865806050598621, + -0.005957003217190504, + -2.5070297851925716e-05, + -0.010777203366160393, + -0.008357284590601921, + -0.011154940351843834, + 0.009062128141522408, + 0.0035149846225976944, + 0.007786406669765711, + -0.006616536062210798, + -0.001596716814674437, + 0.0005112748476676643, + -0.0009916636627167463, + -0.0032869407441467047, + 0.003997005056589842, + 0.002562702866271138, + 0.013467653654515743, + 0.008468186482787132, + -0.002304741647094488, + 0.0003042068856302649, + 0.004977355245500803, + -0.006357443984597921, + 0.002216499764472246, + 0.005537229124456644, + -0.00726759759709239, + 0.011567694135010242, + -0.003957977052778006, + 0.0002541207941249013, + -0.0022441039327532053, + -0.007873935624957085, + 0.004134804010391235, + -0.039794109761714935, + -0.012115024030208588, + -0.008909634314477444, + 0.0034590752329677343, + 0.00792654324322939, + -0.005691950675100088, + -0.003041804302483797, + -0.0003277991199865937, + -0.0004862012283410877, + 0.011951847933232784, + 0.0036032546777278185, + -0.004679747857153416, + 0.005498012527823448, + 0.0012047674972563982, + -0.006425774190574884, + 0.004212582018226385, + -0.0008914893842302263, + 0.005106783472001553, + -0.0025134189054369926, + -0.00473753409460187, + -0.019714053720235825, + -0.003717956831678748, + -0.00791723933070898, + -0.009718019515275955, + 0.005124067422002554, + -0.006736160721629858, + -0.0047830031253397465, + -0.0021700889337807894, + 0.0016864376375451684, + -0.0030995216220617294, + -0.003937875851988792, + 0.005184346344321966, + -0.010159796103835106, + 0.006041981745511293, + -0.010290284641087055, + 0.00596463680267334, + -0.00019933759176637977, + 0.00576866464689374, + -0.005577312782406807, + -0.0016998948995023966, + 0.001980008790269494, + 0.00035879513598047197, + -0.0024592450354248285, + 0.0022858944721519947, + -0.026671603322029114, + -0.003686358919367194, + 0.010028383694589138, + 0.008198347873985767, + -0.008394081145524979, + -0.0002900345716625452, + 0.001664270181208849, + -0.009156288579106331, + -0.004443377256393433, + 0.002719065872952342, + 0.0053810435347259045, + -0.006246911361813545, + 0.0015249382704496384, + 0.00165536068379879, + -0.002629150403663516, + -0.0027206193190068007, + -0.003103174502030015, + 0.002855022670701146, + -0.008385838940739632, + 0.008501417934894562, + -0.012016299180686474, + 0.0012323629343882203, + 0.0008875748026184738, + -0.007506727706640959, + -0.0010463260114192963, + 0.006219089031219482, + -0.0038006950635463, + 0.009368483908474445, + 0.015660377219319344, + -0.0014363545924425125, + 0.0014234122354537249, + 0.004962112754583359, + -0.0013212766498327255, + 0.0027983144391328096, + 0.0016934365266934037, + 0.007066706195473671, + 0.00023859388602431864, + -0.0031829634681344032, + -0.009669292718172073, + 0.00022934444132260978, + -0.003664859104901552, + 0.0007568281143903732, + -2.8108061087550595e-05, + 0.0037490283139050007, + -0.005059593822807074, + -0.00970673467963934, + 0.0029742037877440453, + 0.0032999140676110983, + 0.007154455408453941, + -0.0041558146476745605, + -0.002075068186968565, + 0.00471515255048871, + -0.004126834683120251, + 0.000845591479446739, + -0.020427439361810684, + -0.0019517322070896626, + -0.0010201839031651616, + -0.0047784349881112576, + 0.0034804733004420996, + 0.002258005551993847, + 0.00018909505160991102, + -0.0020872382447123528, + -0.002589843003079295, + 0.00316606555134058, + -0.0029415693134069443, + -0.00451105460524559, + 0.007209866773337126, + -0.0034464779309928417, + -0.0031921814661473036, + 0.0032694917172193527, + -0.002476888010278344, + 0.0028600681107491255, + 0.0024705587420612574, + -0.003473169868811965, + -0.003034491091966629, + -0.0007420924957841635, + -0.003337070345878601, + -0.00013155289343558252, + -0.003198962425813079, + -0.012648351490497589, + -0.0006346676382236183, + 0.006669295020401478, + 0.004864875692874193, + 0.008095203898847103, + 0.0004007852985523641, + 0.004961709957569838, + 0.006143808364868164, + 0.006124045699834824, + -0.003517140867188573, + 0.003114105435088277, + -0.011078465729951859, + 0.005627552047371864, + 0.008284871466457844, + 0.010226530022919178, + -0.002768796868622303, + -0.00018479314167052507, + 0.015714993700385094, + 0.011683431454002857, + 0.006598260253667831, + -0.010570371523499489, + -0.002396856900304556, + 0.007804311346262693, + -0.0035095654893666506, + -0.0038381449412554502, + 0.0013185286661610007, + -0.007965272292494774, + 0.004168082494288683, + -1.1358828487573192e-05, + -0.029551012441515923, + -0.004233164247125387, + 0.0035488009452819824, + -0.0018023247830569744, + -0.0015217900509014726, + 0.0034967565443366766, + -0.005915036424994469, + -0.005699216388165951, + 0.001458080718293786, + 0.002257915213704109, + -0.006264293100684881, + 0.0045473226346075535, + -0.0009779600659385324, + 0.0029535768553614616, + -0.0028929400723427534, + 0.005533624906092882, + -0.0057359314523637295, + -0.005305490922182798, + 0.012191553600132465, + 0.00266992743127048, + -0.004217706620693207, + 0.007644872646778822, + -0.00860562827438116, + 0.012136844918131828, + 0.0008066362934187055, + 0.0015370314940810204, + 0.004192485939711332, + -0.004278752952814102, + 0.0029477800708264112, + 0.002444824203848839, + -0.0010749375214800239, + -0.017312288284301758, + 0.0002659373276401311, + -0.0003194663440808654, + 0.005621406715363264, + 0.008339566178619862, + -0.003477859776467085, + -0.005283128470182419, + 0.006243550684303045, + 0.015103451907634735, + -0.0005326563841663301, + 0.006240173242986202, + 0.003840466495603323, + 0.0019817063584923744, + -0.002908682217821479, + 0.008026559837162495, + 0.0036808019503951073, + -0.008925343863666058, + 0.0018889826023951173, + -0.008879491128027439, + -0.00041666990728117526, + 0.0023822637740522623, + -0.0020467909052968025, + 0.004125905688852072, + -0.005148515570908785, + -0.003872654167935252, + -2.5071298296097666e-05, + 0.014725818298757076, + -0.00861476268619299, + 0.005691204220056534, + -0.007277245633304119, + 0.003145315684378147, + 0.01091074850410223, + -0.0027198405005037785, + -0.026883024722337723, + -0.00676463870331645, + -0.0019747517071664333, + 0.004743488971143961, + 0.0019609613809734583, + -0.007146028336137533, + -0.018585845828056335, + -0.002036459045484662, + 0.0037219058722257614, + 0.004873184021562338, + -0.01298319548368454, + -0.00012467525084502995, + 0.002914517419412732, + 0.0037892351392656565, + -0.003564971499145031, + -0.001377678127028048, + 0.0014216541312634945, + -0.005824806168675423, + 0.003897079499438405, + -0.006093365605920553, + 0.003034604247659445, + 0.0014493325725197792, + 0.0038730339147150517, + -0.004504244774580002, + -0.008261580020189285, + 0.00022972871374804527, + 0.0008396429475396872, + 0.004939742386341095, + -0.0016185749555006623, + -0.005454113241285086, + -0.0017297231825068593, + 0.021078266203403473, + 0.000775976397562772, + -0.0037970454432070255, + -0.0017548913601785898, + -0.005408870056271553, + -0.002577601233497262, + -0.0001416815211996436, + -0.004984044469892979, + 0.0003850787179544568, + -0.006608990486711264, + -0.006083064246922731, + -0.0032943449914455414, + 0.011831004172563553, + -0.0012283504474908113, + 0.0010455686133354902, + -0.0028360444121062756, + -0.0030260200146585703, + -0.0016932826256379485, + -0.0031615907792001963, + 0.013840426690876484, + -0.007597616408020258, + 0.0022166292183101177, + 0.0015328702284023166, + 0.007901088334619999, + 0.002113754628226161, + 0.007012863177806139, + 0.001108254655264318, + -0.0074691446498036385, + -0.0021332665346562862, + 0.008474955335259438, + -0.006300782784819603, + 0.0026624940801411867, + -0.000633085030131042, + -0.00776718370616436, + -0.0005198380094952881, + -0.002666477346792817, + -0.010109025053679943, + -0.0001593055931152776, + -0.0025926039088517427, + 0.002929334994405508, + -0.0015877680853009224, + 0.002024320187047124, + 0.0007091427687555552, + -0.004360879771411419, + 0.002590181538835168, + 0.0035149322357028723, + -0.001291138818487525, + 0.001902197953313589, + 0.0001592942571733147, + -0.02134348452091217, + -4.027879185741767e-05, + -0.002933414652943611, + -0.00025942508364096284, + 0.0026535564102232456, + -0.0019282759167253971, + -0.002829756820574403, + 0.0026421158108860254, + -0.003745822701603174, + -0.005281486548483372, + -0.0034347556065768003, + -0.002418587217107415, + 0.005363656207919121, + 0.010703212581574917, + -0.0027275318279862404, + 0.0014260105090215802, + -0.0003816491807810962, + 0.0015137968584895134, + -0.0035106251016259193, + -0.009722513146698475, + -0.00014975792146287858, + -5.885890277568251e-05, + 0.0039341808296740055, + -0.007703935727477074, + 0.007796561345458031, + -0.000922397943213582, + 0.0010701633291319013, + -0.0027231164276599884, + 0.006892513949424028, + -0.043340783566236496, + -0.0034546456299722195, + 0.012058587744832039, + -0.006885364186018705, + 0.0012858418049290776, + -0.003900937968865037, + 0.004147078841924667, + -0.01577765867114067, + 0.003148384392261505, + -0.007106971926987171, + 0.010874132625758648, + 0.011884878389537334, + 0.004425668623298407, + -0.010746297426521778, + -0.0005691566038876772, + 0.0014849434373900294, + 0.0018577843438833952, + 0.003795698517933488, + 0.0009894135873764753, + 0.004259554203599691, + -0.00422234833240509, + -0.0005248612724244595, + 0.0032916271593421698, + 0.007295456249266863, + -0.015676697716116905, + -0.009070809930562973, + -0.003996953368186951, + 0.0003385123854968697, + 0.003025058889761567, + -0.01790490932762623, + 0.007815772667527199, + -0.0028346050530672073, + 0.0006721647223457694, + 0.005170689895749092, + -0.015130225569009781, + -0.0074546667747199535, + 0.0037878197617828846, + -0.00854118075221777, + 0.012036656960844994, + 0.008641833439469337, + -0.010597044602036476, + -0.008377175778150558, + 0.004842578899115324, + 0.005027151666581631, + -0.0017104697180911899, + -0.006128057837486267, + -0.0045158714056015015, + -0.010205217637121677, + -0.001946711796335876, + 1.4944004760764074e-05, + 0.005455363541841507, + -0.00904141552746296, + -0.005059259012341499, + -0.002116971183568239, + 0.0034826139453798532, + -0.005430218297988176, + 0.002905038418248296, + 0.0004010881239082664, + 0.005993462633341551, + -0.0045838975347578526, + -0.006016515661031008, + -0.003904891898855567, + -0.006845289841294289, + -0.000522611488122493, + 0.0007827545632608235, + -0.0025271971244364977, + 0.007527114357799292, + 0.005972396116703749, + 0.0022822474129498005, + -0.0035853171721100807, + 0.00738111138343811, + 0.011906050145626068, + -0.003287186846137047, + 0.006794817745685577, + -0.002820231718942523, + 0.002142383251339197, + -0.0067383898422122, + -0.005122174043208361, + 0.0031516123563051224, + -0.002811774844303727, + 0.008975247852504253, + 0.007390019483864307, + -0.01645810343325138, + 0.008056496270000935, + -0.006206729914993048, + 8.593435632064939e-05, + 0.0076842643320560455, + 0.004809764679521322, + 0.02225826494395733, + 0.005982954520732164, + -0.005727551411837339, + -0.0021216205786913633, + 0.003667134093120694, + 0.009703915566205978, + 0.0017996142851188779, + 0.012175468727946281, + -0.008635939098894596, + -0.015089412219822407, + -0.0007985315751284361, + 0.022267630323767662, + -0.0006283746333792806, + 0.0015930633526295424, + 0.008210480213165283, + 0.06879118084907532, + -0.01654234156012535, + -0.006602797191590071, + 0.009943755343556404, + -0.0028633074834942818, + -0.0077412244863808155, + -0.005614487454295158, + 0.01332132238894701, + 0.0023058413062244654, + -0.0006829826161265373, + -0.01915147341787815, + 0.006851943209767342, + -0.001387040363624692, + -0.005903956945985556, + 0.0058336383663117886, + -0.009441500529646873, + -0.007325384300202131, + 0.015323261730372906, + 0.0045901816338300705, + -0.0199807770550251, + 0.0018921795999631286, + -0.004053699318319559, + 0.014368961565196514, + 0.0052468846552073956, + 0.006172880996018648, + -0.002673817565664649, + -0.009130379185080528, + 0.01166882086545229, + 0.005720167420804501, + -0.0014063981361687183, + 0.0034725964069366455, + -0.005493071861565113, + -0.005895620211958885, + 0.0008080947445705533, + 0.0003814742958638817, + 0.005529880989342928, + 0.0035042541567236185, + 0.0013510549906641245, + -0.0009653978631831706, + -0.014964853413403034, + -0.002368053188547492, + -0.0006685854168608785, + 0.009531920775771141, + 0.010997884906828403, + -0.012247213162481785, + 0.010878647677600384, + 0.0034959870390594006, + -0.006237996742129326, + -0.003387030679732561, + -0.005132087506353855, + -0.002827382879331708, + 0.00035843090154230595, + -0.0021728386636823416, + 0.0017921808175742626, + -0.00027401631814427674, + 0.0007182564586400986, + -0.0035964169073849916, + -0.0014345459640026093, + 0.005728323478251696, + -0.0032738838344812393, + -0.0007906960672698915, + 0.00831631850451231, + 0.0024184894282370806, + -0.006327209994196892, + -0.002907389309257269, + 0.0015312457690015435, + 0.008189039304852486, + -0.0007485019159503281, + -0.0028209045995026827, + -0.01182557549327612, + 0.0025068798568099737, + -0.0076771629974246025, + -0.0035459017381072044, + -0.03529755398631096, + 0.0014497755328193307, + 0.0038538239896297455, + 0.0017998511902987957, + -0.009497852995991707, + -0.004290038254112005, + 0.009200727567076683, + -0.00497598247602582, + 0.00039977129199542105, + -0.0013813921250402927, + -0.0020417203195393085, + -0.0036043603904545307, + 0.00673629529774189, + -0.004063302185386419, + 0.0007189419120550156, + 0.008280704729259014, + 0.002655903110280633, + 0.005255396012216806, + -0.007251320872455835, + -0.003860621713101864, + -0.0005453447229228914, + -0.024872906506061554, + -0.00020131649216637015, + 0.0031606750562787056, + 0.0029300434980541468, + 0.0007972951862029731, + -0.0009949501836672425, + 0.0002610738738439977, + -0.002942235441878438, + -0.002536681480705738, + 0.0068245260044932365, + 0.008178860880434513, + -0.006480863783508539, + 0.0012528052320703864, + 0.002057171193882823, + -0.0017785585951060057, + 0.003999661188572645, + -0.0011158689158037305, + 0.0024775357451289892, + -0.00345793878659606, + -0.005197937600314617, + -0.01356273703277111, + -0.005307874176651239, + -0.001985542941838503, + -0.0018122355686500669, + -0.0023636852856725454, + -0.0010196497896686196, + -0.005147767718881369, + 0.003593715839087963, + 0.003689583158120513, + 0.002512081293389201, + -0.0008115987875498831, + -0.008597836829721928, + 0.002723162295296788, + -0.0049824900925159454, + -0.005002665799111128, + -0.005764218512922525, + -0.005142906215041876, + 0.000479353591799736, + -0.009896417148411274, + 0.005250738933682442, + -0.004698267672210932, + 0.0025531058199703693, + 0.0011278598103672266, + -0.005096708424389362, + 0.0010396388825029135, + 0.013284597545862198, + 0.004576004110276699, + 0.001769764581695199, + -0.004786572884768248, + -0.0028374146204441786, + 0.006081868894398212, + 0.0029104247223585844, + -0.0008402051171287894, + 0.000707285653334111, + -0.0047229500487446785, + -0.009326839819550514, + -0.014013443142175674, + -0.0006499132723547518, + -0.00487301591783762, + -0.00012310000602155924, + 0.0005270198453217745, + 0.009405446238815784, + -0.0012269702274352312, + 0.004188599996268749, + -0.0036929375492036343, + -0.0004517549241427332, + 0.005784329958260059, + 0.0022960093338042498, + -0.005103726871311665, + 0.012826749123632908, + -0.0025151483714580536, + 0.007973158732056618, + 0.00032695522531867027, + 0.025413967669010162, + 0.004641135688871145, + 0.006417868193238974, + 0.004131054040044546, + -0.008681322447955608, + -0.006286426912993193, + -0.0021273004822432995, + 0.009554031305015087, + 0.004783570766448975, + -0.011563914828002453, + -0.0011270663235336542, + 0.008454104885458946, + 0.0028126491233706474, + 0.00420745462179184, + -0.004475520458072424, + 0.024185271933674812, + 0.006761887576431036, + -0.0052188364788889885, + -0.003459324361756444, + 0.006918436381965876, + 0.0008529538754373789, + -0.003490957897156477, + -0.006328089628368616, + -0.0008445775602012873, + -0.006898312829434872, + -0.0007268129847943783, + 0.01062818057835102, + 0.002848738804459572, + 0.0031284834258258343, + 0.006449445616453886, + -0.0029877200722694397, + 0.00012268510181456804, + 0.009363108314573765, + 0.018396949395537376, + -0.007378849666565657, + -0.0029520683456212282, + 0.005688656587153673, + -0.00019481607887428254, + -0.009320871904492378, + -0.0017512451158836484, + -0.0028299731202423573, + 0.005335248541086912, + 0.0012358665699139237, + -0.0060371775180101395, + -0.010264327749609947, + 0.00575321214273572, + -0.00516280485317111, + 0.005419355817139149, + -0.0020520412363111973, + -0.0038513250183314085, + -0.0013658972457051277 + ] + ], + "variance_threshold": 0.5 + } + }, + "32": { + "concepts": { + "happy": { + "count": 2, + "norm": 116.87755584716797, + "raw_vector": [ + -2.202162504196167, + -0.8222861886024475, + 1.1194019317626953, + 0.46616649627685547, + 2.4927268028259277, + -0.27812519669532776, + 0.048076774924993515, + 2.110215425491333, + -2.1790266036987305, + 1.5657620429992676, + 0.573366641998291, + -1.6178863048553467, + 0.03855958580970764, + 0.4009435772895813, + -0.20949387550354004, + -1.1815727949142456, + -1.1855367422103882, + -1.3768196105957031, + -0.4952217638492584, + -0.8484700918197632, + 0.4337169826030731, + -1.2812750339508057, + 0.17941349744796753, + -1.2635194063186646, + -1.5732495784759521, + 2.0319457054138184, + 0.05784938484430313, + -0.5105500817298889, + 0.5966349840164185, + 0.6630775928497314, + 0.30342718958854675, + 2.2449021339416504, + -0.7594465017318726, + -0.4189207851886749, + 0.7346675395965576, + 0.12435545772314072, + -2.5002121925354004, + 0.535108208656311, + 1.121771216392517, + 1.352892518043518, + -0.9657606482505798, + 1.1820586919784546, + -0.5518915057182312, + 0.9434944987297058, + -1.818239688873291, + -0.3492468297481537, + 0.3521692752838135, + -2.4286749362945557, + 1.16293466091156, + -1.045607089996338, + -0.10490300506353378, + 1.4119925498962402, + 0.057737141847610474, + -1.8441102504730225, + -3.630589485168457, + -0.4304770231246948, + -0.21112918853759766, + 0.8802148699760437, + 0.8300175666809082, + 0.8094116449356079, + -0.7474271059036255, + -0.405444860458374, + 1.0138394832611084, + 0.5726324915885925, + -0.003984464332461357, + -2.637510299682617, + -0.9596344232559204, + 1.2645822763442993, + 1.7196757793426514, + -0.7302826642990112, + -1.63512122631073, + -2.007446765899658, + 1.638816475868225, + 0.5480376482009888, + 1.211742639541626, + -4.460214138031006, + -0.7023569941520691, + 1.8295347690582275, + -0.838264524936676, + -0.5579072833061218, + -2.612847328186035, + -1.4731693267822266, + 2.788534641265869, + 3.120326280593872, + -2.2997193336486816, + 0.1376868188381195, + 0.09105858206748962, + 0.6786841750144958, + 0.23360490798950195, + -0.35472163558006287, + -2.4286813735961914, + 1.3281354904174805, + -0.883129358291626, + -1.96278715133667, + 2.0634942054748535, + 3.1073408126831055, + 0.16187208890914917, + 0.08678877353668213, + -3.297616481781006, + -0.3382294774055481, + 0.3445800244808197, + -0.05595943331718445, + 1.6234830617904663, + 0.8122413158416748, + 1.4243608713150024, + -1.569043517112732, + 2.88571834564209, + 2.020620346069336, + 3.136164665222168, + -0.41191595792770386, + -0.0930679440498352, + -1.5753477811813354, + -0.524005115032196, + -0.5699825882911682, + -0.37248334288597107, + -2.256181240081787, + -0.7169426679611206, + 1.644903302192688, + 2.1830313205718994, + 0.7963078022003174, + 2.1290628910064697, + 0.03125205636024475, + -2.224985122680664, + -0.6923860311508179, + 0.675742506980896, + 1.5177891254425049, + -1.1067907810211182, + 1.216723084449768, + -2.3841614723205566, + 0.17846933007240295, + -2.4348042011260986, + 0.6997852325439453, + -0.7415472269058228, + -0.5600343346595764, + 0.8543619513511658, + -1.177883267402649, + -1.4185935258865356, + 0.6529284715652466, + 0.5175351500511169, + -0.16759121417999268, + -1.6649008989334106, + 1.7010364532470703, + 1.050034523010254, + 0.4796859323978424, + 1.2959468364715576, + 1.7125355005264282, + -0.5128600597381592, + -0.9812073111534119, + -0.42208296060562134, + -0.7341238856315613, + 1.6884379386901855, + -0.41502252221107483, + 1.1571025848388672, + -0.8534370064735413, + -1.8780704736709595, + -1.30192232131958, + -2.333944320678711, + 1.322679877281189, + -1.279087781906128, + 1.018198013305664, + 2.0096588134765625, + -0.41648808121681213, + -0.0699073076248169, + -2.043922185897827, + 0.6840510368347168, + 1.0094974040985107, + -0.3873605728149414, + 3.7629568576812744, + 0.005896823480725288, + 1.9047907590866089, + -2.382892608642578, + -1.4207444190979004, + 4.066943168640137, + -0.7659082412719727, + 0.6265555024147034, + 0.15246564149856567, + 1.6337926387786865, + -1.3528257608413696, + 0.8472245335578918, + -2.0226221084594727, + -0.31194669008255005, + -0.5673062801361084, + 1.459455132484436, + -0.04424050450325012, + -0.9082767367362976, + 2.0595479011535645, + -0.18549752235412598, + 0.985114574432373, + -0.7916578054428101, + 0.6798117756843567, + 1.305553913116455, + -1.9215857982635498, + -1.3120992183685303, + -1.7740837335586548, + -1.7161943912506104, + -1.3103668689727783, + 1.2560606002807617, + 0.42115089297294617, + 1.8427820205688477, + 1.7169206142425537, + -1.529706597328186, + -0.7231633067131042, + 1.8337513208389282, + 1.316787600517273, + -2.5834038257598877, + 0.8494075536727905, + -0.4542178213596344, + -3.0519309043884277, + -0.1880948543548584, + 0.07599711418151855, + -0.7296625375747681, + 2.9104223251342773, + -0.40036070346832275, + -0.09156107902526855, + 0.27667418122291565, + -2.107318878173828, + -0.021584033966064453, + 1.7474309206008911, + 0.033403486013412476, + 0.3935757875442505, + 0.48898929357528687, + 0.529628574848175, + 0.1986444890499115, + 2.1163957118988037, + -0.762030839920044, + 4.894687652587891, + 2.1282153129577637, + -0.5569998621940613, + 0.6080365777015686, + -1.9035837650299072, + -1.0228536128997803, + 0.04972940310835838, + 2.6742889881134033, + 17.598909378051758, + 2.718405246734619, + 2.5282788276672363, + 1.5279511213302612, + 2.501732110977173, + -0.22703653573989868, + 0.22704465687274933, + 0.5572115778923035, + 1.8667268753051758, + 0.12842366099357605, + 3.1182785034179688, + -1.211435317993164, + -0.9312828779220581, + -1.1851075887680054, + -2.214092254638672, + 2.4422104358673096, + -0.30997487902641296, + 1.9105205535888672, + 4.476738452911377, + 1.457700252532959, + -0.3289429247379303, + 1.4346461296081543, + -0.11409986019134521, + 1.1125847101211548, + 2.2891600131988525, + -0.44220101833343506, + -0.6945840120315552, + -0.39392703771591187, + -0.8116829991340637, + -1.7401466369628906, + 0.06836964190006256, + -3.2695212364196777, + 0.886089563369751, + 0.16645663976669312, + 0.9593506455421448, + -0.799914538860321, + -0.542293906211853, + 2.707432270050049, + 1.1602001190185547, + 1.7028100490570068, + 1.6039406061172485, + 1.076032280921936, + -0.7162737250328064, + -0.5683333873748779, + -0.31744685769081116, + -0.25420165061950684, + -0.6604132652282715, + 0.6310434341430664, + 1.1045200824737549, + -2.1664254665374756, + -0.6576446294784546, + 1.2463129758834839, + -1.236511468887329, + 1.6669210195541382, + 0.3676398694515228, + 3.339398145675659, + -2.4229907989501953, + 1.3329048156738281, + 1.2374582290649414, + 3.0857322216033936, + 2.7041711807250977, + 2.3518903255462646, + 0.8412032127380371, + -0.00766676664352417, + -1.451732873916626, + -1.4671003818511963, + 1.1472793817520142, + -2.297271490097046, + 0.051925286650657654, + 1.0094025135040283, + -0.06891243159770966, + 0.7975346446037292, + 0.4930102825164795, + -1.5475068092346191, + 0.023989349603652954, + 0.4893640875816345, + 1.282816767692566, + 0.5092232823371887, + -0.3066768944263458, + 0.5692117810249329, + 0.19193655252456665, + -0.013461649417877197, + -2.068293809890747, + 0.10491520166397095, + 0.7819153666496277, + 0.9989091157913208, + 0.7096139192581177, + 2.059262275695801, + 1.076385259628296, + 0.2603534758090973, + -4.155892372131348, + -0.6539971828460693, + 1.0990442037582397, + 1.762298822402954, + -0.04142366349697113, + 0.019102416932582855, + 1.1955690383911133, + 1.9270066022872925, + 0.27044960856437683, + -0.058704961091279984, + 0.31197819113731384, + 0.7473537921905518, + -1.9707001447677612, + 0.37246328592300415, + 1.1351985931396484, + 0.3217346668243408, + -0.42650309205055237, + -0.014834318310022354, + -1.5395339727401733, + 0.7889266014099121, + 2.1463003158569336, + 1.655403971672058, + -0.813611626625061, + -2.9537289142608643, + 2.149533271789551, + 1.0684083700180054, + 0.8871870636940002, + -2.1105949878692627, + 0.46575507521629333, + 1.2656505107879639, + -1.2138153314590454, + -0.40532100200653076, + 0.7773879766464233, + -1.8852084875106812, + 2.5984928607940674, + -0.3757100999355316, + 2.1766233444213867, + -0.5548580884933472, + 3.4185585975646973, + 0.16820114850997925, + 0.7953116297721863, + -0.2175077497959137, + 0.6073753237724304, + -0.34047961235046387, + -0.25370001792907715, + -0.6059371829032898, + -0.37559789419174194, + 1.4084570407867432, + 0.3972799479961395, + -1.2285521030426025, + 0.009247958660125732, + -2.777669906616211, + 1.5099599361419678, + 2.3134448528289795, + 1.885822057723999, + -0.6162706613540649, + -0.4651590585708618, + 1.0419788360595703, + -1.1651115417480469, + 0.805637776851654, + -0.21366767585277557, + 0.6389752626419067, + -2.0730040073394775, + 0.9239915609359741, + 1.389581561088562, + 1.9560916423797607, + -0.5512152314186096, + 0.20766818523406982, + -1.4282379150390625, + 0.25837379693984985, + 0.9680939316749573, + -0.23588696122169495, + 0.9026089906692505, + -0.31319719552993774, + -0.695180356502533, + -1.5597550868988037, + -1.727203369140625, + -0.3157426118850708, + 1.0968128442764282, + -0.3956412971019745, + -1.125648021697998, + 1.2270078659057617, + -1.5293116569519043, + -0.1935497522354126, + -0.9647448658943176, + 0.41575586795806885, + -0.6546764373779297, + -0.3921894431114197, + -1.230802297592163, + 0.5354741811752319, + 1.5589033365249634, + -2.107501745223999, + 0.19008564949035645, + 1.5476500988006592, + 0.1729060411453247, + 2.8248462677001953, + 3.6625514030456543, + 0.9649093747138977, + -0.0017341375350952148, + -1.4722559452056885, + 1.8954896926879883, + -0.30421149730682373, + -2.3487918376922607, + 0.680822491645813, + 0.8761870265007019, + 0.20866763591766357, + 2.6120128631591797, + 0.39369112253189087, + -0.9766653180122375, + 0.15640652179718018, + 1.270412802696228, + -0.7952470779418945, + -0.248582661151886, + 0.6566681265830994, + -0.06462225317955017, + -1.6061902046203613, + -0.9514071941375732, + 0.6591558456420898, + 0.416659414768219, + -1.0827176570892334, + -0.035744935274124146, + -0.23912209272384644, + -1.2690889835357666, + -0.8438230752944946, + 1.9926798343658447, + 0.4226086139678955, + -3.229463577270508, + -2.253725528717041, + 0.34700050950050354, + -0.974091112613678, + 0.5959718227386475, + -1.2730176448822021, + -1.733339786529541, + -1.8688064813613892, + 0.9449525475502014, + -1.4312728643417358, + 0.5615785717964172, + -0.11883789300918579, + -0.16182363033294678, + 0.8514395952224731, + -0.8329402208328247, + -0.517245352268219, + -1.2911708354949951, + 0.574187695980072, + 2.066519260406494, + 0.17275381088256836, + -0.40156060457229614, + -1.563552737236023, + 0.5584625005722046, + -1.2299768924713135, + -2.1154966354370117, + 0.4245253801345825, + -1.1146275997161865, + -0.7652583122253418, + 2.0983293056488037, + -1.393378734588623, + -0.6654530763626099, + -0.436427503824234, + 0.9663206934928894, + 0.25220566987991333, + 0.432600736618042, + -0.7102329134941101, + 0.5934097170829773, + 2.1249916553497314, + 1.6728577613830566, + 0.0053160786628723145, + 0.907459020614624, + -0.8648747801780701, + -0.23659725487232208, + -2.3476381301879883, + -0.8624638915061951, + 0.4415246248245239, + -1.3105237483978271, + 0.3602648675441742, + 0.1384306252002716, + -0.25562629103660583, + -2.662811040878296, + -0.09807956218719482, + 2.2937443256378174, + 1.2844469547271729, + -1.4404277801513672, + 0.12801605463027954, + 1.1307411193847656, + -2.429339647293091, + -1.4217805862426758, + -1.319490909576416, + 0.5899657607078552, + -1.5765191316604614, + -0.7948336005210876, + -0.08117397129535675, + -0.9769693613052368, + -0.03293156623840332, + 0.5990236401557922, + 0.31903889775276184, + 0.20620200037956238, + 1.548277735710144, + -0.3501177430152893, + 0.780376136302948, + -0.026834726333618164, + 0.9370435476303101, + -1.6131842136383057, + -0.4431219696998596, + -0.28618258237838745, + -0.10159329324960709, + -1.4912889003753662, + -0.1788771003484726, + 1.3172850608825684, + -1.0787944793701172, + -1.1980128288269043, + -0.8352239727973938, + -2.3524484634399414, + 0.37933841347694397, + 0.6812363266944885, + 1.895723581314087, + -0.4895012080669403, + -0.8522120714187622, + -1.7505061626434326, + -0.2290041595697403, + 0.004285287111997604, + 1.5526926517486572, + -1.3963840007781982, + -1.5326423645019531, + -2.924206256866455, + 0.45046427845954895, + -0.018193542957305908, + -0.044992685317993164, + -1.3669630289077759, + -0.09355039149522781, + 1.8626608848571777, + -3.0589632987976074, + 1.1831520795822144, + 1.6144440174102783, + 1.529587745666504, + -0.3429117202758789, + -0.09314265847206116, + 0.5776411890983582, + -1.279482364654541, + 1.792726993560791, + 0.30791187286376953, + -0.811768651008606, + -1.7683643102645874, + 0.13936865329742432, + 0.4297099709510803, + 0.7644119262695312, + -0.724425196647644, + 1.1026039123535156, + -0.12061908841133118, + -0.43998995423316956, + 1.9748502969741821, + -0.15274691581726074, + 1.3342907428741455, + -0.9314824342727661, + -0.0021992921829223633, + 0.6712062358856201, + 0.9434658288955688, + 1.2322734594345093, + 1.3958829641342163, + -2.746605157852173, + 0.6994025707244873, + 0.0844528079032898, + -0.6809822916984558, + 0.4545251131057739, + -0.5891176462173462, + 2.8552756309509277, + 1.4789310693740845, + -0.9354405999183655, + 1.1506675481796265, + 0.6074653267860413, + -1.1084582805633545, + -0.9675953388214111, + 0.522223711013794, + 0.9814596176147461, + 1.3284333944320679, + -0.13972218334674835, + -0.059359848499298096, + 0.8567346334457397, + 0.9105366468429565, + 0.9462416172027588, + 0.8148800134658813, + -1.1191294193267822, + 1.7494399547576904, + -0.41882455348968506, + 0.15194885432720184, + -0.6347722411155701, + -0.638309121131897, + 1.0460821390151978, + 2.8872971534729004, + 0.729360818862915, + -0.34517520666122437, + -0.7607188820838928, + -0.6380366086959839, + -1.857257604598999, + 3.4968819618225098, + -1.2265503406524658, + -0.3865348696708679, + 0.039505600929260254, + -0.5320315361022949, + 0.5711807012557983, + -0.9474926590919495, + 2.190415859222412, + -0.03136987239122391, + -0.26564520597457886, + -0.2713773548603058, + 1.2067322731018066, + 1.5777099132537842, + -0.25498491525650024, + -0.3035472333431244, + 0.78172367811203, + 1.0851601362228394, + -1.2660636901855469, + -0.9956833124160767, + -1.3168519735336304, + -2.829291582107544, + -0.9766937494277954, + 0.046898167580366135, + 1.0116932392120361, + -1.506651520729065, + 2.3569982051849365, + -0.3584098815917969, + -0.6715136766433716, + 0.059441566467285156, + -0.3574519753456116, + -0.4749424457550049, + -0.2869192361831665, + -0.6606448888778687, + -3.12498140335083, + 1.1975730657577515, + -0.711708128452301, + 0.23300965130329132, + 0.6802573204040527, + -0.2011752873659134, + -1.2867039442062378, + -2.2677667140960693, + 1.965591311454773, + -1.066009283065796, + -0.8798595070838928, + -1.9231915473937988, + -0.7039492130279541, + -1.0852584838867188, + -0.21118885278701782, + 2.6974687576293945, + -0.41503196954727173, + 2.062255859375, + -0.6585648059844971, + 0.32530683279037476, + -1.5112481117248535, + -0.5743652582168579, + -1.375734806060791, + 1.0919699668884277, + -0.8088772892951965, + -0.7648165225982666, + 0.026185743510723114, + -0.37738245725631714, + 0.3396264612674713, + -2.224376678466797, + -0.24087421596050262, + -0.35731950402259827, + 1.7293614149093628, + 1.3802546262741089, + 2.027672052383423, + 1.929301381111145, + 1.276511788368225, + -0.5500457286834717, + 0.6295512914657593, + -0.2553549110889435, + -1.0468533039093018, + 0.5360347628593445, + 8.642521858215332, + -0.6862465739250183, + 2.639054298400879, + -1.039674997329712, + 1.4249448776245117, + -0.5422910451889038, + -0.0091632679104805, + -1.8429533243179321, + -0.14029020071029663, + -1.1229451894760132, + -0.8608591556549072, + 0.38681119680404663, + -3.045114040374756, + 0.49797549843788147, + 0.44066885113716125, + -0.5686004161834717, + 0.01920834183692932, + 0.2283596396446228, + 2.021456003189087, + 0.21052676439285278, + 0.3083454370498657, + -1.0175011157989502, + 2.6563241481781006, + -0.14654314517974854, + 1.4779677391052246, + 1.940312385559082, + 4.081613063812256, + 0.8226495981216431, + -0.792445182800293, + -1.9210712909698486, + -0.1630818247795105, + 1.649960994720459, + -0.2450733780860901, + -0.4082438051700592, + 0.32473549246788025, + -0.6903837323188782, + 6.247143268585205, + -0.580693244934082, + 0.4335649311542511, + 0.3789575695991516, + -0.769136905670166, + -1.2361462116241455, + 0.7184985876083374, + -0.7450910210609436, + -1.6070390939712524, + -0.8772575855255127, + -2.011357307434082, + 1.3215916156768799, + -0.16089358925819397, + 0.8112474083900452, + 0.0835421085357666, + -1.4115568399429321, + -0.9738468527793884, + -1.1678553819656372, + 0.038712143898010254, + 0.784904956817627, + 1.318109393119812, + 1.8141882419586182, + -2.1225903034210205, + -1.723043441772461, + -1.6542235612869263, + 0.5034677982330322, + -0.09251856803894043, + -0.7891172170639038, + 1.4842050075531006, + 1.5783417224884033, + -0.918738842010498, + -0.24024108052253723, + 1.8452181816101074, + 0.04980754852294922, + -1.725512981414795, + -0.13234522938728333, + -0.9314436912536621, + 0.6372841596603394, + -0.9873661994934082, + 0.5615286827087402, + -1.0685853958129883, + -2.00742244720459, + 2.701319694519043, + -1.2490535974502563, + -2.2165300846099854, + -0.6970275640487671, + 0.5929669737815857, + 1.8612546920776367, + -2.1055173873901367, + -0.6942353844642639, + -2.528508424758911, + 0.20706143975257874, + 2.391442060470581, + -0.8132808804512024, + -2.1228461265563965, + 0.21300800144672394, + -1.1242862939834595, + -1.2548258304595947, + 0.15415529906749725, + -0.30426639318466187, + -2.1671674251556396, + -0.9984620213508606, + 1.759902834892273, + -0.5737239718437195, + -1.936926245689392, + 0.5033707618713379, + 2.6267805099487305, + 2.4199159145355225, + -3.2343363761901855, + -2.335575819015503, + -0.1941584199666977, + 1.1082863807678223, + -0.10191357135772705, + -0.42585453391075134, + 1.4513847827911377, + -0.5400258898735046, + -0.6917605996131897, + 1.175485610961914, + 1.1942164897918701, + 0.8767837285995483, + -0.43825066089630127, + 0.35722196102142334, + 0.23058179020881653, + 7.548945426940918, + 0.8183097243309021, + -1.7775497436523438, + 0.7559844255447388, + -2.4731593132019043, + 1.283979892730713, + -0.37594252824783325, + -0.4784073233604431, + -0.1394278109073639, + 0.6448291540145874, + 0.5264430046081543, + 1.0033717155456543, + -1.3415520191192627, + -1.1168735027313232, + -0.5680847764015198, + -0.33125513792037964, + 0.9265385866165161, + -0.936332106590271, + 1.0373108386993408, + -0.5894474983215332, + -1.1074601411819458, + -0.3663049340248108, + 1.0069758892059326, + -0.10917489230632782, + -1.3867292404174805, + -0.4910121560096741, + 0.7865865230560303, + 0.18538571894168854, + 4.37818717956543, + -1.9262959957122803, + 1.605325698852539, + 0.23035943508148193, + 0.7376282215118408, + 2.6349897384643555, + 2.9542903900146484, + -0.4755840301513672, + -0.1302993893623352, + -2.240576982498169, + 0.12867628037929535, + 1.5779879093170166, + -1.47420072555542, + -0.3645162582397461, + -2.223412036895752, + 0.09369739890098572, + 2.310612678527832, + 1.2225393056869507, + 1.9965907335281372, + 0.40033361315727234, + -0.36097484827041626, + -3.413025379180908, + 0.6230933666229248, + 2.2902469635009766, + 1.3342056274414062, + -0.7848755121231079, + -0.8222689628601074, + 1.9468111991882324, + -2.277001142501831, + -0.01261758804321289, + -0.011140480637550354, + -1.7372426986694336, + 0.6884280443191528, + -1.328710913658142, + 1.7047780752182007, + -0.6226373910903931, + 1.612663984298706, + 0.23040524125099182, + 0.534410834312439, + -6.410670757293701, + 1.8198131322860718, + 1.1953634023666382, + -0.6882921457290649, + -0.9246505498886108, + -1.5425634384155273, + 1.5344903469085693, + -1.240736961364746, + 1.6674648523330688, + -1.2638990879058838, + 0.3028886318206787, + 1.5594819784164429, + -3.0987303256988525, + 1.1121416091918945, + 0.1789969801902771, + 1.123971939086914, + 0.523228108882904, + 2.236619710922241, + -0.7825968861579895, + -0.09494143724441528, + 0.11136066913604736, + -0.9393457174301147, + 0.5786703824996948, + 1.2617979049682617, + 2.796703815460205, + 2.064699649810791, + 0.919471800327301, + -2.1670331954956055, + 0.9654830694198608, + 0.6913074254989624, + -0.5793670415878296, + 2.110238552093506, + -2.8556809425354004, + 1.8259644508361816, + 2.6859185695648193, + -5.339083671569824, + 1.5721843242645264, + 0.014499127864837646, + 0.6096140742301941, + -1.517575979232788, + 1.7957618236541748, + 0.34805548191070557, + 0.806795597076416, + 1.7346248626708984, + -1.9310798645019531, + 0.10905734449625015, + -2.572038412094116, + 0.8062728643417358, + 0.5742590427398682, + 1.1757566928863525, + 0.5293747186660767, + -1.3043031692504883, + -1.7253175973892212, + -1.1993488073349, + 1.5377676486968994, + 2.157259702682495, + -0.26319780945777893, + 1.3347253799438477, + 1.044964075088501, + 1.1492178440093994, + 0.06671846657991409, + 0.9092878103256226, + -0.6710481643676758, + 0.6412041187286377, + 1.373120665550232, + 0.6090914011001587, + -3.153129816055298, + 0.5695823431015015, + -1.1625490188598633, + 0.7673299908638, + -0.49064335227012634, + -0.8765687942504883, + -0.20643319189548492, + -0.15260881185531616, + -1.6593844890594482, + 0.45110416412353516, + -0.8047664165496826, + 1.6046255826950073, + 0.28272324800491333, + 0.009292840957641602, + 0.785057544708252, + 2.3297247886657715, + -0.08225986361503601, + 1.4630475044250488, + 0.6066085696220398, + 1.8393663167953491, + 2.2684290409088135, + 2.5044572353363037, + -0.34588423371315, + 1.1572617292404175, + -1.6044565439224243, + 1.9394458532333374, + -0.5259474515914917, + 2.822666883468628, + 0.14463675022125244, + -0.33242976665496826, + 1.4996131658554077, + 1.0647251605987549, + 0.351412296295166, + 0.28656283020973206, + 0.27807506918907166, + -2.4836928844451904, + -0.6493552923202515, + 2.0644681453704834, + -0.18572518229484558, + 1.044937252998352, + -0.19326908886432648, + -1.6478185653686523, + -1.5732792615890503, + 1.3355886936187744, + 0.49502241611480713, + 1.8649317026138306, + -0.6403359770774841, + 5.359450340270996, + -0.6176704168319702, + -0.05696168541908264, + -1.2414506673812866, + -0.4246146082878113, + 0.5313947200775146, + -0.8216505646705627, + -0.468900591135025, + -1.2486516237258911, + 0.9291112422943115, + 0.6582798361778259, + -2.082728147506714, + 0.5592828392982483, + -1.2346686124801636, + 1.0007344484329224, + -1.0091912746429443, + 2.383845329284668, + 0.3255288004875183, + -0.9713669419288635, + 0.5681812763214111, + 0.0837182030081749, + 1.1851788759231567, + -1.4212932586669922, + -0.08824968338012695, + 2.825335741043091, + 2.458064079284668, + -0.4377794861793518, + 0.8620873689651489, + -0.6610463261604309, + -1.7976577281951904, + -0.9990749955177307, + -1.726818323135376, + -0.20803609490394592, + 0.28331947326660156, + -1.2934998273849487, + 0.08111673593521118, + -0.350447416305542, + 1.007901906967163, + -2.0474178791046143, + -1.678559422492981, + 1.2453950643539429, + -0.20342916250228882, + -1.4253194332122803, + -0.4941587448120117, + 0.26289984583854675, + 1.642581820487976, + -2.6246728897094727, + 0.06524518132209778, + -0.9687263369560242, + 0.20503950119018555, + 1.1263364553451538, + 2.7812538146972656, + 2.2964117527008057, + -0.8716911673545837, + 3.372894287109375, + -0.8163763284683228, + 0.7346305251121521, + 0.4887235760688782, + 1.795215129852295, + -0.20913103222846985, + -0.4161067605018616, + 1.49736750125885, + 0.8196883797645569, + -1.4040663242340088, + 0.012000635266304016, + -0.10995243489742279, + -1.0352087020874023, + 0.22155779600143433, + -1.4826010465621948, + -0.4993353486061096, + -0.15939746797084808, + -1.2384692430496216, + -1.7046163082122803, + 1.7247432470321655, + 1.383312702178955, + -0.6949379444122314, + -0.9925378561019897, + 1.5835504531860352, + -0.9896806478500366, + -0.28884923458099365, + -1.8577910661697388, + 0.14394165575504303, + -1.839350700378418, + 0.8797438144683838, + 0.6571455001831055, + 0.4221305549144745, + 0.014809556305408478, + -1.091159462928772, + -0.229536235332489, + 0.46532580256462097, + -1.1014155149459839, + -1.2681756019592285, + 3.2352006435394287, + -0.14341619610786438, + 0.5770711898803711, + -0.0652112066745758, + 3.2161765098571777, + 1.4281675815582275, + -1.0539699792861938, + -0.8353623151779175, + 0.11922161281108856, + 1.3638414144515991, + 0.6055865287780762, + -0.5383447408676147, + 0.012319356203079224, + -1.4083178043365479, + 0.32850149273872375, + 2.81774640083313, + -2.7027320861816406, + -0.9443749189376831, + -0.2707808017730713, + 2.3280186653137207, + -1.6626291275024414, + 0.0924331545829773, + 0.941429853439331, + -0.5873487591743469, + 1.9594424962997437, + -0.1372237652540207, + 0.7572367787361145, + -1.846748948097229, + -0.4891856908798218, + -1.3239097595214844, + 1.4364606142044067, + 4.003636360168457, + -1.0986361503601074, + -0.8270858526229858, + -0.42208796739578247, + 1.3821697235107422, + 1.8244861364364624, + -0.5380697846412659, + 0.6390444040298462, + -0.5216658711433411, + 2.0980329513549805, + -1.3101553916931152, + -2.401578664779663, + -1.156829833984375, + 0.5789214968681335, + 0.18940311670303345, + 0.3185736835002899, + -2.1718225479125977, + 1.8480875492095947, + 0.5976248979568481, + -0.017200663685798645, + -1.253682255744934, + 0.2605288326740265, + -1.6200687885284424, + 0.20079177618026733, + -1.4286301136016846, + -2.4454896450042725, + -0.7482943534851074, + 1.6432865858078003, + 0.38784873485565186, + -0.1123122125864029, + 1.1550352573394775, + 0.08848395943641663, + 0.4359595477581024, + -0.9518821239471436, + -1.825478434562683, + 0.24305126070976257, + -0.1753901243209839, + -0.1254921555519104, + 2.2104861736297607, + -3.2731902599334717, + -0.5569531917572021, + 0.6557183265686035, + 1.7219760417938232, + 1.1762442588806152, + -0.4583671987056732, + 1.8109787702560425, + -1.315757393836975, + 0.6230327486991882, + 1.2461107969284058, + -1.7967393398284912, + 9.064736366271973, + -1.6701105833053589, + 0.10008499026298523, + -1.2230751514434814, + 1.7821873426437378, + -1.5903582572937012, + -0.345949649810791, + -2.621464729309082, + -0.05010327696800232, + -0.26097166538238525, + -2.2666244506835938, + 0.898672878742218, + -1.2303602695465088, + -0.07278791069984436, + -1.4638972282409668, + -0.7589181661605835, + 0.7452493906021118, + -0.2653675079345703, + 1.6325621604919434, + -1.9153292179107666, + 0.16663169860839844, + -1.4574899673461914, + -0.5578276515007019, + 0.32588911056518555, + -0.7262039184570312, + 0.9577658772468567, + -1.1689562797546387, + 0.3765295147895813, + -1.8394811153411865, + -1.5435947179794312, + 0.45482051372528076, + -0.2006826102733612, + -0.5760940909385681, + -0.8949965238571167, + 1.8934627771377563, + 1.2591886520385742, + 0.6001553535461426, + -1.1290957927703857, + -1.0727875232696533, + 0.1403951644897461, + 0.1269591748714447, + 0.1714525669813156, + -0.41308313608169556, + -0.5095745921134949, + 1.673227071762085, + 0.2041930854320526, + 0.5200605988502502, + -0.5824087858200073, + -1.3508846759796143, + -1.251211404800415, + -0.37182700634002686, + 0.7301700711250305, + -3.109557628631592, + -0.8219283819198608, + -0.2863560914993286, + 0.0688183605670929, + 1.816846251487732, + 1.9839742183685303, + 0.13398054242134094, + -1.258070707321167, + -0.03673848509788513, + 0.20204150676727295, + -0.2662959098815918, + -1.2853690385818481, + -0.7220068573951721, + 3.203916311264038, + 2.109379529953003, + -1.1203653812408447, + -0.7854122519493103, + 3.573181390762329, + 1.4470951557159424, + -0.8437932729721069, + -0.4209524691104889, + -2.026548385620117, + 0.9357914924621582, + -1.7164843082427979, + 0.7767877578735352, + 0.7673916816711426, + 1.413980484008789, + 1.3519022464752197, + 0.3463180959224701, + 1.9612970352172852, + 0.02902066707611084, + -0.009454160928726196, + -0.13941511511802673, + -1.6050055027008057, + 0.023876428604125977, + 0.19560334086418152, + -0.22918909788131714, + 2.4336228370666504, + 2.5198678970336914, + -1.989037036895752, + -0.42369163036346436, + -2.164285659790039, + -0.4514768719673157, + 0.8430333733558655, + -0.6390218138694763, + 4.318699836730957, + -0.42950791120529175, + -1.6620885133743286, + -1.462641954421997, + 0.6069263815879822, + -0.9834132790565491, + -0.41488224267959595, + 0.07970046997070312, + 0.008384600281715393, + -0.04451608657836914, + -0.44668737053871155, + -1.6916999816894531, + 1.0211448669433594, + -0.27068811655044556, + 2.3060171604156494, + 0.7920688390731812, + 0.5111701488494873, + 0.7905309200286865, + -2.61733341217041, + 0.2581556439399719, + -2.260446548461914, + 0.18422535061836243, + 0.9849156141281128, + 0.9647733569145203, + -0.1422906219959259, + 2.0724711418151855, + 0.5410410165786743, + 0.2991520166397095, + 1.1223957538604736, + 0.06220713257789612, + 1.9413261413574219, + 1.5116069316864014, + -0.14946773648262024, + -1.3064783811569214, + -0.23330044746398926, + -1.0492759943008423, + 0.42653048038482666, + -1.2130932807922363, + -1.4733415842056274, + 2.756765842437744, + -1.2869272232055664, + 2.288693904876709, + 1.324522852897644, + -0.8657528758049011, + 2.290587902069092, + 1.661773443222046, + -0.4811903238296509, + 1.7738077640533447, + -2.7800099849700928, + 0.09688428044319153, + 3.7792158126831055, + -0.8981349468231201, + 0.5196581482887268, + -0.022662758827209473, + -0.44162774085998535, + 0.6960490942001343, + -1.1454981565475464, + 0.8715604543685913, + -0.17414557933807373, + 0.4247402846813202, + 1.0976519584655762, + -0.003578007221221924, + 0.300750732421875, + 0.38195326924324036, + 0.6544321775436401, + -0.10332828760147095, + -1.0405117273330688, + 0.3667464256286621, + -0.874765932559967, + -0.23175793886184692, + 0.20820677280426025, + -1.3207192420959473, + -5.289745330810547, + -5.445305347442627, + 2.017432689666748, + -2.904064893722534, + -1.7430448532104492, + -1.3488855361938477, + 0.26287156343460083, + -2.195733070373535, + 2.010467767715454, + 0.7768086194992065, + -0.34291377663612366, + 2.99796462059021, + -0.6851016283035278, + -0.7010287642478943, + -0.7345890998840332, + -0.3263673186302185, + 1.7470043897628784, + 0.8592689037322998, + 0.530131459236145, + -0.007497847080230713, + -0.5268677473068237, + 0.5185940265655518, + -1.2845607995986938, + 0.049539268016815186, + -0.9322838187217712, + 2.8427894115448, + -1.0651875734329224, + 0.03724686801433563, + -0.6778639554977417, + -6.625040054321289, + -1.0221151113510132, + 0.5240576863288879, + -0.412153422832489, + -0.3214527368545532, + -1.499416708946228, + -0.6323477625846863, + 0.6414328217506409, + 0.7927892804145813, + 0.21057888865470886, + 1.1000230312347412, + -1.0362213850021362, + 0.35873353481292725, + -1.3587005138397217, + -5.170585632324219, + -2.4494173526763916, + 1.9185450077056885, + -1.3784608840942383, + 0.521409273147583, + -0.26386287808418274, + -0.8519834876060486, + -1.6491918563842773, + 1.0022363662719727, + -0.22948908805847168, + 1.2618576288223267, + -1.689180612564087, + 0.4874148964881897, + -0.3047294020652771, + 2.213616371154785, + 1.3897079229354858, + -0.35479217767715454, + -1.6357719898223877, + 0.22147953510284424, + 1.8176498413085938, + 1.6301124095916748, + 0.7425339221954346, + -1.0268833637237549, + -0.2665746808052063, + 0.7567057609558105, + 0.5884481072425842, + 1.13665771484375, + -1.3354703187942505, + -0.47306060791015625, + 0.23887109756469727, + -0.516015350818634, + 0.6473850011825562, + 0.5602499842643738, + 1.1697043180465698, + 0.43713831901550293, + -0.9060523509979248, + -0.2788160741329193, + 0.26530539989471436, + 0.030560210347175598, + -2.3415651321411133, + 0.4204522967338562, + -0.029984936118125916, + 2.586890697479248, + 1.3003038167953491, + -1.844560146331787, + 0.790535569190979, + -2.8543736934661865, + 0.8608107566833496, + -1.4817085266113281, + -0.502256453037262, + -0.9887441396713257, + 1.134403109550476, + -0.28893476724624634, + -0.17733940482139587, + 0.8157546520233154, + -0.6654132604598999, + -0.799228847026825, + 2.059229612350464, + -0.7082332372665405, + -3.1031224727630615, + 0.3568319082260132, + 0.03589147329330444, + -0.9436941742897034, + 1.5165635347366333, + 1.6497405767440796, + -1.305124044418335, + 1.6115577220916748, + -0.8015931844711304, + -2.9920315742492676, + -1.643646478652954, + -1.3964358568191528, + -0.5749695897102356, + -0.7632203698158264, + 1.6715238094329834, + -1.5781790018081665, + -2.429377555847168, + 2.7437305450439453, + 0.27110016345977783, + 1.0403616428375244, + -0.722131609916687, + -2.6492862701416016, + -0.4671146869659424, + 0.6860219836235046, + -0.07012210786342621, + -0.625950038433075, + -1.5515799522399902, + -0.29468825459480286, + -1.0934656858444214, + 0.4394320547580719, + -4.300061225891113, + 0.06396914273500443, + -0.559828519821167, + -0.26859670877456665, + -3.0848026275634766, + 1.5273524522781372, + 1.3112120628356934, + 1.728031873703003, + -1.386115550994873, + 0.21682208776474, + 0.005702674388885498, + 0.018556952476501465, + 1.9349706172943115, + -0.6954329013824463, + 0.08395589888095856, + -0.7063075304031372, + 1.7505595684051514, + 1.3706930875778198, + -3.3681278228759766, + 2.418107509613037, + 0.940919816493988, + -1.7210698127746582, + 0.7057955265045166, + 1.3210580348968506, + -2.68752384185791, + 0.8987923860549927, + 0.42579934000968933, + -0.39761990308761597, + 0.8188078999519348, + -0.8195425271987915, + 0.6931259036064148, + 1.611627221107483, + 0.0821601152420044, + 0.8004223704338074, + -1.9595544338226318, + -1.0124175548553467, + 0.01903402805328369, + -1.3291428089141846, + -1.1856635808944702, + -0.6929964423179626, + -0.7051940560340881, + 1.7977941036224365, + -1.7206661701202393, + -1.3003926277160645, + 0.06285828351974487, + -0.37839022278785706, + -0.544996440410614, + -0.3882232904434204, + -1.2813820838928223, + -0.11705024540424347, + 0.29014766216278076, + -0.56041419506073, + -0.7993859052658081, + -0.4526849687099457, + 2.426239252090454, + 0.5722779035568237, + -0.04832952842116356, + 1.687708854675293, + -0.47251033782958984, + -1.72084379196167, + 2.7923693656921387, + -2.0100936889648438, + -1.0106151103973389, + -0.40529996156692505, + -2.8278982639312744, + 0.01793193817138672, + 0.8403742909431458, + 1.5443980693817139, + 0.01184546947479248, + -2.1382217407226562, + -0.17540676891803741, + -0.8261005282402039, + 1.0083110332489014, + -1.1807047128677368, + 2.239309787750244, + -1.748329758644104, + 0.6447439193725586, + -0.8344117403030396, + -0.3366798758506775, + 1.3229918479919434, + -1.3394935131072998, + -1.6997768878936768, + -1.6130049228668213, + -0.3207893669605255, + -0.20606836676597595, + 0.675116777420044, + -0.20214152336120605, + -1.5129261016845703, + 0.18917429447174072, + -1.7291231155395508, + 0.5189367532730103, + -1.5009081363677979, + 0.6595920920372009, + 0.9240722060203552, + -1.3492660522460938, + -1.5647318363189697, + -1.0747815370559692, + 0.8398885130882263, + 1.3452401161193848, + -0.9374711513519287, + -0.7553936243057251, + -0.9612447023391724, + -0.6745555400848389, + 1.2676775455474854, + -0.8667272925376892, + -0.15164440870285034, + 0.8815716505050659, + -1.082207202911377, + 0.39389413595199585, + -0.18444375693798065, + 1.368807077407837, + 0.37570685148239136, + 0.6372309923171997, + -0.8460501432418823, + 2.635664939880371, + 0.04836529493331909, + -0.5937079191207886, + 0.20833760499954224, + 0.5655914545059204, + -0.893642246723175, + 2.6480352878570557, + -1.8581311702728271, + 1.519014596939087, + 0.11300118267536163, + 0.39511948823928833, + 0.9624049067497253, + 0.8513501882553101, + 1.2660496234893799, + 0.13433004915714264, + 0.800338864326477, + 3.5573291778564453, + 0.014841422438621521, + -0.7430214881896973, + -1.2597960233688354, + -1.0539066791534424, + -1.4009287357330322, + -1.2091610431671143, + -1.126619577407837, + 0.35278624296188354, + -0.3905903697013855, + -0.819896399974823, + 2.3497965335845947, + -1.4500553607940674, + 1.2197980880737305, + 0.3352721631526947, + -0.7280174493789673, + -0.8677826523780823, + -0.962936520576477, + 0.4736599326133728, + 0.6574767827987671, + 1.349461317062378, + 1.3317580223083496, + 0.5434306263923645, + -1.3148212432861328, + -0.8103383183479309, + -1.1007182598114014, + 2.6110968589782715, + -0.9508061408996582, + 1.0784497261047363, + -0.295953631401062, + -1.6157183647155762, + -1.1028122901916504, + -2.585409641265869, + 0.9658229947090149, + 1.7100389003753662, + -2.3646469116210938, + 0.08872509002685547, + -0.2441386580467224, + 0.18227554857730865, + 4.178635120391846, + 0.44277241826057434, + -0.105681411921978, + -3.136035203933716, + 1.6286594867706299, + 0.8798097372055054, + 0.8735740184783936, + -1.8345744609832764, + -0.11630994081497192, + 0.02028864622116089, + -3.450930595397949, + 0.6588770151138306, + 0.11290290951728821, + 2.2438833713531494, + -0.9003127217292786, + -2.08668851852417, + 0.6454315781593323, + -0.7157724499702454, + 1.0876679420471191, + 0.33957457542419434, + -0.10412007570266724, + -0.6061726808547974, + -1.5725637674331665, + 2.1816482543945312, + -1.243549108505249, + 4.19863224029541, + -3.0267724990844727, + -0.4793834090232849, + -0.9205071330070496, + 2.230381727218628, + -1.0056922435760498, + -1.4158304929733276, + -0.1385183334350586, + -1.6363208293914795, + -1.584636926651001, + -0.7057690620422363, + 0.11278507113456726, + 0.8199576139450073, + 0.6434644460678101, + 1.0519540309906006, + 0.13049781322479248, + 0.0033196210861206055, + 1.4458686113357544, + -0.1540113240480423, + 0.5137048363685608, + -1.864353895187378, + 0.6342825889587402, + -0.8474977016448975, + 0.8038358688354492, + 0.08507456630468369, + -2.6656248569488525, + -0.7755565047264099, + -1.5831445455551147, + -1.636989951133728, + 1.4910814762115479, + -1.458493709564209, + -2.7681849002838135, + 0.005073804408311844, + 0.2764768898487091, + 1.7422270774841309, + 0.9191497564315796, + -1.4792006015777588, + 0.3741123378276825, + -0.04570384323596954, + 1.2156224250793457, + -1.2536718845367432, + 2.2638542652130127, + -1.5449192523956299, + -3.2792601585388184, + 1.7823753356933594, + 2.0518317222595215, + 0.25623390078544617, + 2.8650949001312256, + 0.5025885105133057, + 0.9623346924781799, + 0.5512123107910156, + 2.277536153793335, + 0.6956907510757446, + -2.142855405807495, + 0.8097054958343506, + 0.1287209540605545, + -0.5399661064147949, + -1.5447165966033936, + -0.4584387540817261, + 2.4613335132598877, + -0.0709276795387268, + -2.916339159011841, + -1.0854169130325317, + -0.8463366031646729, + -3.41459059715271, + 1.1700172424316406, + 0.3131304979324341, + -2.147813081741333, + -0.6997696161270142, + 2.3287971019744873, + 1.6692140102386475, + -0.9910554885864258, + -3.032487630844116, + 0.35799160599708557, + 1.1637097597122192, + 1.677709937095642, + -0.6870167851448059, + 2.721363067626953, + -3.346060276031494, + -0.5015686750411987, + 0.8172990083694458, + -0.2806817889213562, + 0.6575340628623962, + -0.4813118875026703, + -1.3476877212524414, + 0.8059899210929871, + -1.9446390867233276, + -1.2173728942871094, + -0.35189831256866455, + -0.24558675289154053, + 0.04422864317893982, + 0.4758017361164093, + 0.3906358480453491, + 1.9867700338363647, + 0.021251417696475983, + -0.18416084349155426, + -1.3358995914459229, + -2.579554319381714, + -0.31445449590682983, + -0.6073222160339355, + -1.847221851348877, + 0.7195224165916443, + -1.3892005681991577, + 0.09115481376647949, + -1.5567631721496582, + -0.5147085189819336, + -2.1336045265197754, + 0.7636891007423401, + 0.8496360778808594, + -0.8846855163574219, + 2.0044162273406982, + -1.334210753440857, + -0.6470291018486023, + 0.4919469356536865, + -0.30930137634277344, + 0.004019021987915039, + -0.11608278751373291, + -1.0291157960891724, + -0.1916641891002655, + -0.7412922382354736, + -1.7242248058319092, + -1.3786019086837769, + 0.7332395911216736, + -1.551391839981079, + 1.0838210582733154, + 1.3842017650604248, + -6.118515491485596, + 0.2270728200674057, + -0.6151054501533508, + 1.5329116582870483, + -0.08421500772237778, + -0.413867712020874, + -0.905632495880127, + -1.9818274974822998, + 1.7057691812515259, + -0.4873976707458496, + 0.35411393642425537, + 2.6860523223876953, + -0.570283055305481, + 4.290302753448486, + -2.274627208709717, + 2.0351457595825195, + -0.245412215590477, + -0.49350494146347046, + -0.38191020488739014, + 2.851593255996704, + 2.2001850605010986, + -1.3383029699325562, + 0.35444334149360657, + 2.2400331497192383, + -0.668570876121521, + -2.392362356185913, + 1.1548922061920166, + 1.5386838912963867, + -0.1064993292093277, + -1.9164944887161255, + -1.473183512687683, + -2.8784656524658203, + -0.1390443593263626, + 1.122831106185913, + 1.9735515117645264, + 0.043781302869319916, + 2.0352964401245117, + -1.6141499280929565, + -0.5282011032104492, + -1.1151784658432007, + -1.754927158355713, + -0.2074567973613739, + -2.2170896530151367, + -0.988100528717041, + 0.8339118957519531, + 1.99183189868927, + -0.4090334475040436, + 1.0044275522232056, + -1.2306714057922363, + 2.132274866104126, + -1.7337660789489746, + 1.6310138702392578, + -2.1758742332458496, + 0.01830381155014038, + -0.2426304817199707, + 12.519451141357422, + 1.221684217453003, + 0.5653390288352966, + -0.08089950680732727, + 0.27869075536727905, + -2.7164883613586426, + -1.2749135494232178, + -0.6586309671401978, + 1.223704218864441, + 0.29037952423095703, + 1.534119725227356, + -0.5501273274421692, + 1.6679601669311523, + -1.912603497505188, + -0.970338761806488, + 0.20645666122436523, + 1.2155084609985352, + -0.08474557846784592, + 0.26621684432029724, + -0.33849573135375977, + -2.0102739334106445, + 2.0836267471313477, + -0.8448047637939453, + -0.7386822700500488, + -0.45056211948394775, + 1.492271900177002, + -1.8263221979141235, + -1.68520188331604, + -1.8611493110656738, + 1.578774333000183, + -0.6440229415893555, + -0.7769509553909302, + -4.58219575881958, + 0.8374322652816772, + 1.6786056756973267, + -2.826382875442505, + -0.7323012351989746, + 1.9337577819824219, + -2.874659299850464, + 2.1823153495788574, + -1.2227773666381836, + -0.08258432894945145, + -0.48971325159072876, + -1.5540266036987305, + 1.785519003868103, + -0.7909879088401794, + 0.7438457012176514, + -1.2127482891082764, + -2.8427913188934326, + -0.08926272392272949, + 1.6039786338806152, + 0.2623201608657837, + -0.11771541833877563, + -0.7425068020820618, + 1.8128962516784668, + -0.31860995292663574, + -1.3827834129333496, + 0.06035918742418289, + -1.9922840595245361, + -1.0071582794189453, + -2.1383023262023926, + 1.425121784210205, + 1.0796136856079102, + -1.3207786083221436, + -0.22005850076675415, + -1.1924189329147339, + 1.586806058883667, + 1.1706544160842896, + 0.7982516288757324, + -0.7466758489608765, + -0.08321066200733185, + -0.04205864667892456, + 0.2335532307624817, + 0.05892091989517212, + 0.7850269675254822, + -1.3835755586624146, + -0.7012441754341125, + -0.5001524686813354, + -0.9309331178665161, + -2.733952045440674, + -0.09706807136535645, + 2.089405059814453, + -2.7307605743408203, + 0.45866891741752625, + 1.3144218921661377, + 0.10741625726222992, + 0.08537745475769043, + 1.4217665195465088, + 1.073088526725769, + -0.7394407987594604, + 1.1298898458480835, + -0.6800802946090698, + -1.9313173294067383, + 0.34960803389549255, + -0.6399050354957581, + -3.990691900253296, + -2.629509449005127, + 1.7324904203414917, + 1.525374174118042, + -0.8059875965118408, + 0.07267382740974426, + -1.873457908630371, + 0.4465554654598236, + -1.61690092086792, + -0.7928658723831177, + 4.246317386627197, + -0.46224382519721985, + -0.40842148661613464, + 1.4919211864471436, + 2.4267497062683105, + -1.4620534181594849, + -0.25219985842704773, + 0.2908698320388794, + -0.41087403893470764, + -2.02192759513855, + -0.18381986021995544, + -1.679103136062622, + 1.5679389238357544, + -0.13711455464363098, + 0.3307420015335083, + -0.14611828327178955, + 0.6410287618637085, + 1.2183647155761719, + 0.560969352722168, + -0.8932846188545227, + -2.189450979232788, + -0.9987582564353943, + 0.059429019689559937, + -0.5833690166473389, + 1.306628942489624, + -0.4694010019302368, + -1.566648006439209, + 0.8897804021835327, + 0.5082149505615234, + 0.8650214076042175, + 0.7433537840843201, + -1.1102569103240967, + -1.6121933460235596, + 1.215133786201477, + -1.0588984489440918, + 0.25136470794677734, + -0.9665727615356445, + -0.5257887244224548, + 1.475471019744873, + 1.4232574701309204, + 0.6185715198516846, + -4.261136054992676, + 0.2722976803779602, + 0.22615152597427368, + 0.4270143508911133, + 1.193483829498291, + 0.22920405864715576, + -1.5052646398544312, + 0.7785699367523193, + 2.0359597206115723, + 0.7936391234397888, + 1.1246472597122192, + -0.4550047218799591, + 0.05395227670669556, + -0.4761924147605896, + 1.8339712619781494, + -0.0833350419998169, + 0.7681114077568054, + -1.3676432371139526, + -0.7499262094497681, + -0.7993672490119934, + 0.44150838255882263, + 0.19217240810394287, + -0.32286274433135986, + -3.921355962753296, + 0.45274293422698975, + -1.821075439453125, + -1.6357580423355103, + 0.6863895058631897, + -0.08881248533725739, + -1.2160370349884033, + -2.5171515941619873, + -0.7536800503730774, + -1.0276353359222412, + -2.788602828979492, + 0.21995806694030762, + -1.5545094013214111, + 0.6651085615158081, + 1.4501292705535889, + 0.1120673269033432, + 1.7222081422805786, + -0.1618788242340088, + 1.9796762466430664, + -0.3983924388885498, + -0.2773357033729553, + -1.5228737592697144, + 2.4759068489074707, + 0.70283442735672, + -0.4481334090232849, + -1.3297770023345947, + 1.5230079889297485, + -0.44477924704551697, + 2.181786060333252, + -0.32728397846221924, + 0.0032414495944976807, + 0.711995005607605, + 0.6748530864715576, + 1.4702051877975464, + -0.08299332857131958, + -1.627820372581482, + 2.1339592933654785, + 2.60793137550354, + 0.32215064764022827, + 1.8377641439437866, + 0.7743231654167175, + -2.2672791481018066, + -0.3189697861671448, + -2.3203847408294678, + 0.6505551338195801, + -1.3952019214630127, + 1.3777508735656738, + -0.3822852373123169, + -0.43335217237472534, + 2.144239902496338, + 3.2748358249664307, + -0.7265633344650269, + -1.7611967325210571, + -1.0903899669647217, + 1.4410537481307983, + -0.3284327983856201, + -0.6423921585083008, + -0.04084911197423935, + -0.02490067481994629, + -0.7008991241455078, + 1.2680613994598389, + 1.2877197265625, + -1.0084996223449707, + -0.14743030071258545, + 0.5071829557418823, + -0.5099507570266724, + 1.4483327865600586, + 1.476256012916565, + 0.0877758264541626, + 0.6399484872817993, + -0.5921745896339417, + -0.5199311971664429, + -2.160439968109131, + -0.11686605215072632, + 0.2692176103591919, + -1.1823747158050537, + 2.1595473289489746, + -1.7585108280181885, + -0.33390194177627563, + -0.37336528301239014, + 0.08007943630218506, + -0.40091145038604736, + -0.01358523964881897, + -0.8503153920173645, + -1.9168472290039062, + 0.4042053818702698, + -0.2757420539855957, + 2.285729169845581, + 3.0502634048461914, + -2.7789618968963623, + -1.189178228378296, + -0.8618775606155396, + 0.7051949501037598, + 0.4509507417678833, + -0.35869067907333374, + -0.3698144555091858, + 0.5230148434638977, + -0.8698151111602783, + -0.3154229521751404, + -1.9179831743240356, + -0.4950370788574219, + -0.4080249071121216, + -0.5533609986305237, + -0.3787094056606293, + -1.5423345565795898, + -0.6700327396392822, + 0.3605442941188812, + 0.8065107464790344, + -0.06541725993156433, + -0.5153324604034424, + -0.25238537788391113, + -0.09665709733963013, + -0.04197095334529877, + -0.2502271234989166, + 0.22081173956394196, + -1.9224462509155273, + -0.0985414981842041, + 1.3216134309768677, + -0.18758675456047058, + -0.5724990367889404, + -0.6739538908004761, + 0.2574867010116577, + -3.0735464096069336, + -0.6467630863189697, + -0.1080155074596405, + -1.1382416486740112, + 0.51372230052948, + -0.24884112179279327, + 0.09037968516349792, + 1.8645637035369873, + 1.3900964260101318, + 0.8108056783676147, + 1.3369340896606445, + 3.0834767818450928, + -1.459903597831726, + -2.438645124435425, + -0.675759494304657, + 0.9530340433120728, + -2.283815860748291, + -0.18695876002311707, + 0.7462039589881897, + 1.8192474842071533, + 0.25082796812057495, + 0.04150739312171936, + -1.9012033939361572, + -1.3852972984313965, + 1.1104451417922974, + -0.14279033243656158, + 2.743340253829956, + -0.4166308641433716, + 1.7552728652954102, + 3.367344617843628, + 1.5832467079162598, + -0.9787790179252625, + -1.3494749069213867, + -0.9631292819976807, + -1.410730004310608, + 0.7727826237678528, + -1.6092383861541748, + -0.43695008754730225, + -0.08498650789260864, + -0.5384584665298462, + 0.9075820446014404, + -0.2265028953552246, + -3.5792644023895264, + -0.11558306217193604, + 0.8535391092300415, + -0.9599546194076538, + 0.2853327989578247, + -0.8278244137763977, + -0.19323614239692688, + -1.21842360496521, + 1.092024326324463, + -1.9828487634658813, + -0.15077224373817444, + -1.7306036949157715, + 3.334266185760498, + 1.2380046844482422, + 0.2662768065929413, + 0.8631781339645386, + -1.6537742614746094, + -0.412105530500412, + -0.5671459436416626, + 0.6764121651649475, + -0.4782070517539978, + 0.7301973104476929, + 0.40823179483413696, + -2.3744516372680664, + 1.7326128482818604, + 0.26189491152763367, + 2.050631284713745, + 0.09718836843967438, + -2.8646836280822754, + 0.9925822019577026, + -2.499534845352173, + -0.8510254621505737, + -1.2006891965866089, + 0.9098613858222961, + -1.80235755443573, + 0.7196338772773743, + -2.0569608211517334, + -0.976652979850769, + -1.0767472982406616, + -1.6251109838485718, + -0.5103431940078735, + -1.4674004316329956, + -1.0395876169204712, + 0.4197348356246948, + -0.17559653520584106, + 2.4651358127593994, + 1.3209574222564697, + 2.3213958740234375, + -1.9555203914642334, + -2.665281295776367, + 0.4791642427444458, + -1.1526265144348145, + -0.33853399753570557, + 1.1202256679534912, + 0.03944036364555359, + 0.6995165944099426, + -1.764230728149414, + -1.2214319705963135, + -0.5788436532020569, + 0.9676792025566101, + 2.4685707092285156, + 1.9949570894241333, + 0.7907975912094116, + -0.9707128405570984, + -0.048200443387031555, + -0.9527671337127686, + 0.8916138410568237, + -0.02481621503829956, + 0.9038262963294983, + 1.6803911924362183, + 1.6175217628479004, + -1.2885138988494873, + 2.8930208683013916, + 0.9610081911087036, + -3.1362390518188477, + -1.2825781106948853, + -1.4693148136138916, + -2.126723051071167, + 0.3160496652126312, + 1.657941460609436, + -1.1388486623764038, + -0.23704591393470764, + -0.24447378516197205, + -0.4796687364578247, + -0.025039762258529663, + 1.102731466293335, + -1.8582267761230469, + -0.8408510088920593, + -0.3259182572364807, + -0.32114556431770325, + 0.07688700407743454, + -1.2222291231155396, + -1.3093388080596924, + -3.256195545196533, + -2.3853886127471924, + 0.16980937123298645, + -1.2081611156463623, + -2.7416422367095947, + 0.8459672927856445, + 1.6947271823883057, + 1.8654518127441406, + -0.16920381784439087, + -2.00744891166687, + -1.0907015800476074, + 0.6097433567047119, + -66.1251220703125, + -0.8587184548377991, + -0.32492321729660034, + -2.504117012023926, + -0.6242212057113647, + 1.2377142906188965, + 1.79852294921875, + 0.9092382192611694, + -0.357946515083313, + -0.35376307368278503, + -0.765031099319458, + 0.2807265520095825, + -0.0951572060585022, + 1.5482913255691528, + 0.48317277431488037, + 0.0429079532623291, + 0.8887695074081421, + 0.7897700071334839, + 1.958549976348877, + -0.2332637906074524, + -0.2295069396495819, + -0.7026548385620117, + -2.1964213848114014, + -0.3093374967575073, + 0.5589123964309692, + 1.588883399963379, + 0.648374080657959, + 0.021054983139038086, + 1.0937457084655762, + 1.0196565389633179, + 2.4656198024749756, + 0.5767917633056641, + -0.6208065748214722, + 2.2835137844085693, + -1.267222285270691, + -1.3073114156723022, + -1.8403695821762085, + -1.379220962524414, + 0.019665107131004333, + 0.17971637845039368, + 1.8115352392196655, + -1.4681634902954102, + 1.5787429809570312, + 1.3257237672805786, + -0.3575825095176697, + -1.0696604251861572, + 0.9355027675628662, + 3.64273738861084, + 0.11180678009986877, + 0.9708632230758667, + 2.8911967277526855, + 0.9974998235702515, + 0.6252332925796509, + 0.7413308620452881, + 1.093221664428711, + -0.1478731334209442, + 0.5880857110023499, + 0.2821625769138336, + -0.9946495294570923, + 1.6465193033218384, + -1.1900285482406616, + 1.6028748750686646, + 2.0125322341918945, + 0.7083776593208313, + 0.45803892612457275, + 0.5458851456642151, + -1.1980692148208618, + 2.405996561050415, + 0.9754000902175903, + -1.0868334770202637, + -2.2593038082122803, + 2.1725215911865234, + -1.0522129535675049, + 0.37279587984085083, + -0.8204336762428284, + -0.7167847156524658, + 0.8499859571456909, + 1.2712571620941162, + -0.9930390119552612, + -0.8782535791397095, + 0.36770129203796387, + 1.1302921772003174, + 1.4777683019638062, + 1.2058122158050537, + -0.16606517136096954, + -0.5837027430534363, + 0.596203088760376, + -2.9183878898620605, + 0.7191307544708252, + -0.06488540768623352, + -0.7281728386878967, + 0.6340446472167969, + 2.7946279048919678, + 0.2135627269744873, + 1.4764823913574219, + 0.423969566822052, + 0.23212367296218872, + 1.4108200073242188, + 1.3508434295654297, + -2.026185989379883, + -2.834315299987793, + 1.0946474075317383, + 0.846790611743927, + 0.8785725235939026, + 2.1460931301116943, + 0.932198703289032, + 2.655501127243042, + -0.4732997417449951, + 1.2048394680023193, + 0.8537249565124512, + -0.2451629638671875, + -5.316642761230469, + 0.38404712080955505, + -2.3918862342834473, + 2.0574913024902344, + 1.3879287242889404, + -1.9505976438522339, + 0.6656967997550964, + -1.7963162660598755, + 0.92180335521698, + 0.2910865545272827, + 1.008827805519104, + 1.0121206045150757, + 0.8208459615707397, + 1.9132955074310303, + 1.0455952882766724, + -1.9180327653884888, + 0.14252424240112305, + -0.43065792322158813, + -0.7419888377189636, + 0.3007063865661621, + 0.46750450134277344, + -1.2677639722824097, + 1.3697867393493652, + 0.3640724718570709, + 0.32303333282470703, + -1.283514142036438, + 0.21711155772209167, + 2.3388750553131104, + 0.3442811965942383, + 2.149808883666992, + 0.6351306438446045, + -0.32886481285095215, + 2.1090087890625, + -1.3498914241790771, + 0.9904324412345886, + -1.5670174360275269, + 0.4308728575706482, + 0.2792941927909851, + 1.1319363117218018, + 1.0515320301055908, + 0.9023696184158325, + 1.6472755670547485, + 1.2640498876571655, + -0.12974870204925537, + -1.553055763244629, + -0.18608176708221436, + 1.857255220413208, + 0.16657596826553345, + -1.3689091205596924, + -0.8744417428970337, + 0.07406952977180481, + 1.3783867359161377, + 2.7404050827026367, + 1.0517538785934448, + 0.6547210812568665, + -1.423715353012085, + 0.5458870530128479, + 0.5308616757392883, + 1.0620081424713135, + -0.25882259011268616, + 0.8839541077613831, + 1.241494059562683, + 0.3737163841724396, + 1.3816897869110107, + 1.9638209342956543, + 1.2155053615570068, + 0.4420812129974365, + -0.30297255516052246, + 0.7808586359024048, + -1.2478419542312622, + -0.6680968999862671, + 0.11075305938720703, + 1.3355027437210083, + -3.5302069187164307, + -0.18563836812973022, + -0.2924332022666931, + 1.1891106367111206, + 1.0495691299438477, + -0.658210277557373, + -0.6517258882522583, + -1.9892526865005493, + 0.8416604399681091, + 0.10357776284217834, + -0.46847814321517944, + 0.9084516167640686, + 1.692943811416626, + 0.24653667211532593, + 1.616743803024292, + 1.392350196838379, + 1.3213757276535034, + 0.3442636728286743, + 0.8194661140441895, + -1.33894944190979, + 0.9832431077957153, + -0.6231397390365601, + -0.3032219409942627, + 1.958289384841919, + 0.1068432629108429, + -2.8230443000793457, + -0.4069017171859741, + 0.5518811345100403, + 0.9664568901062012, + 0.3327023684978485, + -1.3818281888961792, + -0.6305245161056519, + 1.0855979919433594, + 1.6540802717208862, + -0.24525129795074463, + 0.3823280334472656, + 1.3469332456588745, + 1.5537973642349243, + -2.059666872024536, + -1.9289898872375488, + -0.29238513112068176, + -0.2016282081604004, + 0.5059723854064941, + -0.7532035708427429, + -1.9419695138931274, + 0.23234602808952332, + -2.3047406673431396, + 1.568860411643982, + -1.4298155307769775, + 1.2693061828613281, + 0.04830123484134674, + 1.141324520111084, + 1.1027164459228516, + -0.5393080711364746, + 2.7252068519592285, + 0.35240060091018677, + -2.0696728229522705, + 0.07812720537185669, + 0.05535691976547241, + -0.28871840238571167, + -0.38768523931503296, + 2.2037692070007324, + -1.6336714029312134, + 0.9669740796089172, + -0.6030026078224182, + -1.5788190364837646, + 1.8429845571517944, + 0.16041427850723267, + -0.4849449694156647, + -1.1340773105621338, + -1.327770709991455, + -1.9794440269470215, + 0.8950679302215576, + 2.6795074939727783, + 0.41820433735847473, + -0.35514208674430847, + 1.0523016452789307, + 0.21338948607444763, + -0.6141344308853149, + 2.9370460510253906, + -0.19396060705184937, + -1.3029429912567139, + 1.1546084880828857, + 0.6676865816116333, + 2.21008038520813, + -0.45985549688339233, + 0.9625160098075867, + -3.2812769412994385, + -1.5712703466415405, + 0.5758659839630127, + -2.3604822158813477, + -0.5526911020278931, + 0.7460637092590332, + 1.3976956605911255, + 0.13212984800338745, + -0.7210816740989685, + 0.37780988216400146, + 0.14670762419700623, + 0.9952476620674133, + -1.6398574113845825, + -0.17417174577713013, + -1.112413763999939, + 0.9950964450836182, + 0.528176486492157, + -1.519104242324829, + 0.9397544860839844, + 1.416394591331482, + 0.6335974335670471, + -0.3275953233242035, + 1.1641249656677246, + -1.0663353204727173, + 1.0263698101043701, + 1.182252287864685, + -2.7210631370544434, + 1.17759370803833, + -0.8002557754516602, + 0.5108212232589722, + -2.560734272003174, + 0.47895652055740356, + 10.287983894348145, + 2.461608648300171, + -1.579442024230957, + -0.13934239745140076, + -0.22189189493656158, + -0.790154755115509, + 0.2106178104877472, + 0.744092583656311, + -0.2588997483253479, + -1.3453900814056396, + 0.739693820476532, + 1.4239811897277832, + 2.348059892654419, + -2.03305721282959, + -1.8018147945404053, + -3.744875431060791, + 0.3970164656639099, + 1.0059638023376465, + 0.1417011022567749, + 0.41433581709861755, + -0.15817226469516754, + 0.5208720564842224, + -0.12981024384498596, + 1.734677791595459, + 1.7621183395385742, + 0.6547709107398987, + 1.6228407621383667, + 1.7620038986206055, + -1.6998682022094727, + -0.8301384449005127, + -0.11863075196743011, + -2.0819501876831055, + -0.27387285232543945, + 1.5139132738113403, + -0.17089134454727173, + 1.9868916273117065, + -0.4450223743915558, + 0.3980155289173126, + -0.05809052288532257, + 0.9168576598167419, + -1.8631792068481445, + 0.5975216627120972, + -1.243557095527649, + -0.421725869178772, + 0.31091147661209106, + -1.4522678852081299, + 0.240975022315979, + -2.8127593994140625, + -0.13784806430339813, + 0.254239559173584, + -1.3729372024536133, + 1.24558687210083, + -0.9206514358520508, + -0.4410755932331085, + 0.18499571084976196, + -1.0258524417877197, + -1.374794363975525, + -0.1492876410484314, + -3.9249162673950195, + -0.8572000861167908, + -1.3115358352661133, + -0.4574587941169739, + 5.9137773513793945, + -0.9233120679855347, + -0.40900081396102905, + -0.38156360387802124, + 1.9439111948013306, + -1.6381516456604004, + -0.0983191728591919, + 2.2480995655059814, + -0.03597448766231537, + -0.16419970989227295, + 1.4234838485717773, + 0.13268479704856873, + -1.6496832370758057, + -1.4337663650512695, + -1.9927159547805786, + -1.453294038772583, + -1.564866542816162, + 0.12485632300376892, + 0.02443966269493103, + -1.2603510618209839, + 0.8577823638916016, + -0.0014283061027526855, + 1.017374038696289, + -1.1817426681518555, + -1.9903234243392944, + -2.5502002239227295, + -3.5091333389282227, + -1.2655473947525024, + 0.7679107189178467, + -0.029140055179595947, + -0.6297121047973633, + -1.2235703468322754, + -0.8685998320579529, + -1.7657654285430908, + -1.3457205295562744, + 2.8236494064331055, + 0.041147977113723755, + 0.6413812637329102, + -0.3464709520339966, + 0.635515034198761, + 3.784048318862915, + 0.920077383518219, + 0.16878002882003784, + 1.208158254623413, + 2.0179243087768555, + 0.15733149647712708, + 2.5706584453582764, + 2.822765827178955, + 1.9034788608551025, + -1.083709478378296, + -0.09072758257389069, + 0.14043602347373962, + -1.1762489080429077, + 0.40889081358909607, + 0.22829569876194, + 1.0008381605148315, + 0.08465003967285156, + 0.6402192115783691, + -2.473769187927246, + 0.3420407772064209, + 1.4241875410079956, + 1.5935189723968506, + 0.34018492698669434, + -1.1350927352905273, + -1.2740681171417236, + -0.2929370701313019, + -0.2236802577972412, + 3.1661453247070312, + 0.4185863137245178, + -1.2657253742218018, + -0.17643028497695923, + 1.3877766132354736, + -0.7272568941116333, + -0.828883707523346, + 1.4350813627243042, + 0.3190922737121582, + 0.022454500198364258, + -1.1846485137939453, + -1.5346903800964355, + -2.250971555709839, + -0.6307320594787598, + 2.3723442554473877, + 1.9400116205215454, + -0.4459209442138672, + -0.8714858293533325, + 0.3893008828163147, + 0.7695184350013733, + -0.9999575018882751, + 1.407693862915039, + 0.1476486176252365, + 0.4993274211883545, + 0.30979466438293457, + 1.2319836616516113, + -0.3175048530101776, + -0.8568513989448547, + -1.6734733581542969, + 0.8980669975280762, + 1.8035036325454712, + 0.6108673810958862, + 0.9102733135223389, + 1.823256492614746, + 1.0172265768051147, + -0.16768518090248108, + -1.6632728576660156, + 1.8413786888122559, + 2.1929311752319336, + 1.6792385578155518, + -0.6661485433578491, + -1.2721624374389648, + 0.8808075189590454, + 0.5798802971839905, + 0.22285425662994385, + -0.05715459585189819, + -0.3584962785243988, + -2.244887113571167, + 1.8273173570632935, + 0.6482590436935425, + -0.35323435068130493, + 0.09316320717334747, + 0.49491602182388306, + -0.2954784631729126, + -1.8451359272003174, + 3.5242538452148438, + 0.4728352129459381, + -2.9271867275238037, + -0.008467495441436768, + 0.9707370400428772, + -0.3791123628616333, + 2.074522018432617, + 0.717091977596283, + 2.196519613265991, + 2.336489200592041, + 1.0575495958328247, + 0.7777332663536072, + -0.3830799162387848, + 1.2499064207077026, + 0.827589750289917, + 0.5189490914344788, + -1.6458985805511475, + 1.3105071783065796, + 1.183807134628296, + -2.2501754760742188, + 0.039270639419555664, + 0.8181173801422119, + 0.8848149180412292, + 0.33045488595962524, + -0.87735915184021, + 0.30905210971832275, + 0.26111704111099243, + 0.3059436082839966, + 0.2475801706314087, + -2.1523966789245605, + -1.3642960786819458, + 0.013819694519042969, + 0.38496363162994385, + 0.7659021019935608, + -0.8557631373405457, + -2.2280876636505127, + -1.7649844884872437, + 0.0035911090672016144, + 0.36982160806655884, + 0.4942641854286194, + 3.2781167030334473, + 2.839886426925659, + -0.7552570104598999, + 0.48052558302879333, + 1.1828773021697998, + -2.0909738540649414, + -0.33711785078048706, + 5.382323741912842, + 0.0433138906955719, + -0.1274246871471405, + 0.7239571809768677, + 1.082900047302246, + -2.4209256172180176, + 0.38210269808769226, + -0.7559786438941956, + 1.3978734016418457, + 0.3661132752895355, + 0.9209326505661011, + -1.210959553718567, + 0.27123188972473145, + -2.695697069168091, + -1.3587223291397095, + 0.2064986228942871, + -0.4563438594341278, + -1.9620808362960815, + -1.1151845455169678, + 0.7451664209365845, + -0.8843792676925659, + 0.20362529158592224, + -1.038421630859375, + 0.0734783485531807, + -1.8533430099487305, + -1.6428242921829224, + 0.10954169929027557, + 0.5303765535354614, + 2.4727706909179688, + -0.01171731948852539, + -2.2929422855377197, + 3.2365667819976807, + 1.1871883869171143, + -3.512741804122925, + -0.07655888795852661, + -0.5439064502716064, + 1.4614945650100708, + -0.5800210237503052, + -0.8401764631271362, + -0.7457627654075623, + 0.07507658004760742, + 2.747856378555298, + -0.13227343559265137, + -0.29944533109664917, + 3.462792158126831, + 0.4221728444099426, + 0.08202865719795227, + -2.822089195251465, + 2.054497480392456, + -0.20763356983661652, + -0.42076313495635986, + -0.7606292963027954, + 0.8869656324386597, + -0.5295083522796631, + -0.3517076075077057, + 1.7455044984817505, + 0.5564883351325989, + -0.8093670606613159, + 2.5360684394836426, + -1.1977381706237793, + -0.42890721559524536, + 1.1614352464675903, + 1.2520238161087036, + 1.3531782627105713, + -0.3653324544429779, + -0.29761838912963867, + 1.1217412948608398, + 0.4714966118335724, + 0.20892968773841858, + 0.46846482157707214, + -0.6779525279998779, + 0.6210293173789978, + -0.8239525556564331, + 1.2563480138778687, + -0.8607131242752075, + 0.8324660062789917, + -0.28454142808914185, + -0.7829996347427368, + 0.1472530961036682, + 0.17451637983322144, + 0.16322943568229675, + 1.3996565341949463, + -2.5645503997802734, + 1.1663818359375, + 0.11821973323822021, + -0.835777997970581, + 0.409244567155838, + 2.3717918395996094, + 0.10378800332546234, + -1.2072219848632812, + -1.5543925762176514, + 1.3115153312683105, + -0.9701459407806396, + 0.4192120432853699, + 1.1815030574798584, + 0.634689450263977, + 1.1893178224563599, + 1.7818667888641357, + -0.1384226381778717, + 0.33081722259521484, + -0.41248732805252075, + 1.0179835557937622, + -1.7113295793533325, + 0.8453409671783447, + -4.488903522491455, + 1.1297376155853271, + -0.0624760277569294, + 0.17579877376556396, + 1.4699870347976685, + 0.8294306397438049, + 0.04367482662200928, + 1.098858118057251, + -3.0693159103393555, + -0.15587595105171204, + 0.6571804285049438, + 2.0265283584594727, + -2.12394118309021, + -1.244333028793335, + 0.3651760220527649, + 0.25200730562210083, + -0.4640561640262604, + 0.14559245109558105, + -0.3789213299751282, + -0.37742936611175537, + -0.23380368947982788, + 0.045536890625953674, + -0.10832659155130386, + -1.965743064880371, + -1.078665018081665, + -0.15895044803619385, + 0.8315733075141907, + -1.7414014339447021, + 0.39680564403533936, + -0.38265231251716614, + 0.29726433753967285, + 0.3364871144294739, + 0.07407655566930771, + -1.3269145488739014, + -0.057578831911087036, + 1.3204879760742188, + -0.4861372113227844, + 3.359853506088257, + 0.3814244270324707, + -1.974515438079834, + -0.000647813081741333, + -0.11337196826934814, + -2.1025772094726562, + 1.9942610263824463, + 0.9084362387657166, + 1.6950249671936035, + -0.9606150388717651, + -1.743196725845337, + -1.6597990989685059, + 0.5832667350769043, + 4.33614444732666, + -1.6925058364868164, + -0.9085248112678528, + -0.8657548427581787, + 3.7781999111175537, + 0.9619121551513672, + 0.043267570436000824, + 1.3761210441589355, + -1.2315080165863037, + 2.1384236812591553, + -1.0895678997039795, + -0.2990569770336151, + -3.074338436126709, + -0.6094104647636414, + -0.9335323572158813, + -1.0598132610321045, + -1.1860803365707397, + -0.1332916021347046, + 0.8051234483718872, + -2.1801035404205322, + -1.409421682357788, + 1.8461229801177979, + -0.883802056312561, + -0.440756231546402, + 1.60757577419281, + 0.010970000177621841, + -1.5016181468963623, + -2.722658157348633, + -3.265029191970825, + 1.3904008865356445, + 2.2753307819366455, + 1.2210339307785034, + 1.5211645364761353, + -0.010623753070831299, + 2.873131036758423, + -0.37627875804901123, + 1.1221985816955566, + -2.02266263961792, + -1.3146121501922607, + -1.149369478225708, + -1.0933469533920288, + 1.419818639755249, + 0.6528496146202087, + 0.790311872959137, + -2.481156826019287, + 0.6436908841133118, + -1.9120585918426514, + -1.5601881742477417, + -1.9572970867156982, + 1.7240321636199951, + -0.02068844437599182, + -0.13728517293930054, + 1.1196085214614868, + -2.637566089630127, + -3.4065890312194824, + 0.915858268737793, + 1.756048560142517, + -1.0557947158813477, + -1.1814509630203247, + 0.8607206344604492, + -0.7407642602920532, + 2.1383793354034424, + -0.3236822485923767, + 0.6795087456703186, + -2.8821933269500732, + 2.9153401851654053, + 1.6702685356140137, + 0.1832275688648224, + -0.19610917568206787, + -0.6042178273200989, + 1.6137516498565674, + 1.246961236000061, + 0.7952273488044739, + -0.9982355237007141, + 1.154252290725708, + -2.6257174015045166, + 0.8198184967041016, + -0.04258786514401436, + -2.472822904586792, + -1.3897759914398193, + 1.7855911254882812, + 1.2186936140060425, + -0.4927622973918915, + 0.08981800079345703, + -0.7821705341339111, + -0.9431247115135193, + 0.5512000322341919, + 1.3494127988815308, + 0.009917348623275757, + -0.00708693265914917, + 0.7634490132331848, + 1.0859781503677368, + -1.4824705123901367, + 1.180834174156189, + 1.6210356950759888, + -0.9422388076782227, + 0.16672292351722717, + -0.0550273060798645, + 1.0237207412719727, + 0.3120282292366028, + 0.778468132019043, + 1.1888363361358643, + 1.3177860975265503, + -4.148127555847168, + 1.0411317348480225, + 0.0761328935623169, + -0.6481041312217712, + 7.411316871643066, + -4.347682476043701, + 0.8417952060699463, + 0.7424562573432922, + -1.5362203121185303, + 0.5859352350234985, + -2.2838706970214844, + -1.2159755229949951, + 1.3874822854995728, + -1.5541656017303467, + -0.9481639862060547, + 1.9925615787506104, + 1.491239070892334, + 0.6390635371208191, + 0.8932791948318481, + -2.094058036804199, + 0.08133348822593689, + 0.4040794372558594, + -0.04593616724014282, + -0.534416913986206, + 0.6122180819511414, + -0.9306492209434509, + 1.1760815382003784, + 0.8103119134902954, + -0.8623998761177063, + 0.9313693642616272, + -1.6269879341125488, + -0.3277183175086975, + 2.8773276805877686, + -1.8309252262115479, + -0.021562449634075165, + -1.8075960874557495, + 1.5005700588226318, + 2.816793918609619, + -1.151401400566101, + -0.7619979381561279, + 1.848102331161499, + 2.3834710121154785, + 2.9857213497161865, + -0.6713347434997559, + 0.4897891879081726, + -3.060404062271118, + 1.1866620779037476, + 1.623827338218689, + -0.8496074080467224, + 2.3837037086486816, + -0.059202879667282104, + -0.4973735809326172, + 1.3142263889312744, + 0.6447762846946716, + -1.77046537399292, + -0.9004903435707092, + 1.9682316780090332, + -2.498305559158325, + 1.203101396560669, + -0.17046117782592773, + -0.3584582805633545, + 0.8439344167709351, + 1.0983271598815918, + -0.19857573509216309, + -1.5284854173660278, + 0.7854918241500854, + 1.3411223888397217, + 0.6260921359062195, + 2.217827320098877, + 0.11882174015045166, + 1.0708167552947998, + 0.677910327911377, + 0.7061516046524048, + 0.292378693819046, + 3.160515546798706, + 0.9643504619598389, + -2.122000217437744, + -0.04485905170440674, + -2.8048782348632812, + -1.0664455890655518, + 0.4429043233394623, + -0.2856447696685791, + 0.46324342489242554, + 0.4023532271385193, + -0.47767168283462524, + -0.04443567991256714, + -0.3470689058303833, + 0.04415065050125122, + 1.4514044523239136, + -1.1500881910324097, + 1.093247413635254, + -0.3445448875427246, + -0.9176651239395142, + 1.2930670976638794, + -1.3878862857818604, + -1.0626815557479858, + 0.9165265560150146, + 1.2621890306472778, + -1.1994303464889526, + 0.5132045149803162, + -1.8352323770523071, + -1.1358246803283691, + 0.15550750494003296, + 1.2285436391830444, + -1.0817737579345703, + -0.6118499636650085, + 1.5462117195129395, + 5.547861576080322, + 0.1509850025177002, + -0.7662026882171631, + -0.18504460155963898, + 0.5727107524871826, + 4.10709285736084, + -2.261643648147583, + -1.6443495750427246, + -2.233936309814453, + 0.009478896856307983, + 0.8540719747543335, + 1.0591166019439697, + -1.5440781116485596, + 1.1032946109771729, + -1.4373574256896973, + -0.6011602282524109, + -0.1937994360923767, + 0.5972700119018555, + 0.36090558767318726, + -1.0027453899383545, + 2.8778183460235596, + 0.14293944835662842, + -0.058106258511543274, + -1.149570345878601, + 0.1940227746963501, + -1.9230246543884277, + -1.3819780349731445, + -0.06055336445569992, + 0.7988996505737305, + -2.1837310791015625, + 0.533920168876648, + 0.47158530354499817, + -1.2476160526275635, + 1.1367571353912354, + 3.3712000846862793, + 0.9096295237541199, + -0.4930546283721924, + -0.15425288677215576, + -0.24462810158729553, + 0.7683621644973755, + -1.4132801294326782, + 0.395185649394989, + -2.465432643890381, + -2.212308645248413, + -0.34904947876930237, + -0.773489236831665, + -0.543157696723938, + -0.11477571725845337, + 0.8099545240402222, + -1.106571078300476, + -1.4341490268707275, + -0.3918776512145996, + 1.3006893396377563, + -0.7035567164421082, + -1.1174092292785645, + -0.7223259806632996, + -2.1193106174468994, + 0.6041454076766968, + -0.5418486595153809, + 0.6587175130844116, + -1.0795053243637085, + 1.7973206043243408, + 0.29660362005233765, + -0.3313094675540924, + -0.23475372791290283, + 1.868452548980713, + -0.7674204707145691, + 0.6263596415519714, + 1.5968146324157715, + 0.9726420640945435, + -2.340134620666504, + -0.23594604432582855, + 0.08160573244094849, + -0.2930736541748047, + -0.6698626279830933, + 2.4061295986175537, + -1.2383661270141602, + -1.6313360929489136, + 0.03848510980606079, + 0.49737128615379333, + 1.2947043180465698, + 3.1136579513549805, + 3.0654048919677734, + -0.06290124356746674, + 0.8449904322624207, + -1.5548737049102783, + -0.4621782898902893, + -1.7577801942825317, + 2.1933093070983887, + -0.0642918050289154, + -0.8835114240646362, + -0.709173858165741, + 0.8721006512641907, + 0.08234307169914246, + 0.763197124004364, + -0.2913343012332916, + 0.19700893759727478, + 0.8179073929786682, + 1.9464871883392334, + 2.6158499717712402, + 0.6428688168525696, + 0.9750226140022278, + 2.60248064994812, + -1.4331163167953491, + 1.7748793363571167, + 0.09303289651870728, + -0.9017893075942993, + 0.051298752427101135, + 0.6494857668876648, + -0.6383523941040039, + 0.365558922290802, + -0.4700842499732971, + -0.3388306498527527, + 2.7050423622131348, + 0.18085211515426636, + 0.11989717930555344, + 0.6931943893432617, + 1.044335126876831, + -1.1670154333114624, + 0.23306673765182495, + 0.8039931654930115, + 0.8022492527961731, + -1.3453997373580933, + 1.863033413887024, + -1.6760954856872559, + 1.8722543716430664, + 0.13260790705680847, + -1.6284351348876953, + 1.3754806518554688, + 0.55889493227005, + -0.17554277181625366, + -0.6100038290023804, + 0.753204882144928, + 1.2732609510421753, + -1.6273154020309448, + 2.4955499172210693, + -0.33496737480163574, + 1.1426301002502441, + -3.2323787212371826, + 1.2622263431549072, + 2.4979231357574463, + 0.26998284459114075, + 1.4959393739700317, + 0.47326451539993286, + 0.14899301528930664, + 2.9518520832061768, + 1.2707853317260742, + 1.6145066022872925, + 0.21806800365447998, + -0.6134366393089294, + 1.3547639846801758, + -0.03880119323730469, + 1.5051960945129395, + 1.0127744674682617, + -2.021754026412964, + 0.4692996144294739, + -1.8678979873657227, + -0.3101356029510498, + -0.4266356825828552, + 1.9388643503189087, + 1.7223377227783203, + 2.246011734008789, + -0.8155807852745056, + -0.8030753135681152, + 2.1094632148742676, + 0.9232141375541687, + -0.7478301525115967, + 1.5551304817199707, + 2.663064479827881, + -0.033764615654945374, + 0.04182778298854828, + 0.9382228851318359, + 0.02693837881088257, + -0.3626216650009155, + -0.5836796760559082, + 0.05947092920541763, + 1.2147562503814697, + 1.0813064575195312, + 0.1780012845993042, + -0.11116167902946472, + 3.0369162559509277, + 0.4037294387817383, + -1.7889893054962158, + -0.19329911470413208, + -0.3852427005767822, + 0.007832422852516174, + 1.9896948337554932, + -0.5754057765007019, + 0.7226874828338623, + -4.173722743988037, + 1.7587324380874634, + 0.5935640335083008, + 1.6121325492858887, + 0.8154847621917725, + -2.6201024055480957, + -1.5961660146713257, + 1.3015105724334717, + -0.5524148941040039, + 0.4719148874282837, + -1.336338758468628, + 0.28785696625709534, + -3.5334932804107666, + 0.8106974959373474, + 0.7399512529373169, + -0.8438198566436768, + -0.7655812501907349, + -1.228391170501709, + -0.7498669624328613, + -0.41742363572120667, + -0.35131075978279114, + -1.682167410850525, + -0.9179331660270691, + 0.5903609395027161, + 0.6602827310562134, + -1.2095353603363037, + -0.3182789385318756, + 0.9293947815895081, + -0.06600192189216614, + 0.848092794418335, + -0.05655355006456375, + -1.1867386102676392, + -1.3012030124664307, + 0.46176677942276, + 1.7457342147827148, + 0.5051857829093933, + -0.8432651162147522, + -0.9504139423370361, + -0.31077349185943604, + 1.1639540195465088, + -2.1987361907958984, + -0.1449231505393982, + -1.73995840549469, + -2.163552761077881, + 0.7713848352432251, + -0.17898041009902954, + -0.5549535751342773, + 0.19381183385849, + -0.8552649617195129, + 1.6479213237762451, + 0.4268632233142853, + -2.92281436920166, + -4.2659912109375, + 0.6259369850158691, + 1.7493727207183838, + 0.6989662647247314, + -0.7746936678886414, + 1.4140384197235107, + 0.8458755016326904, + 2.9464163780212402, + -3.273261785507202, + -0.35329073667526245, + -1.3649609088897705, + 1.320530891418457, + -1.7393250465393066, + -2.114272117614746, + -1.0343232154846191, + -1.8527183532714844, + -2.9462132453918457, + 0.09772233664989471, + -1.2574679851531982, + -1.0918445587158203, + 1.2001432180404663, + -0.6001704335212708, + -1.6724011898040771, + -0.03226536512374878, + 0.7411492466926575, + 2.3410568237304688, + 0.6310389041900635, + 1.7856351137161255, + 0.02293887734413147, + -0.6004024744033813, + -2.019575357437134, + 1.2191219329833984, + -1.150712251663208, + 1.2789068222045898, + 0.996087908744812, + -0.5990915298461914, + -1.1792781352996826, + 0.3560706377029419, + -0.2665534019470215, + 0.5966325998306274, + 1.8427786827087402, + -0.9891718029975891, + -2.1529040336608887, + 0.29554975032806396, + 1.2064707279205322, + -2.1875381469726562, + 0.912774384021759, + 0.10423058271408081, + -1.5662868022918701, + 0.7826043367385864, + -0.5643534660339355, + 2.3336575031280518, + 0.5790537595748901, + -1.973547101020813, + 0.7891018390655518, + 4.232161045074463, + -1.18186616897583, + 2.2513303756713867, + -0.36707961559295654, + 0.6966512203216553, + -1.7940425872802734, + -1.5048574209213257, + 1.108000636100769, + 0.94148188829422, + -2.53122878074646, + -2.5455524921417236, + -1.3603564500808716, + -0.2758590281009674, + 0.16678500175476074, + 2.200719118118286, + 0.056033119559288025, + 0.9286029934883118, + 0.8306998014450073, + -1.0703023672103882, + 1.8475089073181152, + 0.4695264399051666, + -2.0247581005096436, + -1.9544891119003296, + 0.12836456298828125, + -3.409289598464966, + -1.9981091022491455, + 1.6725199222564697, + 3.808518409729004, + 1.6352570056915283, + -0.7585282325744629, + -0.1888701617717743, + -1.8876889944076538, + -1.536942481994629, + 0.9597413539886475, + -0.9186707735061646, + -0.48960235714912415, + -2.0956969261169434, + 0.464970201253891, + -0.14195935428142548, + -0.4800838530063629, + 0.6720024347305298, + 0.47104954719543457, + 1.415437936782837, + 1.061561107635498, + -0.5306178331375122, + 0.14980340003967285, + 1.6725038290023804, + 1.6838725805282593, + -0.17278236150741577, + 3.1267552375793457, + -0.15760569274425507, + 0.02434452623128891, + -1.5431890487670898, + -0.9762830138206482, + -0.8030792474746704, + 1.7011401653289795, + -0.8887300491333008, + -0.24276983737945557, + -0.8542662262916565, + 0.0657552182674408, + -0.8613396883010864, + 1.5960885286331177, + -0.4467535614967346, + -3.1807706356048584, + 0.6241970062255859, + -0.24560853838920593, + 0.5787232518196106, + -0.029431790113449097, + -0.36932578682899475, + 1.8465861082077026, + -0.7665790319442749, + 0.8583629131317139, + -0.6683743000030518, + -1.3049219846725464, + 1.2161192893981934, + -1.355212688446045, + -2.107823133468628, + -0.07414418458938599, + 1.8544615507125854, + 1.8361949920654297, + 2.25586199760437, + -1.7150601148605347, + -1.409294605255127, + 0.8555009365081787, + -0.28014490008354187, + -0.92415851354599, + 0.3519620895385742, + -0.22058407962322235, + 0.509955883026123, + 1.226193904876709, + 1.3168282508850098, + -1.520754098892212, + 1.3286106586456299, + 0.7699149250984192, + -0.2756556272506714, + -1.2576911449432373, + -2.585878372192383, + 1.2922245264053345, + -2.782573699951172, + -1.337944507598877, + 1.6559326648712158, + 1.3114811182022095, + -2.1843698024749756, + -0.9657425284385681, + 1.7216769456863403, + -0.9353557229042053, + 1.1768145561218262, + -2.599130630493164, + -2.0542430877685547, + 2.2545201778411865, + -2.7836220264434814, + 0.8909059762954712, + 2.7158284187316895, + 0.6712342500686646, + 0.3131827414035797, + -0.7609571218490601, + -1.2801111936569214, + -1.3544069528579712, + 1.3337631225585938, + -0.6576728820800781, + 1.956760287284851, + 1.0361616611480713, + 1.0304356813430786, + -1.7889504432678223, + 3.8440802097320557, + -1.9000078439712524, + -0.30141890048980713, + 0.49392879009246826, + -1.5279277563095093, + 0.46057647466659546, + 4.490559101104736, + 1.6903609037399292, + -1.1986219882965088, + 1.8032604455947876, + 2.8840889930725098, + -1.384087324142456, + -1.7993073463439941, + 0.6765931844711304, + 1.397387981414795, + -0.42180773615837097, + -0.4574432373046875, + 0.45671549439430237, + -1.67939293384552, + -0.13457047939300537, + 1.0825735330581665, + 1.175681471824646, + 1.1424717903137207, + -0.854560375213623, + -0.8352477550506592, + 2.029123544692993, + -0.3422885537147522, + 0.8886727094650269, + 0.8706274628639221, + 1.077504277229309, + -2.609419345855713, + -0.07321584224700928, + -0.7099775075912476, + -0.7336006760597229, + 2.002228021621704, + -1.869296908378601, + 0.636242151260376, + -0.8614153265953064, + 1.2157492637634277, + 1.0804648399353027, + 0.09343276172876358, + -0.6868072152137756, + 0.5253779888153076, + 1.8194466829299927, + 0.13617420196533203, + -0.404394268989563, + -0.7167704105377197, + 0.5592870712280273, + 2.4972715377807617, + 0.8883824944496155, + -0.45426714420318604, + -0.5384179353713989, + -0.652106523513794, + -0.9818516969680786, + 0.9397485852241516, + -2.0225534439086914, + -0.9150827527046204, + 0.5319213271141052, + 1.2526146173477173, + 1.0932990312576294, + 0.30027490854263306, + 1.3484246730804443, + 1.6591455936431885, + -1.7282649278640747, + 0.5434369444847107, + -1.8402235507965088, + 2.9818875789642334, + -0.5230706334114075, + -2.094818115234375, + 2.0904457569122314, + 1.0790162086486816, + -0.21866101026535034, + -6.275970935821533, + -0.978287935256958, + -1.5807541608810425, + -0.9578267335891724, + -0.31340208649635315, + 0.3649904131889343, + 1.4059600830078125, + 1.4842997789382935, + 0.6258131265640259, + 2.1974616050720215, + -0.6684384346008301, + 0.024362623691558838, + -1.8295283317565918, + -1.6657090187072754, + 0.2340710163116455, + 1.784117341041565, + 4.179576873779297, + -0.11356484889984131, + 2.592813491821289, + -1.8653535842895508, + 0.6430907249450684, + -0.8059797883033752, + -1.8947829008102417, + -2.7720677852630615, + -1.2207008600234985, + -5.90811824798584, + 1.2580616474151611, + -0.5035938620567322, + -0.26030731201171875, + -2.5644712448120117, + -2.0917394161224365, + -0.31802862882614136, + 0.9441909790039062, + -3.1057651042938232, + 0.6986657381057739, + -0.5603775978088379, + -0.5526245832443237, + 0.2921328544616699, + 2.349538803100586, + -1.569417953491211, + 0.9449100494384766, + 0.8953611850738525, + 3.9378445148468018, + 1.188915729522705, + 1.6909667253494263, + 0.26633623242378235, + 1.2026946544647217, + 0.6970536708831787, + 0.5123618841171265, + -1.6981511116027832, + 2.467240333557129, + 2.2076520919799805, + -1.870871901512146, + 1.1216450929641724, + -0.0630078911781311, + -0.08565270900726318, + -0.7854043245315552, + 0.7450283765792847, + -0.6367692947387695, + 1.1400713920593262, + -1.0988552570343018, + 1.5673587322235107, + 0.8401721119880676, + 1.4736424684524536, + -0.5635156631469727, + -0.9374281167984009, + -0.12387508153915405, + 1.0547541379928589, + 0.11096107959747314, + -0.17646218836307526, + -1.3955142498016357, + -1.6159546375274658, + 3.6164093017578125, + -0.3980645537376404, + 2.3008549213409424, + 1.9037210941314697, + 0.0588817298412323, + 1.552065134048462, + 0.7901936769485474, + 1.6163166761398315, + 0.14790523052215576, + 3.6249442100524902, + 0.7298328876495361, + -0.5891992449760437, + 0.55986487865448, + -2.268996238708496, + -1.9004907608032227, + 3.0350561141967773, + -0.681661069393158, + 0.346042275428772, + 0.8184258937835693, + -1.2643210887908936, + -0.34515300393104553, + -2.3309106826782227, + 0.9905472993850708, + -0.298263281583786, + 1.0826107263565063, + -0.668632984161377, + -1.222651481628418, + 0.5596266984939575, + 0.7677712440490723, + -1.5761890411376953, + 0.07004444301128387, + 1.9743845462799072, + 2.600905418395996, + 0.0801207423210144, + 0.5345256328582764, + -0.7020348310470581, + 0.4771333932876587, + 2.819474458694458, + 0.09021535515785217, + 1.3807311058044434, + -0.1987728774547577, + -2.803048849105835, + -6.720985412597656, + 2.2334365844726562, + -0.21138635277748108, + -2.6021904945373535, + -1.4123802185058594, + 0.5695003867149353, + -2.4034628868103027, + 0.6114502549171448, + 0.36375999450683594, + 1.7778135538101196, + 1.010229229927063, + -0.07384026050567627, + -0.8975174427032471, + 1.4816441535949707, + -0.38020041584968567, + 1.3755332231521606, + -0.7640520334243774, + -0.5785338878631592, + -0.6647704839706421, + -1.748453140258789, + 0.12429063022136688, + -0.22750265896320343, + -0.49345916509628296, + 0.5263254642486572, + -0.4736730754375458, + -0.8997300863265991, + 1.8672499656677246, + -4.645718097686768, + 1.639549732208252, + -1.1800172328948975, + 2.1456453800201416, + -0.19371435046195984, + 3.2894444465637207, + 1.1489934921264648, + -0.007974505424499512, + -0.9320657253265381, + 1.4417426586151123, + -1.038527488708496, + -2.6988282203674316, + 0.6341289281845093, + -0.7107343673706055, + -0.5998213291168213, + -0.7731888294219971, + 0.050656288862228394, + -1.4585436582565308, + 1.042026162147522, + -2.110684871673584, + 0.5287489295005798, + 0.20205092430114746, + -0.9849273562431335, + 0.23846688866615295, + -0.39216163754463196, + -0.8233930468559265, + -1.5702078342437744, + 0.3036627173423767, + 0.22227928042411804, + -0.03778356313705444, + -0.42384475469589233, + 0.6051449179649353, + -0.03653639554977417, + -1.1183955669403076, + -2.213550090789795, + -2.6954946517944336, + 1.810174584388733, + -1.3454006910324097, + 0.1414402425289154, + 2.4816246032714844, + -0.7709685564041138, + 0.19807469844818115, + -2.0517377853393555, + -0.4207459092140198, + -2.1548893451690674, + -2.3812179565429688, + -0.4713333547115326, + 0.7070990204811096, + 1.2548543214797974, + 0.9413455128669739, + -0.34217965602874756, + 0.12060686945915222, + 2.1997382640838623, + 0.05778292939066887, + -1.6349483728408813, + -0.14600244164466858, + 0.9708788394927979, + 1.1805543899536133, + -1.7076177597045898, + 0.9480912089347839, + 0.31153959035873413, + -1.8104584217071533, + 0.3884141743183136, + 0.3375164866447449, + 0.9702386856079102, + -1.225117802619934, + 5.017090797424316, + 2.2471871376037598, + 0.4611000120639801, + 1.1643126010894775, + 1.1771117448806763, + 6.668932914733887, + -0.9993053674697876, + -0.4266890287399292, + 0.2965596914291382, + -0.740006685256958, + 1.6371980905532837, + -2.7253530025482178, + 1.0319983959197998, + 0.4869432747364044, + 0.6141706109046936, + -3.179910898208618, + -0.9085907340049744, + 1.1700869798660278, + -1.7161321640014648, + 1.4841749668121338, + 0.7301760315895081, + -1.1923582553863525, + -1.6177433729171753, + 1.2311720848083496, + 1.0452353954315186, + 0.11187875270843506, + -0.4136549234390259, + -0.20870351791381836, + 1.2766107320785522, + 1.7990577220916748, + 1.0367769002914429, + 1.0374540090560913, + 0.008926570415496826, + 1.3060383796691895, + -0.07828761637210846, + -0.5974332690238953, + -0.9963743686676025, + -0.4803527593612671, + -0.3666222095489502, + -0.9478926062583923, + -1.553177833557129, + -0.5011322498321533, + -0.38443470001220703, + -0.8479485511779785, + -0.9716492891311646, + 0.28316783905029297, + -0.5748032927513123, + 0.7692724466323853, + 1.3964532613754272, + 0.41462400555610657, + 2.029233932495117, + 0.37036818265914917, + -0.1646696925163269, + 1.7036687135696411, + 1.8594434261322021, + 0.8878863453865051, + -1.944162130355835, + -1.988996982574463, + -0.010884582996368408, + 0.34101760387420654, + -0.14217343926429749, + 1.5773288011550903, + -1.4128795862197876, + -1.3382071256637573, + -0.021264970302581787, + -0.8816181421279907, + 1.1600356101989746, + 3.716440439224243, + -0.3785182535648346, + -1.853487253189087, + -2.422361373901367, + -1.4830999374389648, + 4.270437240600586, + 0.18066687881946564, + -1.719704508781433, + -1.4914186000823975, + -0.9028118848800659, + -2.0208206176757812, + 0.6865895390510559, + -1.0785115957260132, + -0.13506197929382324, + -0.20093616843223572, + 0.14765429496765137, + -0.5929779410362244, + -0.8963249325752258, + 0.43092602491378784, + 0.8477412462234497, + -0.80595862865448, + 0.17736074328422546, + -1.624506950378418, + -1.6027830839157104, + 0.7525923252105713, + 1.5074462890625, + -0.7915816903114319, + 0.9717055559158325, + -0.14944328367710114, + -1.0639688968658447, + 1.6554808616638184, + -1.4536689519882202, + -3.976998805999756, + 0.4878460168838501, + 0.6482802629470825, + 0.1822863221168518, + 0.994396448135376, + 1.030325174331665, + 1.0118708610534668, + -0.8186519145965576, + 0.1201142743229866, + 0.3064541816711426, + -0.15235167741775513, + 1.7499008178710938, + -1.8838245868682861, + 0.7334995269775391, + 0.03953957557678223, + -0.06454458832740784, + -3.9167683124542236, + -1.4141018390655518, + 1.7590219974517822, + 2.674356460571289, + -0.9185975790023804, + -1.569082260131836, + -1.9044698476791382, + 2.0696840286254883, + 0.7658073306083679, + 0.5819705128669739, + 1.1006474494934082, + 0.8888484239578247, + -0.5696139335632324, + 0.4611166715621948, + 1.1973127126693726, + -2.0094895362854004, + 0.30891287326812744, + -0.14202255010604858, + -1.9138132333755493, + -1.5801382064819336, + 0.4063471555709839, + -0.2622721493244171, + 0.8015410900115967, + -1.1066291332244873, + -1.4361793994903564, + -0.33926817774772644, + -0.6802632808685303, + 1.7071013450622559, + 3.083634853363037, + -0.24973663687705994, + 0.831698477268219, + 1.0889484882354736, + -2.011174201965332, + -0.5725173354148865, + 0.1401515007019043, + -0.7983078956604004, + 0.16788482666015625, + 0.5096690654754639, + 2.0392725467681885, + 1.4313678741455078, + 1.8345935344696045, + -0.2410026490688324, + -1.9763307571411133, + 1.0742523670196533, + 1.1763988733291626, + 0.41172295808792114, + 0.10804623365402222, + 4.156609058380127, + -0.18684977293014526, + -3.9146320819854736, + 1.0091784000396729, + -0.8292712569236755, + -1.1910998821258545, + -0.3067893385887146, + 0.7247806191444397, + -1.6772929430007935, + -0.11371529847383499, + 1.9105905294418335, + 2.554926633834839, + 0.09701389074325562, + -1.2325677871704102, + -0.6335274577140808, + -2.82753849029541, + -0.03240165114402771, + -1.8930888175964355, + 1.4143506288528442, + 0.5473424792289734, + -0.14694176614284515, + 1.0691841840744019, + -1.6061829328536987, + -1.273673415184021, + 5.001973628997803, + -0.779364824295044, + 1.5696706771850586, + 3.536344051361084, + 0.352588415145874, + 0.4331129193305969, + 0.5748166441917419, + -0.2852022349834442, + -0.7851049900054932, + 1.2203373908996582, + -2.0205085277557373, + 0.5011980533599854, + 2.1145970821380615, + 1.9229916334152222, + -1.114061713218689, + 0.09841617941856384, + 0.2978649139404297, + 1.051084041595459, + 0.2770175039768219, + -2.0197834968566895, + 1.1557095050811768, + 0.7693026661872864, + 1.2562847137451172, + 1.3631713390350342, + 1.9209835529327393, + -0.27876365184783936, + 1.0154763460159302, + -0.6342875957489014, + 4.443211555480957, + 0.12144061923027039, + 0.015104919672012329, + -0.3585204482078552, + -0.616244912147522, + 2.124574899673462, + 2.7345190048217773, + 0.8671853542327881, + 1.4839634895324707 + ], + "vector": [ + -0.018841620534658432, + -0.007035450078547001, + 0.009577561169862747, + 0.003988503012806177, + 0.021327678114175797, + -0.0023796288296580315, + 0.0004113430914003402, + 0.01805492490530014, + -0.01864366978406906, + 0.01339660119265318, + 0.004905703477561474, + -0.013842574320733547, + 0.00032991438638418913, + 0.003430458251386881, + -0.0017924217972904444, + -0.0101094925776124, + -0.010143407620489597, + -0.01178001705557108, + -0.004237099085003138, + -0.007259478326886892, + 0.003710866207256913, + -0.010962541215121746, + 0.0015350552275776863, + -0.010810624808073044, + -0.013460665009915829, + 0.017385251820087433, + 0.0004949572030454874, + -0.004368247464299202, + 0.005104786716401577, + 0.00567326694726944, + 0.002596111735329032, + 0.019207298755645752, + -0.006497795693576336, + -0.0035842705983668566, + 0.0062857880257070065, + 0.0010639806278049946, + -0.021391721442341805, + 0.004578365944325924, + 0.009597832337021828, + 0.011575297452509403, + -0.008263012394309044, + 0.010113650001585484, + -0.004721963312476873, + 0.008072503842413425, + -0.015556790865957737, + -0.002988142892718315, + 0.003013147274032235, + -0.020779652521014214, + 0.00995002593845129, + -0.008946174755692482, + -0.0008975461823865771, + 0.012080955319106579, + 0.0004939968348480761, + -0.015778139233589172, + -0.03106318786740303, + -0.0036831453908234835, + -0.0018064134055748582, + 0.007531085517257452, + 0.0071015991270542145, + 0.006925295572727919, + -0.0063949585892260075, + -0.003468971000984311, + 0.008674372918903828, + 0.00489942217245698, + -3.409092823858373e-05, + -0.02256643958389759, + -0.00821059662848711, + 0.01081971824169159, + 0.01471348199993372, + -0.006248271092772484, + -0.013990036211907864, + -0.017175639048218727, + 0.01402165275067091, + 0.004688989836722612, + 0.010367624461650848, + -0.03816142678260803, + -0.006009340286254883, + 0.01565343141555786, + -0.007172159850597382, + -0.004773433785885572, + -0.022355424240231514, + -0.012604381889104843, + 0.02385859750211239, + 0.026697395369410515, + -0.019676312804222107, + 0.0011780433123931289, + 0.0007790938252583146, + 0.0058067962527275085, + 0.0019987148698419333, + -0.0030349851585924625, + -0.02077970653772354, + 0.011363477446138859, + -0.0075560216791927814, + -0.01679353415966034, + 0.017655178904533386, + 0.026586292311549187, + 0.0013849715469405055, + 0.0007425614749081433, + -0.028214283287525177, + -0.002893878845497966, + 0.0029482138343155384, + -0.0004787868238054216, + 0.013890460133552551, + 0.006949506234377623, + 0.012186778709292412, + -0.013424677774310112, + 0.02469009906053543, + 0.01728835143148899, + 0.026832908391952515, + -0.0035243374295532703, + -0.0007962858653627336, + -0.013478617183864117, + -0.004483368247747421, + -0.004876749590039253, + -0.0031869534868746996, + -0.019303802400827408, + -0.006134134717285633, + 0.014073731377720833, + 0.018677935004234314, + 0.006813179701566696, + 0.01821618340909481, + 0.00026739141321741045, + -0.01903688907623291, + -0.0059240288101136684, + 0.0057816277258098125, + 0.012986146844923496, + -0.009469660930335522, + 0.01041023712605238, + -0.02039879560470581, + 0.0015269769355654716, + -0.020832093432545662, + 0.00598733639344573, + -0.0063446504063904285, + -0.0047916327603161335, + 0.007309888955205679, + -0.010077925398945808, + -0.012137433513998985, + 0.005586431827396154, + 0.004428011365234852, + -0.0014339041663333774, + -0.01424483023583889, + 0.014554004184901714, + 0.008984056301414967, + 0.004104175139218569, + 0.011088072322309017, + 0.014652390033006668, + -0.004388011526316404, + -0.008395172655582428, + -0.0036113259848207235, + -0.0062811365351080894, + 0.014446211978793144, + -0.0035509171430021524, + 0.009900126606225967, + -0.007301975041627884, + -0.016068700700998306, + -0.011139199137687683, + -0.019969141110777855, + 0.011316799558699131, + -0.010943827219307423, + 0.008711664006114006, + 0.017194565385580063, + -0.0035634564701467752, + -0.0005981242866255343, + -0.017487721517682076, + 0.005852715112268925, + 0.008637222461402416, + -0.003314242698252201, + 0.032195717096328735, + 5.045299985795282e-05, + 0.016297318041324615, + -0.020387940108776093, + -0.012155836448073387, + 0.034796614199876785, + -0.006553082261234522, + 0.005360785406082869, + 0.0013044903753325343, + 0.013978668488562107, + -0.011574726551771164, + 0.007248821668326855, + -0.01730547845363617, + -0.0026690042577683926, + -0.0048538511618971825, + 0.012487043626606464, + -0.00037852011155337095, + -0.007771181873977184, + 0.017621414735913277, + -0.001587109873071313, + 0.008428603410720825, + -0.0067733945325016975, + 0.005816444288939238, + 0.01117027085274458, + -0.016441015526652336, + -0.011226272210478783, + -0.01517899427562952, + -0.014683695510029793, + -0.011211450211703777, + 0.010746807791292667, + 0.003603351302444935, + 0.015766773372888565, + 0.014689908362925053, + -0.013088112697005272, + -0.006187358405441046, + 0.015689507126808167, + 0.011266385205090046, + -0.022103507071733475, + 0.007267499342560768, + -0.0038862708024680614, + -0.026112206280231476, + -0.0016093325102701783, + 0.0006502284668385983, + -0.0062429653480648994, + 0.024901464581489563, + -0.0034254712518304586, + -0.0007833931595087051, + 0.0023672140669077635, + -0.018030142411589622, + -0.0001846721861511469, + 0.014950953423976898, + 0.0002857989748008549, + 0.003367419820278883, + 0.004183774348348379, + 0.004531482234597206, + 0.0016995947808027267, + 0.018107803538441658, + -0.006519907619804144, + 0.04187876358628273, + 0.018208930268883705, + -0.0047656698152422905, + 0.005202338099479675, + -0.01628699153661728, + -0.008751497603952885, + 0.00042548292549327016, + 0.022881116718053818, + 0.15057560801506042, + 0.023258574306964874, + 0.021631859242916107, + 0.013073092326521873, + 0.021404726430773735, + -0.0019425160717219114, + 0.0019425855716690421, + 0.004767481237649918, + 0.015971645712852478, + 0.0010987879941239953, + 0.0266798734664917, + -0.010364995338022709, + -0.007968021556735039, + -0.010139736346900463, + -0.01894368976354599, + 0.0208954606205225, + -0.002652133582159877, + 0.016346342861652374, + 0.03830280527472496, + 0.012472028844058514, + -0.00281442329287529, + 0.012274778448045254, + -0.0009762341505847871, + 0.009519233368337154, + 0.01958596706390381, + -0.003783455351367593, + -0.005942835006862879, + -0.0033704249653965235, + -0.00694472948089242, + -0.01488862931728363, + 0.0005849680746905506, + -0.027973901480436325, + 0.007581348996609449, + 0.0014241967583075166, + 0.008208168670535088, + -0.00684403907507658, + -0.00463984627276659, + 0.023164689540863037, + 0.0099266292527318, + 0.014569179154932499, + 0.013723256066441536, + 0.009206491522490978, + -0.006128411274403334, + -0.004862639121711254, + -0.0027160635218024254, + -0.002174939727410674, + -0.005650471430271864, + 0.005399183835834265, + 0.009450232610106468, + -0.018535856157541275, + -0.005626782774925232, + 0.010663406923413277, + -0.010579545982182026, + 0.014262113720178604, + 0.003145512891933322, + 0.02857176586985588, + -0.020731018856167793, + 0.011404283344745636, + 0.010587646625936031, + 0.02640140987932682, + 0.023136787116527557, + 0.02012268640100956, + 0.007197303231805563, + -6.559657049365342e-05, + -0.012420971877872944, + -0.012552455998957157, + 0.009816079400479794, + -0.019655369222164154, + 0.00044427081593312323, + 0.008636410348117352, + -0.0005896121729165316, + 0.006823676638305187, + 0.004218177404254675, + -0.013240410014986992, + 0.00020525198488030583, + 0.00418698089197278, + 0.0109757324680686, + 0.004356895573437214, + -0.0026239161379635334, + 0.004870154894888401, + 0.0016422020271420479, + -0.0001151773685705848, + -0.01769624464213848, + 0.000897650548722595, + 0.006690038833767176, + 0.00854662898927927, + 0.006071430165320635, + 0.017618970945477486, + 0.009209511801600456, + 0.002227574586868286, + -0.03555766120553017, + -0.005595575552433729, + 0.009403381496667862, + 0.015078162774443626, + -0.00035441931686364114, + 0.00016343955940101296, + 0.010229243896901608, + 0.016487397253513336, + 0.0023139568511396646, + -0.000502277456689626, + 0.0026692736428231, + 0.006394331343472004, + -0.016861237585544586, + 0.0031867818906903267, + 0.009712716564536095, + 0.002752749715000391, + -0.003649144433438778, + -0.00012692187738139182, + -0.013172195293009281, + 0.006750026717782021, + 0.01836366578936577, + 0.014163574203848839, + -0.006961230654269457, + -0.02527199499309063, + 0.018391326069831848, + 0.00914126168936491, + 0.007590739522129297, + -0.01805817149579525, + 0.003984983079135418, + 0.010828858241438866, + -0.010385358706116676, + -0.0034679113887250423, + 0.006651302333921194, + -0.01612977311015129, + 0.022232607007026672, + -0.003214561613276601, + 0.0186231080442667, + -0.004747345112264156, + 0.029249059036374092, + 0.0014391227159649134, + 0.006804656703025103, + -0.0018609882099553943, + 0.005196680780500174, + -0.0029131309129297733, + -0.0021706479601562023, + -0.0051843756809830666, + -0.003213601652532816, + 0.012050705961883068, + 0.003399112494662404, + -0.010511445812880993, + 7.91251877672039e-05, + -0.02376564033329487, + 0.012919160537421703, + 0.01979374699294567, + 0.016135023906826973, + -0.005272788926959038, + -0.003979883622378111, + 0.008915131911635399, + -0.00996865052729845, + 0.006893006619066, + -0.001828132662922144, + 0.00546704838052392, + -0.017736544832587242, + 0.007905636914074421, + 0.011889208108186722, + 0.016736246645450592, + -0.004716177005320787, + 0.0017768011894077063, + -0.012219950556755066, + 0.0022106366232037544, + 0.008282975293695927, + -0.0020182400476187468, + 0.007722688838839531, + -0.002679703524336219, + -0.00594793725758791, + -0.013345206156373024, + -0.014777887612581253, + -0.0027014820370823145, + 0.009384289383888245, + -0.003385092131793499, + -0.009631002321839333, + 0.010498233139514923, + -0.013084732927381992, + -0.001656004460528493, + -0.008254321292042732, + 0.0035571916960179806, + -0.00560138700529933, + -0.0033555582631379366, + -0.010530698113143444, + 0.004581497050821781, + 0.013337918557226658, + -0.018031707033514977, + 0.0016263657016679645, + 0.01324163656681776, + 0.0014793776208534837, + 0.024169279262423515, + 0.03133665397763252, + 0.008255728520452976, + -1.4837215530860703e-05, + -0.012596567161381245, + 0.016217738389968872, + -0.00260282214730978, + -0.020096175372600555, + 0.005825091619044542, + 0.007496623322367668, + 0.0017853524768725038, + 0.02234828472137451, + 0.003368406556546688, + -0.008356312289834023, + 0.0013382083270698786, + 0.010869604535400867, + -0.006804104428738356, + -0.0021268639247864485, + 0.0056184278801083565, + -0.0005529056070372462, + -0.013742503710091114, + -0.008140204474329948, + 0.005639712791889906, + 0.00356492237187922, + -0.009263691492378712, + -0.00030583233456127346, + -0.0020459196530282497, + -0.010858277790248394, + -0.007219718769192696, + 0.017049293965101242, + 0.0036158235743641853, + -0.02763116918504238, + -0.019282791763544083, + 0.002968923421576619, + -0.008334287442266941, + 0.005099112633615732, + -0.010891891084611416, + -0.014830389991402626, + -0.015989437699317932, + 0.0080849789083004, + -0.01224591676145792, + 0.004804845433682203, + -0.001016772584989667, + -0.001384556875564158, + 0.00728488527238369, + -0.007126605603843927, + -0.004425531718879938, + -0.011047209613025188, + 0.004912728443741798, + 0.0176810622215271, + 0.001478075166232884, + -0.0034357374534010887, + -0.013377699069678783, + 0.004778184462338686, + -0.010523635894060135, + -0.018100110813975334, + 0.0036322232335805893, + -0.009536712430417538, + -0.006547521334141493, + 0.01795322634279728, + -0.011921696364879608, + -0.005693591665476561, + -0.003734057303518057, + 0.00826780404895544, + 0.0021578622981905937, + 0.003701315727084875, + -0.006076726131141186, + 0.005077191162854433, + 0.018181350082159042, + 0.014312908053398132, + 4.548417200567201e-05, + 0.0077641853131353855, + -0.007399836089462042, + -0.0020243171602487564, + -0.02008630335330963, + -0.007379208691418171, + 0.0037776681128889322, + -0.011212792247533798, + 0.0030824127607047558, + 0.00118440727237612, + -0.0021871288772672415, + -0.022782912477850914, + -0.0008391650626435876, + 0.019625190645456314, + 0.010989679954946041, + -0.01232424657791853, + 0.0010953005403280258, + 0.00967457890510559, + -0.020785339176654816, + -0.012164701707661152, + -0.011289514601230621, + 0.005047725047916174, + -0.013488639146089554, + -0.006800566799938679, + -0.0006945214699953794, + -0.008358913473784924, + -0.00028176125488243997, + 0.005125223658978939, + 0.0027296848129481077, + 0.0017642566235736012, + 0.013247006572782993, + -0.0029955944046378136, + 0.006676869001239538, + -0.00022959691705182195, + 0.008017309941351414, + -0.013802343979477882, + -0.0037913350388407707, + -0.002448567422106862, + -0.0008692284463904798, + -0.012759411707520485, + -0.001530465786345303, + 0.011270641349256039, + -0.009230125695466995, + -0.0102501530200243, + -0.007146145217120647, + -0.02012746036052704, + 0.0032456053886562586, + 0.00582863250747323, + 0.016219740733504295, + -0.004188153892755508, + -0.007291494403034449, + -0.014977265149354935, + -0.001959351124241948, + 3.666475458885543e-05, + 0.013284780085086823, + -0.011947409249842167, + -0.013113230466842651, + -0.02501939982175827, + 0.0038541555404663086, + -0.00015566327783744782, + -0.00038495572516694665, + -0.011695684865117073, + -0.0008004136616364121, + 0.01593685708940029, + -0.026172375306487083, + 0.010123005136847496, + 0.013813123106956482, + 0.013087095692753792, + -0.0029339399188756943, + -0.0007969251018948853, + 0.004942276515066624, + -0.010947203263640404, + 0.015338505618274212, + 0.0026344824582338333, + -0.006945462431758642, + -0.015130058862268925, + 0.001192432944662869, + 0.003676582360640168, + 0.00654027983546257, + -0.006198154762387276, + 0.009433837607502937, + -0.0010320123983547091, + -0.0037645376287400723, + 0.016896745190024376, + -0.0013068969128653407, + 0.011416141875088215, + -0.007969728671014309, + -1.8817061572917737e-05, + 0.005742815323174, + 0.008072257973253727, + 0.010543285869061947, + 0.011943122372031212, + -0.023499850183725357, + 0.0059840623289346695, + 0.0007225750596262515, + -0.005826459266245365, + 0.003888899926096201, + -0.0050404686480760574, + 0.02442963235080242, + 0.01265367865562439, + -0.008003594353795052, + 0.00984506867825985, + 0.005197450518608093, + -0.009483927860856056, + -0.008278709836304188, + 0.004468126688152552, + 0.008397331461310387, + 0.011366026476025581, + -0.0011954577639698982, + -0.0005078806425444782, + 0.00733018945902586, + 0.0077905175276100636, + 0.008096007630228996, + 0.006972082890570164, + -0.00957522913813591, + 0.014968142844736576, + -0.0035834473092108965, + 0.0013000686885789037, + -0.00543108768761158, + -0.005461349152028561, + 0.008950239978730679, + 0.024703606963157654, + 0.006240383721888065, + -0.002953306073322892, + -0.0065086823888123035, + -0.005459017585963011, + -0.01589062623679638, + 0.02991919219493866, + -0.010494318790733814, + -0.0033071779180318117, + 0.00033800845267251134, + -0.004552042111754417, + 0.004887000657618046, + -0.008106711320579052, + 0.018741115927696228, + -0.0002683994534891099, + -0.0022728503681719303, + -0.0023218945134431124, + 0.010324756614863873, + 0.013498826883733273, + -0.0021816412918269634, + -0.002597138751298189, + 0.006688398774713278, + 0.009284589439630508, + -0.010832393541932106, + -0.00851902924478054, + -0.011266936548054218, + -0.024207312613725662, + -0.008356555365025997, + 0.00040125896339304745, + 0.00865600910037756, + -0.01289085391908884, + 0.020166387781500816, + -0.003066541627049446, + -0.005745445843786001, + 0.0005085798329673707, + -0.0030583457555621862, + -0.0040635899640619755, + -0.0024548701476305723, + -0.005652452819049358, + -0.02673722431063652, + 0.010246390476822853, + -0.006089348345994949, + 0.0019936219323426485, + 0.005820256192237139, + -0.0017212482634931803, + -0.011008990928530693, + -0.01940292678773403, + 0.016817525029182434, + -0.009120735339820385, + -0.00752804521471262, + -0.016454754397273064, + -0.006022963207215071, + -0.00928543135523796, + -0.0018069238867610693, + 0.023079441860318184, + -0.0035509979352355003, + 0.01764458417892456, + -0.005634655710309744, + 0.002783313160762191, + -0.012930182740092278, + -0.0049142478965222836, + -0.011770735494792461, + 0.009342853911221027, + -0.006920723710209131, + -0.006543741561472416, + 0.0002240442408947274, + -0.0032288702204823494, + 0.002905831206589937, + -0.01903168298304081, + -0.002060910686850548, + -0.003057212335988879, + 0.01479635201394558, + 0.01180940680205822, + 0.01734868623316288, + 0.01650703139603138, + 0.010921787470579147, + -0.004706170875579119, + 0.005386417265981436, + -0.002184807090088725, + -0.008956837467849255, + 0.004586293362081051, + 0.07394509762525558, + -0.005871499888598919, + 0.022579649463295937, + -0.008895420469343662, + 0.012191775254905224, + -0.00463982205837965, + -7.840057514840737e-05, + -0.01576823927462101, + -0.0012003177544102073, + -0.009607876650989056, + -0.007365478668361902, + 0.003309542080387473, + -0.026053881272673607, + 0.00426065968349576, + 0.003770346287637949, + -0.004864924121648073, + 0.00016434585268143564, + 0.0019538365304470062, + 0.01729550212621689, + 0.0018012591172009706, + 0.0026381921488791704, + -0.008705701678991318, + 0.02272740937769413, + -0.0012538176961243153, + 0.012645436450839043, + 0.016601240262389183, + 0.03492213040590286, + 0.007038559298962355, + -0.006780131254345179, + -0.016436614096164703, + -0.0013953220332041383, + 0.014117004349827766, + -0.0020968385506421328, + -0.00349291879683733, + 0.002778424648568034, + -0.005906897597014904, + 0.0534503236413002, + -0.004968389868736267, + 0.003709565382450819, + 0.003242346690967679, + -0.006580706685781479, + -0.010576420463621616, + 0.006147447042167187, + -0.006374971009790897, + -0.013749766163527966, + -0.007505783345550299, + -0.017209097743034363, + 0.011307488195598125, + -0.0013765995390713215, + 0.006941002327948809, + 0.0007147831493057311, + -0.012077227234840393, + -0.008332197554409504, + -0.009992127306759357, + 0.0003312196640763432, + 0.00671561760827899, + 0.011277694255113602, + 0.015522127039730549, + -0.018160803243517876, + -0.014742295257747173, + -0.014153474941849709, + 0.0043076518923044205, + -0.0007915854221209884, + -0.006751657463610172, + 0.012698802165687084, + 0.013504233211278915, + -0.007860695011913776, + -0.002055493649095297, + 0.01578761823475361, + 0.0004261515277903527, + -0.014763424172997475, + -0.001132340868934989, + -0.007969397120177746, + 0.005452579353004694, + -0.008447868749499321, + 0.004804418422281742, + -0.00914277695119381, + -0.017175432294607162, + 0.02311239019036293, + -0.010686855763196945, + -0.018964547663927078, + -0.005963741801679134, + 0.005073403473943472, + 0.01592482626438141, + -0.018014727160334587, + -0.005939851980656385, + -0.021633824333548546, + 0.0017716099973767996, + 0.02046108804643154, + -0.006958400830626488, + -0.018162991851568222, + 0.0018224884988740087, + -0.009619351476430893, + -0.01073624286800623, + 0.001318946946412325, + -0.0026032919995486736, + -0.018542204052209854, + -0.008542804047465324, + 0.01505766250193119, + -0.0049087610095739365, + -0.016572268679738045, + 0.004306821618229151, + 0.022474635392427444, + 0.020704710856080055, + -0.027672860771417618, + -0.01998309977352619, + -0.001661212183535099, + 0.009482457302510738, + -0.0008719686884433031, + -0.0036435953807085752, + 0.012417993508279324, + -0.004620441235601902, + -0.005918677896261215, + 0.010057411156594753, + 0.010217671282589436, + 0.00750172883272171, + -0.003749656258150935, + 0.00305637763813138, + 0.0019728492479771376, + 0.06458849459886551, + 0.0070014274679124355, + -0.015208649449050426, + 0.006468174513429403, + -0.02116025798022747, + 0.010985683649778366, + -0.0032165502198040485, + -0.004093235358595848, + -0.0011929391184821725, + 0.005517133977264166, + 0.004504226613789797, + 0.008584811352193356, + -0.011478268541395664, + -0.009555928409099579, + -0.004860511980950832, + -0.0028342066798359156, + 0.007927429862320423, + -0.008011222817003727, + 0.008875193074345589, + -0.005043290555477142, + -0.009475387632846832, + -0.0031340913847088814, + 0.008615648373961449, + -0.0009340962860733271, + -0.011864803731441498, + -0.004201081581413746, + 0.00673000467941165, + 0.001586153288371861, + 0.0374596044421196, + -0.016481315717101097, + 0.013735107146203518, + 0.001970946788787842, + 0.00631111953407526, + 0.022544873878359795, + 0.025276798754930496, + -0.004069079179316759, + -0.001114836661145091, + -0.01917029358446598, + 0.001100949477404356, + 0.01350120548158884, + -0.012613206170499325, + -0.0031187874265015125, + -0.019023429602384567, + 0.0008016714709810913, + 0.019769515842199326, + 0.010460000485181808, + 0.017082756385207176, + 0.0034252393525093794, + -0.0030884873121976852, + -0.029201718047261238, + 0.005331163760274649, + 0.01959526725113392, + 0.011415413580834866, + -0.006715365685522556, + -0.007035302463918924, + 0.016656843945384026, + -0.01948193646967411, + -0.00010795560956466943, + -9.531753312330693e-05, + -0.014863783493638039, + 0.005890164524316788, + -0.01136840134859085, + 0.014586017467081547, + -0.005327262450009584, + 0.013797893188893795, + 0.0019713386427611113, + 0.0045723989605903625, + -0.05484946072101593, + 0.015570253133773804, + 0.010227484628558159, + -0.00588900176808238, + -0.007911275140941143, + -0.013198114931583405, + 0.013129042461514473, + -0.010615698993206024, + 0.014266766607761383, + -0.010813873261213303, + 0.002591503784060478, + 0.013342869468033314, + -0.026512620970606804, + 0.009515441954135895, + 0.0015314915217459202, + 0.009616661816835403, + 0.004476720001548529, + 0.01913643442094326, + -0.006695869844406843, + -0.0008123153820633888, + 0.0009527977090328932, + -0.008037006482481956, + 0.004951082170009613, + 0.0107958959415555, + 0.02392849326133728, + 0.017665492370724678, + 0.007866966538131237, + -0.01854105480015278, + 0.008260637521743774, + 0.005914800334721804, + -0.004957042634487152, + 0.01805512234568596, + -0.02443309873342514, + 0.015622884035110474, + 0.022980619221925735, + -0.045680999755859375, + 0.013451550155878067, + 0.0001240540004801005, + 0.00521583529189229, + -0.0129843233153224, + 0.015364470891654491, + 0.0029779497999697924, + 0.006902913097292185, + 0.014841385185718536, + -0.016522247344255447, + 0.0009330905741080642, + -0.022006263956427574, + 0.006898440420627594, + 0.004913338925689459, + 0.010059730149805546, + 0.004529310390353203, + -0.011159569025039673, + -0.01476175244897604, + -0.010261583141982555, + 0.013157082721590996, + 0.018457433208823204, + -0.002251910511404276, + 0.011419860646128654, + 0.008940673433244228, + 0.00983266532421112, + 0.0005708407261408865, + 0.0077798324637115, + -0.005741463042795658, + 0.005486118607223034, + 0.011748368851840496, + 0.005211363080888987, + -0.026978060603141785, + 0.004873325116932392, + -0.009946726262569427, + 0.006565246731042862, + -0.004197926260530949, + -0.007499889936298132, + -0.0017662346363067627, + -0.0013057152973487973, + -0.014197631739079952, + 0.0038596303202211857, + -0.006885551381856203, + 0.013729116879403591, + 0.002418969525024295, + 7.950919825816527e-05, + 0.006716922856867313, + 0.01993303745985031, + -0.0007038123439997435, + 0.012517780065536499, + 0.005190120078623295, + 0.01573755033314228, + 0.01940859481692314, + 0.021428043022751808, + -0.0029593724757432938, + 0.009901488199830055, + -0.013727670535445213, + 0.016593826934695244, + -0.00449998676776886, + 0.024150632321834564, + 0.0012375066289678216, + -0.002844256581738591, + 0.012830634601414204, + 0.009109748527407646, + 0.003006670391187072, + 0.0024518207646906376, + 0.002379199955612421, + -0.02125038392841816, + -0.005555859766900539, + 0.017663512378931046, + -0.0015890577342361212, + 0.008940444327890873, + -0.001653603045269847, + -0.014098674058914185, + -0.013460918329656124, + 0.01142724696546793, + 0.004235393367707729, + 0.01595628634095192, + -0.005478690844029188, + 0.04585525766015053, + -0.005284764803946018, + -0.000487362063722685, + -0.010621805675327778, + -0.0036329866852611303, + 0.0045465934090316296, + -0.007030011620372534, + -0.004011895973235369, + -0.01068341638892889, + 0.007949440740048885, + 0.0056322175078094006, + -0.01781974360346794, + 0.004785202909260988, + -0.010563778690993786, + 0.008562246337532997, + -0.008634602651000023, + 0.020396091043949127, + 0.0027852123603224754, + -0.00831097923219204, + 0.004861337598413229, + 0.0007162897964008152, + 0.010140346363186836, + -0.012160532176494598, + -0.0007550609880127013, + 0.024173466488718987, + 0.021031104028224945, + -0.003745625028386712, + 0.007375987246632576, + -0.00565588753670454, + -0.015380692668259144, + -0.008548048324882984, + -0.014774592593312263, + -0.0017799490597099066, + 0.002424070844426751, + -0.011067136190831661, + 0.0006940317689441144, + -0.0029984149150550365, + 0.008623571135103703, + -0.017517630010843277, + -0.014361691661179066, + 0.010655554011464119, + -0.0017405323451384902, + -0.012194979935884476, + -0.004228003788739443, + 0.0022493612486869097, + 0.014053869061172009, + -0.02245660312473774, + 0.000558235333301127, + -0.008288386277854443, + 0.0017543103313073516, + 0.009636892937123775, + 0.02379630319774151, + 0.01964801363646984, + -0.007458156906068325, + 0.028858358040452003, + -0.006984885316342115, + 0.006285471376031637, + 0.0041815005242824554, + 0.015359793789684772, + -0.0017893173499032855, + -0.0035601938143372536, + 0.012811420485377312, + 0.007013223133981228, + -0.012013139203190804, + 0.00010267698962707072, + -0.0009407488978467882, + -0.008857207372784615, + 0.0018956402782350779, + -0.012685079127550125, + -0.004272294696420431, + -0.0013637987431138754, + -0.01059629675000906, + -0.014584633521735668, + 0.014756838791072369, + 0.011835571378469467, + -0.005945863202214241, + -0.008492116816341877, + 0.013548798859119415, + -0.008467670530080795, + -0.0024713831953704357, + -0.015895191580057144, + 0.0012315594358369708, + -0.015737416222691536, + 0.0075270552188158035, + 0.005622512195259333, + 0.003611733205616474, + 0.00012671001604758203, + -0.00933591928333044, + -0.0019639034289866686, + 0.003981310408562422, + -0.00942367035895586, + -0.010850463062524796, + 0.027680255472660065, + -0.0012270635925233364, + 0.00493739964440465, + -0.0005579446442425251, + 0.02751748636364937, + 0.01221934799104929, + -0.009017727337777615, + -0.007147328928112984, + 0.0010200556134805083, + 0.01166897639632225, + 0.00518137589097023, + -0.004606057424098253, + 0.00010540395305724815, + -0.012049514800310135, + 0.0028106465470045805, + 0.024108532816171646, + -0.02312447503209114, + -0.008080036379396915, + -0.0023167904000729322, + 0.01991843990981579, + -0.01422539260238409, + 0.0007908546249382198, + 0.008054838515818119, + -0.005025334190577269, + 0.016764916479587555, + -0.0011740813497453928, + 0.006478889379650354, + -0.01580071449279785, + -0.0041854544542729855, + -0.011327322572469711, + 0.012290303595364094, + 0.03425496444106102, + -0.009399889968335629, + -0.007076515816152096, + -0.003611368825659156, + 0.011825792491436005, + 0.015610234811902046, + -0.0046037049032747746, + 0.005467640236020088, + -0.004463353659957647, + 0.017950691282749176, + -0.0112096406519413, + -0.020547816529870033, + -0.009897792711853981, + 0.004953230731189251, + 0.00162052595987916, + 0.002725704573094845, + -0.01858203299343586, + 0.015812167897820473, + 0.00511325616389513, + -0.00014716823352500796, + -0.01072645839303732, + 0.0022290749475359917, + -0.013861248269677162, + 0.0017179669812321663, + -0.012223306111991405, + -0.020923517644405365, + -0.006402378436177969, + 0.014059898443520069, + 0.003318419214338064, + -0.000960939098149538, + 0.00988243892788887, + 0.0007570654270239174, + 0.003730053547769785, + -0.008144267834722996, + -0.015618725679814816, + 0.0020795376040041447, + -0.0015006313333287835, + -0.0010737061966210604, + 0.01891283690929413, + -0.028005292639136314, + -0.004765270743519068, + 0.005610301624983549, + 0.014733162708580494, + 0.010063901543617249, + -0.0039217728190124035, + 0.015494666993618011, + -0.011257571168243885, + 0.005330645013600588, + 0.010661677457392216, + -0.015372835099697113, + 0.07755754888057709, + -0.014289403334259987, + 0.0008563234587199986, + -0.01046458538621664, + 0.015248328447341919, + -0.013607045635581017, + -0.0029599322006106377, + -0.022429155185818672, + -0.0004286817566026002, + -0.002232863800600171, + -0.019393153488636017, + 0.007689011748880148, + -0.010526916943490505, + -0.0006227706326171756, + -0.012525049969553947, + -0.00649327551946044, + 0.006376326084136963, + -0.0022704745642840862, + 0.013968140818178654, + -0.016387484967708588, + 0.001425694557838142, + -0.012470229528844357, + -0.004772752523422241, + 0.0027882950380444527, + -0.006213373504579067, + 0.008194608613848686, + -0.010001546703279018, + 0.0032215723767876625, + -0.015738531947135925, + -0.013206938281655312, + 0.0038914273027330637, + -0.001717032864689827, + -0.004929039627313614, + -0.0076575567945837975, + 0.016200397163629532, + 0.010773571208119392, + 0.005134906619787216, + -0.009660501033067703, + -0.009178729727864265, + 0.0012012157822027802, + 0.0010862579802051187, + 0.001466941786929965, + -0.0035343237686902285, + -0.004359900951385498, + 0.014316068030893803, + 0.0017470683669671416, + 0.0044496189802885056, + -0.004983067978173494, + -0.01155811920762062, + -0.010705318301916122, + -0.0031813380774110556, + 0.006247307639569044, + -0.026605259627103806, + -0.0070323883555829525, + -0.002450051950290799, + 0.000588807335589081, + 0.015544869005680084, + 0.016974808648228645, + 0.0011463324772194028, + -0.010764005593955517, + -0.00031433309777639806, + 0.0017286596121266484, + -0.0022784178145229816, + -0.010997569188475609, + -0.006177463568747044, + 0.02741258777678013, + 0.018047772347927094, + -0.009585804305970669, + -0.006719958037137985, + 0.030572006478905678, + 0.012381291948258877, + -0.007219463586807251, + -0.003601653501391411, + -0.0173390731215477, + 0.008006596937775612, + -0.014686175622045994, + 0.006646167021244764, + 0.006565774325281382, + 0.012097964063286781, + 0.011566825211048126, + 0.002963084727525711, + 0.016780784353613853, + 0.00024829973699525, + -8.088944741757587e-05, + -0.001192830502986908, + -0.013732367195189, + 0.00020428582502063364, + 0.0016735749086365104, + -0.00196093344129622, + 0.020821986719965935, + 0.02155989594757557, + -0.01701812632381916, + -0.003625089768320322, + -0.018517546355724335, + -0.003862819168716669, + 0.00721296202391386, + -0.0054674469865858555, + 0.03695063292980194, + -0.003674853593111038, + -0.01422076765447855, + -0.012514309957623482, + 0.005192839540541172, + -0.008414046838879585, + -0.0035497169010341167, + 0.0006819142145104706, + 7.173833000706509e-05, + -0.0003808779874816537, + -0.0038218405097723007, + -0.014474121853709221, + 0.008736877702176571, + -0.002315997378900647, + 0.01973019726574421, + 0.006776911206543446, + 0.004373552743345499, + 0.006763753015547991, + -0.022393807768821716, + 0.0022087700199335814, + -0.01934029534459114, + 0.0015762252733111382, + 0.008426900953054428, + 0.008254564367234707, + -0.001217433251440525, + 0.017731985077261925, + 0.004629126749932766, + 0.0025595335755497217, + 0.009603176265954971, + 0.0005322418874129653, + 0.01660991460084915, + 0.01293325237929821, + -0.0012788403546437621, + -0.011178180575370789, + -0.0019961099606007338, + -0.008977565914392471, + 0.0036493788938969374, + -0.010379180312156677, + -0.012605855241417885, + 0.023586785420775414, + -0.01101090107113123, + 0.019581979140639305, + 0.011332567781209946, + -0.007407349068671465, + 0.019598184153437614, + 0.014218071475625038, + -0.004117046482861042, + 0.01517663337290287, + -0.023785661906003952, + 0.0008289382676593959, + 0.0323348306119442, + -0.007684409152716398, + 0.004446175880730152, + -0.00019390172383282334, + -0.0037785505410283804, + 0.005955370143055916, + -0.009800839237868786, + 0.007457038853317499, + -0.0014899830566719174, + 0.003634061897173524, + 0.009391468949615955, + -3.061329698539339e-05, + 0.002573212143033743, + 0.0032679778523743153, + 0.005599297117441893, + -0.0008840729715302587, + -0.008902579545974731, + 0.003137868596240878, + -0.007484464440494776, + -0.001982912188395858, + 0.0017814093735069036, + -0.011300024576485157, + -0.045258864760398865, + -0.04658982902765274, + 0.01726107858121395, + -0.02484707161784172, + -0.014913426712155342, + -0.011541014537215233, + 0.0022491193376481533, + -0.018786609172821045, + 0.017201486974954605, + 0.006646345369517803, + -0.0029339573811739683, + 0.025650473311543465, + -0.005861703772097826, + -0.0059979758225381374, + -0.006285117007791996, + -0.002792386570945382, + 0.014947304502129555, + 0.007351872511208057, + 0.00453578494489193, + -6.415129610104486e-05, + -0.004507860634475946, + 0.004437071271240711, + -0.010990654118359089, + 0.00042385613778606057, + -0.007976585067808628, + 0.02432280033826828, + -0.009113704785704613, + 0.0003186828107573092, + -0.005799778737127781, + -0.05668359622359276, + -0.008745178580284119, + 0.0044838180765509605, + -0.0035263693425804377, + -0.002750337589532137, + -0.012828953564167023, + -0.005410343874245882, + 0.005488075315952301, + 0.0067830756306648254, + 0.0018017051042988896, + 0.009411755949258804, + -0.008865871466696262, + 0.0030693106818944216, + -0.011624990962445736, + -0.044239338487386703, + -0.02095712348818779, + 0.016414999961853027, + -0.011794059537351131, + 0.004461158066987991, + -0.0022576008923351765, + -0.007289539091289043, + -0.014110423624515533, + 0.008575096726417542, + -0.00196350016631186, + 0.01079640630632639, + -0.014452566392719746, + 0.004170303698629141, + -0.0026072533801198006, + 0.01893961802124977, + 0.01189028937369585, + -0.0030355886556208134, + -0.013995603658258915, + 0.0018949706573039293, + 0.015551744028925896, + 0.013947180472314358, + 0.0063530923798680305, + -0.008785976096987724, + -0.002280802931636572, + 0.00647434638813138, + 0.005034740082919598, + 0.009725200943648815, + -0.011426233686506748, + -0.004047488793730736, + 0.00204377225600183, + -0.0044150082394480705, + 0.005539001896977425, + 0.004793477710336447, + 0.010007946752011776, + 0.0037401390727609396, + -0.00775214983150363, + -0.002385539934039116, + 0.0022699430119246244, + 0.00026147201424464583, + -0.020034343004226685, + 0.0035973740741610527, + -0.0002565500035416335, + 0.022133341059088707, + 0.011125351302325726, + -0.015781987458467484, + 0.006763792596757412, + -0.024421915411949158, + 0.007365064695477486, + -0.012677443213760853, + -0.004297287669032812, + -0.008459658361971378, + 0.009705910459160805, + -0.00247211498208344, + -0.0015173093415796757, + 0.006979566533118486, + -0.005693250801414251, + -0.00683817220851779, + 0.0176186915487051, + -0.006059617269784212, + -0.02655019983649254, + 0.003053040476515889, + 0.0003070860984735191, + -0.00807421188801527, + 0.0129756610840559, + 0.01411511842161417, + -0.011166592128574848, + 0.013788427226245403, + -0.006858401466161013, + -0.025599710643291473, + -0.014062977395951748, + -0.011947852559387684, + -0.004919418133795261, + -0.006530085112899542, + 0.014301495626568794, + -0.013502840884029865, + -0.020785663276910782, + 0.02347525581717491, + 0.002319522900506854, + 0.008901295252144337, + -0.006178530864417553, + -0.02266719378530979, + -0.003996615763753653, + 0.005869578570127487, + -0.0005999621353112161, + -0.00535560492426157, + -0.013275260105729103, + -0.0025213416665792465, + -0.009355651214718819, + 0.0037597641348838806, + -0.03679116442799568, + 0.0005473176133818924, + -0.004789872094988823, + -0.0022981034126132727, + -0.026393456384539604, + 0.013067970052361488, + 0.011218681000173092, + 0.014784975908696651, + -0.011859552934765816, + 0.0018551216926425695, + 4.8791869630804285e-05, + 0.00015877258556429297, + 0.016555536538362503, + -0.005950097925961018, + 0.0007183235138654709, + -0.006043140776455402, + 0.014977722428739071, + 0.011727598495781422, + -0.02881757542490959, + 0.020689237862825394, + 0.008050474338233471, + -0.01472540944814682, + 0.0060387603007256985, + 0.01130292285233736, + -0.022994354367256165, + 0.007690033875405788, + 0.003643123200163245, + -0.003402021015062928, + 0.007005689665675163, + -0.007011975161731243, + 0.005930359475314617, + 0.013789022341370583, + 0.0007029589032754302, + 0.006848383694887161, + -0.01676587387919426, + -0.008662207052111626, + 0.00016285442688968033, + -0.01137209590524435, + -0.010144493542611599, + -0.005929251667112112, + -0.006033613812178373, + 0.015381859615445137, + -0.014721955172717571, + -0.011126110330224037, + 0.000537813117261976, + -0.003237492637708783, + -0.004662969149649143, + -0.003321623895317316, + -0.010963457636535168, + -0.001001477474346757, + 0.0024824924767017365, + -0.0047948830761015415, + -0.00683951610699296, + -0.0038731556851416826, + 0.020758813247084618, + 0.00489638838917017, + -0.0004135056515224278, + 0.01443997398018837, + -0.0040427809581160545, + -0.014723475091159344, + 0.023891407996416092, + -0.017198286950588226, + -0.008646785281598568, + -0.003467731410637498, + -0.024195391684770584, + 0.0001534249895485118, + 0.007190211210399866, + 0.013213812373578548, + 0.00010134939657291397, + -0.018294544890522957, + -0.0015007737092673779, + -0.007068085018545389, + 0.008627071976661682, + -0.010102065280079842, + 0.019159451127052307, + -0.014958644285798073, + 0.005516404751688242, + -0.007139195688068867, + -0.00288062053732574, + 0.011319468729197979, + -0.011460656300187111, + -0.014543227851390839, + -0.01380081009119749, + -0.0027446618769317865, + -0.001763113192282617, + 0.0057762740179896355, + -0.0017295152647420764, + -0.012944539077579975, + 0.0016185682034119964, + -0.014794312417507172, + 0.004440003540366888, + -0.01284171361476183, + 0.0056434450671076775, + 0.007906327024102211, + -0.011544269509613514, + -0.013387787155807018, + -0.009195790626108646, + 0.007186054717749357, + 0.01150982454419136, + -0.008020968176424503, + -0.006463119760155678, + -0.008224373683333397, + -0.005771472118794918, + 0.010846201330423355, + -0.007415686268359423, + -0.001297463895753026, + 0.007542693987488747, + -0.00925932452082634, + 0.003370143473148346, + -0.0015780938556417823, + 0.011711462400853634, + 0.0032145336735993624, + 0.005452124401926994, + -0.007238773629069328, + 0.02255064994096756, + 0.0004138116491958499, + -0.0050797429867088795, + 0.0017825287068262696, + 0.0048391795717179775, + -0.007645969744771719, + 0.02265649102628231, + -0.015898101031780243, + 0.012996631674468517, + 0.0009668339043855667, + 0.003380627604201436, + 0.008234300650656223, + 0.007284120190888643, + 0.01083227340131998, + 0.0011493228375911713, + 0.006847669370472431, + 0.030436376109719276, + 0.0001269826607313007, + -0.006357264239341021, + -0.010778767988085747, + -0.009017186239361763, + -0.011986293829977512, + -0.010345536284148693, + -0.00963931530714035, + 0.0030184260103851557, + -0.003341876668855548, + -0.007015002891421318, + 0.020104771479964256, + -0.012406619265675545, + 0.010436546988785267, + 0.002868576208129525, + -0.006228890269994736, + -0.007424715906381607, + -0.008238849230110645, + 0.004052616655826569, + 0.005625346675515175, + 0.011545940302312374, + 0.011394471861422062, + 0.0046495720744132996, + -0.011249561794102192, + -0.0069332243874669075, + -0.009417704306542873, + 0.022340446710586548, + -0.008135061711072922, + 0.009227175265550613, + -0.0025321682915091515, + -0.013824026100337505, + -0.009435621090233326, + -0.02212066762149334, + 0.008263545110821724, + 0.014631029218435287, + -0.020231829956173897, + 0.0007591285393573344, + -0.0020888412836939096, + 0.0015595427248626947, + 0.03575224429368973, + 0.0037883443292230368, + -0.0009042061865329742, + -0.026831800118088722, + 0.013934750109910965, + 0.007527619134634733, + 0.007474266458302736, + -0.01569654978811741, + -0.000995143549516797, + 0.00017358889454044402, + -0.029526032507419586, + 0.005637327209115028, + 0.0009659930947236717, + 0.01919858157634735, + -0.00770304212346673, + -0.01785362884402275, + 0.005522288382053375, + -0.006124122533947229, + 0.009306046180427074, + 0.002905387431383133, + -0.0008908474701456726, + -0.005186390597373247, + -0.013454796746373177, + 0.01866610161960125, + -0.010639759711921215, + 0.03592333942651749, + -0.02589695155620575, + -0.004101586528122425, + -0.007875824347138405, + 0.019083062186837196, + -0.008604665286839008, + -0.012113792821764946, + -0.0011851576855406165, + -0.0140003003180027, + -0.013558094389736652, + -0.00603853352367878, + 0.0009649848798289895, + 0.007015526760369539, + 0.005505457986146212, + 0.009000479243695736, + 0.001116534462198615, + 2.8402553652995266e-05, + 0.01237079780548811, + -0.001317715155892074, + 0.004395239520817995, + -0.01595134288072586, + 0.005426898133009672, + -0.007251158822327852, + 0.006877589505165815, + 0.000727894832380116, + -0.022806987166404724, + -0.006635632365942001, + -0.013545325957238674, + -0.014006025157868862, + 0.012757637538015842, + -0.012478817254304886, + -0.023684486746788025, + 4.3411280785221606e-05, + 0.002365526044741273, + 0.014906429685652256, + 0.00786421075463295, + -0.012655984610319138, + 0.0032008911948651075, + -0.0003910403756890446, + 0.010400819592177868, + -0.01072636991739273, + 0.019369453191757202, + -0.013218271546065807, + -0.028057226911187172, + 0.01524993684142828, + 0.017555395141243935, + 0.0021923277527093887, + 0.024513645097613335, + 0.004300128668546677, + 0.008233699947595596, + 0.004716151859611273, + 0.01948651485145092, + 0.005952304229140282, + -0.018334191292524338, + 0.00692781014367938, + 0.0011013316689059138, + -0.004619929939508438, + -0.013216537423431873, + -0.003922384697943926, + 0.021059077233076096, + -0.0006068545626476407, + -0.02495208941400051, + -0.009286786429584026, + -0.007241224404424429, + -0.02921511046588421, + 0.01001062337309122, + 0.002679132856428623, + -0.018376609310507774, + -0.005987202748656273, + 0.019925100728869438, + 0.014281732961535454, + -0.008479434065520763, + -0.02594585157930851, + 0.0030629627872258425, + 0.009956656955182552, + 0.014354423619806767, + -0.005878089927136898, + 0.023283880203962326, + -0.028628766536712646, + -0.004291402641683817, + 0.0069927796721458435, + -0.002401502802968025, + 0.00562583701685071, + -0.0041180863045156, + -0.01153076533228159, + 0.006896019447594881, + -0.016638258472085, + -0.010415797121822834, + -0.00301082874648273, + -0.0021012311335653067, + 0.0003784186264965683, + 0.00407094182446599, + 0.0033422657288610935, + 0.01699873059988022, + 0.00018182634084951133, + -0.0015756733482703567, + -0.011429906822741032, + -0.022070569917559624, + -0.0026904609985649586, + -0.005196226295083761, + -0.01580476202070713, + 0.00615620706230402, + -0.011885948479175568, + 0.0007799171726219356, + -0.013319607824087143, + -0.004403826780617237, + -0.018255040049552917, + 0.006534095387905836, + 0.007269454654306173, + -0.007569336332380772, + 0.017149711027741432, + -0.011415457352995872, + -0.005535956937819719, + 0.004209079779684544, + -0.0026463710237294436, + 3.43866013281513e-05, + -0.0009931999957188964, + -0.008805076591670513, + -0.0016398716252297163, + -0.006342468783259392, + -0.014752402901649475, + -0.011795266531407833, + 0.006273570470511913, + -0.013273650780320168, + 0.009273132309317589, + 0.011843178421258926, + -0.052349790930747986, + 0.0019428265513852239, + -0.005262819118797779, + 0.01311553455889225, + -0.0007205404690466821, + -0.003541036741808057, + -0.007748557720333338, + -0.01695644110441208, + 0.01459449715912342, + -0.004170156084001064, + 0.0030297855846583843, + 0.022981762886047363, + -0.004879320506006479, + 0.036707669496536255, + -0.019461626186966896, + 0.01741263084113598, + -0.0020997377578169107, + -0.004222409799695015, + -0.003267609514296055, + 0.02439812570810318, + 0.018824700266122818, + -0.011450470425188541, + 0.0030326039995998144, + 0.0191656406968832, + -0.005720267537981272, + -0.02046896331012249, + 0.009881214238703251, + 0.013164921663701534, + -0.0009112042607739568, + -0.01639745570719242, + -0.012604502961039543, + -0.0246280450373888, + -0.0011896583018824458, + 0.009606900624930859, + 0.016885632649064064, + 0.00037459118175320327, + 0.017413919791579247, + -0.013810606673359871, + -0.004519268870353699, + -0.009541424922645092, + -0.015015090815722942, + -0.001774992560967803, + -0.01896933652460575, + -0.008454151451587677, + 0.0071349190548062325, + 0.017042038962244987, + -0.003499674843624234, + 0.008593844249844551, + -0.010529578663408756, + 0.018243664875626564, + -0.014834037981927395, + 0.013954893685877323, + -0.018616698682308197, + 0.00015660672215744853, + -0.002075937343761325, + 0.10711595416069031, + 0.010452684946358204, + 0.004837019834667444, + -0.0006921731401234865, + 0.00238446774892509, + -0.023242173716425896, + -0.010908112861216068, + -0.00563522195443511, + 0.010469967499375343, + 0.002484476426616311, + 0.013125871308147907, + -0.004706868901848793, + 0.014271005056798458, + -0.016364164650440216, + -0.008302181959152222, + 0.0017664354527369142, + 0.01039984542876482, + -0.0007250800263136625, + 0.002277741441503167, + -0.0028961568605154753, + -0.01719982922077179, + 0.017827432602643967, + -0.007228117901831865, + -0.006320137996226549, + -0.0038549925666302443, + 0.012767822481691837, + -0.01562594436109066, + -0.0144185246899724, + -0.01592392474412918, + 0.013507934287190437, + -0.005510236136615276, + -0.0066475635394454, + -0.039205096662044525, + 0.007165038958191872, + 0.014362087473273277, + -0.024182425811886787, + -0.006265542004257441, + 0.016545159742236137, + -0.0245954766869545, + 0.018671808764338493, + -0.010462037287652493, + -0.0007065884419716895, + -0.004189968109130859, + -0.013296193443238735, + 0.015276833437383175, + -0.006767663173377514, + 0.006364316213876009, + -0.01037622895091772, + -0.024322817102074623, + -0.000763728516176343, + 0.013723581098020077, + 0.002244401490315795, + -0.0010071686701849103, + -0.006352860480546951, + 0.015511072240769863, + -0.0027260149363428354, + -0.011831043288111687, + 0.0005164309404790401, + -0.01704590767621994, + -0.00861720833927393, + -0.018295234069228172, + 0.012193288654088974, + 0.009237133897840977, + -0.011300532147288322, + -0.001882812357507646, + -0.010202291421592236, + 0.01357665378600359, + 0.01001607533544302, + 0.006829811260104179, + -0.006388530600816011, + -0.0007119473302736878, + -0.000359852216206491, + 0.0019982727244496346, + 0.0005041252006776631, + 0.006716661620885134, + -0.011837820522487164, + -0.0059998189099133015, + -0.004279285669326782, + -0.0079650292173028, + -0.023391591385006905, + -0.0008305108058266342, + 0.017876870930194855, + -0.02336428500711918, + 0.00392435397952795, + 0.011246144771575928, + 0.0009190494893118739, + 0.0007304862956516445, + 0.012164581567049026, + 0.009181305766105652, + -0.006326627917587757, + 0.009667295031249523, + -0.005818741396069527, + -0.01652427949011326, + 0.002991233253851533, + -0.0054750037379562855, + -0.03414421156048775, + -0.022497983649373055, + 0.014823122881352901, + 0.013051044195890427, + -0.006895999889820814, + 0.0006217945483513176, + -0.0160292349755764, + 0.0038207119796425104, + -0.013834143988788128, + -0.006783730816096067, + 0.036331333220005035, + -0.003954940941184759, + -0.003494438948109746, + 0.012764821760356426, + 0.020763179287314415, + -0.012509274296462536, + -0.002157812472432852, + 0.002488671336323023, + -0.003515422809869051, + -0.017299536615610123, + -0.0015727558638900518, + -0.01436634361743927, + 0.013415226712822914, + -0.0011731470003724098, + 0.0028298161923885345, + -0.0012501826277002692, + 0.005484618246555328, + 0.01042428333312273, + 0.0047996328212320805, + -0.00764290988445282, + -0.018732860684394836, + -0.008545338176190853, + 0.0005084724980406463, + -0.004991283640265465, + 0.011179468594491482, + -0.004016177263110876, + -0.01340418215841055, + 0.007612927816808224, + 0.004348268266767263, + 0.007401091046631336, + 0.006360107101500034, + -0.009499317035079002, + -0.013793866150081158, + 0.010396638885140419, + -0.009059895761311054, + 0.002150667132809758, + -0.008269960060715675, + -0.0044986288994550705, + 0.012624074704945087, + 0.012177337892353535, + 0.0052924747578799725, + -0.03645811975002289, + 0.0023297688458114862, + 0.0019349439535290003, + 0.003653518855571747, + 0.010211403481662273, + 0.001961061265319586, + -0.012878987938165665, + 0.006661415100097656, + 0.017419595271348953, + 0.0067903464660048485, + 0.009622439742088318, + -0.0038930033333599567, + 0.000461613672086969, + -0.004074284341186285, + 0.01569139026105404, + -0.0007130114827305079, + 0.0065719326958060265, + -0.011701504699885845, + -0.006416340824216604, + -0.006839356385171413, + 0.003777529112994671, + 0.001644219970330596, + -0.0027624014765024185, + -0.03355097398161888, + 0.0038736516144126654, + -0.01558105368167162, + -0.013995484448969364, + 0.005872723180800676, + -0.0007598763331770897, + -0.010404366999864578, + -0.021536655724048615, + -0.006448458414524794, + -0.008792409673333168, + -0.023859182372689247, + 0.0018819529796019197, + -0.01330032479017973, + 0.005690644029527903, + 0.012407251633703709, + 0.0009588438551872969, + 0.014735148288309574, + -0.0013850291725248098, + 0.016938036307692528, + -0.003408630844205618, + -0.0023728739470243454, + -0.013029650785028934, + 0.021183766424655914, + 0.006013425067067146, + -0.00383421266451478, + -0.011377522721886635, + 0.013030799105763435, + -0.003805514657869935, + 0.018667280673980713, + -0.0028002294711768627, + 2.7733722163247876e-05, + 0.0060918028466403484, + 0.0057740178890526295, + 0.012579021044075489, + -0.0007100878283381462, + -0.013927570544183254, + 0.018258076161146164, + 0.02231336385011673, + 0.0027563089970499277, + 0.01572384126484394, + 0.006625080015510321, + -0.019398756325244904, + -0.0027290936559438705, + -0.019853124395012856, + 0.0055661252699792385, + -0.011937295086681843, + 0.01178798545151949, + -0.003270818153396249, + -0.0037077448796480894, + 0.018346035853028297, + 0.02801937237381935, + -0.0062164487317204475, + -0.015068733133375645, + -0.009329335764050484, + 0.012329601682722569, + -0.0028100586496293545, + -0.0054962835274636745, + -0.0003495034761726856, + -0.00021304925030563027, + -0.00599686661735177, + 0.010849486105144024, + 0.011017682030797005, + -0.008628685027360916, + -0.0012614080915227532, + 0.004339438397437334, + -0.004363119602203369, + 0.012391881085932255, + 0.012630791403353214, + 0.0007510067080147564, + 0.005475375335663557, + -0.005066623445600271, + -0.004448512103408575, + -0.01848464272916317, + -0.0009999015601351857, + 0.002303415909409523, + -0.010116353631019592, + 0.018477005884051323, + -0.015045752748847008, + -0.002856852486729622, + -0.003194499295204878, + 0.0006851566722616553, + -0.0034301832783967257, + -0.00011623480531852692, + -0.007275266572833061, + -0.016400473192334175, + 0.0034583660308271646, + -0.002359238686040044, + 0.019556613638997078, + 0.026097940281033516, + -0.023776693269610405, + -0.010174564085900784, + -0.007374192122370005, + 0.006033621728420258, + 0.003858317621052265, + -0.0030689439736306667, + -0.0031641186214983463, + 0.004474895540624857, + -0.007442105561494827, + -0.0026987469755113125, + -0.016410192474722862, + -0.004235518630594015, + -0.003491045907139778, + -0.004734536167234182, + -0.0032402235083281994, + -0.013196157291531563, + -0.005732775200158358, + 0.0030848034657537937, + 0.006900475826114416, + -0.0005597076378762722, + -0.004409165121614933, + -0.002159399911761284, + -0.0008269945392385125, + -0.0003591019194573164, + -0.002140933880582452, + 0.0018892569933086634, + -0.016448378562927246, + -0.000843117362819612, + 0.011307675391435623, + -0.001604985212907195, + -0.004898280370980501, + -0.005766324233263731, + 0.002203046577051282, + -0.026297148317098618, + -0.005533680785447359, + -0.0009241766529157758, + -0.009738752618432045, + 0.004395388998091221, + -0.002129075350239873, + 0.0007732852245680988, + 0.01595313660800457, + 0.011893613263964653, + 0.006937223020941019, + 0.011438758112490177, + 0.026382112875580788, + -0.01249088067561388, + -0.020864956080913544, + -0.0057817730121314526, + 0.008154124021530151, + -0.019540242850780487, + -0.0015996121801435947, + 0.006384493317455053, + 0.015565413050353527, + 0.0021460747811943293, + 0.00035513570765033364, + -0.016266625374555588, + -0.011852552182972431, + 0.009500927291810513, + -0.001221708720549941, + 0.02347191609442234, + -0.003564678132534027, + 0.015018048696219921, + 0.028810875490307808, + 0.013546199537813663, + -0.008374396711587906, + -0.011546056717634201, + -0.00824049860239029, + -0.012070152908563614, + 0.006611899472773075, + -0.013768583536148071, + -0.0037385285831987858, + -0.0007271413924172521, + -0.004607030656188726, + 0.007765238173305988, + -0.001937950262799859, + -0.03062405250966549, + -0.0009889244101941586, + 0.007302848622202873, + -0.008213335648179054, + 0.0024412968195974827, + -0.007082834839820862, + -0.001653321203775704, + -0.010424787178635597, + 0.009343319572508335, + -0.01696518063545227, + -0.0012900016736239195, + -0.014806980267167091, + 0.02852785773575306, + 0.010592321865260601, + 0.0022782543674111366, + 0.007385320030152798, + -0.014149630442261696, + -0.003525959560647607, + -0.004852479323744774, + 0.005787357222288847, + -0.004091521725058556, + 0.006247540935873985, + 0.003492815885692835, + -0.02031571976840496, + 0.014824170619249344, + 0.002240763045847416, + 0.017545124515891075, + 0.0008315400336869061, + -0.024510126560926437, + 0.008492495864629745, + -0.021385926753282547, + -0.007281342055648565, + -0.01027305144816637, + 0.007784740068018436, + -0.015420903451740742, + 0.006157160736620426, + -0.017599279060959816, + -0.008356206119060516, + -0.009212609380483627, + -0.0139043889939785, + -0.004366477485746145, + -0.012555023655295372, + -0.008894672617316246, + 0.0035912354942411184, + -0.0015023973537608981, + 0.021091610193252563, + 0.011302062310278416, + 0.019861776381731033, + -0.01673135906457901, + -0.022804047912359238, + 0.004099711310118437, + -0.009861829690635204, + -0.0028964842204004526, + 0.009584608487784863, + 0.00033745027030818164, + 0.005985037889331579, + -0.015094691887497902, + -0.010450526140630245, + -0.004952564835548401, + 0.008279426954686642, + 0.02112099900841713, + 0.017068779096007347, + 0.006766034755855799, + -0.008305382914841175, + -0.0004124011902604252, + -0.008151840418577194, + 0.0076286145485937595, + -0.00021232660219538957, + 0.007733103819191456, + 0.014377363957464695, + 0.01383945532143116, + -0.0110244769603014, + 0.024752577766776085, + 0.008222349919378757, + -0.026833543553948402, + -0.010973690077662468, + -0.012571402825415134, + -0.018196163699030876, + 0.002704109065234661, + 0.014185285195708275, + -0.009743946604430676, + -0.0020281560719013214, + -0.002091708593070507, + -0.0041040279902517796, + -0.00021423927682917565, + 0.009434929117560387, + -0.015898918733000755, + -0.007194289937615395, + -0.002788544399663806, + -0.002747709397226572, + 0.0006578423199243844, + -0.010457347147166729, + -0.011202653869986534, + -0.02785988710820675, + -0.020409295335412025, + 0.0014528826577588916, + -0.010336981154978275, + -0.023457389324903488, + 0.007238064426928759, + 0.014500022865831852, + 0.015960736200213432, + -0.0014477015938609838, + -0.01717565767467022, + -0.009332002140581608, + 0.005216941237449646, + -0.5657640695571899, + -0.007347162812948227, + -0.0027800309471786022, + -0.02142513170838356, + -0.00534081319347024, + 0.010589837096631527, + 0.015388094820082188, + 0.007779408246278763, + -0.003062576986849308, + -0.003026783699169755, + -0.00654557766392827, + 0.002401885809376836, + -0.0008141614962369204, + 0.01324712298810482, + 0.004134008195251226, + 0.0003671188314910978, + 0.00760427862405777, + 0.006757242605090141, + 0.016757279634475708, + -0.001995796337723732, + -0.001963652903214097, + -0.006011888384819031, + -0.018792498856782913, + -0.0026466799899935722, + 0.004782033618539572, + 0.013594427146017551, + 0.005547464359551668, + 0.00018014565284829587, + 0.009358047507703304, + 0.008724142797291279, + 0.021095750853419304, + 0.004935008939355612, + -0.005311598069965839, + 0.019537659361958504, + -0.010842306539416313, + -0.01118530798703432, + -0.015746133401989937, + -0.011800562962889671, + 0.00016825391503516585, + 0.0015376466326415539, + 0.015499427914619446, + -0.012561552226543427, + 0.013507666066288948, + 0.011342843063175678, + -0.003059462644159794, + -0.009151974692940712, + 0.008004127070307732, + 0.031167125329375267, + 0.0009566146181896329, + 0.008306669071316719, + 0.02473697066307068, + 0.008534571155905724, + 0.005349472630769014, + 0.006342798937112093, + 0.009353564120829105, + -0.0012651970610022545, + 0.005031639244407415, + 0.002414172515273094, + -0.008510184474289417, + 0.014087557792663574, + -0.01018183957785368, + 0.013714137487113476, + 0.017219150438904762, + 0.0060608526691794395, + 0.003918963950127363, + 0.004670572932809591, + -0.01025063544511795, + 0.020585617050528526, + 0.008345486596226692, + -0.009298906661570072, + -0.019330518320202827, + 0.01858801394701004, + -0.009002694860100746, + 0.0031896275468170643, + -0.00701959989964962, + -0.006132783368229866, + 0.0072724479250609875, + 0.01087682880461216, + -0.008496404625475407, + -0.00751430494710803, + 0.0031460386235266924, + 0.009670737199485302, + 0.012643730267882347, + 0.010316884145140648, + -0.0014208473730832338, + -0.004994139075279236, + 0.005101091228425503, + -0.024969616904854774, + 0.006152855698019266, + -0.0005551571375690401, + -0.006230219732969999, + 0.005424862261861563, + 0.023910731077194214, + 0.0018272347515448928, + 0.012632728554308414, + 0.003627467667683959, + 0.001986041432246566, + 0.012070923112332821, + 0.011557766236364841, + -0.01733597181737423, + -0.024250295013189316, + 0.009365762583911419, + 0.00724510895088315, + 0.007517033722251654, + 0.0183618925511837, + 0.007975857704877853, + 0.022720368579030037, + -0.004049534909427166, + 0.010308561846613884, + 0.007304438855499029, + -0.002097605261951685, + -0.04548899829387665, + 0.0032858927734196186, + -0.020464889705181122, + 0.017603818327188492, + 0.011875065974891186, + -0.0166892409324646, + 0.005695676896721125, + -0.015369215048849583, + 0.0078869154676795, + 0.0024905255995690823, + 0.008631492964923382, + 0.008659666404128075, + 0.007023127283900976, + 0.016370084136724472, + 0.008946074172854424, + -0.016410617157816887, + 0.0012194321025162935, + -0.0036846930161118507, + -0.0063484287820756435, + 0.002572832629084587, + 0.003999950829893351, + -0.0108469408005476, + 0.011719844304025173, + 0.0031149904243648052, + 0.0027638610918074846, + -0.010981699451804161, + 0.0018575984286144376, + 0.020011328160762787, + 0.0029456571210175753, + 0.018393684178590775, + 0.005434154067188501, + -0.0028137550689280033, + 0.018044600263237953, + -0.011549620889127254, + 0.008474103175103664, + -0.013407343067228794, + 0.0036865321453660727, + 0.0023896307684481144, + 0.009684804826974869, + 0.008996868506073952, + 0.0077206408604979515, + 0.014094028621912003, + 0.010815163142979145, + -0.0011101251002401114, + -0.01328788697719574, + -0.0015921086305752397, + 0.015890605747699738, + 0.0014252177206799388, + -0.011712335050106049, + -0.007481690961867571, + 0.00063373614102602, + 0.011793425306677818, + 0.02344680391252041, + 0.008998766541481018, + 0.005601769313216209, + -0.012181255035102367, + 0.004670589230954647, + 0.0045420327223837376, + 0.00908650178462267, + -0.002214476466178894, + 0.007563078310340643, + 0.010622176341712475, + 0.0031975035089999437, + 0.011821686290204525, + 0.016802377998828888, + 0.010399818420410156, + 0.0037824304308742285, + -0.0025922218337655067, + 0.006680997088551521, + -0.0106764892116189, + -0.005716212093830109, + 0.0009475990082137287, + 0.011426511220633984, + -0.030204318463802338, + -0.0015883148880675435, + -0.0025020474568009377, + 0.010173985734581947, + 0.00898007396608591, + -0.005631622392684221, + -0.005576142575591803, + -0.01701997220516205, + 0.007201215252280235, + 0.0008862074464559555, + -0.004008281510323286, + 0.007772678043693304, + 0.014484764076769352, + 0.0021093585528433323, + 0.013832799158990383, + 0.011912896297872066, + 0.011305641382932663, + 0.002945507178083062, + 0.007011321373283863, + -0.011456001549959183, + 0.008412591181695461, + -0.005331560503691435, + -0.002594355493783951, + 0.01675505004823208, + 0.0009141469490714371, + -0.02415386214852333, + -0.0034814358223229647, + 0.004721874371170998, + 0.008268969133496284, + 0.0028465890791267157, + -0.011822870001196861, + -0.005394744221121073, + 0.009288336150348186, + 0.014152249321341515, + -0.0020983610302209854, + 0.0032711843959987164, + 0.01152431033551693, + 0.013294232077896595, + -0.017622433602809906, + -0.01650436595082283, + -0.002501636277884245, + -0.0017251233803108335, + 0.004329080693423748, + -0.006444381549954414, + -0.01661541871726513, + 0.0019879438914358616, + -0.01971927471458912, + 0.013423111289739609, + -0.012233448214828968, + 0.010860136710107327, + 0.0004132635658606887, + 0.009765129536390305, + 0.00943480059504509, + -0.0046142996288836, + 0.023316767066717148, + 0.003015126334503293, + -0.01770804263651371, + 0.0006684534600935876, + 0.0004736317496281117, + -0.002470263745635748, + -0.0033170203678309917, + 0.018855366855859756, + -0.01397763192653656, + 0.008273393847048283, + -0.0051592676900327206, + -0.013508317060768604, + 0.0157685074955225, + 0.001372498576529324, + -0.004149171058088541, + -0.00970312301069498, + -0.011360356584191322, + -0.0169360488653183, + 0.007658167742192745, + 0.022925766184926033, + 0.0035781406331807375, + -0.003038582392036915, + 0.009003453887999058, + 0.0018257524352520704, + -0.005254511255770922, + 0.025129256770014763, + -0.001659519737586379, + -0.011147931218147278, + 0.009878787212073803, + 0.005712701473385096, + 0.018909364938735962, + -0.003934506326913834, + 0.008235250599682331, + -0.028074482455849648, + -0.013443730771541595, + 0.004927088040858507, + -0.02019619755446911, + -0.004728804342448711, + 0.006383293308317661, + 0.011958631686866283, + 0.0011304980143904686, + -0.006169547792524099, + 0.0032325272914022207, + 0.0012552249245345592, + 0.00851530209183693, + -0.014030558988451958, + -0.0014902069233357906, + -0.009517770260572433, + 0.008514007553458214, + 0.004519058391451836, + -0.01299739908427, + 0.008040504530072212, + 0.012118618935346603, + 0.005421035923063755, + -0.0028028932865709066, + 0.00996020995080471, + -0.009123525582253933, + 0.008781582117080688, + 0.010115306824445724, + -0.023281315341591835, + 0.010075448080897331, + -0.006846958305686712, + 0.004370567388832569, + -0.021909546107053757, + 0.004097933880984783, + 0.0880236029624939, + 0.021061431616544724, + -0.013513647019863129, + -0.0011922083795070648, + -0.0018984987400472164, + -0.00676053436473012, + 0.0018020381685346365, + 0.006366428453475237, + -0.0022151365410536528, + -0.011511106975376606, + 0.006328792776912451, + 0.012183530256152153, + 0.02008991315960884, + -0.017394760623574257, + -0.015416259877383709, + -0.03204101324081421, + 0.0033968579955399036, + 0.008606988936662674, + 0.0012123893247917295, + 0.003545041661709547, + -0.0013533160090446472, + 0.004456561990082264, + -0.0011106516467407346, + 0.014841838739812374, + 0.015076618641614914, + 0.005602195393294096, + 0.01388496533036232, + 0.015075639821588993, + -0.014544009231030941, + -0.007102633360773325, + -0.0010150002781301737, + -0.01781308837234974, + -0.002343245781958103, + 0.012952985242009163, + -0.0014621400041505694, + 0.01699976995587349, + -0.0038075947668403387, + 0.003405405906960368, + -0.0004970203153789043, + 0.007844599895179272, + -0.01594129204750061, + 0.005112372804433107, + -0.010639827698469162, + -0.0036082707811146975, + 0.002660146914422512, + -0.012425549328327179, + 0.0020617733243852854, + -0.024065865203738213, + -0.001179422833956778, + 0.002175264060497284, + -0.011746799573302269, + 0.010657195001840591, + -0.007877059280872345, + -0.0037738264072686434, + 0.0015828163595870137, + -0.008777155540883541, + -0.011762688867747784, + -0.0012772994814440608, + -0.033581435680389404, + -0.007334171794354916, + -0.011221451684832573, + -0.00391400046646595, + 0.050598058849573135, + -0.007899823598563671, + -0.003499395679682493, + -0.0032646439503878355, + 0.01663203164935112, + -0.014015964232385159, + -0.0008412151946686208, + 0.019234655424952507, + -0.00030779637745581567, + -0.0014048865996301174, + 0.012179275043308735, + 0.001135246129706502, + -0.014114628545939922, + -0.012267251498997211, + -0.017049603164196014, + -0.012434329837560654, + -0.013388939201831818, + 0.0010682659922167659, + 0.0002091048372676596, + -0.010783516801893711, + 0.007339153904467821, + -1.2220533790241461e-05, + 0.008704613894224167, + -0.010110946372151375, + -0.017029132694005966, + -0.02181941829621792, + -0.03002401441335678, + -0.010827976278960705, + 0.0065702153369784355, + -0.0002493212232366204, + -0.00538779329508543, + -0.010468821972608566, + -0.007431707810610533, + -0.015107822604477406, + -0.011513934470713139, + 0.024159038439393044, + 0.0003520605678204447, + 0.005487634334713221, + -0.002964392537251115, + 0.005437443032860756, + 0.03237617760896683, + 0.007872147485613823, + 0.0014440756058320403, + 0.010336956940591335, + 0.017265284433960915, + 0.0013461223570629954, + 0.02199445851147175, + 0.024151479825377464, + 0.01628609374165535, + -0.009272177703678608, + -0.0007762617897242308, + 0.0012015653774142265, + -0.010063941590487957, + 0.0034984545782208443, + 0.0019532893784344196, + 0.008563133887946606, + 0.0007242625579237938, + 0.005477691534906626, + -0.021165477111935616, + 0.002926488174125552, + 0.01218529511243105, + 0.013634088449180126, + 0.0029106095898896456, + -0.009711811318993568, + -0.01090087927877903, + -0.0025063585489988327, + -0.0019137999042868614, + 0.027089420706033707, + 0.003581408876925707, + -0.010829498991370201, + -0.0015095309354364872, + 0.011873764917254448, + -0.00622238265350461, + -0.007091898005455732, + 0.012278502807021141, + 0.0027301416266709566, + 0.00019211987091694027, + -0.010135808028280735, + -0.013130753301084042, + -0.01925922930240631, + -0.005396519787609577, + 0.020297689363360405, + 0.016598666086792946, + -0.0038152828346937895, + -0.007456399966031313, + 0.0033308437559753656, + 0.006583970971405506, + -0.008555598556995392, + 0.012044176459312439, + 0.0012632760917767882, + 0.004272226709872484, + 0.0026505915448069572, + 0.010540805757045746, + -0.0027165596839040518, + -0.007331188768148422, + -0.014318175613880157, + 0.007683827541768551, + 0.015430709347128868, + 0.005226558540016413, + 0.007788264658302069, + 0.01559971459209919, + 0.008703352883458138, + -0.0014347081305459142, + -0.014230900444090366, + 0.015754766762256622, + 0.018762636929750443, + 0.014367502182722092, + -0.005699541885405779, + -0.010884574614465237, + 0.007536156103014946, + 0.004961434286087751, + 0.0019067326793447137, + -0.0004890125710517168, + -0.003067280864343047, + -0.019207170233130455, + 0.015634458512067795, + 0.0055464799515903, + -0.0030222597997635603, + 0.0007971009472385049, + 0.004234482999891043, + -0.0025281026028096676, + -0.0157869141548872, + 0.030153384432196617, + 0.004045560490339994, + -0.025044899433851242, + -7.244757580338046e-05, + 0.00830558966845274, + -0.003243671264499426, + 0.01774953305721283, + 0.006135412026196718, + 0.018793338909745216, + 0.019990913569927216, + 0.00904835481196642, + 0.006654256954789162, + -0.0032776175066828728, + 0.010694152675569057, + 0.007080826908349991, + 0.004440109245479107, + -0.014082246460020542, + 0.011212650686502457, + 0.010128609836101532, + -0.019252417609095573, + 0.0003359981346875429, + 0.00699978182092309, + 0.007570443209260702, + 0.0028273595962673426, + -0.007506652269512415, + 0.002644238295033574, + 0.00223410758189857, + 0.0026176420506089926, + 0.0021182866767048836, + -0.018415825441479683, + -0.01167286653071642, + 0.0001182407868327573, + 0.003293734509497881, + 0.006553029641509056, + -0.007321877405047417, + -0.01906343549489975, + -0.015101141296327114, + 3.072539402637631e-05, + 0.0031641798559576273, + 0.004228905774652958, + 0.02804744429886341, + 0.024297961965203285, + -0.006461950950324535, + 0.004111358895897865, + 0.010120653547346592, + -0.017890295013785362, + -0.0028843677137047052, + 0.046050962060689926, + 0.0003705920244101435, + -0.0010902408976107836, + 0.0061941505409777164, + 0.009265252389013767, + -0.02071334980428219, + 0.0032692563254386187, + -0.006468125153332949, + 0.01196015253663063, + 0.003132451558485627, + 0.007879464887082577, + -0.010360924527049065, + 0.002320649800822139, + -0.023064283654093742, + -0.011625177226960659, + 0.0017667944775894284, + -0.0039044609293341637, + -0.016787489876151085, + -0.00954147707670927, + 0.006375615950673819, + -0.007566716056317091, + 0.0017422103555873036, + -0.008884696289896965, + 0.0006286780117079616, + -0.015857134014368057, + -0.014055943116545677, + 0.0009372346685267985, + 0.004537881817668676, + 0.021156933158636093, + -0.0001002529461402446, + -0.019618328660726547, + 0.02769194357097149, + 0.010157539509236813, + -0.030054887756705284, + -0.0006550349644385278, + -0.004653643351048231, + 0.01250449288636446, + -0.004962638020515442, + -0.0071885185316205025, + -0.0063807182013988495, + 0.000642352388240397, + 0.023510556668043137, + -0.0011317265452817082, + -0.002562043024227023, + 0.029627520591020584, + 0.0036120950244367123, + 0.0007018340984359384, + -0.024145688861608505, + 0.017578203231096268, + -0.0017765050288289785, + -0.003600033698603511, + -0.006507915910333395, + 0.007588844746351242, + -0.004530453588813543, + -0.0030091970693320036, + 0.014934470877051353, + 0.004761293530464172, + -0.006924914196133614, + 0.02169850654900074, + -0.010247803293168545, + -0.0036697140894830227, + 0.009937196969985962, + 0.010712268762290478, + 0.011577743105590343, + -0.003125770715996623, + -0.002546411706134677, + 0.009597576223313808, + 0.004034107550978661, + 0.0017875946359708905, + 0.004008167423307896, + -0.005800536368042231, + 0.005313503555953503, + -0.007049707230180502, + 0.010749266482889652, + -0.007364229299128056, + 0.007122547831386328, + -0.0024345258716493845, + -0.0066993157379329205, + 0.001259892014786601, + 0.001493155607022345, + 0.0013965849066153169, + 0.011975409463047981, + -0.021942198276519775, + 0.009979519061744213, + 0.0010114836040884256, + -0.007150885183364153, + 0.003501481143757701, + 0.020292961969971657, + 0.0008880062960088253, + -0.010328946635127068, + -0.013299324549734592, + 0.011221276596188545, + -0.008300532586872578, + 0.003586762584745884, + 0.010108895599842072, + 0.005430379416793585, + 0.010175758972764015, + 0.015245585702359676, + -0.0011843389365822077, + 0.002830459736287594, + -0.0035292261745780706, + 0.008709829300642014, + -0.014642071910202503, + 0.007232705596834421, + -0.038406889885663986, + 0.00966599304229021, + -0.0005345425452105701, + 0.0015041277511045337, + 0.012577153742313385, + 0.007096577435731888, + 0.0003736801736522466, + 0.00940178893506527, + -0.026260951533913612, + -0.001333668828010559, + 0.005622811149805784, + 0.01733890175819397, + -0.018172360956668854, + -0.010646467097103596, + 0.0031244324054569006, + 0.0021561651956290007, + -0.0039704469963908195, + 0.0012456835247576237, + -0.0032420367933809757, + -0.0032292716205120087, + -0.0020004156976938248, + 0.00038961193058639765, + -0.000926838256418705, + -0.016818823292851448, + -0.009229017421603203, + -0.001359974150545895, + 0.007114910054951906, + -0.014899365603923798, + 0.003395054256543517, + -0.003273958805948496, + 0.00254338257946074, + 0.002878971165046096, + 0.0006337962695397437, + -0.011353031732141972, + -0.0004926423425786197, + 0.011298045516014099, + -0.004159371834248304, + 0.02874678187072277, + 0.0032634532544761896, + -0.01689388044178486, + -5.542664439417422e-06, + -0.0009700063383206725, + -0.017989572137594223, + 0.017062822356820107, + 0.007772546727210283, + 0.014502570033073425, + -0.008218985982239246, + -0.01491472590714693, + -0.014201179146766663, + 0.004990408197045326, + 0.037099890410900116, + -0.0144810164347291, + -0.007773304358124733, + -0.007407366298139095, + 0.03232613578438759, + 0.008230084553360939, + 0.00037019571755081415, + 0.011774039827287197, + -0.01053673680871725, + 0.018296273425221443, + -0.009322302415966988, + -0.0025587202981114388, + -0.02630392462015152, + -0.005214093253016472, + -0.007987268269062042, + -0.009067722596228123, + -0.010148058645427227, + -0.0011404380202293396, + 0.006888606119900942, + -0.018652884289622307, + -0.01205895934253931, + 0.015795359387993813, + -0.007561777252703905, + -0.0037710939068347216, + 0.013754358515143394, + 9.385891462443396e-05, + -0.012847788631916046, + -0.0232949610799551, + -0.027935467660427094, + 0.011896218173205853, + 0.01946764439344406, + 0.010447120293974876, + 0.013015027157962322, + -9.089643572224304e-05, + 0.024582400918006897, + -0.0032194270752370358, + 0.009601488709449768, + -0.017305826768279076, + -0.011247772723436356, + -0.00983396265655756, + -0.009354636073112488, + 0.012147915549576283, + 0.0055857570841908455, + 0.006761878728866577, + -0.021228685975074768, + 0.005507395137101412, + -0.01635950244963169, + -0.013348911888897419, + -0.016746560111641884, + 0.014750754460692406, + -0.0001770095550455153, + -0.0011746068485081196, + 0.009579328820109367, + -0.022566916421055794, + -0.029146648943424225, + 0.007836049422621727, + 0.015024686232209206, + -0.009033340029418468, + -0.010108450427651405, + 0.007364293560385704, + -0.006337951403111219, + 0.018295893445611, + -0.002769413171336055, + 0.005813851486891508, + -0.024659939110279083, + 0.02494354173541069, + 0.014290755614638329, + 0.0015676881885156035, + -0.0016779027646407485, + -0.005169664975255728, + 0.013807198964059353, + 0.010668953880667686, + 0.006803935393691063, + -0.00854086596518755, + 0.009875739924609661, + -0.02246554009616375, + 0.007014336530119181, + -0.0003643801901489496, + -0.02115738019347191, + -0.011890871450304985, + 0.015277450904250145, + 0.010427096858620644, + -0.004216055851429701, + 0.0007684794836677611, + -0.006692221853882074, + -0.008069340139627457, + 0.004716047085821629, + 0.01154552586376667, + 8.4852465079166e-05, + -6.063553155399859e-05, + 0.006532041355967522, + 0.009291588328778744, + -0.012683962471783161, + 0.01010317262262106, + 0.013869521208107471, + -0.008061760105192661, + 0.0014264751225709915, + -0.0004708115884568542, + 0.008758916519582272, + 0.0026697018183767796, + 0.006660544313490391, + 0.010171638801693916, + 0.011274928227066994, + -0.0354912243783474, + 0.008907884359359741, + 0.0006513901753351092, + -0.005545154679566622, + 0.06341095268726349, + -0.03719861060380936, + 0.007202368229627609, + 0.006352427881211042, + -0.013143843971192837, + 0.005013240035623312, + -0.019540712237358093, + -0.01040384080260992, + 0.011871246621012688, + -0.01329738274216652, + -0.00811245571821928, + 0.01704828254878521, + 0.012758986093103886, + 0.005467803683131933, + 0.007642863318324089, + -0.017916683107614517, + 0.0006958862650208175, + 0.0034572884906083345, + -0.00039302813820540905, + -0.004572451114654541, + 0.005238114856183529, + -0.007962600328028202, + 0.010062510147690773, + 0.006932998541742563, + -0.007378661073744297, + 0.007968761026859283, + -0.013920447789132595, + -0.002803945681080222, + 0.02461830899119377, + -0.015665328130126, + -0.00018448750779498369, + -0.015465724281966686, + 0.012838820926845074, + 0.02410038374364376, + -0.009851347655057907, + -0.006519625894725323, + 0.01581229455769062, + 0.0203928891569376, + 0.025545720010995865, + -0.005743914749473333, + 0.004190618172287941, + -0.026184702292084694, + 0.010153036564588547, + 0.01389340590685606, + -0.007269209250807762, + 0.020394880324602127, + -0.0005065376171842217, + -0.004255509935319424, + 0.011244472116231918, + 0.00551668182015419, + -0.015148035250604153, + -0.007704561576247215, + 0.016840117052197456, + -0.02137540839612484, + 0.010293690487742424, + -0.001458459417335689, + -0.0030669555999338627, + 0.007220671512186527, + 0.009397245943546295, + -0.0016990065341815352, + -0.01307766418904066, + 0.006720638833940029, + 0.011474592611193657, + 0.0053568207658827305, + 0.018975647166371346, + 0.0010166344000026584, + 0.009161868132650852, + 0.005800175480544567, + 0.006041806656867266, + 0.002501581097021699, + 0.027041252702474594, + 0.008250946179032326, + -0.01815575547516346, + -0.00038381238118745387, + -0.023998433724045753, + -0.009124469012022018, + 0.003789472859352827, + -0.0024439659900963306, + 0.003963493276387453, + 0.003442519111558795, + -0.004086941014975309, + -0.0003801900311373174, + -0.0029695085249841213, + 0.0003777513047680259, + 0.012418162077665329, + -0.009840111248195171, + 0.009353783912956715, + -0.0029479132499545813, + -0.00785150844603777, + 0.011063434183597565, + -0.011874702759087086, + -0.009092263877391815, + 0.007841766811907291, + 0.010799242183566093, + -0.010262281633913517, + 0.004390958696603775, + -0.015702180564403534, + -0.009718073531985283, + 0.0013305164175108075, + 0.010511373169720173, + -0.009255615994334221, + -0.005234965588897467, + 0.013229330070316792, + 0.047467295080423355, + 0.0012918220600113273, + -0.006555601488798857, + -0.001583234639838338, + 0.004900091793388128, + 0.035140134394168854, + -0.019350538030266762, + -0.014068993739783764, + -0.01911347545683384, + 8.110109047265723e-05, + 0.007307407911866903, + 0.009061762131750584, + -0.013211074285209179, + 0.009439747780561447, + -0.01229797676205635, + -0.005143504589796066, + -0.0016581406816840172, + 0.005110220052301884, + 0.003087894758209586, + -0.008579452522099018, + 0.02462250553071499, + 0.0012229846324771643, + -0.0004971549496985972, + -0.009835680946707726, + 0.0016600516391918063, + -0.016453327611088753, + -0.011824152432382107, + -0.0005180923035368323, + 0.006835355423390865, + -0.018683921545743942, + 0.004568201024085283, + 0.004034866113215685, + -0.010674556717276573, + 0.009726051241159439, + 0.02884386107325554, + 0.0077827563509345055, + -0.004218556918203831, + -0.0013197818771004677, + -0.002093028975650668, + 0.006574077997356653, + -0.012091971933841705, + 0.0033811936154961586, + -0.021094148978590965, + -0.01892843097448349, + -0.0029864544048905373, + -0.0066179451532661915, + -0.004647236783057451, + -0.0009820167906582355, + 0.006929940544068813, + -0.009467780590057373, + -0.012270525097846985, + -0.0033528904896229506, + 0.011128649115562439, + -0.006019604858011007, + -0.009560511447489262, + -0.006180194206535816, + -0.01813274249434471, + 0.0051690456457436085, + -0.0046360366977751255, + 0.005635962355881929, + -0.009236207231879234, + 0.01537780836224556, + 0.002537729451432824, + -0.0028346714098006487, + -0.002008544048294425, + 0.015986410900950432, + -0.006566020660102367, + 0.005359109491109848, + 0.013662286102771759, + 0.008321888744831085, + -0.020022103562951088, + -0.0020187455229461193, + 0.0006982156191952527, + -0.0025075271259993315, + -0.005731319542974234, + 0.020586755126714706, + -0.010595413856208324, + -0.013957650400698185, + 0.00032927715801633894, + 0.0042554899118840694, + 0.011077442206442356, + 0.02664034068584442, + 0.026227489113807678, + -0.0005381806986406446, + 0.007229706738144159, + -0.013303440995514393, + -0.003954380284994841, + -0.015039501711726189, + 0.018765872344374657, + -0.0005500782863236964, + -0.007559290621429682, + -0.0060676648281514645, + 0.0074616605415940285, + 0.0007045242236927152, + 0.0065298862755298615, + -0.002492645289748907, + 0.00168560107704252, + 0.006997985299676657, + 0.01665407232940197, + 0.022381113842129707, + 0.005500361789017916, + 0.008342256769537926, + 0.022266726940870285, + -0.012261689640581608, + 0.015185801312327385, + 0.0007959859794937074, + -0.007715675514191389, + 0.0004389102105051279, + 0.005556975957006216, + -0.00546171935275197, + 0.003127708565443754, + -0.0040220231749117374, + -0.0028990223072469234, + 0.02314424142241478, + 0.00154736393596977, + 0.0010258357506245375, + 0.00593094527721405, + 0.0089352922514081, + -0.00998494029045105, + 0.0019941104110330343, + 0.006878935266286135, + 0.00686401454731822, + -0.011511189863085747, + 0.015940044075250626, + -0.01434061024338007, + 0.016018938273191452, + 0.001134588266722858, + -0.013932829722762108, + 0.011768560856580734, + 0.004781884141266346, + -0.00150193739682436, + -0.005219169892370701, + 0.00644439272582531, + 0.010893973521888256, + -0.013923250138759613, + 0.021351831033825874, + -0.002865968272089958, + 0.009776300750672817, + -0.027656111866235733, + 0.010799561627209187, + 0.02137213759124279, + 0.00230996310710907, + 0.012799201533198357, + 0.004049233626574278, + 0.0012747786240652204, + 0.02525593526661396, + 0.010872791521251202, + 0.013813658617436886, + 0.0018657817272469401, + -0.005248541012406349, + 0.011591309681534767, + -0.00033198157325387, + 0.012878401204943657, + 0.00866526085883379, + -0.017298052087426186, + 0.004015309736132622, + -0.01598166488111019, + -0.0026535086799412966, + -0.0036502790171653032, + 0.016588851809501648, + 0.014736257493495941, + 0.019216792657971382, + -0.006978078745305538, + -0.006871082354336977, + 0.018048487603664398, + 0.007898985408246517, + -0.006398406811058521, + 0.01330563798546791, + 0.02278508059680462, + -0.00028888878296129405, + 0.0003578769392333925, + 0.008027399890124798, + 0.00023048376897349954, + -0.0031025775242596865, + -0.004993941634893417, + 0.0005088310572318733, + 0.010393409058451653, + 0.009251617826521397, + 0.001522972364909947, + -0.0009510951931588352, + 0.025983741506934166, + 0.003454294055700302, + -0.015306525863707066, + -0.001653859973885119, + -0.0032961221877485514, + 6.701391976093873e-05, + 0.017023755237460136, + -0.004923150409013033, + 0.006183287128806114, + -0.03571021556854248, + 0.015047648921608925, + 0.005078511778265238, + 0.013793345540761948, + 0.006977257318794727, + -0.022417498752474785, + -0.013656736351549625, + 0.011135675944387913, + -0.004726441111415625, + 0.0040376861579716206, + -0.011433664709329605, + 0.0024628934916108847, + -0.030232436954975128, + 0.006936297286301851, + 0.006330995354801416, + -0.0072196912951767445, + -0.006550284568220377, + -0.010510069318115711, + -0.006415833719074726, + -0.0035714609548449516, + -0.003005801700055599, + -0.01439256127923727, + -0.007853802293539047, + 0.005051106214523315, + 0.005649354308843613, + -0.010348739102482796, + -0.0027231827843934298, + 0.007951866835355759, + -0.0005647100042551756, + 0.007256250362843275, + -0.00048387006972916424, + -0.010153691284358501, + -0.01113304402679205, + 0.003950859420001507, + 0.014936436899006367, + 0.004322350490838289, + -0.007214944809675217, + -0.008131706155836582, + -0.002658966463059187, + 0.00995874684303999, + -0.018812304362654686, + -0.0012399570550769567, + -0.01488701906055212, + -0.018511276692152023, + 0.0065999398939311504, + -0.001531349727883935, + -0.004748161882162094, + 0.0016582468524575233, + -0.007317615207284689, + 0.014099553227424622, + 0.0036522257141768932, + -0.025007490068674088, + -0.03649966046214104, + 0.005355493631213903, + 0.014967567287385464, + 0.005980329122394323, + -0.006628250237554312, + 0.012098459526896477, + 0.007237279321998358, + 0.02520942874252796, + -0.02800590544939041, + -0.003022742224857211, + -0.011678554117679596, + 0.011298413388431072, + -0.014881599694490433, + -0.01808963343501091, + -0.008849631063640118, + -0.015851788222789764, + -0.02520769089460373, + 0.0008361086365766823, + -0.010758848860859871, + -0.00934178102761507, + 0.010268380865454674, + -0.0051350356079638, + -0.014309002086520195, + -0.0002760612696874887, + 0.006341245025396347, + 0.02002999559044838, + 0.005399145185947418, + 0.01527782715857029, + 0.000196264183614403, + -0.005137021187692881, + -0.017279410734772682, + 0.010430761612951756, + -0.009845451451838017, + 0.010942279361188412, + 0.008522490970790386, + -0.005125804804265499, + -0.010089859366416931, + 0.003046527039259672, + -0.0022806208580732346, + 0.0051047662273049355, + 0.015766745433211327, + -0.008463316597044468, + -0.01842016726732254, + 0.0025287126190960407, + 0.010322518646717072, + -0.018716495484113693, + 0.0078096636570990086, + 0.0008917929953895509, + -0.0134010910987854, + 0.006695933640003204, + -0.004828587174415588, + 0.01996668614447117, + 0.004954362288117409, + -0.01688559539616108, + 0.006751525681465864, + 0.03621021285653114, + -0.010112002491950989, + 0.019262298941612244, + -0.003140719374641776, + 0.005960521753877401, + -0.015349761582911015, + -0.012875503860414028, + 0.009480011649429798, + 0.008055283688008785, + -0.021657098084688187, + -0.021779652684926987, + -0.011639159172773361, + -0.002360239624977112, + 0.001427006209269166, + 0.01882927119731903, + 0.00047941727098077536, + 0.007945092394948006, + 0.007107436656951904, + -0.00915746670216322, + 0.015807216987013817, + 0.00401725061237812, + -0.017323754727840424, + -0.016722535714507103, + 0.001098282402381301, + -0.029169755056500435, + -0.017095746472477913, + 0.0143100181594491, + 0.032585542649030685, + 0.013991197571158409, + -0.00648993905633688, + -0.0016159660881385207, + -0.01615099608898163, + -0.013150022365152836, + 0.008211511187255383, + -0.007860112935304642, + -0.0041890195570886135, + -0.017930705100297928, + 0.003978267777711153, + -0.0012145988876000047, + -0.004107579588890076, + 0.005749627947807312, + 0.0040302821435034275, + 0.012110434472560883, + 0.009082676842808723, + -0.004539946559816599, + 0.0012817123206332326, + 0.014309880323708057, + 0.014407150447368622, + -0.0014783194055780768, + 0.026752401143312454, + -0.0013484684750437737, + 0.00020829086133744568, + -0.013203468173742294, + -0.008353040553629398, + -0.006871115881949663, + 0.014554891735315323, + -0.007603941019624472, + -0.0020771296694874763, + -0.007309069857001305, + 0.0005625991616398096, + -0.007369589991867542, + 0.013656074181199074, + -0.003822406753897667, + -0.02721455506980419, + 0.005340606439858675, + -0.0021014173980802298, + 0.004951534327119589, + -0.00025181728415191174, + -0.003159937681630254, + 0.015799321234226227, + -0.00655882153660059, + 0.007344121113419533, + -0.005718585569411516, + -0.011164863593876362, + 0.010405071079730988, + -0.011595149524509907, + -0.01803445629775524, + -0.0006343748536892235, + 0.015866704285144806, + 0.015710415318608284, + 0.019301071763038635, + -0.014673990197479725, + -0.01205787155777216, + 0.007319633848965168, + -0.002396909287199378, + -0.007907065562903881, + 0.0030113745015114546, + -0.001887309132143855, + 0.004363163374364376, + 0.010491269640624523, + 0.011266733519732952, + -0.013011515140533447, + 0.01136754360049963, + 0.006587363313883543, + -0.002358499215915799, + -0.010760758072137833, + -0.022124677896499634, + 0.011056224815547466, + -0.023807596415281296, + -0.011447403579950333, + 0.014168097637593746, + 0.011220983229577541, + -0.018689386546611786, + -0.008262856863439083, + 0.01473060343414545, + -0.008002868853509426, + 0.010068781673908234, + -0.02223806455731392, + -0.017576027661561966, + 0.019289590418338776, + -0.023816566914319992, + 0.007622558157891035, + 0.023236526176333427, + 0.005743055138736963, + 0.0026795798912644386, + -0.0065107205882668495, + -0.010952583514153957, + -0.011588254943490028, + 0.011411627754569054, + -0.005627024453133345, + 0.01674196869134903, + 0.008865360170602798, + 0.008816368877887726, + -0.015306193381547928, + 0.03288980573415756, + -0.01625639572739601, + -0.0025789288338273764, + 0.004226036369800568, + -0.013072893023490906, + 0.003940674941986799, + 0.03842105716466904, + 0.014462664723396301, + -0.010255364701151848, + 0.015428628772497177, + 0.024676157161593437, + -0.011842199601233006, + -0.015394806861877441, + 0.0057889060117304325, + 0.01195599976927042, + -0.0036089711356908083, + -0.00391386728733778, + 0.003907640930265188, + -0.014368822798132896, + -0.001151380012743175, + 0.00926245842128992, + 0.010059086605906487, + 0.009774945676326752, + -0.007311586756259203, + -0.007146348711103201, + 0.017361104488372803, + -0.0029286080971360207, + 0.007603450678288937, + 0.007449056021869183, + 0.009219086728990078, + -0.022326095029711723, + -0.0006264320109039545, + -0.006074541248381138, + -0.0062766601331532, + 0.017130987718701363, + -0.01599363423883915, + 0.005443664267659187, + -0.0073702372610569, + 0.01040190551429987, + 0.00924441684037447, + 0.0007994071929715574, + -0.005876296665519476, + 0.004495114553719759, + 0.015567117370665073, + 0.0011651014210656285, + -0.00345998234115541, + -0.006132660899311304, + 0.004785239230841398, + 0.021366562694311142, + 0.0076009673066437244, + -0.0038866926915943623, + -0.004606683738529682, + -0.005579398944973946, + -0.008400686085224152, + 0.008040454238653183, + -0.01730489172041416, + -0.007829413749277592, + 0.004551099147647619, + 0.01071732398122549, + 0.009354225359857082, + 0.0025691408663988113, + 0.011537071317434311, + 0.014195587486028671, + -0.014786969870328903, + 0.004649626091122627, + -0.015744883567094803, + 0.025512918829917908, + -0.004475372843444347, + -0.017923185601830482, + 0.017885776236653328, + 0.009232022799551487, + -0.0018708554562181234, + -0.053696971386671066, + -0.00837019458413124, + -0.013524873182177544, + -0.008195130154490471, + -0.002681456506252289, + 0.0031228442676365376, + 0.012029342353343964, + 0.012699613347649574, + 0.005354433786123991, + 0.01880139857530594, + -0.005719134118407965, + 0.0002084456937154755, + -0.015653375536203384, + -0.014251744374632835, + 0.0020027027931064367, + 0.015264841727912426, + 0.0357603020966053, + -0.0009716565837152302, + 0.022184016183018684, + -0.01595989614725113, + 0.005502260290086269, + -0.006895932834595442, + -0.01621169224381447, + -0.023717708885669708, + -0.010444271378219128, + -0.05054963752627373, + 0.010763928294181824, + -0.004308730363845825, + -0.002227179706096649, + -0.021941520273685455, + -0.01789684407413006, + -0.002721040975302458, + 0.008078462444245815, + -0.026572810485959053, + 0.00597775774076581, + -0.004794569686055183, + -0.004728235304355621, + 0.00249947770498693, + 0.020102566108107567, + -0.01342788152396679, + 0.008084614761173725, + 0.007660676725208759, + 0.033692050725221634, + 0.010172318667173386, + 0.014467848464846611, + 0.0022787628695368767, + 0.010290210135281086, + 0.005963965319097042, + 0.004383749328553677, + -0.014529317617416382, + 0.02110961638391018, + 0.01888858899474144, + -0.016007110476493835, + 0.009596753865480423, + -0.0005390931619331241, + -0.0007328413776122034, + -0.006719890050590038, + 0.006374435033649206, + -0.005448174197226763, + 0.009754408150911331, + -0.00940176472067833, + 0.013410262763500214, + 0.007188481278717518, + 0.012608430348336697, + -0.004821418784558773, + -0.00802060030400753, + -0.0010598705848678946, + 0.009024436585605145, + 0.0009493788238614798, + -0.0015098039293661714, + -0.01193996798247099, + -0.013826047070324421, + 0.030941862612962723, + -0.0034058254677802324, + 0.019686028361320496, + 0.016288166865706444, + 0.0005037898663431406, + 0.013279411010444164, + 0.006760867778211832, + 0.013829144649207592, + 0.0012654715683311224, + 0.031014887616038322, + 0.006244422867894173, + -0.005041166674345732, + 0.0047901831567287445, + -0.019413447007536888, + -0.016260527074337006, + 0.025967827066779137, + -0.00583226652815938, + 0.0029607247561216354, + 0.00700242118909955, + -0.010817483998835087, + -0.0029531163163483143, + -0.01994318515062332, + 0.008475085720419884, + -0.00255192955955863, + 0.00926277693361044, + -0.00572079885751009, + -0.010460960678756237, + 0.0047881449572741985, + 0.006569021847099066, + -0.013485814444720745, + 0.000599297636654228, + 0.01689276099205017, + 0.02225324884057045, + 0.000685510050971061, + 0.004573381505906582, + -0.006006583571434021, + 0.004082335624843836, + 0.02412331849336624, + 0.000771879218518734, + 0.011813484132289886, + -0.0017006932757794857, + -0.023982781916856766, + -0.057504501193761826, + 0.019109200686216354, + -0.001808613771572709, + -0.02226424403488636, + -0.01208427269011736, + 0.004872623831033707, + -0.020563937723636627, + 0.005231545306742191, + 0.003112316830083728, + 0.01521090604364872, + 0.008643483743071556, + -0.0006317744846455753, + -0.007679125759750605, + 0.01267689187079668, + -0.0032529805321246386, + 0.011769010685384274, + -0.006537200417369604, + -0.004949914291501045, + -0.005687751341611147, + -0.014959699474275112, + 0.001063426025211811, + -0.0019465042278170586, + -0.004222018178552389, + 0.004503220785409212, + -0.004052729345858097, + -0.007698057219386101, + 0.01597612164914608, + -0.03974859043955803, + 0.01402792613953352, + -0.01009618304669857, + 0.018358061090111732, + -0.0016574127366766334, + 0.028144363313913345, + 0.009830744937062263, + -6.822957220720127e-05, + -0.007974719628691673, + 0.01233549602329731, + -0.008885602466762066, + -0.02309107407927513, + 0.005425583571195602, + -0.006081016734242439, + -0.005132048856467009, + -0.006615374702960253, + 0.0004334133118391037, + -0.012479244731366634, + 0.008915537036955357, + -0.018058940768241882, + 0.0045239562168717384, + 0.0017287401715293527, + -0.008427001535892487, + 0.0020403137896209955, + -0.0033553203102201223, + -0.007044920232146978, + -0.0134346392005682, + 0.002598126884549856, + 0.001901813200674951, + -0.00032327475491911173, + -0.0036263999063521624, + 0.005177597515285015, + -0.0003126040392089635, + -0.009568951092660427, + -0.018939051777124405, + -0.023062551394104958, + 0.015487786382436752, + -0.011511198244988918, + 0.0012101574102416635, + 0.021232686936855316, + -0.0065963780507445335, + 0.001694719772785902, + -0.017554592341184616, + -0.003599886316806078, + -0.018437152728438377, + -0.020373612642288208, + -0.004032710567116737, + 0.006049912888556719, + 0.010736486874520779, + 0.008054116740822792, + -0.002927676308900118, + 0.0010319078573957086, + 0.018820878118276596, + 0.0004943885724060237, + -0.013988557271659374, + -0.0012491914676502347, + 0.008306803181767464, + 0.010100779123604298, + -0.014610313810408115, + 0.008111832663416862, + 0.0026655211113393307, + -0.015490214340388775, + 0.003323257202282548, + 0.0028877784498035908, + 0.00830132607370615, + -0.010482062585651875, + 0.042926039546728134, + 0.01922684907913208, + 0.0039451546035707, + 0.009961815550923347, + 0.010071324184536934, + 0.057059139013290405, + -0.00855001900345087, + -0.003650735365226865, + 0.002537353662773967, + -0.006331469397991896, + 0.014007805846631527, + -0.02331801876425743, + 0.00882973987609148, + 0.004166268277913332, + 0.005254820920526981, + -0.02720719948410988, + -0.007773868273943663, + 0.01001122035086155, + -0.014683162793517113, + 0.01269854512065649, + 0.006247358862310648, + -0.010201772674918175, + -0.013841351494193077, + 0.010533862747251987, + 0.008942995220422745, + 0.0009572304552420974, + -0.0035392160061746836, + -0.0017856594640761614, + 0.010922634042799473, + 0.015392670407891273, + 0.008870624005794525, + 0.008876417763531208, + 7.637539965799078e-05, + 0.011174415238201618, + -0.0006698259385302663, + -0.00511161657050252, + -0.008524942211806774, + -0.004109880421310663, + -0.003136805957183242, + -0.008110133931040764, + -0.013288931921124458, + -0.0042876689694821835, + -0.0032892089802771807, + -0.007255015894770622, + -0.008313395082950592, + 0.0024227735120803118, + -0.004917995538562536, + 0.006581866182386875, + 0.011948001570999622, + 0.003547507571056485, + 0.017362048849463463, + 0.0031688562594354153, + -0.0014089077012613416, + 0.014576525427401066, + 0.015909329056739807, + 0.007596722338348627, + -0.016634179279208183, + -0.017017783597111702, + -9.312808833783492e-05, + 0.0029177339747548103, + -0.0012164306826889515, + 0.013495566323399544, + -0.01208854466676712, + -0.011449649930000305, + -0.00018194229051005095, + -0.0075430916622281075, + 0.009925221092998981, + 0.03179772570729256, + -0.0032385881058871746, + -0.015858367085456848, + -0.020725633949041367, + -0.012689347378909588, + 0.03653770312666893, + 0.001545779057778418, + -0.014713727869093418, + -0.012760521844029427, + -0.007724424824118614, + -0.017290065065026283, + 0.005874434486031532, + -0.00922770518809557, + -0.0011555852834135294, + -0.0017192023806273937, + 0.00126332463696599, + -0.005073497071862221, + -0.007668922655284405, + 0.0036869868636131287, + 0.007253242190927267, + -0.006895751692354679, + 0.0015174918808043003, + -0.013899221085011959, + -0.013713352382183075, + 0.006439151708036661, + 0.012897654436528683, + -0.006772743538022041, + 0.008313876576721668, + -0.0012786311563104391, + -0.009103277698159218, + 0.014164232648909092, + -0.01243753731250763, + -0.03402705490589142, + 0.0041739922016859055, + 0.00554666155949235, + 0.0015596349257975817, + 0.008508019149303436, + 0.008815423585474491, + 0.008657529018819332, + -0.007004355080425739, + 0.001027693273499608, + 0.0026220104191452265, + -0.001303515280596912, + 0.014972086064517498, + -0.01611793227493763, + 0.006275794468820095, + 0.0003382991417311132, + -0.0005522411083802581, + -0.033511724323034286, + -0.012099002487957478, + 0.015050126239657402, + 0.02288169413805008, + -0.007859486155211926, + -0.013425009325146675, + -0.01629457250237465, + 0.01770813949406147, + 0.006552218925207853, + 0.004979318007826805, + 0.009417098015546799, + 0.007604953832924366, + -0.004873595666140318, + 0.003945297095924616, + 0.010244162753224373, + -0.01719311811029911, + 0.0026430469006299973, + -0.0012151396367698908, + -0.016374515369534492, + -0.01351960375905037, + 0.0034766909666359425, + -0.0022439907770603895, + 0.006857955828309059, + -0.009468277916312218, + -0.012287897057831287, + -0.0029027657583355904, + -0.005820307414978743, + 0.01460589561611414, + 0.02638346515595913, + -0.0021367373410612345, + 0.007115981075912714, + 0.009317002259194851, + -0.01720753125846386, + -0.004898436833173037, + 0.0011991310166195035, + -0.006830292753875256, + 0.0014364162925630808, + 0.004360709339380264, + 0.0174479391425848, + 0.01224672980606556, + 0.01569671370089054, + -0.002062009647488594, + -0.016909411177039146, + 0.00919126346707344, + 0.010065224952995777, + 0.003522686194628477, + 0.000924439518712461, + 0.035563793033361435, + -0.001598679693415761, + -0.033493444323539734, + 0.008634492754936218, + -0.007095213979482651, + -0.010191005654633045, + -0.002624878194183111, + 0.0062011959962546825, + -0.014350855723023415, + -0.0009729438461363316, + 0.016346940770745277, + 0.021859856322407722, + 0.0008300472400151193, + -0.010545804165303707, + -0.005420437082648277, + -0.024192312732338905, + -0.0002772273146547377, + -0.016197197139263153, + 0.012101131491363049, + 0.004683041945099831, + -0.001257228315807879, + 0.00914790015667677, + -0.013742441311478615, + -0.010897502303123474, + 0.042796701192855835, + -0.006668216083198786, + 0.013430044054985046, + 0.030256828293204308, + 0.003016733331605792, + 0.0037056980654597282, + 0.004918109625577927, + -0.0024401796981692314, + -0.006717328913509846, + 0.010441160760819912, + -0.017287395894527435, + 0.0042882319539785385, + 0.018092414364218712, + 0.01645304448902607, + -0.009531870484352112, + 0.000842045177705586, + 0.002548521151766181, + 0.008993036113679409, + 0.0023701514583081007, + -0.017281191423535347, + 0.009888207539916039, + 0.006582125090062618, + 0.0107487253844738, + 0.011663243174552917, + 0.016435863450169563, + -0.0023850915022194386, + 0.00868837721645832, + -0.0054269409738481045, + 0.038015950471162796, + 0.0010390414390712976, + 0.00012923713074997067, + -0.0030674876179546118, + -0.005272568669170141, + 0.018177783116698265, + 0.023396441712975502, + 0.007419605273753405, + 0.012696736492216587 + ] + }, + "sad": { + "count": 2, + "norm": 116.87751770019531, + "raw_vector": [ + 2.202162265777588, + 0.8222862482070923, + -1.1194019317626953, + -0.4661663770675659, + -2.4927265644073486, + 0.2781250774860382, + -0.048076778650283813, + -2.110215425491333, + 2.1790263652801514, + -1.5657618045806885, + -0.573366641998291, + 1.6178863048553467, + -0.03855982422828674, + -0.4009435474872589, + 0.20949357748031616, + 1.181572675704956, + 1.1855367422103882, + 1.3768197298049927, + 0.49522149562835693, + 0.848470151424408, + -0.43371710181236267, + 1.2812751531600952, + -0.17941325902938843, + 1.2635194063186646, + 1.5732498168945312, + -2.0319459438323975, + -0.05784936249256134, + 0.5105501413345337, + -0.596635103225708, + -0.6630774140357971, + -0.30342721939086914, + -2.244901418685913, + 0.7594464421272278, + 0.41892099380493164, + -0.7346673607826233, + -0.12435542047023773, + 2.5002121925354004, + -0.5351080894470215, + -1.1217710971832275, + -1.3528923988342285, + 0.9657600522041321, + -1.1820588111877441, + 0.5518918633460999, + -0.9434945583343506, + 1.818239688873291, + 0.34924691915512085, + -0.35216912627220154, + 2.4286749362945557, + -1.16293466091156, + 1.045607089996338, + 0.10490303486585617, + -1.4119925498962402, + -0.05773729085922241, + 1.844110131263733, + 3.630589008331299, + 0.4304770231246948, + 0.21112917363643646, + -0.8802149295806885, + -0.8300175666809082, + -0.8094114661216736, + 0.7474268674850464, + 0.4054446220397949, + -1.0138391256332397, + -0.5726324319839478, + 0.00398445688188076, + 2.637510299682617, + 0.9596340656280518, + -1.2645821571350098, + -1.7196757793426514, + 0.7302829027175903, + 1.63512122631073, + 2.007446765899658, + -1.638816475868225, + -0.5480376482009888, + -1.2117424011230469, + 4.460214138031006, + 0.7023570537567139, + -1.8295345306396484, + 0.8382645845413208, + 0.5579069256782532, + 2.612847328186035, + 1.4731690883636475, + -2.788534641265869, + -3.120326042175293, + 2.2997193336486816, + -0.13768687844276428, + -0.09105869382619858, + -0.6786839962005615, + -0.23360490798950195, + 0.35472190380096436, + 2.4286820888519287, + -1.3281352519989014, + 0.8831294775009155, + 1.9627869129180908, + -2.0634944438934326, + -3.1073403358459473, + -0.16187244653701782, + -0.08678889274597168, + 3.297616481781006, + 0.3382292687892914, + -0.3445799648761749, + 0.05595952272415161, + -1.6234830617904663, + -0.8122413158416748, + -1.4243611097335815, + 1.5690432786941528, + -2.88571834564209, + -2.020620346069336, + -3.1361641883850098, + 0.41191619634628296, + 0.09306824207305908, + 1.575347661972046, + 0.5240049362182617, + 0.569982647895813, + 0.37248361110687256, + 2.256181240081787, + 0.716942548751831, + -1.6449031829833984, + -2.1830310821533203, + -0.7963076829910278, + -2.1290626525878906, + -0.03125190734863281, + 2.224985122680664, + 0.6923859119415283, + -0.6757423877716064, + -1.5177891254425049, + 1.1067909002304077, + -1.216722846031189, + 2.3841614723205566, + -0.1784694790840149, + 2.4348042011260986, + -0.6997851729393005, + 0.7415473461151123, + 0.5600346922874451, + -0.8543621897697449, + 1.1778831481933594, + 1.418593406677246, + -0.6529281735420227, + -0.5175353288650513, + 0.1675911843776703, + 1.6649008989334106, + -1.7010366916656494, + -1.050034523010254, + -0.47968584299087524, + -1.2959465980529785, + -1.7125356197357178, + 0.5128602981567383, + 0.9812071323394775, + 0.4220826029777527, + 0.734123706817627, + -1.6884379386901855, + 0.4150226414203644, + -1.1571022272109985, + 0.8534369468688965, + 1.87807035446167, + 1.3019222021102905, + 2.333944320678711, + -1.3226799964904785, + 1.279087781906128, + -1.018197774887085, + -2.0096588134765625, + 0.41648799180984497, + 0.06990718841552734, + 2.043922185897827, + -0.6840512156486511, + -1.0094974040985107, + 0.38736051321029663, + -3.7629568576812744, + -0.005896817892789841, + -1.9047908782958984, + 2.3828928470611572, + 1.4207444190979004, + -4.066943168640137, + 0.7659083008766174, + -0.6265551447868347, + -0.1524653434753418, + -1.6337926387786865, + 1.3528258800506592, + -0.8472241759300232, + 2.0226221084594727, + 0.31194666028022766, + 0.5673060417175293, + -1.459455132484436, + 0.04424044489860535, + 0.9082766771316528, + -2.0595479011535645, + 0.18549761176109314, + -0.9851144552230835, + 0.7916578054428101, + -0.6798118948936462, + -1.305553674697876, + 1.9215855598449707, + 1.3120990991592407, + 1.7740836143493652, + 1.7161943912506104, + 1.3103668689727783, + -1.2560604810714722, + -0.4211508631706238, + -1.8427820205688477, + -1.7169204950332642, + 1.529706358909607, + 0.7231637835502625, + -1.8337512016296387, + -1.3167874813079834, + 2.5834035873413086, + -0.8494073748588562, + 0.4542178809642792, + 3.051931142807007, + 0.18809455633163452, + -0.07599739730358124, + 0.7296625971794128, + -2.9104223251342773, + 0.4003605842590332, + 0.09156107902526855, + -0.2766740322113037, + 2.107318639755249, + 0.021584123373031616, + -1.7474309206008911, + -0.033403560519218445, + -0.3935758173465729, + -0.48898908495903015, + -0.5296287536621094, + -0.19864459335803986, + -2.1163957118988037, + 0.7620307207107544, + -4.894687175750732, + -2.1282150745391846, + 0.5569998621940613, + -0.6080361604690552, + 1.9035835266113281, + 1.0228536128997803, + -0.049729179590940475, + -2.674288749694824, + -17.598909378051758, + -2.718404769897461, + -2.5282788276672363, + -1.5279512405395508, + -2.5017318725585938, + 0.22703653573989868, + -0.22704476118087769, + -0.5572116374969482, + -1.8667266368865967, + -0.1284237504005432, + -3.118279218673706, + 1.211435079574585, + 0.931282639503479, + 1.185107707977295, + 2.214092254638672, + -2.4422104358673096, + 0.30997490882873535, + -1.910520315170288, + -4.476737976074219, + -1.457700252532959, + 0.3289429247379303, + -1.4346462488174438, + 0.11409983038902283, + -1.1125845909118652, + -2.2891600131988525, + 0.4422009289264679, + 0.6945840120315552, + 0.3939268887042999, + 0.8116828203201294, + 1.740146517753601, + -0.06836970150470734, + 3.2695207595825195, + -0.8860895037651062, + -0.166456401348114, + -0.9593504667282104, + 0.7999147176742554, + 0.5422938466072083, + -2.7074344158172607, + -1.1601999998092651, + -1.7028098106384277, + -1.6039406061172485, + -1.076032280921936, + 0.7162736058235168, + 0.5683332681655884, + 0.3174469769001007, + 0.2542022168636322, + 0.6604134440422058, + -0.631043016910553, + -1.1045198440551758, + 2.1664252281188965, + 0.6576443910598755, + -1.2463129758834839, + 1.236511468887329, + -1.666920781135559, + -0.36763980984687805, + -3.33939790725708, + 2.4229907989501953, + -1.3329048156738281, + -1.2374577522277832, + -3.0857322216033936, + -2.7041714191436768, + -2.3518903255462646, + -0.8412032127380371, + 0.007666856050491333, + 1.451733112335205, + 1.4671006202697754, + -1.1472792625427246, + 2.297271490097046, + -0.05192527920007706, + -1.0094022750854492, + 0.06891247630119324, + -0.7975344657897949, + -0.49301111698150635, + 1.5475066900253296, + -0.02398952841758728, + -0.4893644452095032, + -1.2828166484832764, + -0.5092230439186096, + 0.3066764175891876, + -0.5692118406295776, + -0.19193673133850098, + 0.01346173882484436, + 2.068293809890747, + -0.10491490364074707, + -0.7819151282310486, + -0.9989088773727417, + -0.7096138000488281, + -2.0592620372772217, + -1.076385259628296, + -0.2603534460067749, + 4.1558918952941895, + 0.6539973020553589, + -1.0990439653396606, + -1.762298583984375, + 0.041423652321100235, + -0.01910238340497017, + -1.195569396018982, + -1.927006483078003, + -0.2704496383666992, + 0.05870494991540909, + -0.3119783103466034, + -0.747353732585907, + 1.9707002639770508, + -0.37246382236480713, + -1.1351985931396484, + -0.3217346668243408, + 0.42650294303894043, + 0.014834325760602951, + 1.539534091949463, + -0.7889266610145569, + -2.1463000774383545, + -1.655403971672058, + 0.8136117458343506, + 2.953728675842285, + -2.1495330333709717, + -1.0684083700180054, + -0.887187123298645, + 2.110595464706421, + -0.4657551050186157, + -1.2656503915786743, + 1.2138153314590454, + 0.4053211212158203, + -0.777388334274292, + 1.8852084875106812, + -2.5984926223754883, + 0.37571024894714355, + -2.1766231060028076, + 0.5548579692840576, + -3.4185585975646973, + -0.16820144653320312, + -0.7953115701675415, + 0.2175077199935913, + -0.6073751449584961, + 0.3404797911643982, + 0.25369998812675476, + 0.6059359908103943, + 0.37559783458709717, + -1.4084569215774536, + -0.3972800076007843, + 1.2285516262054443, + -0.009248077869415283, + 2.7776694297790527, + -1.5099596977233887, + -2.3134448528289795, + -1.8858217000961304, + 0.6162705421447754, + 0.4651588797569275, + -1.0419789552688599, + 1.1651113033294678, + -0.8056378364562988, + 0.21366766095161438, + -0.6389751434326172, + 2.0730040073394775, + -0.9239916801452637, + -1.389581561088562, + -1.9560916423797607, + 0.5512153506278992, + -0.20766788721084595, + 1.4282376766204834, + -0.2583736479282379, + -0.968093752861023, + 0.2358868271112442, + -0.9026088714599609, + 0.3131972551345825, + 0.6951804161071777, + 1.5597549676895142, + 1.727203130722046, + 0.3157427906990051, + -1.0968128442764282, + 0.3956413269042969, + 1.125648021697998, + -1.2270078659057617, + 1.5293116569519043, + 0.19354967772960663, + 0.9647448658943176, + -0.41575583815574646, + 0.654676079750061, + 0.39218902587890625, + 1.230802059173584, + -0.5354741215705872, + -1.5589032173156738, + 2.107501983642578, + -0.19008570909500122, + -1.5476500988006592, + -0.17290574312210083, + -2.824845790863037, + -3.662550687789917, + -0.964909553527832, + 0.0017335712909698486, + 1.472255825996399, + -1.8954894542694092, + 0.3042115569114685, + 2.3487915992736816, + -0.6808226704597473, + -0.8761868476867676, + -0.20866715908050537, + -2.612013101577759, + -0.3936910331249237, + 0.9766654372215271, + -0.15640729665756226, + -1.270412564277649, + 0.795246958732605, + 0.2485828399658203, + -0.6566681265830994, + 0.06462223827838898, + 1.6061906814575195, + 0.9514067769050598, + -0.6591561436653137, + -0.41665926575660706, + 1.0827175378799438, + 0.03574487566947937, + 0.23912233114242554, + 1.2690889835357666, + 0.8438231348991394, + -1.9926800727844238, + -0.4226083755493164, + 3.2294633388519287, + 2.253725528717041, + -0.34700047969818115, + 0.974091112613678, + -0.5959718227386475, + 1.2730177640914917, + 1.7333399057388306, + 1.8688066005706787, + -0.9449523091316223, + 1.4312727451324463, + -0.5615783333778381, + 0.11883747577667236, + 0.16182327270507812, + -0.8514395356178284, + 0.8329398036003113, + 0.517245352268219, + 1.2911708354949951, + -0.5741878747940063, + -2.066518783569336, + -0.17275381088256836, + 0.40156081318855286, + 1.5635528564453125, + -0.558462381362915, + 1.2299764156341553, + 2.115496873855591, + -0.4245254099369049, + 1.1146275997161865, + 0.7652586102485657, + -2.0983290672302246, + 1.3933788537979126, + 0.6654527187347412, + 0.43642741441726685, + -0.9663207530975342, + -0.25220581889152527, + -0.4326009154319763, + 0.7102327942848206, + -0.5934098958969116, + -2.1249914169311523, + -1.6728572845458984, + -0.005315899848937988, + -0.9074590802192688, + 0.8648744821548462, + 0.23659725487232208, + 2.347637891769409, + 0.8624638915061951, + -0.441524475812912, + 1.3105236291885376, + -0.3602648973464966, + -0.13843077421188354, + 0.25562626123428345, + 2.662810802459717, + 0.09807932376861572, + -2.2937443256378174, + -1.284447193145752, + 1.440427303314209, + -0.12801581621170044, + -1.1307406425476074, + 2.429339647293091, + 1.4217807054519653, + 1.319490671157837, + -0.5899657607078552, + 1.5765190124511719, + 0.7948331236839294, + 0.0811741054058075, + 0.9769692420959473, + 0.03293165564537048, + -0.5990237593650818, + -0.3190390467643738, + -0.20620188117027283, + -1.5482778549194336, + 0.35011786222457886, + -0.7803761959075928, + 0.026834487915039062, + -0.9370435476303101, + 1.6131837368011475, + 0.44312214851379395, + 0.2861824631690979, + 0.10159333050251007, + 1.4912889003753662, + 0.17887704074382782, + -1.3172850608825684, + 1.0787943601608276, + 1.1980124711990356, + 0.835223913192749, + 2.3524484634399414, + -0.3793383836746216, + -0.6812363862991333, + -1.8957233428955078, + 0.48950108885765076, + 0.852212131023407, + 1.7505059242248535, + 0.2290041744709015, + -0.004285275936126709, + -1.5526927709579468, + 1.3963840007781982, + 1.532642126083374, + 2.9242053031921387, + -0.45046424865722656, + 0.01819324493408203, + 0.04499266296625137, + 1.366955280303955, + 0.0935504212975502, + -1.8626608848571777, + 3.0589630603790283, + -1.1831520795822144, + -1.6144440174102783, + -1.5295875072479248, + 0.34291160106658936, + 0.09314274787902832, + -0.5776413083076477, + 1.2794827222824097, + -1.7927271127700806, + -0.30791181325912476, + 0.8117685317993164, + 1.7683639526367188, + -0.13936848938465118, + -0.4297100603580475, + -0.7644118666648865, + 0.7244253158569336, + -1.1026036739349365, + 0.12061920762062073, + 0.43998983502388, + -1.9748501777648926, + 0.15274685621261597, + -1.3342909812927246, + 0.9314823746681213, + 0.0021992027759552, + -0.6712062358856201, + -0.9434660077095032, + -1.2322735786437988, + -1.3958827257156372, + 2.746605396270752, + -0.6994030475616455, + -0.08445262908935547, + 0.6809826493263245, + -0.45452532172203064, + 0.5891176462173462, + -2.855275869369507, + -1.478931188583374, + 0.9354408979415894, + -1.1506671905517578, + -0.607465386390686, + 1.1084582805633545, + 0.9675952792167664, + -0.522223711013794, + -0.9814595580101013, + -1.3284332752227783, + 0.13972224295139313, + 0.05936002731323242, + -0.8567346334457397, + -0.910536527633667, + -0.9462418556213379, + -0.8148801326751709, + 1.1191293001174927, + -1.7494398355484009, + 0.4188246428966522, + -0.15194860100746155, + 0.6347723603248596, + 0.6383093595504761, + -1.0460823774337769, + -2.8872976303100586, + -0.7293606996536255, + 0.3451750874519348, + 0.760718822479248, + 0.6380366086959839, + 1.857257604598999, + -3.4968814849853516, + 1.2265501022338867, + 0.3865346908569336, + -0.03950577974319458, + 0.5320318937301636, + -0.5711805820465088, + 0.9474925994873047, + -2.190415620803833, + 0.03136984258890152, + 0.26564526557922363, + 0.27137723565101624, + -1.2067323923110962, + -1.5777097940444946, + 0.2549847960472107, + 0.30354732275009155, + -0.78172367811203, + -1.0851598978042603, + 1.2660638093948364, + 0.9956835508346558, + 1.3168519735336304, + 2.829291582107544, + 0.9766936302185059, + -0.04689817130565643, + -1.0116931200027466, + 1.506651520729065, + -2.3569982051849365, + 0.35840994119644165, + 0.671513557434082, + -0.05944153666496277, + 0.3574519157409668, + 0.47494247555732727, + 0.2869192361831665, + 0.6606450080871582, + 3.12498140335083, + -1.197573184967041, + 0.711708128452301, + -0.2330097258090973, + -0.680257260799408, + 0.20117522776126862, + 1.286704182624817, + 2.2677664756774902, + -1.9655914306640625, + 1.066009283065796, + 0.879859209060669, + 1.923191785812378, + 0.7039495706558228, + 1.0852586030960083, + 0.21118897199630737, + -2.6974685192108154, + 0.41503190994262695, + -2.062255620956421, + 0.6585648059844971, + -0.32530659437179565, + 1.5112478733062744, + 0.5743651986122131, + 1.3757344484329224, + -1.0919699668884277, + 0.8088774681091309, + 0.764816403388977, + -0.026185713708400726, + 0.3773826062679291, + -0.33962637186050415, + 2.2243764400482178, + 0.24087423086166382, + 0.3573193848133087, + -1.7293614149093628, + -1.3802545070648193, + -2.027672290802002, + -1.929301381111145, + -1.276511788368225, + 0.5500454902648926, + -0.6295511722564697, + 0.2553551197052002, + 1.0468533039093018, + -0.5360347032546997, + -8.642521858215332, + 0.6862462759017944, + -2.6390540599823, + 1.0396748781204224, + -1.4249448776245117, + 0.542290985584259, + 0.00916329026222229, + 1.8429529666900635, + 0.14029014110565186, + 1.1229453086853027, + 0.8608592748641968, + -0.38681116700172424, + 3.0451149940490723, + -0.4979754090309143, + -0.44066911935806274, + 0.5686005353927612, + -0.019208339974284172, + -0.22835946083068848, + -2.021456241607666, + -0.2105269730091095, + -0.30834534764289856, + 1.0175013542175293, + -2.6563243865966797, + 0.1465429961681366, + -1.4779677391052246, + -1.940312385559082, + -4.081613063812256, + -0.8226498365402222, + 0.7924454212188721, + 1.9210712909698486, + 0.16308218240737915, + -1.649961233139038, + 0.2450733780860901, + 0.4082438051700592, + -0.32473570108413696, + 0.6903833746910095, + -6.247142791748047, + 0.5806931257247925, + -0.43356478214263916, + -0.37895721197128296, + 0.7691366076469421, + 1.2361464500427246, + -0.7184984683990479, + 0.7450910806655884, + 1.607038974761963, + 0.8772575855255127, + 2.011356830596924, + -1.3215914964675903, + 0.16089363396167755, + -0.8112472891807556, + -0.08354198932647705, + 1.4115568399429321, + 0.9738466143608093, + 1.1678555011749268, + -0.03871241211891174, + -0.7849048376083374, + -1.318109393119812, + -1.8141884803771973, + 2.1225903034210205, + 1.7230432033538818, + 1.6542236804962158, + -0.5034679174423218, + 0.09251871705055237, + 0.7891172766685486, + -1.4842052459716797, + -1.5783416032791138, + 0.918738842010498, + 0.24024119973182678, + -1.8452184200286865, + -0.049807727336883545, + 1.7255128622055054, + 0.1323453187942505, + 0.9314438104629517, + -0.6372841596603394, + 0.9873661994934082, + -0.5615286827087402, + 1.0685853958129883, + 2.00742244720459, + -2.701319694519043, + 1.2490534782409668, + 2.2165298461914062, + 0.6970278024673462, + -0.5929672122001648, + -1.8612545728683472, + 2.1055173873901367, + 0.6942352652549744, + 2.528508186340332, + -0.20706111192703247, + -2.391442060470581, + 0.8132809400558472, + 2.1228456497192383, + -0.2130080610513687, + 1.12428617477417, + 1.2548258304595947, + -0.15415500104427338, + 0.3042665123939514, + 2.1671676635742188, + 0.9984620809555054, + -1.7599024772644043, + 0.5737239718437195, + 1.936926007270813, + -0.5033708810806274, + -2.6267805099487305, + -2.4199156761169434, + 3.2343363761901855, + 2.3355751037597656, + 0.1941586583852768, + -1.1082864999771118, + 0.10191375017166138, + 0.42585474252700806, + -1.4513845443725586, + 0.5400259494781494, + 0.6917604207992554, + -1.1754858493804932, + -1.1942166090011597, + -0.8767837882041931, + 0.4382505714893341, + -0.3572218120098114, + -0.2305816411972046, + -7.548944473266602, + -0.8183099031448364, + 1.7775496244430542, + -0.7559845447540283, + 2.4731595516204834, + -1.2839797735214233, + 0.3759424090385437, + 0.47840744256973267, + 0.1394278109073639, + -0.6448291540145874, + -0.5264429450035095, + -1.0033717155456543, + 1.3415518999099731, + 1.1168739795684814, + 0.5680845975875854, + 0.3312551975250244, + -0.9265385866165161, + 0.9363319873809814, + -1.0373111963272095, + 0.5894474387168884, + 1.107460618019104, + 0.3663056492805481, + -1.006975769996643, + 0.10917489975690842, + 1.38672935962677, + 0.49101242423057556, + -0.7865864038467407, + -0.18538567423820496, + -4.37818717956543, + 1.9262956380844116, + -1.6053255796432495, + -0.23035931587219238, + -0.7376282215118408, + -2.6349895000457764, + -2.9542903900146484, + 0.4755842387676239, + 0.1302991509437561, + 2.240576982498169, + -0.1286763846874237, + -1.5779879093170166, + 1.4742008447647095, + 0.3645159602165222, + 2.223412275314331, + -0.09369730949401855, + -2.310612440109253, + -1.2225391864776611, + -1.9965907335281372, + -0.4003337621688843, + 0.3609744906425476, + 3.413024663925171, + -0.62309330701828, + -2.2902469635009766, + -1.3342056274414062, + 0.784875750541687, + 0.8222688436508179, + -1.9468110799789429, + 2.277000904083252, + 0.012617722153663635, + 0.011140450835227966, + 1.7372426986694336, + -0.6884283423423767, + 1.3287107944488525, + -1.7047780752182007, + 0.6226375102996826, + -1.6126641035079956, + -0.2304050475358963, + -0.5344106554985046, + 6.410670757293701, + -1.8198130130767822, + -1.1953634023666382, + 0.6882920265197754, + 0.9246503114700317, + 1.5425633192062378, + -1.5344905853271484, + 1.240736961364746, + -1.6674647331237793, + 1.2638994455337524, + -0.3028886318206787, + -1.5594819784164429, + 3.0987303256988525, + -1.112141489982605, + -0.17899705469608307, + -1.123971700668335, + -0.5232278108596802, + -2.236619710922241, + 0.7825971245765686, + 0.09494155645370483, + -0.11136060953140259, + 0.9393453001976013, + -0.5786705017089844, + -1.2617981433868408, + -2.796703815460205, + -2.064699649810791, + -0.9194715619087219, + 2.1670329570770264, + -0.9654829502105713, + -0.6913074851036072, + 0.57936692237854, + -2.110238552093506, + 2.855680465698242, + -1.825964093208313, + -2.6859183311462402, + 5.339083194732666, + -1.5721840858459473, + -0.014499068260192871, + -0.6096140146255493, + 1.517575740814209, + -1.7957618236541748, + -0.34805530309677124, + -0.8067955374717712, + -1.7346246242523193, + 1.9310797452926636, + -0.10905757546424866, + 2.572038173675537, + -0.8062739968299866, + -0.5742589831352234, + -1.175756573677063, + -0.5293748378753662, + 1.3043029308319092, + 1.7253177165985107, + 1.1993488073349, + -1.5377681255340576, + -2.157259702682495, + 0.26319780945777893, + -1.334725260734558, + -1.044964075088501, + -1.149217963218689, + -0.06671860814094543, + -0.9092877507209778, + 0.6710479855537415, + -0.6412039995193481, + -1.3731205463409424, + -0.6090915203094482, + 3.153129816055298, + -0.5695823431015015, + 1.1625490188598633, + -0.7673304677009583, + 0.4906432032585144, + 0.8765686750411987, + 0.20643314719200134, + 0.1526092290878296, + 1.6593844890594482, + -0.4511041045188904, + 0.8047662973403931, + -1.6046254634857178, + -0.28272315859794617, + -0.009292751550674438, + -0.785057544708252, + -2.3297243118286133, + 0.0822598934173584, + -1.463047981262207, + -0.6066085696220398, + -1.8393663167953491, + -2.2684290409088135, + -2.5044569969177246, + 0.34588414430618286, + -1.157261610031128, + 1.6044564247131348, + -1.939445972442627, + 0.5259479284286499, + -2.822666883468628, + -0.14463672041893005, + 0.3324298858642578, + -1.4996132850646973, + -1.0647251605987549, + -0.351412296295166, + -0.28656259179115295, + -0.27807527780532837, + 2.4836928844451904, + 0.6493551731109619, + -2.0644681453704834, + 0.18572519719600677, + -1.044937252998352, + 0.19326899945735931, + 1.6478184461593628, + 1.5732793807983398, + -1.3355885744094849, + -0.495022177696228, + -1.8649318218231201, + 0.6403355002403259, + -5.35944938659668, + 0.617670476436615, + 0.05696180462837219, + 1.2414507865905762, + 0.42461463809013367, + -0.5313944816589355, + 0.8216506838798523, + 0.46890056133270264, + 1.2486515045166016, + -0.9291110634803772, + -0.6582796573638916, + 2.082728147506714, + -0.5592825412750244, + 1.2346683740615845, + -1.0007343292236328, + 1.0091912746429443, + -2.383845567703247, + -0.3255288302898407, + 0.9713667035102844, + -0.5681814551353455, + -0.08371815085411072, + -1.1851786375045776, + 1.421293020248413, + 0.08824986219406128, + -2.825335741043091, + -2.4580636024475098, + 0.4377795457839966, + -0.8620872497558594, + 0.6610462069511414, + 1.7976574897766113, + 0.9990750551223755, + 1.726818323135376, + 0.20803602039813995, + -0.28331929445266724, + 1.2934997081756592, + -0.0811164379119873, + 0.35044750571250916, + -1.0079017877578735, + 2.0474181175231934, + 1.678559422492981, + -1.2453951835632324, + 0.20342928171157837, + 1.425318956375122, + 0.4941587448120117, + -0.26290005445480347, + -1.6425819396972656, + 2.6246719360351562, + -0.06524515151977539, + 0.9687263369560242, + -0.20503902435302734, + -1.1263365745544434, + -2.7812540531158447, + -2.2964117527008057, + 0.8716908693313599, + -3.372894287109375, + 0.8163764476776123, + -0.7346305847167969, + -0.4887235462665558, + -1.795215129852295, + 0.2091311514377594, + 0.4161071181297302, + -1.4973677396774292, + -0.8196881413459778, + 1.4040660858154297, + -0.012000560760498047, + 0.10995227843523026, + 1.035208821296692, + -0.2215576469898224, + 1.4826009273529053, + 0.4993355870246887, + 0.15939725935459137, + 1.2384693622589111, + 1.7046161890029907, + -1.7247432470321655, + -1.3833125829696655, + 0.6949379444122314, + 0.9925379753112793, + -1.5835506916046143, + 0.9896809458732605, + 0.2888492941856384, + 1.8577909469604492, + -0.14394165575504303, + 1.8393504619598389, + -0.879743754863739, + -0.6571454405784607, + -0.4221305251121521, + -0.014809586107730865, + 1.0911593437194824, + 0.22953632473945618, + -0.46532589197158813, + 1.101415753364563, + 1.268175721168518, + -3.2352006435394287, + 0.14341604709625244, + -0.5770713090896606, + 0.06521084904670715, + -3.2161765098571777, + -1.4281673431396484, + 1.0539699792861938, + 0.8353620171546936, + -0.11922173202037811, + -1.3638412952423096, + -0.6055865287780762, + 0.53834468126297, + -0.012319810688495636, + 1.4083181619644165, + -0.3285016119480133, + -2.817746162414551, + 2.7027316093444824, + 0.9443749189376831, + 0.27078068256378174, + -2.3280186653137207, + 1.6626288890838623, + -0.09243303537368774, + -0.9414297938346863, + 0.5873485803604126, + -1.9594426155090332, + 0.13722378015518188, + -0.7572367787361145, + 1.8467488288879395, + 0.48918604850769043, + 1.3239097595214844, + -1.4364604949951172, + -4.003635883331299, + 1.0986363887786865, + 0.8270857930183411, + 0.422088086605072, + -1.382169485092163, + -1.8244860172271729, + 0.5380697250366211, + -0.6390444040298462, + 0.5216661095619202, + -2.0980329513549805, + 1.3101553916931152, + 2.401578187942505, + 1.156829833984375, + -0.5789215564727783, + -0.18940304219722748, + -0.31857362389564514, + 2.1718223094940186, + -1.8480874300003052, + -0.5976249575614929, + 0.017200708389282227, + 1.2536823749542236, + -0.2605289816856384, + 1.620068073272705, + -0.200791597366333, + 1.4286303520202637, + 2.4454894065856934, + 0.7482945322990417, + -1.6432865858078003, + -0.38784897327423096, + 0.11231240630149841, + -1.1550352573394775, + -0.08848407864570618, + -0.4359595477581024, + 0.9518820643424988, + 1.825478434562683, + -0.24305123090744019, + 0.1753903329372406, + 0.12549206614494324, + -2.2104859352111816, + 3.2731902599334717, + 0.5569533705711365, + -0.6557182669639587, + -1.7219759225845337, + -1.1762442588806152, + 0.4583672285079956, + -1.810978651046753, + 1.3157572746276855, + -0.6230331063270569, + -1.2461109161376953, + 1.7967393398284912, + -9.064737319946289, + 1.6701105833053589, + -0.10008494555950165, + 1.2230751514434814, + -1.7821879386901855, + 1.5903581380844116, + 0.34594982862472534, + 2.621464729309082, + 0.05010335147380829, + 0.26097163558006287, + 2.2666239738464355, + -0.8986729383468628, + 1.2303602695465088, + 0.07278790324926376, + 1.4638972282409668, + 0.7589184641838074, + -0.7452494502067566, + 0.26536744832992554, + -1.6325621604919434, + 1.9153289794921875, + -0.16663187742233276, + 1.4574898481369019, + 0.5578275918960571, + -0.3258889317512512, + 0.7262039184570312, + -0.9577658176422119, + 1.1689562797546387, + -0.37652963399887085, + 1.8394811153411865, + 1.5435945987701416, + -0.45482051372528076, + 0.20068266987800598, + 0.5760940313339233, + 0.8949965834617615, + -1.8934630155563354, + -1.2591884136199951, + -0.6001554727554321, + 1.1290957927703857, + 1.0727875232696533, + -0.14039504528045654, + -0.12695899605751038, + -0.1714526116847992, + 0.4130830466747284, + 0.5095750689506531, + -1.6732269525527954, + -0.2041930854320526, + -0.520060658454895, + 0.5824084281921387, + 1.3508846759796143, + 1.251211166381836, + 0.3718268573284149, + -0.7301700711250305, + 3.1095571517944336, + 0.8219282627105713, + 0.2863561511039734, + -0.0688183531165123, + -1.816846251487732, + -1.9839742183685303, + -0.133980393409729, + 1.258070707321167, + 0.03673860430717468, + -0.2020416408777237, + 0.266295850276947, + 1.2853691577911377, + 0.7220067381858826, + -3.203916072845459, + -2.109379529953003, + 1.1203655004501343, + 0.7854123115539551, + -3.573180913925171, + -1.4470951557159424, + 0.8437933325767517, + 0.4209524989128113, + 2.0265486240386963, + -0.9357914924621582, + 1.7164840698242188, + -0.7767876386642456, + -0.767391562461853, + -1.413980484008789, + -1.3519023656845093, + -0.34631794691085815, + -1.9612969160079956, + -0.02902078628540039, + 0.009454190731048584, + 0.13941481709480286, + 1.6050055027008057, + -0.023876309394836426, + -0.19560325145721436, + 0.22918900847434998, + -2.4336228370666504, + -2.5198676586151123, + 1.9890371561050415, + 0.42369168996810913, + 2.164285659790039, + 0.4514768123626709, + -0.8430335521697998, + 0.6390218138694763, + -4.318699359893799, + 0.42950743436813354, + 1.662088394165039, + 1.462641954421997, + -0.6069263219833374, + 0.9834133386611938, + 0.4148824214935303, + -0.07970046997070312, + -0.008384659886360168, + 0.044516026973724365, + 0.44668734073638916, + 1.6917001008987427, + -1.0211447477340698, + 0.27068811655044556, + -2.3060171604156494, + -0.7920690178871155, + -0.5111706256866455, + -0.7905311584472656, + 2.61733341217041, + -0.2581554353237152, + 2.260446548461914, + -0.18422532081604004, + -0.9849153161048889, + -0.9647733569145203, + 0.14229054749011993, + -2.0724709033966064, + -0.5410408973693848, + -0.29915207624435425, + -1.1223959922790527, + -0.062207043170928955, + -1.9413259029388428, + -1.5116066932678223, + 0.1494680643081665, + 1.3064782619476318, + 0.23330029845237732, + 1.0492757558822632, + -0.42653024196624756, + 1.2130934000015259, + 1.4733415842056274, + -2.756765842437744, + 1.2869271039962769, + -2.288693904876709, + -1.3245230913162231, + 0.8657527565956116, + -2.2905876636505127, + -1.6617733240127563, + 0.4811902940273285, + -1.7738075256347656, + 2.7800099849700928, + -0.09688436985015869, + -3.779215097427368, + 0.8981345891952515, + -0.5196584463119507, + 0.02266329526901245, + 0.4416276216506958, + -0.6960489153862, + 1.1454977989196777, + -0.8715605139732361, + 0.1741458922624588, + -0.42474040389060974, + -1.0976521968841553, + 0.00357818603515625, + -0.3007507026195526, + -0.38195329904556274, + -0.6544321775436401, + 0.1033281683921814, + 1.0405117273330688, + -0.3667464256286621, + 0.8747658729553223, + 0.2317579686641693, + -0.20820659399032593, + 1.3207193613052368, + 5.289745330810547, + 5.445304870605469, + -2.017432689666748, + 2.904064893722534, + 1.7430447340011597, + 1.3488855361938477, + -0.26287150382995605, + 2.1957335472106934, + -2.010468006134033, + -0.7768085598945618, + 0.34291398525238037, + -2.9979641437530518, + 0.6851015686988831, + 0.7010288238525391, + 0.7345890402793884, + 0.3263671398162842, + -1.7470043897628784, + -0.859269380569458, + -0.5301311016082764, + 0.0074974894523620605, + 0.5268678069114685, + -0.5185939073562622, + 1.2845600843429565, + -0.04953911900520325, + 0.9322839975357056, + -2.842789649963379, + 1.0651874542236328, + -0.03724685311317444, + 0.6778639554977417, + 6.625040054321289, + 1.0221151113510132, + -0.5240577459335327, + 0.4121532440185547, + 0.3214525580406189, + 1.4994161128997803, + 0.6323477625846863, + -0.6414327621459961, + -0.7927892804145813, + -0.2105787992477417, + -1.100022792816162, + 1.0362215042114258, + -0.3587336540222168, + 1.3587002754211426, + 5.170585632324219, + 2.4494171142578125, + -1.9185447692871094, + 1.3784608840942383, + -0.521409273147583, + 0.2638629078865051, + 0.8519834876060486, + 1.649191975593567, + -1.0022363662719727, + 0.22948944568634033, + -1.261857509613037, + 1.6891804933547974, + -0.4874148368835449, + 0.3047294616699219, + -2.213615894317627, + -1.3897079229354858, + 0.35479241609573364, + 1.6357717514038086, + -0.22147971391677856, + -1.8176496028900146, + -1.6301124095916748, + -0.7425341606140137, + 1.026883840560913, + 0.2665747404098511, + -0.7567054033279419, + -0.588448166847229, + -1.13665771484375, + 1.335470199584961, + 0.4730607271194458, + -0.23887118697166443, + 0.5160154104232788, + -0.6473850011825562, + -0.5602500438690186, + -1.1697043180465698, + -0.4371389150619507, + 0.9060523509979248, + 0.2788160443305969, + -0.2653048038482666, + -0.03056029975414276, + 2.3415651321411133, + -0.42045217752456665, + 0.029985010623931885, + -2.586890459060669, + -1.3003040552139282, + 1.844559907913208, + -0.7905354499816895, + 2.8543732166290283, + -0.8608105778694153, + 1.4817084074020386, + 0.5022565722465515, + 0.9887441992759705, + -1.134403109550476, + 0.2889345586299896, + 0.17733938992023468, + -0.8157544136047363, + 0.6654131412506104, + 0.7992285490036011, + -2.0592293739318848, + 0.7082332968711853, + 3.1031224727630615, + -0.3568319082260132, + -0.03589135408401489, + 0.9436941742897034, + -1.5165631771087646, + -1.6497405767440796, + 1.3051236867904663, + -1.6115578413009644, + 0.8015930652618408, + 2.992032289505005, + 1.6436463594436646, + 1.3964359760284424, + 0.5749694108963013, + 0.7632206082344055, + -1.671523928642273, + 1.578178882598877, + 2.429377317428589, + -2.743730306625366, + -0.27110016345977783, + -1.0403612852096558, + 0.7221317291259766, + 2.6492865085601807, + 0.46711447834968567, + -0.6860220432281494, + 0.07012215256690979, + 0.6259497404098511, + 1.5515799522399902, + 0.29468834400177, + 1.093465805053711, + -0.43943217396736145, + 4.300061225891113, + -0.06396929919719696, + 0.5598282217979431, + 0.268596887588501, + 3.0848026275634766, + -1.5273525714874268, + -1.3112120628356934, + -1.728031873703003, + 1.386115312576294, + -0.21682199835777283, + -0.005702853202819824, + -0.01855647563934326, + -1.9349703788757324, + 0.6954329013824463, + -0.08395586907863617, + 0.7063074111938477, + -1.7505595684051514, + -1.3706930875778198, + 3.3681280612945557, + -2.418107509613037, + -0.9409196972846985, + 1.7210698127746582, + -0.7057955265045166, + -1.3210580348968506, + 2.687523603439331, + -0.898792564868927, + -0.42579925060272217, + 0.3976200819015503, + -0.8188081383705139, + 0.819542646408081, + -0.6931259036064148, + -1.6116269826889038, + -0.08216020464897156, + -0.8004223704338074, + 1.9595544338226318, + 1.0124174356460571, + -0.019034206867218018, + 1.3291430473327637, + 1.1856634616851807, + 0.6929963231086731, + 0.7051941156387329, + -1.7977938652038574, + 1.7206660509109497, + 1.300392508506775, + -0.0628584772348404, + 0.37839025259017944, + 0.544996440410614, + 0.3882230520248413, + 1.2813822031021118, + 0.1170499324798584, + -0.29014772176742554, + 0.56041419506073, + 0.799385666847229, + 0.45268476009368896, + -2.426238775253296, + -0.5722777843475342, + 0.04832962900400162, + -1.687708854675293, + 0.4725099205970764, + 1.7208435535430908, + -2.792370319366455, + 2.0100936889648438, + 1.0106151103973389, + 0.4053001403808594, + 2.8278982639312744, + -0.01793178915977478, + -0.8403742909431458, + -1.5443979501724243, + -0.011845260858535767, + 2.1382217407226562, + 0.17540672421455383, + 0.8261005282402039, + -1.008311152458191, + 1.1807044744491577, + -2.239309549331665, + 1.7483296394348145, + -0.6447439193725586, + 0.8344118595123291, + 0.33667999505996704, + -1.3229917287826538, + 1.3394935131072998, + 1.6997768878936768, + 1.6130048036575317, + 0.32078906893730164, + 0.20606864988803864, + -0.6751167178153992, + 0.20214122533798218, + 1.5129261016845703, + -0.18917441368103027, + 1.7291229963302612, + -0.5189366340637207, + 1.5009082555770874, + -0.6595921516418457, + -0.9240723848342896, + 1.3492660522460938, + 1.5647321939468384, + 1.0747814178466797, + -0.8398885130882263, + -1.3452398777008057, + 0.9374707937240601, + 0.7553936243057251, + 0.9612445831298828, + 0.6745554208755493, + -1.267677664756775, + 0.8667274713516235, + 0.15164434909820557, + -0.8815717101097107, + 1.0822076797485352, + -0.39389386773109436, + 0.18444384634494781, + -1.3688069581985474, + -0.3757067918777466, + -0.6372307538986206, + 0.8460502624511719, + -2.63566517829895, + -0.04836541414260864, + 0.5937079191207886, + -0.20833754539489746, + -0.5655914545059204, + 0.8936423659324646, + -2.6480352878570557, + 1.8581310510635376, + -1.519014835357666, + -0.11300109326839447, + -0.39511963725090027, + -0.9624050259590149, + -0.8513500690460205, + -1.2660497426986694, + -0.13433006405830383, + -0.8003386855125427, + -3.5573291778564453, + -0.01484149694442749, + 0.7430214285850525, + 1.2597960233688354, + 1.0539066791534424, + 1.4009288549423218, + 1.209160327911377, + 1.126619577407837, + -0.3527863323688507, + 0.3905903100967407, + 0.8198961615562439, + -2.3497965335845947, + 1.4500555992126465, + -1.21979820728302, + -0.33527231216430664, + 0.7280173301696777, + 0.8677828311920166, + 0.9629364013671875, + -0.473659873008728, + -0.6574766635894775, + -1.349461317062378, + -1.3317581415176392, + -0.5434303283691406, + 1.3148212432861328, + 0.8103382587432861, + 1.1007184982299805, + -2.6110966205596924, + 0.9508064985275269, + -1.0784494876861572, + 0.29595381021499634, + 1.6157182455062866, + 1.1028120517730713, + 2.58540940284729, + -0.9658228158950806, + -1.710038661956787, + 2.364647150039673, + -0.08872491121292114, + 0.2441386580467224, + -0.18227550387382507, + -4.178635597229004, + -0.44277244806289673, + 0.1056811511516571, + 3.1360349655151367, + -1.6286594867706299, + -0.8798096179962158, + -0.873573899269104, + 1.8345742225646973, + 0.1163097620010376, + -0.020288825035095215, + 3.450930595397949, + -0.6588772535324097, + -0.1129029244184494, + -2.2438833713531494, + 0.9003129601478577, + 2.086688280105591, + -0.6454314589500427, + 0.7157722115516663, + -1.0876678228378296, + -0.3395746350288391, + 0.10411989688873291, + 0.6061726212501526, + 1.572563648223877, + -2.181648015975952, + 1.243549108505249, + -4.19863224029541, + 3.0267724990844727, + 0.4793831706047058, + 0.9205071926116943, + -2.230381727218628, + 1.0056922435760498, + 1.4158304929733276, + 0.13851840794086456, + 1.6363205909729004, + 1.5846370458602905, + 0.7057690620422363, + -0.11278504133224487, + -0.8199576139450073, + -0.6434643864631653, + -1.051953911781311, + -0.13049772381782532, + -0.0033196061849594116, + -1.4458688497543335, + 0.15401118993759155, + -0.5137047171592712, + 1.8643540143966675, + -0.6342823505401611, + 0.8474975824356079, + -0.8038358688354492, + -0.08507505059242249, + 2.6656246185302734, + 0.7755565047264099, + 1.5831447839736938, + 1.6369906663894653, + -1.4910815954208374, + 1.458493947982788, + 2.7681844234466553, + -0.005073811858892441, + -0.2764768898487091, + -1.7422269582748413, + -0.9191506505012512, + 1.4792007207870483, + -0.3741123080253601, + 0.04570390284061432, + -1.2156221866607666, + 1.2536718845367432, + -2.2638540267944336, + 1.5449192523956299, + 3.2792601585388184, + -1.7823755741119385, + -2.0518317222595215, + -0.25623393058776855, + -2.8650949001312256, + -0.5025882720947266, + -0.9623346924781799, + -0.5512124300003052, + -2.277536153793335, + -0.6956908106803894, + 2.142855167388916, + -0.8097055554389954, + -0.1287209540605545, + 0.5399661064147949, + 1.5447163581848145, + 0.4584386944770813, + -2.4613335132598877, + 0.07092791795730591, + 2.9163386821746826, + 1.0854167938232422, + 0.8463367223739624, + 3.41459059715271, + -1.1700173616409302, + -0.31313011050224304, + 2.147813081741333, + 0.6997694373130798, + -2.32879638671875, + -1.6692140102386475, + 0.991055428981781, + 3.032487392425537, + -0.35799136757850647, + -1.1637094020843506, + -1.6777100563049316, + 0.6870167255401611, + -2.7213633060455322, + 3.346060037612915, + 0.5015690326690674, + -0.817298948764801, + 0.28068169951438904, + -0.6575341820716858, + 0.4813119173049927, + 1.3476874828338623, + -0.8059898614883423, + 1.9446390867233276, + 1.2173724174499512, + 0.3518982529640198, + 0.24558672308921814, + -0.04422876238822937, + -0.47580206394195557, + -0.3906358480453491, + -1.9867699146270752, + -0.02125139907002449, + 0.18416061997413635, + 1.3358995914459229, + 2.579554319381714, + 0.3144545555114746, + 0.6073219776153564, + 1.847221851348877, + -0.7195223569869995, + 1.3892004489898682, + -0.09115481376647949, + 1.5567631721496582, + 0.5147087574005127, + 2.1336045265197754, + -0.7636889815330505, + -0.8496363162994385, + 0.884685754776001, + -2.00441575050354, + 1.3342108726501465, + 0.6470290422439575, + -0.491946816444397, + 0.3093010485172272, + -0.004018843173980713, + 0.11608271300792694, + 1.0291157960891724, + 0.19166430830955505, + 0.7412923574447632, + 1.7242250442504883, + 1.3786017894744873, + -0.7332393527030945, + 1.551391839981079, + -1.0838221311569214, + -1.3842017650604248, + 6.118515968322754, + -0.22707271575927734, + 0.615105390548706, + -1.5329116582870483, + 0.08421504497528076, + 0.4138675332069397, + 0.9056323766708374, + 1.9818273782730103, + -1.7057690620422363, + 0.48739755153656006, + -0.3541136085987091, + -2.686051845550537, + 0.5702829957008362, + -4.290302753448486, + 2.2746267318725586, + -2.0351455211639404, + 0.2454122006893158, + 0.49350476264953613, + 0.38190990686416626, + -2.851593017578125, + -2.2001848220825195, + 1.3383028507232666, + -0.3544432520866394, + -2.2400331497192383, + 0.6685709953308105, + 2.392362117767334, + -1.1548922061920166, + -1.5386840105056763, + 0.10649950802326202, + 1.9164941310882568, + 1.473183512687683, + 2.878464937210083, + 0.1390441358089447, + -1.122830867767334, + -1.9735512733459473, + -0.04378127306699753, + -2.0352964401245117, + 1.6141496896743774, + 0.5282011032104492, + 1.1151784658432007, + 1.754927158355713, + 0.20745688676834106, + 2.2170891761779785, + 0.9881004691123962, + -0.8339119553565979, + -1.991831660270691, + 0.4090330898761749, + -1.0044270753860474, + 1.2306711673736572, + -2.132274627685547, + 1.7337660789489746, + -1.6310138702392578, + 2.1758742332458496, + -0.01830369234085083, + 0.24263060092926025, + -12.519417762756348, + -1.2216840982437134, + -0.5653387904167175, + 0.08089941740036011, + -0.27869051694869995, + 2.7164881229400635, + 1.2749134302139282, + 0.6586315631866455, + -1.2237043380737305, + -0.2903795838356018, + -1.534119725227356, + 0.5501272082328796, + -1.6679599285125732, + 1.9126036167144775, + 0.9703385829925537, + -0.20645636320114136, + -1.215508222579956, + 0.08474580943584442, + -0.26621636748313904, + 0.338495671749115, + 2.0102734565734863, + -2.0836269855499268, + 0.8448046445846558, + 0.7386820316314697, + 0.450562059879303, + -1.492271900177002, + 1.8263221979141235, + 1.68520188331604, + 1.8611494302749634, + -1.5787742137908936, + 0.644023060798645, + 0.7769508361816406, + 4.58219575881958, + -0.8374322652816772, + -1.6786056756973267, + 2.826382875442505, + 0.7323012351989746, + -1.9337575435638428, + 2.8746590614318848, + -2.182314872741699, + 1.2227773666381836, + 0.08258447796106339, + 0.48971301317214966, + 1.5540262460708618, + -1.7855191230773926, + 0.7909880876541138, + -0.7438457608222961, + 1.2127482891082764, + 2.8427913188934326, + 0.08926288783550262, + -1.6039783954620361, + -0.2623201906681061, + 0.11771559715270996, + 0.742506742477417, + -1.812896490097046, + 0.31860995292663574, + 1.3827831745147705, + -0.06035915017127991, + 1.9922837018966675, + 1.0071582794189453, + 2.1383018493652344, + -1.4251219034194946, + -1.0796135663986206, + 1.3207783699035645, + 0.22005820274353027, + 1.1924186944961548, + -1.586806058883667, + -1.1706544160842896, + -0.7982515692710876, + 0.7466757297515869, + 0.08321057260036469, + 0.04205848276615143, + -0.23355311155319214, + -0.05892106890678406, + -0.7850267887115479, + 1.383575439453125, + 0.7012442350387573, + 0.5001525282859802, + 0.9309325814247131, + 2.7339515686035156, + 0.09706789255142212, + -2.089405059814453, + 2.730759859085083, + -0.45866888761520386, + -1.3144218921661377, + -0.10741619765758514, + -0.0853777527809143, + -1.4217666387557983, + -1.073088526725769, + 0.7394402623176575, + -1.129889965057373, + 0.6800804138183594, + 1.93131685256958, + -0.34960800409317017, + 0.6399049162864685, + 3.990691900253296, + 2.629509449005127, + -1.7324904203414917, + -1.5253742933273315, + 0.8059875965118408, + -0.07267394661903381, + 1.873457908630371, + -0.44655537605285645, + 1.6169006824493408, + 0.7928658723831177, + -4.246317386627197, + 0.46224385499954224, + 0.4084213674068451, + -1.4919211864471436, + -2.4267492294311523, + 1.4620535373687744, + 0.25219982862472534, + -0.2908700108528137, + 0.4108737111091614, + 2.0219273567199707, + 0.1838197410106659, + 1.679103136062622, + -1.5679389238357544, + 0.13711470365524292, + -0.33074191212654114, + 0.1461181342601776, + -0.6410287618637085, + -1.2183644771575928, + -0.560969352722168, + 0.8932848572731018, + 2.189450740814209, + 0.9987581372261047, + -0.05942893028259277, + 0.5833691954612732, + -1.306628942489624, + 0.4694010317325592, + 1.566648006439209, + -0.8897806406021118, + -0.5082148313522339, + -0.8650212287902832, + -0.743353545665741, + 1.1102569103240967, + 1.6121934652328491, + -1.215133786201477, + 1.0588984489440918, + -0.25136470794677734, + 0.9665724635124207, + 0.5257886648178101, + -1.475471019744873, + -1.4232573509216309, + -0.6185715794563293, + 4.261135578155518, + -0.2722976505756378, + -0.2261514663696289, + -0.42701417207717896, + -1.1934837102890015, + -0.2292017936706543, + 1.5052645206451416, + -0.7785699367523193, + -2.0359597206115723, + -0.7936389446258545, + -1.1246473789215088, + 0.4550047516822815, + -0.053952157497406006, + 0.4761919379234314, + -1.8339711427688599, + 0.08333516120910645, + -0.7681111693382263, + 1.367643117904663, + 0.7499260902404785, + 0.7993671894073486, + -0.4415084719657898, + -0.19217252731323242, + 0.32286277413368225, + 3.921355962753296, + -0.45274287462234497, + 1.8210753202438354, + 1.6357579231262207, + -0.686389684677124, + 0.08881254494190216, + 1.2160366773605347, + 2.517151355743408, + 0.7536801099777222, + 1.0276354551315308, + 2.788602828979492, + -0.21995797753334045, + 1.5545096397399902, + -0.6651084423065186, + -1.4501292705535889, + -0.11206735670566559, + -1.7222081422805786, + 0.16187870502471924, + -1.9796757698059082, + 0.3983924388885498, + 0.27733585238456726, + 1.5228739976882935, + -2.4759068489074707, + -0.70283442735672, + 0.44813334941864014, + 1.3297770023345947, + -1.5230079889297485, + 0.4447791874408722, + -2.181786060333252, + 0.327284038066864, + -0.0032413899898529053, + -0.711995005607605, + -0.6748530268669128, + -1.470205307006836, + 0.08299344778060913, + 1.6278202533721924, + -2.1339590549468994, + -2.607931137084961, + -0.3221507668495178, + -1.837764024734497, + -0.7743233442306519, + 2.2672789096832275, + 0.31896987557411194, + 2.3203845024108887, + -0.6505551338195801, + 1.3952019214630127, + -1.3777507543563843, + 0.3822849690914154, + 0.433351993560791, + -2.144239664077759, + -3.2748355865478516, + 0.7265631556510925, + 1.761196494102478, + 1.0903899669647217, + -1.4410536289215088, + 0.32843297719955444, + 0.6423920392990112, + 0.040849074721336365, + 0.02490067481994629, + 0.7008990049362183, + -1.2680613994598389, + -1.2877196073532104, + 1.0084995031356812, + 0.14743028581142426, + -0.5071831345558167, + 0.5099503993988037, + -1.448332667350769, + -1.4762561321258545, + -0.0877760648727417, + -0.6399484276771545, + 0.5921746492385864, + 0.519930899143219, + 2.1604394912719727, + 0.11686581373214722, + -0.2692176401615143, + 1.1823747158050537, + -2.1595473289489746, + 1.758510708808899, + 0.3339017629623413, + 0.37336552143096924, + -0.08007955551147461, + 0.4009113907814026, + 0.013585388660430908, + 0.8503153324127197, + 1.9168471097946167, + -0.404205322265625, + 0.27574193477630615, + -2.285729169845581, + -3.0502634048461914, + 2.778961420059204, + 1.1891783475875854, + 0.86187744140625, + -0.7051947116851807, + -0.4509507715702057, + 0.3586907386779785, + 0.36981427669525146, + -0.5230146646499634, + 0.869814932346344, + 0.3154229521751404, + 1.9179831743240356, + 0.49503713846206665, + 0.40802496671676636, + 0.5533611178398132, + 0.3787091374397278, + 1.542334794998169, + 0.6700329184532166, + -0.36054369807243347, + -0.8065108060836792, + 0.06541737914085388, + 0.5153325796127319, + 0.2523852288722992, + 0.09665685892105103, + 0.04197094589471817, + 0.25022709369659424, + -0.22081178426742554, + 1.9224458932876587, + 0.0985417366027832, + -1.3216131925582886, + 0.18758684396743774, + 0.5724989771842957, + 0.6739538311958313, + -0.2574867606163025, + 3.0735464096069336, + 0.6467629671096802, + 0.10801547765731812, + 1.1382415294647217, + -0.5137223601341248, + 0.24884113669395447, + -0.09037959575653076, + -1.8645637035369873, + -1.3900964260101318, + -0.8108057379722595, + -1.336934208869934, + -3.0834765434265137, + 1.4599040746688843, + 2.438645124435425, + 0.6757593154907227, + -0.9530339241027832, + 2.283815622329712, + 0.18695873022079468, + -0.7462038993835449, + -1.8192476034164429, + -0.25082799792289734, + -0.04150766134262085, + 1.9012032747268677, + 1.3852970600128174, + -1.1104450225830078, + 0.14279036223888397, + -2.743340015411377, + 0.4166307747364044, + -1.7552725076675415, + -3.367344379425049, + -1.5832467079162598, + 0.9787788987159729, + 1.3494749069213867, + 0.9631290435791016, + 1.410730004310608, + -0.772782564163208, + 1.6092381477355957, + 0.4369501769542694, + 0.08498650789260864, + 0.5384583473205566, + -0.9075819253921509, + 0.2265031337738037, + 3.5792641639709473, + 0.11558334529399872, + -0.8535388112068176, + 0.9599544405937195, + -0.2853326201438904, + 0.8278241753578186, + 0.19323596358299255, + 1.2184237241744995, + -1.092024326324463, + 1.9828486442565918, + 0.15077252686023712, + 1.730603814125061, + -3.334265947341919, + -1.2380046844482422, + -0.2662767171859741, + -0.863178014755249, + 1.6537739038467407, + 0.4121056795120239, + 0.5671460628509521, + -0.6764121055603027, + 0.4782070517539978, + -0.7301973104476929, + -0.4082319736480713, + 2.3744513988494873, + -1.7326127290725708, + -0.2618950605392456, + -2.050631284713745, + -0.09718818962574005, + 2.8646836280822754, + -0.9925820827484131, + 2.4995346069335938, + 0.8510252833366394, + 1.2006882429122925, + -0.9098614454269409, + 1.80235755443573, + -0.7196338772773743, + 2.0569605827331543, + 0.9766530990600586, + 1.076747179031372, + 1.6251111030578613, + 0.5103433728218079, + 1.4674004316329956, + 1.0395876169204712, + -0.4197345972061157, + 0.17559677362442017, + -2.4651355743408203, + -1.3209574222564697, + -2.3213961124420166, + 1.9555203914642334, + 2.665281057357788, + -0.479164183139801, + 1.152626395225525, + 0.33853402733802795, + -1.120225429534912, + -0.03944045305252075, + -0.6995168328285217, + 1.764230728149414, + 1.2214319705963135, + 0.5788436532020569, + -0.9676792621612549, + -2.4685707092285156, + -1.9949572086334229, + -0.7907980680465698, + 0.9707126021385193, + 0.04820038378238678, + 0.9527672529220581, + -0.8916133642196655, + 0.024815917015075684, + -0.9038260579109192, + -1.6803911924362183, + -1.6175216436386108, + 1.2885140180587769, + -2.8930208683013916, + -0.9610081911087036, + 3.1362390518188477, + 1.2825779914855957, + 1.4693149328231812, + 2.126722812652588, + -0.31604957580566406, + -1.657941460609436, + 1.1388485431671143, + 0.23704582452774048, + 0.2444739043712616, + 0.4796684980392456, + 0.025039806962013245, + -1.1027313470840454, + 1.8582267761230469, + 0.8408510088920593, + 0.3259178400039673, + 0.3211456537246704, + -0.07688700407743454, + 1.222229242324829, + 1.3093385696411133, + 3.256195545196533, + 2.3853886127471924, + -0.1698097586631775, + 1.2081611156463623, + 2.7416422367095947, + -0.8459671139717102, + -1.6947273015975952, + -1.865451693534851, + 0.16920381784439087, + 2.0074501037597656, + 1.0907015800476074, + -0.6097432971000671, + 66.12506866455078, + 0.8587183952331543, + 0.3249233365058899, + 2.504117488861084, + 0.6242213249206543, + -1.2377142906188965, + -1.79852294921875, + -0.9092379212379456, + 0.35794615745544434, + 0.3537628650665283, + 0.765031099319458, + -0.28072643280029297, + 0.09515702724456787, + -1.5482913255691528, + -0.48317259550094604, + -0.042907893657684326, + -0.8887695074081421, + -0.7897703647613525, + -1.958549976348877, + 0.23326367139816284, + 0.22950667142868042, + 0.7026547193527222, + 2.1964213848114014, + 0.309337854385376, + -0.5589125156402588, + -1.588883399963379, + -0.6483737230300903, + -0.021054960787296295, + -1.0937458276748657, + -1.019656777381897, + -2.4656198024749756, + -0.5767917037010193, + 0.6208064556121826, + -2.2835135459899902, + 1.2672221660614014, + 1.3073115348815918, + 1.8403693437576294, + 1.379220724105835, + -0.01966516673564911, + -0.1797161102294922, + -1.8115352392196655, + 1.4681634902954102, + -1.5787427425384521, + -1.325723648071289, + 0.357582688331604, + 1.0696603059768677, + -0.9355027675628662, + -3.64273738861084, + -0.11180683970451355, + -0.9708634614944458, + -2.8911969661712646, + -0.997499942779541, + -0.6252332925796509, + -0.7413308620452881, + -1.0932220220565796, + 0.14787310361862183, + -0.5880857706069946, + -0.28216248750686646, + 0.9946494698524475, + -1.6465191841125488, + 1.190028429031372, + -1.6028748750686646, + -2.0125322341918945, + -0.7083775401115417, + -0.4580392837524414, + -0.5458850264549255, + 1.1980692148208618, + -2.405996084213257, + -0.9754000306129456, + 1.0868332386016846, + 2.2593042850494385, + -2.1725215911865234, + 1.0522129535675049, + -0.3727955222129822, + 0.8204337358474731, + 0.7167847156524658, + -0.8499860167503357, + -1.2712571620941162, + 0.9930386543273926, + 0.8782535791397095, + -0.36770105361938477, + -1.1302919387817383, + -1.4777684211730957, + -1.2058123350143433, + 0.16606514155864716, + 0.5837026834487915, + -0.5962029695510864, + 2.9183878898620605, + -0.7191307544708252, + 0.06488554179668427, + 0.728173017501831, + -0.6340444684028625, + -2.7946276664733887, + -0.21356284618377686, + -1.4764823913574219, + -0.42396974563598633, + -0.23212376236915588, + -1.4108200073242188, + -1.3508435487747192, + 2.0261855125427246, + 2.8343148231506348, + -1.0946471691131592, + -0.8467909097671509, + -0.8785727024078369, + -2.1460933685302734, + -0.9321984052658081, + -2.655501127243042, + 0.4732998013496399, + -1.2048391103744507, + -0.8537247776985168, + 0.24516266584396362, + 5.31664514541626, + -0.3840470016002655, + 2.391885995864868, + -2.0574915409088135, + -1.3879286050796509, + 1.9505975246429443, + -0.6656967401504517, + 1.7963160276412964, + -0.9218026995658875, + -0.2910863757133484, + -1.0088279247283936, + -1.0121204853057861, + -0.8208460807800293, + -1.9132952690124512, + -1.0455952882766724, + 1.9180325269699097, + -0.14252430200576782, + 0.4306579530239105, + 0.7419888973236084, + -0.3007059097290039, + -0.46750450134277344, + 1.2677640914916992, + -1.3697865009307861, + -0.36407238245010376, + -0.3230334520339966, + 1.2835142612457275, + -0.2171115279197693, + -2.3388748168945312, + -0.3442808985710144, + -2.149808645248413, + -0.6351308822631836, + 0.3288648724555969, + -2.109008550643921, + 1.3498913049697876, + -0.9904325008392334, + 1.5670173168182373, + -0.4308731257915497, + -0.2792937755584717, + -1.1319363117218018, + -1.0515319108963013, + -0.9023695588111877, + -1.6472755670547485, + -1.2640496492385864, + 0.12974868714809418, + 1.5530555248260498, + 0.18608182668685913, + -1.8572551012039185, + -0.16657593846321106, + 1.3689091205596924, + 0.8744416832923889, + -0.07406941056251526, + -1.3783867359161377, + -2.7404048442840576, + -1.0517538785934448, + -0.6547209620475769, + 1.4237154722213745, + -0.5458869934082031, + -0.530861496925354, + -1.0620081424713135, + 0.2588229477405548, + -0.8839541673660278, + -1.241494059562683, + -0.3737163841724396, + -1.3816897869110107, + -1.9638210535049438, + -1.2155052423477173, + -0.4420813322067261, + 0.30297279357910156, + -0.7808587551116943, + 1.2478420734405518, + 0.6680970788002014, + -0.11075282096862793, + -1.3355028629302979, + 3.5302066802978516, + 0.18563854694366455, + 0.29243314266204834, + -1.1891107559204102, + -1.0495692491531372, + 0.6582101583480835, + 0.6517260074615479, + 1.9892525672912598, + -0.8416604995727539, + -0.10357818007469177, + 0.4684780240058899, + -0.9084516763687134, + -1.6929436922073364, + -0.24653641879558563, + -1.616743803024292, + -1.392350196838379, + -1.3213756084442139, + -0.34426379203796387, + -0.8194659948348999, + 1.3389500379562378, + -0.9832429885864258, + 0.6231396794319153, + 0.30322203040122986, + -1.9582891464233398, + -0.10684338212013245, + 2.8230443000793457, + 0.40690162777900696, + -0.5518814921379089, + -0.9664568901062012, + -0.33270251750946045, + 1.3818281888961792, + 0.6305243968963623, + -1.0855975151062012, + -1.6540803909301758, + 0.24525173008441925, + -0.38232794404029846, + -1.3469332456588745, + -1.5537972450256348, + 2.059666872024536, + 1.9289900064468384, + 0.29238519072532654, + 0.20162835717201233, + -0.5059722065925598, + 0.7532035708427429, + 1.9419692754745483, + -0.23234593868255615, + 2.3047406673431396, + -1.5688605308532715, + 1.429815649986267, + -1.2693060636520386, + -0.04830116033554077, + -1.141324520111084, + -1.1027164459228516, + 0.5393078327178955, + -2.7252068519592285, + -0.3524002134799957, + 2.0696725845336914, + -0.07812708616256714, + -0.05535697937011719, + 0.2887187600135803, + 0.387685090303421, + -2.2037692070007324, + 1.6336710453033447, + -0.9669737815856934, + 0.6030026078224182, + 1.578818917274475, + -1.8429845571517944, + -0.1604144275188446, + 0.4849450886249542, + 1.1340771913528442, + 1.327770709991455, + 1.9794440269470215, + -0.8950678706169128, + -2.6795074939727783, + -0.4182041883468628, + 0.355142205953598, + -1.0523014068603516, + -0.2133893370628357, + 0.614134669303894, + -2.9370458126068115, + 0.1939603090286255, + 1.3029427528381348, + -1.1546082496643066, + -0.6676864624023438, + -2.210080146789551, + 0.4598555266857147, + -0.9625160098075867, + 3.2812769412994385, + 1.5712705850601196, + -0.5758663415908813, + 2.3604824542999268, + 0.552690863609314, + -0.7460637092590332, + -1.397695779800415, + -0.13213032484054565, + 0.7210814952850342, + -0.37780988216400146, + -0.14670775830745697, + -0.995247483253479, + 1.639857292175293, + 0.17417192459106445, + 1.1124136447906494, + -0.99509596824646, + -0.5281765460968018, + 1.51910400390625, + -0.9397545456886292, + -1.4163944721221924, + -0.6335973739624023, + 0.32759520411491394, + -1.164124846458435, + 1.0663352012634277, + -1.0263700485229492, + -1.1822525262832642, + 2.7210631370544434, + -1.1775935888290405, + 0.8002557754516602, + -0.5108209848403931, + 2.560734272003174, + -0.47895634174346924, + -10.287983894348145, + -2.461608648300171, + 1.579442024230957, + 0.13934242725372314, + 0.22189216315746307, + 0.7901546955108643, + -0.21061789989471436, + -0.7440924048423767, + 0.2588997185230255, + 1.34538996219635, + -0.7396937608718872, + -1.4239811897277832, + -2.348060131072998, + 2.0330569744110107, + 1.8018150329589844, + 3.744875431060791, + -0.39701616764068604, + -1.0059642791748047, + -0.14170122146606445, + -0.4143357276916504, + 0.15817223489284515, + -0.5208719968795776, + 0.12981030344963074, + -1.7346773147583008, + -1.7621183395385742, + -0.6547709703445435, + -1.6228407621383667, + -1.762003779411316, + 1.699867844581604, + 0.8301384449005127, + 0.11863069236278534, + 2.0819501876831055, + 0.2738727331161499, + -1.5139133930206299, + 0.17089152336120605, + -1.986891508102417, + 0.44502243399620056, + -0.39801540970802307, + 0.058090463280677795, + -0.9168576598167419, + 1.8631782531738281, + -0.5975217819213867, + 1.2435569763183594, + 0.42172616720199585, + -0.31091174483299255, + 1.4522678852081299, + -0.24097493290901184, + 2.8127596378326416, + 0.13784828782081604, + -0.25423943996429443, + 1.3729369640350342, + -1.2455863952636719, + 0.920651376247406, + 0.4410755932331085, + -0.1849958300590515, + 1.0258524417877197, + 1.3747940063476562, + 0.1492874026298523, + 3.9249167442321777, + 0.8571999073028564, + 1.3115358352661133, + 0.4574584364891052, + -5.913777828216553, + 0.9233119487762451, + 0.4090006947517395, + 0.3815634250640869, + -1.9439113140106201, + 1.6381516456604004, + 0.098319411277771, + -2.2480998039245605, + 0.03597444295883179, + 0.1641995906829834, + -1.4234836101531982, + -0.1326848864555359, + 1.6496835947036743, + 1.4337660074234009, + 1.992715835571289, + 1.453294038772583, + 1.564866542816162, + -0.12485647201538086, + -0.024439364671707153, + 1.2603509426116943, + -0.8577821254730225, + 0.0014282166957855225, + -1.0173743963241577, + 1.1817426681518555, + 1.9903236627578735, + 2.5502002239227295, + 3.5091335773468018, + 1.265547752380371, + -0.7679107785224915, + 0.029140114784240723, + 0.6297121644020081, + 1.223570466041565, + 0.868599534034729, + 1.7657653093338013, + 1.3457202911376953, + -2.8236494064331055, + -0.04114799201488495, + -0.6413815021514893, + 0.3464711308479309, + -0.635515034198761, + -3.784048318862915, + -0.9200769066810608, + -0.16878020763397217, + -1.208158016204834, + -2.0179240703582764, + -0.15733152627944946, + -2.5706582069396973, + -2.822765827178955, + -1.9034788608551025, + 1.0837093591690063, + 0.09072760492563248, + -0.1404361128807068, + 1.1762491464614868, + -0.4088907837867737, + -0.22829574346542358, + -1.0008381605148315, + -0.08464992046356201, + -0.6402192115783691, + 2.473769187927246, + -0.3420407176017761, + -1.4241875410079956, + -1.5935187339782715, + -0.3401852250099182, + 1.1350927352905273, + 1.2740682363510132, + 0.2929369807243347, + 0.22368013858795166, + -3.1661453247070312, + -0.4185861647129059, + 1.2657252550125122, + 0.176430344581604, + -1.3877767324447632, + 0.7272567749023438, + 0.8288836479187012, + -1.4350814819335938, + -0.3190922141075134, + -0.02245485782623291, + 1.1846482753753662, + 1.5346903800964355, + 2.250971794128418, + 0.6307320594787598, + -2.3723435401916504, + -1.940011739730835, + 0.44592106342315674, + 0.8714857697486877, + -0.3893009424209595, + -0.7695184350013733, + 0.9999575614929199, + -1.40769362449646, + -0.1476491093635559, + -0.49932757019996643, + -0.30979442596435547, + -1.2319836616516113, + 0.3175046145915985, + 0.8568513989448547, + 1.6734733581542969, + -0.8980674743652344, + -1.8035036325454712, + -0.6108673214912415, + -0.9102732539176941, + -1.823256492614746, + -1.0172265768051147, + 0.1676851212978363, + 1.6632720232009888, + -1.8413785696029663, + -2.1929311752319336, + -1.6792391538619995, + 0.6661485433578491, + 1.2721624374389648, + -0.8808072805404663, + -0.5798801183700562, + -0.22285427153110504, + 0.057154685258865356, + 0.35849618911743164, + 2.244887351989746, + -1.827317476272583, + -0.6482588052749634, + 0.35323435068130493, + -0.09316317737102509, + -0.49491599202156067, + 0.295478492975235, + 1.8451359272003174, + -3.5242533683776855, + -0.4728351831436157, + 2.927186965942383, + 0.008467614650726318, + -0.9707371592521667, + 0.37911227345466614, + -2.07452130317688, + -0.7170920372009277, + -2.1965198516845703, + -2.336489200592041, + -1.0575494766235352, + -0.7777332067489624, + 0.38307979702949524, + -1.249906301498413, + -0.827589750289917, + -0.518949031829834, + 1.6458985805511475, + -1.31050705909729, + -1.183807134628296, + 2.2501754760742188, + -0.03927105665206909, + -0.8181173801422119, + -0.8848148584365845, + -0.33045491576194763, + 0.8773590922355652, + -0.309052050113678, + -0.2611171007156372, + -0.30594369769096375, + -0.24758055806159973, + 2.1523966789245605, + 1.3642959594726562, + -0.013819456100463867, + -0.3849634826183319, + -0.7659019827842712, + 0.85576331615448, + 2.2280876636505127, + 1.7649846076965332, + -0.0035910941660404205, + -0.3698215186595917, + -0.4942641854286194, + -3.278116464614868, + -2.839886426925659, + 0.7552571296691895, + -0.48052576184272766, + -1.1828774213790894, + 2.0909738540649414, + 0.3371177613735199, + -5.382325649261475, + -0.04331381618976593, + 0.12742480635643005, + -0.7239572405815125, + -1.082899570465088, + 2.4209251403808594, + -0.3821026086807251, + 0.7559784650802612, + -1.3978732824325562, + -0.36611318588256836, + -0.9209325909614563, + 1.2109594345092773, + -0.27123206853866577, + 2.695697069168091, + 1.35872220993042, + -0.20649853348731995, + 0.45634374022483826, + 1.9620808362960815, + 1.1151844263076782, + -0.7451664209365845, + 0.8843791484832764, + -0.20362520217895508, + 1.0384217500686646, + -0.07347860932350159, + 1.8533430099487305, + 1.6428242921829224, + -0.10954168438911438, + -0.5303763747215271, + -2.4727704524993896, + 0.011717438697814941, + 2.2929422855377197, + -3.2365667819976807, + -1.1871881484985352, + 3.512741804122925, + 0.07655873894691467, + 0.5439066290855408, + -1.4614945650100708, + 0.5800210237503052, + 0.8401767611503601, + 0.745762825012207, + -0.07507668435573578, + -2.747856378555298, + 0.13227346539497375, + 0.29944515228271484, + -3.462792158126831, + -0.42217308282852173, + -0.08202880620956421, + 2.8220889568328857, + -2.054497718811035, + 0.2076335847377777, + 0.42076313495635986, + 0.7606292963027954, + -0.8869656324386597, + 0.5295084714889526, + 0.35170742869377136, + -1.745504379272461, + -0.5564883351325989, + 0.8093670606613159, + -2.5360686779022217, + 1.1977379322052002, + 0.42890727519989014, + -1.1614351272583008, + -1.2520240545272827, + -1.3531782627105713, + 0.3653327524662018, + 0.2976185381412506, + -1.1217414140701294, + -0.4714965224266052, + -0.20892956852912903, + -0.468464732170105, + 0.6779524087905884, + -0.6210290789604187, + 0.8239524364471436, + -1.25634765625, + 0.8607129454612732, + -0.8324663043022156, + 0.28454136848449707, + 0.7829996347427368, + -0.14725318551063538, + -0.17451640963554382, + -0.1632293164730072, + -1.3996562957763672, + 2.5645501613616943, + -1.1663817167282104, + -0.11821973323822021, + 0.8357779383659363, + -0.409244567155838, + -2.371791362762451, + -0.10378813743591309, + 1.2072218656539917, + 1.5543924570083618, + -1.3115154504776, + 0.9701459407806396, + -0.41921162605285645, + -1.1815030574798584, + -0.6346890926361084, + -1.1893178224563599, + -1.7818665504455566, + 0.1384226679801941, + -0.33081692457199097, + 0.4124873876571655, + -1.0179836750030518, + 1.7113302946090698, + -0.845341145992279, + 4.488903522491455, + -1.1297378540039062, + 0.062475915998220444, + -0.17579865455627441, + -1.469986915588379, + -0.8294304609298706, + -0.04367494583129883, + -1.0988579988479614, + 3.0693159103393555, + 0.1558760702610016, + -0.6571804881095886, + -2.0265281200408936, + 2.12394118309021, + 1.2443327903747559, + -0.36517614126205444, + -0.25200730562210083, + 0.4640562832355499, + -0.14559262990951538, + 0.37892141938209534, + 0.3774293065071106, + 0.23380351066589355, + -0.04553698003292084, + 0.1083267331123352, + 1.9657429456710815, + 1.078664779663086, + 0.1589505672454834, + -0.831573486328125, + 1.7414014339447021, + -0.39680567383766174, + 0.3826523423194885, + -0.2972646951675415, + -0.33648720383644104, + -0.0740765705704689, + 1.3269143104553223, + 0.0575789213180542, + -1.3204882144927979, + 0.4861372709274292, + -3.359853744506836, + -0.38142427802085876, + 1.9745150804519653, + 0.0006477236747741699, + 0.11337172985076904, + 2.102576732635498, + -1.9942607879638672, + -0.9084361791610718, + -1.6950249671936035, + 0.960615336894989, + 1.7431964874267578, + 1.6597988605499268, + -0.5832668542861938, + -4.336142539978027, + 1.6925057172775269, + 0.9085248112678528, + 0.8657548427581787, + -3.7781996726989746, + -0.9619120955467224, + -0.04326734319329262, + -1.3761210441589355, + 1.2315080165863037, + -2.1384222507476807, + 1.08956778049469, + 0.29905688762664795, + 3.074337959289551, + 0.6094101667404175, + 0.9335319399833679, + 1.0598132610321045, + 1.1860802173614502, + 0.13329163193702698, + -0.8051235675811768, + 2.180103302001953, + 1.4094219207763672, + -1.8461229801177979, + 0.8838018178939819, + 0.4407563805580139, + -1.60757577419281, + -0.010969989001750946, + 1.5016181468963623, + 2.7226576805114746, + 3.265028476715088, + -1.390400767326355, + -2.2753307819366455, + -1.2210338115692139, + -1.5211646556854248, + 0.010623663663864136, + -2.873131036758423, + 0.3762784004211426, + -1.1221989393234253, + 2.022662401199341, + 1.3146123886108398, + 1.1493691205978394, + 1.093346118927002, + -1.4198187589645386, + -0.6528491973876953, + -0.7903120517730713, + 2.481156587600708, + -0.6436908841133118, + 1.9120583534240723, + 1.5601882934570312, + 1.9572972059249878, + -1.7240320444107056, + 0.02068832516670227, + 0.13728520274162292, + -1.1196088790893555, + 2.637565851211548, + 3.406588554382324, + -0.9158579111099243, + -1.7560484409332275, + 1.0557949542999268, + 1.1814509630203247, + -0.8607205748558044, + 0.7407642602920532, + -2.1383793354034424, + 0.3236818313598633, + -0.6795087456703186, + 2.8821933269500732, + -2.9153401851654053, + -1.6702684164047241, + -0.18322747945785522, + 0.19610929489135742, + 0.6042176485061646, + -1.6137515306472778, + -1.2469613552093506, + -0.7952273488044739, + 0.9982356429100037, + -1.154252290725708, + 2.6257176399230957, + -0.819818377494812, + 0.042587973177433014, + 2.472823143005371, + 1.3897759914398193, + -1.7855908870697021, + -1.2186938524246216, + 0.4927622675895691, + -0.089818075299263, + 0.7821700572967529, + 0.9431246519088745, + -0.5512001514434814, + -1.3494127988815308, + -0.009917229413986206, + 0.007086992263793945, + -0.76344895362854, + -1.0859777927398682, + 1.4824703931808472, + -1.1808342933654785, + -1.6210355758666992, + 0.942238986492157, + -0.16672280430793762, + 0.055027395486831665, + -1.0237207412719727, + -0.3120281398296356, + -0.778468132019043, + -1.1888362169265747, + -1.3177857398986816, + 4.148126602172852, + -1.0411323308944702, + -0.07613293826580048, + 0.6481040716171265, + -7.411316871643066, + 4.347681999206543, + -0.8417954444885254, + -0.7424561381340027, + 1.5362200736999512, + -0.5859353542327881, + 2.2838706970214844, + 1.2159755229949951, + -1.3874820470809937, + 1.5541657209396362, + 0.9481639862060547, + -1.9925615787506104, + -1.4912389516830444, + -0.6390637159347534, + -0.8932788372039795, + 2.09405779838562, + -0.0813334584236145, + -0.4040791690349579, + 0.04593628644943237, + 0.534416675567627, + -0.6122182011604309, + 0.9306492805480957, + -1.176081657409668, + -0.8103119134902954, + 0.8623999357223511, + -0.931369423866272, + 1.6269880533218384, + 0.3277183175086975, + -2.8773274421691895, + 1.8309253454208374, + 0.02156219631433487, + 1.807596206665039, + -1.5005700588226318, + -2.816793441772461, + 1.1514015197753906, + 0.7619979381561279, + -1.848102331161499, + -2.3834707736968994, + -2.9857215881347656, + 0.6713348627090454, + -0.4897892475128174, + 3.060404062271118, + -1.186661958694458, + -1.6238270998001099, + 0.8496072888374329, + -2.3837034702301025, + 0.05920308828353882, + 0.4973733425140381, + -1.314226508140564, + -0.644776463508606, + 1.7704651355743408, + 0.900490403175354, + -1.9682316780090332, + 2.498305559158325, + -1.2031015157699585, + 0.17046135663986206, + 0.358458548784256, + -0.8439342975616455, + -1.0983272790908813, + 0.19857564568519592, + 1.5284851789474487, + -0.7854918241500854, + -1.3411223888397217, + -0.6260920763015747, + -2.217827320098877, + -0.11882150173187256, + -1.0708166360855103, + -0.6779102683067322, + -0.7061517238616943, + -0.2923787236213684, + -3.160515546798706, + -0.9643504619598389, + 2.122000217437744, + 0.0448589026927948, + 2.804877996444702, + 1.0664459466934204, + -0.4429044723510742, + 0.2856447100639343, + -0.46324336528778076, + -0.4023531675338745, + 0.47767144441604614, + 0.04443591833114624, + 0.34706878662109375, + -0.044150859117507935, + -1.451404333114624, + 1.150087833404541, + -1.0932475328445435, + 0.34454458951950073, + 0.9176649451255798, + -1.2930670976638794, + 1.3878861665725708, + 1.062681794166565, + -0.9165263772010803, + -1.2621890306472778, + 1.1994304656982422, + -0.5132043361663818, + 1.8352322578430176, + 1.13582444190979, + -0.15550732612609863, + -1.2285435199737549, + 1.0817737579345703, + 0.611849844455719, + -1.5462114810943604, + -5.547860622406006, + -0.1509852409362793, + 0.7662026882171631, + 0.18504460155963898, + -0.5727106332778931, + -4.107091903686523, + 2.261643648147583, + 1.6443501710891724, + 2.2339365482330322, + -0.00947880744934082, + -0.8540719747543335, + -1.0591168403625488, + 1.5440778732299805, + -1.1032943725585938, + 1.4373571872711182, + 0.6011602282524109, + 0.19379916787147522, + -0.5972700119018555, + -0.36090558767318726, + 1.002745270729065, + -2.8778181076049805, + -0.1429394781589508, + 0.0581061989068985, + 1.1495702266693115, + -0.19402289390563965, + 1.9230247735977173, + 1.3819775581359863, + 0.06055334955453873, + -0.7988995313644409, + 2.1837306022644043, + -0.5339199304580688, + -0.4715852737426758, + 1.247615933418274, + -1.1367568969726562, + -3.371199607849121, + -0.9096291661262512, + 0.4930546283721924, + 0.15425258874893188, + 0.24462808668613434, + -0.7683626413345337, + 1.4132801294326782, + -0.3951861262321472, + 2.465432643890381, + 2.212308168411255, + 0.3490494191646576, + 0.7734892964363098, + 0.5431578159332275, + 0.11477547883987427, + -0.8099544048309326, + 1.1065714359283447, + 1.4341490268707275, + 0.3918777108192444, + -1.3006893396377563, + 0.7035569548606873, + 1.1174094676971436, + 0.7223261594772339, + 2.1193106174468994, + -0.6041455268859863, + 0.54184889793396, + -0.6587178111076355, + 1.0795053243637085, + -1.7973203659057617, + -0.2966037690639496, + 0.33130955696105957, + 0.2347540259361267, + -1.8684523105621338, + 0.7674204111099243, + -0.6263599991798401, + -1.5968151092529297, + -0.9726421236991882, + 2.340134620666504, + 0.23594602942466736, + -0.08160564303398132, + 0.2930738627910614, + 0.6698625683784485, + -2.4061295986175537, + 1.238365888595581, + 1.6313360929489136, + -0.03848540782928467, + -0.4973715543746948, + -1.2947040796279907, + -3.113657236099243, + -3.0654046535491943, + 0.0629013180732727, + -0.8449901938438416, + 1.5548737049102783, + 0.46217820048332214, + 1.7577801942825317, + -2.1933095455169678, + 0.06429189443588257, + 0.883511483669281, + 0.7091741561889648, + -0.8721005916595459, + -0.08234301209449768, + -0.7631969451904297, + 0.29133424162864685, + -0.19700899720191956, + -0.8179073929786682, + -1.9464870691299438, + -2.615849733352661, + -0.6428688168525696, + -0.9750226140022278, + -2.602480888366699, + 1.4331159591674805, + -1.7748792171478271, + -0.09303286671638489, + 0.9017893671989441, + -0.0512988418340683, + -0.6494855284690857, + 0.6383522748947144, + -0.3655588626861572, + 0.4700842797756195, + 0.33883047103881836, + -2.7050423622131348, + -0.1808520257472992, + -0.11989720165729523, + -0.6931942701339722, + -1.0443353652954102, + 1.167015552520752, + -0.23306649923324585, + -0.8039931058883667, + -0.8022493124008179, + 1.3453996181488037, + -1.863033413887024, + 1.6760954856872559, + -1.872254490852356, + -0.13260775804519653, + 1.6284351348876953, + -1.3754806518554688, + -0.5588949918746948, + 0.175542950630188, + 0.6100038290023804, + -0.7532048225402832, + -1.2732610702514648, + 1.6273152828216553, + -2.4955501556396484, + 0.33496707677841187, + -1.1426295042037964, + 3.2323787212371826, + -1.2622262239456177, + -2.497922897338867, + -0.26998281478881836, + -1.4959392547607422, + -0.4732646942138672, + -0.1489928662776947, + -2.951852798461914, + -1.2707855701446533, + -1.6145068407058716, + -0.21806791424751282, + 0.6134366989135742, + -1.3547637462615967, + 0.038801491260528564, + -1.50519597530365, + -1.0127739906311035, + 2.021754026412964, + -0.4692996144294739, + 1.8678979873657227, + 0.3101356625556946, + 0.42663562297821045, + -1.9388644695281982, + -1.7223373651504517, + -2.24601149559021, + 0.8155809044837952, + 0.8030753135681152, + -2.1094634532928467, + -0.9232138395309448, + 0.7478301525115967, + -1.5551304817199707, + -2.6630642414093018, + 0.03376469016075134, + -0.041827745735645294, + -0.9382226467132568, + -0.02693861722946167, + 0.3626213073730469, + 0.5836794376373291, + -0.05947093293070793, + -1.2147561311721802, + -1.0813064575195312, + -0.17800110578536987, + 0.11116170883178711, + -3.036917209625244, + -0.40372946858406067, + 1.7889893054962158, + 0.19329899549484253, + 0.3852425515651703, + -0.00783248245716095, + -1.9896948337554932, + 0.5754055976867676, + -0.7226877212524414, + 4.173722743988037, + -1.7587324380874634, + -0.5935640931129456, + -1.6121325492858887, + -0.8154844641685486, + 2.6201021671295166, + 1.5961660146713257, + -1.3015100955963135, + 0.5524144768714905, + -0.4719148278236389, + 1.3363381624221802, + -0.2878570854663849, + 3.5334932804107666, + -0.8106972575187683, + -0.7399512529373169, + 0.8438198566436768, + 0.7655810117721558, + 1.228391170501709, + 0.7498671412467957, + 0.41742372512817383, + 0.3513105511665344, + 1.6821675300598145, + 0.9179332256317139, + -0.5903608798980713, + -0.6602826118469238, + 1.2095352411270142, + 0.3182790279388428, + -0.9293948411941528, + 0.06600184738636017, + -0.8480925559997559, + 0.056553393602371216, + 1.1867386102676392, + 1.3012031316757202, + -0.46176689863204956, + -1.745734453201294, + -0.5051855444908142, + 0.843265175819397, + 0.9504140019416809, + 0.31077325344085693, + -1.1639537811279297, + 2.1987361907958984, + 0.14492273330688477, + 1.7399580478668213, + 2.1635525226593018, + -0.7713847160339355, + 0.1789800524711609, + 0.5549537539482117, + -0.19381213188171387, + 0.8552648425102234, + -1.6479209661483765, + -0.42686304450035095, + 2.922814130783081, + 4.2659912109375, + -0.6259366273880005, + -1.7493727207183838, + -0.6989660859107971, + 0.7746936678886414, + -1.414038062095642, + -0.8458756804466248, + -2.9464166164398193, + 3.273261547088623, + 0.3532906770706177, + 1.3649609088897705, + -1.320530891418457, + 1.7393250465393066, + 2.114271640777588, + 1.0343230962753296, + 1.852718472480774, + 2.9462127685546875, + -0.0977223813533783, + 1.2574677467346191, + 1.0918444395065308, + -1.2001433372497559, + 0.600170373916626, + 1.6724010705947876, + 0.03226518630981445, + -0.7411494851112366, + -2.3410565853118896, + -0.6310388445854187, + -1.785634994506836, + -0.022938787937164307, + 0.6004024147987366, + 2.0195751190185547, + -1.219122052192688, + 1.150712251663208, + -1.2789068222045898, + -0.996087908744812, + 0.5990925431251526, + 1.179278016090393, + -0.3560708165168762, + 0.26655346155166626, + -0.5966323614120483, + -1.8427784442901611, + 0.9891718029975891, + 2.1529040336608887, + -0.2955498993396759, + -1.2064707279205322, + 2.1875381469726562, + -0.9127742052078247, + -0.10423076152801514, + 1.5662869215011597, + -0.7826043367385864, + 0.5643534660339355, + -2.3336572647094727, + -0.5790538191795349, + 1.973547101020813, + -0.7891021370887756, + -4.232160568237305, + 1.18186616897583, + -2.251330614089966, + 0.36707955598831177, + -0.6966512203216553, + 1.7940423488616943, + 1.5048574209213257, + -1.1080005168914795, + -0.9414814710617065, + 2.53122878074646, + 2.5455522537231445, + 1.3603565692901611, + 0.27585893869400024, + -0.16678538918495178, + -2.200719118118286, + -0.05603305995464325, + -0.9286028146743774, + -0.8306998014450073, + 1.0703023672103882, + -1.8475089073181152, + -0.46952635049819946, + 2.0247581005096436, + 1.9544892311096191, + -0.12836460769176483, + 3.4092893600463867, + 1.9981093406677246, + -1.6725199222564697, + -3.808518409729004, + -1.6352567672729492, + 0.7585281729698181, + 0.1888701617717743, + 1.8876889944076538, + 1.5369422435760498, + -0.959741473197937, + 0.9186708927154541, + 0.4896022379398346, + 2.0956966876983643, + -0.4649702310562134, + 0.14195936918258667, + 0.48008373379707336, + -0.6720024943351746, + -0.4710494875907898, + -1.4154384136199951, + -1.061561107635498, + 0.5306177735328674, + -0.1498028039932251, + -1.6725034713745117, + -1.6838726997375488, + 0.17278224229812622, + -3.1267552375793457, + 0.15760569274425507, + -0.024344488978385925, + 1.5431889295578003, + 0.976283073425293, + 0.8030791282653809, + -1.7011405229568481, + 0.888729989528656, + 0.24276979267597198, + 0.8542661666870117, + -0.06575530767440796, + 0.8613395690917969, + -1.5960885286331177, + 0.4467533826828003, + 3.1807703971862793, + -0.6241967678070068, + 0.24560850858688354, + -0.5787233114242554, + 0.029431849718093872, + 0.3693256676197052, + -1.846585988998413, + 0.7665787935256958, + -0.8583629131317139, + 0.6683744192123413, + 1.3049218654632568, + -1.2161192893981934, + 1.355212926864624, + 2.107822895050049, + 0.07414422929286957, + -1.8544613122940063, + -1.8361949920654297, + -2.25586199760437, + 1.7150599956512451, + 1.409294605255127, + -0.8555009365081787, + 0.2801448702812195, + 0.92415851354599, + -0.35196202993392944, + 0.22058400511741638, + -0.5099557638168335, + -1.2261937856674194, + -1.3168281316757202, + 1.5207538604736328, + -1.3286107778549194, + -0.7699148654937744, + 0.2756555676460266, + 1.257691502571106, + 2.5858778953552246, + -1.2922248840332031, + 2.782573699951172, + 1.3379443883895874, + -1.6559325456619263, + -1.311481237411499, + 2.1843698024749756, + 0.9657420516014099, + -1.7216768264770508, + 0.935355544090271, + -1.1768146753311157, + 2.599130392074585, + 2.0542428493499756, + -2.2545201778411865, + 2.7836217880249023, + -0.8909059166908264, + -2.7158284187316895, + -0.6712340712547302, + -0.31318289041519165, + 0.7609573006629944, + 1.2801108360290527, + 1.3544068336486816, + -1.3337632417678833, + 0.6576730012893677, + -1.9567601680755615, + -1.0361616611480713, + -1.0304354429244995, + 1.7889506816864014, + -3.8440799713134766, + 1.9000074863433838, + 0.3014187812805176, + -0.4939287304878235, + 1.5279277563095093, + -0.4605764150619507, + -4.490559101104736, + -1.6903607845306396, + 1.1986221075057983, + -1.8032604455947876, + -2.8840889930725098, + 1.3840869665145874, + 1.7993074655532837, + -0.6765930652618408, + -1.397387981414795, + 0.42180749773979187, + 0.4574434161186218, + -0.4567154049873352, + 1.67939293384552, + 0.13457033038139343, + -1.0825732946395874, + -1.1756813526153564, + -1.1424717903137207, + 0.8545601963996887, + 0.8352476358413696, + -2.029123544692993, + 0.3422885239124298, + -0.8886727690696716, + -0.8706275820732117, + -1.0775041580200195, + 2.609419584274292, + 0.07321631908416748, + 0.7099774479866028, + 0.7336006760597229, + -2.002228021621704, + 1.869296669960022, + -0.6362422108650208, + 0.8614152073860168, + -1.2157490253448486, + -1.0804648399353027, + -0.0934327021241188, + 0.6868069171905518, + -0.5253781676292419, + -1.8194465637207031, + -0.1361742913722992, + 0.40439391136169434, + 0.716770589351654, + -0.5592869520187378, + -2.4972712993621826, + -0.8883824348449707, + 0.4542672038078308, + 0.5384178161621094, + 0.652105987071991, + 0.9818516969680786, + -0.9397485852241516, + 2.0225534439086914, + 0.9150826930999756, + -0.53192138671875, + -1.2526147365570068, + -1.0932990312576294, + -0.3002747893333435, + -1.3484245538711548, + -1.659145474433899, + 1.7282646894454956, + -0.5434373021125793, + 1.8402235507965088, + -2.9818875789642334, + 0.5230705738067627, + 2.094818115234375, + -2.0904455184936523, + -1.079015851020813, + 0.21866099536418915, + 6.275966644287109, + 0.9782878160476685, + 1.5807541608810425, + 0.9578264951705933, + 0.3134022653102875, + -0.3649904429912567, + -1.4059600830078125, + -1.4842997789382935, + -0.6258130073547363, + -2.1974613666534424, + 0.6684384942054749, + -0.024362623691558838, + 1.8295283317565918, + 1.6657090187072754, + -0.2340712547302246, + -1.7841172218322754, + -4.1795759201049805, + 0.11356461048126221, + -2.59281325340271, + 1.8653535842895508, + -0.6430908441543579, + 0.8059796690940857, + 1.8947829008102417, + 2.7720675468444824, + 1.2207008600234985, + 5.90811824798584, + -1.2580615282058716, + 0.5035938620567322, + 0.2603074610233307, + 2.5644710063934326, + 2.0917394161224365, + 0.31802892684936523, + -0.9441909790039062, + 3.105764389038086, + -0.698665976524353, + 0.5603774785995483, + 0.5526248216629028, + -0.29213282465934753, + -2.349538803100586, + 1.5694180727005005, + -0.9449101090431213, + -0.895361065864563, + -3.9378442764282227, + -1.1889158487319946, + -1.6909666061401367, + -0.266335666179657, + -1.2026946544647217, + -0.6970534324645996, + -0.5123618245124817, + 1.6981509923934937, + -2.46724009513855, + -2.2076523303985596, + 1.870871663093567, + -1.1216450929641724, + 0.06300783157348633, + 0.08565247058868408, + 0.7854043245315552, + -0.7450283169746399, + 0.6367689967155457, + -1.1400716304779053, + 1.0988551378250122, + -1.5673587322235107, + -0.8401722311973572, + -1.4736425876617432, + 0.5635157227516174, + 0.9374280571937561, + 0.12387526035308838, + -1.054754376411438, + -0.11096090078353882, + 0.17646218836307526, + 1.3955141305923462, + 1.6159546375274658, + -3.6164090633392334, + 0.3980642557144165, + -2.3008549213409424, + -1.9037210941314697, + -0.058881670236587524, + -1.5520646572113037, + -0.7901935577392578, + -1.616316318511963, + -0.1479054093360901, + -3.624943733215332, + -0.729832649230957, + 0.5891993045806885, + -0.5598649978637695, + 2.268995761871338, + 1.9004907608032227, + -3.035055637359619, + 0.6816612482070923, + -0.3460425138473511, + -0.8184258937835693, + 1.264321208000183, + 0.3451527953147888, + 2.3309106826782227, + -0.9905471801757812, + 0.2982633113861084, + -1.082610845565796, + 0.6686330437660217, + 1.2226512432098389, + -0.5596267580986023, + -0.7677710056304932, + 1.5761889219284058, + -0.07004440575838089, + -1.9743843078613281, + -2.600905656814575, + -0.08012104034423828, + -0.5345255732536316, + 0.7020351886749268, + -0.47713345289230347, + -2.819474697113037, + -0.09021523594856262, + -1.3807311058044434, + 0.19877305626869202, + 2.803048610687256, + 6.720980644226074, + -2.2334365844726562, + 0.2113862782716751, + 2.6021904945373535, + 1.4123802185058594, + -0.5695003867149353, + 2.4034626483917236, + -0.6114501953125, + -0.36376041173934937, + -1.7778133153915405, + -1.010229229927063, + 0.07384011149406433, + 0.8975174427032471, + -1.4816442728042603, + 0.38020098209381104, + -1.3755333423614502, + 0.7640520334243774, + 0.5785337686538696, + 0.6647704839706421, + 1.748453140258789, + -0.12429067492485046, + 0.22750252485275269, + 0.49345916509628296, + -0.5263254642486572, + 0.47367316484451294, + 0.8997301459312439, + -1.8672500848770142, + 4.645718097686768, + -1.639549732208252, + 1.180017352104187, + -2.1456451416015625, + 0.19371411204338074, + -3.289444923400879, + -1.1489933729171753, + 0.007975161075592041, + 0.9320653676986694, + -1.4417425394058228, + 1.038527488708496, + 2.6988282203674316, + -0.6341290473937988, + 0.7107343077659607, + 0.5998210906982422, + 0.7731888890266418, + -0.05065624415874481, + 1.4585435390472412, + -1.042026162147522, + 2.110685348510742, + -0.5287495851516724, + -0.20205086469650269, + 0.9849274754524231, + -0.2384667694568634, + 0.3921617865562439, + 0.8233929872512817, + 1.5702078342437744, + -0.30366259813308716, + -0.22227910161018372, + 0.037783265113830566, + 0.423844575881958, + -0.6051449179649353, + 0.036536380648612976, + 1.118395447731018, + 2.213550090789795, + 2.6954944133758545, + -1.8101747035980225, + 1.3454006910324097, + -0.14144012331962585, + -2.4816246032714844, + 0.7709686160087585, + -0.19807463884353638, + 2.0517377853393555, + 0.42074596881866455, + 2.154888868331909, + 2.3812179565429688, + 0.4713333249092102, + -0.7070988416671753, + -1.2548545598983765, + -0.94134521484375, + 0.34217920899391174, + -0.12060675024986267, + -2.1997382640838623, + -0.05778297409415245, + 1.6349482536315918, + 0.1460023820400238, + -0.9708791971206665, + -1.1805542707443237, + 1.7076177597045898, + -0.9480912685394287, + -0.31153956055641174, + 1.8104584217071533, + -0.38841384649276733, + -0.3375163674354553, + -0.9702386856079102, + 1.225117802619934, + -5.01708984375, + -2.2471868991851807, + -0.46110039949417114, + -1.1643123626708984, + -1.1771116256713867, + -6.668931484222412, + 0.9993053078651428, + 0.4266887903213501, + -0.2965599298477173, + 0.7400069236755371, + -1.6371978521347046, + 2.7253530025482178, + -1.0319982767105103, + -0.4869433045387268, + -0.6141705513000488, + 3.179912567138672, + 0.9085909724235535, + -1.1700868606567383, + 1.7161320447921753, + -1.4841748476028442, + -0.7301760315895081, + 1.1923578977584839, + 1.6177432537078857, + -1.2311718463897705, + -1.0452356338500977, + -0.11187884211540222, + 0.4136548638343811, + 0.2087036818265915, + -1.2766106128692627, + -1.7990574836730957, + -1.0367770195007324, + -1.0374541282653809, + -0.008926302194595337, + -1.3060381412506104, + 0.07828769087791443, + 0.5974330902099609, + 0.9963748455047607, + 0.48035234212875366, + 0.3666224777698517, + 0.947892427444458, + 1.553177833557129, + 0.5011323094367981, + 0.38443467020988464, + 0.8479486703872681, + 0.9716494083404541, + -0.2831677794456482, + 0.5748032331466675, + -0.7692722678184509, + -1.3964529037475586, + -0.41462400555610657, + -2.029233694076538, + -0.37036818265914917, + 0.16466954350471497, + -1.7036687135696411, + -1.8594434261322021, + -0.8878862857818604, + 1.9441620111465454, + 1.9889967441558838, + 0.010884597897529602, + -0.3410175144672394, + 0.14217351377010345, + -1.5773288011550903, + 1.412879467010498, + 1.3382070064544678, + 0.02126520872116089, + 0.881618082523346, + -1.1600356101989746, + -3.7164406776428223, + 0.3785182535648346, + 1.8534868955612183, + 2.422361373901367, + 1.483099341392517, + -4.270436763763428, + -0.18066683411598206, + 1.7197041511535645, + 1.491418480873108, + 0.9028119444847107, + 2.0208206176757812, + -0.6865894794464111, + 1.0785115957260132, + 0.13506203889846802, + 0.20093600451946259, + -0.14765453338623047, + 0.5929780006408691, + 0.8963249921798706, + -0.4309258460998535, + -0.8477411270141602, + 0.8059585094451904, + -0.1773606836795807, + 1.624506950378418, + 1.6027830839157104, + -0.7525922060012817, + -1.5074462890625, + 0.7915817499160767, + -0.9717058539390564, + 0.14944308996200562, + 1.0639690160751343, + -1.6554811000823975, + 1.4536687135696411, + 3.976999044418335, + -0.48784592747688293, + -0.6482802629470825, + -0.1822863221168518, + -0.9943963289260864, + -1.0303250551223755, + -1.0118708610534668, + 0.8186521530151367, + -0.12011419236660004, + -0.3064541220664978, + 0.15235145390033722, + -1.7499005794525146, + 1.8838245868682861, + -0.7334994077682495, + -0.039539873600006104, + 0.06454473733901978, + 3.9167683124542236, + 1.4141018390655518, + -1.7590219974517822, + -2.674356460571289, + 0.9185974597930908, + 1.569082260131836, + 1.9044699668884277, + -2.069683790206909, + -0.765807569026947, + -0.5819705724716187, + -1.1006474494934082, + -0.8888484835624695, + 0.5696139335632324, + -0.4611165523529053, + -1.1973127126693726, + 2.0094892978668213, + -0.3089129328727722, + 0.1420222818851471, + 1.9138134717941284, + 1.5801382064819336, + -0.4063471257686615, + 0.2622721195220947, + -0.8015413284301758, + 1.1066291332244873, + 1.436179518699646, + 0.33926814794540405, + 0.6802634000778198, + -1.7071012258529663, + -3.083634614944458, + 0.2497367262840271, + -0.8316987156867981, + -1.0889482498168945, + 2.011174201965332, + 0.5725170373916626, + -0.14015145599842072, + 0.7983079552650452, + -0.1678849458694458, + -0.5096691846847534, + -2.0392727851867676, + -1.4313677549362183, + -1.834593415260315, + 0.24100270867347717, + 1.9763305187225342, + -1.0742521286010742, + -1.1763988733291626, + -0.41172266006469727, + -0.10804638266563416, + -4.156608581542969, + 0.18684978783130646, + 3.91463303565979, + -1.0091784000396729, + 0.8292710781097412, + 1.1910998821258545, + 0.3067893385887146, + -0.724780797958374, + 1.6772929430007935, + 0.11371529847383499, + -1.910590410232544, + -2.5549263954162598, + -0.09701383113861084, + 1.2325676679611206, + 0.6335275769233704, + 2.8275392055511475, + 0.03240153193473816, + 1.8930888175964355, + -1.4143506288528442, + -0.5473425388336182, + 0.1469419151544571, + -1.0691840648651123, + 1.6061829328536987, + 1.2736735343933105, + -5.001973628997803, + 0.7793646454811096, + -1.5696707963943481, + -3.536343812942505, + -0.35258835554122925, + -0.43311285972595215, + -0.5748166441917419, + 0.2852019667625427, + 0.7851051092147827, + -1.220337152481079, + 2.0205085277557373, + -0.5011978149414062, + -2.1145968437194824, + -1.9229912757873535, + 1.1140615940093994, + -0.0984160304069519, + -0.2978649437427521, + -1.0510841608047485, + -0.2770175337791443, + 2.0197837352752686, + -1.1557097434997559, + -0.7693026661872864, + -1.2562801837921143, + -1.363171100616455, + -1.9209834337234497, + 0.2787638306617737, + -1.0154765844345093, + 0.6342876553535461, + -4.443211555480957, + -0.12144055962562561, + -0.01510503888130188, + 0.3585204482078552, + 0.616244912147522, + -2.124574899673462, + -2.7345187664031982, + -0.8671853542327881, + -1.4839634895324707 + ], + "vector": [ + 0.01884162425994873, + 0.007035452872514725, + -0.009577563963830471, + -0.0039885034784674644, + -0.021327681839466095, + 0.002379628596827388, + -0.00041134326602332294, + -0.018054930493235588, + 0.01864367350935936, + -0.013396603986620903, + -0.004905705340206623, + 0.01384257897734642, + -0.00032991651096381247, + -0.0034304591827094555, + 0.0017924198182299733, + 0.010109495371580124, + 0.010143411345779896, + 0.011780021712183952, + 0.004237098153680563, + 0.007259481120854616, + -0.0037108685355633497, + 0.01096254587173462, + -0.0015350535977631807, + 0.010810628533363342, + 0.013460670597851276, + -0.01738525927066803, + -0.0004949571448378265, + 0.004368249326944351, + -0.005104789510369301, + -0.005673267412930727, + -0.00259611289948225, + -0.019207298755645752, + 0.006497797556221485, + 0.003584273625165224, + -0.006285788491368294, + -0.0010639806278049946, + 0.0213917288929224, + -0.004578366409987211, + -0.009597835130989552, + -0.011575300246477127, + 0.00826300960034132, + -0.010113654658198357, + 0.004721967503428459, + -0.00807250663638115, + 0.01555679552257061, + 0.0029881445225328207, + -0.003013146808370948, + 0.02077965810894966, + -0.009950028732419014, + 0.00894617848098278, + 0.0008975467644631863, + -0.012080959044396877, + -0.0004939982900395989, + 0.01577814295887947, + 0.031063193455338478, + 0.0036831465549767017, + 0.0018064138712361455, + -0.007531088311225176, + -0.007101601455360651, + -0.006925296504050493, + 0.0063949585892260075, + 0.0034689700696617365, + -0.008674372918903828, + -0.004899423103779554, + 3.409087366890162e-05, + 0.022566447034478188, + 0.008210595697164536, + -0.010819721035659313, + -0.014713486656546593, + 0.00624827528372407, + 0.013990040868520737, + 0.017175644636154175, + -0.014021657407283783, + -0.004688991233706474, + -0.010367626324295998, + 0.03816143795847893, + 0.006009342614561319, + -0.01565343327820301, + 0.0071721626445651054, + 0.0047734323889017105, + 0.02235543169081211, + 0.012604383751749992, + -0.023858606815338135, + -0.026697400957345963, + 0.019676318392157555, + -0.0011780441273003817, + -0.0007790950476191938, + -0.005806796718388796, + -0.001998715568333864, + 0.0030349884182214737, + 0.020779719576239586, + -0.011363479308784008, + 0.00755602540448308, + 0.016793537884950638, + -0.017655186355113983, + -0.026586296036839485, + -0.0013849750394001603, + -0.0007425627554766834, + 0.028214292600750923, + 0.002893877914175391, + -0.0029482142999768257, + 0.0004787877551279962, + -0.013890464790165424, + -0.006949508562684059, + -0.01218678429722786, + 0.013424679636955261, + -0.024690106511116028, + -0.01728835701942444, + -0.026832912117242813, + 0.0035243406891822815, + 0.0007962886593304574, + 0.01347861997783184, + 0.004483368247747421, + 0.00487675191834569, + 0.0031869569793343544, + 0.019303807988762856, + 0.006134135648608208, + -0.014073735103011131, + -0.018677938729524612, + -0.006813181098550558, + -0.01821618713438511, + -0.0002673902490641922, + 0.019036896526813507, + 0.005924029741436243, + -0.005781628657132387, + -0.01298615150153637, + 0.00946966465562582, + -0.010410238988697529, + 0.020398803055286407, + -0.001526978681795299, + 0.02083210088312626, + -0.005987337790429592, + 0.00634465366601944, + 0.004791637416929007, + -0.007309893146157265, + 0.010077927261590958, + 0.01213743630796671, + -0.00558643089607358, + -0.004428014159202576, + 0.001433904399164021, + 0.014244834892451763, + -0.014554010704159737, + -0.00898405909538269, + -0.004104175604879856, + -0.011088074184954166, + -0.014652395620942116, + 0.0043880147859454155, + 0.008395174518227577, + 0.0036113241221755743, + 0.006281137000769377, + -0.014446216635406017, + 0.003550919471308589, + -0.009900126606225967, + 0.007301976904273033, + 0.016068704426288605, + 0.011139201000332832, + 0.019969146698713303, + -0.011316804215312004, + 0.010943830944597721, + -0.00871166493743658, + -0.01719457097351551, + 0.0035634569358080626, + 0.0005981234717182815, + 0.017487727105617523, + -0.005852718371897936, + -0.00863722525537014, + 0.0033142431639134884, + -0.03219572827219963, + -5.045297075412236e-05, + -0.016297325491905212, + 0.02038794942200184, + 0.012155840173363686, + -0.03479662537574768, + 0.006553085055202246, + -0.005360784009099007, + -0.0013044881634414196, + -0.01397867314517498, + 0.011574731208384037, + -0.00724882073700428, + 0.017305484041571617, + 0.00266900472342968, + 0.004853850696235895, + -0.012487047351896763, + 0.00037851970409974456, + 0.0077711837366223335, + -0.017621420323848724, + 0.001587111153639853, + -0.008428605273365974, + 0.006773396860808134, + -0.0058164470829069614, + -0.011170271784067154, + 0.016441019251942635, + 0.011226274073123932, + 0.015178998000919819, + 0.014683700166642666, + 0.011211453936994076, + -0.010746809653937817, + -0.0036033522337675095, + -0.015766778960824013, + -0.014689912088215351, + 0.013088114559650421, + 0.006187364459037781, + -0.015689512714743614, + -0.01126638799905777, + 0.022103512659668922, + -0.007267500273883343, + 0.003886272432282567, + 0.02611221745610237, + 0.0016093305312097073, + -0.0006502310861833394, + 0.006242968142032623, + -0.02490147203207016, + 0.0034254712518304586, + 0.0007833934505470097, + -0.0023672133684158325, + 0.01803014613687992, + 0.0001846730156103149, + -0.014950958080589771, + -0.00028579970239661634, + -0.0033674209844321012, + -0.004183773882687092, + -0.004531485494226217, + -0.0016995962942019105, + -0.018107809126377106, + 0.0065199085511267185, + -0.041878774762153625, + -0.018208933994174004, + 0.00476567167788744, + -0.005202336236834526, + 0.016286995261907578, + 0.008751500397920609, + -0.0004254811501596123, + -0.022881122305989265, + -0.150575652718544, + -0.023258578032255173, + -0.021631866693496704, + -0.013073097914457321, + -0.021404732018709183, + 0.0019425167702138424, + -0.0019425870850682259, + -0.004767483565956354, + -0.015971649438142776, + -0.0010987891582772136, + -0.026679888367652893, + 0.010364996269345284, + 0.007968022488057613, + 0.010139741003513336, + 0.018943697214126587, + -0.020895468071103096, + 0.0026521345134824514, + -0.016346346586942673, + -0.038302816450595856, + -0.012472032569348812, + 0.0028144242241978645, + -0.012274784035980701, + 0.000976234208792448, + -0.009519235230982304, + -0.019585974514484406, + 0.00378345581702888, + 0.005942836869508028, + 0.00337042473256588, + 0.006944729946553707, + 0.014888633042573929, + -0.0005849687731824815, + 0.027973907068371773, + -0.007581351324915886, + -0.0014241952449083328, + -0.008208169601857662, + 0.0068440428003668785, + 0.004639847204089165, + -0.023164715617895126, + -0.00992663111537695, + -0.014569181948900223, + -0.013723260723054409, + -0.009206495247781277, + 0.006128412205725908, + 0.004862639587372541, + 0.0027160653844475746, + 0.002174945315346122, + 0.005650474689900875, + -0.005399182438850403, + -0.009450233541429043, + 0.018535859882831573, + 0.005626782774925232, + -0.010663410648703575, + 0.010579549707472324, + -0.014262116514146328, + -0.003145513590425253, + -0.028571773320436478, + 0.02073102630674839, + -0.011404287070035934, + -0.010587645694613457, + -0.026401417329907417, + -0.023136796429753304, + -0.020122691988945007, + -0.0071973055601119995, + 6.559735629707575e-05, + 0.012420978397130966, + 0.01255246251821518, + -0.009816081263124943, + 0.019655374810099602, + -0.0004442709032446146, + -0.008636411279439926, + 0.0005896127549931407, + -0.0068236771039664745, + -0.004218186251819134, + 0.01324041374027729, + -0.00020525357103906572, + -0.004186985082924366, + -0.010975735262036324, + -0.004356894642114639, + 0.0026239128783345222, + -0.00487015675753355, + -0.001642204006202519, + 0.00011517816892592236, + 0.01769625023007393, + -0.0008976482786238194, + -0.006690038833767176, + -0.008546629920601845, + -0.0060714310966432095, + -0.017618974670767784, + -0.009209515526890755, + -0.0022275750525295734, + 0.035557668656110764, + 0.005595578346401453, + -0.009403382427990437, + -0.01507816556841135, + 0.0003544193459674716, + -0.0001634393265703693, + -0.01022925041615963, + -0.016487400978803635, + -0.0023139577824622393, + 0.0005022775148972869, + -0.002669275738298893, + -0.006394332740455866, + 0.016861243173480034, + -0.0031867874786257744, + -0.009712720289826393, + -0.0027527506463229656, + 0.003649144433438778, + 0.00012692197924479842, + 0.013172200880944729, + -0.006750029046088457, + -0.018363669514656067, + -0.014163578860461712, + 0.006961233913898468, + 0.025272000581026077, + -0.018391329795122147, + -0.009141265414655209, + -0.007590742316097021, + 0.018058182671666145, + -0.00398498447611928, + -0.01082886103540659, + 0.010385362431406975, + 0.0034679134842008352, + -0.006651307921856642, + 0.01612977869808674, + -0.02223261259496212, + 0.0032145639415830374, + -0.018623111769557, + 0.004747345577925444, + -0.029249068349599838, + -0.0014391257427632809, + -0.0068046581000089645, + 0.0018609885592013597, + -0.005196680780500174, + 0.00291313324123621, + 0.0021706484258174896, + 0.005184367299079895, + 0.0032136021181941032, + -0.012050708755850792, + -0.003399113891646266, + 0.010511444881558418, + -7.912623550510034e-05, + 0.023765644058585167, + -0.012919163331389427, + -0.019793754443526268, + -0.016135025769472122, + 0.005272789392620325, + 0.003979883156716824, + -0.008915135636925697, + 0.0099686523899436, + -0.006893009413033724, + 0.0018281331285834312, + -0.005467049311846495, + 0.01773655042052269, + -0.00790564063936472, + -0.01188921183347702, + -0.01673625223338604, + 0.004716179333627224, + -0.0017767992103472352, + 0.012219952419400215, + -0.0022106359247118235, + -0.008282976225018501, + 0.0020182395819574594, + -0.007722690235823393, + 0.0026797049213200808, + 0.005947939585894346, + 0.013345209881663322, + 0.014777890406548977, + 0.002701484365388751, + -0.009384293109178543, + 0.003385093528777361, + 0.009631005115807056, + -0.010498236864805222, + 0.013084737583994865, + 0.001656004344113171, + 0.008254324086010456, + -0.003557192627340555, + 0.005601386073976755, + 0.0033555557020008564, + 0.010530699975788593, + -0.004581497982144356, + -0.013337922282516956, + 0.018031714484095573, + -0.001626366749405861, + -0.013241640292108059, + -0.0014793755253776908, + -0.024169282987713814, + -0.03133665770292282, + -0.00825573317706585, + 1.483237610955257e-05, + 0.012596569955348969, + -0.01621774211525917, + 0.002602823544293642, + 0.020096179097890854, + -0.005825095344334841, + -0.007496624253690243, + -0.001785348984412849, + -0.022348294034600258, + -0.0033684067893773317, + 0.008356316015124321, + -0.00133821542840451, + -0.010869606398046017, + 0.00680410536006093, + 0.002126866253092885, + -0.005618429742753506, + 0.0005529056652449071, + 0.013742512091994286, + 0.008140203543007374, + -0.005639716982841492, + -0.00356492237187922, + 0.009263693355023861, + 0.00030583192710764706, + 0.0020459224469959736, + 0.010858281515538692, + 0.0072197215631604195, + -0.01704930141568184, + -0.0036158226430416107, + 0.027631176635622978, + 0.01928279735147953, + -0.00296892412006855, + 0.008334290236234665, + -0.005099114496260881, + 0.010891895741224289, + 0.014830396510660648, + 0.01598944514989853, + -0.0080849789083004, + 0.012245920486748219, + -0.004804844968020916, + 0.0010167693253606558, + 0.0013845543144270778, + -0.007284887135028839, + 0.0071266042068600655, + 0.0044255331158638, + 0.011047213338315487, + -0.0049127317033708096, + -0.01768106408417225, + -0.0014780756318941712, + 0.003435740480199456, + 0.013377703726291656, + -0.004778184927999973, + 0.010523635894060135, + 0.01810011826455593, + -0.0036322246305644512, + 0.009536715224385262, + 0.006547525990754366, + -0.017953230068087578, + 0.011921701021492481, + 0.005693590268492699, + 0.003734057769179344, + -0.008267806842923164, + -0.002157864160835743, + -0.003701318521052599, + 0.00607672706246376, + -0.005077194422483444, + -0.01818135380744934, + -0.014312908984720707, + -4.548265496850945e-05, + -0.007764188572764397, + 0.007399836089462042, + 0.0020243178587406874, + 0.02008630894124508, + 0.0073792110197246075, + -0.0037776681128889322, + 0.011212795041501522, + -0.003082413924857974, + -0.0011844089021906257, + 0.002187129342928529, + 0.02278291806578636, + 0.0008391633164137602, + -0.019625196233391762, + -0.010989685542881489, + 0.01232424657791853, + -0.0010952989105135202, + -0.009674577973783016, + 0.020785346627235413, + 0.012164706364274025, + 0.01128951646387577, + -0.005047726444900036, + 0.013488641940057278, + 0.0068005649372935295, + 0.0006945228669792414, + 0.008358915336430073, + 0.0002817620988935232, + -0.005125226452946663, + -0.0027296871412545443, + -0.001764256157912314, + -0.013247012160718441, + 0.002995596267282963, + -0.006676871795207262, + 0.00022959495254326612, + -0.008017311803996563, + 0.013802343979477882, + 0.0037913378328084946, + 0.0024485671892762184, + 0.0008692290284670889, + 0.012759416364133358, + 0.001530465786345303, + -0.011270645074546337, + 0.009230127558112144, + 0.0102501530200243, + 0.007146147079765797, + 0.020127467811107635, + -0.0032456060871481895, + -0.005828634835779667, + -0.016219742596149445, + 0.004188154358416796, + 0.00729149766266346, + 0.014977267943322659, + 0.001959351822733879, + -3.666467091534287e-05, + -0.01328478567302227, + 0.011947412975132465, + 0.013113233260810375, + 0.02501939982175827, + -0.003854156471788883, + 0.00015566077490802854, + 0.00038495566695928574, + 0.011695622466504574, + 0.0008004141855053604, + -0.01593686267733574, + 0.02617238275706768, + -0.01012300793081522, + -0.01381312683224678, + -0.013087097555398941, + 0.0029339396860450506, + 0.0007969261496327817, + -0.00494227884337306, + 0.010947209782898426, + -0.01533851120620966, + -0.0026344829238951206, + 0.006945463363081217, + 0.015130060724914074, + -0.0011924320133402944, + -0.003676584456115961, + -0.006540281698107719, + 0.006198158022016287, + -0.009433838538825512, + 0.001032013795338571, + 0.003764537861570716, + -0.016896748915314674, + 0.0013068967964500189, + -0.011416147463023663, + 0.007969730533659458, + 1.881630305433646e-05, + -0.005742817185819149, + -0.0080722626298666, + -0.01054329052567482, + -0.011943124234676361, + 0.023499861359596252, + -0.0059840683825314045, + -0.0007225737790577114, + 0.005826463922858238, + -0.0038889029528945684, + 0.005040470045059919, + -0.024429641664028168, + -0.012653684243559837, + 0.0080035999417305, + -0.00984506867825985, + -0.00519745284691453, + 0.00948393065482378, + 0.008278711698949337, + -0.004468128085136414, + -0.00839733425527811, + -0.011366029269993305, + 0.0011954586952924728, + 0.0005078823305666447, + -0.007330191787332296, + -0.0077905189245939255, + -0.00809601228684187, + -0.006972086150199175, + 0.009575231932103634, + -0.014968146570026875, + 0.0035834491718560457, + -0.0013000669423490763, + 0.005431090481579304, + 0.005461352877318859, + -0.008950244635343552, + -0.02470361813902855, + -0.006240385118871927, + 0.002953306073322892, + 0.0065086837857961655, + 0.005459018982946873, + 0.015890631824731827, + -0.029919197782874107, + 0.010494320653378963, + 0.0033071774523705244, + -0.0003380100824870169, + 0.004552046302706003, + -0.004887001123279333, + 0.008106714114546776, + -0.018741119652986526, + 0.00026839927886612713, + 0.0022728517651557922, + 0.0023218942806124687, + -0.010324760340154171, + -0.013498830609023571, + 0.0021816410589963198, + 0.0025971403811126947, + -0.006688400637358427, + -0.009284590370953083, + 0.010832398198544979, + 0.008519033901393414, + 0.011266940273344517, + 0.02420732006430626, + 0.008356557227671146, + -0.0004012591380160302, + -0.008656010963022709, + 0.012890858575701714, + -0.020166395232081413, + 0.003066543024033308, + 0.005745446775108576, + -0.0005085797165520489, + 0.0030583462212234735, + 0.004063591361045837, + 0.002454871078953147, + 0.005652455613017082, + 0.026737233623862267, + -0.010246395133435726, + 0.006089350208640099, + -0.0019936230964958668, + -0.005820257589221001, + 0.0017212482634931803, + 0.01100899651646614, + 0.01940293237566948, + -0.01681753247976303, + 0.009120738133788109, + 0.0075280447490513325, + 0.01645476184785366, + 0.006022968329489231, + 0.00928543508052826, + 0.0018069255165755749, + -0.02307944744825363, + 0.0035509986337274313, + -0.01764458790421486, + 0.005634657572954893, + -0.0027833119966089725, + 0.012930184602737427, + 0.004914248827844858, + 0.011770736426115036, + -0.009342857636511326, + 0.00692072743549943, + 0.0065437424927949905, + -0.00022404406627174467, + 0.003228872548788786, + -0.002905831439420581, + 0.019031688570976257, + 0.0020609116181731224, + 0.003057212335988879, + -0.014796356670558453, + -0.011809409596025944, + -0.017348693683743477, + -0.016507035121321678, + -0.010921790264546871, + 0.004706170409917831, + -0.00538641819730401, + 0.0021848096512258053, + 0.008956840261816978, + -0.0045862942934036255, + -0.07394511997699738, + 0.005871499422937632, + -0.022579655051231384, + 0.008895422331988811, + -0.012191778980195522, + 0.004639822989702225, + 7.84007934271358e-05, + 0.01576824113726616, + 0.0012003176379948854, + 0.009607881307601929, + 0.007365482393652201, + -0.0033095430117100477, + 0.02605389803647995, + -0.004260660149157047, + -0.003770349780097604, + 0.00486492644995451, + -0.00016434589633718133, + -0.0019538355991244316, + -0.017295509576797485, + -0.0018012614455074072, + -0.0026381921488791704, + 0.00870570633560419, + -0.022727418690919876, + 0.0012538167648017406, + -0.012645441107451916, + -0.01660124585032463, + -0.03492214158177376, + -0.00703856348991394, + 0.006780135445296764, + 0.01643661968410015, + 0.001395325525663793, + -0.014117010869085789, + 0.0020968392491340637, + 0.003492919960990548, + -0.002778427442535758, + 0.005906896200031042, + -0.053450338542461395, + 0.004968390334397554, + -0.003709565382450819, + -0.00324234482832253, + 0.006580706220120192, + 0.010576426051557064, + -0.006147447973489761, + 0.006374973338097334, + 0.013749769888818264, + 0.007505785673856735, + 0.017209099605679512, + -0.01130749098956585, + 0.0013766003539785743, + -0.006941003724932671, + -0.0007147823926061392, + 0.012077231891453266, + 0.008332197554409504, + 0.009992131032049656, + -0.00033122205059044063, + -0.006715618539601564, + -0.0112776979804039, + -0.015522133558988571, + 0.018160808831453323, + 0.014742298051714897, + 0.014153480529785156, + -0.004307654220610857, + 0.0007915869355201721, + 0.006751660257577896, + -0.012698808684945107, + -0.01350423600524664, + 0.0078606978058815, + 0.002055495511740446, + -0.015787625685334206, + -0.00042615318670868874, + 0.014763428829610348, + 0.0011323419166728854, + 0.007969400845468044, + -0.005452581215649843, + 0.00844787061214447, + -0.004804419819265604, + 0.009142779745161533, + 0.01717543788254261, + -0.023112397640943527, + 0.010686858557164669, + 0.018964553251862526, + 0.00596374599263072, + -0.005073406733572483, + -0.015924829989671707, + 0.018014734610915184, + 0.00593985291197896, + 0.021633828058838844, + -0.001771607669070363, + -0.02046109549701214, + 0.006958403624594212, + 0.01816299371421337, + -0.001822489663027227, + 0.009619353339076042, + 0.010736246593296528, + -0.001318944850936532, + 0.002603293862193823, + 0.01854221150279045, + 0.008542806841433048, + -0.01505766436457634, + 0.004908762406557798, + 0.016572272405028343, + -0.004306823946535587, + -0.02247464284300804, + -0.020704714581370354, + 0.027672870084643364, + 0.01998309977352619, + 0.0016612147446721792, + -0.009482461027801037, + 0.0008719705510884523, + 0.0036435984075069427, + -0.012417996302247047, + 0.0046204435639083385, + 0.0059186783619225025, + -0.010057416744530201, + -0.010217675939202309, + -0.007501731626689434, + 0.0037496567238122225, + -0.0030563774053007364, + -0.0019728485494852066, + -0.0645885095000267, + -0.007001431193202734, + 0.015208653174340725, + -0.0064681777730584145, + 0.021160267293453217, + -0.01098568644374609, + 0.0032165502198040485, + 0.004093237686902285, + 0.0011929395841434598, + -0.005517135839909315, + -0.0045042275451123714, + -0.00858481414616108, + 0.011478271335363388, + 0.009555934928357601, + 0.004860511980950832, + 0.0028342080768197775, + -0.007927431724965572, + 0.008011223748326302, + -0.008875198662281036, + 0.005043291952461004, + 0.00947539508342743, + 0.003134098369628191, + -0.008615650236606598, + 0.0009340966935269535, + 0.011864808388054371, + 0.004201085306704044, + -0.006730006076395512, + -0.0015861534047871828, + -0.03745961934328079, + 0.016481319442391396, + -0.013735109940171242, + -0.0019709463231265545, + -0.006311121396720409, + -0.022544879466295242, + -0.025276806205511093, + 0.00406908243894577, + 0.0011148350313305855, + 0.019170299172401428, + -0.0011009506415575743, + -0.013501210138201714, + 0.012613211758434772, + 0.0031187860295176506, + 0.019023438915610313, + -0.000801670947112143, + -0.019769519567489624, + -0.010460003279149532, + -0.017082761973142624, + -0.0034252419136464596, + 0.0030884852167218924, + 0.029201721772551537, + -0.005331164691597223, + -0.019595274701714516, + -0.011415417306125164, + 0.006715369876474142, + 0.007035303860902786, + -0.016656847670674324, + 0.01948194019496441, + 0.00010795679554576054, + 9.53173148445785e-05, + 0.014863788150250912, + -0.005890169180929661, + 0.011368403211236, + -0.01458602212369442, + 0.005327264778316021, + -0.013797897845506668, + -0.0019713377114385366, + -0.0045723989605903625, + 0.054849475622177124, + -0.015570256859064102, + -0.010227488353848457, + 0.005889002699404955, + 0.007911276072263718, + 0.013198118656873703, + -0.01312904804944992, + 0.010615702718496323, + -0.014266770333051682, + 0.010813879780471325, + -0.002591504715383053, + -0.013342874124646187, + 0.02651263028383255, + -0.009515443816781044, + -0.0015314925694838166, + -0.009616662748157978, + -0.004476719070225954, + -0.019136440008878708, + 0.006695874035358429, + 0.0008123166626319289, + -0.0009527975344099104, + 0.008037005551159382, + -0.004951084963977337, + -0.010795901529490948, + -0.023928500711917877, + -0.017665497958660126, + -0.007866966538131237, + 0.018541058525443077, + -0.008260638453066349, + -0.0059148031286895275, + 0.004957043565809727, + -0.018055127933621407, + 0.02443310245871544, + -0.015622885897755623, + -0.022980624809861183, + 0.04568101093173027, + -0.01345155294984579, + -0.00012405352026689798, + -0.005215836223214865, + 0.012984325177967548, + -0.015364476479589939, + -0.0029779491014778614, + -0.006902914494276047, + -0.01484138797968626, + 0.016522251069545746, + -0.0009330928442068398, + 0.022006269544363022, + -0.006898452527821064, + -0.0049133398570120335, + -0.01005973294377327, + -0.004529312718659639, + 0.011159570887684822, + 0.014761758968234062, + 0.010261586867272854, + -0.013157091103494167, + -0.01845743879675865, + 0.0022519114427268505, + -0.011419863440096378, + -0.008940676227211952, + -0.009832669049501419, + -0.0005708421231247485, + -0.007779834326356649, + 0.005741463508456945, + -0.005486119072884321, + -0.01174837164580822, + -0.0052113658748567104, + 0.02697806991636753, + -0.004873326979577541, + 0.009946729056537151, + -0.006565252784639597, + 0.004197926260530949, + 0.007499891333281994, + 0.0017662348691374063, + 0.0013057192554697394, + 0.014197636395692825, + -0.0038596310187131166, + 0.006885552778840065, + -0.013729119673371315, + -0.002418969525024295, + -7.950846338644624e-05, + -0.00671692518517375, + -0.01993304118514061, + 0.0007038128096610308, + -0.012517787516117096, + -0.005190121941268444, + -0.01573755405843258, + -0.01940860040485859, + -0.021428046748042107, + 0.0029593727085739374, + -0.009901490062475204, + 0.013727673329412937, + -0.01659383252263069, + 0.0044999923557043076, + -0.02415063977241516, + -0.0012375067453831434, + 0.002844258677214384, + -0.012830639258027077, + -0.00910975132137537, + -0.00300667155534029, + -0.0024518196005374193, + -0.0023792025167495012, + 0.021250389516353607, + 0.005555860232561827, + -0.017663517966866493, + 0.0015890583163127303, + -0.008940447121858597, + 0.001653602928854525, + 0.014098677784204483, + 0.013460923917591572, + -0.011427249759435654, + -0.004235392436385155, + -0.015956291928887367, + 0.005478688515722752, + -0.045855265110731125, + 0.005284767132252455, + 0.00048736322787590325, + 0.010621810331940651, + 0.0036329880822449923, + -0.004546592943370342, + 0.007030014880001545, + 0.004011896904557943, + 0.010683419182896614, + -0.00794944167137146, + -0.005632217973470688, + 0.01781974919140339, + -0.004785201977938414, + 0.01056377962231636, + -0.008562248200178146, + 0.008634605444967747, + -0.020396100357174873, + -0.0027852135244756937, + 0.008310980163514614, + -0.00486134085804224, + -0.0007162896217778325, + -0.01014034729450941, + 0.012160534039139748, + 0.0007550627924501896, + -0.024173475801944733, + -0.021031107753515244, + 0.0037456266582012177, + -0.007375988643616438, + 0.005655888468027115, + 0.015380695462226868, + 0.008548052050173283, + 0.014774598181247711, + 0.0017799489432945848, + -0.00242407014593482, + 0.011067138984799385, + -0.0006940294406376779, + 0.0029984167777001858, + -0.008623572997748852, + 0.017517639324069023, + 0.014361696317791939, + -0.010655557736754417, + 0.001740533858537674, + 0.012194979935884476, + 0.004228005185723305, + -0.00224936380982399, + -0.014053874649107456, + 0.02245660312473774, + -0.000558235275093466, + 0.008288389071822166, + -0.0017543068388476968, + -0.009636896662414074, + -0.023796314373612404, + -0.01964801922440529, + 0.007458156906068325, + -0.02885836735367775, + 0.0069848885759711266, + -0.006285473704338074, + -0.004181501921266317, + -0.015359798446297646, + 0.0017893188633024693, + 0.0035601980052888393, + -0.012811427004635334, + -0.007013223599642515, + 0.012013141065835953, + -0.00010267638572258875, + 0.0009407479083165526, + 0.008857211098074913, + -0.001895639579743147, + 0.012685081921517849, + 0.004272297956049442, + 0.0013637974625453353, + 0.010596301406621933, + 0.014584637247025967, + -0.014756843447685242, + -0.011835574172437191, + 0.00594586506485939, + 0.008492120541632175, + -0.013548805378377438, + 0.008467676118016243, + 0.0024713845923542976, + 0.015895195305347443, + -0.0012315597850829363, + 0.015737418085336685, + -0.007527057081460953, + -0.005622513592243195, + -0.0036117341369390488, + -0.0001267103070858866, + 0.009335922077298164, + 0.0019639048259705305, + -0.003981312271207571, + 0.009423675015568733, + 0.010850467719137669, + -0.02768026478588581, + 0.0012270627776160836, + -0.004937401972711086, + 0.0005579417920671403, + -0.027517495676875114, + -0.012219350785017014, + 0.009017731063067913, + 0.007147328462451696, + -0.0010200570104643703, + -0.011668979190289974, + -0.005181377287954092, + 0.004606058355420828, + -0.00010540787479840219, + 0.012049521319568157, + -0.0028106484096497297, + -0.024108538404107094, + 0.02312447875738144, + 0.00808003917336464, + 0.0023167901672422886, + -0.019918447360396385, + 0.014225395396351814, + -0.0007908538682386279, + -0.008054840378463268, + 0.005025334190577269, + -0.016764923930168152, + 0.001174081931822002, + -0.006478891707956791, + 0.01580071821808815, + 0.0041854591108858585, + 0.01132732629776001, + -0.012290306389331818, + -0.03425497189164162, + 0.009399894624948502, + 0.007076517213135958, + 0.0036113711539655924, + -0.011825794354081154, + -0.01561023946851492, + 0.004603705834597349, + -0.00546764163300395, + 0.004463357385247946, + -0.017950696870684624, + 0.011209644377231598, + 0.02054782025516033, + 0.00989779643714428, + -0.0049532325938344, + -0.001620525843463838, + -0.0027257048059254885, + 0.018582036718726158, + -0.01581217162311077, + -0.005113258492201567, + 0.00014716867008246481, + 0.010726463049650192, + -0.0022290770430117846, + 0.013861246407032013, + -0.0017179659334942698, + 0.012223311699926853, + 0.020923523232340813, + 0.0064023821614682674, + -0.014059903100132942, + -0.0033184224739670753, + 0.0009609410772100091, + -0.009882441721856594, + -0.0007570667075924575, + -0.003730054711923003, + 0.008144269697368145, + 0.015618730336427689, + -0.0020795378368347883, + 0.00150063366163522, + 0.001073705730959773, + -0.018912840634584427, + 0.02800530195236206, + 0.004765274003148079, + -0.005610303021967411, + -0.014733166433870792, + -0.010063905268907547, + 0.003921774215996265, + -0.01549467071890831, + 0.011257573962211609, + -0.005330649670213461, + -0.010661682114005089, + 0.015372839756309986, + -0.07755757868289948, + 0.01428940799087286, + -0.0008563233423046768, + 0.010464589111506939, + -0.01524833869189024, + 0.013607049360871315, + 0.002959934761747718, + 0.02242916077375412, + 0.00042868254240602255, + 0.0022328642662614584, + 0.019393157213926315, + -0.007689014542847872, + 0.010526919737458229, + 0.0006227708072401583, + 0.012525053694844246, + 0.006493280176073313, + -0.006376328412443399, + 0.00227047479711473, + -0.013968145474791527, + 0.016387488692998886, + -0.001425696536898613, + 0.01247023232281208, + 0.004772753454744816, + -0.0027882943395525217, + 0.006213375832885504, + -0.00819461140781641, + 0.010001549497246742, + -0.0032215744722634554, + 0.015738537535071373, + 0.01320694200694561, + -0.0038914286997169256, + 0.0017170340288430452, + 0.0049290405586361885, + 0.007657559588551521, + -0.01620040461421013, + -0.010773572139441967, + -0.00513490941375494, + 0.009660504758358002, + 0.00917873252183199, + -0.0012012152001261711, + -0.0010862568160519004, + -0.0014669426018372178, + 0.0035343242343515158, + 0.004359906539320946, + -0.014316071756184101, + -0.0017470689490437508, + -0.004449620842933655, + 0.004983066581189632, + 0.01155812293291092, + 0.010705319233238697, + 0.003181337844580412, + -0.006247309967875481, + 0.026605263352394104, + 0.007032389752566814, + 0.002450053347274661, + -0.0005888074520044029, + -0.015544873662292957, + -0.016974814236164093, + -0.00114633166231215, + 0.010764009319245815, + 0.0003143342328257859, + -0.001728661241941154, + 0.0022784180473536253, + 0.010997573845088482, + 0.006177464500069618, + -0.027412595227360725, + -0.01804777793586254, + 0.009585808031260967, + 0.006719960365444422, + -0.030572012066841125, + -0.012381295673549175, + 0.007219466380774975, + 0.0036016551312059164, + 0.017339080572128296, + -0.008006599731743336, + 0.014686178416013718, + -0.006646167952567339, + -0.0065657757222652435, + -0.01209796778857708, + -0.011566829867661, + -0.0029630844946950674, + -0.016780788078904152, + -0.00024830084294080734, + 8.088973117992282e-05, + 0.001192828407511115, + 0.013732371851801872, + -0.0002042848791461438, + -0.0016735746758058667, + 0.001960933208465576, + -0.020821992307901382, + -0.021559899672865868, + 0.017018133774399757, + 0.0036250913981348276, + 0.01851755380630493, + 0.0038628201000392437, + -0.007212965749204159, + 0.005467448383569717, + -0.036950644105672836, + 0.0036748507991433144, + 0.014220770448446274, + 0.01251431368291378, + -0.005192840471863747, + 0.008414050564169884, + 0.0035497196950018406, + -0.0006819144473411143, + -7.173886115197092e-05, + 0.0003808775800280273, + 0.0038218414410948753, + 0.014474127441644669, + -0.00873687956482172, + 0.002315998077392578, + -0.019730202853679657, + -0.006776914931833744, + -0.004373558331280947, + -0.006763757206499577, + 0.022393813356757164, + -0.0022087690886110067, + 0.019340302795171738, + -0.0015762255061417818, + -0.008426900953054428, + -0.00825456716120243, + 0.0012174330186098814, + -0.017731988802552223, + -0.004629127215594053, + -0.00255953473970294, + -0.009603180922567844, + -0.0005322413053363562, + -0.0166099164634943, + -0.01293325424194336, + 0.0012788436142727733, + 0.011178182438015938, + 0.001996109262108803, + 0.008977566845715046, + -0.0036493779625743628, + 0.01037918496876955, + 0.012605859898030758, + -0.02358679287135601, + 0.011010903865098953, + -0.019581986591219902, + -0.011332573369145393, + 0.007407350465655327, + -0.019598189741373062, + -0.014218075200915337, + 0.004117047414183617, + -0.015176636166870594, + 0.02378566935658455, + -0.0008289393153972924, + -0.0323348343372345, + 0.007684408687055111, + -0.004446179606020451, + 0.00019390636589378119, + 0.003778550773859024, + -0.005955370608717203, + 0.009800839237868786, + -0.007457041647285223, + 0.0014899861998856068, + -0.0036340642254799604, + -0.009391474537551403, + 3.061483585042879e-05, + -0.00257321260869503, + -0.003267979249358177, + -0.005599298980087042, + 0.0008840722148306668, + 0.008902582339942455, + -0.0031378697603940964, + 0.007484466768801212, + 0.0019829131197184324, + -0.001781408442184329, + 0.01130002923309803, + 0.04525887966156006, + 0.046589840203523636, + -0.0172610841691494, + 0.024847079068422318, + 0.01491343043744564, + 0.011541018262505531, + -0.002249119570478797, + 0.01878662034869194, + -0.017201494425535202, + -0.006646347232162952, + 0.002933960175141692, + -0.025650477036833763, + 0.005861705169081688, + 0.005997978150844574, + 0.006285118404775858, + 0.002792385872453451, + -0.014947309158742428, + -0.00735187903046608, + -0.004535783547908068, + 6.414826202671975e-05, + 0.004507862962782383, + -0.0044370717369019985, + 0.010990651324391365, + -0.00042385500273667276, + 0.007976589724421501, + -0.024322809651494026, + 0.009113706648349762, + -0.00031868278165347874, + 0.00579978059977293, + 0.05668361485004425, + 0.008745181374251842, + -0.00448381993919611, + 0.0035263688769191504, + 0.002750336891040206, + 0.012828952632844448, + 0.005410345736891031, + -0.005488076712936163, + -0.006783077493309975, + -0.001801704871468246, + -0.009411756880581379, + 0.00886587519198656, + -0.0030693127773702145, + 0.011624992825090885, + 0.0442393533885479, + 0.02095712721347809, + -0.016415001824498177, + 0.01179406326264143, + -0.0044611599296331406, + 0.002257601823657751, + 0.00728954141959548, + 0.014110429212450981, + -0.008575099520385265, + 0.001963503658771515, + -0.010796409100294113, + 0.014452570118010044, + -0.0041703046299517155, + 0.0026072547771036625, + -0.01893962174654007, + -0.011890293098986149, + 0.003035591682419181, + 0.013995606452226639, + -0.0018949727527797222, + -0.01555174682289362, + -0.01394718512892723, + -0.006353096570819616, + 0.008785982616245747, + 0.002280804328620434, + -0.0064743454568088055, + -0.005034741945564747, + -0.009725203737616539, + 0.011426236480474472, + 0.004047491122037172, + -0.002043773652985692, + 0.00441501010209322, + -0.005539003759622574, + -0.004793480038642883, + -0.0100079495459795, + -0.0037401453591883183, + 0.0077521526254713535, + 0.002385540399700403, + -0.0022699388209730387, + -0.0002614728582557291, + 0.02003435045480728, + -0.0035973743069916964, + 0.00025655070203356445, + -0.022133344784379005, + -0.011125356890261173, + 0.015781991183757782, + -0.006763793993741274, + 0.024421919137239456, + -0.00736506562680006, + 0.012677446007728577, + 0.004297289997339249, + 0.008459661155939102, + -0.009705914184451103, + 0.002472114050760865, + 0.0015173096908256412, + -0.006979566533118486, + 0.005693251732736826, + 0.0068381717428565025, + -0.0176186952739954, + 0.006059619598090649, + 0.026550209149718285, + -0.003053041407838464, + -0.00030708519625477493, + 0.008074214681982994, + -0.012975662015378475, + -0.014115123078227043, + 0.011166593059897423, + -0.013788432814180851, + 0.006858402397483587, + 0.025599725544452667, + 0.014062981121242046, + 0.011947858147323132, + 0.004919418599456549, + 0.006530089303851128, + -0.014301501214504242, + 0.013502843677997589, + 0.02078566886484623, + -0.02347526140511036, + -0.002319523598998785, + -0.008901295252144337, + 0.006178534124046564, + 0.022667203098535538, + 0.003996615298092365, + -0.005869580898433924, + 0.0005999627173878253, + 0.005355604458600283, + 0.013275264762341976, + 0.002521343296393752, + 0.009355655871331692, + -0.003759766463190317, + 0.03679117560386658, + -0.0005473191267810762, + 0.004789870698004961, + 0.002298105740919709, + 0.0263934638351202, + -0.013067975640296936, + -0.01121868472546339, + -0.014784980565309525, + 0.011859554797410965, + -0.0018551215762272477, + -4.87934157717973e-05, + -0.00015876856923568994, + -0.0165555402636528, + 0.005950099788606167, + -0.0007183235138654709, + 0.006043141707777977, + -0.014977727085351944, + -0.01172760222107172, + 0.028817586600780487, + -0.02068924345076084, + -0.00805047620087862, + 0.014725414104759693, + -0.006038762163370848, + -0.011302926577627659, + 0.022994358092546463, + -0.007690038066357374, + -0.0036431236658245325, + 0.0034020235762000084, + -0.007005694322288036, + 0.007011978421360254, + -0.005930361337959766, + -0.013789025135338306, + -0.0007029598928056657, + -0.006848386023193598, + 0.016765879467129707, + 0.008662208914756775, + -0.00016285601304844022, + 0.011372101493179798, + 0.010144495405256748, + 0.005929252598434687, + 0.006033616606146097, + -0.015381862409412861, + 0.01472195889800787, + 0.011126113124191761, + -0.0005378149799071252, + 0.0032374938018620014, + 0.004662970546633005, + 0.0033216229639947414, + 0.010963461361825466, + 0.0010014751460403204, + -0.0024824938736855984, + 0.0047948844730854034, + 0.00683951610699296, + 0.0038731552194803953, + -0.020758815109729767, + -0.004896388854831457, + 0.0004135066410526633, + -0.014439978636801243, + 0.004042778629809618, + 0.014723477885127068, + -0.023891424760222435, + 0.017198292538523674, + 0.008646788075566292, + 0.003467733971774578, + 0.02419539913535118, + -0.00015342376718763262, + -0.007190213538706303, + -0.013213815167546272, + -0.00010134764306712896, + 0.018294550478458405, + 0.0015007738256826997, + 0.007068087346851826, + -0.00862707570195198, + 0.010102066211402416, + -0.019159454852342606, + 0.014958648011088371, + -0.005516406614333391, + 0.007139198947697878, + 0.002880622399970889, + -0.011319471523165703, + 0.01146066002547741, + 0.014543232508003712, + 0.013800812885165215, + 0.002744660247117281, + 0.0017631162190809846, + -0.005776275414973497, + 0.0017295132856816053, + 0.012944543734192848, + -0.0016185697168111801, + 0.01479431614279747, + -0.004440004006028175, + 0.012841719202697277, + -0.005643447861075401, + -0.007906331680715084, + 0.011544273234903812, + 0.013387794606387615, + 0.009195792488753796, + -0.007186057046055794, + -0.011509825475513935, + 0.008020967245101929, + 0.006463121622800827, + 0.008224375545978546, + 0.005771473050117493, + -0.010846205987036228, + 0.0074156904593110085, + 0.0012974637793377042, + -0.007542697247117758, + 0.009259331040084362, + -0.0033701423089951277, + 0.0015780951362103224, + -0.011711465194821358, + -0.0032145343720912933, + -0.005452124401926994, + 0.0072387768886983395, + -0.022550659254193306, + -0.00041381281334906816, + 0.005079744383692741, + -0.0017825288232415915, + -0.0048391809687018394, + 0.00764597300440073, + -0.022656498476862907, + 0.01589810475707054, + -0.01299663819372654, + -0.0009668334387242794, + -0.0033806299325078726, + -0.008234304375946522, + -0.007284121587872505, + -0.010832278057932854, + -0.0011493234196677804, + -0.006847670301795006, + -0.030436385422945023, + -0.00012698333011940122, + 0.0063572656363248825, + 0.01077877078205347, + 0.009017189033329487, + 0.011986298486590385, + 0.01034553349018097, + 0.009639318101108074, + -0.0030184276401996613, + 0.003341877134516835, + 0.007015003357082605, + -0.020104777067899704, + 0.012406625784933567, + -0.01043655164539814, + -0.002868578303605318, + 0.00622889120131731, + 0.007424720097333193, + 0.00823885016143322, + -0.004052617587149143, + -0.0056253476068377495, + -0.011545944027602673, + -0.011394476518034935, + -0.004649571143090725, + 0.01124956551939249, + 0.006933226250112057, + 0.009417708963155746, + -0.022340452298521996, + 0.00813506729900837, + -0.009227176196873188, + 0.002532170619815588, + 0.013824029825627804, + 0.0094356220215559, + 0.022120673209428787, + -0.008263546973466873, + -0.014631032012403011, + 0.020231839269399643, + -0.0007591272587887943, + 0.0020888419821858406, + -0.0015595429576933384, + -0.03575226292014122, + -0.0037883457262068987, + 0.0009042042656801641, + 0.02683180756866932, + -0.013934753835201263, + -0.007527620531618595, + -0.007474267855286598, + 0.015696553513407707, + 0.000995142268948257, + -0.0001735904806992039, + 0.02952604368329048, + -0.005637330934405327, + -0.0009659935021772981, + -0.019198589026927948, + 0.007703046780079603, + 0.01785363256931305, + -0.00552228931337595, + 0.006124122068285942, + -0.009306048043072224, + -0.002905388828366995, + 0.0008908462477847934, + 0.005186391994357109, + 0.013454800471663475, + -0.018666105344891548, + 0.010639763437211514, + -0.03592335060238838, + 0.025896960869431496, + 0.004101586062461138, + 0.007875828072428703, + -0.019083069637417793, + 0.008604668080806732, + 0.012113796547055244, + 0.001185158733278513, + 0.01400030218064785, + 0.0135580999776721, + 0.006038535851985216, + -0.0009649849380366504, + -0.007015529088675976, + -0.005505458917468786, + -0.009000481106340885, + -0.0011165339965373278, + -2.8402435418684036e-05, + -0.012370804324746132, + 0.0013177144574001431, + -0.004395239986479282, + 0.01595134846866131, + -0.005426897667348385, + 0.007251160219311714, + -0.006877591833472252, + -0.0007278991979546845, + 0.022806992754340172, + 0.006635634694248438, + 0.013545332476496696, + 0.014006035402417183, + -0.012757642194628716, + 0.012478823773562908, + 0.023684490472078323, + -4.3411357182776555e-05, + -0.002365526743233204, + -0.014906433410942554, + -0.00786422099918127, + 0.012655990198254585, + -0.0032008918933570385, + 0.00039104101597331464, + -0.010400821454823017, + 0.01072637364268303, + -0.0193694569170475, + 0.013218275271356106, + 0.028057236224412918, + -0.015249943360686302, + -0.017555400729179382, + -0.0021923286840319633, + -0.02451365254819393, + -0.004300127737224102, + -0.00823370274156332, + -0.004716154653578997, + -0.019486520439386368, + -0.005952306557446718, + 0.018334195017814636, + -0.006927812937647104, + -0.0011013320181518793, + 0.0046199313364923, + 0.013216539286077023, + 0.0039223856292665005, + -0.021059084683656693, + 0.0006068568327464163, + 0.02495209313929081, + 0.009286788292229176, + 0.00724122766405344, + 0.029215119779109955, + -0.010010628029704094, + -0.002679130295291543, + 0.018376614898443222, + 0.00598720321431756, + -0.019925100728869438, + -0.014281737618148327, + 0.008479435928165913, + 0.025945857167243958, + -0.003062961855903268, + -0.009956656955182552, + -0.014354429207742214, + 0.00587809132412076, + -0.023283889517188072, + 0.028628773987293243, + 0.00429140729829669, + -0.006992781534790993, + 0.002401502802968025, + -0.005625839810818434, + 0.0041180881671607494, + 0.011530767194926739, + -0.00689602131024003, + 0.016638264060020447, + 0.01041579619050026, + 0.0030108292121440172, + 0.002101231599226594, + -0.00037841976154595613, + -0.004070946015417576, + -0.003342266893014312, + -0.016998734325170517, + -0.00018182623898610473, + 0.0015756719512864947, + 0.01142991054803133, + 0.02207057736814022, + 0.0026904623955488205, + 0.005196225829422474, + 0.01580476574599743, + -0.006156208459287882, + 0.011885951273143291, + -0.0007799174636602402, + 0.013319611549377441, + 0.0044038305059075356, + 0.018255045637488365, + -0.006534096319228411, + -0.007269458845257759, + 0.007569340523332357, + -0.017149711027741432, + 0.011415462009608746, + 0.005535958334803581, + -0.004209079779684544, + 0.0026463691610842943, + -3.438508429098874e-05, + 0.000993199646472931, + 0.008805079385638237, + 0.0016398731386289, + 0.006342471577227116, + 0.014752409420907497, + 0.011795269325375557, + -0.006273570470511913, + 0.013273654505610466, + -0.009273144416511059, + -0.011843182146549225, + 0.05234980955719948, + -0.0019428263185545802, + 0.005262820515781641, + -0.013115539215505123, + 0.0007205409929156303, + 0.0035410362761467695, + 0.0077485591173172, + 0.016956446692347527, + -0.01459450088441372, + 0.004170156549662352, + -0.003029783722013235, + -0.022981766611337662, + 0.004879321437329054, + -0.03670768067240715, + 0.019461628049612045, + -0.017412634566426277, + 0.002099738223478198, + 0.004222409799695015, + 0.0032676078844815493, + -0.024398131296038628, + -0.018824705854058266, + 0.011450473219156265, + -0.003032604232430458, + -0.01916564628481865, + 0.005720270331948996, + 0.02046896703541279, + -0.00988121796399355, + -0.013164927251636982, + 0.000911206123419106, + 0.01639745756983757, + 0.012604507617652416, + 0.02462804690003395, + 0.001189656788483262, + -0.009606902487576008, + -0.016885636374354362, + -0.00037459106533788145, + -0.017413925379514694, + 0.01381060853600502, + 0.004519270267337561, + 0.00954142864793539, + 0.01501509640365839, + 0.001774993957951665, + 0.0189693383872509, + 0.008454153314232826, + -0.007134921848773956, + -0.017042042687535286, + 0.003499672980979085, + -0.008593843318521976, + 0.010529579594731331, + -0.018243668600916862, + 0.014834042638540268, + -0.013954898342490196, + 0.018616704270243645, + -0.00015660576173104346, + 0.0020759389735758305, + -0.10711570829153061, + -0.010452686809003353, + -0.004837019369006157, + 0.0006921726162545383, + -0.002384466351941228, + 0.023242179304361343, + 0.010908115655183792, + 0.00563522893935442, + -0.010469972155988216, + -0.0024844775907695293, + -0.013125875033438206, + 0.00470686936751008, + -0.014271007850766182, + 0.016364170238375664, + 0.008302183821797371, + -0.001766433473676443, + -0.010399846360087395, + 0.0007250822382047772, + -0.0022777379490435123, + 0.0028961573261767626, + 0.01719983108341694, + -0.017827440053224564, + 0.007228119298815727, + 0.006320137996226549, + 0.003854993497952819, + -0.01276782713830471, + 0.015625949949026108, + 0.014418529346585274, + 0.01592393033206463, + -0.013507938012480736, + 0.005510238930583, + 0.006647564470767975, + 0.03920510783791542, + -0.007165041286498308, + -0.01436209212988615, + 0.024182433262467384, + 0.00626554386690259, + -0.016545163467526436, + 0.024595484137535095, + -0.018671810626983643, + 0.010462041012942791, + 0.0007065899553708732, + 0.004189967643469572, + 0.01329619437456131, + -0.015276839956641197, + 0.006767666898667812, + -0.0063643185421824455, + 0.01037623267620802, + 0.02432282455265522, + 0.0007637302041985095, + -0.0137235838919878, + -0.0022444024216383696, + 0.0010071705328300595, + 0.006352861877530813, + -0.01551107969135046, + 0.0027260156348347664, + 0.011831045150756836, + -0.0005164308240637183, + 0.01704590953886509, + 0.008617211133241653, + 0.01829523593187332, + -0.012193293310701847, + -0.0092371366918087, + 0.011300534009933472, + 0.001882810378447175, + 0.010202293284237385, + -0.013576657511293888, + -0.010016079060733318, + -0.006829812657088041, + 0.006388531532138586, + 0.0007119468064047396, + 0.0003598509356379509, + -0.0019982722587883472, + -0.0005041266558691859, + -0.006716662086546421, + 0.011837823316454887, + 0.005999821238219738, + 0.0042792875319719315, + 0.00796502735465765, + 0.023391595110297203, + 0.0008305095252580941, + -0.017876876518130302, + 0.023364286869764328, + -0.003924354910850525, + -0.011246148496866226, + -0.0009190492564812303, + -0.0007304890896193683, + -0.0121645862236619, + -0.009181308560073376, + 0.006326625123620033, + -0.009667299687862396, + 0.005818744655698538, + 0.01652427949011326, + -0.002991233952343464, + 0.005475004203617573, + 0.03414422273635864, + 0.02249799109995365, + -0.01482312846928835, + -0.013051049783825874, + 0.006896002218127251, + -0.0006217957707121968, + 0.01602924056351185, + -0.0038207124453037977, + 0.013834146782755852, + 0.006783733144402504, + -0.03633134439587593, + 0.003954942338168621, + 0.0034944391809403896, + -0.0127648264169693, + -0.020763183012604713, + 0.012509279884397984, + 0.002157812938094139, + -0.0024886736646294594, + 0.0035154211800545454, + 0.01729954034090042, + 0.0015727553982287645, + 0.014366348274052143, + -0.013415231369435787, + 0.0011731486301869154, + -0.002829816425219178, + 0.0012501816963776946, + -0.005484620109200478, + -0.010424284264445305, + -0.004799634218215942, + 0.007642914541065693, + 0.018732864409685135, + 0.008545340038836002, + -0.0005084718577563763, + 0.004991286434233189, + -0.01117947231978178, + 0.004016179125756025, + 0.013404185883700848, + -0.007612932473421097, + -0.004348268732428551, + -0.0074010915122926235, + -0.006360107101500034, + 0.009499319829046726, + 0.013793871738016605, + -0.010396642610430717, + 0.009059898555278778, + -0.002150667831301689, + 0.00826996099203825, + 0.004498629830777645, + -0.01262407936155796, + -0.012177340686321259, + -0.005292477086186409, + 0.036458127200603485, + -0.0023297693114727736, + -0.0019349440699443221, + -0.0036535183899104595, + -0.010211405344307423, + -0.0019610426388680935, + 0.012878990732133389, + -0.006661417428404093, + -0.0174196008592844, + -0.006790347397327423, + -0.009622444398701191, + 0.0038930049631744623, + -0.0004616127989720553, + 0.004074281547218561, + -0.015691393986344337, + 0.000713012763299048, + -0.0065719326958060265, + 0.011701507493853569, + 0.006416341755539179, + 0.006839358247816563, + -0.0037775312084704638, + -0.0016442214837297797, + 0.002762402640655637, + 0.03355098515748978, + -0.0038736523129045963, + 0.015581057406961918, + 0.013995488174259663, + -0.0058727264404296875, + 0.0007598770898766816, + 0.010404367931187153, + 0.021536659449338913, + 0.00644846074283123, + 0.008792413398623466, + 0.023859189823269844, + -0.0018819528631865978, + 0.013300330378115177, + -0.005690644960850477, + -0.012407256290316582, + -0.000958844437263906, + -0.014735152944922447, + 0.0013850285904482007, + -0.016938038170337677, + 0.003408632008358836, + 0.0023728760425001383, + 0.013029657304286957, + -0.02118377387523651, + -0.0060134269297122955, + 0.003834213363006711, + 0.011377526447176933, + -0.013030803762376308, + 0.003805515356361866, + -0.01866728626191616, + 0.0028002308681607246, + -2.7733220122172497e-05, + -0.006091804709285498, + -0.005774019286036491, + -0.012579025700688362, + 0.0007100890506990254, + 0.013927573338150978, + -0.018258079886436462, + -0.022313369438052177, + -0.002756310859695077, + -0.01572384499013424, + -0.006625083740800619, + 0.019398760050535202, + 0.002729095285758376, + 0.019853129982948303, + -0.005566127132624388, + 0.011937299743294716, + -0.011787988245487213, + 0.0032708169892430305, + 0.0037077446468174458, + -0.018346039578318596, + -0.028019379824399948, + 0.006216449197381735, + 0.015068735927343369, + 0.009329338558018208, + -0.012329605408012867, + 0.0028100612107664347, + 0.005496283993124962, + 0.0003495032724458724, + 0.00021304930851329118, + 0.005996867548674345, + -0.010849489830434322, + -0.011017684824764729, + 0.008628686890006065, + 0.0012614084407687187, + -0.004339441191405058, + 0.004363118205219507, + -0.012391883879899979, + -0.012630796059966087, + -0.0007510089781135321, + -0.005475376732647419, + 0.005066625773906708, + 0.004448510706424713, + 0.01848464645445347, + 0.0009998998139053583, + -0.0023034168407320976, + 0.01011635735630989, + -0.01847701147198677, + 0.015045756474137306, + 0.0028568520210683346, + 0.003194502554833889, + -0.0006851578946225345, + 0.0034301839768886566, + 0.00011623611499089748, + 0.0072752684354782104, + 0.016400476917624474, + -0.0034583667293190956, + 0.0023592384532094, + -0.019556619226932526, + -0.026097947731614113, + 0.023776696994900703, + 0.010174568742513657, + 0.007374193519353867, + -0.006033621728420258, + -0.0038583192508667707, + 0.0030689456034451723, + 0.003164118155837059, + -0.004474895540624857, + 0.007442106492817402, + 0.002698747906833887, + 0.01641019806265831, + 0.004235520493239164, + 0.0034910475369542837, + 0.004734538495540619, + 0.003240222344174981, + 0.01319616287946701, + 0.005732778459787369, + -0.0030847995076328516, + -0.00690047862008214, + 0.0005597088602371514, + 0.004409167915582657, + 0.002159399213269353, + 0.0008269927348010242, + 0.00035910194856114686, + 0.002140934346243739, + -0.0018892580410465598, + 0.016448380425572395, + 0.0008431196911260486, + -0.011307676322758198, + 0.0016049864934757352, + 0.004898281302303076, + 0.005766325630247593, + -0.0022030477412045, + 0.026297157630324364, + 0.005533681716769934, + 0.0009241767111234367, + 0.009738755412399769, + -0.00439539086073637, + 0.002129076048731804, + -0.0007732847006991506, + -0.015953142195940018, + -0.011893616989254951, + -0.006937225814908743, + -0.01143876276910305, + -0.026382118463516235, + 0.012490889057517052, + 0.02086496353149414, + 0.00578177347779274, + -0.008154124952852726, + 0.019540246576070786, + 0.0015996124129742384, + -0.006384494714438915, + -0.01556541956961155, + -0.002146075712516904, + -0.00035513812326826155, + 0.016266629099845886, + 0.01185255404561758, + -0.009500929154455662, + 0.001221709419041872, + -0.023471921682357788, + 0.0035646785981953144, + -0.01501805055886507, + -0.028810882940888405, + -0.013546204194426537, + 0.008374398574233055, + 0.0115460604429245, + 0.00824049860239029, + 0.012070157565176487, + -0.006611900869756937, + 0.013768586330115795, + 0.0037385306786745787, + 0.0007271416252478957, + 0.004607031121850014, + -0.00776523957028985, + 0.001937952940352261, + 0.030624059960246086, + 0.0009889270877465606, + -0.007302848622202873, + 0.008213336579501629, + -0.0024412961211055517, + 0.007082834839820862, + 0.0016533202724531293, + 0.010424790903925896, + -0.009343322366476059, + 0.01696518436074257, + 0.0012900045840069652, + 0.014806986786425114, + -0.028527863323688507, + -0.0105923255905509, + -0.0022782543674111366, + -0.00738532142713666, + 0.014149632304906845, + 0.0035259618889540434, + 0.004852482117712498, + -0.005787358619272709, + 0.0040915231220424175, + -0.0062475427985191345, + -0.0034928186796605587, + 0.02031572349369526, + -0.014824174344539642, + -0.002240765141323209, + -0.017545130103826523, + -0.0008315388113260269, + 0.024510134011507034, + -0.008492497727274895, + 0.021385932341217995, + 0.00728134298697114, + 0.010273046791553497, + -0.00778474286198616, + 0.01542090903967619, + -0.006157162599265575, + 0.017599282786250114, + 0.008356209844350815, + 0.009212611243128777, + 0.013904394581913948, + 0.004366480279713869, + 0.01255502738058567, + 0.00889467541128397, + -0.0035912347957491875, + 0.0015023999148979783, + -0.021091613918542862, + -0.011302066035568714, + -0.01986178569495678, + 0.016731364652514458, + 0.022804051637649536, + -0.004099712241441011, + 0.009861831553280354, + 0.002896485384553671, + -0.009584610350430012, + -0.00033745114342309535, + -0.005985041614621878, + 0.01509469747543335, + 0.010450529865920544, + 0.004952566232532263, + -0.00827943067997694, + -0.021121006458997726, + -0.017068784683942795, + -0.006766040809452534, + 0.00830538384616375, + 0.00041240081191062927, + 0.008151843212544918, + -0.007628613151609898, + 0.00021232412836980075, + -0.007733104284852743, + -0.014377368614077568, + -0.013839459046721458, + 0.011024481616914272, + -0.02475258708000183, + -0.008222352713346481, + 0.02683355286717415, + 0.010973692871630192, + 0.012571407482028008, + 0.018196167424321175, + -0.0027041092980653048, + -0.014185289852321148, + 0.009743948467075825, + 0.0020281558390706778, + 0.0020917102228850126, + 0.004104027058929205, + 0.00021423972793854773, + -0.009434930980205536, + 0.015898924320936203, + 0.007194292265921831, + 0.0027885418385267258, + 0.0027477110270410776, + -0.000657842552755028, + 0.010457350872457027, + 0.011202655732631683, + 0.027859896421432495, + 0.020409302785992622, + -0.00145288638304919, + 0.010336984880268574, + 0.023457396775484085, + -0.007238065358251333, + -0.0145000284537673, + -0.01596073992550373, + 0.0014477020595222712, + 0.017175674438476562, + 0.009332004934549332, + -0.005216942634433508, + 0.5657637715339661, + 0.007347164675593376, + 0.0027800328098237514, + 0.021425142884254456, + 0.0053408159874379635, + -0.010589840821921825, + -0.015388100408017635, + -0.007779408246278763, + 0.003062574891373515, + 0.0030267827678471804, + 0.00654557952657342, + -0.002401885576546192, + 0.0008141602156683803, + -0.013247126713395119, + -0.004134008195251226, + -0.00036711845314130187, + -0.007604280952364206, + -0.006757247727364302, + -0.016757285222411156, + 0.0019957958720624447, + 0.001963651040568948, + 0.006011889316141605, + 0.01879250630736351, + 0.0026466839481145144, + -0.004782035946846008, + -0.013594431802630424, + -0.005547462962567806, + -0.0001801455218810588, + -0.009358051232993603, + -0.008724148385226727, + -0.0210957583039999, + -0.004935009870678186, + 0.005311598535627127, + -0.019537663087248802, + 0.010842309333384037, + 0.011185312643647194, + 0.015746137127280235, + 0.01180056482553482, + -0.00016825448255985975, + -0.0015376447699964046, + -0.015499432571232319, + 0.012561555951833725, + -0.013507667928934097, + -0.011342845857143402, + 0.003059465205296874, + 0.009151976555585861, + -0.00800412893295288, + -0.031167134642601013, + -0.0009566154330968857, + -0.008306674659252167, + -0.024736981838941574, + -0.008534574881196022, + -0.005349474493414164, + -0.0063428012654185295, + -0.009353569708764553, + 0.0012651971774175763, + -0.005031641572713852, + -0.002414172515273094, + 0.008510186336934566, + -0.014087561517953873, + 0.010181842371821404, + -0.013714142143726349, + -0.01721915602684021, + -0.006060853600502014, + -0.003918968141078949, + -0.004670573398470879, + 0.010250639170408249, + -0.020585618913173676, + -0.008345489390194416, + 0.009298907592892647, + 0.019330529496073723, + -0.018588019534945488, + 0.00900269765406847, + -0.003189625684171915, + 0.007019602693617344, + 0.006132785230875015, + -0.007272451184689999, + -0.010876832529902458, + 0.008496404625475407, + 0.007514307275414467, + -0.003146037459373474, + -0.009670739062130451, + -0.012643735855817795, + -0.010316888801753521, + 0.0014208476059138775, + 0.0049941400066018105, + -0.005101092159748077, + 0.02496962621808052, + -0.006152858026325703, + 0.0005551584763452411, + 0.0062302229925990105, + -0.00542486272752285, + -0.02391073852777481, + -0.0018272363813593984, + -0.012632732279598713, + -0.003627470461651683, + -0.0019860428292304277, + -0.01207092683762312, + -0.011557770892977715, + 0.01733597368001938, + 0.024250298738479614, + -0.009365763515233994, + -0.007245113607496023, + -0.007517037447541952, + -0.018361900001764297, + -0.007975857704877853, + -0.022720376029610634, + 0.004049536772072315, + -0.010308561846613884, + -0.007304439786821604, + 0.0020976033993065357, + 0.045489031821489334, + -0.0032858927734196186, + 0.02046489343047142, + -0.01760382577776909, + -0.01187506876885891, + 0.016689244657754898, + -0.005695678293704987, + 0.015369217842817307, + -0.007886911742389202, + -0.0024905249010771513, + -0.00863149669021368, + -0.008659668266773224, + -0.007023130543529987, + -0.01637008786201477, + -0.008946076966822147, + 0.016410620883107185, + -0.0012194330338388681, + 0.0036846946459263563, + 0.006348431576043367, + -0.002572829369455576, + -0.0039999522268772125, + 0.010846945457160473, + -0.011719846166670322, + -0.003114990657195449, + -0.002763862954452634, + 0.01098170317709446, + -0.001857598777860403, + -0.020011331886053085, + -0.0029456554912030697, + -0.018393687903881073, + -0.0054341577924788, + 0.0028137564659118652, + -0.01804460398852825, + 0.011549623683094978, + -0.008474105969071388, + 0.013407345861196518, + -0.0036865356378257275, + -0.0023896279744803905, + -0.009684807620942593, + -0.008996870368719101, + -0.007720642723143101, + -0.014094032347202301, + -0.010815165005624294, + 0.001110125333070755, + 0.013287889771163464, + 0.001592109678313136, + -0.015890611335635185, + -0.0014252179535105824, + 0.011712338775396347, + 0.00748169282451272, + -0.0006337353261187673, + -0.011793429031968117, + -0.023446809500455856, + -0.008998770266771317, + -0.005601769778877497, + 0.012181260623037815, + -0.004670590162277222, + -0.0045420327223837376, + -0.009086504578590393, + 0.0022144801914691925, + -0.007563081104308367, + -0.010622180067002773, + -0.0031975044403225183, + -0.011821690015494823, + -0.016802385449409485, + -0.01039982121437788, + -0.0037824325263500214, + 0.0025922248605638742, + -0.0066810003481805325, + 0.010676493868231773, + 0.00571621535345912, + -0.0009475973201915622, + -0.011426515877246857, + 0.030204325914382935, + 0.0015883169835433364, + 0.002502047922462225, + -0.01017399039119482, + -0.008980078622698784, + 0.005631623324006796, + 0.0055761453695595264, + 0.017019975930452347, + -0.007201218046247959, + -0.0008862113463692367, + 0.004008281975984573, + -0.007772681303322315, + -0.01448476780205965, + -0.0021093571558594704, + -0.013832803815603256, + -0.011912900023162365, + -0.011305644176900387, + -0.0029455090407282114, + -0.007011322770267725, + 0.011456009931862354, + -0.00841259304434061, + 0.0053315614350140095, + 0.0025943571235984564, + -0.016755053773522377, + -0.0009141482878476381, + 0.024153869599103928, + 0.003481436287984252, + -0.004721879027783871, + -0.008268971927464008, + -0.0028465911746025085, + 0.011822874657809734, + 0.005394745152443647, + -0.009288335219025612, + -0.014152254909276962, + 0.002098365221172571, + -0.00327118462882936, + -0.011524314060807228, + -0.013294235803186893, + 0.017622439190745354, + 0.016504371538758278, + 0.002501637674868107, + 0.0017251252429559827, + -0.004329080693423748, + 0.006444383878260851, + 0.016615422442555428, + -0.0019879438914358616, + 0.019719282165169716, + -0.013423116877675056, + 0.012233452871441841, + -0.010860138572752476, + -0.0004132630710955709, + -0.009765133261680603, + -0.009434803389012814, + 0.004614299163222313, + -0.023316776379942894, + -0.0030151240061968565, + 0.01770804636180401, + -0.0006684526451863348, + -0.00047363238991238177, + 0.00247026770375669, + 0.003317020135000348, + -0.018855372443795204, + 0.013977632857859135, + -0.008273393847048283, + 0.00515926955267787, + 0.013508319854736328, + -0.015768511220812798, + -0.0013725003227591515, + 0.004149173386394978, + 0.00970312487334013, + 0.01136036030948162, + 0.016936054453253746, + -0.0076581696048378944, + -0.02292577363550663, + -0.0035781406331807375, + 0.0030385844875127077, + -0.009003454819321632, + -0.0018257517367601395, + 0.00525451498106122, + -0.02512926235795021, + 0.0016595176421105862, + 0.011147933080792427, + -0.009878788143396378, + -0.00571270240470767, + -0.01890936866402626, + 0.003934508189558983, + -0.008235253393650055, + 0.028074491769075394, + 0.013443736359477043, + -0.00492709269747138, + 0.020196206867694855, + 0.004728803876787424, + -0.0063832951709628105, + -0.011958636343479156, + -0.001130502438172698, + 0.006169548258185387, + -0.0032325282227247953, + -0.0012552265543490648, + -0.008515303023159504, + 0.014030562713742256, + 0.0014902090188115835, + 0.009517773054540157, + -0.00851400662213564, + -0.004519060254096985, + 0.01299740094691515, + -0.008040507324039936, + -0.012118621729314327, + -0.005421037320047617, + 0.0028028932865709066, + -0.00996021181344986, + 0.009123527444899082, + -0.008781586773693562, + -0.010115311481058598, + 0.023281322792172432, + -0.01007544994354248, + 0.006846960633993149, + -0.0043705664575099945, + 0.021909553557634354, + -0.004097933880984783, + -0.08802363276481628, + -0.02106143906712532, + 0.013513651676476002, + 0.001192208961583674, + 0.001898501650430262, + 0.006760536227375269, + -0.0018020394491031766, + -0.006366428919136524, + 0.00221513700671494, + 0.01151110976934433, + -0.006328794173896313, + -0.012183533981442451, + -0.020089920610189438, + 0.017394764348864555, + 0.015416267327964306, + 0.032041024416685104, + -0.0033968565985560417, + -0.008606995455920696, + -0.0012123907217755914, + -0.0035450421273708344, + 0.001353316125459969, + -0.0044565629214048386, + 0.0011106524616479874, + -0.014841838739812374, + -0.015076623298227787, + -0.0056021977216005325, + -0.013884969055652618, + -0.015075643546879292, + 0.014544010162353516, + 0.0071026356890797615, + 0.00101500004529953, + 0.017813093960285187, + 0.0023432455491274595, + -0.01295299082994461, + 0.0014621419832110405, + -0.016999775543808937, + 0.003807596629485488, + -0.003405406139791012, + 0.0004970199661329389, + -0.007844602689146996, + 0.015941288322210312, + -0.005112375598400831, + 0.010639830492436886, + 0.003608274506404996, + -0.002660150174051523, + 0.012425553984940052, + -0.0020617730915546417, + 0.02406587451696396, + 0.0011794251622632146, + -0.0021752638276666403, + 0.011746801435947418, + -0.010657194070518017, + 0.007877061143517494, + 0.0037738275714218616, + -0.0015828178729861975, + 0.008777158334851265, + 0.011762689799070358, + 0.0012772978516295552, + 0.0335814505815506, + 0.00733417272567749, + 0.011221455410122871, + 0.003913998603820801, + -0.05059807747602463, + 0.00789982546120882, + 0.003499395912513137, + 0.003264643484726548, + -0.016632037237286568, + 0.014015968888998032, + 0.0008412174647673965, + -0.019234664738178253, + 0.0003077960864175111, + 0.0014048860175535083, + -0.012179276905953884, + -0.0011352472938597202, + 0.01411463599652052, + 0.012267252430319786, + 0.017049606889486313, + 0.012434333562850952, + 0.01338894385844469, + -0.0010682676220312715, + -0.00020910236344207078, + 0.01078351866453886, + -0.007339154370129108, + 1.2219772543176077e-05, + -0.00870462041348219, + 0.010110949166119099, + 0.017029140144586563, + 0.021819425746798515, + 0.030024025589227676, + 0.010827982798218727, + -0.006570218130946159, + 0.00024932180531322956, + 0.005387795623391867, + 0.01046882662922144, + 0.007431707810610533, + 0.015107827261090279, + 0.011513936333358288, + -0.02415904588997364, + -0.00035206080065108836, + -0.005487638060003519, + 0.002964395098388195, + -0.005437444429844618, + -0.032376185059547424, + -0.007872146554291248, + -0.0014440775848925114, + -0.01033695787191391, + -0.017265288159251213, + -0.0013461230555549264, + -0.021994462236762047, + -0.02415148727595806, + -0.016286099329590797, + 0.009272179566323757, + 0.0007762622553855181, + -0.0012015665415674448, + 0.010063947178423405, + -0.003498455509543419, + -0.001953290542587638, + -0.00856313668191433, + -0.0007242618012242019, + -0.005477693397551775, + 0.021165484562516212, + -0.0029264886397868395, + -0.012185299769043922, + -0.01363409124314785, + -0.0029106130823493004, + 0.009711814112961292, + 0.010900883935391903, + 0.0025063587818294764, + 0.001913799555040896, + -0.027089430019259453, + -0.003581408644095063, + 0.010829501785337925, + 0.0015095319831743836, + -0.011873769573867321, + 0.006222384050488472, + 0.007091899868100882, + -0.012278507463634014, + -0.0027301418595016003, + -0.00019212298502679914, + 0.010135809890925884, + 0.013130757957696915, + 0.019259236752986908, + 0.005396521650254726, + -0.020297689363360405, + -0.016598673537373543, + 0.003815285163000226, + 0.0074564022943377495, + -0.003330845385789871, + -0.006583973299711943, + 0.00855560228228569, + -0.012044178321957588, + -0.0012632806319743395, + -0.004272229503840208, + -0.002650590380653739, + -0.010540809482336044, + 0.0027165585197508335, + 0.007331191096454859, + 0.01431818027049303, + -0.007683834061026573, + -0.015430714935064316, + -0.005226559471338987, + -0.007788266520947218, + -0.015599719248712063, + -0.008703355677425861, + 0.0014347081305459142, + 0.014230897650122643, + -0.01575477048754692, + -0.01876264251768589, + -0.014367512427270412, + 0.005699543748050928, + 0.01088457740843296, + -0.007536156568676233, + -0.004961434286087751, + -0.0019067334942519665, + 0.0004890135023742914, + 0.003067281097173691, + 0.019207177683711052, + -0.01563446596264839, + -0.0055464799515903, + 0.0030222609639167786, + -0.0007971009472385049, + -0.004234483931213617, + 0.002528103766962886, + 0.015786919742822647, + -0.030153390020132065, + -0.004045561421662569, + 0.025044910609722137, + 7.244861626531929e-05, + -0.008305593393743038, + 0.0032436714973300695, + -0.01774953305721283, + -0.006135414820164442, + -0.018793348222970963, + -0.019990921020507812, + -0.009048356674611568, + -0.006654258351773024, + 0.0032776175066828728, + -0.010694155469536781, + -0.007080829236656427, + -0.0044401101768016815, + 0.014082251116633415, + -0.01121265348047018, + -0.010128612630069256, + 0.01925242319703102, + -0.00033600180177018046, + -0.0069997841492295265, + -0.007570445537567139, + -0.002827360760420561, + 0.007506654132157564, + -0.0026442387606948614, + -0.002234108978882432, + -0.002617643680423498, + -0.0021182906348258257, + 0.01841583102941513, + 0.011672869324684143, + -0.0001182387859444134, + -0.0032937342766672373, + -0.006553031038492918, + 0.007321881130337715, + 0.019063441082835197, + 0.015101146884262562, + -3.072527761105448e-05, + -0.003164180088788271, + -0.00422890717163682, + -0.028047451749444008, + -0.024297969415783882, + 0.006461953744292259, + -0.004111361689865589, + -0.010120658203959465, + 0.01789030060172081, + 0.002884367946535349, + -0.046050991863012314, + -0.0003705915005411953, + 0.0010902422945946455, + -0.00619415333494544, + -0.009265251457691193, + 0.020713351666927338, + -0.003269256791099906, + 0.006468125618994236, + -0.011960155330598354, + -0.003132451791316271, + -0.0078794676810503, + 0.010360927321016788, + -0.0023206521291285753, + 0.02306429110467434, + 0.011625180020928383, + -0.0017667943611741066, + 0.0039044611621648073, + 0.016787495464086533, + 0.00954147893935442, + -0.006375618278980255, + 0.007566717453300953, + -0.0017422102391719818, + 0.008884700946509838, + -0.0006286804564297199, + 0.015857139602303505, + 0.01405594777315855, + -0.0009372348431497812, + -0.004537881817668676, + -0.02115693874657154, + 0.00010025400115409866, + 0.019618334248661995, + -0.027691952884197235, + -0.010157540440559387, + 0.03005489706993103, + 0.0006550339167006314, + 0.004653646145015955, + -0.012504496611654758, + 0.004962639883160591, + 0.0071885231882333755, + 0.006380720995366573, + -0.0006423534941859543, + -0.023510564118623734, + 0.0011317272437736392, + 0.002562042325735092, + -0.02962752990424633, + -0.0036120982840657234, + -0.0007018356118351221, + 0.024145696312189102, + -0.017578210681676865, + 0.0017765057273209095, + 0.003600034862756729, + 0.006507917772978544, + -0.007588847074657679, + 0.004530456382781267, + 0.0030091966036707163, + -0.014934475533664227, + -0.004761294927448034, + 0.00692491652444005, + -0.021698515862226486, + 0.01024780422449112, + 0.0036697157192975283, + -0.009937198832631111, + -0.010712274350225925, + -0.011577746830880642, + 0.0031257744412869215, + 0.0025464140344411135, + -0.009597580879926682, + -0.004034108016639948, + -0.0017875941703096032, + -0.004008167888969183, + 0.005800537299364805, + -0.005313503555953503, + 0.007049708627164364, + -0.010749267414212227, + 0.00736423023045063, + -0.007122552953660488, + 0.002434526104480028, + 0.00669931760057807, + -0.0012598931789398193, + -0.0014931564219295979, + -0.0013965844409540296, + -0.01197541132569313, + 0.021942202001810074, + -0.009979521855711937, + -0.0010114839533343911, + 0.007150887046009302, + -0.003501482307910919, + -0.020292965695261955, + -0.0008880076929926872, + 0.010328948497772217, + 0.013299328275024891, + -0.011221281252801418, + 0.008300535380840302, + -0.0035867602564394474, + -0.01010889932513237, + -0.005430378019809723, + -0.010175761766731739, + -0.0152455884963274, + 0.0011843395186588168, + -0.0028304581064730883, + 0.0035292278043925762, + -0.008709833025932312, + 0.014642083086073399, + -0.007232709787786007, + 0.03840690478682518, + -0.009665997698903084, + 0.0005345417885109782, + -0.0015041271690279245, + -0.012577157467603683, + -0.007096578367054462, + -0.00037368133780546486, + -0.009401790797710419, + 0.02626096084713936, + 0.001333670224994421, + -0.005622813478112221, + -0.01733890362083912, + 0.0181723665446043, + 0.01064646802842617, + -0.0031244345009326935, + -0.0021561658941209316, + 0.003970449324697256, + -0.0012456855038180947, + 0.003242038656026125, + 0.003229272086173296, + 0.00200041476637125, + -0.0003896128328051418, + 0.0009268397698178887, + 0.016818828880786896, + 0.009229018352925777, + 0.001359975547529757, + -0.007114913780242205, + 0.01489937026053667, + -0.003395055653527379, + 0.003273960202932358, + -0.002543386537581682, + -0.0028789727948606014, + -0.0006337965605780482, + 0.011353032663464546, + 0.0004926432739011943, + -0.011298051103949547, + 0.004159373696893454, + -0.028746793046593666, + -0.003263453021645546, + 0.016893882304430008, + 5.541901373362634e-06, + 0.0009700045920908451, + 0.017989574000239372, + -0.017062826082110405, + -0.0077725485898554325, + -0.014502574689686298, + 0.008218991570174694, + 0.014914728701114655, + 0.014201181940734386, + -0.00499041099101305, + -0.03709988668560982, + 0.014481020160019398, + 0.0077733066864311695, + 0.007407368626445532, + -0.032326146960258484, + -0.008230086416006088, + -0.0003701938840094954, + -0.01177404448390007, + 0.010536739602684975, + -0.018296265974640846, + 0.009322304278612137, + 0.0025587202981114388, + 0.026303928345441818, + 0.005214092321693897, + 0.007987267337739468, + 0.009067725390195847, + 0.01014806143939495, + 0.0011404386023059487, + -0.006888609379529953, + 0.018652888014912605, + 0.012058964930474758, + -0.01579536497592926, + 0.007561777718365192, + 0.003771096235141158, + -0.013754363171756268, + -9.385884914081544e-05, + 0.01284779328852892, + 0.0232949648052454, + 0.027935471385717392, + -0.011896220967173576, + -0.019467651844024658, + -0.0104471230879426, + -0.013015031814575195, + 9.089570085052401e-05, + -0.024582410231232643, + 0.003219424979761243, + -0.00960149522870779, + 0.017305830493569374, + 0.011247778311371803, + 0.00983396265655756, + 0.009354631416499615, + -0.012147920206189156, + -0.005585755221545696, + -0.006761882454156876, + 0.021228689700365067, + -0.005507396999746561, + 0.01635950431227684, + 0.013348917476832867, + 0.01674656756222248, + -0.014750758185982704, + 0.00017700859461911023, + 0.0011746074305847287, + -0.009579334408044815, + 0.02256692200899124, + 0.029146654531359673, + -0.007836048491299152, + -0.015024689957499504, + 0.009033344686031342, + 0.01010845322161913, + -0.007364295423030853, + 0.006337953265756369, + -0.018295899033546448, + 0.0027694106101989746, + -0.005813853349536657, + 0.02465994656085968, + -0.024943549185991287, + -0.014290758408606052, + -0.0015676879556849599, + 0.001677904394455254, + 0.005169665440917015, + -0.013807202689349651, + -0.01066895853728056, + -0.0068039377219974995, + 0.008540869690477848, + -0.009875742718577385, + 0.022465549409389496, + -0.007014337461441755, + 0.00036438123788684607, + 0.021157389506697655, + 0.011890875175595284, + -0.015277453698217869, + -0.010427102446556091, + 0.0042160567827522755, + -0.0007684803567826748, + 0.006692219991236925, + 0.008069342002272606, + -0.004716049414128065, + -0.011545529589056969, + -8.485147554893047e-05, + 6.063605906092562e-05, + -0.006532042752951384, + -0.009291588328778744, + 0.012683965265750885, + -0.010103177279233932, + -0.013869524002075195, + 0.00806176383048296, + -0.0014264745404943824, + 0.0004708124906755984, + -0.008758919313549995, + -0.002669702051207423, + -0.006660546641796827, + -0.01017164159566164, + -0.011274929158389568, + 0.035491228103637695, + -0.008907891809940338, + -0.0006513908156193793, + 0.005545156076550484, + -0.06341096758842468, + 0.037198618054389954, + -0.007202372886240482, + -0.006352428812533617, + 0.013143845833837986, + -0.005013242829591036, + 0.01954071782529354, + 0.010403844527900219, + -0.011871248483657837, + 0.013297388330101967, + 0.008112458512187004, + -0.017048288136720657, + -0.01275898888707161, + -0.005467806942760944, + -0.007642862852662802, + 0.017916686832904816, + -0.0006958862650208175, + -0.0034572873264551163, + 0.00039302927325479686, + 0.004572450648993254, + -0.005238117650151253, + 0.007962603121995926, + -0.010062513872981071, + -0.006933000870049, + 0.007378663867712021, + -0.007968764752149582, + 0.013920453377068043, + 0.0028039466124027967, + -0.02461831457912922, + 0.015665333718061447, + 0.0001844854123191908, + 0.015465730801224709, + -0.012838825583457947, + -0.02410038746893406, + 0.009851351380348206, + 0.006519628223031759, + -0.015812300145626068, + -0.020392892882227898, + -0.02554573118686676, + 0.0057439180091023445, + -0.00419062003493309, + 0.02618471160531044, + -0.010153038427233696, + -0.013893408700823784, + 0.007269210647791624, + -0.020394884049892426, + 0.0005065395962446928, + 0.004255509003996849, + -0.011244476772844791, + -0.005516685079783201, + 0.015148038044571877, + 0.007704564835876226, + -0.016840122640132904, + 0.021375415846705437, + -0.010293695144355297, + 0.001458461512811482, + 0.003066958859562874, + -0.007220672443509102, + -0.009397250600159168, + 0.0016990063013508916, + 0.01307766605168581, + -0.006720640696585178, + -0.011474596336483955, + -0.005356822162866592, + -0.018975654616951942, + -0.001016632653772831, + -0.009161869995296001, + -0.005800176877528429, + -0.006041809916496277, + -0.0025015822611749172, + -0.02704126201570034, + -0.00825094897300005, + 0.018155761063098907, + 0.0003838112170342356, + 0.0239984393119812, + 0.009124474599957466, + -0.0037894754204899073, + 0.0024439662229269743, + -0.003963494207710028, + -0.003442519810050726, + 0.004086940549314022, + 0.0003801921848207712, + 0.0029695085249841213, + -0.000377753225620836, + -0.012418164871633053, + 0.009840112179517746, + -0.009353787638247013, + 0.0029479116201400757, + 0.007851509377360344, + -0.011063436977565289, + 0.011874706484377384, + 0.009092268534004688, + -0.007841767743229866, + -0.010799245908856392, + 0.010262285359203815, + -0.004390958696603775, + 0.015702184289693832, + 0.009718074463307858, + -0.0013305152533575892, + -0.010511375963687897, + 0.009255618788301945, + 0.005234966054558754, + -0.01322933193296194, + -0.04746730253100395, + -0.0012918245047330856, + 0.006555603817105293, + 0.001583235221914947, + -0.004900092259049416, + -0.03514013811945915, + 0.01935054548084736, + 0.01406900305300951, + 0.019113484770059586, + -8.110034832498059e-05, + -0.00730741024017334, + -0.009061766788363457, + 0.013211077079176903, + -0.009439748711884022, + 0.0122979786247015, + 0.005143505986779928, + 0.0016581389354541898, + -0.005110221449285746, + -0.0030878956895321608, + 0.008579453453421593, + -0.024622512981295586, + -0.0012229852145537734, + 0.0004971546004526317, + 0.009835682809352875, + -0.00166005315259099, + 0.0164533331990242, + 0.011824152432382107, + 0.0005180923617444932, + -0.006835356820374727, + 0.01868392340838909, + -0.004568200558423996, + -0.004034867510199547, + 0.010674558579921722, + -0.009726053103804588, + -0.028843866661190987, + -0.007782755885273218, + 0.004218558315187693, + 0.0013197797816246748, + 0.0020930294413119555, + -0.006574084050953388, + 0.012091975659132004, + -0.003381198737770319, + 0.021094156429171562, + 0.01892843283712864, + 0.0029864548705518246, + 0.006617947481572628, + 0.004647239577025175, + 0.0009820150444284081, + -0.006929941941052675, + 0.009467787109315395, + 0.012270529754459858, + 0.003352892119437456, + -0.011128652840852737, + 0.006019609048962593, + 0.00956051703542471, + 0.006180197466164827, + 0.01813274808228016, + -0.005169048439711332, + 0.004636040423065424, + -0.0056359670124948025, + 0.009236210025846958, + -0.015377811156213284, + -0.002537731546908617, + 0.0028346730396151543, + 0.002008547307923436, + -0.01598641276359558, + 0.006566022522747517, + -0.005359114613384008, + -0.01366229448467493, + -0.008321892470121384, + 0.020022111013531685, + 0.0020187459886074066, + -0.0006982150371186435, + 0.0025075299199670553, + 0.0057313209399580956, + -0.020586760714650154, + 0.010595415718853474, + 0.013957655057311058, + -0.0003292798064649105, + -0.004255493637174368, + -0.01107744313776493, + -0.02664034441113472, + -0.026227496564388275, + 0.0005381815135478973, + -0.007229706738144159, + 0.013303445652127266, + 0.003954380750656128, + 0.015039506368339062, + -0.018765879794955254, + 0.000550079217646271, + 0.007559293881058693, + 0.0060676694847643375, + -0.007461662404239178, + -0.0007045239908620715, + -0.006529886741191149, + 0.0024926457554101944, + -0.0016856021247804165, + -0.006997987162321806, + -0.01665407605469227, + -0.022381119430065155, + -0.005500363186001778, + -0.00834225956350565, + -0.02226673625409603, + 0.012261690571904182, + -0.015185805037617683, + -0.0007959859794937074, + 0.0077156787738204, + -0.00043891111272387207, + -0.005556975491344929, + 0.005461719818413258, + -0.0031277090311050415, + 0.004022025037556887, + 0.002899021841585636, + -0.023144248872995377, + -0.0015473637031391263, + -0.0010258363327011466, + -0.005930946208536625, + -0.008935296908020973, + 0.009984944947063923, + -0.0019941090140491724, + -0.006878937128931284, + -0.006864017341285944, + 0.01151119265705347, + -0.015940049663186073, + 0.014340614899992943, + -0.0160189438611269, + -0.0011345873354002833, + 0.013932834379374981, + -0.011768564581871033, + -0.004781886003911495, + 0.001501939375884831, + 0.00521917175501585, + -0.006444394588470459, + -0.010893977247178555, + 0.013923252932727337, + -0.02135184034705162, + 0.0028659666422754526, + -0.009776298888027668, + 0.02765612117946148, + -0.010799563489854336, + -0.02137214131653309, + -0.002309963572770357, + -0.01279920432716608, + -0.004049236420542002, + -0.0012747778091579676, + -0.025255950167775154, + -0.01087279710918665, + -0.013813665136694908, + -0.0018657814944162965, + 0.005248543340712786, + -0.011591311544179916, + 0.0003319842217024416, + -0.012878404930233955, + -0.00866525899618864, + 0.017298057675361633, + -0.004015311133116484, + 0.01598167046904564, + 0.0026535100769251585, + 0.003650279715657234, + -0.016588857397437096, + -0.01473625935614109, + -0.01921679638326168, + 0.006978082004934549, + 0.0068710846826434135, + -0.018048496916890144, + -0.007898985408246517, + 0.006398409139364958, + -0.013305642642080784, + -0.022785086184740067, + 0.0002888895105570555, + -0.0003578767355065793, + -0.008027400821447372, + -0.00023048587900120765, + 0.0031025754287838936, + 0.00499394116923213, + -0.000508831231854856, + -0.010393411852419376, + -0.00925162062048912, + -0.0015229713171720505, + 0.0009510957170277834, + -0.02598375827074051, + -0.003454295452684164, + 0.015306530520319939, + 0.0016538595082238317, + 0.0032961219549179077, + -6.701445090584457e-05, + -0.017023760825395584, + 0.004923150409013033, + -0.0061832913197577, + 0.035710226744413376, + -0.015047653578221798, + -0.005078513640910387, + -0.01379335019737482, + -0.00697725685313344, + 0.022417504340410233, + 0.013656741008162498, + -0.011135675013065338, + 0.004726439248770475, + -0.004037687089294195, + 0.011433662846684456, + -0.002462895354256034, + 0.030232446268200874, + -0.006936297751963139, + -0.006330997217446566, + 0.007219693623483181, + 0.006550284568220377, + 0.010510072112083435, + 0.006415837444365025, + 0.0035714630503207445, + 0.0030058010015636683, + 0.014392566867172718, + 0.007853805087506771, + -0.00505110714584589, + -0.005649355240166187, + 0.01034874189645052, + 0.0027231844142079353, + -0.007951870560646057, + 0.0005647095385938883, + -0.007256250362843275, + 0.0004838688764721155, + 0.010153694078326225, + 0.011133048683404922, + -0.003950861748307943, + -0.014936443418264389, + -0.004322350025177002, + 0.0072149476036429405, + 0.008131708949804306, + 0.0026589652989059687, + -0.009958748705685139, + 0.018812309950590134, + 0.0012399539118632674, + 0.01488702092319727, + 0.018511280417442322, + -0.006599940825253725, + 0.0015313471667468548, + 0.004748165141791105, + -0.0016582498792558908, + 0.007317616604268551, + -0.01409955509006977, + -0.0036522254813462496, + 0.025007497519254684, + 0.03649967163801193, + -0.0053554922342300415, + -0.014967572875320911, + -0.005980329588055611, + 0.006628252100199461, + -0.012098460458219051, + -0.007237283047288656, + -0.025209438055753708, + 0.02800591289997101, + 0.003022742923349142, + 0.011678558774292469, + -0.011298416182398796, + 0.01488160528242588, + 0.01808963529765606, + 0.008849632926285267, + 0.01585179567337036, + 0.025207694619894028, + -0.0008361093350686133, + 0.01075885072350502, + 0.00934178289026022, + -0.010268384590744972, + 0.005135037004947662, + 0.014309005811810493, + 0.00027605981449596584, + -0.006341249216347933, + -0.020029999315738678, + -0.00539914658293128, + -0.015277830883860588, + -0.00019626347057055682, + 0.005137022119015455, + 0.01727941446006298, + -0.010430766269564629, + 0.00984545424580574, + -0.010942282155156136, + -0.00852249376475811, + 0.00512581504881382, + 0.010089862160384655, + -0.0030465296003967524, + 0.0022806222550570965, + -0.005104765761643648, + -0.015766749158501625, + 0.008463319391012192, + 0.018420172855257988, + -0.0025287147145718336, + -0.010322521440684795, + 0.01871650107204914, + -0.007809664588421583, + -0.0008917947998270392, + 0.013401096686720848, + -0.006695935502648354, + 0.00482858857139945, + -0.019966691732406616, + -0.004954364616423845, + 0.016885600984096527, + -0.006751530803740025, + -0.03621022030711174, + 0.010112006217241287, + -0.01926230639219284, + 0.003140720073133707, + -0.005960523616522551, + 0.015349764376878738, + 0.012875508517026901, + -0.009480014443397522, + -0.00805528275668621, + 0.021657105535268784, + 0.021779656410217285, + 0.011639163829386234, + 0.002360239624977112, + -0.0014270100509747863, + -0.01882927678525448, + -0.0004794169217348099, + -0.00794509332627058, + -0.007107438985258341, + 0.009157470427453518, + -0.015807222574949265, + -0.004017251078039408, + 0.01732376031577587, + 0.0167225431650877, + -0.0010982831008732319, + 0.029169762507081032, + 0.01709575392305851, + -0.014310022816061974, + -0.03258555009961128, + -0.013991200365126133, + 0.006489940918982029, + 0.001615966553799808, + 0.016151001676917076, + 0.013150024227797985, + -0.008211514912545681, + 0.00786011666059494, + 0.004189020022749901, + 0.017930708825588226, + -0.003978269174695015, + 0.0012145994696766138, + 0.004107580054551363, + -0.0057496302761137486, + -0.004030283074826002, + -0.01211044192314148, + -0.009082680568099022, + 0.0045399474911391735, + -0.0012817076640203595, + -0.014309882186353207, + -0.014407156966626644, + 0.0014783189399167895, + -0.0267524104565382, + 0.0013484688242897391, + -0.00020829059940297157, + 0.013203470967710018, + 0.008353044278919697, + 0.006871117278933525, + -0.01455489918589592, + 0.007603942882269621, + 0.00207712990231812, + 0.007309071719646454, + -0.0005626001511700451, + 0.007369591388851404, + -0.013656077906489372, + 0.0038224065210670233, + 0.02721456065773964, + -0.005340605974197388, + 0.002101417863741517, + -0.004951536655426025, + 0.0002518178953323513, + 0.003159937681630254, + -0.015799324959516525, + 0.00655882153660059, + -0.007344123441725969, + 0.00571858836337924, + 0.011164866387844086, + -0.010405074805021286, + 0.011595155112445354, + 0.01803446002304554, + 0.0006343754357658327, + -0.015866706147789955, + -0.01571042090654373, + -0.019301077350974083, + 0.014673993922770023, + 0.012057876214385033, + -0.007319636642932892, + 0.0023969097528606653, + 0.007907068356871605, + -0.003011374967172742, + 0.001887309132143855, + -0.004363163840025663, + -0.010491271503269672, + -0.011266736313700676, + 0.013011517003178596, + -0.011367548257112503, + -0.006587365176528692, + 0.002358499448746443, + 0.010760764591395855, + 0.022124681621789932, + -0.011056231334805489, + 0.023807603865861893, + 0.011447406373918056, + -0.014168101362884045, + -0.011220987886190414, + 0.018689392134547234, + 0.008262855932116508, + -0.014730607159435749, + 0.008002869784832, + -0.010068785399198532, + 0.022238070145249367, + 0.017576031386852264, + -0.019289596006274223, + 0.02381657250225544, + -0.007622560020536184, + -0.023236533626914024, + -0.005743055604398251, + -0.0026795819867402315, + 0.006510724313557148, + 0.010952584445476532, + 0.011588257737457752, + -0.011411632411181927, + 0.0056270272471010685, + -0.016741972416639328, + -0.008865362964570522, + -0.0088163698092103, + 0.01530619990080595, + -0.03288981691002846, + 0.01625639759004116, + 0.0025789286009967327, + -0.004226037301123142, + 0.013072896748781204, + -0.003940675873309374, + -0.03842106834053993, + -0.0144626684486866, + 0.010255369357764721, + -0.015428634360432625, + -0.024676166474819183, + 0.01184220053255558, + 0.015394812449812889, + -0.005788906943053007, + -0.011956003494560719, + 0.0036089704371988773, + 0.003913870081305504, + -0.0039076413959264755, + 0.01436882745474577, + 0.0011513790814206004, + -0.009262459352612495, + -0.01005908939987421, + -0.00977494940161705, + 0.007311587687581778, + 0.007146350108087063, + -0.01736111007630825, + 0.0029286087956279516, + -0.0076034534722566605, + -0.007449059281498194, + -0.009219088591635227, + 0.02232610434293747, + 0.0006264363182708621, + 0.006074542645365, + 0.006276661995798349, + -0.01713099330663681, + 0.015993637964129448, + -0.0054436661303043365, + 0.007370238658040762, + -0.010401906445622444, + -0.009244419634342194, + -0.0007994069601409137, + 0.005876296199858189, + -0.004495117347687483, + -0.015567122027277946, + -0.0011651025852188468, + 0.003459980245679617, + 0.006132664158940315, + -0.0047852396965026855, + -0.02136656641960144, + -0.007600969169288874, + 0.0038866945542395115, + 0.0046066842041909695, + 0.005579396151006222, + 0.008400688879191875, + -0.008040456101298332, + 0.01730489730834961, + 0.007829415611922741, + -0.0045511010102927685, + -0.010717328637838364, + -0.00935422908514738, + -0.0025691406335681677, + -0.011537074111402035, + -0.01419559121131897, + 0.014786972664296627, + -0.0046496307477355, + 0.01574488915503025, + -0.025512926280498505, + 0.004475373774766922, + 0.01792319118976593, + -0.017885779961943626, + -0.009232021868228912, + 0.0018708559218794107, + 0.053696952760219574, + 0.00837019644677639, + 0.013524877838790417, + 0.008195130154490471, + 0.0026814588345587254, + -0.0031228456646203995, + -0.012029346078634262, + -0.012699618004262447, + -0.005354434251785278, + -0.018801404163241386, + 0.005719136446714401, + -0.00020844576647505164, + 0.015653381124138832, + 0.014251749031245708, + -0.0020027055870741606, + -0.015264845453202724, + -0.0357603058218956, + 0.0009716548956930637, + -0.022184019908308983, + 0.015959899872541428, + -0.005502263084053993, + 0.006895934231579304, + 0.016211697831749916, + 0.023717714473605156, + 0.010444274172186852, + 0.05054965615272522, + -0.010763931088149548, + 0.004308731760829687, + 0.0022271815687417984, + 0.021941525861620903, + 0.017896849662065506, + 0.0027210444677621126, + -0.008078465238213539, + 0.026572812348604202, + -0.005977761931717396, + 0.004794570151716471, + 0.00472823902964592, + -0.002499478403478861, + -0.020102573558688164, + 0.013427887111902237, + -0.008084618486464024, + -0.007660678122192621, + -0.03369205817580223, + -0.010172323323786259, + -0.01446785219013691, + -0.002278758678585291, + -0.010290213860571384, + -0.005963964853435755, + -0.004383750259876251, + 0.01452932134270668, + -0.021109620109200478, + -0.018888596445322037, + 0.016007112339138985, + -0.009596756659448147, + 0.0005390928126871586, + 0.000732839573174715, + 0.006719892378896475, + -0.006374436430633068, + 0.0054481737315654755, + -0.009754413738846779, + 0.009401766583323479, + -0.013410267420113087, + -0.007188484538346529, + -0.01260843500494957, + 0.00482142111286521, + 0.00802060216665268, + 0.0010598724475130439, + -0.009024442173540592, + -0.0009493776015006006, + 0.0015098043950274587, + 0.011939970776438713, + 0.013826051726937294, + -0.03094187006354332, + 0.0034058240707963705, + -0.019686035811901093, + -0.01628817245364189, + -0.0005037895170971751, + -0.013279411941766739, + -0.006760868709534407, + -0.013829146511852741, + -0.0012654735473915935, + -0.03101489320397377, + -0.006244422867894173, + 0.005041169002652168, + -0.004790185485035181, + 0.019413448870182037, + 0.016260532662272453, + -0.025967830792069435, + 0.005832270253449678, + -0.002960727782920003, + -0.007002423517405987, + 0.01081748865544796, + 0.0029531153850257397, + 0.01994319073855877, + -0.008475087583065033, + 0.0025519304908812046, + -0.009262780658900738, + 0.005720801185816526, + 0.010460961610078812, + -0.004788147285580635, + -0.006569022312760353, + 0.013485818170011044, + -0.0005992975202389061, + -0.01689276471734047, + -0.022253258153796196, + -0.0006855128449387848, + -0.0045733824372291565, + 0.006006588693708181, + -0.004082337487488985, + -0.024123327806591988, + -0.0007718784618191421, + -0.011813487857580185, + 0.0017006953712552786, + 0.023982787504792213, + 0.057504478842020035, + -0.019109206274151802, + 0.0018086136551573873, + 0.022264251485466957, + 0.012084276415407658, + -0.004872625693678856, + 0.020563943311572075, + -0.005231546703726053, + -0.003112321486696601, + -0.015210908837616444, + -0.00864348653703928, + 0.0006317734369076788, + 0.007679128088057041, + -0.012676897458732128, + 0.00325298635289073, + -0.011769015341997147, + 0.006537202745676041, + 0.0049499147571623325, + 0.005687753204256296, + 0.01495970506221056, + -0.001063426723703742, + 0.0019465037621557713, + 0.004222019575536251, + -0.004503222648054361, + 0.004052731208503246, + 0.007698060013353825, + -0.015976127237081528, + 0.039748601615428925, + -0.014027930796146393, + 0.010096187703311443, + -0.01835806481540203, + 0.0016574112232774496, + -0.02814437635242939, + -0.009830747731029987, + 6.823520379839465e-05, + 0.007974718697369099, + -0.012335499748587608, + 0.00888560526072979, + 0.023091081529855728, + -0.005425586365163326, + 0.006081018131226301, + 0.005132048390805721, + 0.006615377496927977, + -0.00043341307900846004, + 0.012479248456656933, + -0.00891553983092308, + 0.01805895008146763, + -0.004523963201791048, + -0.0017287401715293527, + 0.008427005261182785, + -0.002040313323959708, + 0.003355322638526559, + 0.007044922094792128, + 0.013434643857181072, + -0.0025981266517192125, + -0.0019018122693523765, + 0.00032327231019735336, + 0.003626399440690875, + -0.005177598912268877, + 0.00031260401010513306, + 0.009568952955305576, + 0.018939057365059853, + 0.023062556982040405, + -0.0154877919703722, + 0.011511201970279217, + -0.0012101568281650543, + -0.021232694387435913, + 0.006596380844712257, + -0.001694719772785902, + 0.017554597929120064, + 0.0035998879466205835, + 0.018437154591083527, + 0.020373618230223656, + 0.004032711498439312, + -0.006049913354218006, + -0.010736492462456226, + -0.008054116740822792, + 0.002927673514932394, + -0.0010319071589037776, + -0.018820883706212044, + -0.0004943891544826329, + 0.013988560996949673, + 0.0012491913512349129, + -0.008306808769702911, + -0.010100781917572021, + 0.014610318467020988, + -0.008111836388707161, + -0.0026655218098312616, + 0.015490219928324223, + -0.0033232553396373987, + -0.0028877784498035908, + -0.008301328867673874, + 0.010482065379619598, + -0.04292604699730873, + -0.01922685280442238, + -0.003945159260183573, + -0.009961816482245922, + -0.010071326047182083, + -0.057059146463871, + 0.008550021797418594, + 0.00365073443390429, + -0.0025373564567416906, + 0.0063314735889434814, + -0.01400780864059925, + 0.023318026214838028, + -0.00882974173873663, + -0.004166270140558481, + -0.005254821851849556, + 0.02720722183585167, + 0.007773872930556536, + -0.010011223144829273, + 0.014683166518807411, + -0.012698548845946789, + -0.006247360724955797, + 0.010201772674918175, + 0.013841355219483376, + -0.010533863678574562, + -0.008942999877035618, + -0.0009572315029799938, + 0.0035392167046666145, + 0.0017856614431366324, + -0.010922635905444622, + -0.015392673201858997, + -0.008870628662407398, + -0.008876421488821507, + -7.637312955921516e-05, + -0.011174417100846767, + 0.0006698267534375191, + 0.005111617036163807, + 0.008524948731064796, + 0.004109878093004227, + 0.003136809216812253, + 0.008110134862363338, + 0.013288935646414757, + 0.004287670832127333, + 0.0032892096787691116, + 0.007255019620060921, + 0.00831339880824089, + -0.0024227737449109554, + 0.004917996469885111, + -0.00658186711370945, + -0.011948002502322197, + -0.0035475087352097034, + -0.01736205257475376, + -0.0031688574235886335, + 0.0014089068863540888, + -0.014576531015336514, + -0.015909332782030106, + -0.007596724200993776, + 0.016634183004498482, + 0.017017787322402, + 9.312824113294482e-05, + -0.0029177339747548103, + 0.001216431614011526, + -0.013495570980012417, + 0.012088547460734844, + 0.011449652723968029, + 0.00018194438598584384, + 0.007543093990534544, + -0.00992522481828928, + -0.03179773688316345, + 0.0032385890372097492, + 0.015858368948101997, + 0.020725639536976814, + 0.012689346447587013, + -0.03653771057724953, + -0.0015457791741937399, + 0.014713728800415993, + 0.01276052463799715, + 0.007724427618086338, + 0.01729007065296173, + -0.005874435883015394, + 0.009227707982063293, + 0.0011555860983207822, + 0.001719201449304819, + -0.0012633270816877484, + 0.005073499400168657, + 0.007668925449252129, + -0.003686986630782485, + -0.007253243587911129, + 0.006895753089338541, + -0.0015174918808043003, + 0.013899225741624832, + 0.013713357038795948, + -0.006439153105020523, + -0.012897658161818981, + 0.006772745866328478, + -0.008313881233334541, + 0.001278629875741899, + 0.009103282354772091, + -0.014164239168167114, + 0.012437539175152779, + 0.034027066081762314, + -0.004173992667347193, + -0.005546663422137499, + -0.0015596355078741908, + -0.008508021011948586, + -0.00881542544811964, + -0.008657531812787056, + 0.007004359737038612, + -0.0010276929242536426, + -0.002622010884806514, + 0.0013035137671977282, + -0.014972088858485222, + 0.016117937862873077, + -0.00627579540014267, + -0.00033830179017968476, + 0.0005522425635717809, + 0.03351173549890518, + 0.012099006213247776, + -0.01505013182759285, + -0.022881701588630676, + 0.007859488017857075, + 0.013425013981759548, + 0.016294579952955246, + -0.01770814321935177, + -0.006552223116159439, + -0.004979319870471954, + -0.009417101740837097, + -0.007604957092553377, + 0.00487359706312418, + -0.003945297095924616, + -0.010244166478514671, + 0.01719312183558941, + -0.002643048297613859, + 0.0012151377741247416, + 0.01637452095746994, + 0.013519607484340668, + -0.003476691897958517, + 0.002243991242721677, + -0.006857960019260645, + 0.009468280710279942, + 0.012287902645766735, + 0.0029027664568275213, + 0.0058203102089464664, + -0.014605899341404438, + -0.026383470743894577, + 0.0021367387380450964, + -0.0071159852668643, + -0.009317003190517426, + 0.017207536846399307, + 0.004898435901850462, + -0.0011991310166195035, + 0.006830295082181692, + -0.0014364178059622645, + -0.004360712133347988, + -0.017447946593165398, + -0.012246732600033283, + -0.01569671742618084, + 0.0020620108116418123, + 0.016909414902329445, + -0.009191264398396015, + -0.010065227746963501, + -0.003522684797644615, + -0.0009244410903193057, + -0.03556380048394203, + 0.0015986802754923701, + 0.033493466675281525, + -0.008634495548903942, + 0.007095214445143938, + 0.010191009379923344, + 0.002624878892675042, + -0.006201199255883694, + 0.014350860379636288, + 0.0009729441371746361, + -0.016346946358680725, + -0.02185986191034317, + -0.0008300470071844757, + 0.010545806027948856, + 0.005420439876616001, + 0.0241923276335001, + 0.0002772263833321631, + 0.0161972027271986, + -0.012101135216653347, + -0.00468304380774498, + 0.0012572299456223845, + -0.009147902019321918, + 0.013742445968091488, + 0.010897506959736347, + -0.04279671236872673, + 0.00666821701452136, + -0.01343004871159792, + -0.030256835743784904, + -0.0030167337972670794, + -0.003705698763951659, + -0.004918111488223076, + 0.002440178068354726, + 0.006717332173138857, + -0.010441162623465061, + 0.017287401482462883, + -0.004288231022655964, + -0.01809241808950901, + -0.01645304635167122, + 0.009531872346997261, + -0.0008420441299676895, + -0.0025485220830887556, + -0.008993039838969707, + -0.0023701523896306753, + 0.017281198874115944, + -0.009888212196528912, + -0.0065821269527077675, + -0.010748689994215965, + -0.011663245037198067, + -0.016435867175459862, + 0.0023850935976952314, + -0.008688382804393768, + 0.005426943302154541, + -0.03801596537232399, + -0.001039041206240654, + -0.00012923819303978235, + 0.0030674885492771864, + 0.005272570066154003, + -0.018177788704633713, + -0.02339644730091095, + -0.0074196080677211285, + -0.012696740217506886 + ] + } + }, + "global_mean": [ + 2.585225820541382, + 3.2246084213256836, + 1.2519481182098389, + -1.2865735292434692, + 2.240736961364746, + -0.12324029952287674, + -4.169494152069092, + 0.8421916365623474, + -0.2280440330505371, + -0.7857394218444824, + 2.8802289962768555, + 1.2455344200134277, + 1.945849895477295, + 2.5357024669647217, + 0.008212417364120483, + 1.6496118307113647, + 1.7115743160247803, + 2.556664228439331, + -0.5178878903388977, + 2.8777220249176025, + 0.23734259605407715, + 3.667827606201172, + -1.3199858665466309, + 2.409323215484619, + -0.06452023983001709, + -0.7217087745666504, + 6.605279445648193, + 2.666078567504883, + -0.7222757339477539, + 0.3799588680267334, + 0.38268619775772095, + 1.6740336418151855, + 3.843203544616699, + 0.958047091960907, + -1.5140873193740845, + -2.908810615539551, + 2.6310815811157227, + 0.26107531785964966, + -2.4254019260406494, + -1.1147078275680542, + -6.450953483581543, + -3.076427459716797, + -2.7593202590942383, + 0.7438175678253174, + -0.2255690097808838, + 1.0457260608673096, + 3.0260977745056152, + -3.6892895698547363, + -1.7753915786743164, + -3.6667213439941406, + 1.0887922048568726, + -5.946871757507324, + 0.45270565152168274, + 3.3661348819732666, + 1.3454475402832031, + -1.7769088745117188, + -3.8778634071350098, + 0.5080281496047974, + -3.108034372329712, + -2.8063998222351074, + 1.8735812902450562, + -1.7925677299499512, + 2.059732437133789, + -0.214656263589859, + -3.179159641265869, + -0.9117261171340942, + 2.5688223838806152, + 1.2160841226577759, + 3.933025598526001, + 3.3737754821777344, + 0.9272702932357788, + -0.21261191368103027, + -2.023038387298584, + -1.738680124282837, + 4.595266819000244, + 1.1071527004241943, + -0.8607960343360901, + -0.9747052192687988, + 2.0853428840637207, + -1.3393325805664062, + -0.3377119302749634, + 0.2598782777786255, + 0.7774415016174316, + -2.756603717803955, + 2.9617667198181152, + 0.7079271078109741, + 2.0245089530944824, + -5.36761999130249, + -2.359529972076416, + -2.8351850509643555, + 4.048660755157471, + 0.8661588430404663, + -0.09789299964904785, + -1.756505012512207, + 5.55694580078125, + -10.840065002441406, + -2.268655776977539, + 0.3022422790527344, + -4.256340503692627, + 1.234825611114502, + 0.5761070251464844, + -1.8638310432434082, + -2.214620351791382, + -0.4435119926929474, + -1.8247566223144531, + -1.7959951162338257, + 1.8277432918548584, + 0.20244348049163818, + 0.8460768461227417, + -2.0737252235412598, + 0.8993580341339111, + 1.0490734577178955, + -2.1189980506896973, + -2.324310302734375, + -1.67579984664917, + 0.41071581840515137, + 0.6603987216949463, + -1.3391098976135254, + -2.963644504547119, + 2.8224287033081055, + -0.3861384391784668, + 0.15373072028160095, + -0.43125295639038086, + -3.945462465286255, + -1.473610281944275, + 3.2725918292999268, + 1.659852385520935, + -1.2004001140594482, + 2.2491092681884766, + -2.5009608268737793, + -1.0662684440612793, + -1.665058970451355, + -3.205890417098999, + 7.930553436279297, + 0.5547521114349365, + 2.1751890182495117, + -0.537520706653595, + 2.377041816711426, + -7.646238327026367, + -1.8151524066925049, + 0.34131568670272827, + -0.8623511791229248, + -3.4306910037994385, + -2.1334710121154785, + -1.1275508403778076, + -1.6439712047576904, + -4.418944835662842, + -3.6728272438049316, + 2.131441593170166, + 3.618842601776123, + 2.118764877319336, + -0.2104053795337677, + -3.2677841186523438, + -0.5330466628074646, + 2.0879507064819336, + 6.208223819732666, + 2.0847995281219482, + 0.5425491333007812, + -0.5241094827651978, + -3.356679677963257, + 0.33684712648391724, + 0.018852174282073975, + 1.2745352983474731, + -1.3530988693237305, + 2.5868263244628906, + 0.9051740169525146, + 0.9679603576660156, + 0.44448399543762207, + 0.49696871638298035, + -0.6388643980026245, + -2.612837076187134, + -1.1413614749908447, + -8.438880920410156, + 2.697688341140747, + 1.4032528400421143, + 2.792588233947754, + -1.3915905952453613, + -0.6131316423416138, + -4.716279029846191, + 0.0384485125541687, + -1.531905174255371, + 0.11971363425254822, + -0.9081871509552002, + -4.670360088348389, + -1.2361388206481934, + 4.448307037353516, + -0.8468488454818726, + 1.6374330520629883, + -0.732085108757019, + 0.5822856426239014, + -0.7441793084144592, + -1.1957478523254395, + 0.47966068983078003, + -2.241171360015869, + 0.669676661491394, + -0.6825921535491943, + -3.622513771057129, + 1.1285057067871094, + 3.6809563636779785, + -1.1075925827026367, + -2.5466458797454834, + -4.119195938110352, + -0.15142017602920532, + -2.561885118484497, + -2.1618762016296387, + 0.07572925090789795, + -0.7951868772506714, + 2.880841016769409, + -15.586167335510254, + 2.3404083251953125, + -1.1029815673828125, + -0.09791350364685059, + 2.53841495513916, + 1.2596675157546997, + 0.3763282895088196, + -1.4492326974868774, + -0.4087620675563812, + -1.9735674858093262, + -3.8683173656463623, + -0.2878175377845764, + -1.611250877380371, + 9.634897232055664, + -1.4763097763061523, + 2.9108188152313232, + -3.731045722961426, + 1.0238004922866821, + 1.6856441497802734, + 1.9305875301361084, + 3.779564380645752, + -3.378307580947876, + -3.54150390625, + 3.068509101867676, + -0.3224409818649292, + -77.97689056396484, + -2.426894426345825, + 2.9253129959106445, + -0.6628100275993347, + 2.02901029586792, + 2.2461459636688232, + -0.790401816368103, + -0.2977534532546997, + 2.158374071121216, + 1.9729528427124023, + 1.8282690048217773, + 0.36179715394973755, + -0.9182773232460022, + 0.30171990394592285, + -1.757110595703125, + 3.8666439056396484, + 1.878103494644165, + -0.5017091035842896, + -4.50297212600708, + 2.4521493911743164, + 2.546877384185791, + 0.8224101662635803, + 0.7800936698913574, + -0.6490988731384277, + -2.145265579223633, + 1.0536725521087646, + 0.7064832448959351, + 2.118617534637451, + -1.0236330032348633, + -1.8058720827102661, + -0.3120439350605011, + 2.1270341873168945, + 0.8956778645515442, + -0.9257568120956421, + -2.4400529861450195, + -0.16363006830215454, + 0.918700635433197, + 25.411052703857422, + -0.2563086748123169, + -0.04923298954963684, + -0.0397343635559082, + -3.6380467414855957, + 2.500321388244629, + -0.25705069303512573, + -1.5688828229904175, + -4.123023986816406, + -2.47772216796875, + -3.359870433807373, + -3.118363380432129, + -5.07200813293457, + -1.165235996246338, + -0.6969590187072754, + 0.7161507606506348, + -1.8858145475387573, + 1.0178290605545044, + -0.9046686291694641, + -0.5140629410743713, + 1.4323607683181763, + 2.2917943000793457, + 1.3838067054748535, + 0.3289874792098999, + 3.0131208896636963, + 2.8460636138916016, + 0.7366592288017273, + -0.5812675952911377, + -3.1402664184570312, + -1.2318856716156006, + -2.323939323425293, + 2.0548911094665527, + 2.383578300476074, + 2.5536417961120605, + 0.06504915654659271, + -8.975854873657227, + -0.8316776752471924, + -0.5915391445159912, + 3.314152240753174, + 1.0319359302520752, + -1.8802238702774048, + -4.415377616882324, + -3.839174270629883, + 3.130448579788208, + -0.15610945224761963, + -4.311400413513184, + 1.3854799270629883, + 0.26283180713653564, + 0.5468038320541382, + -1.6070318222045898, + 3.148164749145508, + 0.32255229353904724, + 2.292179584503174, + 2.674819231033325, + 0.4681433439254761, + -2.0482702255249023, + 1.4284417629241943, + 2.0023128986358643, + -0.17651474475860596, + -3.0410079956054688, + 1.388838529586792, + -0.6288105249404907, + 1.36357581615448, + 2.7567381858825684, + -1.7127227783203125, + 1.606954574584961, + -5.462468147277832, + 0.3746635317802429, + 12.751944541931152, + 1.3841490745544434, + -0.22165969014167786, + -2.607583999633789, + -1.7798717021942139, + -0.12398773431777954, + -3.9250130653381348, + -1.1969099044799805, + -2.170098304748535, + 1.0846335887908936, + 1.9458661079406738, + -0.2729431986808777, + 5.290936470031738, + -1.0140057802200317, + 1.6794847249984741, + -0.41534918546676636, + -0.6297929286956787, + -1.2214003801345825, + 1.9960567951202393, + -0.09474098682403564, + 1.8690662384033203, + -0.029356420040130615, + -0.059609293937683105, + 1.1423250436782837, + -0.0008514523506164551, + 1.0116422176361084, + 1.7413356304168701, + 1.1868596076965332, + 2.1359364986419678, + -0.913615345954895, + -15.199060440063477, + 2.7443323135375977, + 0.5977643728256226, + -0.8339780569076538, + -3.818686008453369, + -0.16429133713245392, + -1.896846890449524, + 0.1367398500442505, + 1.1401240825653076, + 1.6649682521820068, + -1.4995269775390625, + 2.822854995727539, + 2.2069711685180664, + -19.822511672973633, + 0.9773969054222107, + 0.8242765665054321, + -1.7312264442443848, + 0.6880491971969604, + -0.37403976917266846, + 3.3418591022491455, + 0.5673539638519287, + -1.4491801261901855, + 3.740755796432495, + -1.454576015472412, + 0.8628904819488525, + -0.38133764266967773, + 0.4222290515899658, + 0.1134161651134491, + 2.9452075958251953, + 0.13913562893867493, + -0.7830259799957275, + -0.6762832999229431, + 1.4881727695465088, + -1.3306752443313599, + -0.5828956961631775, + 0.6820816993713379, + -0.8690067529678345, + -0.7788758277893066, + 1.1838796138763428, + -1.8300997018814087, + 0.7697911262512207, + 1.3476824760437012, + 2.228071689605713, + -8.126045227050781, + -1.0371253490447998, + 0.8486683368682861, + -0.22630083560943604, + 2.5609569549560547, + 1.729119062423706, + -1.3814878463745117, + 1.8222649097442627, + 0.849716067314148, + -0.44863617420196533, + 5.211020469665527, + 2.570472478866577, + -0.2330201268196106, + -2.44913649559021, + 2.2325937747955322, + -4.021230697631836, + 0.5901892185211182, + -0.1178886890411377, + 4.55971097946167, + 3.3484787940979004, + -1.530949354171753, + 9.67990493774414, + -2.8594179153442383, + 1.9830172061920166, + -1.0236263275146484, + 0.05866628885269165, + 1.4816616773605347, + 5.732532501220703, + 2.804417610168457, + -1.0428991317749023, + -2.5605721473693848, + 0.016021430492401123, + -27.34012794494629, + -1.7800920009613037, + -0.016823232173919678, + 1.0169016122817993, + -5.02308988571167, + -1.7356443405151367, + 3.150848627090454, + -0.8539930582046509, + 0.38977402448654175, + -3.8998448848724365, + -0.631037175655365, + -1.7148159742355347, + 3.393888473510742, + 0.046722471714019775, + -0.41308438777923584, + 3.2503697872161865, + 3.907837152481079, + -3.2753443717956543, + -1.0340561866760254, + 0.6214783191680908, + 3.2767300605773926, + -0.10581567883491516, + 0.3886909484863281, + 7.30787992477417, + 1.629995346069336, + -0.45157480239868164, + 3.017327308654785, + -14.830361366271973, + 0.6054752469062805, + 1.2199599742889404, + -2.179645299911499, + -1.6300543546676636, + 1.8828904628753662, + -0.5445572137832642, + 1.4197230339050293, + 0.9299669861793518, + 0.09796109795570374, + -4.572699069976807, + 1.762566089630127, + -0.05009859800338745, + 12.997092247009277, + -2.1031155586242676, + -2.08476185798645, + -3.141556978225708, + 4.429213047027588, + -0.789737343788147, + -1.957862138748169, + 2.136809825897217, + 0.2567799985408783, + -2.674154043197632, + -0.372249960899353, + 0.8865931034088135, + -0.4000890254974365, + 1.4726758003234863, + -0.7257725596427917, + 0.4040370583534241, + 0.5279622077941895, + -0.19027885794639587, + -2.4229273796081543, + -1.7980248928070068, + -2.430056571960449, + -0.9270765781402588, + 7.578343868255615, + 0.023625850677490234, + -1.9667249917984009, + -0.6517784595489502, + -0.2716904282569885, + -1.4942619800567627, + 3.7437920570373535, + -1.0361156463623047, + -1.26917564868927, + -6.497834205627441, + -1.383115291595459, + -1.5131815671920776, + -0.7149122357368469, + 0.3844960331916809, + -2.6786201000213623, + -1.9838019609451294, + 0.32583823800086975, + 2.0150527954101562, + 4.545204162597656, + 1.3466068506240845, + -0.9585628509521484, + -0.22869694232940674, + -0.3015481233596802, + 1.3203877210617065, + -1.3435401916503906, + 0.07158321142196655, + 3.9942874908447266, + 0.5551115870475769, + 2.925478935241699, + -0.3706466853618622, + -0.2408187985420227, + -3.4113245010375977, + -3.9138333797454834, + -1.7222721576690674, + 0.6567467451095581, + -0.6266313195228577, + -11.11755657196045, + 2.166856527328491, + -2.6612703800201416, + 1.5181877613067627, + -9.368316650390625, + -1.4685490131378174, + 0.31125035881996155, + 0.863784909248352, + 75.50946044921875, + 0.14407950639724731, + -1.9870147705078125, + -2.0984911918640137, + 1.2842873334884644, + -3.9602270126342773, + -1.910365343093872, + -0.6306564807891846, + 0.906292200088501, + -1.7838327884674072, + -5.2262115478515625, + -0.5518398284912109, + 2.0658416748046875, + -0.9892245531082153, + 2.2956502437591553, + -1.432908296585083, + 1.5578868389129639, + -0.42830413579940796, + 0.3190465271472931, + -3.440269708633423, + -2.7162744998931885, + -1.1909259557724, + -3.2571496963500977, + -1.727304458618164, + -1.5761336088180542, + -0.18406212329864502, + 0.2710421681404114, + -0.39849787950515747, + 0.3121161460876465, + -3.0116634368896484, + -2.023359775543213, + -2.7348082065582275, + 4.05500602722168, + -0.5141932964324951, + -0.6272006034851074, + 0.9131008386611938, + -1.529434084892273, + 2.070549726486206, + 0.485934317111969, + -0.8620055913925171, + 3.0775723457336426, + 1.5013611316680908, + 0.4943265914916992, + -0.42232590913772583, + 2.8092267513275146, + -1.7353721857070923, + -0.740770161151886, + 0.3667796850204468, + 0.8968600034713745, + 2.8004939556121826, + -1.0782322883605957, + -2.1972904205322266, + 2.488581657409668, + -0.3387634754180908, + -0.8781201243400574, + -0.26298987865448, + -2.8922152519226074, + 0.8886444568634033, + -0.6069965362548828, + -2.640653371810913, + -4.466884613037109, + 1.8872710466384888, + 2.9980764389038086, + -1.4194517135620117, + -0.28542008996009827, + -0.26062822341918945, + -3.2901856899261475, + -0.9000722169876099, + -0.012173652648925781, + -0.956487774848938, + 2.038930892944336, + -0.8628465533256531, + -0.09309837222099304, + 0.01610356569290161, + -0.6402835845947266, + -1.9689548015594482, + -2.0458030700683594, + 1.0940649509429932, + -0.8109617233276367, + 0.8453361988067627, + 0.9046779870986938, + -0.4022422730922699, + -5.482985019683838, + 0.9912290573120117, + 2.6929240226745605, + 0.16385185718536377, + 2.3636343479156494, + -0.9489800930023193, + 0.1313084363937378, + 0.7486114501953125, + -4.849472522735596, + 0.21530389785766602, + 4.000329494476318, + -1.6239135265350342, + -1.375343680381775, + -4.822537422180176, + 0.3603804111480713, + 0.6214379668235779, + 0.9346408843994141, + 0.5798507928848267, + -3.1833744049072266, + 1.0115997791290283, + 1.1856969594955444, + 0.03866460919380188, + 2.18446683883667, + -3.036332130432129, + 0.6189796328544617, + 0.19588536024093628, + -1.3943005800247192, + -2.774078369140625, + 0.3920174837112427, + 0.763852596282959, + 1.7727282047271729, + 2.9854202270507812, + -0.6814916133880615, + -0.8990577459335327, + -0.78950035572052, + 0.5097098350524902, + -2.8360581398010254, + -0.5813838839530945, + 2.1431360244750977, + -3.085636615753174, + 0.7594467401504517, + -2.2226693630218506, + -0.19394302368164062, + 5.092523574829102, + 0.8601054549217224, + -0.3483039140701294, + -1.6334400177001953, + 5.870997905731201, + 1.515190839767456, + 5.222195625305176, + 1.8005614280700684, + -5.011198043823242, + -0.3440006375312805, + 4.780605316162109, + 1.1967315673828125, + -0.15521365404129028, + -1.7300174236297607, + -3.7926440238952637, + -0.1313670426607132, + 10.781379699707031, + -1.292508602142334, + 3.4639220237731934, + 1.4355359077453613, + 1.1630399227142334, + -2.484665870666504, + 3.1413471698760986, + 0.9153444170951843, + 0.542842447757721, + -2.556351900100708, + -0.7029640078544617, + -1.0805130004882812, + -12.83712387084961, + 1.330811619758606, + 2.7753922939300537, + -3.276991605758667, + 2.559089183807373, + -2.302544355392456, + -4.644595623016357, + 1.644033432006836, + 0.3831270635128021, + -1.9114032983779907, + 2.0574872493743896, + 3.193005323410034, + 1.4777350425720215, + -1.2914358377456665, + -13.241351127624512, + 3.5373613834381104, + 1.8364944458007812, + 2.1224989891052246, + -1.1205365657806396, + 1.0851669311523438, + 0.2028917372226715, + -2.68376088142395, + 0.8177070021629333, + -2.509403705596924, + -3.6545047760009766, + 0.5857366323471069, + 2.1400249004364014, + -0.1419559121131897, + 3.1681079864501953, + 1.4693334102630615, + 0.14295735955238342, + 1.3498218059539795, + 2.562671422958374, + -0.10442888736724854, + -2.229090690612793, + -0.3982622027397156, + 2.9297232627868652, + 3.2068982124328613, + 2.812012195587158, + -1.7450249195098877, + 0.6601495146751404, + 0.4617912769317627, + 1.593921184539795, + -0.7037973403930664, + 0.7049014568328857, + 7.903841018676758, + 1.6679059267044067, + -1.754514217376709, + -4.678622722625732, + -0.32847991585731506, + 2.9859836101531982, + -1.2292609214782715, + 1.4405936002731323, + 3.378113269805908, + -1.5072827339172363, + 3.446431875228882, + -2.1335391998291016, + 0.7519979476928711, + 0.3902661204338074, + -5.2397027015686035, + 1.4178390502929688, + 1.8966892957687378, + -0.7111836075782776, + 1.8815503120422363, + 0.645531415939331, + 0.6426842212677002, + -0.3084239959716797, + -0.08631494641304016, + -0.8548358678817749, + 2.2135207653045654, + -1.3470443487167358, + 1.3338496685028076, + -2.2258851528167725, + 3.9658493995666504, + 2.7685468196868896, + 2.8152718544006348, + -2.1015753746032715, + -0.12295210361480713, + -2.5424883365631104, + 1.8890304565429688, + -0.8668325543403625, + 0.48517099022865295, + 3.069849967956543, + -1.579350233078003, + -0.6844909191131592, + -2.46486496925354, + -0.19379152357578278, + -1.9294722080230713, + 2.9412758350372314, + 0.5749813318252563, + 2.4288909435272217, + -0.19205844402313232, + -0.21021604537963867, + -0.3844146430492401, + 2.803154468536377, + 1.5868772268295288, + -3.731929063796997, + 2.22635555267334, + 5.323977470397949, + 0.09525009989738464, + 2.4648640155792236, + 1.667337417602539, + -0.7812758088111877, + 1.5618952512741089, + 2.4271538257598877, + -1.7072603702545166, + -0.0716363787651062, + 1.2853195667266846, + 3.096682548522949, + -15.331351280212402, + 2.550859212875366, + 1.4299525022506714, + 0.538346529006958, + 2.807016372680664, + -1.1876215934753418, + -2.41873836517334, + 2.1185288429260254, + -1.7876101732254028, + -1.0007601976394653, + 2.7208964824676514, + -6.193789482116699, + 0.9618919491767883, + 0.0885922908782959, + 0.5165001749992371, + -1.0230391025543213, + -3.4102625846862793, + -0.6293935179710388, + -1.7691327333450317, + -4.504828453063965, + -4.523143768310547, + -0.9714663028717041, + -1.5821477174758911, + -2.500472068786621, + 0.14311636984348297, + -0.7339867353439331, + -4.722191333770752, + -1.799703598022461, + 3.2427115440368652, + -0.4655739367008209, + -1.858276128768921, + 3.238191604614258, + 4.309863090515137, + 1.0211730003356934, + -2.1445083618164062, + -1.907177448272705, + 1.2355252504348755, + -2.1097683906555176, + 2.844512462615967, + 1.8499735593795776, + -0.01959812641143799, + 1.4842767715454102, + -1.7450389862060547, + 0.33971649408340454, + 1.435941457748413, + -1.0777902603149414, + -2.1497225761413574, + -3.5317108631134033, + 0.5925078988075256, + 0.3504592180252075, + 0.9767302870750427, + -2.3627612590789795, + -4.378376007080078, + 1.672318458557129, + 3.8684165477752686, + -0.5283490419387817, + -0.4747828245162964, + 1.2729604244232178, + 2.412994384765625, + -1.321211338043213, + 0.030451476573944092, + -1.8787592649459839, + -1.6392619609832764, + -1.6346197128295898, + 1.1918550729751587, + -9.185525894165039, + -3.4080862998962402, + 1.0608468055725098, + -0.4833858013153076, + -0.2099180817604065, + -1.4503202438354492, + 2.2542662620544434, + 2.038182020187378, + 0.19016441702842712, + -3.1394150257110596, + -0.9432473182678223, + -1.1989705562591553, + 0.698144793510437, + 1.1025974750518799, + 1.559600591659546, + -4.258444786071777, + -1.328361988067627, + -2.624685287475586, + -2.8114821910858154, + -2.083561420440674, + -1.7052745819091797, + -0.763867974281311, + 3.0657873153686523, + -0.2768641710281372, + -0.021126627922058105, + -1.7530114650726318, + 1.3855847120285034, + -1.327821135520935, + -3.090865135192871, + 0.8581166863441467, + 0.5352922081947327, + -3.053750514984131, + -2.9282069206237793, + -2.905900001525879, + 0.8068978786468506, + -3.3020105361938477, + -4.569434642791748, + -1.9288758039474487, + -1.4074091911315918, + -1.5316777229309082, + 1.0958573818206787, + -0.3001552224159241, + -4.772039413452148, + 0.6826870441436768, + -3.500568151473999, + 2.62579345703125, + 0.1784149408340454, + 8.345964431762695, + 2.785482883453369, + 0.03557571768760681, + -0.8234082460403442, + -0.7926722764968872, + 0.9297515749931335, + -3.1696252822875977, + -1.5858242511749268, + 2.6998181343078613, + 2.020712375640869, + -1.7900713682174683, + -2.551945209503174, + -1.787876844406128, + 1.0887491703033447, + -1.8504719734191895, + 2.2803425788879395, + 0.24093708395957947, + -2.0099093914031982, + -0.7075501680374146, + 1.5199958086013794, + 2.9187309741973877, + -0.9818817973136902, + -3.2232041358947754, + 2.41627836227417, + -0.7507275342941284, + 0.5758904218673706, + -3.455901622772217, + -0.03638935089111328, + 1.9367458820343018, + -0.4250144362449646, + -1.068611741065979, + -1.883148431777954, + -1.872905969619751, + 0.8354183435440063, + 4.046061038970947, + 1.2255651950836182, + 3.439497947692871, + 3.908428192138672, + -1.5168932676315308, + -0.08704781532287598, + 0.4662352204322815, + 0.21524161100387573, + -1.4457663297653198, + -1.0515754222869873, + -0.38879257440567017, + -5.165531158447266, + -3.9651684761047363, + 1.0204061269760132, + -1.7217860221862793, + -4.956663608551025, + -1.4676146507263184, + 1.0622518062591553, + 2.3412718772888184, + -3.013963222503662, + -3.890259265899658, + -3.888418197631836, + -0.3861677050590515, + -0.8670680522918701, + 1.4236372709274292, + -0.4518112540245056, + -0.578672468662262, + -2.7653346061706543, + -2.3893771171569824, + -0.14767898619174957, + -5.216886520385742, + 3.081862449645996, + 7.919182777404785, + 0.37827354669570923, + -0.7174443602561951, + 0.018953800201416016, + 3.53023624420166, + 31.71324348449707, + -0.929883599281311, + 0.6089890599250793, + -2.9228556156158447, + 3.531433343887329, + 2.0782716274261475, + 0.45045042037963867, + -3.734893798828125, + 1.9390997886657715, + 0.4875214993953705, + -0.762809693813324, + -3.2533342838287354, + -1.812617301940918, + -5.006552696228027, + -0.19955861568450928, + 0.6943484544754028, + 1.2232916355133057, + 1.0267226696014404, + 3.9993677139282227, + 0.2815566062927246, + 2.184988021850586, + 3.572813034057617, + -1.4378371238708496, + -1.3422664403915405, + -4.523522853851318, + 1.7760186195373535, + 1.3849272727966309, + -1.2560608386993408, + -2.126335620880127, + -0.39611029624938965, + 1.52580726146698, + -1.2150295972824097, + 1.3317266702651978, + -1.6160786151885986, + -0.5241796970367432, + 1.5044198036193848, + 4.048198223114014, + 1.520803451538086, + 2.4818310737609863, + -1.2920255661010742, + 2.0508086681365967, + 9.428091049194336, + 0.8611604571342468, + 0.53040611743927, + 11.109987258911133, + -0.12927722930908203, + 2.38370943069458, + -0.33535993099212646, + -2.4946208000183105, + -1.0371220111846924, + -0.5202761888504028, + -0.0900614857673645, + 0.03674665093421936, + -2.2752232551574707, + -0.3515896797180176, + 4.22237491607666, + -3.9184036254882812, + -2.8436825275421143, + -1.048132300376892, + 1.7375231981277466, + 1.7388513088226318, + 2.514002561569214, + 0.8252814412117004, + -1.0972986221313477, + -0.18052124977111816, + -2.3482561111450195, + 1.3016815185546875, + 0.6666723489761353, + 2.508545160293579, + 0.19946429133415222, + 1.5693345069885254, + 2.010422706604004, + -1.1778945922851562, + -7.616795539855957, + 2.446904182434082, + -0.19754618406295776, + 0.028111465275287628, + 2.3604042530059814, + -0.055949866771698, + 1.354027509689331, + 0.1653328537940979, + 0.6725602149963379, + 3.730790615081787, + 0.0414121150970459, + -0.6046682000160217, + 3.689342975616455, + 1.6934093236923218, + -0.3245619535446167, + -2.08537220954895, + -0.4897964596748352, + 4.581476211547852, + -2.150470733642578, + -3.474316120147705, + 0.7851649522781372, + -0.0046280622482299805, + 0.34236690402030945, + 2.2361695766448975, + 1.2226427793502808, + -1.6401631832122803, + -4.869839668273926, + -2.5862810611724854, + 3.456486225128174, + 0.8851330876350403, + 0.823171854019165, + 7.437228679656982, + 0.05526858568191528, + 0.8434486389160156, + -3.374866247177124, + -3.91577410697937, + 0.8575665950775146, + 1.4652265310287476, + -1.2192238569259644, + 0.527866780757904, + 1.8731106519699097, + -0.78352952003479, + -7.59916877746582, + 4.448551654815674, + -1.1987100839614868, + -3.954178810119629, + 1.522474765777588, + 16.174680709838867, + -1.557938814163208, + 1.2925453186035156, + 0.20628565549850464, + 1.444962978363037, + 0.6033188700675964, + 5.931865215301514, + -1.2347668409347534, + 1.1408315896987915, + 2.4156148433685303, + -1.9818648099899292, + 1.2964426279067993, + 3.107940912246704, + 1.786112666130066, + 0.34546464681625366, + -0.4393486976623535, + 1.9177533388137817, + 1.915276050567627, + -0.841154932975769, + 0.9882136583328247, + -75.25519561767578, + -0.05094097554683685, + -0.19307422637939453, + -1.514143705368042, + 1.3756554126739502, + 0.6354382038116455, + -0.515906572341919, + 1.4845631122589111, + 0.33826783299446106, + -1.6826051473617554, + 1.2917369604110718, + -0.35023176670074463, + 0.3523249626159668, + 0.6093047857284546, + 1.0176036357879639, + 2.205415964126587, + -1.87824547290802, + -3.41799259185791, + -2.3228349685668945, + 0.08014047145843506, + -0.3195587992668152, + 1.4681377410888672, + 0.17688706517219543, + 3.6088669300079346, + -1.6143035888671875, + 1.5256682634353638, + -2.5433509349823, + 0.08175396919250488, + -20.924604415893555, + 0.5181893110275269, + 0.432207316160202, + 1.5874601602554321, + 1.46170973777771, + 2.1522982120513916, + -0.0002760887145996094, + -2.3967761993408203, + -1.8782014846801758, + -0.2642291486263275, + -1.6235237121582031, + 2.2963063716888428, + -1.140713095664978, + -0.8582344055175781, + -0.8435942530632019, + 3.815614700317383, + 0.37406596541404724, + -0.366740345954895, + -1.245703935623169, + -3.112595319747925, + 3.7104263305664062, + 1.2201539278030396, + -0.2930068373680115, + -1.126378059387207, + -2.3158648014068604, + -1.8196078538894653, + 2.6596291065216064, + 1.4792369604110718, + 1.4796427488327026, + 1.8122611045837402, + -2.9619638919830322, + -0.7714575529098511, + -1.2508633136749268, + 5.699154376983643, + 3.107212543487549, + 1.0223689079284668, + -1.6184488534927368, + 3.1430182456970215, + -0.4816986918449402, + -0.36351969838142395, + 1.0774707794189453, + 2.101294755935669, + -1.2589384317398071, + 5.186537742614746, + 0.1634874939918518, + -0.42433595657348633, + 0.18224388360977173, + -2.3841423988342285, + 1.632748007774353, + 1.74056077003479, + -1.4245092868804932, + -0.5536400079727173, + -22.431358337402344, + -1.481720209121704, + 1.0791653394699097, + -2.5626895427703857, + -0.6157839894294739, + 1.7352585792541504, + 3.2052316665649414, + 1.2302539348602295, + -16.626501083374023, + -2.0838887691497803, + -1.5908528566360474, + -0.5928202271461487, + -1.8549625873565674, + -1.0765260457992554, + 2.9740610122680664, + 2.5213422775268555, + -0.8386342525482178, + -1.4625827074050903, + -0.8645280003547668, + 0.32029855251312256, + 0.4618995189666748, + 1.204546332359314, + 2.771514654159546, + 1.04268217086792, + 0.3135307729244232, + 0.8099806308746338, + -1.262897253036499, + 3.0012292861938477, + -0.4071691036224365, + 1.2516471147537231, + -1.5623455047607422, + 2.2210612297058105, + 2.981569766998291, + 3.01056170463562, + -2.042447328567505, + -0.005087345838546753, + 0.1838100701570511, + -1.7349529266357422, + -0.9156869649887085, + 0.7327016592025757, + 0.4454582929611206, + -0.4920567274093628, + 1.3478631973266602, + 0.04208296537399292, + 0.38630491495132446, + -0.5779554843902588, + 2.4870986938476562, + 1.900984764099121, + -3.072099447250366, + -0.03816734254360199, + 0.2595914304256439, + -2.496184825897217, + -0.11265431344509125, + 2.5191709995269775, + 2.6352379322052, + -4.976557731628418, + 2.3023900985717773, + 0.6871622800827026, + -0.5606054067611694, + -0.947818398475647, + -5.621889591217041, + 2.8091297149658203, + -0.0087394118309021, + 1.1587326526641846, + -1.0714404582977295, + -0.9218034744262695, + -3.5958380699157715, + -3.674793243408203, + -1.6458734273910522, + 1.2597551345825195, + 4.76895809173584, + 1.729482889175415, + -0.7282320261001587, + -2.827860116958618, + 0.203596293926239, + 1.1686023473739624, + -0.5110724568367004, + 2.3224854469299316, + -0.1875120997428894, + -0.3131468594074249, + 1.1515859365463257, + 1.8650853633880615, + 1.3278216123580933, + 7.676881790161133, + -3.33787202835083, + -1.095679521560669, + -1.5836601257324219, + -3.239955425262451, + -1.4326586723327637, + -2.215754747390747, + -1.732454538345337, + -3.3443686962127686, + 2.583500862121582, + 1.2352471351623535, + -1.7033241987228394, + 4.177186965942383, + -2.4818363189697266, + -2.7559916973114014, + 2.8628344535827637, + -0.9227467775344849, + -3.3860878944396973, + -3.015045642852783, + 0.977241575717926, + 2.7854857444763184, + -2.382685899734497, + -0.47081029415130615, + -0.5319079756736755, + 1.3100917339324951, + 1.4464187622070312, + -2.185600996017456, + -0.9583449959754944, + -0.6403661370277405, + -0.6389460563659668, + -0.7482738494873047, + -1.368863582611084, + 1.1452032327651978, + 2.6768128871917725, + 4.053526878356934, + 0.16554856300354004, + 1.1705111265182495, + -1.1045035123825073, + -1.145618200302124, + -0.1976841688156128, + 1.9438481330871582, + -6.0994157791137695, + 2.896491289138794, + 0.6558728218078613, + -1.1243395805358887, + -2.5095083713531494, + 0.8148033618927002, + -2.904766082763672, + -0.6013073921203613, + 1.0615768432617188, + 0.09658795595169067, + 10.760595321655273, + -12.380326271057129, + 1.5569422245025635, + 0.09042197465896606, + -1.9311010837554932, + -4.55726432800293, + -2.9490966796875, + -1.0510694980621338, + -4.2761430740356445, + 1.6061851978302002, + -0.8075599670410156, + 0.6331454515457153, + 4.731586933135986, + -2.512051820755005, + -1.674011468887329, + -0.7456358075141907, + -2.0690622329711914, + 4.175347328186035, + 0.8806543946266174, + -0.10152512788772583, + -1.350037693977356, + -0.42798537015914917, + -0.4927446246147156, + -1.0521576404571533, + 0.6372022032737732, + 0.5426418781280518, + 3.3101933002471924, + 0.5990303158760071, + -1.718017816543579, + -0.281416654586792, + 1.9143511056900024, + 1.140573263168335, + -0.439250648021698, + 0.4777270555496216, + -0.03906455636024475, + 2.1257505416870117, + 1.3710217475891113, + -0.2628905475139618, + -0.49526774883270264, + 0.14638644456863403, + 1.1005467176437378, + 0.6897886395454407, + -3.53497052192688, + 0.2846631407737732, + 1.5900821685791016, + -0.9632159471511841, + -0.009830236434936523, + -1.7200417518615723, + -5.7427873611450195, + 2.579700231552124, + 2.7708606719970703, + 1.1496903896331787, + -11.694990158081055, + 2.5479183197021484, + 1.07051682472229, + 0.23689304292201996, + -0.43089771270751953, + -0.6063897609710693, + -0.5553358793258667, + -0.975495457649231, + -12.782951354980469, + 1.118099570274353, + -2.1762897968292236, + 2.2816543579101562, + 0.544791579246521, + 2.134589195251465, + 0.8912023305892944, + 2.478652238845825, + -0.9471755027770996, + 0.8868096470832825, + -1.8231632709503174, + -0.4572210907936096, + -0.46614858508110046, + 1.1634730100631714, + 5.3744611740112305, + -2.3238718509674072, + -9.172317504882812, + 0.48263871669769287, + 1.0117895603179932, + 0.36754778027534485, + -2.1280250549316406, + 1.2123500108718872, + 4.234677791595459, + -0.38662922382354736, + -3.9056153297424316, + 2.661083459854126, + -0.5866618752479553, + 3.4792816638946533, + 1.124232530593872, + 2.1506268978118896, + -0.9676837921142578, + -4.062008857727051, + -1.0020997524261475, + -1.20505952835083, + -5.153719902038574, + 16.73397445678711, + 2.5889675617218018, + -2.3953442573547363, + 3.5795998573303223, + 0.1216241717338562, + 0.5375622510910034, + 0.7177510857582092, + 2.802903652191162, + 0.8989079594612122, + -1.9580821990966797, + 3.311025857925415, + -3.7274816036224365, + 1.3835277557373047, + -0.49385663866996765, + 1.8116211891174316, + -4.2420220375061035, + -0.5782306790351868, + 3.0391860008239746, + 9.160833358764648, + 0.5193401575088501, + 0.6586780548095703, + 1.4254775047302246, + 4.00067138671875, + 2.29085373878479, + 1.2271240949630737, + 0.7821763753890991, + -4.555727005004883, + 2.0976722240448, + -0.8015009760856628, + -0.40938901901245117, + -1.1100680828094482, + 0.919082760810852, + -2.004488706588745, + -0.15427514910697937, + -0.05789254605770111, + -0.2795397937297821, + -0.4754599928855896, + 0.020290076732635498, + -0.3359673023223877, + 1.4987982511520386, + -1.3699243068695068, + -0.5253850221633911, + 0.8360723257064819, + -1.2667057514190674, + -0.14662623405456543, + 2.771557331085205, + -0.15621435642242432, + 1.417757511138916, + -3.934328317642212, + -1.6721572875976562, + -0.3497704267501831, + 1.9342373609542847, + 2.437915802001953, + -3.9601049423217773, + -1.9716401100158691, + -1.6189461946487427, + 0.4849490821361542, + 3.3296399116516113, + 2.413266181945801, + -0.2390749603509903, + -1.609490156173706, + 2.8138132095336914, + 2.6815524101257324, + 0.2738744020462036, + -1.8157916069030762, + 1.6042490005493164, + -2.463038921356201, + -1.1894304752349854, + 2.2103898525238037, + -3.0842947959899902, + -0.7464791536331177, + 3.5542964935302734, + 2.5318541526794434, + 3.939321994781494, + -4.104640483856201, + -1.5326029062271118, + 1.3729591369628906, + -2.879672050476074, + -2.4104504585266113, + 0.7704057097434998, + 10.311901092529297, + 3.0220890045166016, + 0.3058294653892517, + 1.5109182596206665, + 2.1092798709869385, + -3.922830581665039, + 0.13551905751228333, + -0.11211508512496948, + 0.758232831954956, + 0.9109660983085632, + -0.8305994868278503, + 1.2696675062179565, + 1.0239770412445068, + 1.1058712005615234, + -0.6368502378463745, + 0.9323704242706299, + -0.21205797791481018, + -1.0638091564178467, + -5.522202491760254, + -0.4690317213535309, + 1.184372067451477, + 0.2008359432220459, + -1.2413274049758911, + -2.1204633712768555, + 2.2916531562805176, + 0.6126554608345032, + 0.07370725274085999, + 1.4273791313171387, + 0.10166114568710327, + -2.9700422286987305, + 0.7178435921669006, + -2.6682050228118896, + 0.7407273650169373, + -2.2602832317352295, + -2.636262893676758, + 2.2587780952453613, + 0.34869158267974854, + -0.8601602911949158, + 4.6487507820129395, + 0.7916420698165894, + 3.636859178543091, + 1.5871179103851318, + 3.963639974594116, + -2.6946470737457275, + 1.9985911846160889, + -0.6853481531143188, + -0.19446900486946106, + -5.841614723205566, + -2.721891403198242, + 0.5889795422554016, + -0.4149371385574341, + -0.17216598987579346, + -1.124695062637329, + -1.8908629417419434, + -2.175560474395752, + -0.006099104881286621, + -2.154991388320923, + 2.816655397415161, + -0.933144211769104, + 1.3171435594558716, + -0.8856905698776245, + 4.289626121520996, + -2.6789932250976562, + -0.12555833160877228, + 0.6867697834968567, + 1.7801657915115356, + 0.3427424430847168, + 1.668552041053772, + 2.448828935623169, + 1.1836192607879639, + -4.6580915451049805, + 1.4632121324539185, + 0.15486794710159302, + -2.4096386432647705, + 0.43954217433929443, + 2.017681121826172, + 4.162898063659668, + 3.163135051727295, + 0.743678092956543, + 1.3153386116027832, + -0.7243244051933289, + -2.3346574306488037, + -0.21247583627700806, + 1.3541992902755737, + 2.4973208904266357, + 2.973365545272827, + 0.6472455859184265, + 0.5826907753944397, + -2.4253036975860596, + -1.7017695903778076, + -0.5648799538612366, + -2.622751235961914, + -1.0261151790618896, + -0.6632958054542542, + 0.5859824419021606, + -2.2019941806793213, + -0.017003774642944336, + 3.565372943878174, + 1.7410497665405273, + -1.3281612396240234, + 0.8877487182617188, + -1.8937193155288696, + 3.0779917240142822, + -2.074338912963867, + 0.585675060749054, + 1.5455434322357178, + 0.1589127779006958, + 0.5724133253097534, + 1.2665759325027466, + 6.073239326477051, + -0.8477368950843811, + 2.649219036102295, + 8.53536319732666, + -2.4888899326324463, + 0.046225398778915405, + -0.4275406301021576, + 1.0118966102600098, + 1.6007602214813232, + 2.6010258197784424, + 0.5694435834884644, + 0.06917339563369751, + -0.6499100923538208, + 2.337440013885498, + -3.098095417022705, + -1.9828433990478516, + 2.5476462841033936, + -1.0824785232543945, + -0.364848256111145, + -3.710258960723877, + 0.9526259899139404, + -0.7250839471817017, + 0.606911301612854, + 1.1776432991027832, + -0.43455612659454346, + -0.49213337898254395, + -1.4920058250427246, + 1.5609400272369385, + 0.25898289680480957, + -0.06735014915466309, + 0.3642307221889496, + -1.2001475095748901, + 0.6481346487998962, + 1.2094460725784302, + -0.8941811919212341, + 0.9534205198287964, + 1.9413161277770996, + -0.5668646693229675, + 1.3004369735717773, + -0.9988822340965271, + 1.984962821006775, + -0.795772910118103, + -0.889338493347168, + -1.7002477645874023, + -0.5132184028625488, + -1.0641918182373047, + -3.860236644744873, + -0.10784856975078583, + 1.1376149654388428, + -4.172283172607422, + 0.019766926765441895, + 2.5947964191436768, + 3.3699288368225098, + 2.915983200073242, + -0.6493312120437622, + 4.043827533721924, + -2.292724609375, + 0.890237033367157, + 0.5482533574104309, + 1.9984216690063477, + -8.135860443115234, + -1.3138620853424072, + -0.3935365080833435, + 0.7419627904891968, + 2.348628520965576, + 0.10127782821655273, + 0.51670241355896, + -3.1143479347229004, + 2.061994791030884, + -1.8773730993270874, + -2.1250524520874023, + -1.8628178834915161, + -0.17415320873260498, + 0.24093738198280334, + -0.9736514091491699, + 1.0468676090240479, + 2.3118815422058105, + 3.375067710876465, + 5.895918846130371, + -0.0801660418510437, + -0.42072445154190063, + -0.8386474251747131, + -0.4453985095024109, + 0.39197683334350586, + -3.013187885284424, + 5.0217790603637695, + -1.9917634725570679, + -2.877749443054199, + 0.6652500629425049, + 1.3096612691879272, + 1.639984369277954, + 2.192633628845215, + 0.38599830865859985, + 0.47394460439682007, + 5.251105308532715, + 1.4044549465179443, + 1.9136683940887451, + -1.8357181549072266, + 1.898815631866455, + -2.051085948944092, + -2.798433542251587, + 1.8873131275177002, + 0.17870783805847168, + -1.6773676872253418, + -3.0961623191833496, + 0.8489893674850464, + 0.932557225227356, + 2.1849029064178467, + 1.4811596870422363, + -1.1876683235168457, + 2.8757829666137695, + 1.7889407873153687, + -0.022895991802215576, + -2.005861759185791, + 1.8532166481018066, + -0.6154569983482361, + -2.9211769104003906, + -5.181696891784668, + -4.829237937927246, + -1.5318853855133057, + 2.145853042602539, + -1.352203607559204, + -0.5874016880989075, + -1.4109545946121216, + -1.2876012325286865, + 0.012685060501098633, + -1.4625000953674316, + -0.05657082796096802, + -3.351978302001953, + -3.27683162689209, + -3.241166591644287, + -4.458555698394775, + 0.731281042098999, + -1.5349359512329102, + -0.40456831455230713, + 0.0839134082198143, + -0.7179737091064453, + 1.901397705078125, + -0.21540230512619019, + 2.6811985969543457, + -0.924758791923523, + -1.1644320487976074, + -0.9923438429832458, + 2.6903281211853027, + -4.6521525382995605, + 0.7301214337348938, + -0.09142392873764038, + 2.1889333724975586, + 2.2253026962280273, + -10.824697494506836, + 0.5429773330688477, + 9.873080253601074, + -1.4061498641967773, + 1.5474438667297363, + 0.5288435220718384, + -0.9035328030586243, + -1.621428370475769, + 2.0221266746520996, + -0.793566107749939, + -2.1386351585388184, + -0.9014855623245239, + -2.766880989074707, + 9.375022888183594, + 1.13027024269104, + 2.3236303329467773, + 0.0019357800483703613, + 0.4902907609939575, + 2.7341091632843018, + -0.9924325346946716, + 1.332597017288208, + 0.595417857170105, + 1.6477179527282715, + 1.2908012866973877, + 1.846587896347046, + -1.7552170753479004, + -2.0780367851257324, + -1.6074936389923096, + -1.650449514389038, + -2.3701677322387695, + -1.4659743309020996, + 2.385822296142578, + -1.094635248184204, + -5.614053726196289, + -2.0820131301879883, + -0.19746145606040955, + 1.120290994644165, + 0.9048603773117065, + 2.539687156677246, + -2.3528056144714355, + -1.2751212120056152, + -0.1269862949848175, + -0.005052685737609863, + 3.185176134109497, + -6.553336143493652, + -0.006910651922225952, + -0.9141305685043335, + -2.5186524391174316, + -2.2604660987854004, + -1.2673834562301636, + 1.0560756921768188, + 3.5747504234313965, + 0.21278643608093262, + 2.248072862625122, + -1.756084680557251, + -0.9373565316200256, + -4.963217735290527, + 364.1875, + 0.5350300073623657, + 3.93559193611145, + -0.9027564525604248, + -2.3933377265930176, + 1.8957675695419312, + 0.4078380763530731, + 2.09910249710083, + -1.8250154256820679, + 0.5923534631729126, + -3.980653762817383, + -1.3658223152160645, + 1.7665680646896362, + 1.3545811176300049, + -3.884638786315918, + -4.679786682128906, + 3.0510261058807373, + 2.7340798377990723, + -5.050105094909668, + -1.6157087087631226, + 2.0405778884887695, + 3.599933624267578, + 0.23965877294540405, + -2.13230299949646, + 0.20682203769683838, + -1.3871358633041382, + 0.6289647817611694, + 2.780302047729492, + -1.3266760110855103, + 0.10209846496582031, + 0.04447045922279358, + 3.2384731769561768, + -1.123845100402832, + -1.891318917274475, + 0.057366013526916504, + 1.5087535381317139, + 1.1600444316864014, + -2.6615381240844727, + -0.36608099937438965, + 2.0489845275878906, + 1.4251363277435303, + 1.3581993579864502, + -0.11005717515945435, + 1.421028733253479, + -1.8141779899597168, + 1.8664270639419556, + 1.1248217821121216, + -1.290521502494812, + 3.8612818717956543, + -2.2146387100219727, + 0.6105797290802002, + 23.47013282775879, + -0.48695439100265503, + 1.6464170217514038, + -2.640216827392578, + 2.7441329956054688, + 0.3686479330062866, + 5.69276762008667, + 1.1693227291107178, + 1.9898133277893066, + -0.8214577436447144, + 0.4482443332672119, + -1.730103850364685, + -1.1260885000228882, + -3.9410548210144043, + -0.3177293539047241, + -2.650568962097168, + 1.666369080543518, + 0.717279851436615, + 3.5141139030456543, + 0.1585460752248764, + -4.2565388679504395, + -1.7776139974594116, + -3.4333362579345703, + -1.0409644842147827, + -0.08697646856307983, + 0.5680878162384033, + -2.2729151248931885, + 3.190898895263672, + 5.481231689453125, + 1.5932930707931519, + 0.1257343888282776, + -3.1251490116119385, + 1.4578874111175537, + -2.6882667541503906, + 1.6030164957046509, + 55.891700744628906, + 1.277479887008667, + -0.1877405345439911, + -4.60892391204834, + 2.5169460773468018, + 0.607422947883606, + 3.236562728881836, + -1.8453948497772217, + -0.17859095335006714, + -0.7989492416381836, + 1.9078807830810547, + 0.618520975112915, + 3.1361546516418457, + -1.547965168952942, + 0.9783138036727905, + 0.3372665047645569, + -1.2459195852279663, + -3.465583562850952, + 1.5578027963638306, + -2.5204339027404785, + 1.7567743062973022, + 2.143953323364258, + -7.940617561340332, + 2.2154033184051514, + 1.1433849334716797, + 0.8865958452224731, + -1.0042064189910889, + 2.1605772972106934, + 1.8113036155700684, + 1.0473779439926147, + 0.7289220094680786, + -0.7315447926521301, + 1.1665713787078857, + 1.800654649734497, + 0.08894167840480804, + -3.5724167823791504, + -2.8928563594818115, + 0.13531577587127686, + 1.1047911643981934, + -0.6035451889038086, + 1.3201044797897339, + 2.32861328125, + -0.618647038936615, + -1.018808126449585, + -0.4885057210922241, + 0.41924241185188293, + -3.965878963470459, + 2.378772735595703, + -0.28839731216430664, + 0.1371610164642334, + -1.231518268585205, + 0.566457986831665, + 0.8422225713729858, + 2.4258830547332764, + 0.5311106443405151, + 0.9580360054969788, + -2.073740243911743, + -0.16872912645339966, + 3.1555051803588867, + 1.1045441627502441, + 1.9975781440734863, + 0.8461564779281616, + 0.0692930668592453, + -4.17447566986084, + 1.56657075881958, + 18.732036590576172, + 0.9189416170120239, + -2.934422016143799, + -0.9464465975761414, + 1.5941098928451538, + 1.893474817276001, + -2.060872793197632, + -0.22129271924495697, + 3.93436336517334, + 1.2906841039657593, + 2.661135196685791, + 0.35587918758392334, + 11.0955228805542, + 0.05873635411262512, + 0.7161744236946106, + -0.6706615090370178, + 0.6116400361061096, + 1.9758689403533936, + 4.613364219665527, + -1.6074268817901611, + -1.3787243366241455, + 1.147718071937561, + 1.8668417930603027, + 1.382380723953247, + 3.2999119758605957, + 3.467742919921875, + 5.361644268035889, + -0.7319937944412231, + 1.9096148014068604, + 0.7903041243553162, + 2.228060245513916, + 2.189730644226074, + -1.1190601587295532, + 1.1074106693267822, + 2.4741005897521973, + -0.28420519828796387, + 2.8174736499786377, + -1.0728472471237183, + -1.9927973747253418, + 1.2944843769073486, + -1.893680214881897, + -0.8862292766571045, + 0.3720542788505554, + -0.1831812858581543, + 0.22515112161636353, + -1.928605079650879, + -1.849123477935791, + -0.8061600923538208, + -2.0414340496063232, + 0.24371537566184998, + 0.4510470926761627, + 0.47346293926239014, + 1.0847362279891968, + -3.1465799808502197, + 2.6118483543395996, + -1.5365197658538818, + -0.5277702808380127, + -0.8879506587982178, + -4.068188190460205, + 0.6062802672386169, + 1.4992985725402832, + 0.35700714588165283, + 2.6549665927886963, + 1.5368595123291016, + 3.083749294281006, + 2.7252869606018066, + -1.773870825767517, + -0.22489416599273682, + -0.8300141096115112, + 1.3502421379089355, + 4.26127815246582, + 2.4038803577423096, + 2.487513303756714, + 0.6127158403396606, + 0.8727362155914307, + -0.9900152087211609, + 1.2172188758850098, + 0.6573644876480103, + -0.7811298370361328, + -1.063161849975586, + -0.21117722988128662, + 3.176875352859497, + -0.03451889753341675, + -1.5684230327606201, + 9.379023551940918, + -2.7957310676574707, + -0.35793834924697876, + 0.58497154712677, + 1.8000853061676025, + -2.8086156845092773, + 4.924923896789551, + -0.538156270980835, + -0.9767284393310547, + -0.22223687171936035, + -2.1746952533721924, + -0.10000461339950562, + -2.412407875061035, + -2.7255492210388184, + 1.8810746669769287, + -0.3452203869819641, + 0.6193935871124268, + -1.1179454326629639, + 0.23747599124908447, + 0.3063918352127075, + 0.04681028425693512, + -1.5960304737091064, + -0.7951719760894775, + -1.732591152191162, + -0.8015881776809692, + 2.850289821624756, + -1.317323923110962, + 0.8713377714157104, + 0.3030010461807251, + 5.226964950561523, + 0.35393959283828735, + 1.9590553045272827, + 2.134812831878662, + -0.7119015455245972, + 1.31674325466156, + 2.063473701477051, + -0.8254801630973816, + -2.1731815338134766, + 0.9484498500823975, + 0.7083269953727722, + 7.087149620056152, + -0.4416904151439667, + 0.04308737814426422, + -0.43143752217292786, + 0.3087756633758545, + 4.193171977996826, + -0.2694994807243347, + 1.6054859161376953, + -4.549372673034668, + 0.025329947471618652, + 0.21889296174049377, + -0.3788190186023712, + -0.4107263684272766, + -0.6453567743301392, + -0.8490303158760071, + 0.08556601405143738, + -1.268892526626587, + 1.1300729513168335, + 0.8954596519470215, + -2.331059455871582, + 1.3948756456375122, + 1.7984243631362915, + -3.2733967304229736, + -7.852523326873779, + -1.0557180643081665, + -0.4312349557876587, + -1.133042335510254, + 1.8908807039260864, + -3.588484525680542, + 2.953460216522217, + -1.354248046875, + 1.9613131284713745, + -0.42662346363067627, + -1.980033040046692, + -1.9182087182998657, + -2.4565155506134033, + 0.14957714080810547, + 2.456376314163208, + -0.23901569843292236, + -0.9006800055503845, + 1.2943538427352905, + -0.20731264352798462, + -5.815705299377441, + -0.6867563724517822, + -2.6491270065307617, + -4.669241428375244, + 0.7317506670951843, + -1.195207118988037, + 0.022592246532440186, + -10.215559005737305, + 1.1264106035232544, + 1.7009096145629883, + 0.9068769812583923, + 1.0660877227783203, + 4.142390727996826, + 2.2703611850738525, + 1.3644518852233887, + 8.105525970458984, + 0.5094172954559326, + 3.236781597137451, + -1.4144803285598755, + -2.661782741546631, + 1.602125883102417, + -1.2012455463409424, + 0.6978470087051392, + 4.024735927581787, + 0.13481110334396362, + 0.5152678489685059, + -4.017560958862305, + 1.8399990797042847, + -0.060209035873413086, + 0.562862753868103, + -0.857211172580719, + 0.23935267329216003, + 2.6098313331604004, + -1.2274012565612793, + 0.22998493909835815, + 0.18869704008102417, + 0.18600738048553467, + -2.476746082305908, + 1.2719042301177979, + 0.6182131767272949, + -1.25282621383667, + -0.7406538724899292, + -3.619943857192993, + -3.0336365699768066, + 1.0896286964416504, + -0.8801965713500977, + -1.0002269744873047, + -2.4758331775665283, + 5.405259132385254, + -0.6871591210365295, + -2.7312426567077637, + -1.1339123249053955, + 0.942305326461792, + 1.7161836624145508, + -2.3174638748168945, + 3.742771625518799, + -2.1566877365112305, + -0.7943012714385986, + 0.7114561796188354, + 4.481168270111084, + -0.5428312420845032, + -3.8345768451690674, + -0.12046211957931519, + 1.7326687574386597, + 3.2971885204315186, + -0.5869665145874023, + -1.6003737449645996, + -4.953425407409668, + -0.42150819301605225, + 1.8980541229248047, + 0.5967994332313538, + -0.38162991404533386, + 4.215236663818359, + -0.723321259021759, + 2.0347495079040527, + -4.9599175453186035, + -1.996235728263855, + -2.7443461418151855, + -4.501686096191406, + -3.3414182662963867, + -1.6335910558700562, + -0.16719889640808105, + -1.7796876430511475, + -0.00852617621421814, + 3.3151326179504395, + 0.4227328300476074, + 0.24639278650283813, + 7.531799793243408, + -1.8193435668945312, + 0.006416678428649902, + -0.26090407371520996, + -1.6579447984695435, + 0.19534754753112793, + 1.3912829160690308, + -0.5224776268005371, + -1.3268170356750488, + 1.3168883323669434, + -0.4549388885498047, + -0.5956116914749146, + 1.9149595499038696, + 1.0487719774246216, + -1.9442893266677856, + 4.525012016296387, + 0.24029141664505005, + 3.0564723014831543, + 1.7039048671722412, + -0.47840505838394165, + 2.286846399307251, + -0.3029440641403198, + 0.079276442527771, + 1.085044264793396, + -2.2865796089172363, + 2.388490676879883, + 2.008847713470459, + 1.533621072769165, + -0.972708523273468, + 0.4541689157485962, + 3.8017070293426514, + 11.238262176513672, + 0.9807743430137634, + 6.928774356842041, + 814.3428955078125, + 0.35415852069854736, + -1.5272459983825684, + -1.427685022354126, + -1.6389652490615845, + -1.9194859266281128, + 3.8146462440490723, + 1.5203497409820557, + -12.766310691833496, + -1.1472275257110596, + -1.7699579000473022, + -0.31462445855140686, + -2.0077638626098633, + 2.6319427490234375, + -2.13535737991333, + -1.5275638103485107, + 1.3516888618469238, + -0.24176734685897827, + 1.4155325889587402, + 2.004387140274048, + -1.3872747421264648, + -0.928390622138977, + -0.46400415897369385, + -0.6357120871543884, + -0.2791162133216858, + 1.1468631029129028, + -0.1738867461681366, + 0.8561065196990967, + -2.294339179992676, + -0.9604014158248901, + 1.0465246438980103, + -0.7326521873474121, + 0.8995181322097778, + -1.088148832321167, + -1.1356041431427002, + -1.261852502822876, + 1.366490125656128, + 0.34860849380493164, + 1.387499451637268, + -1.4815020561218262, + -2.336840867996216, + 2.275289297103882, + 1.8158270120620728, + 1.7478439807891846, + -0.391368567943573, + -0.017959564924240112, + -1.8872740268707275, + -1.412354826927185, + -0.36898869276046753, + -0.7755616903305054, + 2.0134952068328857, + -2.9758877754211426, + -1.2773244380950928, + -1.648033857345581, + 2.7908449172973633, + -2.3132951259613037, + 0.9410959482192993, + -2.057507038116455, + 0.020774781703948975, + 0.3649117946624756, + 0.19148468971252441, + -0.719571590423584, + -0.3331475257873535, + 2.1626341342926025, + 2.9026901721954346, + -0.8625737428665161, + 0.16136211156845093, + -2.150376796722412, + -0.6024764776229858, + -2.2932357788085938, + 4.015257835388184, + -1.3624119758605957, + 3.7587287425994873, + -2.0115489959716797, + -0.5046210289001465, + 2.3803493976593018, + -2.62518310546875, + 2.9597887992858887, + -3.2666802406311035, + 0.51192706823349, + 1.3869414329528809, + 1.0087460279464722, + -0.6397567987442017, + 1.3593471050262451, + 2.0616018772125244, + 0.6768260598182678, + 1.0977507829666138, + 2.1077218055725098, + -0.5578184723854065, + 1.0463649034500122, + 0.3152413070201874, + 0.5604820847511292, + -1.2194899320602417, + -1.3497796058654785, + -0.14627963304519653, + -0.0856260359287262, + -1.3353890180587769, + -2.1100170612335205, + -0.5007975101470947, + 3.6229920387268066, + 1.5936022996902466, + 0.8679823875427246, + 2.399576187133789, + 2.4685187339782715, + 3.7644431591033936, + -0.00900469720363617, + 1.7885875701904297, + -0.8930025100708008, + 0.15252332389354706, + 1.5495212078094482, + -0.9232124090194702, + -23.466068267822266, + 1.3816535472869873, + 0.44900012016296387, + 0.3208101987838745, + -0.43224120140075684, + -1.1588048934936523, + -0.6651528477668762, + 1.1029014587402344, + -6.852204322814941, + -0.8426594734191895, + -0.42727208137512207, + -4.585679531097412, + 1.673075795173645, + 3.7375829219818115, + 0.9233893156051636, + -2.329765796661377, + 0.45998820662498474, + -1.3789787292480469, + 0.29843324422836304, + 5.804596900939941, + -1.9089725017547607, + 0.6557299494743347, + 1.1254009008407593, + 0.5292401909828186, + 3.313648223876953, + 1.4219133853912354, + -0.026946067810058594, + -1.3495653867721558, + -2.059001922607422, + -2.1160383224487305, + 1.2115436792373657, + 0.3602922558784485, + -0.0492551326751709, + -1.9279975891113281, + 18.793825149536133, + -1.224729061126709, + 3.375601291656494, + 2.3978323936462402, + 0.13574707508087158, + -1.9340760707855225, + 1.1153463125228882, + 1.487752914428711, + -2.7664737701416016, + 0.20486830174922943, + -1.0552375316619873, + -1.4148494005203247, + -2.399057388305664, + -0.5679361820220947, + -3.5963525772094727, + 0.4378177523612976, + 1.4429678916931152, + -1.0965185165405273, + 0.4132528305053711, + 0.026553452014923096, + -0.21510115265846252, + -0.5766505002975464, + 1.0263068675994873, + 2.4005136489868164, + -1.2193928956985474, + 3.0936880111694336, + 1.1765674352645874, + 0.4352531433105469, + 0.8198418021202087, + 1.757368564605713, + -1.2502424716949463, + 0.22134345769882202, + 0.347933828830719, + 1.9363291263580322, + -1.2273629903793335, + 1.359318494796753, + 1.8468587398529053, + -1.3910396099090576, + 1.0280133485794067, + -0.7441514134407043, + 0.49556320905685425, + -3.249384641647339, + -0.49254465103149414, + 2.948666572570801, + -0.3669373393058777, + -3.5707454681396484, + -1.6715630292892456, + -0.3784101903438568, + -5.646997451782227, + 1.897858738899231, + -0.34333500266075134, + -0.19778817892074585, + 3.034341812133789, + 3.60841703414917, + 0.6202055215835571, + -2.319598913192749, + -2.5415191650390625, + -0.48466435074806213, + 4.077069282531738, + -0.48206642270088196, + -3.0561375617980957, + 1.3415517807006836, + -0.781761109828949, + 0.5927940011024475, + -2.5027341842651367, + 5.575947284698486, + -1.466396450996399, + 1.2635619640350342, + 2.5975964069366455, + 5.415802001953125, + 1.982885718345642, + -2.3792083263397217, + -0.9131180644035339, + 4.068264961242676, + -2.031752347946167, + -0.26505714654922485, + -0.9679467678070068, + 0.9973785877227783, + -1.7926429510116577, + 0.6194559335708618, + 2.410770893096924, + -1.1341066360473633, + -0.14325731992721558, + -1.6413886547088623, + 3.6875803470611572, + 1.3173528909683228, + -1.301123857498169, + 0.30752331018447876, + 1.5626864433288574, + 0.43825745582580566, + -0.4005809724330902, + -5.360395431518555, + 0.732974648475647, + -0.3731374740600586, + -3.1625003814697266, + -0.34639668464660645, + 1.2755838632583618, + -1.371788740158081, + 1.3125855922698975, + 1.0149766206741333, + 1.4961572885513306, + -2.2000954151153564, + -1.2730908393859863, + -0.2798420488834381, + 6.407355308532715, + -3.443789005279541, + -4.4273881912231445, + -2.5580742359161377, + 2.262923240661621, + -1.397318959236145, + -2.260655164718628, + -2.611166000366211, + -1.159294843673706, + 1.5277000665664673, + 0.5529266595840454, + 2.3558900356292725, + 1.1252809762954712, + 0.7473046779632568, + -0.9512392282485962, + 1.0198800563812256, + 1.3081002235412598, + 1.6544432640075684, + -0.6248654127120972, + 3.665947914123535, + 1.077919840812683, + -3.758314371109009, + -1.7614169120788574, + 4.468694686889648, + -0.1459711790084839, + -0.983515739440918, + 1.8577656745910645, + 1.9452037811279297, + -0.10264527797698975, + 3.469180107116699, + 2.8116300106048584, + -3.3448586463928223, + -1.0834115743637085, + -2.1957359313964844, + 0.17952901124954224, + 1.4590821266174316, + 1.4532561302185059, + 1.136078119277954, + -1.8689138889312744, + 2.128990411758423, + -5.385936737060547, + -1.6904401779174805, + 0.2811475694179535, + -3.2840590476989746, + -0.22383898496627808, + -1.0626204013824463, + 3.208991050720215, + -2.927720069885254, + -3.973715305328369, + -4.018852233886719, + 1.5380117893218994, + 5.018295764923096, + 0.7079001665115356, + 1.8065685033798218, + -14.812116622924805, + 0.2535364627838135, + 0.9385067224502563, + -3.3840651512145996, + 3.29315185546875, + 0.7402320504188538, + 2.1346051692962646, + -2.574434757232666, + 2.7031211853027344, + 2.5268702507019043, + -2.681467294692993, + 0.3443745970726013, + -3.010451555252075, + -1.2671419382095337, + 1.6066570281982422, + -2.865861654281616, + 1.0211845636367798, + 2.1229305267333984, + -1.7388774156570435, + 3.0630149841308594, + -2.089266300201416, + -1.4062597751617432, + -0.8199270367622375, + -2.789487361907959, + -0.31484687328338623, + 2.7435004711151123, + 0.3520597219467163, + -1.9081699848175049, + -1.0934064388275146, + -1.220460057258606, + -3.05814266204834, + -3.1425485610961914, + 0.08387529850006104, + 0.7572664022445679, + 10.508103370666504, + 0.12146109342575073, + -0.9252364635467529, + -0.13907650113105774, + 4.154299259185791, + 4.3754119873046875, + -8.432384490966797, + -0.630078911781311, + 0.4607231914997101, + 0.7999836206436157, + -2.2855963706970215, + -0.3082965612411499, + 0.3088555932044983, + 2.5748982429504395, + -2.6422343254089355, + 0.639080822467804, + 0.39797869324684143, + -2.182742118835449, + -1.0772300958633423, + 1.8855271339416504, + 0.5669610500335693, + 0.6064870357513428, + 1.6807715892791748, + 0.8249876499176025, + -15.304670333862305, + -3.9769039154052734, + 1.174757719039917, + 1.5250279903411865, + 16.540456771850586, + 4.510441780090332, + -3.122793674468994, + -2.1163928508758545, + 2.02007794380188, + 0.9886953830718994, + 0.7487374544143677, + -0.37110650539398193, + -0.2751356363296509, + 1.6739528179168701, + -1.6869986057281494, + 2.684504508972168, + -3.2905492782592773, + -2.9974327087402344, + 1.4169734716415405, + -0.9609872698783875, + 0.6224578619003296, + -0.17674675583839417, + 2.6451873779296875, + -1.5361989736557007, + 1.0711445808410645, + 1.502498745918274, + -7.575592041015625, + 2.566565752029419, + 1.6202112436294556, + 1.121536374092102, + 3.8860604763031006, + 1.8957114219665527, + -1.9859254360198975, + -1.7585541009902954, + 1.0153135061264038, + 1.2288413047790527, + -0.8017799854278564, + 0.4970075190067291, + -2.959040641784668, + 0.4426229000091553, + 0.9840903282165527, + 3.629234790802002, + 2.1938633918762207, + 0.4261431396007538, + 2.18438458442688, + 2.5977578163146973, + 0.009690195322036743, + 1.11824631690979, + -0.7964775562286377, + -0.027110904455184937, + 1.6229020357131958, + -0.7299590110778809, + -0.5355983972549438, + -1.8756000995635986, + -0.055917590856552124, + -1.5230677127838135, + 4.786992073059082, + -0.8684978485107422, + 1.4247591495513916, + -0.5660486221313477, + -0.8150861263275146, + -1.8103039264678955, + 1.4851402044296265, + -6.507695198059082, + -2.6566433906555176, + 0.04860430955886841, + 1.5954382419586182, + 0.8119897246360779, + -1.7184116840362549, + -3.211980104446411, + -2.4336915016174316, + -2.9067275524139404, + -0.7248270511627197, + -1.3332984447479248, + 4.38922643661499, + 0.283230185508728, + -1.633987545967102, + 4.435980796813965, + 2.2078869342803955, + 2.2166643142700195, + 2.979889392852783, + -0.23087328672409058, + -0.09838253259658813, + 1.4546890258789062, + -1.462313175201416, + 0.11325785517692566, + -1.858606219291687, + -1.6238629817962646, + -1.529072880744934, + -2.2142438888549805, + -3.4871954917907715, + -1.2237918376922607, + -0.3469651937484741, + 4.328657150268555, + -2.3217005729675293, + -5.6113786697387695, + 0.912659227848053, + 1.1029667854309082, + 3.233657121658325, + 0.8943558931350708, + 3.972095012664795, + -0.568861186504364, + 1.0849156379699707, + -1.9952409267425537, + 0.9871312379837036, + 1.063608169555664, + 0.16312597692012787, + -11.014259338378906, + -2.707843780517578, + 1.5715383291244507, + -1.9712698459625244, + -0.5271454453468323, + -0.5071938037872314, + -2.873854160308838, + 1.5782904624938965, + -0.4746261537075043, + 2.4415345191955566, + 0.09369051456451416, + 5.935247421264648, + 3.55265474319458, + 0.9230121374130249, + 1.2600079774856567, + -1.1573593616485596, + -0.9535175561904907, + 2.651745557785034, + 0.7771246433258057, + -0.8528587818145752, + -2.6452624797821045, + 1.7654592990875244, + -0.587568461894989, + 3.7899527549743652, + -0.4361876845359802, + 0.8407305479049683, + -0.9513806104660034, + -0.05830705165863037, + 0.06759774684906006, + -3.0663764476776123, + -0.6389995217323303, + -0.7708785533905029, + 1.5013096332550049, + -1.7322601079940796, + 0.8439188003540039, + 2.3940799236297607, + 3.4053685665130615, + -2.5176844596862793, + 0.8322906494140625, + -3.268411159515381, + -0.6398714780807495, + -0.472175657749176, + -2.006908655166626, + -1.9981071949005127, + -0.3513076901435852, + -0.21923823654651642, + 1.6931610107421875, + 4.074831008911133, + -0.9487996101379395, + 3.5264594554901123, + 0.07670629024505615, + -0.3885958194732666, + -0.6779994964599609, + 2.439567804336548, + 0.9673619866371155, + -2.968302011489868, + -3.143817186355591, + 0.38103413581848145, + -1.7209701538085938, + 2.8889477252960205, + 5.059108734130859, + 0.6628530025482178, + -0.5223796963691711, + -2.915051221847534, + 0.8042019605636597, + -0.19235524535179138, + -22.214218139648438, + 0.4459275007247925, + -4.840930461883545, + 0.33853307366371155, + 2.6050028800964355, + -4.800999641418457, + 1.5344882011413574, + 1.7009358406066895, + 2.2750096321105957, + 0.9666452407836914, + 1.028949499130249, + 0.009574413299560547, + -2.2515602111816406, + -1.484067678451538, + -3.9247474670410156, + -2.8865113258361816, + -0.2865256071090698, + -1.57285475730896, + 1.9212112426757812, + -1.6215766668319702, + -1.5342875719070435, + 3.556756019592285, + 0.5471667051315308, + -2.479508399963379, + 0.9590873718261719, + 1.1744723320007324, + -0.34325599670410156, + 1.0714082717895508, + 0.7383689284324646, + 0.5277313590049744, + 0.8059965372085571, + -26.61330223083496, + 0.6562811136245728, + 1.834301233291626, + -1.9041930437088013, + -1.5427799224853516, + -1.4813467264175415, + 3.349649429321289, + 1.7314845323562622, + 0.8073953986167908, + 0.532557487487793, + -0.11891067028045654, + 2.1918604373931885, + 0.27480125427246094, + 1.7079569101333618, + 1.238441824913025, + 2.4428534507751465, + 1.5090254545211792, + 2.815030574798584, + -3.2899062633514404, + 2.4073286056518555, + -0.9284380078315735, + -2.6928811073303223, + 2.7494800090789795, + -3.2056050300598145, + 0.1945311427116394, + -1.4928641319274902, + 1.3702924251556396, + 0.9395615458488464, + -1.6816911697387695, + 2.0188310146331787, + -1.9542691707611084, + 2.2335567474365234, + 2.156325101852417, + 3.043846607208252, + 1.7590365409851074, + -5.915759086608887, + 0.7942301034927368, + -0.006315171718597412, + 0.02379244565963745, + 1.641523003578186, + 2.6313135623931885, + -4.0633864402771, + 2.3314173221588135, + -0.5744880437850952, + 2.0951056480407715, + 10.289555549621582, + -0.09477514028549194, + -0.13497397303581238, + -3.4527289867401123, + -0.2701534628868103, + 0.0006268322467803955, + 0.33358901739120483, + -3.1731860637664795, + -3.041234016418457, + 4.014220237731934, + -0.8805645704269409, + -0.40516024827957153, + -1.5677070617675781, + 0.4870207905769348, + -0.3950365483760834, + -4.263078689575195, + 1.428839087486267, + 1.102222204208374, + -0.7168883085250854, + 3.9885902404785156, + 0.5768120884895325, + 0.6235400438308716, + 0.7877108454704285, + 1.0101665258407593, + -3.7809841632843018, + 0.7521123290061951, + 7.337251663208008, + -0.45036229491233826, + 4.525813579559326, + 0.5163182020187378, + -1.4593126773834229, + 0.3041438162326813, + 0.26211896538734436, + 15.470776557922363, + -2.4838764667510986, + 0.4217287302017212, + 2.665320873260498, + 0.4787825047969818, + 1.474392056465149, + -5.418544769287109, + 1.785693645477295, + -2.0143795013427734, + -2.972630739212036, + -1.4174562692642212, + 0.9880250692367554, + -3.662432909011841, + 0.07836812734603882, + 1.9875388145446777, + 1.4427827596664429, + 0.8122471570968628, + -1.8853209018707275, + -0.11313766241073608, + -1.2812566757202148, + -0.048626333475112915, + -0.6565940976142883, + 2.973100185394287, + -1.0481144189834595, + -0.5114303827285767, + -3.2871413230895996, + 2.5074238777160645, + -0.015959784388542175, + -2.6552820205688477, + 1.3900150060653687, + 0.36774778366088867, + -2.576685905456543, + 3.8674371242523193, + 1.4866845607757568, + -1.6577599048614502, + -1.5316498279571533, + 0.5814371109008789, + -1.7377690076828003, + -1.844724178314209, + -1.8114365339279175, + 0.05223160982131958, + 3.414926052093506, + -0.625289797782898, + 4.115220069885254, + 0.8416520357131958, + -5.62873649597168, + 0.8967348337173462, + -2.661572217941284, + -1.089802622795105, + -3.799088954925537, + -1.0453917980194092, + -2.5911684036254883, + -1.7331953048706055, + -3.9516563415527344, + -10.242698669433594, + -0.972445011138916, + 0.23512735962867737, + 9.785079956054688, + 1.3901207447052002, + -4.899737358093262, + 5.576502323150635, + 0.9186685085296631, + 0.6409521102905273, + 1.9422783851623535, + -1.9826256036758423, + 2.277292251586914, + 0.08964550495147705, + 2.7572836875915527, + -3.1664247512817383, + 2.968010663986206, + 1.192549467086792, + 2.977397918701172, + 4.556876182556152, + -4.881853103637695, + -2.8814122676849365, + 0.23643815517425537, + -0.02411779761314392, + 0.11970752477645874, + 2.531130790710449, + -8.047471046447754, + -2.150569200515747, + 4.094539642333984, + -0.15024876594543457, + -1.3010756969451904, + 0.6886920928955078, + -10.204811096191406, + 1.4921714067459106, + -0.3165411353111267, + 1.7536590099334717, + 1.8094751834869385, + -0.8370612859725952, + -1.7379050254821777, + -0.2796211838722229, + -3.285315990447998, + -3.081784963607788, + 1.412529706954956, + 3.233949899673462, + -2.6733694076538086, + -0.08821690082550049, + -6.74637508392334, + -2.037338972091675, + -2.158168077468872, + 3.4587883949279785, + 0.15001839399337769, + 0.13267263770103455, + -1.3883473873138428, + -1.018847107887268, + -3.140742778778076, + 1.9065659046173096, + 1.3396167755126953, + -0.6579471826553345, + -0.8401157855987549, + 0.19078966975212097, + 1.0421142578125, + 1.330734133720398, + -2.368206024169922, + -2.869884490966797, + -1.7960984706878662, + 1.327942967414856, + -1.6587666273117065, + -1.092423915863037, + 0.3463080823421478, + 1.0456533432006836, + 1.2841778993606567, + -1.4398112297058105, + 0.1597449779510498, + 0.9180648922920227, + -0.4538331627845764, + -2.1128880977630615, + -3.5368452072143555, + 2.2921948432922363, + -2.735126495361328, + -0.4635092616081238, + -1.518282175064087, + 0.15990161895751953, + -0.730266809463501, + -2.1298751831054688, + 0.5885316729545593, + 0.8613781929016113, + 0.3377276062965393, + 1.6229565143585205, + 21.14851951599121, + -0.21572858095169067, + -0.715958297252655, + -0.06566376239061356, + 0.2513563930988312, + -1.2564774751663208, + -2.0272884368896484, + -1.6546719074249268, + 4.513053894042969, + -2.083937883377075, + 1.825445532798767, + 6.760979652404785, + -0.4496288299560547, + 3.064161777496338, + -1.260434627532959, + -0.9826484322547913, + 0.9027357697486877, + 0.33106642961502075, + -0.31576281785964966, + -3.027860641479492, + 1.8756015300750732, + 0.9875462651252747, + 5.084527492523193, + -0.3972266614437103, + 1.576708197593689, + 1.8301447629928589, + 2.852022171020508, + -1.2398183345794678, + -2.40293550491333, + 1.475706696510315, + 1.546962022781372, + 2.00087833404541, + -1.8654555082321167, + 3.6731061935424805, + -0.7423869371414185, + 2.0174949169158936, + 1.2350761890411377, + -1.8618320226669312, + -0.8693709969520569, + 0.7906765937805176, + -0.208695650100708, + 2.7298412322998047, + 3.289471387863159, + -2.2456107139587402, + 3.7814931869506836, + -1.725411057472229, + 0.9204220771789551, + 1.1984425783157349, + -0.03748041391372681, + 3.0301856994628906, + 0.19231784343719482, + 3.6057546138763428, + 1.052541971206665, + -3.618830680847168, + 1.4899929761886597, + 2.2730019092559814, + -0.15972131490707397, + -2.1712474822998047, + -1.2400288581848145, + 1.5852594375610352, + 3.403963088989258, + -0.38968220353126526, + 1.0986545085906982, + 0.93681800365448, + -0.3938175439834595, + 0.2962000370025635, + 0.10206156969070435, + 4.2304253578186035, + -1.4663997888565063, + 3.0705437660217285, + 0.4548826813697815, + -1.0478591918945312, + 0.43108928203582764, + -1.3651528358459473, + -2.7358598709106445, + -1.609362006187439, + -1.4211993217468262, + -0.11456343531608582, + -0.6088475584983826, + -2.649782657623291, + -6.631185531616211, + -2.2334282398223877, + 1.1453137397766113, + 0.32706528902053833, + 1.7703931331634521, + -0.3650510311126709, + -5.839168548583984, + 0.8391173481941223, + 0.17126253247261047, + 2.6122748851776123, + -0.21027439832687378, + -0.3995157480239868, + -4.537240505218506, + 1.2713600397109985, + -0.6554681658744812, + 0.3025537431240082, + 1.5543091297149658, + -0.15688347816467285, + 1.6298589706420898, + 2.7872283458709717, + 2.556459665298462, + 0.2380942702293396, + -2.2375614643096924, + 0.24111729860305786, + -2.809298038482666, + 1.0646013021469116, + -1.4924743175506592, + 1.583179235458374, + 0.14051462709903717, + -1.3945250511169434, + -3.9819605350494385, + -0.7275657653808594, + -0.7695426344871521, + 2.699160575866699, + -4.2908935546875, + 1.1013498306274414, + 0.4824375510215759, + 0.624737024307251, + -1.9345759153366089, + -5.34144401550293, + 0.7852744460105896, + -10.102611541748047, + -3.3517136573791504, + 3.4747464656829834, + -9.938346862792969, + -1.64829421043396, + 1.0146478414535522, + -1.3545706272125244, + -1.4769601821899414, + 0.6720542907714844, + 1.6790797710418701, + -1.1346213817596436, + 1.3587777614593506, + 1.9256330728530884, + -5.5393571853637695, + -0.5616503357887268, + 0.8137996792793274, + 2.157719373703003, + 1.7040966749191284, + 1.942563772201538, + -0.020333290100097656, + -0.12885549664497375, + -0.5497835874557495, + 1.543327808380127, + -0.2840278446674347, + -1.3321404457092285, + 3.557887554168701, + -1.0424582958221436, + -2.385432720184326, + 1.4989564418792725, + 2.2004435062408447, + -2.022156000137329, + -3.0665717124938965, + -5.024421691894531, + -1.3120064735412598, + 2.409122943878174, + -1.0023943185806274, + 3.148378372192383, + -0.7824561595916748, + 3.2686431407928467, + -0.36905133724212646, + 1.3102216720581055, + 1.7792924642562866, + -3.964261054992676, + 1.3051267862319946, + 0.42233121395111084, + 0.7516404986381531, + -3.846895694732666, + 1.214441180229187, + 3.173764705657959, + 1.7339756488800049, + -3.984016180038452, + -1.0066924095153809, + 2.6745657920837402, + -1.1865726709365845, + 0.16908636689186096, + 1.5926103591918945, + 0.08780506253242493, + 1.0549747943878174, + -0.5572052001953125, + 0.903190016746521, + -0.9211283922195435, + 5.003763198852539, + 2.085491418838501, + -0.08916127681732178, + -1.1028236150741577, + 0.5573042035102844, + -2.485645294189453, + 0.4213967025279999, + -0.3117867708206177, + 0.46866607666015625, + -1.9955635070800781, + -2.907334566116333, + 2.402700424194336, + -2.5876855850219727, + -3.587803363800049, + 1.9544873237609863, + -0.03367049992084503, + -0.3026632070541382, + -0.9928551912307739, + -4.943685054779053, + -2.150393486022949, + -1.8870757818222046, + 0.007360726594924927, + -2.3815150260925293, + 2.5908851623535156, + 2.0925254821777344, + -1.141547441482544, + -0.06763821840286255, + -2.439800977706909, + 0.3384149372577667, + -4.848125457763672, + -1.270042896270752, + 1.0099666118621826, + -0.0032575130462646484, + -1.481873869895935, + -0.3270692825317383, + 2.386366367340088, + -4.169287204742432, + 4.312868595123291, + 0.2396368384361267, + -1.2102303504943848, + -3.030294895172119, + -1.7361680269241333, + 1.1523849964141846, + -0.9417703151702881, + 0.31889989972114563, + 0.026492834091186523, + -2.120088577270508, + -1.836743950843811, + 2.747770309448242, + -0.4457760453224182, + 0.7628690004348755, + 0.21971666812896729, + 0.5803796648979187, + -0.07259306311607361, + -0.6604998707771301, + -1.273432970046997, + 3.625246524810791, + 0.36065226793289185, + 2.952690601348877, + -1.2932730913162231, + -0.288862407207489, + -0.7840847373008728, + -0.579604983329773, + -0.47664088010787964, + 0.5662043690681458, + -1.7133989334106445, + 2.65279221534729, + -1.3160039186477661, + -2.3976550102233887, + 5.399296760559082, + 0.1671462059020996, + -3.41727614402771, + 1.6076372861862183, + 1.736955165863037, + -3.324817657470703, + -3.770893096923828, + 1.3751239776611328, + -4.443145751953125, + 2.9191765785217285, + -3.9330835342407227, + -2.244680404663086, + 0.7326815724372864, + -0.8162681460380554, + 0.542657732963562, + -0.0410616397857666, + -3.1964635848999023, + 2.2976138591766357, + -0.2108362466096878, + 1.5481021404266357, + -2.049339771270752, + -0.3328346610069275, + -0.7582969665527344, + 2.058764934539795, + 0.7746146321296692, + -1.0396968126296997, + 3.9938104152679443, + -2.6450717449188232, + -1.5994460582733154, + -0.8812539577484131, + 2.15398907661438, + 3.3399901390075684, + 1.6524224281311035, + -0.7193540930747986, + 0.0012440979480743408, + -1.3602139949798584, + -1.0844244956970215, + 2.3147573471069336, + 1.7407326698303223, + -1.1232725381851196, + -1.6337121725082397, + -3.7083656787872314, + 1.8889341354370117, + 9.461797714233398, + 2.674945592880249, + 3.5108890533447266, + 7.2480082511901855, + 0.9380306005477905, + -0.7073054313659668, + 0.0035993456840515137, + -2.3595619201660156, + -3.946660041809082, + 2.2619645595550537, + 3.6312124729156494, + 1.525200605392456, + -0.7447428703308105, + 1.9966272115707397, + 0.3964335322380066, + 1.7813390493392944, + 1.281872034072876, + 0.7618403434753418, + 0.1613481491804123, + 4.7472944259643555, + 1.792936086654663, + -5.0478339195251465, + -3.04205584526062, + -0.8062840700149536, + 3.980290412902832, + 2.459293842315674, + 0.9045156240463257, + 3.2920475006103516, + 1.9069879055023193, + 1.647902250289917, + -1.294135570526123, + 1.5375158786773682, + 4.098433971405029, + 0.7999880909919739, + -2.381537914276123, + -0.6147252321243286, + 0.7025889158248901, + -4.8696136474609375, + -0.49556735157966614, + -1.7969434261322021, + 0.9588814973831177, + 3.196669340133667, + 1.1159578561782837, + -3.856952667236328, + -0.027774140238761902, + -0.6081932783126831, + -3.216167449951172, + -0.51373690366745, + -4.708958625793457, + -3.2480173110961914, + 2.0754013061523438, + 3.718980312347412, + -1.4026836156845093, + -0.7964832782745361, + -0.541421115398407, + -0.8206241130828857, + 3.629279136657715, + 1.4952774047851562, + -1.8431519269943237, + 0.01788237690925598, + 1.7089793682098389, + -3.2117207050323486, + -2.879516124725342, + 0.5827327370643616, + 0.6334452629089355, + -1.885145664215088, + 2.6030149459838867, + 1.5889344215393066, + -3.0724947452545166, + 3.6471798419952393, + 1.8698725700378418, + 0.1691024899482727, + -2.8967957496643066, + -0.5869626998901367, + 1.072890043258667, + -0.06268781423568726, + -1.242384433746338, + 3.4670069217681885, + -0.5791040062904358, + 2.3777170181274414, + -1.427785873413086, + -2.6058967113494873, + 0.4816017150878906, + -1.4866833686828613, + -1.5775138139724731, + -3.11130428314209, + -2.730426073074341, + 0.231822669506073, + -0.1342545747756958, + -11.39984130859375, + 1.3732354640960693, + -0.3205440640449524, + -1.8779221773147583, + -1.336864709854126, + 0.794171929359436, + -0.4759633541107178, + -12.504192352294922, + 0.34726110100746155, + -0.48813164234161377, + -0.4083772599697113, + -2.2181801795959473, + 1.267983317375183, + -0.10982683300971985, + -1.761034607887268, + 3.4047367572784424, + -0.7041596174240112, + 1.8842809200286865, + 0.500360906124115, + -6.047970771789551, + 0.4144473671913147, + -2.1526761054992676, + -0.35006216168403625, + -0.8433629274368286, + 0.10444837808609009, + -0.3034098148345947, + 1.708875060081482, + -7.08931827545166, + 1.9140536785125732, + -4.926382064819336, + -2.891350269317627, + 0.19128386676311493, + 0.4770016074180603, + 0.4242422580718994, + 0.7033242583274841, + -0.5431195497512817, + 0.9759476184844971, + -0.6161264181137085, + -2.056641101837158, + 1.7733256816864014, + 2.156144142150879, + -2.2046775817871094, + -0.2916489243507385, + -0.1638035774230957, + -0.23683276772499084, + 4.970076560974121, + -0.792146623134613, + 0.9087437391281128, + 3.089475393295288, + 1.4960448741912842, + 0.8389723896980286, + -6.555540561676025, + 6.962795734405518, + 2.036768674850464, + 1.2840168476104736, + -0.5287584066390991, + -0.7642629146575928, + -1.2939096689224243, + -0.5017155408859253, + 1.8057734966278076, + 1.022765874862671, + 1.2968356609344482, + 0.8303399085998535, + -1.0745110511779785, + 0.9801796078681946, + 0.9999475479125977, + 2.2855653762817383, + -1.1715612411499023, + -0.6226664781570435, + -2.450254201889038, + -2.3017430305480957, + -1.4451282024383545, + 2.0127694606781006, + -4.382668495178223, + 0.3854788541793823, + 0.15214449167251587, + -0.7099044322967529, + 0.7613094449043274, + 0.5664970874786377, + 15.688076972961426, + -0.22840240597724915, + -0.5147244930267334, + -4.472627639770508, + 1.6676955223083496, + 4.308210372924805, + -2.3728396892547607, + 1.769650936126709, + -5.432626724243164, + -1.0431382656097412, + -1.9271924495697021, + 2.696592092514038, + -1.29990553855896, + 0.6630846261978149, + 0.8809008598327637, + -0.07409951090812683, + -2.1612589359283447, + 3.064046621322632, + -2.099029779434204, + -3.864281177520752, + -0.6606131792068481, + 2.8903088569641113, + 0.2354801893234253, + 2.044262170791626, + 0.08605784177780151, + 4.6132073402404785, + 3.325251579284668, + 0.661949098110199, + -3.2089955806732178, + 0.6925583481788635, + 1.197681188583374, + -0.7443515658378601, + -1.9656864404678345, + -0.08831876516342163, + -0.43079257011413574, + -1.0209214687347412, + 0.6921408772468567, + -1.9319545030593872, + -5.09340763092041, + 0.22355780005455017, + 0.9047991037368774, + -0.7072980403900146, + -1.9662185907363892, + 0.9224182367324829, + -3.4576666355133057, + -2.7584996223449707, + 2.299450159072876, + 4.131457805633545, + -2.8288583755493164, + -0.7509939074516296, + -2.4142308235168457, + -3.064241886138916, + -0.987467885017395, + -0.2597191333770752, + 1.2584888935089111, + 0.4779261350631714, + -0.25921785831451416, + 3.6470448970794678, + -2.0069189071655273, + -1.8100050687789917, + -0.1353224515914917, + 0.13107603788375854, + -1.158192753791809, + 0.04451662302017212, + 2.3565797805786133, + 1.195589303970337, + -1.4934055805206299, + 0.9739293456077576, + -1.425036907196045, + -1.280306339263916, + -1.4498660564422607, + 4.104262351989746, + 1.017033576965332, + -1.0735000371932983, + -0.5307512283325195, + -0.17522165179252625, + -0.8336354494094849, + -3.6447858810424805, + -6.355920314788818, + -0.6234812140464783, + -3.7708005905151367, + 0.4329795837402344, + -1.5070286989212036, + -1.2187151908874512, + 1.719606637954712, + 0.27371156215667725, + -1.027894139289856, + -1.9851953983306885, + -0.16652032732963562, + -0.02259749174118042, + 0.634560763835907, + 1.3605067729949951, + -2.8230724334716797, + -2.0691111087799072, + -0.3909791111946106, + 1.4401192665100098, + -1.1948193311691284, + -5.4944167137146, + 1.5146586894989014, + 1.4579782485961914, + -1.4974422454833984, + 4.0534868240356445, + -2.431652545928955, + 11.430460929870605, + -1.4285163879394531, + 2.1628432273864746, + 1.1816532611846924, + 1.8408821821212769, + -1.8670353889465332, + -1.2688603401184082, + 1.5307610034942627, + 1.937319278717041, + -0.01915843039751053, + 2.287705898284912, + 2.581448554992676, + 0.1421445608139038, + -0.09617733955383301, + 2.919481039047241, + -0.7386391162872314, + -1.7934339046478271, + -0.4997749924659729, + 2.8251113891601562, + 3.541517734527588, + -2.134754180908203, + -4.105230331420898, + -0.04754441976547241, + 0.1707351803779602, + -1.228171706199646, + 1.4368349313735962, + 1.505233645439148, + -0.5319660902023315, + -3.6116085052490234, + -0.9791948795318604, + 1.3873487710952759, + 0.8413779139518738, + 1.8286646604537964, + -1.4430732727050781, + 1.4074387550354004, + 0.40132737159729004, + 0.7941051721572876, + -0.6589560508728027, + 1.7611615657806396, + 2.9219093322753906, + -3.752767562866211, + 45.842864990234375, + 1.785024881362915, + 3.3867499828338623, + 0.6045387983322144, + -2.731503963470459, + -0.669890820980072, + 1.732018232345581, + 0.8630866408348083, + 0.007460147142410278, + 0.9016075134277344, + 2.7285494804382324, + 2.257755994796753, + 1.3523989915847778, + 1.6718082427978516, + -0.024164199829101562, + 2.3737266063690186, + 3.3632819652557373, + -2.089933156967163, + -0.628626823425293, + 1.5614415407180786, + -0.7938657999038696, + 0.5113517045974731, + 2.3001961708068848, + -0.5967905521392822, + -1.8674006462097168, + -10.661042213439941, + -2.598585844039917, + -0.5194828510284424, + -2.927041530609131, + 1.810187816619873, + -2.2130680084228516, + 2.9117841720581055, + -2.0469648838043213, + 4.24170446395874, + -0.7770841121673584, + -0.33928829431533813, + -2.0169501304626465, + 0.5643072128295898, + 4.139458179473877, + -0.7005335092544556, + -0.06383296847343445, + 2.8605496883392334, + -3.175891399383545, + -0.5738866329193115, + -5.374332904815674, + -5.526848793029785, + -1.5816158056259155, + -1.4339094161987305, + -0.9034363031387329, + 2.9693405628204346, + 3.4739198684692383, + 3.228282928466797, + -1.632104754447937, + 0.11858728528022766, + 0.1800495982170105, + -3.1985559463500977, + -0.12656369805335999, + -14.905640602111816, + -1.4283905029296875, + -1.6723030805587769, + 1.2966794967651367, + 0.26086878776550293, + 1.1876908540725708, + 2.5279481410980225, + -3.1132216453552246, + -1.4550889730453491, + 0.6569792628288269, + 1.4132543802261353, + -0.5420758724212646, + -0.7503188252449036, + -0.6944632530212402, + -0.8427726626396179, + 0.9133327603340149, + 2.370482921600342, + -2.8706159591674805, + 1.4157153367996216, + -0.8659579753875732, + -2.599142074584961, + 3.322371244430542, + -2.2745862007141113, + -2.9472005367279053, + -1.4329845905303955, + 4.5723700523376465, + -1.6673893928527832, + -0.2776658236980438, + 5.6081953048706055, + -0.7873510122299194, + -1.755137324333191, + 4.037534713745117, + 2.0314178466796875, + -2.438767910003662, + -1.065840482711792, + -1.6444077491760254, + 2.9947166442871094, + -0.5214335918426514, + 2.0438895225524902, + 1.299229621887207, + 1.7650980949401855, + -0.5324314832687378, + 1.3953721523284912, + -0.188888818025589, + 1.6584289073944092, + 1.6786600351333618, + -2.9136571884155273, + -0.9121832847595215, + 1.1848461627960205, + 3.0195422172546387, + 4.367500305175781, + 1.5234469175338745, + -12.783957481384277, + -1.6178276538848877, + 1.7100157737731934, + 0.849260687828064, + -0.042566537857055664, + -37.289466857910156, + -0.7019309997558594, + 3.262936592102051, + 0.04411506652832031, + 1.1472338438034058, + 0.2304186373949051, + -6.821365833282471, + 1.9234999418258667, + -4.910239219665527, + -0.2607317268848419, + -1.341621994972229, + 2.4128148555755615, + -0.4796451926231384, + -1.7471644878387451, + 4.393743515014648, + -2.9268815517425537, + 0.7640583515167236, + 3.3861680030822754, + 0.858656108379364, + 2.1010940074920654, + 0.0953359454870224, + 1.478837013244629, + 2.370635747909546, + -2.0017027854919434, + 3.6509947776794434, + -1.0074684619903564, + 0.3036373257637024, + -0.9763526916503906, + -0.20584553480148315, + 2.293271541595459, + -0.7193348407745361, + -2.784750461578369, + 4.079294204711914, + 1.1510252952575684, + 4.489830017089844, + -1.5714595317840576, + -3.2353899478912354, + 0.6719728112220764, + -1.412922739982605, + -4.174395561218262, + 0.8547441959381104, + 1.4560422897338867, + 1.797060251235962, + -1.2484315633773804, + 0.22922760248184204, + 0.01739215850830078, + 4.029156684875488, + -4.944899559020996, + 1.368001103401184, + -2.436708450317383, + -3.397397518157959, + -1.494826316833496, + -0.08037574589252472, + 0.04678446054458618, + -1.8873085975646973, + 0.44473031163215637, + -6.772371292114258, + -1.609830379486084, + -1.7982746362686157, + 4.450066566467285, + 0.9858766794204712, + -3.9184975624084473, + 1.3189465999603271, + -2.8874588012695312, + 0.2419792115688324, + -0.2011040449142456, + 8.546168327331543, + -1.849813461303711, + 0.22686055302619934, + -0.25970375537872314, + 1.7407715320587158, + 2.9367856979370117, + 1.9926002025604248, + -0.9884790182113647, + 2.6846466064453125, + -1.0106289386749268, + -2.7572951316833496, + 4.051517486572266, + -5.295929908752441, + 0.45283836126327515, + 0.7656815052032471, + -2.744908332824707, + -0.0012783706188201904, + -2.8489632606506348, + 0.31834936141967773, + 1.8236366510391235, + 0.4224196672439575, + 1.1615421772003174, + -7.075000762939453, + -2.6965279579162598, + 3.686845302581787, + 0.6947922706604004, + -0.35645368695259094, + 2.4591100215911865, + -1.884497880935669, + -4.04787540435791, + -2.4366371631622314, + 0.5411908626556396, + -0.4545859098434448, + 0.2012018859386444, + 3.2334930896759033, + -0.43118414282798767, + 2.5747995376586914, + -3.175266981124878, + 1.0658591985702515, + -0.1427483707666397, + 0.8615775108337402, + -0.5739597678184509, + -21.340438842773438, + -0.8468708395957947, + -0.07287529110908508, + -0.3370223045349121, + 3.0282342433929443, + -7.181553363800049, + -1.4795448780059814, + -1.4391547441482544, + 1.300947904586792, + -0.24079883098602295, + 0.3915601074695587, + 1.350136160850525, + -2.713080883026123, + -0.3210136592388153, + 0.8036583662033081, + -0.8194948434829712, + 0.7817416191101074, + -1.728623390197754, + 1.7456228733062744, + 1.3010525703430176, + -3.695263385772705, + -4.666637420654297, + 2.400928020477295, + -1.6059868335723877, + 0.269719660282135, + 0.8389233350753784, + -0.13079789280891418, + 1.0113027095794678, + -3.6360840797424316, + -3.174142360687256, + -1.119126319885254, + 0.6842068433761597, + -1.02173912525177, + -20.31198501586914, + -0.6954131126403809, + -1.3585097789764404, + 0.7074602842330933, + -1.2332375049591064, + -6.305509567260742, + 0.7447295784950256, + 0.049174219369888306, + -2.5709900856018066, + -0.4925393760204315, + -0.1834978610277176, + 0.490093857049942, + 1.39595365524292, + -1.1431934833526611, + 0.7720694541931152, + 0.845656156539917, + -2.7232747077941895, + 3.6043434143066406, + 0.9616348147392273, + -2.55914568901062, + 1.7963367700576782, + -1.938171148300171, + -3.1311655044555664, + 4.78984260559082, + -0.5201151371002197, + 0.1183011531829834, + 2.512251853942871, + -1.5261330604553223, + -0.6339197158813477, + -0.0841989517211914, + -1.1108744144439697, + 1.9248549938201904, + 0.6313472986221313, + 1.5293354988098145, + -1.3279356956481934, + -2.400028944015503, + 0.6331346035003662, + -1.6548173427581787, + 1.065962314605713, + -0.5294936895370483, + 0.7760516405105591, + 0.3745298385620117, + 4.138611316680908, + -3.921494483947754, + -1.7131261825561523, + -1.239011287689209, + 1.5929309129714966, + -1.739774227142334, + -0.1332871913909912, + -1.422196865081787, + -0.5429434776306152, + 3.3590030670166016, + 0.19473788142204285, + -0.6565853357315063, + 3.134186267852783, + -1.3923248052597046, + -0.3290346562862396, + -0.9597762823104858, + 4.678647518157959, + 1.5230615139007568, + -3.6565890312194824, + 2.5497565269470215, + 0.22438836097717285, + -1.4486761093139648, + -1.0806996822357178, + 0.09112939238548279, + 2.526557445526123, + 0.33034002780914307, + 0.7872686386108398, + -1.477074384689331, + 2.981424570083618, + 0.3267818093299866, + 1.5441699028015137, + 2.154615640640259, + 1.69207763671875, + -0.9928057789802551, + 0.8410292863845825, + 1.872174620628357, + -0.20045632123947144, + -1.1027958393096924, + -1.6275835037231445, + -4.627255439758301, + -1.7126113176345825, + 2.0917696952819824, + -1.5438909530639648, + 2.2099342346191406, + -0.1711539626121521, + 1.4508960247039795, + -0.576846718788147, + -2.9899179935455322, + -0.05962193012237549, + -0.5524095296859741, + -0.5813745856285095, + 0.012668311595916748, + 1.794233798980713, + 2.0862371921539307, + -1.0663050413131714, + -3.355194091796875, + -0.4721143841743469, + 0.6625245213508606, + -1.2478184700012207, + 0.5063294172286987, + 1.5756852626800537, + -4.792488098144531, + 0.6883949637413025, + -2.713383197784424, + -1.4267680644989014, + 0.39832091331481934, + -0.8482239246368408, + -0.5704901814460754, + 3.214538812637329, + -1.6194746494293213, + -3.6003284454345703, + 1.9356379508972168, + -8.096501350402832, + 0.9332495331764221, + 19.079631805419922, + 2.7302985191345215, + 1.1022186279296875, + 2.005066394805908, + 1.04836106300354, + 0.2564343810081482, + 0.6313289403915405, + 5.934704303741455, + -2.993350028991699, + -1.7558099031448364, + -1.4263978004455566, + 1.566419243812561, + -1.9068191051483154, + -4.271850109100342, + 3.0279197692871094, + -0.6294212341308594, + -0.5393977165222168, + 0.6458831429481506, + 1.8313474655151367, + -3.9743809700012207, + 0.22672122716903687, + -0.0876460075378418, + 1.9839218854904175, + -1.9303498268127441, + -0.8022807836532593, + 0.8934812545776367, + -2.2982187271118164, + -0.32527559995651245, + -1.580562710762024, + 2.7931933403015137, + -0.2049551010131836, + 1.6436502933502197, + 2.3107807636260986, + -3.073601722717285, + 3.11909556388855, + 0.7756548523902893, + -1.0849086046218872, + 0.24584946036338806, + -0.956378161907196, + 0.0864638090133667, + 1.0647587776184082, + 5.036867141723633, + 3.114009380340576, + 3.2536091804504395, + 57.61314392089844, + 1.3383183479309082, + 1.8186757564544678, + -1.090317726135254, + 2.8524794578552246, + -3.245511770248413, + -2.125722885131836, + 1.5238933563232422, + 2.849799156188965, + 0.32331448793411255, + 0.9374799728393555, + -1.303985834121704, + 0.389412522315979, + 1.448864459991455, + 0.04977792501449585 + ], + "neutral_projector": { + "component_count": 1, + "components": [ + [ + -0.00863339751958847, + -0.012958665378391743, + 0.003176608355715871, + 0.008974900469183922, + 0.00023111722839530557, + -0.008134085685014725, + -0.0004229802289046347, + 0.0005692275590263307, + -0.018194852396845818, + 0.019755128771066666, + 0.003019623691216111, + -0.0033271124120801687, + -0.01065369974821806, + -0.008056228049099445, + -0.02486693672835827, + -0.008168851025402546, + 0.0002810102014336735, + 0.004787720274180174, + -0.017500782385468483, + 0.002937381388619542, + -0.01113798562437296, + 0.003074686974287033, + 0.013703657314181328, + 0.006299363914877176, + 0.011959049850702286, + -0.012460265308618546, + 0.0019677733071148396, + 0.0016290972707793117, + -0.00818602368235588, + 0.01565616950392723, + -0.002238562563434243, + 0.06232771649956703, + -0.0023171871434897184, + 0.012182042002677917, + 0.010890533216297626, + 0.0032728405203670263, + -0.02027871645987034, + 0.01078193262219429, + 0.011833897791802883, + 0.0007793627446517348, + -0.011587325483560562, + -0.013628127053380013, + 0.008691664785146713, + 7.991019083419815e-05, + -0.0028821227606385946, + 0.011919124983251095, + -0.00839963462203741, + -0.001025544130243361, + 0.010503009893000126, + -0.01833426207304001, + 0.0024060234427452087, + 0.0005568894557654858, + -0.013055484741926193, + -0.009491872042417526, + -0.042501695454120636, + -0.010204105637967587, + -0.00214972416870296, + -0.009551187977194786, + -0.0020424348767846823, + 0.0172051340341568, + -0.021503442898392677, + -0.020679764449596405, + 0.014062408357858658, + 0.003793667769059539, + -0.0006706840940751135, + 0.005031439941376448, + -0.009654132649302483, + 0.0005146129988133907, + -0.0024250694550573826, + 0.0021908790804445744, + -0.009120372124016285, + -0.0020263763144612312, + -0.0004258406988810748, + 0.004660964012145996, + 0.01600264571607113, + 0.0001298265706282109, + 0.002803180366754532, + 0.025112885981798172, + 0.0024027866311371326, + -0.017699727788567543, + 0.002490380546078086, + -0.02516370639204979, + -0.000515371561050415, + -0.001423085923306644, + -0.004283712711185217, + -0.0068491059355437756, + 0.0007978364592418075, + 0.014009780250489712, + 9.282591054216027e-05, + 0.001336517627350986, + 0.0036420791875571012, + 0.020101869478821754, + 0.011662661097943783, + -0.02103993110358715, + 0.014613408595323563, + 0.042565684765577316, + -0.022684605792164803, + -0.008343446999788284, + -0.010249326936900616, + -0.008187775500118732, + 0.010600054636597633, + 0.007714624051004648, + 0.005404265597462654, + 0.0006537669105455279, + -0.02152826078236103, + -0.00958300195634365, + -0.002681941259652376, + 0.0070227463729679585, + 0.019012784585356712, + 0.0005062014097347856, + 0.025875572115182877, + 0.01797165907919407, + -0.016200345009565353, + 0.006852144841104746, + 0.010853861458599567, + -0.006607996299862862, + -0.0058642225340008736, + 0.011366934515535831, + 0.0031793913803994656, + 0.011125476099550724, + 0.022303923964500427, + 0.012322147376835346, + -0.008773053996264935, + -0.010698650032281876, + 0.010790253058075905, + -0.010619917884469032, + 0.011887572705745697, + 0.012413172982633114, + -0.00564611004665494, + 0.008180038072168827, + -0.0024289677385240793, + 0.0027227504178881645, + 0.009263343177735806, + -0.009056037291884422, + -0.018038706853985786, + 0.008191581815481186, + -0.006640708073973656, + 0.008412529714405537, + -0.017912158742547035, + -0.013146988116204739, + -0.002793386811390519, + -0.016026485711336136, + 0.002210406120866537, + 0.006960468832403421, + 0.011456218548119068, + -5.032195622334257e-05, + 0.01758650876581669, + -0.016060026362538338, + -0.009150533005595207, + 0.004680486395955086, + 0.002202324103564024, + 0.008494834415614605, + 0.006630932912230492, + -0.006244005635380745, + 0.006271145306527615, + -0.006044009234756231, + 0.0027178460732102394, + -0.013840466737747192, + 0.00760259386152029, + 0.022553950548171997, + 0.004701476078480482, + -0.007019439246505499, + -0.010823487304151058, + 0.0002270103432238102, + 0.00419216463342309, + 0.005210047587752342, + 0.003652687883004546, + -0.0015326347202062607, + 0.0005353581509552896, + -0.008873701095581055, + 0.0013556885533034801, + 0.010464273393154144, + 0.07704106718301773, + 0.0035166204907000065, + 0.02094206213951111, + 0.004998309537768364, + 0.0008360925130546093, + 0.01368258148431778, + -0.011277235113084316, + -0.0044553824700415134, + -0.013513184152543545, + -0.017544526606798172, + 0.0017498726956546307, + -0.005300756543874741, + -0.004057389218360186, + 0.012320979498326778, + 0.007027605548501015, + 0.0002857517683878541, + 0.007131734862923622, + -0.009926503524184227, + 0.013452112674713135, + -0.00517110014334321, + -0.008982780389487743, + -0.02708360180258751, + -0.010719393379986286, + 0.0016993202734738588, + 0.010068423114717007, + 0.0014225892955437303, + -0.002230151556432247, + 0.005246478598564863, + -0.005427629686892033, + 0.0010164330014958978, + 0.0046915276907384396, + -0.0006935932324267924, + -0.005667499266564846, + 0.013650594279170036, + 0.009186686016619205, + -0.006149636581540108, + -0.024673840031027794, + -0.0036080102436244488, + 0.0029576634988188744, + 0.028171995654702187, + -0.009673974476754665, + 0.00033244601218029857, + 0.014099967665970325, + -0.017277507111430168, + 0.007610303349792957, + -0.006011488847434521, + -0.005829137284308672, + -0.003097173757851124, + 0.008970903232693672, + -0.016811996698379517, + 0.0013091647997498512, + -0.0009628802654333413, + -0.009603963233530521, + 0.04067523032426834, + 0.012245029211044312, + 0.00866248831152916, + 0.014994964003562927, + -0.020452015101909637, + 0.0018731942400336266, + -0.0014162790030241013, + 0.003303398611024022, + -0.015335223637521267, + 0.027877548709511757, + 0.005829246714711189, + -0.0033925531897693872, + 0.02378360740840435, + 0.009979539550840855, + -0.0034628401044756174, + -0.008375391364097595, + 0.006326673086732626, + -0.007151740603148937, + -0.05146355554461479, + -0.016608109697699547, + -0.01866818405687809, + 0.01047305203974247, + 0.0034650114830583334, + -0.005272751208394766, + 0.0021383478306233883, + 0.01383792795240879, + 0.008603239431977272, + 0.0071449922397732735, + -0.0009878387209028006, + -0.014534148387610912, + -0.007943984121084213, + 0.012200404889881611, + -0.01657363772392273, + 0.0013255414087325335, + 0.013481116853654385, + -0.0032847460824996233, + -0.011358370073139668, + -0.00394860515370965, + -0.004533028695732355, + -0.020475594326853752, + 0.007055105175822973, + 0.015516628511250019, + 0.017693541944026947, + 0.013888625428080559, + 0.002401122823357582, + -0.01745590940117836, + 0.004777396563440561, + 0.018616175279021263, + -0.0017898081569001079, + 0.002746081678196788, + -0.011539475992321968, + -0.007773657329380512, + 0.006922813598066568, + 0.007941005751490593, + -0.005782920867204666, + 0.016171012073755264, + 0.012920442037284374, + 0.0041662477888166904, + -0.011206965893507004, + -0.0003932239196728915, + 0.002633305499330163, + 0.014672794379293919, + 0.005686616059392691, + 0.011923438869416714, + -0.005755759309977293, + 0.012553551234304905, + 0.019098825752735138, + 0.004046006593853235, + -0.015062252059578896, + -4.765376797877252e-05, + 0.003647959092631936, + 0.006973747164011002, + 0.008884451352059841, + 0.01112027931958437, + 0.007325998041778803, + 0.000966834370046854, + 0.000699762545991689, + 0.020431946963071823, + 0.0041963993571698666, + 0.012295135296881199, + -0.030693285167217255, + -0.016278840601444244, + -0.009179331362247467, + -0.014139044098556042, + 0.01241744589060545, + 0.020628580823540688, + -0.0002775726607069373, + -0.004739456344395876, + -0.013973947614431381, + 0.00818794034421444, + -0.0003465143672656268, + 0.015708625316619873, + 0.01958366483449936, + 0.011556733399629593, + 0.009965620934963226, + 0.00936669111251831, + 0.001509746303781867, + 0.0021797942463308573, + -0.018964547663927078, + 0.00840186420828104, + 0.005946936551481485, + 0.011983918957412243, + -0.001055049360729754, + 0.0015741332899779081, + -0.014007549732923508, + 0.008033091202378273, + 0.0032580974511802197, + -0.0008985158056020737, + 0.012609773315489292, + 0.00046146236127242446, + 0.013623571954667568, + -0.005825922358781099, + -0.002998124808073044, + -0.0004799652087967843, + -0.0038902098312973976, + -0.0006397670949809253, + -0.015478302724659443, + 0.006915757432579994, + 0.005818077828735113, + -0.0027993281837552786, + 0.0021856636740267277, + -0.026031605899333954, + 0.016254335641860962, + 0.0009155205334536731, + -0.0038584202993661165, + -0.0022498425096273422, + -0.0074534364975988865, + 0.004699240438640118, + -0.0037391255609691143, + 0.0152405621483922, + -0.03582248091697693, + -0.0015525140333920717, + 0.012621581554412842, + 0.0035173145588487387, + 0.022201333194971085, + -0.008072087541222572, + -0.006879160180687904, + -0.02342109940946102, + 0.0007194249774329364, + -0.002045548055320978, + 0.009227018803358078, + 0.005076543893665075, + -0.003280020086094737, + -0.019998129457235336, + 0.017582032829523087, + 0.008083616383373737, + -0.00518549419939518, + -0.025490662083029747, + -0.011552009731531143, + -0.05359967052936554, + 0.01158929243683815, + 0.00043588478001765907, + 0.012737993150949478, + -0.00888510886579752, + 0.005299963057041168, + 0.002602924359962344, + -0.020809924229979515, + -0.006118497345596552, + -0.0017098247772082686, + 0.011704688891768456, + 0.006533940322697163, + -0.012673364952206612, + -0.002779258182272315, + 0.0011572425719350576, + 0.0009085845085792243, + 0.023276180028915405, + -0.005864350125193596, + 0.007764886599034071, + 0.02067536488175392, + -0.01119534857571125, + 0.008782136254012585, + -0.017805814743041992, + 0.007178164552897215, + -0.008047854527831078, + -0.01848677732050419, + 0.0058554853312671185, + 0.003454754361882806, + -0.0005309003754518926, + 0.0008823971729725599, + 9.014434908749536e-05, + -0.0027517976704984903, + 0.0046034618280828, + -0.00016830101958476007, + -0.004604135174304247, + -0.02720707654953003, + -0.013832185417413712, + -0.019334563985466957, + -0.006113368086516857, + 0.01027174573391676, + 0.008748596534132957, + -0.02700641378760338, + 0.006696206517517567, + 0.02473861537873745, + 0.004474179819226265, + 0.05303684622049332, + -0.01630142517387867, + -0.008768870495259762, + -0.0010590568417683244, + 0.020760759711265564, + 0.0035844186786562204, + -0.00972760934382677, + 0.02547873742878437, + 0.01749075949192047, + 0.042055778205394745, + 0.002210747916251421, + 0.008357074111700058, + -0.0005090421764180064, + 0.016231199726462364, + 0.0003273789188824594, + 0.0007345595513470471, + 0.005033873487263918, + -9.869538916973397e-05, + -0.0010477848118171096, + -7.801848551025614e-05, + -0.012726695276796818, + -0.013366584666073322, + -0.006581128109246492, + -0.004439894575625658, + -0.005481211934238672, + 0.01772974245250225, + 0.0025605165865272284, + -0.0024230980779975653, + -0.01735399290919304, + 0.008544998243451118, + -0.017087392508983612, + -0.011029606685042381, + 0.00266659096814692, + 0.001048088539391756, + -0.0005818143836222589, + -0.0006905870395712554, + 0.0014740288024768233, + 0.001573291840031743, + 0.018192706629633904, + -0.0027471401263028383, + 0.019362840801477432, + -0.014160838909447193, + -0.030163325369358063, + 0.007059949915856123, + -0.014345825649797916, + 0.0016016329172998667, + 0.005392915103584528, + -0.016253434121608734, + 0.015877149999141693, + -0.0008266835939139128, + -0.002653958275914192, + 0.01668580248951912, + 0.012694024480879307, + -0.025426099076867104, + -0.003297290299087763, + -0.003165916074067354, + -0.0026577836833894253, + 0.016017261892557144, + 0.006900874897837639, + 0.01583312824368477, + -0.034666091203689575, + -0.007282246369868517, + -0.0030452969949692488, + -0.012716183438897133, + -0.016264932230114937, + 0.010372703894972801, + -0.003708840114995837, + 0.003989167045801878, + 0.01768084242939949, + 0.01578540913760662, + -0.0019391051027923822, + -0.007785664405673742, + -2.6546165372565156e-06, + -0.01675819605588913, + 0.00014718712191097438, + 0.011747727170586586, + -0.009258762001991272, + -0.012970898300409317, + -0.009836018085479736, + -0.003095878753811121, + -0.022626569494605064, + -0.019558146595954895, + 0.0025846378412097692, + -0.016835341230034828, + -0.022927775979042053, + 0.020453648641705513, + 0.05776416137814522, + -7.475042366422713e-06, + -0.0010592448525130749, + -0.02104155719280243, + 0.0013747327029705048, + -0.00919980090111494, + -0.016600724309682846, + 0.005789254326373339, + -0.006615803111344576, + 0.010051073506474495, + -0.0027728325221687555, + -0.012160560116171837, + 0.009311582893133163, + -0.01058338861912489, + 0.009811642579734325, + -0.0032286550849676132, + -0.01966596022248268, + 0.012509332038462162, + 0.0009927843930199742, + 0.010464182123541832, + -0.015310156159102917, + 0.001981739653274417, + 0.006210464518517256, + -0.00545419892296195, + -0.003873590612784028, + -0.0139613077044487, + -0.012113576754927635, + -0.003959261812269688, + -0.015557073056697845, + 0.0022555734030902386, + -0.005429385229945183, + -0.0016222536796703935, + -0.010996434837579727, + -0.001198429730720818, + -0.009090406820178032, + -0.001563484431244433, + 0.000965649145655334, + -0.0009357922244817019, + -0.00715401628986001, + -0.016161130741238594, + 0.0029542390257120132, + 0.012786058709025383, + -0.023005221039056778, + 0.003001255914568901, + -0.00491776829585433, + 0.003098140936344862, + 0.00137605972122401, + 0.00031337348627857864, + -0.002951875561848283, + 0.0011185776675119996, + 0.018620925024151802, + -0.015258791856467724, + 0.0034820162691175938, + -0.0012565642828121781, + 0.006923849228769541, + -0.011391449719667435, + 0.005447657313197851, + -0.013300039805471897, + -0.02682378701865673, + 0.004913807846605778, + 0.0024445788003504276, + 0.0075432658195495605, + 0.012690706178545952, + 0.013471352867782116, + 0.011699805967509747, + -0.004811375867575407, + 0.008631179109215736, + -0.014639109373092651, + -0.008600229397416115, + -0.00515930587425828, + -0.004776760935783386, + 0.0020495797507464886, + -0.01645554043352604, + 0.002454852918162942, + 0.0008823142852634192, + -0.002414494752883911, + -0.004312695469707251, + 0.01448058895766735, + 0.01825891248881817, + -0.012761851772665977, + -0.002777502639219165, + 0.0010753445094451308, + -0.003034910885617137, + 0.01675868220627308, + 0.004140959586948156, + 0.005165611859411001, + -0.0041098156943917274, + -0.0011326007079333067, + -0.012532553635537624, + 0.0029928472358733416, + 0.00896778330206871, + 0.005140319466590881, + 0.008353376761078835, + -0.0042543658055365086, + 0.00949101522564888, + 0.0016402306500822306, + -0.011279402300715446, + -0.015872064977884293, + 0.0022885992657393217, + 0.006285452749580145, + 0.0018187030218541622, + 0.011098514311015606, + 0.017475372180342674, + -0.009537742473185062, + -0.036025144159793854, + 0.01354718953371048, + -0.011055686511099339, + -0.011606483720242977, + 0.0009898574789986014, + 0.007629538886249065, + 0.032054606825113297, + -0.023208584636449814, + -0.014056372456252575, + -0.013768712058663368, + 0.014549452811479568, + 0.010482224635779858, + -0.005037387832999229, + 0.011162055656313896, + -0.0023207892663776875, + -0.004425017163157463, + 0.01231446024030447, + -0.0037249745801091194, + 0.006737919524312019, + -0.014142428524792194, + 0.013083078898489475, + 0.00035280961310490966, + 0.021046916022896767, + 0.008879936300218105, + -0.0002559727290645242, + 0.0008117171237245202, + 0.0004498529015108943, + 0.0016714615048840642, + -0.00036988515057601035, + 0.012663913890719414, + 0.0040341950953006744, + -0.0017006710404530168, + 0.005101099610328674, + -0.005602994002401829, + 0.0022124091628938913, + -0.0051862518303096294, + 0.002650141716003418, + 0.0032896618358790874, + 0.011095723137259483, + -0.00587628735229373, + 0.004589059390127659, + -0.0035551805049180984, + -0.0015802186680957675, + 0.005401139613240957, + -0.005603490397334099, + -0.0038707666099071503, + -0.01667991280555725, + -0.005399168469011784, + 0.0026376114692538977, + -0.024445297196507454, + 0.016809675842523575, + 0.02722107619047165, + 0.00097229506354779, + -0.008743190206587315, + 0.012709285132586956, + -0.006312332581728697, + 0.015003712847828865, + -0.0035732409451156855, + 0.0012086244532838464, + -0.013891994021832943, + 0.004717784933745861, + -0.03239681199193001, + -0.007082783617079258, + 0.00613574730232358, + -0.009357805363833904, + 0.002571575343608856, + 0.01160618755966425, + 0.00910209771245718, + -0.0029156641103327274, + 0.0008852645987644792, + -0.001613559084944427, + -0.0004961288068443537, + -0.0065077743493020535, + -0.009436365216970444, + -0.0025605123955756426, + 0.0029352533165365458, + -0.011147165670990944, + 0.010873106308281422, + 0.005823314655572176, + -0.012558095157146454, + 0.0066565158776938915, + 0.013892737217247486, + -0.013053830713033676, + -0.0027113528922200203, + -0.007016435265541077, + 0.007222938816994429, + -0.004277105443179607, + 0.0018927149940282106, + -0.030498018488287926, + -0.008762468583881855, + 0.005107858218252659, + 0.013351925648748875, + 0.002773501444607973, + -0.00925094448029995, + 0.0021781018003821373, + -0.013269646093249321, + 0.014347020536661148, + 0.00017586453759577125, + 0.013437286950647831, + -0.01435105036944151, + -0.008420076221227646, + 0.007947511039674282, + 0.013834700919687748, + 0.00194355973508209, + -0.012438171543180943, + 0.0060091037303209305, + 0.0010133171454071999, + 0.020688224583864212, + -0.018394486978650093, + 0.016437944024801254, + -0.0091838538646698, + 0.020782772451639175, + -0.008015943691134453, + 0.0005257300799712539, + -0.001350101549178362, + -0.01285543106496334, + -0.012027637101709843, + 0.018579058349132538, + -0.006666398607194424, + 0.012956651858985424, + 0.03294123709201813, + -0.023671800270676613, + 0.015208271332085133, + 0.01240111980587244, + 0.0003995281585957855, + 0.011632144451141357, + 0.0033597678411751986, + -0.034344855695962906, + 0.0034059721510857344, + 0.005068816710263491, + -0.008618049323558807, + 0.010113134048879147, + 0.0012185578234493732, + -0.02144077979028225, + 0.010106259025633335, + -0.012811015360057354, + 0.008001447655260563, + 0.006182909943163395, + 0.026293283328413963, + -0.005453425459563732, + -0.014182298444211483, + -0.011948809027671814, + -0.009616553783416748, + 0.01193449180573225, + -0.003911267034709454, + -0.019236251711845398, + 0.0056527405977249146, + 0.0010654779616743326, + 0.009872409515082836, + 0.0065581053495407104, + -0.014961263164877892, + -0.00518850889056921, + 0.008864080533385277, + 0.004632024094462395, + -0.0073421429842710495, + 0.0008786548860371113, + 0.007559710182249546, + -0.007176798302680254, + -0.01217341236770153, + 0.0041086990386247635, + -0.009318825788795948, + -0.005918983370065689, + 0.02223682776093483, + -0.018466230481863022, + 0.009830418042838573, + -0.014516930095851421, + -0.010869494639337063, + -0.01853754185140133, + 0.00956805795431137, + 0.014575469307601452, + 0.0041256435215473175, + -0.015942199155688286, + 0.005004703998565674, + -0.013502027839422226, + -0.0004374198615550995, + 0.004706927575170994, + 0.0017632953822612762, + 0.0037679094821214676, + 0.0011960952542722225, + 0.033221229910850525, + -0.0012507664505392313, + -0.024413971230387688, + -0.010472319088876247, + 0.011536830104887486, + 0.017524132505059242, + -0.0069867148995399475, + -0.06862001121044159, + 5.099846748635173e-05, + -0.0012479237047955394, + 0.0154612697660923, + 0.006667576264590025, + 0.024110089987516403, + 0.006943362299352884, + -0.018657762557268143, + -0.005275632254779339, + -0.0006266895798034966, + 0.002873719669878483, + -0.005615158937871456, + 0.0035433159209787846, + 0.012606216594576836, + 0.06708645820617676, + -0.01704462803900242, + -0.012784473598003387, + -0.0012033362872898579, + 0.01051731500774622, + 0.010453270748257637, + 0.009211030788719654, + -0.0013167584547773004, + 0.01190479751676321, + 0.020454278215765953, + 0.010068628005683422, + 0.0058760750107467175, + -0.009267936460673809, + -0.008435267023742199, + -0.011232311837375164, + 0.00591028667986393, + -0.003070887178182602, + -0.003650554222986102, + -0.008047323673963547, + -0.006715033669024706, + 0.04166492447257042, + 0.020183606073260307, + -0.007259235251694918, + 0.000643997744191438, + 0.0006367514724843204, + 0.003102520713582635, + 0.012436422519385815, + 0.0036603868938982487, + 0.02426406741142273, + -0.03162328526377678, + 0.010417412035167217, + 0.008946901187300682, + 0.005308407358825207, + 0.016591640189290047, + -0.006333568599075079, + 0.009012888185679913, + -0.01882489211857319, + -0.0025366805493831635, + -0.004186664707958698, + 0.010471153073012829, + -0.004118175245821476, + -0.023048192262649536, + 0.0048338668420910835, + 0.007570280693471432, + 0.013979388400912285, + 0.004798505455255508, + -0.003156963735818863, + -0.00420980341732502, + -0.011685422621667385, + -0.03268522024154663, + 0.004532471299171448, + 0.002251804107800126, + -0.004956360906362534, + 0.009007109329104424, + -0.013141423463821411, + 0.004498664289712906, + -0.023334460332989693, + 0.005848861299455166, + -0.00273125316016376, + -0.01077800802886486, + -0.005236226134002209, + -0.00744018005207181, + -0.001523747225292027, + 0.006619356572628021, + -0.003156736260280013, + 0.006582357455044985, + 0.015106691978871822, + 0.03853853791952133, + 0.003528438275679946, + -0.0065105874091386795, + -0.007075326517224312, + -0.01879120245575905, + -0.015668468549847603, + -0.015679437667131424, + -0.01486408431082964, + 0.017310472205281258, + 0.011299606412649155, + 0.004918025806546211, + -0.002664398867636919, + -0.0004966507549397647, + 0.007424831856042147, + -0.006446280516684055, + 0.017583927139639854, + 0.012814896181225777, + 0.001545208040624857, + 0.00883923564106226, + 0.0166449174284935, + 0.014468737877905369, + -0.028054598718881607, + -0.009603015147149563, + -0.01554486807435751, + -0.006711562629789114, + 0.006267422344535589, + 0.01957365684211254, + -0.01519334502518177, + 0.008354506455361843, + -0.0036732270382344723, + -0.006433633156120777, + -0.007453794125467539, + -0.03359871730208397, + 0.0034555811434984207, + 0.016306407749652863, + -0.015290351584553719, + -0.010426733642816544, + 0.006915826816111803, + -0.004016154445707798, + -0.011453640647232533, + -6.380279955919832e-05, + 0.011413008905947208, + 0.009925859048962593, + 0.01959419995546341, + -0.001767245470546186, + 0.0008221642347052693, + -0.00309336232021451, + -0.017146114259958267, + 0.001939279492944479, + 0.014454805292189121, + -0.013381165452301502, + -0.024580582976341248, + 0.01570918969810009, + -0.019957059994339943, + -0.02283715270459652, + -0.001335535547696054, + 0.0006598077598027885, + 0.011879327706992626, + 0.005889078602194786, + -0.03345103561878204, + -0.0021687529515475035, + -0.0036576325073838234, + 0.004734222777187824, + 0.010769165121018887, + 0.01212292443960905, + -0.006678889971226454, + -0.001933405757881701, + 0.003401051741093397, + 0.001943589304573834, + -0.019739357754588127, + 0.00773587916046381, + -0.009306027553975582, + 0.0018845964223146439, + 0.016150252893567085, + -0.0021213155705481768, + -0.00613422179594636, + -0.013965940102934837, + 0.012863359414041042, + -0.00303629576228559, + 0.009259788319468498, + -0.005303761921823025, + -0.0036557000130414963, + -0.009330044500529766, + -0.016263384371995926, + -0.00213271239772439, + -0.0009314562776125968, + 0.0022857170552015305, + 0.025074627250432968, + -0.007762954104691744, + 0.002203701063990593, + -0.015142306685447693, + -0.01027171965688467, + -0.0035002001095563173, + 0.012182265520095825, + 0.006948982831090689, + -0.0017243745969608426, + -0.010675405152142048, + -0.009083970449864864, + 0.005343317985534668, + 0.0003153232391923666, + 0.00411898223683238, + -0.018758052960038185, + 0.009559125639498234, + 0.006918272469192743, + 0.000398830248741433, + 0.005235407501459122, + -0.006005450617522001, + -0.004792108666151762, + -0.005039657466113567, + 0.011844580061733723, + 0.018327554687857628, + 0.03253558650612831, + -0.024124138057231903, + 0.09419648349285126, + 0.00784275308251381, + 0.006810043938457966, + 0.007823154330253601, + 0.002608425682410598, + 0.021459128707647324, + 0.021192586049437523, + -0.003414927050471306, + 0.0006645644316449761, + 0.013659276999533176, + 0.015991151332855225, + 0.00046568206744268537, + 0.003925201948732138, + -0.017364665865898132, + 0.012491323985159397, + -0.003481419524177909, + -0.00012555846478790045, + -0.0041700671426951885, + -0.019552117213606834, + -0.018093787133693695, + -0.0007062645745463669, + 0.013808151707053185, + -0.019120505079627037, + 0.015582747757434845, + -0.0010269535705447197, + 0.02808600850403309, + -0.01584922894835472, + 0.009433677420020103, + -0.012507844716310501, + 0.002514652907848358, + -0.006543464493006468, + 0.0034529424738138914, + -0.0058752200566232204, + 0.014207580126821995, + -0.005566675215959549, + 0.022511351853609085, + 0.009395134635269642, + 0.009002791717648506, + 0.00957836676388979, + -0.002998369513079524, + -0.01183545682579279, + 0.009526987560093403, + -0.02509196661412716, + 0.001424150075763464, + -0.008470442146062851, + -0.008658753708004951, + -0.0014856524066999555, + 0.003595804562792182, + 0.009913026355206966, + 0.03514733910560608, + -0.011560295708477497, + 0.014464311301708221, + 0.003335230052471161, + -0.0035377484746277332, + 0.0012122682528570294, + 0.002744882833212614, + -0.002348436275497079, + 0.0018992648692801595, + 0.01329349260777235, + 0.01152797695249319, + -0.010666046291589737, + 0.002967448905110359, + 0.022403037175536156, + -0.014258570037782192, + 0.006296202540397644, + -0.003382578492164612, + 0.004681071732193232, + 0.01269211620092392, + -0.013418019749224186, + 0.024118080735206604, + 0.002141049364581704, + 0.013695970177650452, + -0.014666974544525146, + 8.471383625874296e-05, + 0.008869129233062267, + 0.005679548718035221, + -0.006859980057924986, + -0.018437907099723816, + -0.019533604383468628, + 0.004863227251917124, + -0.009843810461461544, + -0.0007132944301702082, + -0.006618381943553686, + 0.006613175850361586, + -0.0021118861623108387, + 0.002915020566433668, + -0.0024441841524094343, + -0.004498562775552273, + 0.009895353578031063, + -0.0034966478124260902, + -0.0019034516299143434, + 0.0010496871545910835, + 0.002352529438212514, + -0.013359484262764454, + -0.007441210560500622, + 0.01035290863364935, + 0.008809901773929596, + 0.01849825121462345, + -0.002358652651309967, + -0.024540774524211884, + -0.006699996534734964, + 0.010033085942268372, + -0.007482827641069889, + -0.009440590627491474, + 0.0017235759878531098, + 0.01300916075706482, + -0.010302072390913963, + 0.012331862933933735, + -0.025588493794202805, + -0.001889894250780344, + -0.01058171782642603, + 0.022966524586081505, + -0.02409454435110092, + 0.008197964169085026, + 0.014027290977537632, + -0.01707129366695881, + -0.004917637445032597, + 0.0012849114136770368, + 0.0016935400199145079, + -0.010164435021579266, + 0.030403155833482742, + -0.015009413473308086, + 0.009614801034331322, + 0.0228596068918705, + 0.00852630753070116, + -0.005092334467917681, + -0.0003223649982828647, + 0.010660413652658463, + 0.005345016252249479, + -0.00417322525754571, + 0.0008917750092223287, + 0.01853802427649498, + 0.0104086734354496, + 0.010649669915437698, + -0.019143013283610344, + 0.009274746291339397, + -0.004051836673170328, + 0.005412201397120953, + 0.0050203390419483185, + -0.011113909073174, + 0.006521127186715603, + -0.0016230092151090503, + -0.005572275258600712, + -0.0004667833854909986, + -0.006360787898302078, + -0.06521163135766983, + 0.013803984969854355, + 0.020700188353657722, + -0.025733202695846558, + 0.006768480874598026, + 0.002663712715730071, + -0.01762394607067108, + 0.0062409150414168835, + -0.00101203634403646, + -0.012023894116282463, + -0.010800537653267384, + -0.006321326829493046, + -0.005870738998055458, + 0.007546197157353163, + 0.01233706995844841, + -0.00857629906386137, + 0.0034892046824097633, + -0.007412835955619812, + -0.003014698624610901, + 0.0018130934331566095, + 0.0016843894263729453, + -0.005461112596094608, + 0.0010696653043851256, + -0.004417043644934893, + -0.0020121708512306213, + -0.024621006101369858, + -0.0006200268398970366, + -0.00366017734631896, + -0.026413505896925926, + 0.003007665742188692, + 0.004228868987411261, + 0.008503124117851257, + -0.0290092583745718, + -0.004218404646962881, + 0.01853971928358078, + -0.0032522554975003004, + -0.003398102940991521, + -0.001058726804330945, + -0.023875802755355835, + 0.0036501605063676834, + -0.0028869244270026684, + -0.00022971948783379048, + -0.008380739949643612, + 0.003510592272505164, + -0.0011221803724765778, + -0.003495983313769102, + 0.011453845538198948, + -0.026641815900802612, + -0.01565762236714363, + 0.0013187698787078261, + -0.0041520423255860806, + 0.0050476002506911755, + -0.0008059563697315753, + 0.0051043531857430935, + -0.006270051468163729, + -0.009048478677868843, + -0.011343052610754967, + 0.006582360249012709, + 0.00197358219884336, + 0.000623896368779242, + 0.0025301468558609486, + 0.0038473189342767, + -0.01960757188498974, + 0.016137270256876945, + -0.004412537906318903, + 0.025956401601433754, + -0.014982958324253559, + 0.011124149896204472, + 0.005654728040099144, + -0.004080959130078554, + -0.006226436700671911, + -0.00175816984847188, + 0.007523268926888704, + -0.0001840994373196736, + -0.008880851790308952, + -0.010938474908471107, + 0.005852621514350176, + -0.026303917169570923, + -0.0021108759101480246, + 0.002238474553450942, + -0.04238796606659889, + 0.0011688241502270103, + 0.0057984814047813416, + 0.0003197788610123098, + 0.0005237404839135706, + 0.02147885598242283, + -0.007722122594714165, + 0.005731001030653715, + 0.010194768197834492, + -0.001104565802961588, + -0.005208580754697323, + 0.013397376984357834, + -0.01025403756648302, + 0.009316205978393555, + 0.011368663981556892, + 0.008366423659026623, + 0.005040748976171017, + 0.04253449663519859, + -0.009134942665696144, + 0.0031156912446022034, + 0.0025828660000115633, + 0.012665344402194023, + 0.0049011860974133015, + -0.006187186576426029, + 0.007241022307425737, + 0.01039594691246748, + 0.017100077122449875, + -0.0018972170073539019, + 0.010985231958329678, + 0.00481328135356307, + -0.008977165445685387, + -0.007301026489585638, + -0.005154795479029417, + -0.003453248180449009, + 0.008762984536588192, + 0.008461672812700272, + -0.007606326136738062, + 0.0053230952471494675, + 0.007695406209677458, + 0.002570519456639886, + 0.006168986205011606, + -0.0047563244588673115, + -0.0005047245649620891, + -0.012173997238278389, + 0.0026518225204199553, + 0.019124047830700874, + -0.019483892247080803, + -0.003333434695377946, + -0.00019812793470919132, + 0.0045495107769966125, + 0.002161746146157384, + 0.018557213246822357, + -0.00011016320058843121, + -0.00430977251380682, + -0.005341797601431608, + -0.0038431789726018906, + 0.008989612571895123, + 0.007859844714403152, + 0.0009400993585586548, + 0.006495762150734663, + -0.014054243452847004, + -0.018797749653458595, + -0.021081937476992607, + 0.0017808860866352916, + 0.007666228339076042, + -0.015407913364470005, + 0.0018097752472385764, + 0.0056723738089203835, + -8.934221841627732e-05, + 0.004013478755950928, + 0.0006934363627806306, + 0.01087671797722578, + -0.0028705631848424673, + -0.005845293868333101, + 0.006882615853101015, + 0.014103736728429794, + 0.016724182292819023, + 0.008083919994533062, + -0.00436022924259305, + -0.013178163208067417, + -0.030374623835086823, + 0.02910219132900238, + 0.006176721770316362, + -0.0024290194269269705, + 0.0036215579602867365, + 0.002746084239333868, + 0.01918947696685791, + -0.0092846704646945, + -0.004311819560825825, + 0.0033712906297296286, + 0.004157987888902426, + -0.0032191595528274775, + 0.013859287835657597, + 0.009034611284732819, + -0.010065753012895584, + 0.008166640996932983, + -0.010395663790404797, + -0.02605018950998783, + 0.025771088898181915, + -0.019686363637447357, + -0.00040436835843138397, + -0.017823269590735435, + -0.007231665775179863, + 0.006114680785685778, + -0.009603329934179783, + -0.00936172716319561, + 0.016566462814807892, + 0.0014595255488529801, + 0.007997997105121613, + 0.011372742243111134, + -0.009472338482737541, + -0.002763801719993353, + 0.004324768204241991, + -0.008897294290363789, + 0.002584141679108143, + 0.019192364066839218, + 0.013207527808845043, + -0.02570343390107155, + -0.019384855404496193, + 0.009998699650168419, + 0.00027190809487365186, + -0.013078773394227028, + -0.0015994131099432707, + 0.0037624845281243324, + -0.006207972764968872, + 0.004869154188781977, + 0.007339084520936012, + 0.008122382685542107, + 0.01029219664633274, + -0.005689894314855337, + 0.008464007638394833, + 0.008439709432423115, + -0.017896553501486778, + 2.419447628199123e-05, + -0.03562510386109352, + 0.030055653303861618, + -0.01837325282394886, + 0.003131783800199628, + 0.007510042283684015, + -0.022260868921875954, + -0.008146209642291069, + 0.013169892132282257, + 5.556295218411833e-05, + -0.005484863184392452, + -0.0037016794085502625, + -0.00426896009594202, + -0.046551041305065155, + 0.01706729829311371, + -0.005556207615882158, + -0.017981138080358505, + 0.005191437434405088, + -0.004006728529930115, + 0.002068847883492708, + 0.0059663462452590466, + 0.006570585072040558, + 0.004525659140199423, + 0.01239289715886116, + -0.005507999565452337, + -0.011474519036710262, + -0.015026443637907505, + 0.003795062890276313, + -0.017582528293132782, + 0.0038663705345243216, + 0.0001850530388765037, + 0.0006305121933110058, + -0.00792090967297554, + -0.002145064529031515, + 0.008211073465645313, + 0.004689824301749468, + 0.01734725758433342, + 0.00012259164941497147, + -0.012264121323823929, + 0.0038582836277782917, + 0.004331179894506931, + 0.029192188754677773, + 0.0023948135785758495, + 0.022393327206373215, + -0.019733851775527, + -0.01764584891498089, + 0.010972936637699604, + -0.0007322780438698828, + -0.006225917488336563, + 0.003391231643036008, + 0.004941512830555439, + 0.008034459315240383, + -0.004942167084664106, + 0.0016311060171574354, + -0.0051502566784620285, + 0.020055457949638367, + -0.0076625836081802845, + 0.0039559961296617985, + -0.0019489324185997248, + -0.0015264122048392892, + -0.00025102010113187134, + 0.030071096494793892, + 0.0014069195603951812, + -0.003400487592443824, + 0.027931127697229385, + -0.005680792033672333, + -0.02096361480653286, + 0.00990940909832716, + 0.005626416765153408, + 0.017817018553614616, + -0.0185341015458107, + -0.021462175995111465, + 0.011927932500839233, + -0.04323352500796318, + 0.015084374696016312, + -0.0082826754078269, + 0.0012132321717217565, + 0.002272670390084386, + 0.006404484156519175, + -0.012899111956357956, + 0.00018781673861667514, + -0.005167678464204073, + -0.01544851902872324, + -0.02220885269343853, + 0.009590079076588154, + -0.013234024867415428, + -0.01003457885235548, + -0.006665970664471388, + 0.01099457684904337, + -0.0005706828087568283, + 0.027271149680018425, + 0.0005582598387263715, + -0.008932814002037048, + -0.009721193462610245, + -0.016154393553733826, + 0.021395159885287285, + -0.011578544974327087, + 0.0036948509514331818, + -0.01579810492694378, + -0.0006817838293500245, + -0.0035687985364347696, + -0.0067489175125956535, + -0.007881836034357548, + -0.009459414519369602, + -0.0013669767649844289, + 0.02647753618657589, + 0.01282056700438261, + -0.000346061191521585, + -0.00948292575776577, + -0.0025015792343765497, + 0.003968186676502228, + -0.025170855224132538, + 0.006086451001465321, + -0.011290878988802433, + 0.006060139741748571, + -0.006254863925278187, + -0.017550533637404442, + -0.003264151979237795, + -0.006402292754501104, + 0.015173384919762611, + -0.002938642632216215, + -0.014032183215022087, + 0.0012824642471969128, + -0.0006517472793348134, + -0.008849680423736572, + 0.008725235238671303, + -0.015045447275042534, + 0.029353907331824303, + 0.007572215516120195, + 0.0005513415671885014, + 0.003586335340514779, + -0.009717663750052452, + 0.005530866794288158, + 0.0009604893275536597, + 0.02090414986014366, + -0.00228826142847538, + 0.0033669727854430676, + -0.004609174095094204, + -0.004825551528483629, + -0.001648618490435183, + -0.014043038710951805, + -0.019001098349690437, + 0.008862941525876522, + 0.0036909328773617744, + -0.020581688731908798, + 0.008934149518609047, + 0.000904328771866858, + 0.020480232313275337, + -0.007971178740262985, + -0.000991169479675591, + -0.0027588072698563337, + -0.0017452635802328587, + -0.014891698956489563, + -0.0053033833391964436, + 0.0031525923404842615, + -0.006641833111643791, + 0.0007197607192210853, + -0.0035769601818174124, + 0.016375988721847534, + -0.009907656349241734, + -0.006621872540563345, + 0.0023364070802927017, + -0.018337637186050415, + -0.02074182592332363, + 0.0002616439014673233, + -0.005969480611383915, + -0.00037961796624585986, + 0.004332184325903654, + 0.004818750079721212, + 0.0047365049831569195, + 0.0009004155872389674, + 0.010520406067371368, + -0.0013517523184418678, + -0.011144024319946766, + -0.01737319305539131, + -0.01709943823516369, + 0.021890847012400627, + -0.016757065430283546, + -0.006551522761583328, + 0.018008098006248474, + -0.017980283126235008, + 0.013493752107024193, + -0.003287904430180788, + 0.010985570028424263, + 0.012654968537390232, + 4.797033398062922e-05, + -0.003767132991924882, + -0.006046058610081673, + -0.012665139511227608, + -0.012236879207193851, + 0.023094644770026207, + -0.01073265727609396, + -0.00020141359709668905, + 0.010293662548065186, + 0.013865575194358826, + 0.009456700645387173, + 0.004060321021825075, + 0.0030181612819433212, + 0.0027365346904844046, + -0.007048108149319887, + 0.004559932742267847, + 0.00804999377578497, + -0.025331512093544006, + 0.000432666769484058, + -0.010390703566372395, + -0.014796534553170204, + 0.008480308577418327, + 0.007915877737104893, + -0.00863981805741787, + -0.007868854328989983, + -0.006986234337091446, + 0.002922460902482271, + -0.0065925647504627705, + 0.006181047298014164, + 0.015042007900774479, + -0.02598453313112259, + -0.003352238330990076, + -0.023351984098553658, + -0.012202279642224312, + -0.008415390737354755, + 0.01271972805261612, + -0.00563310319557786, + -0.0013026125961914659, + 0.007416414562612772, + 0.002570939948782325, + 0.004442517179995775, + 0.00862665195018053, + 0.004279873333871365, + 0.00992980133742094, + -0.0020548375323414803, + -0.005224920809268951, + -0.00851904321461916, + 0.000198067442397587, + 0.004751257132738829, + 0.00128187017980963, + 0.022374119609594345, + 0.0012166445376351476, + 0.005624544806778431, + 0.010340430773794651, + 0.008632351644337177, + -0.012830170802772045, + -0.008781148120760918, + 0.008687409572303295, + -0.005088808946311474, + -0.001179116079583764, + 0.0033261997159570456, + -0.005592231173068285, + -0.005878015421330929, + -0.005034924950450659, + 0.002278663218021393, + -0.008636447601020336, + -0.0033931778743863106, + -0.015567663125693798, + -0.004756167531013489, + -0.0018047699704766273, + -0.006906330119818449, + -0.017039524391293526, + 0.005875676404684782, + 0.013952030800282955, + 0.005670982878655195, + -0.012349598109722137, + -0.011529721319675446, + 0.01175417099148035, + -0.0038019223138689995, + -0.00615532323718071, + 0.009982013143599033, + -0.005486712791025639, + -0.008569449186325073, + 0.014791956171393394, + -0.0098689841106534, + -0.002913243602961302, + 0.0031018361914902925, + 0.01355459913611412, + 0.004720522090792656, + 0.012704200111329556, + 0.0041937148198485374, + -0.00819467194378376, + -0.015101510100066662, + -0.008588115684688091, + 0.010256914421916008, + 0.01984632946550846, + 0.0141918258741498, + 0.015016134828329086, + -0.00488917576149106, + 0.003913600463420153, + -0.023979632183909416, + -0.00360578834079206, + -0.0017171554500237107, + -0.00875266082584858, + 0.0027756390627473593, + 0.010924920439720154, + 0.009896839037537575, + -0.0112091563642025, + -0.015003235079348087, + -0.01574520766735077, + -0.021434664726257324, + -0.01936684176325798, + 0.003828621469438076, + 0.012982361949980259, + -0.0015349939931184053, + -0.004476102534681559, + 0.0005574941169470549, + -0.014022904448211193, + 0.0017354583833366632, + -0.0030942580197006464, + -0.01942126452922821, + -0.011153336614370346, + -0.010493851266801357, + 0.005959737580269575, + 0.011128625832498074, + 0.022724948823451996, + -0.004563907627016306, + -0.010266604833304882, + 0.004934437107294798, + 0.00029724318301305175, + 0.007470575161278248, + -0.008485225960612297, + 0.0038676925469189882, + -0.01241538766771555, + 0.007186269853264093, + 0.010036325082182884, + 0.011986239813268185, + 0.004603438079357147, + 0.0065055419690907, + 0.0055349282920360565, + 0.00909934937953949, + 0.005764412693679333, + -0.019464734941720963, + -0.0014499046374112368, + 0.011134490370750427, + 0.009735320694744587, + -0.0006840864662081003, + -0.008001242764294147, + 0.011286423541605473, + -0.0006198275950737298, + -0.01107734814286232, + -0.0009634813177399337, + 0.018721526488661766, + 0.03776148706674576, + -0.006425670813769102, + -0.008644254878163338, + -0.011880461126565933, + -0.0006096675642766058, + -0.00036842114059254527, + 0.01279300358146429, + 0.0023215103428810835, + -0.0038842817302793264, + 0.003084910800680518, + 0.00019114396127406508, + -0.0017674847040325403, + 0.002788394456729293, + 0.020277447998523712, + -0.00917561911046505, + -0.012165450491011143, + -0.020185939967632294, + 0.017176402732729912, + -0.003840370336547494, + 0.01079779863357544, + 0.024341003969311714, + -0.002670574001967907, + -1.8578783056000248e-05, + -0.00936696957796812, + 0.013946481980383396, + 0.010703619569540024, + -0.0026263187173753977, + -0.000662063539493829, + 0.004367002286016941, + -0.01968478038907051, + -0.00180904904846102, + -0.004615312907844782, + 0.023463057354092598, + -0.03899577260017395, + -0.0010363352485001087, + 0.010999426245689392, + -2.066124761768151e-05, + -0.006773978006094694, + 0.012318107299506664, + -0.0010928100673481822, + -0.014518826268613338, + 0.016396235674619675, + 0.004745929967612028, + -0.0016339325811713934, + -0.016787085682153702, + 0.009546708315610886, + 0.01181979849934578, + -0.003462506690993905, + 0.0037639730144292116, + -0.01668447256088257, + -0.011659778654575348, + 0.0107713108882308, + 0.006632842589169741, + -0.002777978079393506, + -0.009523460641503334, + -0.006238711066544056, + -0.007771836593747139, + -0.0068810684606432915, + -0.0049431598745286465, + -0.029644908383488655, + -0.005203913897275925, + -0.0017555340891703963, + -0.010490254499018192, + -0.007538056466728449, + 0.0016677824314683676, + -0.03569341450929642, + 0.001691670622676611, + 0.0009529304807074368, + -0.016405964270234108, + -0.0036063978914171457, + 0.004362497013062239, + -0.013015450909733772, + -0.0040048048831522465, + -0.00023759418400004506, + -0.007089489139616489, + 0.01979583501815796, + -0.010125567205250263, + -0.004335034638643265, + -0.010266846045851707, + 0.01851661317050457, + -0.00780146662145853, + 0.02355344220995903, + 0.0562857948243618, + 0.009555508382618427, + -0.012328971177339554, + 0.00986021663993597, + -0.0059761954471468925, + 0.014835430309176445, + 0.003877253271639347, + -0.006575784645974636, + -0.0089896060526371, + 0.008426308631896973, + 0.011076615191996098, + -0.011114873923361301, + 0.021267535164952278, + -0.010643813759088516, + -0.010187399573624134, + 0.0025815351400524378, + -0.014870703220367432, + -0.0016690444899722934, + -0.0032286711502820253, + 0.0005654962151311338, + 0.00290598813444376, + -0.014261995442211628, + -0.005802573636174202, + -0.00803935993462801, + -0.011649131774902344, + -0.00889140646904707, + 0.009392015635967255, + 0.04643872007727623, + -0.0029626458417624235, + 0.003723131027072668, + -0.03269962966442108, + 0.014297924935817719, + -0.00014627586642745882, + -0.014955076389014721, + -0.015898125246167183, + 0.022888844832777977, + 0.0017401494551450014, + -0.0032081895042210817, + -0.0030779754742980003, + -0.00428834417834878, + 0.0007742949528619647, + -0.026517150923609734, + -0.0028017892036587, + -0.01738392375409603, + 0.005109143443405628, + -0.033399637788534164, + 0.0007380531751550734, + -0.03252330422401428, + 0.0022094789892435074, + 0.020075291395187378, + 0.02588861808180809, + -0.0027292929589748383, + -0.0012816216330975294, + 0.0016269661718979478, + -0.003977701533585787, + -0.003309317398816347, + -0.001579959993250668, + 0.007544542662799358, + -0.03385855630040169, + -0.0020456050988286734, + -0.0005543525330722332, + 0.016149070113897324, + -0.010599522851407528, + 0.0318303219974041, + -0.019405735656619072, + 0.005796340759843588, + -0.003476780606433749, + -0.005607598926872015, + 0.004279031418263912, + 0.010488190688192844, + 0.008697869256138802, + 0.2679170072078705, + 0.008307794108986855, + 0.020693611353635788, + -0.00883204210549593, + -0.002266994211822748, + -0.022095775231719017, + -0.005828190129250288, + 0.03176690638065338, + -0.006215913686901331, + -0.00650668004527688, + 0.005952986888587475, + -0.00157152209430933, + 0.014870313927531242, + -0.0008663669577799737, + 0.005402773153036833, + -0.015316061675548553, + 0.020282059907913208, + -0.0010279942071065307, + 0.0007020984194241464, + -0.0054433634504675865, + -0.01300949975848198, + -0.015241889283061028, + -0.01124903280287981, + -0.02998797968029976, + -0.005584158003330231, + 0.0008674377459101379, + 0.001955479383468628, + 0.003958566579967737, + 0.00968319270759821, + 0.009951595216989517, + 0.009534069336950779, + -0.009884024038910866, + -0.004828618373721838, + 0.005333314184099436, + -0.00018487017950974405, + -0.001633965177461505, + -0.0012667460832744837, + 0.009569073095917702, + -0.010656432248651981, + 0.018160616979002953, + -0.010658178478479385, + 0.002269498072564602, + -0.027652215212583542, + -0.030617794021964073, + -0.010047589428722858, + 0.016848385334014893, + -0.0037652160972356796, + 0.005410235840827227, + -0.003563682083040476, + -0.00639952952042222, + 0.021570567041635513, + -0.003254842944443226, + 0.01585426926612854, + -0.00301368092186749, + 0.004706467967480421, + -0.0008818006608635187, + -0.020139863714575768, + 0.0031910690013319254, + -0.016653159633278847, + -0.005780251231044531, + -0.009179419837892056, + -0.011508213356137276, + 0.012705609202384949, + -0.02292933501303196, + -0.005489327944815159, + -0.022794002667069435, + 0.005610771477222443, + -0.002225808799266815, + -0.0006881773588247597, + -0.01205481868237257, + -0.008267613127827644, + 0.006224557291716337, + 0.015054182149469852, + 0.008244335651397705, + 0.004207526799291372, + -0.006651400588452816, + 3.167051181662828e-05, + 0.004081092309206724, + -0.02497626468539238, + -0.009055184200406075, + -0.015811186283826828, + 0.01133834756910801, + -0.04965440183877945, + 0.0016493377042934299, + 0.007219241000711918, + 0.005984673276543617, + -0.023806165903806686, + 0.0018534252885729074, + 0.00037056690780445933, + -0.0059931157156825066, + -0.006225987803190947, + 0.008060894906520844, + -0.025414427742362022, + -0.0070020053535699844, + -0.00803469866514206, + 0.003771234070882201, + 0.013158819638192654, + 0.0007688248297199607, + 0.015536821447312832, + -0.001614185282960534, + -0.010772469453513622, + -0.002762915100902319, + 0.007044712081551552, + -0.026791324838995934, + 0.00903263222426176, + 0.018930941820144653, + 0.0020549593027681112, + -0.0007889385451562703, + 0.005202022381126881, + 0.015290145762264729, + 0.011010216549038887, + -0.007775604259222746, + -0.003022590419277549, + -0.007647842168807983, + -0.013737230561673641, + -0.010554107837378979, + 0.00538259744644165, + -0.0036205165088176727, + 0.00888048391789198, + 0.007779541425406933, + -0.013326011598110199, + -0.005104029085487127, + 0.024760674685239792, + -0.0012559157330542803, + 0.009818809106945992, + -0.007335759699344635, + -0.00618090620264411, + 0.007599059026688337, + 0.015210790559649467, + -0.010137985460460186, + 0.0020847574342042208, + -0.009928441606462002, + 0.0008249259553849697, + 0.011866019107401371, + 0.013122554868459702, + 0.0188920721411705, + 0.0031075451988726854, + 0.006847143638879061, + -1.6333417079295032e-05, + -0.014839958399534225, + 0.004102403298020363, + -0.024013806134462357, + -0.001918912515975535, + 1.8441982319927774e-05, + 0.009928307496011257, + 0.0015505419578403234, + -0.017067672684788704, + 0.0031411973759531975, + 0.005859597120434046, + -0.006710209418088198, + -0.0035806037485599518, + 0.029017994180321693, + -0.00829679798334837, + -0.00392400985583663, + 0.000978469499386847, + 0.01708621345460415, + 0.004903239663690329, + 0.001964336493983865, + 0.010674224235117435, + -0.0216356348246336, + 0.02303059957921505, + 0.010868518613278866, + 0.024103395640850067, + -0.011632455512881279, + -0.010543867945671082, + -0.005505627952516079, + -0.00820097140967846, + -0.011782150715589523, + 0.0019360216101631522, + 0.01392482127994299, + -0.006197543814778328, + -0.018389739096164703, + -0.008885410614311695, + -0.004715363495051861, + -0.004887197632342577, + -0.006870162673294544, + -0.01647396944463253, + 0.005546169355511665, + 0.000247702409978956, + -0.014866137877106667, + 0.008522738702595234, + 0.006925365421921015, + -0.0073957727290689945, + -0.005396448541432619, + -0.002818278968334198, + 0.009581602178514004, + -0.009360221214592457, + 0.02147810161113739, + 0.010531209409236908, + 0.01169558521360159, + 0.003911388572305441, + 0.0011589020723477006, + 0.002216249704360962, + -0.0068608722649514675, + 0.009435482323169708, + -0.00010811346146510914, + -0.005844492465257645, + -0.009484974667429924, + 0.004568730015307665, + -0.005565066821873188, + -0.0034145640674978495, + 0.0046694315969944, + -0.007554448209702969, + 0.022036969661712646, + -0.014551779255270958, + 0.0064384168945252895, + 0.009491141885519028, + -0.004413131158798933, + 0.009857069700956345, + 0.0060116383247077465, + -0.012539742514491081, + -0.0030798062216490507, + -0.010144282132387161, + 0.0025126992259174585, + -0.002182580763474107, + 0.006667283829301596, + -0.003450447926297784, + -0.01938653364777565, + 0.0178108811378479, + 0.017462439835071564, + -0.0025745066814124584, + -0.0009846205357462168, + 0.008256873115897179, + 0.004338525235652924, + 0.01721695065498352, + -0.009612376801669598, + -0.003099602647125721, + 0.010149163194000721, + -0.009015790186822414, + 0.0037793810479342937, + 0.013678111135959625, + -0.012757561169564724, + -0.0013949282001703978, + -0.013283493928611279, + -0.02742105908691883, + 0.007543123792856932, + -0.003307182574644685, + -0.016250768676400185, + 0.0036483951844274998, + 0.004553662147372961, + -0.0014519857941195369, + -0.0017102655256167054, + -0.026336971670389175, + 0.004707715008407831, + 0.003782432759180665, + -0.014776120893657207, + -0.004252580925822258, + -0.015000148676335812, + 0.009945501573383808, + -0.014769664965569973, + -0.006985778920352459, + 0.01153549924492836, + -0.02021407149732113, + -0.005325223319232464, + 0.005273235961794853, + -0.008018238469958305, + 0.0034218975342810154, + 0.03013468347489834, + -0.02869495190680027, + 0.01701859012246132, + -0.00975201278924942, + 0.012824757024645805, + -0.005977399181574583, + 0.00470401905477047, + -0.014845112338662148, + 0.017105527222156525, + -0.011762659065425396, + 0.0014770228881388903, + -0.009066810831427574, + 0.003456452628597617, + -0.005804555490612984, + 0.00578216090798378, + -0.0030347108840942383, + 0.01892152801156044, + 0.01433216780424118, + 0.01058928295969963, + -0.0017540343105793, + 0.010528407990932465, + 0.011571298353374004, + -0.014689075760543346, + -0.024586426094174385, + 0.0007097374182194471, + -0.003020643489435315, + -0.003339249175041914, + -0.02169901877641678, + 0.018836982548236847, + 0.021144473925232887, + 0.008337246254086494, + -0.0038327276706695557, + -0.007788600400090218, + -0.004698430188000202, + -0.01618455909192562, + -0.008163347840309143, + -0.009043593890964985, + -0.017791546881198883, + -0.006097813602536917, + 0.0009607592946849763, + 0.007743692025542259, + 0.001121164532378316, + -0.00793658010661602, + -0.007357718888670206, + -0.0018030926585197449, + 0.007045531179755926, + 0.017621496692299843, + 0.0017839818028733134, + -0.024397194385528564, + 0.014959811232984066, + -0.015636926516890526, + -0.0021499788854271173, + 0.004903791472315788, + -0.009593576192855835, + -0.003719424130395055, + -0.013464128598570824, + -0.002894630655646324, + -0.029507778584957123, + 0.005577595438808203, + 0.0036625389475375414, + 0.008329158648848534, + -0.011772687546908855, + 0.033508580178022385, + -0.025805234909057617, + 0.0001731410011416301, + -0.0005804449319839478, + -0.006947607267647982, + -0.021984878927469254, + -0.005334996618330479, + 7.356137939495966e-05, + -0.015847736969590187, + 0.008356253616511822, + -0.020719902589917183, + 0.007070576772093773, + 0.00028047061641700566, + -0.0564708337187767, + -0.02367597259581089, + 0.003494116710498929, + 0.025981497019529343, + -0.015183161944150925, + 0.003685880219563842, + -0.024206049740314484, + -0.012599831447005272, + -0.009037772193551064, + -0.005154748447239399, + -0.012682123109698296, + 0.003588262014091015, + 0.015055976808071136, + 0.0178079754114151, + 0.0037514446303248405, + 0.007594026159495115, + 0.010280141606926918, + -0.009879962541162968, + 0.0028721150010824203, + 0.007569745182991028, + 0.005202151369303465, + -0.0018709310097619891, + 0.00419124960899353, + -0.0036041061393916607, + -0.01839900203049183, + 0.0018843617290258408, + -0.012548577971756458, + -0.011527222581207752, + -0.005040860269218683, + -0.01644637994468212, + 0.009280736558139324, + -0.016310660168528557, + -0.006741339806467295, + -0.03551970049738884, + 0.00025679063401184976, + 0.0058264839462935925, + 0.004448325838893652, + -0.017440227791666985, + 0.004613253753632307, + -0.004441750701516867, + -0.008882475085556507, + 0.01695217937231064, + 0.0030386780854314566, + 0.0025293396320194006, + 0.018740041181445122, + 0.020846057683229446, + 0.0236477293074131, + -0.0010749786160886288, + -0.026483692228794098, + 0.018144993111491203, + -0.011051047593355179, + 0.006170600652694702, + -0.011574085801839828, + 0.0025215791538357735, + 0.012165915220975876, + -0.007871802896261215, + -0.01785350777208805, + -0.012159494683146477, + -0.0015652135480195284, + -0.02099566161632538, + -0.002337066223844886, + 0.0039493609219789505, + -0.013786450028419495, + -0.022217852994799614, + 0.001980556407943368, + -0.005587916821241379, + 0.011111587285995483, + 0.027166156098246574, + -0.02131151407957077, + 0.023005979135632515, + 0.0004721004224848002, + 0.00830291211605072, + 0.001293988898396492, + 0.004751171451061964, + -0.000853233621455729, + 0.014778858982026577, + -0.007050275336951017, + 0.010128872469067574, + -0.03116949275135994, + 0.010647988878190517, + -0.0018123008776456118, + 0.008733909577131271, + -0.00913831777870655, + 0.010719848796725273, + -0.021795209497213364, + 0.004138647112995386, + 0.01216869056224823, + -0.008573049679398537, + -0.0007210189360193908, + -0.015323977917432785, + -0.004111263435333967, + 0.0029795183800160885, + -0.0025755688548088074, + -0.011472733691334724, + -0.006015031132847071, + -0.00019165298726875335, + -0.012242886237800121, + -0.012272058986127377, + -0.007276785559952259, + 0.003260507946833968, + -0.008562695235013962, + 0.009507151320576668, + -0.0004622800915967673, + 0.023851387202739716, + 0.0038357132580131292, + 0.0017608630005270243, + 0.46415209770202637, + -0.00742348562926054, + 0.020831074565649033, + 0.051195330917835236, + 0.013274501077830791, + 0.006478538271039724, + 0.012862800620496273, + 0.022744450718164444, + -0.02958502620458603, + -0.007326299324631691, + 0.005977473687380552, + 0.011014205403625965, + -0.007196974009275436, + 0.0004319438012316823, + 0.014955238439142704, + 0.01901940256357193, + 0.007841886021196842, + -0.033107731491327286, + 0.0045785787515342236, + -0.012473898939788342, + -0.012387878261506557, + -0.008572113700211048, + -0.013298923149704933, + 0.033695269376039505, + -0.008900700137019157, + 0.006686042062938213, + 0.034512318670749664, + -0.0027432118076831102, + -0.017908329144120216, + -0.006989446934312582, + -0.0036521072033792734, + 0.006154600065201521, + -0.010591095313429832, + 0.01670791022479534, + -0.022280840203166008, + 0.005883322097361088, + -0.025482194498181343, + -0.025192255154252052, + -0.005673971958458424, + 0.011649446561932564, + 0.00599539652466774, + -0.0005500235129147768, + 0.01858454756438732, + 0.013299076817929745, + 0.015105468221008778, + -0.0130508067086339, + 0.002826167969033122, + 0.014056027866899967, + -0.0051512992940843105, + -0.009698791429400444, + 0.01305568590760231, + -0.008209086954593658, + 0.0012908512726426125, + -0.009783931076526642, + -0.00745000084862113, + -0.013105366379022598, + 0.002809473080560565, + 0.00800938718020916, + -0.0006408384651876986, + 0.006303885485976934, + -0.013056724332273006, + -0.0006989745888859034, + 0.0042458935640752316, + -0.01379917562007904, + -0.02120285853743553, + 0.00563567690551281, + -0.0006721548270434141, + 0.012997018173336983, + 0.005448614712804556, + -0.012226380407810211, + -0.0032711236272007227, + 0.007029606029391289, + -0.0001549369189888239, + 0.010253849439322948, + 0.00820794329047203, + -0.0052025094628334045, + -0.01477661170065403, + 0.016457481309771538, + -0.03089294210076332, + -0.0058909025974571705, + 0.02404109202325344, + 0.014936679974198341, + -0.0024944727774709463, + -0.002034081146121025, + -0.0030508015770465136, + -0.007856330834329128, + 0.011106425896286964, + -0.03411798179149628, + 0.003116864711046219, + 0.006122431252151728, + 0.013873718678951263, + 0.017335765063762665, + 0.02655079774558544, + -0.0010576482163742185, + 4.528050703811459e-05, + -0.013977601192891598, + -0.007946372032165527, + 0.004376011900603771, + -0.0024280650541186333, + -0.021501753479242325, + -0.020471660420298576, + 0.022409534081816673, + -0.0008165923645719886, + -0.004149659536778927, + 0.002127074869349599, + 0.0258940402418375, + -0.005609059706330299, + 0.0010726390173658729, + 0.02135705016553402, + 0.002688881941139698, + -0.022040793672204018, + 0.015715939924120903, + 0.009643473662436008, + -0.0167052261531353, + -0.016017446294426918, + 0.007576316595077515, + -0.002690217923372984, + 0.0068645356222987175, + -0.01986893266439438, + 0.016468046233057976, + 0.016902271658182144, + -0.018296491354703903, + 0.004992013797163963, + -0.008267417550086975, + 0.004131760448217392, + -0.003077141707763076, + -0.009771492332220078, + -0.008353076875209808, + 0.011402145959436893, + 0.003336097812280059, + -0.00010380159801570699, + 0.0020460588857531548, + 0.010740864090621471, + 0.017831090837717056, + 0.009597061201930046, + 0.014546534046530724, + 0.009049969725310802, + 0.0030349534936249256, + 0.0015181007329374552, + 0.005769531708210707, + 0.02556903101503849, + -0.029980896040797234, + 0.0034194716718047857, + 0.015154852531850338, + -0.013835177756845951, + -0.0014440631493926048, + -0.002136299852281809, + -0.003825199091807008, + 0.018153073266148567, + 0.001012804452329874, + -0.0030031385831534863, + 0.0020894177723675966, + 0.0034183370880782604, + -0.0022444885689765215, + -0.0017575895180925727, + -0.025221122428774834, + 0.005477619357407093, + -0.005418249871581793, + 0.008476772345602512, + -0.010370283387601376, + -0.0031871891114860773, + 0.01039932295680046, + 0.01014378760010004, + 0.008701826445758343, + -0.0010989325819537044, + 0.00930813979357481, + 0.0029559084214270115, + 0.018574828281998634, + 0.014059528708457947, + 0.001631865743547678, + 0.012478397227823734, + -0.008062663488090038, + 0.003921327646821737, + -0.005260067526251078, + 0.003690734738484025, + 0.0006749904714524746, + 0.007523532025516033, + -0.01367447804659605, + 0.02005644515156746, + -0.009834034368395805, + 0.016645466908812523, + 0.014622983522713184, + 0.015398313291370869, + -0.0007152982871048152, + -0.023793917149305344, + 0.01650727353990078, + -0.004371343180537224, + -0.007578399498015642, + -0.011308188550174236, + -0.0050136493518948555, + 0.00629815086722374, + -0.006544639356434345, + -0.008339966647326946, + 0.005724481772631407, + -0.00955722201615572, + -0.0045608715154230595, + 0.01229330524802208, + 0.00163682468701154, + 0.002181260148063302, + 0.0035156267695128918, + 0.006049745716154575, + -0.017645981162786484, + 0.008178457617759705, + 0.009825763292610645, + 0.011463979259133339, + -0.008708803914487362, + -0.0027839639224112034, + 0.020207716152071953, + -0.011088430881500244, + -0.022468624636530876, + -0.006698912940919399, + -0.018910538405179977, + 0.0027136029675602913, + -0.013327579945325851, + 0.020030763000249863, + -0.009962375275790691, + 0.017082303762435913, + -0.004002722911536694, + -0.0034397633280605078, + -0.0026316531002521515, + 0.0014286251971498132, + 0.01293168868869543, + 0.0020431720186024904, + -0.007686276454478502, + -0.0007472007418982685, + 0.012922676280140877, + 0.00519908033311367, + -0.0031271756161004305, + -0.0072029829025268555, + 0.008076749742031097, + -0.0030406108126044273, + 0.004535221494734287, + 0.010210488922894001, + 0.015284751541912556, + 0.006463753990828991, + -0.0027008738834410906, + 0.010846417397260666, + -0.0102192722260952, + 0.011350609362125397, + 0.013415960595011711, + -0.00597412372007966, + 0.016642101109027863, + 0.005443478003144264, + 0.019042814150452614, + -0.011597566306591034, + -0.0036000204272568226, + -0.014473720453679562, + 0.017173243686556816, + -0.00037201421218924224, + -0.005370096769183874, + 0.01749163493514061, + -0.013435844331979752, + 0.00963797327131033, + 0.0018676189938560128, + 0.0037005802150815725, + -0.011961807496845722, + 0.004763273522257805, + 0.0019631211180239916, + 0.011247840709984303, + 0.010637606494128704, + 0.019819878041744232, + 0.012358122505247593, + 0.02164275199174881, + 0.02904891036450863, + -0.01763719879090786, + -0.01655798777937889, + 0.007114470936357975, + 0.009948168881237507, + 0.00929356925189495, + -0.0021018190309405327, + -6.90024580762838e-06, + 0.00381156406365335, + 0.02415502443909645, + -0.032341353595256805, + 0.007807116489857435, + -0.010431740432977676, + -0.001815275871194899, + -0.003728940850123763, + -0.018086569383740425, + -0.016879014670848846, + 0.0010731376241892576, + -0.006114262621849775, + 0.00791974551975727, + -0.00352293299511075, + 0.014608857221901417, + 0.002509470097720623, + 0.03180460259318352, + -0.0043393527157604694, + -0.019937725737690926, + -0.007486423011869192, + 0.007440207060426474, + 0.002871526638045907, + -0.010684606619179249, + 0.011415131390094757, + -0.011476868763566017, + -0.01685728318989277, + 0.004122135695070028, + -0.0021401350386440754, + -0.01914498209953308, + 0.00930242519825697, + 0.028441432863473892, + -0.00035109929740428925, + 0.019492389634251595, + 0.022672902792692184, + -0.009630432352423668, + 0.0013912518043071032, + 0.0020076739601790905, + 0.0027683901134878397, + -0.0029582318384200335, + -0.007917830720543861, + -0.005946967750787735, + -0.0023404767271131277, + -0.004061434883624315, + 0.008643430657684803, + 0.001106512383557856, + 0.003101494163274765, + -0.010097118094563484, + 0.00873491633683443, + -0.01650502346456051, + 0.021530749276280403, + -0.015332600101828575, + -0.011558600701391697, + 0.009517605416476727, + -0.0024628660175949335, + 0.014636656269431114, + 0.00560590298846364, + 0.017898516729474068, + 0.014356234110891819, + -0.0015510128578171134, + -0.002013611840084195, + 0.016019349917769432, + -0.02585477940738201, + 0.004314556252211332, + -0.004908927716314793, + -0.014606070704758167, + -0.009664289653301239, + -0.006607752293348312, + 0.014600955881178379, + 0.011188821867108345, + 3.417118568904698e-05, + 0.009836414828896523, + -0.00558321550488472, + -1.1013537459803047e-06, + -0.007046768441796303, + -0.005117170047014952, + -0.008564284071326256, + 0.02329639345407486, + -0.002508108736947179, + -0.0009773635538294911, + 0.008051811717450619, + 0.0029213582165539265, + -0.0011003896361216903, + 0.008349904790520668, + -0.0223948173224926, + 0.023472318425774574, + 0.003165893256664276, + -0.010304681956768036, + -0.0048437886871397495, + -0.01428280770778656, + -0.019908463582396507, + -0.0199260376393795, + -0.028687361627817154, + -0.017784811556339264, + -0.005053982604295015, + -0.017340635880827904, + -0.01858486607670784, + 0.007269871421158314, + -0.009584256447851658, + -0.021589936688542366, + 0.001854176982305944, + 0.002913577016443014, + 0.020422963425517082, + -0.008350657299160957, + -0.0017393659800291061, + -0.011033008806407452, + 0.030306827276945114, + -0.008446776308119297, + 0.004768436308950186, + -0.005076209548860788, + -0.009429682977497578, + -0.009694881737232208, + -0.007423915434628725, + -0.012424122542142868, + 0.004262537229806185, + 0.007677361369132996, + 0.012528806924819946, + -0.007663222029805183, + 0.0062042283825576305, + -0.009097813628613949, + 0.004904703237116337, + -0.007764688692986965, + 0.019273249432444572, + 0.01597546599805355, + 0.002178712049499154, + 0.00451158219948411, + 0.005462903995066881, + 0.005784363020211458, + -0.024650579318404198, + -0.010230151005089283, + -0.01426639687269926, + 0.0021655720192939043, + 0.004773824010044336, + -0.0034819934517145157, + 0.018140407279133797, + 0.0018443141598254442, + -0.0038732292596250772, + 0.020838523283600807, + -0.015071362257003784, + 0.017144937068223953, + 0.014434738084673882, + -0.0028351303189992905, + 0.014275350607931614, + 0.0052700350061059, + -0.005121454130858183, + -0.010530870407819748, + 0.002085129264742136, + -0.009026303887367249, + -0.0010662327986210585, + 0.0022673183120787144, + 0.00626342324540019, + 0.0037622028030455112, + 0.009227113798260689, + 0.00435410114005208, + -0.01400300394743681, + 0.006174001377075911, + 0.0009762462577782571, + 0.01335674524307251, + -0.0158176738768816, + -0.0026850509457290173, + 0.011315514333546162, + -0.007606091909110546, + 0.012346831150352955, + -0.0031436218414455652, + 0.00885801576077938, + -0.00527596939355135, + -0.019597288221120834, + -0.006881760898977518, + -0.006876814179122448, + -0.007692136336117983, + 0.00021565785573329777, + 0.004751837812364101, + -0.01052966620773077, + -0.016891270875930786, + 0.006117979064583778, + 0.0021259428467601538, + -0.011685614474117756, + 0.07706406712532043, + 0.0034632040187716484, + -0.0023165508173406124, + -0.0031403156463056803, + 0.013850405812263489, + 0.002435568254441023, + -0.001241078833118081, + 0.014969352632761002, + -0.0008311151759698987, + -0.0039090183563530445, + 0.017848510295152664, + 0.0031164754182100296, + -0.00963086448609829, + 0.002394807757809758, + -0.0051065003499388695, + -0.018900366500020027, + 0.0051506939344108105, + 0.007694517262279987, + 0.015224144794046879, + 0.005688655190169811, + -0.003918725531548262, + -0.004806919023394585, + 0.009079747833311558, + 0.0033777994103729725, + -0.0016418083105236292, + -0.02553064003586769, + -0.007489596493542194, + -0.0011746941599994898, + -0.0005785599933005869, + 0.00546989357098937, + -0.0001447773538529873, + 0.009822550229728222, + -0.00812157616019249, + -0.008176316507160664, + 0.007918455637991428, + 0.019143471494317055, + 0.0016008082311600447, + -0.0029678421560674906, + 0.00023435625189449638, + 0.0023474092595279217, + -0.0020960764959454536, + 0.025288037955760956, + 0.0035101212561130524, + 0.0028218617662787437, + 0.01391802728176117, + 0.00980774313211441, + -0.0059562255628407, + 0.050505317747592926, + -0.01431992556899786, + -0.00938399787992239, + 0.008654356934130192, + 0.008804391138255596, + 0.005757695063948631, + -0.008545422926545143, + 0.0031205667182803154, + 0.0043205032125115395, + -0.0015661960933357477, + 4.585504939313978e-05, + 0.01641531102359295, + -0.00917571596801281, + -0.004717016126960516, + -0.01499882061034441, + -0.010982322506606579, + 0.004670310765504837, + -0.01247633807361126, + -0.00945668201893568, + 0.009477460756897926, + -0.006197016686201096, + -0.006298617459833622, + -0.010659142397344112, + -0.007365345489233732, + -0.011109927669167519, + 0.019941603764891624, + 0.013521339744329453, + 0.015922946855425835, + 0.002334875287488103, + -0.0010917049366980791, + 0.0032935538329184055, + 0.00130722566973418, + 0.007046498823910952, + 0.011348443105816841, + -0.009724903851747513, + -0.003558842232450843, + 0.008580300025641918, + -0.009915322996675968, + 0.0016111903823912144, + -0.0016585167031735182, + -0.009645991027355194, + 0.006077000871300697, + 0.006669517606496811, + 0.009868094697594643, + -0.0032337396405637264, + 0.013249902054667473, + -0.03101581335067749, + 0.006883295718580484, + -0.012111564166843891, + 0.014842472970485687, + 0.007060489151626825, + 0.00885389931499958, + -0.001562445773743093, + 0.005625199992209673, + -0.009755992330610752, + -0.0010744754690676928, + -0.011746983043849468, + -0.009667139500379562, + 0.0012423463631421328, + -0.006931937299668789, + -0.0011684709461405873, + -0.00608340697363019, + 0.0076860543340444565, + 0.0024557907599955797, + -0.0019479031907394528, + 0.006153170485049486, + -0.0014314400032162666, + 0.004185468889772892, + 0.02548256143927574, + 0.01854277402162552, + 0.01040889322757721, + 0.0014340290799736977, + 0.0009757898515090346, + 0.022356964647769928, + -0.001260989811271429, + -0.011440683156251907, + 0.014755022712051868, + 0.004794349428266287, + -0.006134471390396357, + 0.015731975436210632, + 0.004128511995077133, + -0.0063634952530264854, + 0.0017104526050388813, + 0.012166074477136135, + -0.014447548426687717, + -0.0030957325361669064, + -0.01992366649210453, + 0.00828526634722948, + -0.02133401669561863, + 0.006672404706478119, + 0.0018295036861672997, + -0.0018775919452309608, + 0.0037902374751865864, + -0.005794180557131767, + 0.011886227875947952, + -0.013540323823690414, + 0.0031795341055840254, + 0.00032387665123678744, + 0.0027331383898854256, + -0.006756230723112822, + -0.01868603192269802, + -0.0034039004240185022, + 0.01652654819190502, + 0.0005337901529856026, + 0.009058496914803982, + 0.005259459372609854, + 0.0034708071034401655, + -0.0054551116190850735, + 0.003869834588840604, + 0.0096071045845747, + 0.006063787266612053, + -0.005882078316062689, + 0.02037622220814228, + -0.009407547302544117, + 0.012926004827022552, + -0.012703278101980686, + -0.005109250545501709, + -0.005799994338303804, + -0.00518537312746048, + -0.007816383615136147, + -0.002859205473214388, + 0.009283975698053837, + 0.016948791220784187, + -0.010358992032706738, + 0.006390545517206192, + 0.02008857950568199, + -0.006475465372204781, + -0.0004228832258377224, + 0.03131569176912308, + -0.000951180758420378, + -0.010395398363471031, + -0.0100547531619668, + 0.011292730458080769, + -0.010699067264795303, + 0.027784449979662895, + 0.00987581629306078, + 0.011074716225266457, + 0.00038088945439085364, + 0.022785784676671028, + 0.0027842659037560225, + 0.020434953272342682, + 0.004099104553461075, + -0.008670102804899216, + 0.028123246505856514, + -0.015761954709887505, + -0.021050380542874336, + -0.020451370626688004, + 0.0009302587131969631, + 0.00998061615973711, + 0.012086719274520874, + 0.01664844900369644, + -0.020038817077875137, + 0.01421777717769146, + 0.00021652094437740743, + 0.010264567099511623, + -0.0034835385158658028, + 0.016741402447223663, + -0.010130035690963268, + 0.003049630904570222, + -0.012220138683915138, + 0.00013270760246086866, + 0.004279070068150759, + -0.015367496758699417, + 0.008293623104691505, + 0.005365592427551746, + -0.019612735137343407, + -0.006655214354395866, + 0.001980576431378722, + -0.010792877525091171, + -0.016357554122805595, + 0.009490691125392914, + -0.011268996633589268, + -0.023496301844716072, + 0.0009087746730074286, + 0.0029614348895847797, + -0.010512038134038448, + -0.006987830623984337, + -0.001534099574200809, + -0.0014586996985599399, + 0.012229443527758121, + -0.020787622779607773, + -0.020613111555576324, + 0.01867597922682762, + 0.012698845937848091, + -0.02215549908578396, + 0.00236744387075305, + -0.028834020718932152, + -0.015218080021440983, + 0.01395450346171856, + 0.0012794302310794592, + 0.015343690291047096, + 0.004490998573601246, + -0.005375722423195839, + -0.011534868739545345, + -0.008538474328815937, + 0.0853697806596756, + -0.009149109944701195, + 0.0004241733404342085, + 0.0017934307688847184, + -0.0074204313568770885, + -0.009210972115397453, + -0.0011164579773321748, + 0.006251745391637087, + -0.012275880202651024, + 0.04804675281047821, + -0.005877230782061815, + -0.012342214584350586, + 0.04131446033716202, + -0.015841765329241753, + 0.00763093912974, + 0.005945587530732155, + -0.009094730019569397, + -0.0025522068608552217, + -0.009320636279881, + -0.01837262697517872, + 0.016271507367491722, + -0.0010713308583945036, + -0.0003035962872672826, + -0.007067990954965353, + 0.0024501055013388395, + 0.0011284874053671956, + -0.021383199840784073, + -0.014151833020150661, + -0.018098151311278343, + 0.0031694418285042048, + 0.000484195799799636, + 0.0091554531827569, + -0.009496424347162247, + -0.008670516312122345, + 0.00399377103894949, + -0.020032040774822235, + 0.01355805341154337, + -0.009070823900401592, + 0.01982962153851986, + -0.03447720780968666, + 0.011379753239452839, + -0.003965987358242273, + 0.03703359514474869, + -0.013679821975529194, + -0.006804740522056818, + -0.0047380090691149235, + -0.02916845865547657, + 0.0059881326742470264, + 0.007498451042920351, + 0.017801601439714432, + -0.010107003152370453, + 0.0012910537188872695, + -0.013267411850392818, + -0.011761507950723171, + -0.028059829026460648, + 0.028509151190519333, + 0.012376874685287476, + 0.004563360009342432, + 0.0039202007465064526, + 0.006157146766781807, + -0.006134955212473869, + -0.004316524602472782, + -0.016046008095145226, + -0.014410406351089478, + -0.0002714940928854048, + 0.002748841419816017, + 0.01739579625427723, + 0.007724999915808439, + 0.0003923648037016392, + -0.0131999421864748, + 0.010480995289981365, + 0.006013576872646809, + 0.0029099611565470695, + 0.00021958026627544314, + -0.007341126911342144, + 0.01177286822348833, + 0.008625995367765427, + -0.0009459350258111954, + 0.02413245290517807, + -0.003636270761489868, + 0.016797726973891258, + -0.017604470252990723, + -0.002830689772963524, + -0.005995150655508041, + -0.02113187685608864, + 0.015488364733755589, + 0.00969615112990141, + -0.003500420833006501, + 0.009306333027780056, + 0.006504587829113007, + 0.012718402780592442, + 0.010401476174592972, + -0.001451418618671596, + -0.00010059965279651806, + 0.00821287278085947, + 0.00393516244366765, + 0.010456853546202183, + 0.007988758385181427, + -0.0015054239192977548, + 0.006834854371845722, + -0.0017540652770549059, + 0.0076796794310212135, + 0.010518215596675873, + -0.07124395668506622, + -0.012975063174962997, + -0.004554275888949633, + -0.003939121495932341, + 0.0071640824899077415, + -0.020808329805731773, + -0.016097476705908775, + 0.00025353237288072705, + -0.015849990770220757, + -0.008181328885257244, + -0.018654707819223404, + 0.0057220058515667915, + 0.01356820110231638, + 0.0076903728768229485, + 0.002177085028961301, + 0.000288075563730672, + 0.007910327985882759, + -0.014161612838506699, + 0.03081292100250721, + 0.0040243687108159065, + -0.009143543429672718, + 0.0030635062139481306, + 0.011537880636751652, + -0.00991490576416254, + 0.0019468896789476275, + 0.004051235970109701, + -0.00915833842009306, + -0.002195250242948532, + 0.006226262077689171, + -0.0002856781939044595, + 0.010071493685245514, + 0.0011914251372218132, + 0.011549320071935654, + 0.009737682528793812, + -0.001803332008421421, + 0.015460330992937088, + 0.011750461533665657, + 0.01634492166340351, + 0.00507725914940238, + -0.010944887064397335, + -0.0017437513452023268, + 0.017610864713788033, + -0.02174973301589489, + 0.009592880494892597, + -0.0034859804436564445, + 0.0014410772128030658, + 0.015363688580691814, + 0.012450730428099632, + -0.013634108938276768, + 0.02265637367963791, + 0.008060546591877937, + -0.01899816282093525, + -0.012981786392629147, + -0.013051704503595829, + -0.016156073659658432, + 0.005058316048234701, + -0.009207908064126968, + 0.0009648420382291079, + -0.009378045797348022, + 0.018311988562345505, + 0.0033560460433363914, + 0.011574123054742813, + 0.004236052744090557, + -0.007389533799141645, + -0.011714532971382141, + -0.002096357522532344, + -0.0009505528723821044, + 0.004919867031276226, + -4.105140033061616e-05, + 0.011597956530749798, + 0.0025749553460627794, + 0.007716434542089701, + 0.0065896036103367805, + -0.003416921943426132, + 0.002126529114320874, + -0.0043417587876319885, + 0.000777082983404398, + -0.012113559059798717, + -0.00847657211124897, + -0.012792348861694336, + -0.013060047291219234, + -0.006374313496053219, + 0.003361823270097375, + 0.003987448289990425, + -0.018757110461592674, + 0.019631126895546913, + -0.010508252307772636, + -0.012535147368907928, + 0.01066047977656126, + -0.022347183898091316, + -0.011628148145973682, + -0.022809620946645737, + -0.016774868592619896, + -0.002343461848795414, + -0.012157130055129528, + 0.005522941239178181, + 0.01657550223171711, + 0.006322627421468496, + 0.0032847945112735033, + 0.008993702009320259, + -0.022032257169485092, + -0.018776722252368927, + 0.024474693462252617, + 0.004092714749276638, + -0.005941999610513449, + -0.011252263560891151, + 0.008748268708586693, + 0.01694905385375023, + -0.010757355950772762, + -0.0018203791696578264, + 0.0025841370224952698, + 0.008216418325901031, + 0.08810483664274216, + -0.0027735503390431404, + 0.019206790253520012, + -0.004807648714631796, + 0.006826068740338087, + 0.003941977862268686, + -0.015792861580848694, + -0.007855885662138462, + 0.009384716860949993, + -0.021342173218727112, + 0.002813376020640135, + -0.012049089185893536, + 0.004950463771820068, + -0.004285882227122784, + -0.006133104674518108, + -0.002838259795680642, + 0.0005955612869001925, + -0.005116424523293972, + 0.0028007866349071264, + -0.01751619763672352, + 0.013979271054267883, + -0.035046838223934174, + -0.0006249473080970347, + 0.014583347365260124, + -0.026101307943463326, + 0.016368040814995766, + 0.012644548900425434, + 0.00763316685333848, + 0.028169792145490646, + 0.017068281769752502, + 0.021018564701080322, + -0.0007031253189779818, + -0.025056691840291023, + -0.0005231524701230228, + 0.00022125992109067738, + 0.006010867189615965, + -0.022558053955435753, + -0.00022449251264333725, + -0.016635673120617867, + -0.01007432397454977, + 0.009334877133369446, + 0.009520167484879494, + -0.021451320499181747, + 0.0134624307975173, + 0.00814030971378088, + -0.009046087972819805, + 0.005606270860880613, + -0.0026808425318449736, + -0.00034599221544340253, + 0.013988400809466839, + -0.0064821806736290455, + -0.003742569824680686, + -0.008949073031544685, + 0.009500064887106419, + -0.008384819142520428, + 0.008102571591734886, + 0.024379661306738853, + -0.0025186799466609955, + 0.009608609601855278, + 0.015988582745194435, + 0.014353983104228973, + -0.009774251841008663, + -0.017573509365320206, + 0.0025361974257975817, + -0.005813527852296829, + -0.00638445932418108, + -0.0016917195171117783, + 0.007030909415334463, + 0.008842880837619305, + -0.007402399089187384, + -0.0010691586649045348, + -0.019913922995328903, + -0.0022481242194771767, + -0.024853691458702087, + -0.0034425794146955013, + 0.00484688114374876, + 0.04848388582468033, + 0.012394801713526249, + 0.005660775117576122, + 0.018488239496946335, + -0.009580797515809536, + -0.00897272489964962, + -0.012016307562589645, + -0.008489890024065971, + 0.006978191435337067, + -0.008614230901002884, + 0.0037948419339954853, + 0.005074406508356333, + -0.004166153725236654, + 0.013635213486850262, + -0.005721530877053738, + -0.005841932259500027, + -0.018663285300135612, + 0.012701361440122128, + 0.01573236659169197, + 0.0014190038200467825, + 0.0009373946231789887, + -0.019996190443634987, + -0.0034224067348986864, + -0.003744533285498619, + 0.0030748392455279827, + 0.004484908655285835, + 0.002782414434477687, + 0.000249516568146646, + -0.009468811564147472, + 0.0037333532236516476, + -0.0011156913824379444, + -0.011685202829539776, + 0.007136456202715635, + -0.012966825626790524, + -0.00161521986592561, + 0.011674011126160622, + -0.008918930776417255, + 0.005874366033822298, + 0.020142098888754845, + 0.003683812916278839, + -0.002672559814527631, + -0.013675684109330177, + 0.0006332890479825437, + -0.02121542952954769, + -0.009290454909205437, + 0.012687969952821732, + -0.01657021790742874, + 0.0011407851707190275, + -0.01158659067004919, + 0.019234076142311096, + 0.0002072359638987109, + 0.00012307260476518422, + -0.0030354259070008993, + 0.00043530622497200966, + -0.007289528381079435, + -0.006422581151127815, + 0.003953136038035154, + -0.011011924594640732, + 0.016315869987010956, + 0.008661078289151192, + 0.011551039293408394, + 0.015566547401249409, + -0.014039697125554085, + 0.0025643242988735437, + -0.010088606737554073, + 0.002168322680518031, + -0.0002457803057041019, + 0.008088693022727966, + 0.005418787244707346, + 0.01898474432528019, + 0.01829395815730095, + 0.007963350042700768, + 0.02048332430422306, + -0.015221607871353626, + 0.002371282782405615, + -0.010463833808898926, + 0.024553082883358, + -0.004959858488291502, + -0.0036118044517934322, + 0.011959201656281948, + 0.00876465905457735, + 0.004933514632284641, + 7.75472799432464e-05, + -0.013212030753493309, + 0.012979438528418541, + -0.002728316467255354, + 0.011467866599559784, + 0.0075446018017828465, + 0.00658307783305645, + 0.0032366174273192883, + 0.02094484679400921, + -0.020776132121682167, + -0.02449190989136696, + 0.003670265432447195, + -0.00046385658788494766, + 0.0117576252669096, + 0.0025233211927115917, + 0.020420996472239494, + 0.012174365110695362, + -0.026635702699422836, + -0.0008858513319864869, + 0.010319896973669529, + -0.01172974519431591, + -0.012956686317920685, + -0.004903561435639858, + 0.006771799176931381, + 0.004621744621545076, + -0.0006372910575009882, + -0.01586589403450489, + 0.0031092229764908552, + 0.006449841894209385, + -0.003936649300158024, + 0.02452949807047844, + -0.019612407311797142, + 0.0038563511334359646, + 0.03359195217490196, + -0.029868127778172493, + 0.006015794817358255, + -0.00808830838650465, + -0.010344217531383038, + -0.02592908777296543, + 0.020561905577778816, + 0.003119849832728505, + 0.0015044411411508918, + 9.34846593736438e-06, + -0.009695043787360191, + -0.004266954492777586, + 0.007572125177830458, + -0.006151063833385706, + 0.010917488485574722, + 0.007841270416975021, + 0.004306018352508545, + 0.006975548807531595, + 0.004442225676029921, + 0.005959039553999901, + -0.012887188233435154, + -0.00531056709587574, + 0.020530998706817627, + -0.003152745310217142, + -0.0020134744700044394, + -0.002420167438685894, + -0.009592982940375805, + 0.014527865685522556, + 0.027861231938004494, + 0.0038055479526519775, + 0.006038140971213579, + -0.0172391626983881, + -0.02094854786992073, + -0.010647276416420937, + -0.014895741827785969, + -0.016620978713035583, + -0.010785000398755074, + 0.012536954134702682, + -0.022869819775223732, + 0.008488738909363747, + -0.005843747407197952, + 0.0009096489520743489, + 0.02913082391023636, + 0.013842522166669369, + 0.0008050311007536948, + 0.007877597585320473, + 0.010830281302332878, + 0.00211340025998652, + 0.019517572596669197, + -0.0017478159861639142, + 0.029290813952684402, + -0.007333768531680107, + -0.01257746946066618, + -0.023650912567973137, + -0.016157906502485275, + 0.010098905302584171, + 0.004965991713106632, + -0.00485030235722661, + -0.01693233661353588, + -0.004853410180658102, + -0.004077007528394461, + -0.0037078415043652058, + -0.004125833511352539, + -0.0208197683095932, + 0.008163565769791603, + 0.007862935774028301, + -0.006488359067589045, + 0.01767870970070362, + -0.022308485582470894, + 0.0001961248053703457, + -0.007341490127146244, + 0.007749340031296015, + 0.014446524903178215, + 0.007799525745213032, + 0.005868486128747463, + -0.016699427738785744, + 0.002719622803851962, + -0.005208434071391821, + 0.007471940014511347, + 0.005256162025034428, + 0.004776649177074432, + -0.006882302463054657, + -0.014707842841744423, + 0.006799566559493542, + 0.021982287988066673, + 0.004892192780971527, + -0.0008750690030865371, + -0.008896233513951302, + -0.011976255103945732, + 0.0009919361909851432, + 0.0047474573366343975, + 0.018078120425343513, + -0.016889113932847977, + 0.00706844637170434, + -0.0036060854326933622, + -0.00782911665737629, + 0.010229503735899925, + -0.003353591775521636, + -0.0015890328213572502, + -0.015863707289099693, + 0.06150693818926811, + -0.003987217787653208, + 0.015966683626174927, + -0.02694905363023281, + 0.005220792721956968, + -0.012690636329352856, + 0.002845326205715537, + 0.003707527881488204, + 0.032111357897520065, + 0.002787482924759388, + -0.007839183323085308, + 0.007242646999657154, + -0.0061706011183559895, + -0.013201845809817314, + -0.0004804053751286119, + 0.005407622549682856, + 0.018829209730029106, + 0.0005079369293525815, + -0.0026560043916106224, + 0.0037963425274938345, + 0.006586553994566202, + -0.0030593194533139467, + 0.01580674573779106, + -0.003909735009074211, + -0.02061965875327587, + 0.020091190934181213, + 0.025601143017411232, + 0.026066720485687256, + 0.01457461528480053, + -0.007757372222840786, + 0.0007915091700851917, + -0.0032340935431420803, + -0.013692132197320461, + -0.022051580250263214, + 0.013131110928952694, + -0.00995964277535677, + -0.012402905151247978, + -0.003961377311497927, + 0.001265126746147871, + 0.00124360341578722, + -0.004877263214439154, + 0.004984239116311073, + -0.021005962044000626, + -0.004218788351863623, + 0.005054011009633541, + 0.03157294914126396, + 0.029700754210352898, + -0.002479822840541601, + -0.01004942599684, + 0.01356317289173603, + -0.0005699219764210284, + 0.0032880434300750494, + -0.008841444738209248, + 0.00379005866125226, + -0.008304508402943611, + 0.006138212978839874, + -0.005349155515432358, + -0.0035850335843861103, + -0.003742022207006812, + -0.008093954995274544, + -0.011059445329010487, + -0.003142628585919738, + -0.01623302884399891, + -0.016408642753958702, + 0.00803496316075325, + -0.009862780570983887, + -0.0005169512005522847, + 0.005294417031109333, + -0.01135474257171154, + 0.0006200790521688759, + -0.009780132211744785, + 0.01991833932697773, + 0.006147014442831278, + -0.0026812399737536907, + -0.006119671277701855, + 0.007737360429018736, + -0.005505864508450031, + 0.003524087369441986, + 0.011672837659716606, + 0.0058737024664878845, + 0.0067414348013699055, + -0.009643720462918282, + -0.005312884226441383, + -0.0064013185910880566, + -0.0023657612036913633, + -0.0006355609511956573, + 0.004724606405943632, + -0.005866031162440777, + 0.010309896431863308, + 0.00683283107355237, + 0.016325460746884346, + -0.020672667771577835, + -0.007229599170386791, + -0.008168034255504608, + -0.0047567496076226234, + 0.016963370144367218, + -0.02744228206574917, + -0.013357157818973064, + -0.005365285556763411, + 0.017765291035175323, + 0.003266821848228574, + -0.011897454038262367, + -0.015396520495414734, + -0.020854050293564796, + 0.012361383996903896, + -0.014454856514930725, + -0.0017800071509554982, + -0.010230491869151592, + -0.012312602251768112, + 0.005779110826551914, + 0.011498314328491688, + 0.00366147025488317, + 0.01672310382127762, + 0.013247518800199032, + -0.008555279113352299, + 0.016974996775388718, + -0.005258202087134123, + -0.0127663379535079, + -0.0016440784092992544, + 0.006705595646053553, + 0.013719030655920506, + 0.0033648614771664143, + 0.014606602489948273, + -0.006917282938957214, + 0.011847743764519691, + -0.02386440895497799, + -0.014405773021280766, + 0.003961598966270685, + 1.3655640032084193e-05, + 0.0038904917892068624, + -0.014476021751761436, + 0.013257225044071674, + 0.009457824751734734, + -0.0035084455739706755, + -0.008101115003228188, + -0.02196493186056614, + -0.004100974183529615, + 0.010038240812718868, + 0.003568259533494711, + -0.009605612605810165, + 0.01372127328068018, + 0.007842257618904114, + 0.007209572941064835, + -0.0036342099774628878, + 0.016992831602692604, + 0.009096064604818821, + 0.0035885311663150787, + -0.006070487666875124, + -0.007073687855154276, + -0.009655360132455826, + -0.0006041266024112701, + 0.001135081285610795, + -0.009383590891957283, + 0.0056983367539942265, + -0.0030478541739284992, + 0.03888678178191185, + -0.007936285808682442, + 0.010111795738339424, + -0.006095429416745901, + -0.020398510619997978, + -0.01659182459115982, + -0.01950693689286709, + 0.009443757124245167, + 0.010117905214428902, + 0.0043951477855443954, + -0.004119925666600466, + -0.007044270168989897, + 0.017563778907060623, + -0.0066285994835197926, + -0.03327922895550728, + 0.014035103842616081, + 0.01308162696659565, + 0.020899906754493713, + 0.008073121309280396, + -0.014004484750330448, + 0.009066400118172169, + -0.006205763667821884, + -0.0009603620273992419, + -0.001312563312239945, + -0.0053517804481089115, + -0.0037066268268972635, + -0.004980620462447405, + -0.01418138388544321, + -0.003940243273973465, + 0.013610436581075191, + -0.0015115935821086168, + 0.010059569031000137, + -0.00972104724496603, + -0.02054753340780735, + -0.00415415782481432, + -0.0015180493937805295, + -0.005403475370258093, + -0.015167364850640297, + 0.0075762574560940266, + 0.014725631102919579, + -0.001894820132292807, + -0.0627281442284584, + 0.0003104817878920585, + 0.00043268725858069956, + -0.011119839735329151, + -0.006302501540631056, + 0.0015582498162984848, + -0.022105103358626366, + -0.004505339544266462, + 0.012870606034994125, + 0.016989221796393394, + -0.014697523787617683, + -0.009645961225032806, + 0.010654488578438759, + -0.008718348108232021, + -0.020089901983737946, + -0.007235322613269091, + 0.004128183238208294, + -0.009698711335659027, + 0.007310002110898495, + -0.009164320304989815, + -0.00892829243093729, + -0.0051508815959095955, + 0.0020276647992432117, + -0.015022111125290394, + -0.012830598279833794, + 0.004469148814678192, + 0.0013804712798446417, + 0.0005282655474729836, + -0.009790094569325447, + -0.026614146307110786, + 0.004625379573553801, + 0.003894552355632186, + -0.017313875257968903, + -0.018401844426989555, + -0.020139819011092186, + -0.009438920766115189, + 0.0027107149362564087, + -0.002934006741270423, + -0.0034551748540252447, + 0.01131238043308258, + -0.0013186391443014145, + 0.010754004120826721, + 0.002630729228258133, + -0.0046766456216573715, + 0.008388552814722061, + 0.00748923746868968, + -0.008305610157549381, + 0.007571970112621784, + 0.011410132050514221, + -0.01019038911908865, + 0.0018209278350695968, + -0.017330404371023178, + -0.005977476481348276, + 0.006351153366267681, + -0.007064927369356155, + -0.021777357906103134, + 0.00019644024723675102, + 0.00183580513112247, + -0.011900571174919605, + -0.01217681635171175, + -0.009210669435560703, + -0.006479238159954548, + -0.014191669411957264, + -0.0017223414033651352, + 0.005338457878679037, + -0.006591839715838432, + 0.015922319144010544, + -0.008022118359804153, + 0.01454627513885498, + -0.00026670488296076655, + -0.01579422317445278, + -0.0035860140342265368, + 0.019872579723596573, + -0.0027965197805315256, + -0.0009483498870395124, + 0.00595301715657115, + 0.011880976147949696, + 0.02195492573082447, + 0.008073401637375355, + 0.0016728931805118918, + -0.016918087378144264, + 0.008300522342324257, + 0.0011285560904070735, + 0.018897566944360733, + -0.005994538310915232, + -0.004040322732180357, + 0.001249664113856852, + 0.027762195095419884, + -0.004498267080634832, + 0.00014550660853274167, + 0.019832896068692207, + 0.008091743104159832, + -0.007306365761905909, + 0.012902073562145233, + -0.0031481755431741476, + 0.002630427246913314, + 0.004162801429629326, + 0.004572566598653793, + -0.0106228431686759, + -0.001911715604364872, + 0.013916761614382267, + -0.012498806230723858, + 0.002930646063759923, + 0.021726256236433983, + -0.0175221748650074, + -0.019681544974446297, + 0.004165372345596552, + -0.011579299345612526, + -0.005985677242279053, + -0.03143995627760887, + 0.011889170855283737, + 0.007513347547501326, + 0.010286896489560604, + -0.013248678296804428, + -0.0628536194562912, + 0.009445679374039173, + -0.0055539729073643684, + 0.0004892079741694033, + -0.003898180788382888, + -0.00022599176736548543, + -0.009931018576025963, + 0.002825388452038169, + 0.004002138040959835, + 0.018341615796089172, + -0.005438966676592827, + -0.011288040317595005, + -0.003759189508855343, + -0.009491387754678726, + 0.006688147317618132, + 0.007820140570402145, + 0.005437442567199469, + 0.011872186325490475, + 0.013859063386917114, + -0.016213539987802505, + -0.005052825435996056, + -5.695345680578612e-05, + 0.0009726477437652647, + -0.01135251484811306, + 0.007386601064354181, + -0.002910783514380455, + -0.00408939179033041, + -0.029719801619648933, + 0.0024264876265078783, + -0.0005256189615465701, + 0.006701749749481678, + -0.000515718653332442, + -0.008492959663271904, + 0.006597837898880243, + 0.018234863877296448, + -0.01769784651696682, + 0.00798055250197649, + 0.0005953190266154706, + -0.005675101187080145, + -0.009550855495035648, + 0.002731295069679618, + -0.01022366899996996, + -0.00449433084577322, + 0.0038413910660892725, + -0.0056501952931284904, + -0.00039343745447695255, + -0.023016858845949173, + -0.01222019363194704, + 0.004640002269297838, + 0.023552605882287025, + 0.0092084351927042, + 0.001913830521516502, + -0.006642496678978205, + -0.0030726315453648567, + 0.01007520966231823, + 0.015085577964782715, + 0.015668703243136406, + -0.015327746979892254, + -0.003602398559451103, + -0.0017940214602276683, + -0.0057756612077355385, + -0.003980306442826986, + -0.0071241240948438644, + -0.0021640590857714415, + -0.005600538570433855, + 0.009742528200149536, + 0.03602197766304016, + 0.00549923675134778, + 0.005721526686102152, + -0.004274885170161724, + 0.0029255596455186605, + -0.014129436574876308, + -0.024510715156793594, + -0.0006421178113669157, + 0.012905373238027096, + -0.006105002015829086, + 0.005040729884058237, + 0.0026463556569069624, + 0.010021038353443146, + -0.0014193664537742734, + 0.0012434885138645768, + -0.008985618129372597, + -0.0054601095616817474, + -0.05158264562487602, + 0.007944479584693909, + -0.003515118034556508, + -0.0023830546997487545, + 0.003588300198316574, + 0.007635919377207756, + 0.008593499660491943, + 0.011071832850575447, + -0.009009141474962234, + -0.0011781285284087062, + 0.0470660962164402, + 0.014060093089938164, + 0.007892797701060772, + 0.02116851694881916, + 0.0024646897800266743, + 0.10917039215564728, + -0.005988721735775471, + -0.02175200916826725, + -0.021675623953342438, + 0.01339252945035696, + 0.008864876814186573, + -0.003976067993789911, + 0.012060508131980896, + -0.0017801314825192094, + 0.005450148601084948, + -0.019054677337408066, + 0.01916559226810932, + 0.006371083669364452, + -0.011828559450805187, + 0.013534936122596264, + -0.00021971523528918624, + -0.01990722119808197, + -0.007754882797598839, + 0.014826733618974686, + -0.015338234603404999, + -0.007673697080463171, + -0.005254730582237244, + -0.006763222627341747, + 0.015484671108424664, + 0.005563981831073761, + -0.0013466821983456612, + -0.009156093001365662, + 0.013342753052711487, + 0.016051050275564194, + 0.006551206111907959, + -0.014667203649878502, + 0.0019331721123307943, + -0.019064582884311676, + 0.011470136232674122, + -0.009776392951607704, + -0.008539111353456974, + 0.005928816273808479, + 0.008608030155301094, + -0.007108168210834265, + -0.007498124614357948, + 0.0059683658182621, + -0.009037859737873077, + 0.019091112539172173, + 0.033939048647880554, + -0.0007266284665092826, + 0.013402528129518032, + -0.002162251155823469, + -0.003250288777053356, + 0.001896903500892222, + -0.0046328953467309475, + 0.001707171555608511, + -0.009559854865074158, + -0.0229659266769886, + 0.0014271929394453764, + 0.009754486382007599, + 0.006293064448982477, + -0.008764836005866528, + -0.003394851228222251, + -0.0072734542191028595, + 0.015917954966425896, + -0.003834143513813615, + 0.007462500594556332, + 0.010203709825873375, + 0.00032189974444918334, + -0.015870315954089165, + -0.009158439934253693, + -0.004101705737411976, + 0.045327089726924896, + 0.003540083533152938, + -0.009164255112409592, + -0.008640460669994354, + -0.00349096255376935, + 0.007519387174397707, + 0.0008874608320184052, + 0.0020621814765036106, + 0.004707057494670153, + -0.004046826157718897, + -0.021610651165246964, + 0.0019789121579378843, + 0.0039260718040168285, + 0.02549724653363228, + 0.007865335792303085, + -0.004725334700196981, + 0.004833519458770752, + 0.006473822984844446, + 0.004744464997202158, + 0.007977879606187344, + 0.008334800601005554, + 0.006374295800924301, + -0.017069606110453606, + -0.006622172426432371, + 0.004103388637304306, + -0.013658421114087105, + -0.02014044113457203, + 0.009753508493304253, + 0.006063980981707573, + -0.0008278452442027628, + -0.018987612798810005, + 0.005970264319330454, + 0.011938770301640034, + 0.0025825698394328356, + -0.003441999666392803, + -0.003388783195987344, + 0.003664984367787838, + 0.0013745188480243087, + 0.014336694031953812, + 0.003755635814741254, + 0.0053438832983374596, + -0.02620629221200943, + -0.007098846603184938, + -0.01073077879846096, + -0.013795962557196617, + 0.0073434701189398766, + 0.030601443722844124, + -0.008590529672801495, + -0.014145483262836933, + 0.005803955718874931, + 0.020629603415727615, + -0.00857709813863039, + -0.0029177775140851736, + 0.006480012554675341, + -0.004132146015763283, + 0.0030954289250075817, + 0.010767626576125622, + 0.0017402608646079898, + -0.03079446405172348, + 0.015605699270963669, + -0.013280798681080341, + 0.017973126843571663, + -0.0018099352018907666, + -0.008173488080501556, + 0.0009834507945924997, + -0.01448626909404993, + 0.0016575519694015384, + 0.006986107211560011, + -0.002240526955574751, + 0.006108194123953581, + 0.004323607310652733, + 0.008405422791838646, + 0.00697571225464344, + 0.0030096403788775206, + 0.011396901682019234, + -0.01687462441623211, + -0.015899328514933586, + -0.0014605984324589372, + -0.007216043770313263, + -0.008423908613622189, + -0.0031258079688996077, + -0.0038266507908701897, + 0.0076757739298045635, + 0.003060760674998164, + 7.214745710371062e-05, + -0.018764737993478775, + 0.020594440400600433, + 0.005035575944930315, + 0.004969168920069933, + -0.01235845498740673, + 0.0013719970593228936, + 0.0010446178494021297, + 0.08913382142782211, + -0.0020993377547711134, + -0.004710153676569462, + 0.009841245599091053, + -0.005977099295705557, + -0.01469059195369482, + 0.0025667946320027113, + -0.00034507186501286924, + 0.023869412019848824, + 0.014482498168945312, + 0.016716472804546356, + -0.005510993301868439, + 0.008804519660770893, + 0.013941651210188866, + -0.009651420637965202, + 0.005046545993536711, + -0.0015333772171288729, + -0.009667451493442059, + 0.0025392319075763226, + 0.00894925370812416, + 0.001305868849158287, + 0.01149769127368927, + -0.008526455610990524, + -0.0019244085997343063, + -0.011816143989562988, + 0.019496070221066475, + 0.005364971235394478, + 0.0049119372852146626, + -0.0002879177627619356, + -0.002218979876488447, + 0.006628869567066431, + 0.007851103320717812, + 0.0021973131224513054, + 0.001104229362681508, + 0.01906779408454895, + 0.019204720854759216, + -0.006024365313351154, + 0.013390582986176014, + -0.0015613287687301636, + -0.011217576451599598, + -0.0016370839439332485, + -0.00048101594438776374, + 0.008067885413765907, + -0.0008147939224727452, + 0.06991910934448242, + 0.008086632937192917, + 0.008288930170238018, + 0.00239209714345634, + -0.005603318102657795, + 0.004579983651638031, + 0.017689205706119537, + -0.00695746298879385, + -0.008710154332220554, + -0.003708770964294672, + -0.0023626245092600584, + 0.00354061764664948, + 0.00812623556703329, + -0.001784076215699315, + 0.007593900430947542 + ] + ], + "variance_threshold": 0.5 + } + }, + "8": { + "concepts": { + "happy": { + "count": 2, + "norm": 12.658815383911133, + "raw_vector": [ + 0.03646118938922882, + 0.09156159311532974, + 0.3250378966331482, + -0.2736767828464508, + -0.08078721165657043, + 0.21399438381195068, + -0.19517213106155396, + 0.03312023729085922, + 0.19883473217487335, + -0.13221243023872375, + 0.04811336100101471, + -0.07747326791286469, + 0.14382512867450714, + -0.11882642656564713, + 0.1839865744113922, + -0.06790431588888168, + -0.10570544004440308, + 0.0019248947501182556, + -0.08379318565130234, + -0.18792471289634705, + 0.17962923645973206, + 0.027228187769651413, + -0.07794412225484848, + 0.21623122692108154, + 0.12719982862472534, + -0.11109829694032669, + 0.409146249294281, + 0.27476608753204346, + 0.1792914867401123, + 0.04973096400499344, + -0.2169950306415558, + 0.1298101246356964, + -0.2826332151889801, + -0.22009682655334473, + -0.04538679122924805, + -0.06127253919839859, + 0.17431840300559998, + 0.29968762397766113, + -0.026834093034267426, + 0.05400829389691353, + 0.3091406226158142, + 0.15528179705142975, + -0.15077297389507294, + -0.1666601002216339, + 0.0961652472615242, + 0.15058593451976776, + -0.043006863445043564, + 0.2523763179779053, + 0.14831098914146423, + 0.16900986433029175, + -0.022717026993632317, + 0.14824673533439636, + -0.024809638038277626, + -0.09120699018239975, + -0.07510241866111755, + -0.11231382191181183, + -0.02571999281644821, + 0.17531967163085938, + 0.12187354266643524, + -0.04451892524957657, + 0.17800188064575195, + 0.18428722023963928, + -0.23455320298671722, + -0.04554062336683273, + -0.31554144620895386, + -0.029520004987716675, + -0.2804111838340759, + -0.099503293633461, + -0.21544994413852692, + -0.03850743919610977, + 0.2127562314271927, + -0.11517006158828735, + 0.05677780508995056, + 0.05877823382616043, + -0.18411894142627716, + -0.06193003058433533, + 0.37083736062049866, + -0.028950698673725128, + 0.18047791719436646, + 0.29665952920913696, + 0.05283679813146591, + -0.19816188514232635, + 0.011413753032684326, + -0.0631292462348938, + -0.17298558354377747, + 0.06111679971218109, + -0.005912093445658684, + -0.2929120659828186, + -0.19292712211608887, + -0.01797850802540779, + 0.14476090669631958, + 0.0676085352897644, + -0.02581126242876053, + -0.4673270881175995, + 0.07218623161315918, + 0.264865517616272, + 0.06920391321182251, + 0.1188381016254425, + -0.45822250843048096, + -0.07999488711357117, + 0.16991963982582092, + -0.16284297406673431, + 0.028097987174987793, + 0.14117498695850372, + 0.02098548226058483, + -0.03408847004175186, + 0.09599560499191284, + -0.09626694023609161, + 0.0507843904197216, + -0.10476378351449966, + -0.16801106929779053, + -0.15189959108829498, + -0.20051415264606476, + -0.0898665338754654, + -0.30738723278045654, + -0.13603165745735168, + -0.06472676247358322, + 0.0929737240076065, + -0.12914559245109558, + -0.21539045870304108, + -0.21652621030807495, + 0.05615779757499695, + -0.04764564707875252, + 0.006749413907527924, + 0.14691835641860962, + 0.23404592275619507, + -0.033684518188238144, + 0.1027088463306427, + 0.1780310422182083, + 0.0031237369403243065, + -0.35851484537124634, + 0.0992259681224823, + -0.04749281704425812, + 0.05350099131464958, + -0.29678744077682495, + -0.4779380261898041, + 0.05630805343389511, + 0.006637364625930786, + 0.05675339698791504, + 0.13243785500526428, + -0.13913767039775848, + -0.09527307748794556, + 0.2070448100566864, + -0.09211013466119766, + -0.14389696717262268, + 0.13965797424316406, + -0.15107357501983643, + -0.03196866065263748, + -0.1729985475540161, + -0.5159396529197693, + -0.04335357993841171, + -0.30058738589286804, + -0.15297028422355652, + 0.14085032045841217, + 0.03806227445602417, + -0.1559027135372162, + -0.0792778730392456, + -0.038864053785800934, + 0.04038231819868088, + -0.006390739232301712, + 0.07635888457298279, + 0.0749729573726654, + -0.46470582485198975, + -0.021022051572799683, + 0.06446032971143723, + -0.21210120618343353, + 0.27362528443336487, + -0.05575711652636528, + -0.13410744071006775, + 0.043649353086948395, + 0.109550341963768, + 0.23248600959777832, + 0.010403357446193695, + 0.26475170254707336, + 0.012427844107151031, + -0.02200625091791153, + 0.15402963757514954, + -0.20846164226531982, + -0.2775041460990906, + 0.1575668454170227, + -0.15056322515010834, + -0.014609888195991516, + 0.26433831453323364, + -0.08689314126968384, + 0.04693220555782318, + 0.05303670093417168, + 0.14557994902133942, + -0.2521046996116638, + 0.04828708991408348, + 0.05151299759745598, + 0.1858791708946228, + -0.32224252820014954, + -0.5159192681312561, + 0.0014683809131383896, + 0.14315733313560486, + 0.13851644098758698, + 0.8523868322372437, + -0.04480605572462082, + 0.16276128590106964, + -0.07995308935642242, + -0.5343095660209656, + -0.011201031506061554, + -0.054968807846307755, + -0.08832765370607376, + -0.10892700403928757, + -0.06651259958744049, + -0.11167027056217194, + -0.30730700492858887, + 0.1207851991057396, + 0.000970352441072464, + -0.03941856324672699, + -0.013617973774671555, + -0.1257302612066269, + 0.03430125117301941, + 0.11207088828086853, + -0.3105482757091522, + 0.07687405496835709, + -0.13436861336231232, + 0.08218309283256531, + -0.20909054577350616, + -0.101280577480793, + -0.07608921825885773, + -0.06558628380298615, + 0.06103018671274185, + -0.4867914617061615, + -0.047256290912628174, + 0.18353873491287231, + -0.014754846692085266, + -0.032969437539577484, + -0.31558161973953247, + -0.1728910505771637, + 0.02465500310063362, + -0.17639681696891785, + 0.6207313537597656, + 0.11107520759105682, + -0.021590696647763252, + -0.01915779709815979, + -0.0054382458329200745, + -0.034012891352176666, + -0.20003624260425568, + -0.14134034514427185, + 0.03249593451619148, + 0.108376644551754, + 0.44896310567855835, + -0.07968683540821075, + -0.2780274748802185, + 0.27795499563217163, + 0.05590882897377014, + 0.03428534045815468, + 0.040421899408102036, + 0.03166578710079193, + 0.06618200242519379, + 0.14496257901191711, + -0.12029609084129333, + 0.11872538179159164, + 0.0032892338931560516, + -0.07127098739147186, + -0.006290048360824585, + -0.3183598816394806, + 0.11675597727298737, + 0.0998508632183075, + -0.03678024560213089, + 0.13069787621498108, + 0.053261324763298035, + 0.12393571436405182, + -0.10386127233505249, + -0.15027979016304016, + 0.012335479259490967, + -0.0817757397890091, + 0.026936650276184082, + 0.505804717540741, + -0.12382640689611435, + 0.0006500668823719025, + -0.1259026825428009, + -0.01915293186903, + -0.1889624148607254, + -0.016702741384506226, + -0.22582301497459412, + -0.08231782913208008, + 0.05223189294338226, + -0.0037789270281791687, + -0.3292027711868286, + -0.5655852556228638, + -0.025237858295440674, + 0.023859769105911255, + -0.4309215843677521, + 0.3068068027496338, + -0.2631717622280121, + 0.10082937777042389, + -0.06387250125408173, + 0.10132034868001938, + 0.14357510209083557, + 0.6268165707588196, + -0.028674602508544922, + 0.2186690866947174, + -0.04315948486328125, + -0.01826813817024231, + -0.01162213645875454, + -0.2005649358034134, + 0.13591241836547852, + -0.12963981926441193, + 0.12607795000076294, + 0.15991467237472534, + -0.12151598185300827, + -0.09638787806034088, + -0.2030949741601944, + 0.3549894392490387, + -0.16388601064682007, + -0.10381696373224258, + -0.03740585595369339, + 0.1371046006679535, + -0.01609606295824051, + -0.22879435122013092, + 0.05863656848669052, + -0.011294844560325146, + 0.02779058739542961, + -0.16455478966236115, + -0.19342172145843506, + 0.17964576184749603, + -0.12336879968643188, + 0.17234015464782715, + 0.035293400287628174, + 0.16014541685581207, + -0.004229819402098656, + 0.0016574971377849579, + -0.2626899480819702, + -0.06966663897037506, + -0.02632925659418106, + -0.034072063863277435, + 0.06837508082389832, + 0.15159133076667786, + 0.047930557280778885, + 0.24361424148082733, + -0.20565956830978394, + 0.14218901097774506, + -0.259160578250885, + -0.06309152394533157, + -0.09112270176410675, + 0.3341387212276459, + 0.06863456964492798, + -0.08909393846988678, + -0.02446221001446247, + -0.18187975883483887, + 1.051575779914856, + 0.1859087347984314, + 0.30434709787368774, + -0.015721313655376434, + 0.10238375514745712, + 0.14912977814674377, + 0.08286380767822266, + 0.014736641198396683, + 0.08961013704538345, + -0.5024958848953247, + 0.05632048845291138, + 0.12058266252279282, + 0.017446614801883698, + -0.406177818775177, + 0.08813530951738358, + -0.2676955461502075, + 0.13101276755332947, + -0.025665827095508575, + 0.6849913597106934, + -0.21327698230743408, + -0.24398300051689148, + 0.0025389096699655056, + 0.3168485760688782, + 0.05996141955256462, + -0.1526634395122528, + -0.15755262970924377, + 0.026971396058797836, + -0.05552500858902931, + -0.23341244459152222, + 0.18425802886486053, + -0.256069540977478, + 0.15556839108467102, + 0.32611560821533203, + 0.07887250185012817, + 0.32217666506767273, + -0.17587710916996002, + -0.029030591249465942, + 0.10099206864833832, + -0.024517133831977844, + -1.4460161924362183, + 0.1280137598514557, + -0.15769962966442108, + 0.2592731714248657, + -0.11310354620218277, + -0.21721592545509338, + -0.16363394260406494, + 0.08403526246547699, + 0.004489317536354065, + 0.2001742720603943, + 0.10895174741744995, + -0.13775277137756348, + -0.009127669036388397, + 0.027252964675426483, + -0.38796883821487427, + -0.3554806411266327, + 0.3833392858505249, + -0.0728093609213829, + 0.1431780904531479, + -0.10441209375858307, + -0.04502313211560249, + 0.12188210338354111, + -0.15558598935604095, + 0.06316833198070526, + -0.07064557075500488, + 0.06735248863697052, + 0.20700787007808685, + -0.203287273645401, + 0.08009257912635803, + -0.24730253219604492, + 0.13600397109985352, + -0.05698634684085846, + 0.05892762541770935, + 0.11274807155132294, + -0.20495052635669708, + -0.08457811176776886, + -0.0066679492592811584, + -0.07330717891454697, + 0.14968061447143555, + -0.0602337121963501, + 0.0411735363304615, + 0.18818265199661255, + 0.07314830273389816, + -0.05131375789642334, + -0.07986775785684586, + 0.3401339650154114, + -0.032109007239341736, + -0.22189441323280334, + 0.6369109749794006, + -0.22082111239433289, + -0.6512656211853027, + 0.03253405541181564, + -0.05847053602337837, + -0.12276893109083176, + -0.14195558428764343, + 0.07537741214036942, + 0.0634215921163559, + 0.1299617737531662, + 0.17216867208480835, + -0.028607912361621857, + -0.010844144970178604, + 0.37059715390205383, + -0.1271314173936844, + 0.1449253261089325, + -0.03743504360318184, + 0.2906397581100464, + 0.07333848625421524, + -0.0015726536512374878, + 0.019129358232021332, + 0.056251779198646545, + -0.16181516647338867, + -0.1437397003173828, + 0.1614270955324173, + 0.09794793277978897, + 0.06690967828035355, + -0.09356938302516937, + 0.3346080183982849, + -0.16294607520103455, + -0.058125484734773636, + -0.13237088918685913, + 0.31341254711151123, + -0.08155779540538788, + -0.15377020835876465, + 0.22196559607982635, + -0.07230531424283981, + 0.005289450287818909, + 0.15379628539085388, + -0.1959090232849121, + 0.11812200397253036, + 0.2706877589225769, + -0.20477980375289917, + -0.16599106788635254, + 0.4170251488685608, + 0.1111689954996109, + -0.13706529140472412, + 0.027247486636042595, + -0.1772325336933136, + -0.016011275351047516, + 0.13709762692451477, + 0.14104102551937103, + -0.1249292641878128, + -0.12272563576698303, + 0.028713535517454147, + -0.044298041611909866, + 0.15008880198001862, + -0.7055997848510742, + -0.2160942554473877, + -0.13068458437919617, + 0.08656258136034012, + 0.19402483105659485, + 0.18231219053268433, + 0.02348637580871582, + 0.19792164862155914, + -0.02189212292432785, + 0.1400475651025772, + -0.21496467292308807, + -0.04400906711816788, + 0.14108571410179138, + -0.20184019207954407, + -0.04499290883541107, + 0.10807555913925171, + 0.02727316878736019, + 0.20168723165988922, + -0.2692550718784332, + -0.24554258584976196, + -0.06418614089488983, + 0.1653498113155365, + -0.2351144552230835, + 0.04097721725702286, + 0.04647346958518028, + -0.05093573033809662, + -0.2615595757961273, + 0.012228701263666153, + 0.07237446308135986, + 0.19839069247245789, + -0.16259123384952545, + 0.00897715799510479, + -0.08660812675952911, + -0.06560367345809937, + 0.1414714753627777, + -0.40537944436073303, + -0.3943735361099243, + -0.1617864966392517, + -0.0949890986084938, + -0.2779826521873474, + 0.04392120987176895, + -0.03488326072692871, + -0.29545965790748596, + 0.20617201924324036, + 0.10812762379646301, + 0.009709242731332779, + -0.014326613396406174, + -0.0661536455154419, + 0.02926788479089737, + -0.0780813992023468, + -0.016350120306015015, + 0.01813112199306488, + 0.17691846191883087, + -0.04711129888892174, + 0.11969427019357681, + -0.23615264892578125, + -0.0703233852982521, + 0.005850207060575485, + 0.05286101996898651, + 0.7142317295074463, + 0.24701479077339172, + 0.24402016401290894, + 6.588548421859741e-05, + 0.1745128333568573, + 0.12865254282951355, + -0.662672221660614, + 0.08559185266494751, + -0.14316311478614807, + 0.09641856700181961, + -0.24613916873931885, + 0.05644252523779869, + -0.27446019649505615, + -0.35641032457351685, + 0.38293200731277466, + 0.025718174874782562, + -0.21916213631629944, + -0.11242653429508209, + 0.04977819696068764, + 0.3393840789794922, + 0.07465256005525589, + -0.010715968906879425, + -0.0969865471124649, + 0.14694780111312866, + -0.11261061578989029, + -0.02622254006564617, + 0.12527324259281158, + 0.12266385555267334, + 0.15068331360816956, + 0.006379857659339905, + 0.2512856721878052, + -0.03270460292696953, + -0.22286412119865417, + -0.10229562968015671, + -0.3205763101577759, + 0.1768019050359726, + -0.10660991072654724, + 0.22115406394004822, + 0.05880177766084671, + 0.09291728585958481, + 0.08211301267147064, + 0.0878419429063797, + -0.03503401577472687, + -0.006269507110118866, + -0.29984039068222046, + -0.15077349543571472, + -0.2775006592273712, + 0.008433165028691292, + -0.19716963171958923, + -0.2084280550479889, + 0.12620267271995544, + -0.20126621425151825, + -0.3487212657928467, + 0.1059020608663559, + -0.0729319304227829, + -0.13523821532726288, + -0.032711803913116455, + 0.0610680915415287, + 0.004145458340644836, + -0.255278617143631, + 0.04439639672636986, + 0.008854378014802933, + -0.08737588673830032, + -0.19634202122688293, + 0.075569748878479, + 0.0665178894996643, + -0.19143465161323547, + -0.04522252082824707, + -0.12141001969575882, + 0.320069283246994, + 0.04997267201542854, + 0.04249192029237747, + 0.026621686294674873, + 0.03415103256702423, + -0.18956923484802246, + -0.26385602355003357, + 0.03368958830833435, + -0.07191433012485504, + -0.42993444204330444, + -0.027575891464948654, + -0.16721200942993164, + -0.0497686043381691, + 0.014966430142521858, + -0.026372738182544708, + 0.19186466932296753, + 0.32919803261756897, + -0.12458480894565582, + 0.14122232794761658, + -0.12117616832256317, + 0.3031696677207947, + 0.023928891867399216, + 0.14284518361091614, + -0.30127573013305664, + -0.03495534881949425, + -0.016773467883467674, + 0.12562128901481628, + 0.22960013151168823, + 0.08771204948425293, + -0.40929657220840454, + 0.01002503465861082, + -0.2894704043865204, + -0.5602015256881714, + -0.215141162276268, + 0.02546008490025997, + 0.1253494769334793, + 0.08956389874219894, + 0.0020537469536066055, + -0.08855587989091873, + 0.08211011439561844, + -0.13901762664318085, + -0.16382724046707153, + -0.010505428537726402, + -0.5111404061317444, + -0.23825107514858246, + 0.11796113848686218, + 0.011999815702438354, + 0.053467363119125366, + 0.1392129361629486, + -0.03923378139734268, + 0.4016159772872925, + -0.05870402604341507, + 0.00671783834695816, + 0.09711559861898422, + -0.19370879232883453, + -0.17086350917816162, + 0.1334996372461319, + 0.12021248042583466, + 0.036034487187862396, + -0.10184332728385925, + -0.016437184065580368, + 0.22899341583251953, + -0.11590326577425003, + 0.03073524683713913, + 0.15207809209823608, + 0.14227619767189026, + -0.15634192526340485, + 0.1539791077375412, + 0.23796901106834412, + 0.044654592871665955, + -0.04500017687678337, + -0.13049685955047607, + 0.05670705437660217, + 0.036874644458293915, + 0.09892328828573227, + 0.21526001393795013, + -0.30361461639404297, + -0.09656454622745514, + -0.14231842756271362, + -0.23783178627490997, + -0.03514237329363823, + -0.0375545434653759, + 0.19875970482826233, + 0.16862666606903076, + -0.08118510991334915, + -0.11213476955890656, + 0.055713944137096405, + -0.006947092711925507, + 0.007020710036158562, + -0.2460240125656128, + 0.0859488919377327, + -0.10337285697460175, + -0.6100606918334961, + 0.06429821252822876, + -0.0666101947426796, + 0.09539483487606049, + 0.2606181204319, + 0.1852933168411255, + -0.0068109408020973206, + 0.18780513107776642, + 0.050206951797008514, + -1.0309897661209106, + 0.08638099581003189, + -0.041138019412755966, + -0.09663071483373642, + 0.012969732284545898, + 0.03473648428916931, + -0.08858270198106766, + -0.09338007867336273, + -0.005208127200603485, + -0.12014652788639069, + 0.1282084435224533, + -0.1400463581085205, + -0.05750763416290283, + -0.07429099082946777, + 0.10545947402715683, + 0.028127038851380348, + 0.019098719581961632, + 0.20169056951999664, + 0.030388228595256805, + 0.01835271716117859, + -0.1331782042980194, + -0.2551529109477997, + 0.09922720491886139, + 0.23288598656654358, + -0.18308863043785095, + 0.13472500443458557, + 0.19905416667461395, + -0.05732971802353859, + 0.37788301706314087, + 0.04334802180528641, + -0.17521712183952332, + 0.257301926612854, + -0.17840313911437988, + 0.04028619825839996, + 0.06278260052204132, + -0.265500545501709, + -0.0019919704645872116, + -0.009879045188426971, + -0.07291547954082489, + 0.025819186121225357, + -0.014510941691696644, + 0.10260047763586044, + 0.09893453866243362, + -0.08312362432479858, + -0.24140565097332, + -0.14758619666099548, + -0.04920807480812073, + -0.07509662955999374, + 0.06568679213523865, + 0.0838155597448349, + -0.10621095448732376, + 0.19046024978160858, + 0.06755348294973373, + 0.0756208598613739, + 0.4531269669532776, + -0.01570308580994606, + 0.046677615493535995, + -0.0686059445142746, + 0.19624407589435577, + 0.17956551909446716, + 0.0441441684961319, + 0.7162907719612122, + 0.11712990701198578, + 0.2655978202819824, + 0.16880393028259277, + -0.09967116266489029, + -0.11056588590145111, + -0.0887610986828804, + 0.0034404247999191284, + 0.2674163579940796, + -0.14769771695137024, + -0.012221574783325195, + 0.0872376337647438, + -0.08037921786308289, + -0.21160870790481567, + 0.07332967221736908, + -0.012456987984478474, + 0.2115507274866104, + 0.12803605198860168, + 0.05218358337879181, + -0.0534636490046978, + 0.19581793248653412, + -0.05644378066062927, + 0.01286845002323389, + 0.22456610202789307, + 0.005651526153087616, + 0.24769960343837738, + -0.0469583123922348, + -0.18981117010116577, + -0.05975497514009476, + 0.15038107335567474, + 0.18177610635757446, + -0.0872744470834732, + 0.06608884036540985, + -0.1009804978966713, + 0.14966614544391632, + 0.028756678104400635, + -0.35799717903137207, + 0.18874526023864746, + 0.1720598042011261, + -0.014721252024173737, + 0.09358330070972443, + 0.03771300986409187, + 0.07116865366697311, + 0.16753295063972473, + -0.02897881716489792, + 0.25324901938438416, + -0.10936474800109863, + 0.2261580228805542, + 0.19490045309066772, + -0.14874206483364105, + 0.2607995569705963, + 0.29036009311676025, + 0.017550526186823845, + 0.2718418538570404, + -0.11973421275615692, + 0.050226375460624695, + -0.5277314782142639, + -0.06595094501972198, + -0.14838258922100067, + 0.15988920629024506, + -0.06243400275707245, + -0.4429611265659332, + -0.03249086067080498, + 0.3391559422016144, + -0.34567344188690186, + -0.07302054762840271, + 0.0015006959438323975, + 0.07213228940963745, + 0.044774651527404785, + 0.08741940557956696, + 0.2073337733745575, + 0.047535430639982224, + -0.16898146271705627, + 0.15315574407577515, + 0.4044632315635681, + 0.08767322450876236, + -0.07772175967693329, + -0.10825679451227188, + 0.0028234049677848816, + -0.2860621213912964, + 0.10590293258428574, + -0.00762002170085907, + 0.1188485249876976, + 0.24731555581092834, + 0.14685264229774475, + 0.2467358410358429, + -0.03556215763092041, + -0.02674795687198639, + 0.02886306494474411, + 0.08237084746360779, + -0.05924103781580925, + -0.13517189025878906, + 0.04503374174237251, + -0.024758893996477127, + 0.11116819083690643, + 0.11552426964044571, + 0.03552959859371185, + -0.13802361488342285, + -0.06134903430938721, + 0.16737371683120728, + -0.08106888830661774, + -0.07070216536521912, + -0.14543399214744568, + -0.03804950416088104, + 0.05164969712495804, + 0.06353843957185745, + 0.06406563520431519, + -0.08760547637939453, + -0.05178459733724594, + 0.15054532885551453, + -0.03222229331731796, + -0.7973340749740601, + 0.22295862436294556, + 0.11273989081382751, + 0.025325320661067963, + 0.05237647145986557, + -0.05904076248407364, + -0.014868445694446564, + 0.17937931418418884, + 0.1712861955165863, + 0.16347822546958923, + -0.06574950367212296, + -0.2103940099477768, + 0.21528512239456177, + 0.4775639772415161, + 0.08143333345651627, + -0.022354908287525177, + 0.015817418694496155, + -0.27491921186447144, + -0.08842691779136658, + -0.024485811591148376, + 0.09225521981716156, + -0.19932152330875397, + 0.053206369280815125, + -0.30348414182662964, + 0.08978263288736343, + 0.04574683681130409, + -0.34108299016952515, + 0.0781368762254715, + 0.13729920983314514, + -0.1869204342365265, + 0.12716256082057953, + 0.06763526797294617, + -0.0553722009062767, + -0.017500799149274826, + 0.13542599976062775, + -0.06691980361938477, + -0.18706992268562317, + 0.025214914232492447, + 0.003791283816099167, + -0.20778627693653107, + -0.11993923783302307, + -0.03294821083545685, + 0.04737521708011627, + 0.18316049873828888, + -0.24344827234745026, + 0.18282875418663025, + 0.07393641769886017, + -0.06389113515615463, + -0.017710799351334572, + -0.178843691945076, + 0.12614338099956512, + -0.1321234405040741, + -0.016049280762672424, + 0.26059046387672424, + -0.08138203620910645, + -0.07050345838069916, + -0.11886027455329895, + -0.1486920863389969, + 0.01872236840426922, + -0.12756511569023132, + -0.26876944303512573, + 0.08178635686635971, + 0.08643397688865662, + -0.014000730589032173, + 0.25650694966316223, + -0.032497864216566086, + 0.25159525871276855, + 0.23831385374069214, + 0.250762015581131, + -0.24419894814491272, + 0.1603313386440277, + -0.20715680718421936, + -0.19333040714263916, + 0.0038604438304901123, + 0.1589711308479309, + 0.20641954243183136, + 0.1209113821387291, + -0.1319141983985901, + -0.16849586367607117, + -0.0385122075676918, + 0.02428528666496277, + -0.06417505443096161, + 0.007810065522789955, + 0.12849654257297516, + -0.16399574279785156, + -0.12793686985969543, + -0.007558271288871765, + 0.15555889904499054, + -0.0312969833612442, + 0.11380668729543686, + 0.12157659232616425, + -0.10608389973640442, + 0.03740239888429642, + -0.07900778949260712, + 1.0840297937393188, + -0.053042713552713394, + 0.04109370708465576, + 0.2220878005027771, + 0.005585262086242437, + 0.07832424342632294, + -0.07485533505678177, + 0.16772347688674927, + 0.11175607889890671, + 0.09968933463096619, + 0.13408099114894867, + 0.02378624677658081, + -0.5354993939399719, + -0.06856662780046463, + 0.3137264847755432, + 0.11227783560752869, + 0.06532393395900726, + -0.04219391942024231, + 0.018645867705345154, + 0.10726868361234665, + -0.1854487955570221, + -0.14318689703941345, + -0.07801512628793716, + 0.12530973553657532, + -0.004563853144645691, + 0.14950472116470337, + -0.12767766416072845, + -0.11345548182725906, + -0.18305450677871704, + -0.14282166957855225, + -0.7347376346588135, + -0.06755348294973373, + 0.25661277770996094, + 0.10953322798013687, + 0.012005694210529327, + 0.10699566453695297, + 0.09944623708724976, + -0.007413111627101898, + 0.29086190462112427, + 0.10378852486610413, + -0.03991150110960007, + 0.16696804761886597, + 0.14959251880645752, + -0.033689603209495544, + 0.02832469344139099, + 0.05994595214724541, + -0.015541208907961845, + 0.17122521996498108, + 0.14551657438278198, + -0.1712103635072708, + 0.34051018953323364, + 0.009768255054950714, + 0.011648856103420258, + 0.19999992847442627, + 0.26044338941574097, + -0.11125968396663666, + -0.15259817242622375, + 0.043158840388059616, + -0.18419089913368225, + 0.005185296759009361, + 0.16588474810123444, + 0.06669916212558746, + -0.40352123975753784, + -0.005725475028157234, + 0.7132019400596619, + 0.09048677235841751, + 0.0979606881737709, + -0.21034902334213257, + 0.3192608952522278, + -0.23342961072921753, + 0.09694913029670715, + 0.030804235488176346, + -0.2768746018409729, + -0.3930228352546692, + 0.4381118714809418, + 0.21689394116401672, + 0.21260735392570496, + -0.0015839540865272284, + 0.6362760066986084, + 0.07314066588878632, + 0.17003309726715088, + 0.1917780488729477, + -0.18826186656951904, + 0.18019455671310425, + -0.17228879034519196, + -0.564315915107727, + 0.1775377094745636, + -0.12521736323833466, + 0.20087669789791107, + -0.07609711587429047, + 0.1297575682401657, + 0.04456615820527077, + -0.015176594257354736, + 0.03667869046330452, + -0.12563645839691162, + 0.14402350783348083, + 0.029338382184505463, + 0.055804818868637085, + 0.0929657518863678, + -0.08750732243061066, + -0.13911543786525726, + 0.09373245388269424, + -0.06486844271421432, + -0.0821148008108139, + -0.05783366784453392, + -0.07175909727811813, + 0.21301424503326416, + 0.14817079901695251, + -0.25871777534484863, + -0.18476015329360962, + 0.30253684520721436, + 0.07358278334140778, + 0.08697886019945145, + -0.06717582046985626, + -0.06677224487066269, + 0.0832170769572258, + -0.039138004183769226, + 0.24013984203338623, + -0.13105596601963043, + -0.20533883571624756, + 0.015349067747592926, + -0.0022742915898561478, + -0.10234827548265457, + 0.18688711524009705, + 0.06800267100334167, + 0.22320526838302612, + 0.2963111996650696, + 0.3326384425163269, + 0.12016135454177856, + -0.09137871861457825, + -0.08378604054450989, + 0.12936152517795563, + -0.1591150164604187, + 0.10319404304027557, + -0.22532260417938232, + -0.043293848633766174, + -0.18405979871749878, + -0.2113514095544815, + 0.04338858649134636, + 0.09488296508789062, + 0.10185403376817703, + 0.04500368982553482, + -0.14345158636569977, + -0.08183714002370834, + -0.1811758577823639, + -0.2831975817680359, + 0.0821782797574997, + -0.06716850399971008, + 0.19410885870456696, + 0.18763454258441925, + -0.046241600066423416, + -0.1306014508008957, + -0.0271159615367651, + 0.023929370567202568, + -0.09156888723373413, + -0.18010054528713226, + -0.009140986949205399, + 0.05712675303220749, + -0.10666754841804504, + -0.0368361733853817, + -0.15337294340133667, + 0.316771000623703, + -0.31709641218185425, + -0.17032784223556519, + -0.0985097661614418, + 0.32010626792907715, + -0.10932528972625732, + -0.13650420308113098, + 0.08769616484642029, + 0.14583712816238403, + 0.1871761828660965, + -0.03560401499271393, + 0.12789537012577057, + 0.1448982059955597, + 0.0616476833820343, + 0.00415852339938283, + 0.14815190434455872, + -0.14892995357513428, + -0.04580247402191162, + 0.12506386637687683, + 0.10818981379270554, + 0.07690300792455673, + -0.11146843433380127, + -0.15819868445396423, + -0.10306722670793533, + 0.09812063723802567, + -0.05985749512910843, + 0.1484537124633789, + 0.21397686004638672, + 0.5116450786590576, + 0.26386159658432007, + 0.05354463681578636, + 0.19773779809474945, + -0.03384443372488022, + -0.018514465540647507, + -0.23862959444522858, + 0.19911356270313263, + 0.06906850636005402, + -0.0027603060007095337, + -0.14146924018859863, + 0.02272840589284897, + -0.014933949336409569, + -0.04748457670211792, + 0.04656555503606796, + -0.17268508672714233, + 0.3229596018791199, + 0.0686071440577507, + -0.3814430832862854, + -0.04548053443431854, + -0.07606297731399536, + -0.29965588450431824, + -0.012487009167671204, + -0.2521175146102905, + 0.09384940564632416, + -0.08441107720136642, + -0.04965944588184357, + -0.1947583556175232, + -0.030250102281570435, + 0.14996929466724396, + 0.0151517353951931, + -0.17843252420425415, + -0.11978940665721893, + 0.10797817260026932, + -0.16567620635032654, + -0.03976783901453018, + -0.15822824835777283, + 0.12483347952365875, + -0.16501978039741516, + 0.053955286741256714, + -0.024857766926288605, + 0.02596346288919449, + -0.12152770161628723, + 0.29939013719558716, + 0.1476125866174698, + 0.026452481746673584, + -0.19169525802135468, + 0.10156939923763275, + -0.006922591477632523, + -0.002330671064555645, + -0.1730610728263855, + 0.5352213382720947, + 0.0633377805352211, + -0.16766762733459473, + 0.15698747336864471, + 0.22747807204723358, + 0.03159690648317337, + 0.031953468918800354, + -0.09582749009132385, + -0.16007395088672638, + -0.2288978099822998, + -0.03824646770954132, + -0.11418575793504715, + -0.20129823684692383, + -0.02876969799399376, + 0.3116656243801117, + 0.24314573407173157, + 0.21598151326179504, + -0.20637553930282593, + -0.2691267430782318, + 0.08056900650262833, + 0.11075867712497711, + 0.234053373336792, + 0.12770523130893707, + 0.4819948077201843, + -0.2918328642845154, + -0.17276503145694733, + 0.22207297384738922, + 0.2509123682975769, + 0.2134668231010437, + -0.17499706149101257, + 0.20269277691841125, + 0.08116379380226135, + 0.06819607317447662, + -0.04581449180841446, + 0.05095547437667847, + 0.062192339450120926, + 0.14222046732902527, + 0.103191077709198, + -0.1075797975063324, + 0.3003026247024536, + 0.047970619052648544, + -0.07946920394897461, + -0.14208164811134338, + -0.14777825772762299, + 0.3114125728607178, + -0.07471340149641037, + 0.031959276646375656, + 0.15117289125919342, + -0.2801107168197632, + 0.05244160816073418, + 0.14161723852157593, + 0.007249511778354645, + 0.19706308841705322, + 0.15354295074939728, + 0.10729637742042542, + 0.057748109102249146, + -0.03367708995938301, + 0.03468130901455879, + -0.2823910713195801, + 0.28596216440200806, + -0.009286738932132721, + 0.12506821751594543, + 0.1850377470254898, + 0.10244227945804596, + -0.10128822177648544, + 0.5299026966094971, + -0.041752755641937256, + -0.019539687782526016, + 0.057285159826278687, + 1.0540499687194824, + 0.07592097669839859, + 0.08105377852916718, + -0.16060078144073486, + -0.04054579138755798, + -0.018880248069763184, + 0.15701305866241455, + 0.07115402817726135, + 0.15300598740577698, + -0.042545244097709656, + 0.13000130653381348, + 0.22010861337184906, + -0.19338610768318176, + -0.009627744555473328, + 0.18010962009429932, + -0.14515557885169983, + -0.8115706443786621, + -0.3014700412750244, + 0.032446857541799545, + -0.027069883421063423, + -0.10098847001791, + -0.2312174141407013, + 0.3259429931640625, + -0.0729532241821289, + 0.009278413839638233, + -0.23622018098831177, + -0.04801377281546593, + 0.22012898325920105, + -0.05594441667199135, + -0.009493514895439148, + -0.1838448941707611, + -0.22078977525234222, + 0.013863250613212585, + 0.021997427567839622, + -0.08453533798456192, + 0.055280331522226334, + 0.3043825626373291, + -0.06082196533679962, + 0.000660330057144165, + 0.2911888062953949, + -0.09802759438753128, + -0.06613560020923615, + -0.03881964832544327, + 0.03530459105968475, + 0.03935062140226364, + -0.14489465951919556, + -0.08635599166154861, + -0.07143482565879822, + 0.23567306995391846, + 0.38697341084480286, + 0.16366735100746155, + 0.08332425355911255, + 0.072042316198349, + -0.09228996187448502, + 0.0807589590549469, + 0.23894457519054413, + -0.04066089540719986, + 0.1718885898590088, + 0.0172983817756176, + -0.4015662372112274, + -0.04106063023209572, + -0.01096142828464508, + -0.11599770188331604, + 0.14696094393730164, + 0.025085672736167908, + -0.13357917964458466, + 0.009450182318687439, + -0.024377470836043358, + 0.08740164339542389, + 0.05535120517015457, + -0.1387370079755783, + -0.2161249965429306, + 0.1309107393026352, + 0.08597365021705627, + -0.22213509678840637, + 0.05167149007320404, + -0.1635473221540451, + -0.2548537254333496, + -0.010189422406256199, + -0.19797557592391968, + 0.140900656580925, + 0.2826499938964844, + 0.05747702717781067, + 0.17386557161808014, + -0.05084378272294998, + 0.17069323360919952, + -0.029280003160238266, + -0.030559150502085686, + 0.054694272577762604, + 0.19527345895767212, + -0.06600677967071533, + 0.0843004509806633, + 0.27983933687210083, + 0.18887045979499817, + -0.019769201055169106, + -0.05290564149618149, + 0.13576053082942963, + -0.1218208372592926, + 0.0678720623254776, + 0.07927009463310242, + -0.30286362767219543, + 0.2823045253753662, + 0.023278601467609406, + 0.08987610042095184, + -0.07512091100215912, + 0.06997507810592651, + -0.2041843980550766, + -0.07378130406141281, + -0.535589337348938, + 0.3272635042667389, + 0.002651769667863846, + -0.1919468641281128, + 0.14660632610321045, + 0.015260033309459686, + -0.05276396870613098, + 0.09310351312160492, + 0.15223106741905212, + -0.332836389541626, + 0.04334951192140579, + -0.13964812457561493, + 0.08912709355354309, + 0.0037070363759994507, + -0.18408727645874023, + -0.11176130175590515, + -0.14686714112758636, + 0.121585413813591, + 0.19981583952903748, + 0.147793710231781, + 0.03010217472910881, + 0.2565065622329712, + 0.015407600440084934, + 0.0900370180606842, + 0.15603768825531006, + -0.29278984665870667, + 0.28847986459732056, + -0.30728909373283386, + 0.04530038312077522, + 0.11620712280273438, + -0.13566209375858307, + -0.22439037263393402, + -0.16674499213695526, + -0.05565404146909714, + -0.04679245129227638, + 0.04265835881233215, + -0.09414996206760406, + -0.006334029138088226, + -0.08180329948663712, + -0.10064788162708282, + -0.17744940519332886, + 0.6161084175109863, + 0.018718494102358818, + -0.09714449942111969, + 0.25125786662101746, + 0.08622503280639648, + -0.1817304491996765, + -0.23528975248336792, + 0.31830334663391113, + -0.11932460963726044, + -0.5370628833770752, + 0.1606065034866333, + -0.0900159701704979, + -0.282808780670166, + 0.04585963487625122, + -0.18003438413143158, + -0.05530516430735588, + 0.2152339518070221, + 0.13626420497894287, + -0.19371595978736877, + -0.10763601213693619, + 0.005293618887662888, + 0.32309818267822266, + 0.11139176785945892, + 0.254008948802948, + 0.21031823754310608, + 0.11718790233135223, + 0.0368286594748497, + 0.1080840677022934, + 0.2167310267686844, + 0.25305646657943726, + 0.1893996149301529, + -0.05070982500910759, + 0.14089561998844147, + 0.21502642333507538, + -0.02478378638625145, + -0.06910426169633865, + -0.12784980237483978, + -0.08839869499206543, + 0.26451605558395386, + -0.050479136407375336, + 0.14459268748760223, + 0.34022560715675354, + 0.05381102114915848, + -0.38388514518737793, + -0.12217085063457489, + 0.08076996356248856, + 0.13531477749347687, + 0.19191160798072815, + -0.2475103735923767, + -0.05702431872487068, + 0.2721666693687439, + -0.2776455283164978, + 0.022624969482421875, + -0.1758427917957306, + -0.030457431450486183, + 0.08894841372966766, + -0.019713275134563446, + 0.38726773858070374, + -0.12882497906684875, + -0.05847804993391037, + -0.06598441302776337, + -0.007316507399082184, + -0.1972731649875641, + 0.05549675598740578, + -0.4749160408973694, + 0.037298597395420074, + 0.19615718722343445, + 0.030669689178466797, + -0.0206163227558136, + -0.106112040579319, + 0.1334618628025055, + 0.21023279428482056, + -0.23627248406410217, + 0.04819300398230553, + -0.2736806869506836, + -0.028448957949876785, + 0.3195071220397949, + -0.0816689133644104, + 0.03442416712641716, + 0.16062669456005096, + 0.005870050750672817, + 0.1414904147386551, + -0.13939251005649567, + -0.09488275647163391, + -0.0688319131731987, + 0.19139710068702698, + -0.16664403676986694, + -0.027043811976909637, + 0.14242811501026154, + 0.09068668633699417, + -0.19014939665794373, + -0.12153465300798416, + -0.03946438431739807, + 0.0467463880777359, + 0.04150552675127983, + -0.03889603167772293, + -0.09649325907230377, + 0.2214743047952652, + -0.11357037723064423, + 0.025412432849407196, + -0.2064744085073471, + 0.20343434810638428, + -0.4023853540420532, + 0.15128383040428162, + -0.17904099822044373, + 0.018769599497318268, + 0.30391258001327515, + -0.25061166286468506, + 0.1257665902376175, + -0.09633269906044006, + -0.2459171563386917, + -0.1252022683620453, + 0.059059470891952515, + 0.12192153930664062, + -0.09396450221538544, + 0.2670508623123169, + -0.14250712096691132, + -0.1865258365869522, + 0.04186376929283142, + -0.27163106203079224, + 0.11463433504104614, + -0.10499579459428787, + -0.02181810513138771, + -0.10549329966306686, + -0.048996273428201675, + -0.0019446015357971191, + -0.1412729024887085, + -0.1784147322177887, + -0.05805583670735359, + 0.03859260678291321, + 0.07540728151798248, + -0.030729636549949646, + 0.13875767588615417, + 0.11588692665100098, + 0.0853104442358017, + 0.20475396513938904, + 0.13431060314178467, + 0.107491135597229, + -0.12912771105766296, + -0.20131677389144897, + -0.012370854616165161, + 0.045855749398469925, + -0.14284320175647736, + -0.11616060882806778, + 0.16121135652065277, + 0.033942751586437225, + 0.06467181444168091, + -0.001998304855078459, + 0.20312878489494324, + 0.12370632588863373, + -0.21154189109802246, + -0.17309364676475525, + -0.08410082757472992, + 0.05795501545071602, + 0.09937915205955505, + -0.07508496940135956, + -0.0973675549030304, + -0.06185685098171234, + -0.24738380312919617, + -0.3371522128582001, + 0.26973989605903625, + 0.0968371257185936, + -0.06509186327457428, + -0.7449255585670471, + 0.11570294201374054, + 0.09313656389713287, + 0.13601303100585938, + 0.20548033714294434, + -0.1498805284500122, + -0.14884629845619202, + -0.12566646933555603, + -0.31229737401008606, + 0.02658046782016754, + 0.005477678030729294, + 0.2628101110458374, + -0.020577989518642426, + 0.18410110473632812, + 0.19687142968177795, + -0.23032960295677185, + -0.04406871646642685, + -0.1626986563205719, + 0.10184371471405029, + -0.1660144031047821, + -0.19400441646575928, + 0.0882674902677536, + 0.03412892296910286, + 0.06886958330869675, + -0.05292138457298279, + -0.3146131634712219, + -0.09403247386217117, + -0.12153454124927521, + 0.46064963936805725, + 0.15757496654987335, + -0.027175813913345337, + -0.2898595929145813, + 0.1202571839094162, + 0.12139271199703217, + -0.0951085239648819, + 0.09763781726360321, + -0.11174929887056351, + -0.23906885087490082, + 0.2642662823200226, + -0.21954530477523804, + 0.013126065023243427, + 0.2697632312774658, + -0.1058783233165741, + -0.045523256063461304, + -0.04132000729441643, + 0.15933607518672943, + -0.14961344003677368, + -0.19013750553131104, + -0.2534932792186737, + -0.04739629849791527, + 0.15228833258152008, + 0.13567078113555908, + -0.23153842985630035, + -0.5422717928886414, + -0.006990894675254822, + 0.044175371527671814, + 0.29612815380096436, + -0.14414465427398682, + 0.2628868818283081, + -0.20418177545070648, + 0.011387281119823456, + -0.01143575832247734, + 0.00409756600856781, + 0.0551590621471405, + -0.1565488874912262, + -0.0458071306347847, + -0.03507474064826965, + 0.21800099313259125, + 0.06383676081895828, + -0.12475325912237167, + 0.08925509452819824, + -0.05590071529150009, + -0.14381501078605652, + 0.02071566879749298, + 0.04294450581073761, + 0.055314041674137115, + 0.2810314893722534, + 0.048255905508995056, + 0.33483248949050903, + -0.050295185297727585, + 0.11884593218564987, + -0.12056877464056015, + 0.22502046823501587, + 0.15939369797706604, + -0.06143062934279442, + 0.0797605812549591, + 0.2938356399536133, + 0.04378031939268112, + -0.12383569031953812, + 0.267800509929657, + 0.1243513822555542, + -0.18992038071155548, + -0.1476384699344635, + 0.602356493473053, + 0.09049183875322342, + -0.2186615914106369, + -0.07089200615882874, + -0.027166523039340973, + -0.04987785220146179, + 0.10346829891204834, + -0.08644814789295197, + 0.1727403998374939, + -0.1906968504190445, + -0.016813360154628754, + 0.40824204683303833, + -0.3126751780509949, + 0.13398432731628418, + 0.017660465091466904, + -0.5358093976974487, + -0.014061147347092628, + -0.03129372000694275, + 0.11370720714330673, + 0.08327885717153549, + 0.24304300546646118, + 0.19635751843452454, + 0.25503331422805786, + 0.009555854834616184, + -0.06059838831424713, + 0.12906013429164886, + 0.12776273488998413, + -0.016256481409072876, + 0.1602398008108139, + -0.2093334197998047, + -0.07401608675718307, + 0.07477642595767975, + 0.2953072190284729, + 0.10584723949432373, + 0.19081151485443115, + -0.0538315512239933, + -0.15974439680576324, + 0.15120740234851837, + 0.020120445638895035, + 0.006164491176605225, + -0.21673865616321564, + 0.07071543484926224, + 0.013957656919956207, + 0.05739772692322731, + 0.5258397459983826, + -0.11845889687538147, + 0.266412615776062, + 0.18109911680221558, + 0.20554077625274658, + 0.2513883709907532, + 0.13818836212158203, + 0.048323534429073334, + 0.06035887449979782, + -0.2703148424625397, + -0.06711898744106293, + -0.08111739903688431, + -0.1462513506412506, + -0.2454974204301834, + 0.07689693570137024, + 0.17543776333332062, + 0.15288352966308594, + 0.16504411399364471, + -0.047628410160541534, + -0.05465765297412872, + -0.14254382252693176, + -0.04469440132379532, + -0.06205287203192711, + 0.03204845264554024, + 0.0814451277256012, + 0.002351537346839905, + -0.028909169137477875, + 0.2166631519794464, + -0.3211161494255066, + 0.06942623108625412, + 0.25657370686531067, + 0.006175730377435684, + -0.42374303936958313, + 0.09125705063343048, + 0.02432306855916977, + 0.007572980597615242, + 0.28337711095809937, + 0.07902731746435165, + -0.21075190603733063, + -0.23452222347259521, + 0.09648359566926956, + -0.1531144678592682, + 0.0695786103606224, + -0.2067384123802185, + 0.26860716938972473, + 0.35671332478523254, + -0.09578551352024078, + -0.1809396892786026, + -0.16744054853916168, + 0.10101763159036636, + -0.15935851633548737, + -0.06597673892974854, + -0.14821785688400269, + 0.1368505209684372, + 0.06235894560813904, + 0.12129075080156326, + 0.12516053020954132, + -0.11127994954586029, + -0.08537963032722473, + -0.25961726903915405, + -0.008427515625953674, + -0.0223211869597435, + 0.18445271253585815, + 0.21214069426059723, + -0.06914623826742172, + -0.16783525049686432, + 0.03383302688598633, + 0.22223924100399017, + 0.013366913422942162, + -0.08330698311328888, + 0.3570255637168884, + -0.10350333899259567, + -0.10848082602024078, + -0.10122255980968475, + 0.09268880635499954, + 0.11152009665966034, + 0.26465529203414917, + -0.05660347640514374, + -0.20114800333976746, + -0.036595940589904785, + -0.06495366990566254, + -0.3401142358779907, + 0.1768210232257843, + 0.04467765614390373, + -0.12139806151390076, + 0.12368080019950867, + 0.11719395220279694, + 0.0947871208190918, + -0.1472918838262558, + -0.008339494466781616, + -0.07409937679767609, + 0.10161364823579788, + 0.09549792110919952, + 0.08607536554336548, + 0.12705202400684357, + 0.09596799314022064, + 0.014944924041628838, + 0.003153093159198761, + -1.7794643640518188, + 0.2692394256591797, + -0.2340606451034546, + 0.02626788057386875, + -0.01167277991771698, + -0.17360106110572815, + -0.15239858627319336, + 0.005266301333904266, + -0.03352393954992294, + -0.016881845891475677, + -0.3633105456829071, + -0.04394146800041199, + 0.29767870903015137, + -0.22003456950187683, + -0.1221090704202652, + -0.04356447607278824, + 0.04366851598024368, + 0.1931852549314499, + 0.0017931647598743439, + -0.021587487310171127, + -0.14925727248191833, + -0.2695643901824951, + -0.2570745348930359, + 0.04176616668701172, + -0.144301176071167, + -0.18760330975055695, + -0.14311464130878448, + -0.04777882248163223, + -0.11676836013793945, + -0.09362698346376419, + -0.18840916454792023, + 0.006836153566837311, + 0.08628004789352417, + -0.020515933632850647, + 0.10621362179517746, + -0.014384586364030838, + -0.015259988605976105, + -0.28905707597732544, + -0.07098881155252457, + -0.18947327136993408, + 0.08983845263719559, + -0.03188307583332062, + 0.20974451303482056, + -0.17685961723327637, + -0.11480177193880081, + -0.1295274794101715, + 0.5402500629425049, + -0.0688706636428833, + 0.19453659653663635, + -0.2344350963830948, + 0.1361417919397354, + -0.38707879185676575, + -0.2491339147090912, + -0.3727181553840637, + -0.13555417954921722, + -0.23138615489006042, + 0.2447792887687683, + -0.05092376470565796, + 0.4338785409927368, + 0.2663930058479309, + -0.11323849111795425, + 0.09606436640024185, + 0.008390501141548157, + -0.02271343395113945, + 0.012697964906692505, + 0.042479828000068665, + 0.049662746489048004, + 0.19917218387126923, + 0.027148228138685226, + 0.22643201053142548, + -0.08845250308513641, + 0.001663360744714737, + -0.14041605591773987, + 0.2364804446697235, + 0.08195354044437408, + -0.0020411908626556396, + -0.023892894387245178, + 0.243008553981781, + -0.11193811148405075, + -0.184635192155838, + 0.016070500016212463, + -0.057552486658096313, + -0.006996281445026398, + 0.24016670882701874, + 0.15933746099472046, + -0.062005143612623215, + -0.11737307906150818, + 0.13061466813087463, + -0.08840961754322052, + -0.013072056695818901, + 0.01648930460214615, + 0.10044686496257782, + 0.0006954874843358994, + -0.0006065517663955688, + -0.18742451071739197, + -0.17646950483322144, + -0.09705831110477448, + -0.21200887858867645, + 0.28350746631622314, + -0.01993112824857235, + 0.0059513552114367485, + -0.02744210511445999, + 0.1405891478061676, + -0.2041773498058319, + 0.1480097472667694, + -0.060821324586868286, + 0.10708922147750854, + 0.13944905996322632, + -0.059301361441612244, + 0.07895638793706894, + 0.2297000288963318, + 0.029316149652004242, + -0.13562095165252686, + 0.10310055315494537, + 0.12292949110269547, + -0.002993447706103325, + -0.06062529981136322, + 0.0040679387748241425, + -0.03930205479264259, + 0.5286421179771423, + 0.07832278311252594, + 0.1167929619550705, + 0.1027190312743187, + -0.049528490751981735, + -0.0769578367471695, + 0.0832502543926239, + 0.13383451104164124, + -0.06830208003520966, + 0.11992792785167694, + -0.2012239396572113, + -0.08334016054868698, + -0.09751274436712265, + -0.2076580822467804, + -0.19037675857543945, + 0.05274294316768646, + -0.031639374792575836, + -0.05325084924697876, + 0.09561040997505188, + -0.21963584423065186, + -0.059311676770448685, + -0.2350151538848877, + -0.07832410931587219, + 0.09662429988384247, + 0.054177816957235336, + 0.24680912494659424, + 0.19627174735069275, + -0.3292663097381592, + -0.04953061416745186, + -0.07187149673700333, + -0.20759542286396027, + 0.19465211033821106, + -0.0215836763381958, + 0.06786856055259705, + -0.09643693268299103, + -0.010632096789777279, + 0.14935913681983948, + 0.11836296319961548, + 0.17090526223182678, + -0.10587318986654282, + 0.16629889607429504, + 0.29963797330856323, + 0.07390040904283524, + 0.06945480406284332, + -0.48215097188949585, + -0.05408387631177902, + -0.043759413063526154, + 0.08545104414224625, + -0.058855943381786346, + 0.2874235510826111, + -0.007463445886969566, + -0.017169442027807236, + -0.05583412945270538, + -0.071998730301857, + 0.12607264518737793, + -0.12470763921737671, + -0.17007701098918915, + 0.08055843412876129, + 0.01844295859336853, + 0.013652101159095764, + -0.03779301419854164, + 0.054716650396585464, + 0.08103211224079132, + -0.22755739092826843, + -0.14688491821289062, + 0.009204983711242676, + 0.07531024515628815, + -0.010800007730722427, + -0.047324858605861664, + 0.06620863080024719, + -0.0004273848608136177, + 0.0940479189157486, + -0.10490261763334274, + -0.15916544198989868, + -0.030953509733080864, + 0.037742771208286285, + -0.20928671956062317, + -0.18586485087871552, + -0.07656807452440262, + 0.1257452517747879, + 0.17271098494529724, + 0.09052422642707825, + -0.08156570792198181, + 0.0006437748670578003, + 0.13875465095043182, + -0.021158700808882713, + -0.03901650756597519, + -0.16470280289649963, + 0.02882746234536171, + -0.00575748085975647, + 0.45424413681030273, + 0.14728665351867676, + -0.009793207049369812, + 0.1833953708410263, + -0.07441380620002747, + 0.09733350574970245, + 0.043768249452114105, + 0.2268332540988922, + 0.1796325147151947, + 0.12085724622011185, + 0.27038809657096863, + -1.1984407901763916, + 0.17930075526237488, + 0.07725594937801361, + -0.1189163401722908, + -0.1804502010345459, + -0.15887030959129333, + -0.1088441014289856, + 0.1127874106168747, + -0.02618412859737873, + 0.07806462049484253, + -0.09874579310417175, + 0.23048382997512817, + 0.05498603731393814, + 0.0484793446958065, + -0.3343872129917145, + 0.10905230045318604, + -0.19426874816417694, + 0.07865935564041138, + -0.036012183874845505, + 0.014155149459838867, + 0.05707809701561928, + -0.1003963053226471, + 0.24635495245456696, + -0.06318656355142593, + 0.06849454343318939, + -0.020193856209516525, + 0.023490503430366516, + -0.11809687316417694, + -0.02592475339770317, + -0.15383145213127136, + -0.1510644257068634, + 0.21720218658447266, + 0.04976736381649971, + -0.03861048072576523, + 0.12444940209388733, + 0.00023114308714866638, + 0.07165864109992981, + 0.29442405700683594, + 0.08993817865848541, + 0.21629154682159424, + -0.020063085481524467, + 0.06180232763290405, + 0.11497846990823746, + -0.1704607903957367, + 0.2014157474040985, + 0.009586874395608902, + 0.2056557536125183, + -0.008938420563936234, + -0.23506471514701843, + 0.07677174359560013, + 0.07599447667598724, + -0.3631812036037445, + -0.0904003232717514, + 0.01457124948501587, + 0.23115859925746918, + 0.03225269168615341, + -0.011502807028591633, + -0.07845958322286606, + -0.024396583437919617, + -0.198074072599411, + 0.20523659884929657, + -0.12132204324007034, + -0.4219433069229126, + 0.019657336175441742, + -0.2645329236984253, + 0.15341070294380188, + -0.1497502326965332, + -0.046779267489910126, + 0.04585997760295868, + 0.06841672956943512, + -0.16644787788391113, + 0.06488384306430817, + -0.127912700176239, + 0.37584787607192993, + -0.27175265550613403, + 0.056103456765413284, + -3.845244646072388e-05, + 0.1636694073677063, + 0.31660813093185425, + 0.08194316923618317, + -0.11706025153398514, + -0.1292966902256012, + 0.1327899545431137, + 0.03264504671096802, + -0.09165464341640472, + -0.04782264679670334, + 0.07029063254594803, + 0.012622103095054626, + -0.006499338895082474, + -0.1932397037744522, + -0.15492001175880432, + -0.013607919216156006, + -0.10425616800785065, + 0.08750280737876892, + -0.35651344060897827, + -0.20929791033267975, + 0.08052726089954376, + -0.09081043303012848, + 0.017256198450922966, + 0.2980756461620331, + 0.05459176003932953, + 0.0688387006521225, + -0.19078494608402252, + -0.1579360067844391, + 0.19455140829086304, + 0.17208527028560638, + 0.04357082396745682, + -0.05995327606797218, + 0.07729534804821014, + 0.010576155036687851, + 0.22911575436592102, + 0.40362221002578735, + -0.2797313630580902, + -0.24823305010795593, + -0.16568276286125183, + 0.15365223586559296, + 0.0589740127325058, + 0.1103631928563118, + 0.13180220127105713, + 0.1612566113471985, + 0.005249574780464172, + 0.17177776992321014, + 0.034721869975328445, + -0.0972367599606514, + 0.05887237936258316, + 0.1025608479976654, + 0.0791659951210022, + -0.3520374298095703, + -0.0594075545668602, + 0.3583151698112488, + 0.11228276789188385, + -0.1960689276456833, + 0.0012856163084506989, + -0.06526559591293335, + -0.046098753809928894, + -0.0400179848074913, + 0.11745548993349075, + 0.058725278824567795, + -0.22193701565265656, + 0.11555351316928864, + 0.13900843262672424, + -0.15774309635162354, + 0.12214555591344833, + -0.09156361222267151, + -0.7167692184448242, + 0.1306311935186386, + 0.030619673430919647, + -0.1959521770477295, + -0.05842658877372742, + -0.28994303941726685, + -0.014537117443978786, + 0.3691225051879883, + -0.16932235658168793, + -0.04755550995469093, + -0.05346003174781799, + 0.05854994058609009, + 0.09854824841022491, + -0.11919047683477402, + -0.22402575612068176, + 0.0591140016913414, + -0.010429903864860535, + -0.0833268091082573, + -0.20184239745140076, + -0.098837710916996, + -0.009432114660739899, + -0.09736092388629913, + 0.28553110361099243, + 0.4699056148529053, + -0.1682106852531433, + 0.07664644718170166, + 0.06693508476018906, + 0.3321512043476105, + -0.000859677791595459, + -0.07264158129692078, + -0.15162959694862366, + 0.5055493116378784, + 0.08413699269294739, + -0.41624119877815247, + 0.051741473376750946, + 0.2694450318813324, + 0.03798951208591461, + 0.0023126229643821716, + -0.22095780074596405, + -0.04131343215703964, + 0.11351882666349411, + -0.07601819932460785, + 0.402473121881485, + -0.054116249084472656, + -0.122261181473732, + 0.07652569562196732, + -0.1277717649936676, + -0.1559572070837021, + 0.024726416915655136, + 0.1561529040336609, + -0.13697034120559692, + 0.38770580291748047, + -0.10619848966598511, + -0.39194583892822266, + 0.18531697988510132, + -0.008724603801965714, + -0.17511220276355743, + -0.03728746622800827, + -0.06541615724563599, + -0.04673917591571808, + -0.02208876609802246, + 0.000751107931137085, + -0.22483325004577637, + -0.1330864578485489, + -0.15167415142059326, + -0.007608141750097275, + -0.2065894603729248, + 0.22030489146709442, + 0.1255226880311966, + 0.04083704203367233, + -0.3662462532520294, + -0.35377323627471924, + 0.0947180986404419, + 0.3753753900527954, + -1.4299392700195312, + -0.8351214528083801, + 0.1680998057126999, + 0.0027498751878738403, + 0.14285969734191895, + -0.016675010323524475, + -0.017492640763521194, + -0.4856221377849579, + -0.32890039682388306, + -0.0919802188873291, + 0.007631490007042885, + -0.04744569957256317, + -0.12475904822349548, + 0.09582868218421936, + 0.12983322143554688, + -0.11373716592788696, + 0.11394129693508148, + 0.44122278690338135, + 0.18509581685066223, + -0.10360868275165558, + -0.21804048120975494, + -0.054714635014534, + -0.5598103404045105, + 0.09432206302881241, + 0.06931918859481812, + -0.13098673522472382, + 0.0053776949644088745, + 0.04441523551940918, + -0.16563862562179565, + 0.01613108441233635, + -0.004240252077579498, + -0.22405847907066345, + 0.08768067508935928, + 0.15993192791938782, + 0.06048361957073212, + -0.04703895002603531, + -0.10454916954040527, + -0.02728980779647827, + 0.07976484298706055, + 0.09903175383806229, + -0.4357582628726959, + 0.02517993561923504, + 0.2365221083164215, + 0.14236952364444733, + 0.27648085355758667, + 0.13471129536628723, + 0.02415018156170845, + 0.1292131543159485, + 0.3084130585193634, + 0.314954549074173, + 0.4225025177001953, + 0.052258074283599854, + 0.050238557159900665, + 0.10486949235200882, + -0.03337537497282028, + 0.15130320191383362, + 0.021175451576709747, + -0.45088309049606323, + 0.1672331690788269, + -0.000807550735771656, + 0.17857977747917175, + -0.1833106428384781, + 0.09724447876214981, + -0.19902414083480835, + 0.2838701009750366, + -0.12427201867103577, + 0.07551306486129761, + 1.1059212684631348, + 0.007291032001376152, + 0.04717792570590973, + -0.023862000554800034, + 0.1587372124195099, + -0.004651717841625214, + -0.30818915367126465, + 0.011527586728334427, + 0.8179126381874084, + -0.3002791106700897, + -0.28143155574798584, + 0.28481999039649963, + -0.09079417586326599, + 0.10300493985414505, + -0.07350532710552216, + 0.30113685131073, + 0.1681046038866043, + -0.11788184940814972, + -0.060439493507146835, + 0.0686672031879425, + 0.09815230965614319, + -0.1066267192363739, + 0.16024450957775116, + -0.09117230772972107, + -0.0014648758806288242, + -0.00018162280321121216, + 0.02272964082658291, + 0.03541627153754234, + 0.0021134503185749054, + -0.052054472267627716, + 0.1870098114013672, + 0.003908431623131037, + 0.02200351655483246, + -0.02803819626569748, + 0.06430572271347046, + 0.04314778372645378, + -0.12222050130367279, + 0.027259638532996178, + -0.1751609742641449, + 0.07718139886856079, + 0.016896940767765045, + 0.03889447823166847, + 0.05591451749205589, + 0.22082461416721344, + 0.02877240628004074, + 0.12750938534736633, + 0.02120066061615944, + -0.14370858669281006, + 1.0625783205032349, + -0.19340458512306213, + -0.22740644216537476, + 0.18516136705875397, + -0.16084930300712585, + -0.055445797741413116, + -0.18550507724285126, + 0.606389045715332, + -0.0664377212524414, + 0.1016203910112381, + 0.09746377170085907, + 0.15884172916412354, + 0.03814762830734253, + 0.030111324042081833, + 0.04551348835229874, + -0.07156161963939667, + -0.029725847765803337, + 0.09260844439268112, + 0.12726473808288574, + -0.08415310084819794, + -0.2024674117565155, + -0.17610470950603485, + -0.2772587835788727, + 0.19412507116794586, + 0.28661268949508667, + -0.023821117356419563, + -0.09853313863277435, + 0.0005194693803787231, + -0.0830138549208641, + -0.06737121194601059, + 0.38737890124320984, + -0.15024301409721375, + -0.2160586565732956, + -0.011952683329582214, + -0.11387652158737183, + 0.023738529533147812, + -0.0030029695481061935, + 0.05507088452577591, + -0.1450103521347046, + -0.07142029702663422, + -0.020076029002666473, + 0.018892066553235054, + -0.04798399284482002, + -0.055227383971214294, + -0.06418374925851822, + -0.010174334049224854, + 0.03775886446237564, + 0.1268317699432373, + -0.08252853900194168, + 0.1980830729007721, + -0.019824523478746414, + -0.0243348628282547, + 0.049681246280670166, + 0.01490817405283451, + -0.13717389106750488, + 0.03844727575778961, + 0.09927728772163391, + 0.036818958818912506, + 0.04680819436907768, + 0.050006769597530365, + -0.2006494104862213, + 0.2442210614681244, + -0.030003465712070465, + -0.16050128638744354, + 0.050208669155836105, + -0.21894440054893494, + 0.20146149396896362, + -0.07143479585647583, + 0.09939353913068771, + -0.09880813956260681, + 0.19158180058002472, + 0.15413826704025269, + -0.15133750438690186, + 0.07513377070426941, + 0.43274617195129395, + 0.027413342148065567, + -0.05297158658504486, + 0.16857188940048218, + 0.2378091812133789, + -0.17714039981365204, + 0.06514406204223633, + -0.04207081347703934, + -0.2183956503868103, + 0.07559369504451752, + -0.041498441249132156, + 0.2878078818321228, + 0.07620757073163986, + -0.03762064501643181, + 0.298270046710968, + 0.13358217477798462, + -0.034208305180072784, + 0.2820812463760376, + -0.09508821368217468, + -0.009805027395486832, + 0.1490013301372528, + 0.3504616320133209, + -0.04733424633741379, + -0.12414136528968811, + 0.2577187418937683, + -0.17302897572517395, + 0.060559436678886414, + 0.020768841728568077, + 0.22290968894958496, + 0.19322672486305237, + -0.23032838106155396, + -0.03845646232366562, + -0.1970355212688446, + 0.24939048290252686, + 0.062111496925354004, + -0.10289676487445831, + 0.013128502294421196, + 0.11538673937320709, + 0.25365784764289856, + -0.04163078963756561, + 0.18102923035621643, + 0.12428098917007446, + -0.2287731170654297, + 0.0036508366465568542, + -0.013957779854536057, + -0.0957997739315033, + 0.2014230489730835, + 0.46896272897720337, + 0.07929055392742157, + 0.31639575958251953, + 0.015397362411022186, + 0.07755832374095917, + -0.21959127485752106, + -0.01961272582411766, + -0.2937987148761749, + -0.03502814471721649, + -0.03142674267292023, + 0.0200837180018425, + -0.04737842082977295, + 0.03985597565770149, + -0.13255885243415833, + 0.9598022699356079, + -0.10026735812425613, + 0.07965883612632751, + -0.1300802230834961, + -0.11072847992181778, + 0.07173874974250793, + -0.29771551489830017, + -0.31542733311653137, + -0.15414467453956604, + -0.01180478185415268, + -0.17586815357208252, + -0.0514647401869297, + 0.2650463581085205, + 0.0067136348225176334, + 0.09224158525466919, + -0.08039969205856323, + -0.038666464388370514, + -0.11758126318454742, + -0.011745080351829529, + 0.021003901958465576, + 0.9082857370376587, + 0.177774116396904, + -0.2191239893436432, + -0.09450236707925797, + -0.17195913195610046, + 0.08660265803337097, + -0.19349923729896545, + -0.10623662173748016, + -0.04966215044260025, + 0.07847773283720016, + 0.10679377615451813, + 0.27477413415908813, + -0.14469823241233826, + 0.004627075046300888, + 0.032568465918302536, + 0.03831680119037628, + 0.14945027232170105, + -0.06433965265750885, + -0.19758835434913635, + -0.030982837080955505, + 0.19352668523788452, + 0.006744816899299622, + 0.1738554835319519, + -0.06398390233516693, + 0.0009072944521903992, + -0.05888943001627922, + 0.38017189502716064, + -0.38315823674201965, + -0.10890550166368484, + 0.09152919054031372, + 0.1677524447441101, + -0.5917640924453735, + -0.03230906277894974, + 0.18618392944335938, + 0.11064569652080536, + -0.00944507122039795, + 0.08392594754695892, + 0.1373915821313858, + -0.36514073610305786, + -0.185418501496315, + -0.2039411962032318, + 0.014530442655086517, + 0.050564296543598175, + -0.09527770429849625, + 0.06125549226999283, + 0.03781871497631073, + 0.28872278332710266, + 0.1812390834093094, + -0.19250188767910004, + 0.1852611005306244, + 0.06452489644289017, + 0.1789754033088684, + -0.011111199855804443, + 0.08331085741519928, + -0.124751016497612, + -0.1271105706691742, + 0.104218989610672, + -0.06718020141124725, + 0.2948462963104248, + -0.09647423774003983, + 0.0029819905757904053, + -0.2189224511384964, + -0.11956334114074707, + 0.09824667125940323, + 0.16111931204795837, + 0.0667816549539566, + 0.10748042166233063, + -0.6974839568138123, + 0.20915743708610535, + 0.39456525444984436, + -0.24067455530166626, + 0.269469290971756, + 1.2518463134765625, + 0.03883936628699303, + -0.05082061141729355, + 0.1114400178194046, + -0.14169509708881378, + 0.06075751781463623, + -0.2708652913570404, + 0.10850165784358978, + 0.031136807054281235, + -0.19099503755569458, + -0.1831817626953125, + 0.05470649152994156, + -0.06115104258060455, + 0.8374344706535339, + -0.09544146060943604, + 0.19494685530662537, + -0.03509805351495743, + 0.1972619742155075, + -0.01698967069387436, + -0.420024573802948, + -0.1201881468296051, + 0.1410699337720871, + -0.14334994554519653, + 0.12583842873573303, + -0.08093522489070892, + -0.3084159195423126, + -0.1266607642173767, + 0.09462831169366837, + -0.1423196941614151, + 0.051193591207265854, + 0.1440027356147766, + 0.0664055123925209, + 0.0987442284822464, + -0.1398758590221405, + -0.11345696449279785, + 0.10538702458143234, + 0.2282104194164276, + 0.024061767384409904, + -0.08608709275722504, + -0.1878948211669922, + -0.13971632719039917, + -0.10633891075849533, + -0.3421567380428314, + -0.11702729761600494, + 0.08930681645870209, + 0.02856508269906044, + 0.10318540781736374, + -0.22038844227790833, + 0.19339700043201447, + 0.04844416677951813, + 0.18271125853061676, + -0.07052646577358246, + 0.7620590925216675, + 0.020895617082715034, + 0.09711853414773941, + 0.09481441974639893, + 0.03107469342648983, + -0.11379224061965942, + -0.04211526736617088, + -0.021563973277807236, + 0.031364310532808304, + 0.22756047546863556, + -0.34052473306655884, + 0.16051901876926422, + 0.4346945583820343, + -0.4079904556274414, + -0.006463140249252319, + -0.14765673875808716, + -0.2115296721458435, + -0.17412137985229492, + -0.06710827350616455, + 0.22024019062519073, + 0.28243935108184814, + -0.029495850205421448, + 0.058366671204566956, + -0.1337062269449234, + 0.17651796340942383, + -0.11782285571098328, + 0.15948140621185303, + 0.02813449315726757, + 0.15648216009140015, + -0.04386405646800995, + 0.18484210968017578, + 0.12651260197162628, + -0.14084182679653168, + -0.14143282175064087, + 0.0011701583862304688, + 0.031748317182064056, + -0.0737147107720375, + 0.04324302822351456, + -0.05235641449689865, + -0.17647048830986023, + 0.06534089148044586, + -0.20351310074329376, + -0.06120606139302254, + 0.05560402572154999, + 0.01689895987510681, + -0.09323273599147797, + -0.06173432618379593, + 0.03017369657754898, + 0.16614514589309692, + 0.10643372684717178, + 0.012839153409004211, + -0.09452595561742783, + 0.02711375802755356, + 0.07922642678022385, + 0.20169954001903534, + -0.06801052391529083, + 0.28064674139022827, + 0.0538918599486351, + 0.08407881110906601, + -0.16809289157390594, + 0.225662499666214, + -0.03404631465673447, + -0.3271345794200897, + 0.025891654193401337, + 0.1958099603652954, + -0.26820430159568787, + 0.015432614833116531, + -0.11152327060699463, + 0.003612387925386429, + 0.17705388367176056, + 0.055293552577495575, + -0.19655440747737885, + -0.2735021710395813, + 0.1637253314256668, + -0.0296403169631958, + 0.18766766786575317, + -0.08931268006563187, + 0.2778266370296478, + -0.11640103161334991, + 0.1301804482936859, + -0.41057682037353516, + 0.08990489691495895, + -0.09773866832256317, + -0.11236467957496643, + 0.14182786643505096, + -0.451334685087204, + 0.008603056892752647, + 0.301795095205307, + -0.12146009504795074, + 0.11041678488254547, + 0.059149257838726044, + -0.2943708300590515, + 0.04587037116289139, + 0.03832478076219559, + -0.043569330126047134, + -0.1510813683271408, + -0.12773145735263824, + 0.24495594203472137, + -0.24471953511238098, + 0.30351871252059937, + 0.1964050829410553, + -0.045492708683013916, + -0.09787718206644058, + -0.3474327325820923, + -0.12365050613880157, + -0.014725126326084137, + -0.06516046822071075, + 0.2042689174413681, + 0.1171598881483078, + 0.06659970432519913, + 0.4193604588508606, + -0.02194417268037796, + 0.09045213460922241, + 0.08070236444473267, + 0.06648725271224976, + -0.04546455666422844, + -0.01814662665128708, + 0.09324389696121216, + -0.09284822642803192, + -0.07425510883331299, + -0.043944280594587326, + -0.03874814510345459, + 0.17542144656181335, + -0.04253467172384262, + 0.17627419531345367, + -0.03357171639800072, + -0.047387827187776566, + 0.09087012708187103, + -0.16858765482902527, + -0.19560089707374573, + 0.11829857528209686, + -0.1163565069437027, + -0.22391432523727417, + -0.4020005166530609, + 0.00888806488364935, + 0.012666180729866028, + -0.2576453685760498, + -0.09189735352993011, + 0.09330881386995316, + -0.08623123168945312, + -0.1343165785074234, + -0.2773641049861908, + -0.11872340738773346, + 0.18134944140911102, + -0.028945911675691605, + -0.13437075912952423, + -0.19128695130348206, + -0.31333044171333313, + 0.08717738837003708, + -0.031226933002471924, + -0.11161690950393677, + -0.005411803722381592, + -0.16980114579200745, + 0.1241689920425415, + -0.07093169540166855, + 0.06263305991888046, + 0.17133408784866333, + 0.015268441289663315, + -0.17250579595565796, + -0.07486327737569809, + 0.17191731929779053, + -0.07105472683906555, + 0.15642979741096497, + 0.12194155901670456, + 0.14406652748584747, + -0.11496144533157349, + 0.11312812566757202, + 0.008079428225755692, + -0.028212258592247963, + 0.2726880609989166, + 0.18626275658607483, + 0.23628216981887817, + -0.27492743730545044, + -0.23375211656093597, + 0.11911527812480927, + -0.06282748281955719, + -0.08369037508964539, + 0.1075574979186058, + 0.14836566150188446, + 0.025814581662416458, + -0.0005618706345558167, + 0.09149247407913208, + -0.0919332355260849, + 0.06273378431797028, + 0.2429189831018448, + 0.07214988768100739, + -0.12979567050933838, + -0.27806714177131653, + -0.07683810591697693, + -0.28589504957199097, + -0.0561491884291172, + -0.2027972936630249, + -0.16548526287078857, + -0.26403117179870605, + 0.08153359591960907, + 0.12592734396457672, + -0.04312998056411743, + -0.36612460017204285, + 0.2671840190887451, + -0.2800481915473938, + 0.04359632730484009, + 0.06996314227581024, + 0.14831660687923431, + 0.08661127090454102, + 0.02818569540977478, + -0.1194756031036377, + -0.0720120444893837, + -0.21011817455291748, + -0.0948503166437149, + 0.07536760717630386, + 0.06117107719182968, + 0.13198356330394745, + -0.11446575075387955, + 0.08805910497903824, + -0.45813554525375366, + -0.1522594690322876, + -0.054335009306669235, + 0.022181808948516846, + 0.03309208154678345, + -0.20180955529212952, + -0.07617629319429398, + -0.019826795905828476, + -0.2008243203163147, + 0.42788299918174744, + 0.06536156684160233, + -0.029354676604270935, + -0.19474776089191437, + 0.23551955819129944, + 0.038102827966213226, + -0.26625096797943115, + -0.15862658619880676, + -0.018975071609020233, + -0.2052469253540039, + 0.08568045496940613, + 0.03127865493297577, + -0.08895532786846161, + -0.23394617438316345, + 0.1114216148853302, + -0.07808800041675568, + 0.05072382837533951, + -0.037495389580726624, + -0.11947295069694519, + 0.018556684255599976, + 0.046058282256126404, + 0.19835424423217773, + 0.2829222083091736, + -0.23054316639900208, + -0.13152632117271423, + 0.15052349865436554, + 0.010622531175613403, + 0.06630241870880127, + 0.07155749946832657, + -0.1327410489320755, + 0.00179213285446167, + -0.22278228402137756, + 0.3478230834007263, + -0.1905311495065689, + -0.07167278230190277, + 0.035008013248443604, + 0.17425015568733215, + 0.1953277289867401, + -0.16513577103614807, + -0.07537269592285156, + -0.513771653175354, + 0.037318162620067596, + 0.027385778725147247, + 0.2313401699066162, + -0.3368041515350342, + -0.07544418424367905, + -0.177342027425766, + 0.12452693283557892, + -0.3431483805179596, + -0.08221632242202759, + 0.03940342739224434, + 0.24806559085845947, + 0.11565548181533813, + 0.07553400099277496, + -0.04738670215010643, + -0.28811317682266235, + -0.042521435767412186, + 0.1867464929819107, + -0.14201071858406067, + 0.1550581455230713, + 0.10061188787221909, + -0.11907527595758438, + 0.5298636555671692, + -0.008634790778160095, + -0.09879409521818161, + 0.0919661596417427, + -0.021609202027320862, + -0.2984847128391266, + -0.054765451699495316, + -0.21035432815551758, + 0.20754310488700867, + -0.0413585901260376, + 0.10067885369062424, + -0.03318559378385544, + -0.07491716742515564, + -0.05245105177164078, + 0.02553955651819706, + -0.10826519131660461, + 0.028253942728042603, + -0.10927851498126984, + -0.16345947980880737, + -0.05639379844069481, + 0.061500124633312225, + 0.21268850564956665, + -0.15988945960998535, + -0.3241443336009979, + 0.052261270582675934, + 0.12813100218772888, + 0.2744046449661255, + 0.016082555055618286, + 0.20284152030944824, + 0.001389890443533659, + 0.1602497398853302, + 0.7262420654296875, + 0.035123586654663086, + 0.07825290411710739, + -0.43214184045791626, + -0.08213505148887634, + -0.33985915780067444, + -0.15116548538208008, + 0.2553648054599762, + 0.05475497618317604, + -0.056467652320861816, + 0.1614973247051239, + 0.10965004563331604, + -0.07271121442317963, + -0.11744681000709534, + 0.5381287336349487, + -0.10878219455480576, + -0.12003133445978165, + -0.2815569043159485, + -0.16307379305362701, + 0.10341665148735046, + -0.0897134318947792, + 0.38408350944519043, + 0.07523213326931, + 0.08930888026952744, + 0.6038129925727844, + 0.2320525050163269, + -0.23751583695411682, + -0.07320041209459305, + -0.01538153737783432, + 0.08891157060861588, + -0.0680016279220581, + 0.05677150934934616, + -0.16452905535697937, + -0.21488426625728607, + 0.1698714792728424, + 0.1828540414571762, + -0.010636034421622753, + -0.1085665374994278, + -0.20852701365947723, + 0.03367401286959648, + 0.11992460489273071, + 0.08439989387989044, + -0.1727035492658615, + 0.1723213940858841, + -0.09360751509666443, + 0.07149762660264969, + -0.37190842628479004, + 0.04594782739877701, + -0.0024907849729061127, + -0.7726581692695618, + 0.17023494839668274, + -0.1571904867887497, + 0.1708042025566101, + -0.0021370574831962585, + 0.1593412458896637, + 0.3184497654438019, + 0.18229728937149048, + -0.058936603367328644, + -0.027363311499357224, + 0.0881386324763298, + 0.12048405408859253, + -0.05356962978839874, + -0.023110002279281616, + 0.10616648197174072, + 0.09289054572582245, + 0.18969044089317322, + -0.13288919627666473, + 0.04096665233373642, + 0.18204982578754425, + -0.029588893055915833, + -0.07875403761863708, + 0.0845809131860733, + -0.05058595910668373, + -0.051266320049762726, + -0.02941279299557209, + 0.18643318116664886, + 0.12689083814620972, + -0.04933938756585121, + 0.20487159490585327, + 0.03844496235251427, + -0.034100599586963654, + -0.32144343852996826, + -0.17384803295135498, + -0.11133173108100891, + 0.14759372174739838, + 0.3090054988861084, + 0.05884825065732002, + -0.2976667881011963, + -0.1343826800584793, + -0.012680960819125175, + -0.03988538682460785, + 0.03562717139720917, + 0.004360858350992203, + 0.6691568493843079, + -0.3695791959762573, + 0.29795315861701965, + -0.06991901993751526, + -0.20536096394062042, + 0.02311290241777897, + 0.005234993994235992, + -0.1439187079668045, + -0.0007752580568194389, + 0.02311064675450325, + 0.044944025576114655, + 0.27170616388320923, + -0.22274556756019592, + -0.020001955330371857, + 0.040871039032936096, + -0.0551389679312706, + -0.33466774225234985, + -0.25443482398986816, + 0.12213347107172012, + -0.24586203694343567, + 0.10436618328094482, + -0.11153796315193176, + -0.13781169056892395, + 0.061029594391584396, + 0.24245336651802063, + -0.02619326114654541, + 0.21619269251823425, + -0.04063445329666138, + -0.2816688120365143, + -0.24626688659191132, + 0.08341042697429657, + -0.2305298000574112, + -0.14996254444122314, + -0.0971723198890686, + 0.11480898410081863, + -0.13518387079238892, + -0.08495703339576721, + 0.21107913553714752, + -0.06928479671478271, + 0.046347036957740784, + 0.2834092080593109, + -0.01969258114695549, + -0.2067234218120575, + -0.10609179735183716, + 0.07054376602172852, + -0.11919614672660828, + -0.0065896883606910706, + -0.022190053015947342, + -0.09140695631504059, + 0.024653982371091843, + -0.2281540483236313, + 0.10827316343784332, + -0.13664191961288452, + 0.23939213156700134, + 0.027205586433410645, + -0.20503471791744232, + -0.1614847332239151, + 0.13129283487796783, + 0.07697725296020508, + 0.2194894254207611, + 0.14897584915161133, + -0.06266388297080994, + -0.08570297062397003, + -0.015175271779298782, + 0.07026747614145279, + 0.08728673309087753, + -0.030135974287986755, + 0.40389180183410645, + -0.17767231166362762, + 0.06182904541492462, + -0.1884019672870636, + 0.09364748001098633, + 0.08641687035560608, + 0.28317990899086, + -0.15462899208068848, + -0.07045095413923264, + 0.05459992587566376, + 0.028175711631774902, + 0.026489723473787308, + 0.032493483275175095, + -0.05372204631567001, + 0.1653924286365509, + 0.14352402091026306, + 0.6289182901382446, + 0.1795705258846283, + -0.008323147892951965, + 0.007664110511541367, + 0.1125974953174591, + -0.29464349150657654, + 0.09706214815378189, + -0.04686686396598816, + 0.007259294390678406, + 0.12855760753154755, + 0.09235537797212601, + 0.23131348192691803, + 0.040585797280073166, + -0.14486390352249146, + -0.11449384689331055, + 0.060232166200876236, + -0.02323009818792343, + -0.6559431552886963, + -0.061287734657526016, + -0.2308856099843979, + -0.1298341155052185, + 0.13167719542980194, + -0.1328069418668747, + 0.05605745315551758, + -0.11997124552726746, + 0.20722442865371704, + -0.6486570835113525, + 0.1109146997332573, + -0.11549094319343567, + 0.26668328046798706, + -0.04107766970992088, + -0.5543897747993469, + 0.036144185811281204, + 0.020292147994041443, + -0.006271533668041229, + -0.12802305817604065, + -0.044451192021369934, + -0.11478471755981445, + -0.09676223993301392, + -0.049320705235004425, + -0.020840652287006378, + -0.018760018050670624, + -0.09792818874120712, + -0.03244030475616455, + -0.19455865025520325, + 0.0026775645092129707, + -0.06668396294116974, + -0.3967127799987793, + 0.08356952667236328, + 0.06288892775774002, + -0.01962168514728546, + 0.05016016587615013, + 0.05241742730140686, + -0.07055608928203583, + -0.0935763269662857, + -0.0013888543471693993, + -0.02631058171391487, + -0.4830268323421478, + -0.03161510080099106, + 0.05802999064326286, + -0.18485552072525024, + 0.08853812515735626, + -0.14137132465839386, + -0.04367036372423172, + -0.11387356370687485, + 0.06377030909061432, + 0.0056111738085746765, + -0.045998867601156235, + -0.03711006045341492, + -0.026322994381189346, + -0.011827554553747177, + -0.08027467131614685, + 0.13472285866737366, + -0.030153799802064896, + 0.13915300369262695, + 0.25334322452545166, + 0.11706582456827164, + -0.05930045247077942, + -0.012613415718078613, + 0.05643229931592941, + 0.24827951192855835, + 0.08829239010810852, + 0.03805088996887207, + 0.20087963342666626, + 1.0213844776153564, + 0.0648488998413086, + -0.031216371804475784, + 0.21756252646446228, + 0.07148735225200653, + -0.019013725221157074, + 0.06156542897224426, + 0.13640369474887848, + -0.01156790554523468, + 0.12559589743614197, + -0.0416686050593853, + -0.1716417670249939, + 0.4118003845214844, + -0.18974655866622925, + 0.14894509315490723, + 0.30893582105636597, + -0.2867504954338074, + 0.048920419067144394, + -0.20646126568317413, + -0.10468944907188416, + -0.24979084730148315, + -0.05162703990936279, + -0.07867023348808289, + -0.35660597681999207, + -0.1877923607826233, + 0.20449237525463104, + 0.15766119956970215, + 0.07393668591976166, + -0.19532006978988647, + -0.08227362483739853, + 0.00016450881958007812, + 0.04614905267953873, + 0.262125164270401, + 0.04551302641630173, + -0.06968832015991211, + -0.06350792199373245, + -0.2493998110294342, + -0.21802473068237305, + 0.004598340019583702, + 0.024867145344614983, + 0.026752620935440063, + 0.244271919131279, + -0.008498698472976685, + 0.07414881139993668, + 0.08698805421590805, + 0.13808375597000122, + -0.11858660727739334, + 0.10034319013357162, + 0.030725568532943726, + 0.11012417078018188, + -0.0853874608874321, + -0.17732185125350952, + -0.4077107310295105, + 0.15395766496658325, + 0.10301250219345093, + -0.0006575696170330048, + 0.05768879875540733, + 0.14062322676181793, + 0.10254010558128357, + 0.07781490683555603, + 0.13653354346752167, + -0.04560030996799469, + -0.060277312994003296, + -0.1534176915884018, + 0.08099265396595001, + 0.11406601965427399, + 0.16059599816799164, + 0.022150173783302307, + 0.5612796545028687, + 0.07576218992471695, + 0.3287521004676819, + 0.01694779098033905, + -0.19802916049957275, + 0.08990120887756348, + 0.25206494331359863, + 0.004892069846391678, + -0.0048337094485759735, + -0.1290946900844574, + 0.2646125853061676, + -0.10450789332389832, + 0.19900646805763245, + -0.38910773396492004, + -1.031769871711731, + 0.023120198398828506, + -0.0571817047894001, + 0.12005774676799774, + 0.17975221574306488, + -0.16510258615016937, + 0.019002297893166542, + 0.05966049060225487, + 0.029564395546913147, + -0.03918235003948212, + 0.2172211855649948, + -0.012530991807579994, + -0.006908175069838762, + -0.007936090230941772, + 0.13715137541294098, + -0.10847207903862, + -0.04518946632742882, + -0.07412104308605194, + 0.09408961236476898, + -0.1594192385673523, + -0.06772606819868088, + 0.3123209476470947, + -0.024541400372982025, + 0.13848859071731567, + 0.44633641839027405, + 0.1575711965560913, + -0.048587050288915634, + -0.19042429327964783, + -0.2007247507572174, + -0.0793491005897522, + -0.1973859965801239, + 0.03456691652536392, + 0.11804953217506409, + 0.07810363173484802, + -0.09537980705499649, + -0.04759735241532326, + -0.05429811030626297, + 0.01254601776599884, + 0.03884061425924301, + 0.03522377461194992, + 0.12654942274093628, + 0.19772452116012573, + 0.05718722939491272, + 0.07934635877609253, + -0.07987366616725922, + -0.037404902279376984, + -0.13889433443546295, + -0.4314161539077759, + 0.26279568672180176, + -0.01711692102253437, + 0.05369355529546738, + -0.04328347370028496, + -0.07285915315151215, + 0.10471144318580627, + -0.04301068186759949, + -0.06171225756406784, + 0.002186611294746399, + 0.06811300665140152, + 0.28972238302230835, + -0.07262413203716278, + -0.010401993989944458, + 0.0001209154725074768, + 0.0770483911037445, + 0.13975438475608826, + 0.05936511605978012, + -0.5300872921943665, + 0.14637945592403412, + 0.22091969847679138, + -0.019555240869522095, + 0.1474606990814209, + -0.1226617619395256, + -0.020167283713817596, + -0.02784200944006443, + -0.11985030770301819, + 0.11393120884895325, + 0.2143394500017166, + 0.351468950510025, + 0.07264918833971024, + 0.28343915939331055, + 0.09463481605052948, + 0.003819771111011505, + 0.0036028623580932617, + 0.18180420994758606, + -0.1454392969608307, + -0.013897880911827087, + -0.08609230816364288, + -0.09204942733049393, + -0.07404246926307678, + -0.047015562653541565, + 0.025487583130598068, + 0.09489436447620392, + 0.26125937700271606, + 0.1182761937379837, + 0.04174066707491875, + 0.017026277258992195, + 0.07709546387195587, + -0.21646040678024292, + -0.026609346270561218, + -0.00769500806927681, + 0.2286500185728073, + 0.03128749132156372, + -0.07623989135026932, + -0.08377256244421005, + -0.10165593028068542, + 0.03293794393539429, + -0.0012525487691164017, + 0.17847463488578796, + 0.28812330961227417, + -0.06522297859191895, + -0.11345025897026062, + 0.1733473539352417, + 0.08404627442359924, + -0.04428696632385254, + 0.08717414736747742, + 0.09005958586931229, + -0.18176300823688507, + 0.03687982261180878, + -0.005204968154430389, + 0.36798161268234253, + 0.18625953793525696, + 0.08572044223546982, + 0.24275606870651245, + -0.08781670778989792, + -0.4186888337135315, + -0.15742644667625427, + -0.1643349826335907, + 0.15181070566177368, + 0.0032928623259067535, + 0.12118572741746902, + -0.041990991681814194, + -0.160393625497818, + -0.07280125468969345, + 0.24870876967906952, + 0.14124517142772675, + 0.04736645892262459, + 0.19522824883460999, + -0.07826802134513855, + -0.08730599284172058, + 0.06425105035305023, + 0.04058152437210083, + -0.06778405606746674, + -0.02172534540295601, + -0.16114965081214905, + -0.29768601059913635, + 0.05183078348636627, + -0.08198947459459305, + 0.12072811275720596, + -0.2269544154405594, + 0.14235374331474304, + -0.19616150856018066, + -0.030566610395908356, + -0.12897612154483795, + -0.07223238050937653, + 0.3203237056732178, + 0.013845592737197876, + 0.20682287216186523, + -0.14266645908355713, + -0.2713545262813568, + -0.03894226253032684, + 0.018291834741830826, + -0.31730908155441284, + -0.12627577781677246, + 0.1311572790145874, + 0.10120172798633575, + 0.2633768618106842, + -0.12645047903060913, + -0.3047100901603699, + -0.14456436038017273, + 0.17780455946922302, + -0.029137611389160156, + 0.2661101520061493, + -0.07494085282087326, + -0.0703292191028595, + -1.393237590789795, + -0.016878344118595123, + -0.13144072890281677, + -0.030792370438575745, + 0.1855277717113495, + 0.07002979516983032, + 0.04570576176047325, + 0.10574313253164291, + 0.0958375632762909, + 0.0075712259858846664, + 0.06279141455888748, + -0.18128669261932373, + 0.27570992708206177, + 0.06744679063558578, + 0.18702024221420288, + 0.0046037486754357815, + -0.03115292638540268, + 0.004592210054397583, + -0.016003571450710297, + -0.15568907558918, + 0.10172388702630997, + -0.03277435898780823, + 0.06290970742702484, + -0.046728238463401794, + 0.1082792729139328, + 0.06408723443746567, + -0.022810062393546104, + -0.09278011322021484, + -0.11811906099319458, + 0.11465324461460114, + 0.15140286087989807, + 0.04375450313091278, + 0.10876164585351944, + -0.3440326452255249, + -0.02785368449985981, + 0.24647748470306396, + -0.029045458883047104, + -0.3366747200489044, + -0.14264941215515137, + 0.40489161014556885, + -0.04909437522292137, + -0.027521654963493347, + 0.12937971949577332, + -0.012662040069699287, + -0.35502275824546814, + -0.07629435509443283, + 0.1639222651720047, + -0.47948992252349854, + -0.09076643735170364, + 0.2227477729320526, + -0.030937138944864273, + 0.10782650858163834, + 0.15291574597358704, + 0.09266719222068787, + -0.020250990986824036, + -0.047585222870111465, + 0.21487535536289215, + -0.11720287054777145, + 0.14713290333747864, + -0.19040043652057648, + 0.046942055225372314, + 0.13145136833190918, + 0.17628216743469238, + 0.009819972328841686, + -0.13719037175178528, + -0.263883501291275, + -0.00860392302274704, + -0.05262286961078644, + 0.15400534868240356, + -0.19652098417282104, + -0.08061397075653076, + -0.15147185325622559, + 0.010075151920318604, + 0.041553229093551636, + 0.2148461639881134, + -0.1655726432800293, + -0.00021340884268283844, + 0.21730998158454895, + -0.15558743476867676, + 0.14374960958957672, + 0.08411769568920135, + 0.0009135231375694275, + -0.13227932155132294, + 0.32366907596588135, + 0.16784119606018066, + 0.11125236749649048, + 0.3434448838233948, + 0.057576339691877365, + -0.1248638927936554, + 0.24861933290958405, + 0.10636331886053085, + 0.029681086540222168, + 0.10792897641658783, + -0.0272616446018219, + 0.08472634851932526, + -0.19474530220031738, + 0.03092297911643982, + -0.03426801785826683, + -0.07750587165355682, + 0.17153173685073853, + 0.045422159135341644, + -0.8839089870452881, + 0.09517146646976471, + 0.12432141602039337, + -0.16203734278678894, + -0.25252023339271545, + -0.14243023097515106, + 0.1136104092001915, + 0.0024492042139172554, + -0.035889387130737305, + 0.09014236927032471, + 0.03720498085021973, + 0.047385841608047485, + -0.2016151249408722, + 0.14535857737064362, + -0.04998571053147316, + 0.07744917273521423, + -0.2246372401714325, + 0.03884858265519142, + 0.1985001564025879, + 0.12155748903751373, + -0.09134767949581146, + -0.009001296013593674, + -0.23156172037124634, + 0.21258555352687836, + -0.03405825421214104, + -0.32044148445129395, + 0.0863206684589386, + 0.14366908371448517, + -0.13777466118335724, + 0.23039382696151733, + 0.06300129741430283, + -0.9725275039672852, + 0.16260647773742676, + -0.02908753603696823, + -0.0146590955555439, + -0.08741158246994019, + -0.10926253348588943, + -0.0016143471002578735, + 0.0633464902639389, + -0.024013705551624298, + -0.07886353880167007, + -0.035856686532497406, + -0.14143970608711243, + 0.10249049961566925, + 0.0818551778793335, + -0.010715186595916748, + -0.06742765009403229, + -0.4616624116897583, + 0.19033823907375336, + -0.006080543622374535, + -0.05998484045267105, + 0.0084308460354805, + 0.09113100916147232, + 0.02071215957403183, + -0.08462736010551453, + -0.13289254903793335, + -0.13204634189605713, + 0.0991516187787056, + -0.0225360244512558, + -0.100742869079113, + 0.15810628235340118, + -0.04967930540442467, + -0.3029637932777405, + -0.07948517799377441, + -0.4963948428630829, + -0.013604041188955307, + 0.14705075323581696, + 0.07646504044532776, + -0.041361454874277115, + 0.03887784481048584, + -0.019555822014808655, + 0.17895351350307465, + 0.30832308530807495, + 0.09817884117364883, + -0.2287936955690384, + 0.0654345452785492, + 0.10273987799882889, + -0.320242315530777, + -0.14687035977840424, + 0.3059845566749573, + 0.05601926147937775, + 0.11148633062839508, + 0.043532706797122955, + 0.004939015954732895, + 0.10056298226118088, + 0.3213808536529541, + -0.040954746305942535, + -0.057541877031326294, + 0.06056724116206169, + 0.10545335710048676, + 0.12902700901031494, + -0.1340586096048355, + 0.13751466572284698, + 0.17338132858276367, + -0.1677190214395523, + 1.2466931343078613, + -0.11293445527553558, + -0.14692732691764832, + -0.018749317154288292, + -0.19205507636070251, + -0.1650608777999878, + 0.04112454503774643, + 0.00566693814471364, + -0.19190098345279694, + -0.19268640875816345, + 0.22466489672660828, + -0.20582355558872223, + 0.1142730563879013, + -0.03923209011554718, + -0.0635482519865036, + -0.08176519721746445, + 0.12452498078346252, + -0.04833769053220749, + -0.13378576934337616, + 1.354588270187378, + -0.6423682570457458, + -0.21439357101917267, + 0.0578547939658165, + 0.10866376757621765, + 0.25771063566207886, + -0.026304729282855988, + 0.056799061596393585, + -0.05287521332502365, + 0.05734504759311676, + 0.01377055048942566, + 0.026379812508821487, + -0.06382191181182861, + 0.193006232380867, + 0.11791914701461792, + 0.0836881771683693, + -0.01450882013887167, + -0.03755251318216324, + -0.2684192657470703, + -0.05919618904590607, + -0.06314720213413239, + -0.023847952485084534, + -0.22248107194900513, + -0.26950883865356445, + -0.12534745037555695, + 0.14551220834255219, + -0.02827458456158638, + -0.01204659789800644, + -0.04293142259120941, + 0.08467777818441391, + -0.34882283210754395, + 0.08070328831672668, + -0.2425667643547058, + 0.008421894162893295, + -0.038271669298410416, + 0.10973256826400757, + -0.08102089166641235, + 0.13946376740932465, + 0.10212105512619019, + -0.6350727677345276, + 0.2580876350402832, + 0.030255138874053955, + -0.11606413871049881, + 0.0459802970290184, + -0.049035605043172836, + -0.4555214047431946, + -0.01869286224246025, + 0.17925092577934265, + -0.007196106016635895, + -0.14733794331550598, + -0.12649157643318176, + 0.11409677565097809, + -0.23501041531562805, + 0.028635362163186073, + -0.09951968491077423, + -0.15170153975486755, + 0.03260573744773865, + -0.1134740337729454, + -0.04592029005289078, + -0.38864725828170776, + -0.00016122311353683472, + 0.08870253711938858, + 0.037655919790267944, + -0.16381533443927765, + -0.07224299758672714, + -0.08266054838895798, + -0.3179680407047272, + 0.01897706463932991, + -0.00839899480342865, + -0.02594061940908432, + 0.05486366152763367, + -0.10349665582180023, + -0.2149333655834198, + 0.11207173764705658, + 0.22169241309165955, + 0.05926811695098877, + -0.07127122581005096, + -0.25842124223709106, + 0.12916266918182373, + -0.08672361820936203, + 0.05262395739555359, + 0.2697768807411194, + -0.15460386872291565, + 0.053153082728385925, + -0.060951851308345795, + -0.04089054837822914, + 0.16409878432750702, + 0.04998894780874252, + -0.39488276839256287, + -0.03266279399394989, + -0.05196604132652283, + 0.1989196389913559, + 0.4346652030944824, + -0.024323949590325356, + -0.1372365802526474, + 0.07169052958488464, + 0.0207228884100914, + -0.11030125617980957, + 0.13417723774909973, + -0.2362356185913086, + -0.18506646156311035, + -0.10053734481334686, + -0.008899345993995667, + 0.26387879252433777, + -0.26552361249923706, + 0.026054736226797104, + -0.4003496766090393, + 0.03645533323287964, + -0.18441268801689148, + -0.0028474442660808563, + -0.10328089445829391, + -0.13512027263641357, + -0.2775678038597107, + -0.023020928725600243, + -0.006660856306552887, + -0.2102074772119522, + -0.062122225761413574, + -0.12571501731872559, + 0.03541860729455948, + -0.17079856991767883, + -0.019274652004241943, + -0.05884018540382385, + -0.1870744377374649, + -0.09691296517848969, + 0.09203623235225677, + 0.15696802735328674, + 0.042821887880563736, + 0.07980169355869293, + -0.3466099798679352, + 0.023929402232170105, + 0.13546712696552277, + 0.1259642094373703, + -0.02842814102768898, + -0.01651744917035103, + -0.08162474632263184, + -0.11956267803907394, + -0.05512029677629471, + -0.0746782124042511, + 0.11090388149023056, + 0.15403486788272858, + 0.04586916044354439, + -0.036210715770721436, + 0.18604208528995514, + 0.08413335680961609, + -0.1366451382637024, + 0.04828111454844475, + 0.27606940269470215, + 0.19817976653575897, + 0.06322629004716873, + -0.022431369870901108, + -0.12771514058113098, + 0.04287547618150711, + -0.11333295702934265, + 0.2537376284599304, + 0.20243118703365326, + -0.034388281404972076, + -0.5425511002540588, + -0.013940520584583282, + 0.7970485687255859, + 0.3138115406036377, + -0.07266513258218765, + 0.24080443382263184, + 0.8066563606262207, + -0.507169783115387, + -0.0809125304222107, + 0.036422163248062134, + -0.32131123542785645, + 0.014676811173558235, + -0.07030826807022095, + -0.013429053127765656, + -0.020903006196022034, + -0.006298862397670746, + -0.3335849940776825, + 0.10860155522823334, + -0.09235266596078873, + -0.06389328837394714, + -0.038821637630462646, + -0.14328858256340027, + 0.06840036809444427, + 0.45142966508865356, + -0.09287573397159576, + -0.24722959101200104, + -0.015368137508630753, + 0.04392659664154053, + -0.19480952620506287, + 0.20972833037376404, + 0.5020737648010254, + 0.17852142453193665, + -0.10098708420991898, + -0.18134531378746033, + 0.22311235964298248, + -0.15325641632080078, + -0.07959089428186417, + -0.10037226229906082, + 0.18156111240386963, + -0.07778361439704895, + 0.20844429731369019, + 0.042637355625629425, + 0.043425727635622025, + -0.04560990631580353, + 0.1919606626033783, + -0.3965195417404175, + -0.044889163225889206, + -0.06204672157764435, + -0.06654342263936996, + -0.053632110357284546, + -0.025624997913837433, + 0.16929662227630615, + -0.11187778413295746, + -0.21105816960334778, + 0.14323391020298004, + -0.07453945279121399, + 0.054514236748218536, + 0.28514349460601807, + 0.14790016412734985, + 0.06445442140102386, + 0.08850783109664917, + 0.07330575585365295, + -0.15013480186462402, + -0.19187898933887482, + 0.13714005053043365, + 0.1956685185432434, + -0.20588719844818115, + 0.151650071144104, + -0.011265829205513, + -0.3002976179122925, + -0.5978106260299683, + -0.024056781083345413, + 0.08758480101823807, + -0.02421557903289795, + -0.18862192332744598, + -0.28626543283462524, + 0.07519593089818954, + 0.077726811170578, + 0.13711026310920715, + -1.1910336017608643, + 0.04469674825668335, + -0.08331246674060822, + 0.005415685474872589, + 0.052614618092775345, + 0.017658323049545288, + -0.03496534377336502, + -0.04123267903923988, + 0.04935982823371887, + 0.016477150842547417, + -0.21579870581626892, + -0.011799758300185204, + 0.1062380000948906, + 0.01937773823738098, + -0.012008268386125565, + -0.20846977829933167, + -0.06257931888103485, + -0.11464384943246841, + -0.05414494872093201, + -0.09526589512825012, + 0.21586309373378754, + -0.26418280601501465, + 0.1658124476671219, + 0.03646479547023773, + 0.2627795338630676, + -0.03470335900783539, + -0.21155914664268494, + 0.06403790414333344, + 0.039666205644607544, + -0.22018691897392273, + -0.04718109220266342, + 0.11050580441951752, + -0.0869973674416542, + -0.11637768149375916, + 0.07123690843582153, + 0.037413302809000015, + -0.023393575102090836, + -0.2689637243747711, + 0.01470697671175003, + 0.038021013140678406, + -0.011149942874908447, + -1.028212070465088, + -0.21485775709152222, + -0.006064543500542641, + 0.30512499809265137, + 0.08241838216781616, + -0.06258530169725418, + -0.0320078507065773, + -0.09243103116750717, + -0.19266308844089508, + 0.05677825212478638, + 0.03643812611699104, + -0.10149812698364258, + 0.11472372710704803, + -0.040509406477212906, + -0.20831312239170074, + -0.1580142378807068, + -0.0721951276063919, + 0.17279201745986938, + -0.24372513592243195, + 0.07336579263210297, + -0.26785269379615784, + 0.2704922556877136, + -0.02248232066631317, + -0.06787793338298798, + 0.22453920543193817, + -0.017480581998825073, + -0.18695712089538574, + 0.04637568071484566, + -0.09636443853378296, + -0.19599610567092896, + 0.16993790864944458, + 0.19768449664115906, + 0.12593799829483032, + 0.117093026638031, + 0.3588882088661194, + -0.003206179477274418, + -0.0677470713853836, + 0.061089228838682175, + -0.13671132922172546, + -0.23368209600448608, + -0.0578538179397583, + 0.2185061275959015, + 0.39027270674705505, + 0.11580490320920944, + 0.21651588380336761, + 0.042201027274131775, + 0.1500619500875473, + 0.08338302373886108, + -0.06502720713615417, + 0.10708515346050262, + 0.18605652451515198, + -0.14094707369804382, + 0.4679332971572876, + 0.27515479922294617, + 0.12056414783000946, + 0.09174616634845734, + 0.10249409079551697, + 0.039214059710502625, + -0.13482818007469177, + -0.058527231216430664, + -0.0441889613866806, + -0.17036274075508118, + 0.25929751992225647, + 0.03268761187791824, + 0.09932692348957062, + -0.0034809261560440063, + -0.05227391794323921, + -0.22752803564071655, + 0.16680598258972168, + 0.9106929898262024, + 0.12466635555028915, + -0.28365519642829895, + 0.09036948531866074, + 0.030489489436149597, + -0.08544052392244339, + 0.05986573547124863, + -0.1875452697277069, + 0.150992751121521, + 0.011793544515967369, + 0.1536218523979187, + 0.04162468761205673, + -0.2573181092739105, + 0.09317770600318909, + -0.2367047369480133, + -0.10071031749248505, + 0.2719360291957855, + 0.4874817132949829, + -0.30364757776260376, + -0.16007816791534424, + -0.7887368202209473, + 0.018979966640472412, + 0.10484616458415985, + -0.4505425691604614, + 0.09400709718465805, + -0.16086524724960327, + 0.04809040203690529, + -0.29413729906082153, + -0.11080565303564072, + -0.09926879405975342, + -0.017744669690728188, + 0.05691852793097496, + -0.0911727324128151, + -0.1416851282119751, + 0.28353798389434814 + ], + "vector": [ + 0.002880300162360072, + 0.007233030162751675, + 0.025676801800727844, + -0.021619461476802826, + -0.006381893530488014, + 0.016904771327972412, + -0.015417883172631264, + 0.0026163773145526648, + 0.015707215294241905, + -0.010444297455251217, + 0.003800779115408659, + -0.006120103877037764, + 0.01136165764182806, + -0.009386852383613586, + 0.01453426480293274, + -0.005364192184060812, + -0.008350342512130737, + 0.00015205962699837983, + -0.006619354244321585, + -0.014845362864434719, + 0.014190050773322582, + 0.002150926971808076, + -0.006157299969345331, + 0.017081474885344505, + 0.010048320516943932, + -0.00877635832875967, + 0.032321054488420486, + 0.021705513820052147, + 0.014163370244204998, + 0.0039285640232264996, + -0.017141811549663544, + 0.01025452371686697, + -0.022326987236738205, + -0.017386842519044876, + -0.0035853900481015444, + -0.004840306006371975, + 0.013770515099167824, + 0.023674223572015762, + -0.0021197949536144733, + 0.004266457166522741, + 0.024420974776148796, + 0.012266692705452442, + -0.011910512112081051, + -0.013165537267923355, + 0.0075967018492519855, + 0.011895736679434776, + -0.003397384425625205, + 0.019936803728342056, + 0.0117160240188241, + 0.013351159170269966, + -0.001794561860151589, + 0.011710948310792446, + -0.0019598703365772963, + -0.00720501784235239, + -0.0059328158386051655, + -0.00887238048017025, + -0.0020317852031439543, + 0.013849611394107342, + 0.009627562947571278, + -0.003516831900924444, + 0.014061495661735535, + 0.014558014459908009, + -0.01852884329855442, + -0.003597542177885771, + -0.024926617741584778, + -0.002331972122192383, + -0.022151455283164978, + -0.00786039512604475, + -0.017019756138324738, + -0.0030419465620070696, + 0.016806961968541145, + -0.009098012931644917, + 0.004485238343477249, + 0.0046432651579380035, + -0.014544721692800522, + -0.004892245400696993, + 0.02929479256272316, + -0.0022869990207254887, + 0.014257093891501427, + 0.023435015231370926, + 0.0041739135049283504, + -0.01565406285226345, + 0.0009016446419991553, + -0.004986979067325592, + -0.013665227219462395, + 0.0048280032351613045, + -0.000467033707536757, + -0.023138979449868202, + -0.015240535140037537, + -0.0014202361926436424, + 0.01143558043986559, + 0.005340826231986284, + -0.00203899503685534, + -0.036917127668857574, + 0.005702447611838579, + 0.020923404023051262, + 0.005466855596750975, + 0.009387774392962456, + -0.03619789704680443, + -0.006319302599877119, + 0.013423028402030468, + -0.012863998301327229, + 0.002219637855887413, + 0.011152306571602821, + 0.001657776185311377, + -0.00269286404363811, + 0.007583300583064556, + -0.007604735437780619, + 0.004011780489236116, + -0.008275954984128475, + -0.013272258453071117, + -0.011999511159956455, + -0.01583988219499588, + -0.00709912646561861, + -0.024282464757561684, + -0.010746002197265625, + -0.005113177001476288, + 0.007344583515077829, + -0.01020202785730362, + -0.017015056684613228, + -0.017104776576161385, + 0.004436260089278221, + -0.00376383145339787, + 0.0005331789725460112, + 0.011606011539697647, + 0.018488770350813866, + -0.002660953439772129, + 0.008113622665405273, + 0.014063799753785133, + 0.0002467637532390654, + -0.02832135744392872, + 0.00783848762512207, + -0.003751758486032486, + 0.004226382356137037, + -0.023445120081305504, + -0.03775535151362419, + 0.004448129795491695, + 0.000524327449966222, + 0.004483310040086508, + 0.01046210527420044, + -0.010991365648806095, + -0.007526224013417959, + 0.016355780884623528, + -0.007276362739503384, + -0.011367333121597767, + 0.0110324677079916, + -0.011934258043766022, + -0.002525406889617443, + -0.013666250742971897, + -0.04075733944773674, + -0.0034247739240527153, + -0.023745302110910416, + -0.012084092013537884, + 0.011126658879220486, + 0.0030067800544202328, + -0.012315742671489716, + -0.006262661423534155, + -0.003070117672905326, + 0.003190055023878813, + -0.0005048449384048581, + 0.006032072007656097, + 0.005922588519752026, + -0.03671005740761757, + -0.0016606650315225124, + 0.005092129576951265, + -0.01675521768629551, + 0.021615393459796906, + -0.004404607694596052, + -0.01059399638324976, + 0.0034481389448046684, + 0.008654075674712658, + 0.018365541473031044, + 0.0008218270959332585, + 0.020914413034915924, + 0.000981754157692194, + -0.0017384131206199527, + 0.012167776934802532, + -0.016467705368995667, + -0.021921809762716293, + 0.012447203509509563, + -0.011893942952156067, + -0.0011541276471689343, + 0.020881757140159607, + -0.00686423946171999, + 0.0037074722349643707, + 0.0041897050105035305, + 0.01150028221309185, + -0.019915346056222916, + 0.0038145030848681927, + 0.004069338086992502, + 0.014683772809803486, + -0.025455977767705917, + -0.040755730122327805, + 0.00011599670688156039, + 0.011308904737234116, + 0.010942290537059307, + 0.06733543425798416, + -0.0035395140293985605, + 0.012857545167207718, + -0.006316001061350107, + -0.04220849648118019, + -0.0008848404395394027, + -0.004342334344983101, + -0.006977560929954052, + -0.008604833856225014, + -0.005254251416772604, + -0.008821542374789715, + -0.02427612617611885, + 0.00954158790409565, + 7.665428711334243e-05, + -0.0031139219645410776, + -0.0010757700074464083, + -0.009932229295372963, + 0.0027096730191260576, + 0.008853189647197723, + -0.024532174691557884, + 0.006072768475860357, + -0.010614627972245216, + 0.0064921630546450615, + -0.016517385840415955, + -0.008000793866813183, + -0.00601076940074563, + -0.005181076005101204, + 0.0048211608082056046, + -0.03845474123954773, + -0.0037330735940486193, + 0.014498886652290821, + -0.0011655788403004408, + -0.002604464767500758, + -0.024929791688919067, + -0.013657758943736553, + 0.001947654876857996, + -0.013934701681137085, + 0.04903550073504448, + 0.008774533867835999, + -0.0017055858625099063, + -0.0015133956912904978, + -0.00042960146674886346, + -0.0026868938002735376, + -0.015802130103111267, + -0.011165369302034378, + 0.0025670595932751894, + 0.008561357855796814, + 0.03546644002199173, + -0.006294967606663704, + -0.021963151171803474, + 0.02195742540061474, + 0.0044165924191474915, + 0.002708416199311614, + 0.0031931819394230843, + 0.002501480979844928, + 0.005228135734796524, + 0.011451512575149536, + -0.009502950124442577, + 0.009378870017826557, + 0.00025983742671087384, + -0.005630146712064743, + -0.000496890745125711, + -0.025149263441562653, + 0.00922329444438219, + 0.007887852378189564, + -0.002905504545196891, + 0.01032465323805809, + 0.004207449499517679, + 0.009790467098355293, + -0.008204659447073936, + -0.011871552094817162, + 0.0009744576527737081, + -0.00645998353138566, + 0.0021278965286910534, + 0.0399567186832428, + -0.009781831875443459, + 5.1352901209611446e-05, + -0.009945849888026714, + -0.001513011404313147, + -0.014927337877452374, + -0.0013194553321227431, + -0.017839189618825912, + -0.0065028066746890545, + 0.0041261278092861176, + -0.0002985213650390506, + -0.026005811989307404, + -0.04467916116118431, + -0.001993698300793767, + 0.0018848342588171363, + -0.03404122591018677, + 0.024236612021923065, + -0.020789604634046555, + 0.007965151220560074, + -0.00504569336771965, + 0.008003936149179935, + 0.01134190708398819, + 0.049516212195158005, + -0.0022651883773505688, + 0.017274055629968643, + -0.0034094410948455334, + -0.001443115877918899, + -0.0009181061759591103, + -0.015843894332647324, + 0.010736582800745964, + -0.01024107076227665, + 0.009959695860743523, + 0.012632672674953938, + -0.009599316865205765, + -0.007614288944751024, + -0.016043758019804955, + 0.028042864054441452, + -0.01294639427214861, + -0.008201159536838531, + -0.002954925410449505, + 0.010830760933458805, + -0.001271529938094318, + -0.01807391457259655, + 0.004632073920220137, + -0.0008922513225115836, + 0.002195354551076889, + -0.012999225407838821, + -0.01527960691601038, + 0.014191356487572193, + -0.009745682589709759, + 0.013614240102469921, + 0.002788049168884754, + 0.012650900520384312, + -0.0003341402334626764, + 0.00013093619782011956, + -0.02075154334306717, + -0.005503409076482058, + -0.002079914789646864, + -0.0026915681082755327, + 0.005401380825787783, + 0.01197515893727541, + 0.003786338260397315, + 0.019244631752371788, + -0.016246352344751358, + 0.011232410557568073, + -0.020472735166549683, + -0.0049839988350868225, + -0.007198359351605177, + 0.026395734399557114, + 0.005421879235655069, + -0.0070380945689976215, + -0.0019324248423799872, + -0.014367833733558655, + 0.08307062834501266, + 0.014686108566820621, + 0.02404230460524559, + -0.0012419261038303375, + 0.008087941445410252, + 0.01178070530295372, + 0.006545937154442072, + 0.0011641406454145908, + 0.007078872062265873, + -0.03969533368945122, + 0.004449111875146627, + 0.009525587782263756, + 0.0013782186433672905, + -0.032086558640003204, + 0.0069623664021492004, + -0.02114696614444256, + 0.010349527932703495, + -0.0020275062415748835, + 0.05411180481314659, + -0.01684810034930706, + -0.01927376165986061, + 0.00020056455105077475, + 0.025029875338077545, + 0.004736732225865126, + -0.012059851549565792, + -0.012446080334484577, + 0.002130641369149089, + -0.00438627228140831, + -0.018438726663589478, + 0.01455570850521326, + -0.02022855542600155, + 0.01228933222591877, + 0.025761937722563744, + 0.006230638362467289, + 0.025450775399804115, + -0.013893647119402885, + -0.002293310360983014, + 0.007978003472089767, + -0.001936763641424477, + -0.11422997713088989, + 0.01011261809617281, + -0.012457692064344883, + 0.02048162929713726, + -0.008934765122830868, + -0.01715926080942154, + -0.012926481664180756, + 0.006638477556407452, + 0.0003546396328601986, + 0.015813034027814865, + 0.008606788702309132, + -0.01088196411728859, + -0.0007210524054244161, + 0.002152884379029274, + -0.030648116022348404, + -0.02808166667819023, + 0.03028239868581295, + -0.00575167266651988, + 0.011310543864965439, + -0.00824817270040512, + -0.0035566622391343117, + 0.009628239087760448, + -0.01229072269052267, + 0.004990066401660442, + -0.0055807409808039665, + 0.005320599768310785, + 0.016352862119674683, + -0.016058949753642082, + 0.00632702000439167, + -0.01953599415719509, + 0.010743815451860428, + -0.004501712508499622, + 0.004655066411942244, + 0.008906683884561062, + -0.016190340742468834, + -0.006681360770016909, + -0.0005267435335554183, + -0.005790998227894306, + 0.011824219487607479, + -0.004758242517709732, + 0.003252558410167694, + 0.014865739271044731, + 0.005778447724878788, + -0.004053598735481501, + -0.00630926014855504, + 0.026869336143136024, + -0.002536493819206953, + -0.017528844997286797, + 0.05031363293528557, + -0.017444057390093803, + -0.05144759640097618, + 0.0025700710248202085, + -0.004618958104401827, + -0.009698295034468174, + -0.011213970370590687, + 0.005954539403319359, + 0.005010073073208332, + 0.010266503319144249, + 0.013600694015622139, + -0.0022599201183766127, + -0.0008566476753912866, + 0.029275815933942795, + -0.010042916052043438, + 0.011448569595813751, + -0.002957231132313609, + 0.022959474474191666, + 0.005793471354991198, + -0.00012423387670423836, + 0.0015111491084098816, + 0.004443684127181768, + -0.012782804667949677, + -0.011354909278452396, + 0.012752148322761059, + 0.007737527601420879, + 0.005285619292408228, + -0.007391638122498989, + 0.026432806625962257, + -0.012872142717242241, + -0.004591700155287981, + -0.010456814430654049, + 0.024758441373705864, + -0.006442766636610031, + -0.012147282250225544, + 0.017534468322992325, + -0.00571185490116477, + 0.0004178471863269806, + 0.012149342335760593, + -0.01547609455883503, + 0.009331204928457737, + 0.021383339539170265, + -0.016176853328943253, + -0.013112685643136501, + 0.03294345736503601, + 0.00878194347023964, + -0.010827655903995037, + 0.0021524515468627214, + -0.014000720344483852, + -0.001264832098968327, + 0.010830209590494633, + 0.011141723953187466, + -0.009868953377008438, + -0.009694875217974186, + 0.0022682640701532364, + -0.0034993828739970922, + 0.01185646466910839, + -0.05573979765176773, + -0.017070652917027473, + -0.010323602706193924, + 0.006838126573711634, + 0.015327250584959984, + 0.01440199464559555, + 0.0018553375266492367, + 0.015635084360837936, + -0.0017293974524363875, + 0.011063244193792343, + -0.016981421038508415, + -0.0034765549935400486, + 0.011145253665745258, + -0.01594463549554348, + -0.003554274793714285, + 0.00853757280856371, + 0.0021544804330915213, + 0.01593255251646042, + -0.021270163357257843, + -0.019396964460611343, + -0.005070469807833433, + 0.013062029145658016, + -0.018573179841041565, + 0.003237050026655197, + 0.0036712337750941515, + -0.004023735877126455, + -0.020662248134613037, + 0.0009660225478000939, + 0.00571731710806489, + 0.015672137960791588, + -0.012844111770391464, + 0.0007091625593602657, + -0.006841724272817373, + -0.005182449705898762, + 0.011175727471709251, + -0.032023489475250244, + -0.03115406259894371, + -0.012780539691448212, + -0.007503790315240622, + -0.021959610283374786, + 0.0034696145448833704, + -0.0027556496206671, + -0.02334022894501686, + 0.016286833211779594, + 0.008541685529053211, + 0.0007669945480301976, + -0.0011317499447613955, + -0.0052258954383432865, + 0.002312055556103587, + -0.006168144289404154, + -0.001291599590331316, + 0.0014322921633720398, + 0.013975909911096096, + -0.0037216199561953545, + 0.009455408900976181, + -0.018655193969607353, + -0.005555289797484875, + 0.0004621449043042958, + 0.004175826907157898, + 0.056421685963869095, + 0.019513262435793877, + 0.019276699051260948, + 5.204711669648532e-06, + 0.013785873539745808, + 0.010163079015910625, + -0.052348677068948746, + 0.00676144240424037, + -0.011309361085295677, + 0.007616713177412748, + -0.019444091245532036, + 0.0044587524607777596, + -0.021681349724531174, + -0.02815510891377926, + 0.030250225216150284, + 0.00203164154663682, + -0.01731300540268421, + -0.008881283923983574, + 0.003932294901460409, + 0.026810098439455032, + 0.005897278431802988, + -0.0008465222781524062, + -0.007661581505089998, + 0.011608337052166462, + -0.00889582559466362, + -0.0020714844577014446, + 0.009896126575767994, + 0.0096899950876832, + 0.0119034294039011, + 0.0005039853858761489, + 0.01985064707696438, + -0.0025835437700152397, + -0.01760544814169407, + -0.008080979809165001, + -0.025324353948235512, + 0.013966701924800873, + -0.008421791717410088, + 0.017470359802246094, + 0.004645125009119511, + 0.007340124808251858, + 0.00648662680760026, + 0.006939191371202469, + -0.0027675586752593517, + -0.0004952680901624262, + -0.02368629164993763, + -0.011910553090274334, + -0.021921534091234207, + 0.0006661891238763928, + -0.015575678087770939, + -0.01646505296230316, + 0.00996954832226038, + -0.01589929312467575, + -0.027547702193260193, + 0.0083658741787076, + -0.00576135516166687, + -0.010683323256671429, + -0.002584112575277686, + 0.004824155475944281, + 0.00032747600926086307, + -0.020166074857115746, + 0.0035071526654064655, + 0.0006994634168222547, + -0.006902374792844057, + -0.015510300174355507, + 0.005969732999801636, + 0.005254669580608606, + -0.015122635290026665, + -0.003572413232177496, + -0.00959094613790512, + 0.02528429962694645, + 0.003947657998651266, + 0.0033567058853805065, + 0.00210301554761827, + 0.002697806339710951, + -0.014975274913012981, + -0.020843658596277237, + 0.0026613539084792137, + -0.005680968519300222, + -0.033963244408369064, + -0.0021783942356705666, + -0.01320913527160883, + -0.0039315372705459595, + 0.0011822930537164211, + -0.002083349507302046, + 0.015156605280935764, + 0.026005437597632408, + -0.009841742925345898, + 0.011156045831739902, + -0.009572473354637623, + 0.023949291557073593, + 0.0018902947194874287, + 0.011284246109426022, + -0.023799678310751915, + -0.00276134442538023, + -0.0013250424526631832, + 0.009923621080815792, + 0.01813756860792637, + 0.006928930524736643, + -0.032332926988601685, + 0.0007919409545138478, + -0.022867100313305855, + -0.044253867119550705, + -0.01699536293745041, + 0.0020112532656639814, + 0.009902149438858032, + 0.007075219415128231, + 0.00016223847342189401, + -0.006995589938014746, + 0.006486398167908192, + -0.01098188292235136, + -0.012941751629114151, + -0.0008298903121612966, + -0.04037821665406227, + -0.01882096193730831, + 0.009318497031927109, + 0.0009479414438828826, + 0.004223725758492947, + 0.01099731121212244, + -0.003099324880167842, + 0.03172618895769119, + -0.004637402947992086, + 0.0005306845996528864, + 0.007671776227653027, + -0.015302284620702267, + -0.013497591018676758, + 0.010545982047915459, + 0.009496345184743404, + 0.002846592338755727, + -0.008045249618589878, + -0.0012984772911295295, + 0.018089640885591507, + -0.009155932813882828, + 0.002427971689030528, + 0.012013611383736134, + 0.011239297688007355, + -0.012350439094007015, + 0.01216378528624773, + 0.01879867911338806, + 0.003527549095451832, + -0.0035548489540815353, + -0.010308773256838322, + 0.004479649476706982, + 0.002912961645051837, + 0.007814576849341393, + 0.017004752531647682, + -0.02398444153368473, + -0.0076282452791929245, + -0.011242633685469627, + -0.018787838518619537, + -0.0027761186938732862, + -0.0029666712507605553, + 0.015701288357377052, + 0.01332088839262724, + -0.006413326133042574, + -0.00885823555290699, + 0.00440119719132781, + -0.0005487948656082153, + 0.000554610334802419, + -0.019434994086623192, + 0.0067896475084125996, + -0.008166076615452766, + -0.04819255694746971, + 0.005079322960227728, + -0.005261961370706558, + 0.007535842247307301, + 0.020587876439094543, + 0.014637492597103119, + -0.0005380393704399467, + 0.014835916459560394, + 0.003966165240854025, + -0.08144441246986389, + 0.006823781877756119, + -0.003249752800911665, + -0.007633472327142954, + 0.001024561352096498, + 0.002744054887443781, + -0.006997708696871996, + -0.007376683875918388, + -0.0004114229523111135, + -0.009491135366261005, + 0.010127997025847435, + -0.011063149198889732, + -0.004542892333120108, + -0.005868715699762106, + 0.00833091139793396, + 0.0022219328675419092, + 0.0015087288338690996, + 0.01593281514942646, + 0.0024005586747080088, + 0.0014497974188998342, + -0.010520589537918568, + -0.020156145095825195, + 0.007838585413992405, + 0.018397139385342598, + -0.014463330619037151, + 0.010642780922353268, + 0.01572454907000065, + -0.0045288377441465855, + 0.02985137328505516, + 0.003424334805458784, + -0.013841509819030762, + 0.020325908437371254, + -0.014093194156885147, + 0.003182461950927973, + 0.004959595389664173, + -0.02097356878221035, + -0.00015735835768282413, + -0.0007804083288647234, + -0.005760055501013994, + 0.0020396211184561253, + -0.0011463111732155085, + 0.008105061948299408, + 0.00781546626240015, + -0.006566461641341448, + -0.019070161506533623, + -0.01165876816958189, + -0.0038872575387358665, + -0.005932358559221029, + 0.005189015530049801, + 0.006621121894568205, + -0.0083902757614851, + 0.015045661479234695, + 0.005336477421224117, + 0.005973770748823881, + 0.03579536825418472, + -0.0012404861627146602, + 0.003687360556796193, + -0.005419617984443903, + 0.015502562746405602, + 0.01418501790612936, + 0.0034872274845838547, + 0.05658434331417084, + 0.00925283320248127, + 0.020981254056096077, + 0.013334891758859158, + -0.0078736562281847, + -0.008734299801290035, + -0.007011801470071077, + 0.0002717809402383864, + 0.021124912425875664, + -0.011667578481137753, + -0.0009654596215113997, + 0.006891453173011541, + -0.006349663715809584, + -0.016716312617063522, + 0.0057927751913666725, + -0.0009840563870966434, + 0.016711732372641563, + 0.010114378295838833, + 0.004122311715036631, + -0.004223432391881943, + 0.015468898229300976, + -0.004458851646631956, + 0.0010165603598579764, + 0.017739899456501007, + 0.00044644984882324934, + 0.01956736110150814, + -0.003709534415975213, + -0.014994386583566666, + -0.004720423836261034, + 0.011879553087055683, + 0.014359645545482635, + -0.006894361227750778, + 0.005220775958150625, + -0.007977088913321495, + 0.011823076754808426, + 0.0022716722451150417, + -0.028280464932322502, + 0.014910183846950531, + 0.013592093251645565, + -0.0011629249202087522, + 0.007392737548798323, + 0.0029791893903166056, + 0.005622062832117081, + 0.013234488666057587, + -0.0022892202250659466, + 0.020005743950605392, + -0.008639413863420486, + 0.017865654081106186, + 0.01539642084389925, + -0.011750077828764915, + 0.020602209493517876, + 0.022937383502721786, + 0.0013864272041246295, + 0.021474510431289673, + -0.009458564221858978, + 0.003967699594795704, + -0.04168885201215744, + -0.005209882743656635, + -0.011721680872142315, + 0.012630661018192768, + -0.004932057112455368, + -0.03499230369925499, + -0.002566658891737461, + 0.026792075484991074, + -0.02730693481862545, + -0.005768355447798967, + 0.00011854947661049664, + 0.005698186345398426, + 0.0035370332188904285, + 0.006905812304466963, + 0.016378607600927353, + 0.0037551247514784336, + -0.013348915614187717, + 0.01209874264895916, + 0.03195111081004143, + 0.006925863213837147, + -0.006139733828604221, + -0.008551890030503273, + 0.00022303864534478635, + -0.02259785868227482, + 0.008365943096578121, + -0.0006019537686370313, + 0.009388597682118416, + 0.019537022337317467, + 0.01160082034766674, + 0.019491227343678474, + -0.002809280063956976, + -0.002112990478053689, + 0.002280076267197728, + 0.0065069948323071, + -0.0046798246912658215, + -0.010678083635866642, + 0.0035575004294514656, + -0.0019558619242161512, + 0.00878187920898199, + 0.009125993587076664, + 0.0028067079838365316, + -0.01090335939079523, + -0.0048463488928973675, + 0.01322191022336483, + -0.0064041451551020145, + -0.005585211794823408, + -0.01148875243961811, + -0.0030057711992412806, + 0.004080136772245169, + 0.005019303876906633, + 0.005060950294137001, + -0.006920511368662119, + -0.004090793430805206, + 0.0118925292044878, + -0.002545443130657077, + -0.06298647075891495, + 0.017612913623452187, + 0.008906037546694279, + 0.0020006075501441956, + 0.0041375490836799145, + -0.004664003849029541, + -0.00117455271538347, + 0.014170307666063309, + 0.013530981726944447, + 0.012914180755615234, + -0.005193969700485468, + -0.01662035472691059, + 0.017006734386086464, + 0.03772580251097679, + 0.0064329346641898155, + -0.0017659558216109872, + 0.001249518129043281, + -0.021717609837651253, + -0.006985402200371027, + -0.0019342893501743674, + 0.007287824060767889, + -0.01574566960334778, + 0.004203108139336109, + -0.023974133655428886, + 0.007092498708516359, + 0.0036138324066996574, + -0.02694430574774742, + 0.006172526627779007, + 0.010846134275197983, + -0.014766029082238674, + 0.010045375674962997, + 0.005342938005924225, + -0.004374200943857431, + -0.0013824990019202232, + 0.010698157362639904, + -0.005286419298499823, + -0.014777838252484798, + 0.0019918857142329216, + 0.00029949750751256943, + -0.016414353623986244, + -0.009474759921431541, + -0.002602787921205163, + 0.0037424685433506966, + 0.014469007961452007, + -0.01923152059316635, + 0.014442801475524902, + 0.005840705707669258, + -0.00504716532304883, + -0.0013990881852805614, + -0.014127995818853378, + 0.009964864701032639, + -0.010437266901135445, + -0.0012678343337029219, + 0.020585691556334496, + -0.006428882479667664, + -0.0055695148184895515, + -0.009389526210725307, + -0.01174612995237112, + 0.0014789984561502934, + -0.010077176615595818, + -0.021231800317764282, + 0.006460822187364101, + 0.006827967241406441, + -0.0011060063261538744, + 0.020263109356164932, + -0.0025672120973467827, + 0.01987510360777378, + 0.018825920298695564, + 0.019809279590845108, + -0.019290821626782417, + 0.012665587477385998, + -0.016364628449082375, + -0.015272392891347408, + 0.00030496090766973794, + 0.012558136135339737, + 0.01630638726055622, + 0.00955155584961176, + -0.010420737788081169, + -0.01331055536866188, + -0.0030423232819885015, + 0.0019184486009180546, + -0.005069593898952007, + 0.0006169665139168501, + 0.010150755755603313, + -0.012955062091350555, + -0.010106544010341167, + -0.0005970757338218391, + 0.012288582511246204, + -0.002472346881404519, + 0.008990311063826084, + 0.009604104794561863, + -0.008380238898098469, + 0.002954652300104499, + -0.006241325754672289, + 0.08563438057899475, + -0.004190179985016584, + 0.003246252192184329, + 0.01754412241280079, + 0.0004412152338773012, + 0.006187328137457371, + -0.005913297180086374, + 0.013249539770185947, + 0.008828320540487766, + 0.007875092327594757, + 0.010591906495392323, + 0.0018790262984111905, + -0.042302489280700684, + -0.00541651202365756, + 0.024783242493867874, + 0.008869537152349949, + 0.005160351283848286, + -0.003333164844661951, + 0.0014729552203789353, + 0.008473833091557026, + -0.014649774879217148, + -0.011311239562928677, + -0.006162908859550953, + 0.009899009950459003, + -0.00036052765790373087, + 0.01181032508611679, + -0.010086067020893097, + -0.008962566964328289, + -0.01446063444018364, + -0.011282388120889664, + -0.05804158002138138, + -0.005336477421224117, + 0.02027146890759468, + 0.008652723394334316, + 0.0009484058246016502, + 0.00845226552337408, + 0.007855888456106186, + -0.0005856086499989033, + 0.02297702431678772, + 0.008198913186788559, + -0.0031528621912002563, + 0.013189863413572311, + 0.011817260645329952, + -0.002661355072632432, + 0.002237546956166625, + 0.00473551033064723, + -0.0012276985216885805, + 0.013526164926588535, + 0.011495275422930717, + -0.013524990528821945, + 0.026899056509137154, + 0.0007716563413850963, + 0.0009202169021591544, + 0.01579926162958145, + 0.020574072375893593, + -0.008789107203483582, + -0.01205469574779272, + 0.003409390104934573, + -0.0145504055544734, + 0.00040961941704154015, + 0.013104286976158619, + 0.005268989130854607, + -0.03187669813632965, + -0.00045229154056869447, + 0.05634033679962158, + 0.007148123346269131, + 0.007738535292446613, + -0.01661680079996586, + 0.025220440700650215, + -0.018440082669258118, + 0.007658625952899456, + 0.002433421555906534, + -0.021872078999876976, + -0.031047362834215164, + 0.03460923209786415, + 0.01713382638990879, + 0.0167952012270689, + -0.00012512656394392252, + 0.05026347190141678, + 0.005777844227850437, + 0.013431991450488567, + 0.015149762853980064, + -0.014871996827423573, + 0.014234709553420544, + -0.013610182330012321, + -0.04457888752222061, + 0.014024827629327774, + -0.009891712106764317, + 0.015868522226810455, + -0.006011392921209335, + 0.010250371880829334, + 0.0035205630119889975, + -0.001198895275592804, + 0.002897482132539153, + -0.009924819692969322, + 0.011377329006791115, + 0.002317624632269144, + 0.004408376291394234, + 0.007343953475356102, + -0.006912757642567158, + -0.01098960917443037, + 0.00740452017635107, + -0.005124369170516729, + -0.006486768368631601, + -0.004568647593259811, + -0.00566870579496026, + 0.01682734489440918, + 0.011704949662089348, + -0.020437756553292274, + -0.014595374464988708, + 0.023899301886558533, + 0.0058127702213823795, + 0.006871011108160019, + -0.005306643433868885, + -0.005274762399494648, + 0.006573843769729137, + -0.0030917588155716658, + 0.018970167264342308, + -0.01035294122993946, + -0.01622101478278637, + 0.001212520059198141, + -0.00017966069572139531, + -0.008085138164460659, + 0.01476339716464281, + 0.005371961742639542, + 0.017632396891713142, + 0.023407498374581337, + 0.026277218014001846, + 0.009492306038737297, + -0.007218583486974239, + -0.006618789862841368, + 0.010219085961580276, + -0.012569502927362919, + 0.008151951245963573, + -0.017799658700823784, + -0.003420055378228426, + -0.014540049247443676, + -0.016695985570549965, + 0.0034275392536073923, + 0.007495406549423933, + 0.008046095259487629, + 0.0035551264882087708, + -0.011332149617373943, + -0.006464833859354258, + -0.014312228187918663, + -0.022371569648385048, + 0.006491782609373331, + -0.005306065548211336, + 0.015333888120949268, + 0.014822441153228283, + -0.003652916755527258, + -0.01031703595072031, + -0.0021420614793896675, + 0.0018903325544670224, + -0.007233606185764074, + -0.014227282255887985, + -0.0007221044506877661, + 0.004512804094702005, + -0.008426344953477383, + -0.0029099227394908667, + -0.0121159004047513, + 0.025023747235536575, + -0.025049453601241112, + -0.013455275446176529, + -0.007781910244375467, + 0.025287222117185593, + -0.008636296726763248, + -0.010783331468701363, + 0.0069276755675673485, + 0.011520598083734512, + 0.014786232262849808, + -0.002812586724758148, + 0.010103265754878521, + 0.011446426622569561, + 0.004869941156357527, + 0.00032850808929651976, + 0.011703457683324814, + -0.011764920316636562, + -0.0036182275507599115, + 0.009879587218165398, + 0.008546598255634308, + 0.006075055804103613, + -0.008805597200989723, + -0.01249711588025093, + -0.008141933009028435, + 0.0077511705458164215, + -0.00472852261736989, + 0.011727298609912395, + 0.016903387382626534, + 0.04041808471083641, + 0.020844098180532455, + 0.004229830112308264, + 0.015620561316609383, + -0.002673586132004857, + -0.0014625749317929149, + -0.018850862979888916, + 0.01572924107313156, + 0.005456158891320229, + -0.0002180540468543768, + -0.011175551451742649, + 0.0017954607028514147, + -0.0011797272600233555, + -0.0037511074915528297, + 0.0036785081028938293, + -0.01364148873835802, + 0.02551262453198433, + 0.005419712979346514, + -0.030132604762911797, + -0.0035927954595535994, + -0.006008696276694536, + -0.023671716451644897, + -0.00098642788361758, + -0.019916359335184097, + 0.007413758896291256, + -0.0066681657917797565, + -0.003922914154827595, + -0.01538519561290741, + -0.00238964706659317, + 0.011847024783492088, + 0.0011969315819442272, + -0.014095515012741089, + -0.009462923742830753, + 0.008529880084097385, + -0.013087812811136246, + -0.0031415135599672794, + -0.012499451637268066, + 0.009861387312412262, + -0.01303595770150423, + 0.00426226994022727, + -0.001963672460988164, + 0.002051018411293626, + -0.009600242599844933, + 0.023650722578167915, + 0.011660853400826454, + 0.002089648973196745, + -0.01514322217553854, + 0.008023610338568687, + -0.0005468593444675207, + -0.0001841144694481045, + -0.013671190477907658, + 0.04228052496910095, + 0.005003452301025391, + -0.013245128095149994, + 0.01240143459290266, + 0.01796993426978588, + 0.002496039727702737, + 0.002524206880480051, + -0.007570020388811827, + -0.012645254842936993, + -0.018082087859511375, + -0.0030213308054953814, + -0.009020255878567696, + -0.015901822596788406, + -0.002272700658068061, + 0.02462044171988964, + 0.01920762099325657, + 0.017061747610569, + -0.016302911564707756, + -0.021260026842355728, + 0.006364656146615744, + 0.008749529719352722, + 0.018489358946681023, + 0.010088245384395123, + 0.038075823336839676, + -0.0230537261813879, + -0.013647804036736488, + 0.017542950809001923, + 0.019821157678961754, + 0.01686309650540352, + -0.01382412575185299, + 0.016011986881494522, + 0.006411642301827669, + 0.005387239623814821, + -0.0036191768012940884, + 0.004025295842438936, + 0.0049129668623209, + 0.011234895326197147, + 0.00815171655267477, + -0.008498409762978554, + 0.023722806945443153, + 0.003789503127336502, + -0.0062777758575975895, + -0.01122392900288105, + -0.01167394034564495, + 0.024600451812148094, + -0.0059020849876105785, + 0.002524665556848049, + 0.011942104436457157, + -0.022127719596028328, + 0.004142694640904665, + 0.011187242344021797, + 0.000572684861253947, + 0.015567261725664139, + 0.012129330076277256, + 0.008476020768284798, + 0.004561888985335827, + -0.0026603667065501213, + 0.0027396962977945805, + -0.022307859733700752, + 0.02258996292948723, + -0.0007336183334700763, + 0.00987993087619543, + 0.014617303386330605, + 0.008092564530670643, + -0.008001398295164108, + 0.041860371828079224, + -0.003298314521089196, + -0.0015435636742040515, + 0.004525317810475826, + 0.08326607942581177, + 0.00599747896194458, + 0.0064029511995613575, + -0.012686872854828835, + -0.003202968742698431, + -0.0014914703788235784, + 0.012403455562889576, + 0.00562090752646327, + 0.01208691205829382, + -0.0033609182573854923, + 0.01026962697505951, + 0.01738777384161949, + -0.015276793390512466, + -0.0007605564896948636, + 0.01422799937427044, + -0.011466758325695992, + -0.06411110609769821, + -0.023815028369426727, + 0.002563182730227709, + -0.0021384216379374266, + -0.007977718487381935, + -0.01826532743871212, + 0.025748301297426224, + -0.005763037130236626, + 0.0007329606451094151, + -0.01866052858531475, + -0.0037929120007902384, + 0.017389383167028427, + -0.004419403616338968, + -0.0007499528583139181, + -0.01452307216823101, + -0.017441581934690475, + 0.0010951459407806396, + 0.0017377161420881748, + -0.006677981931716204, + 0.00436694361269474, + 0.024045106023550034, + -0.004804712254554033, + 5.216365389060229e-05, + 0.023002848029136658, + -0.007743820548057556, + -0.0052244700491428375, + -0.0030666098464280367, + 0.002788933226838708, + 0.0031085547525435686, + -0.011446147225797176, + -0.006821806542575359, + -0.005643089301884174, + 0.018617307767271996, + 0.03056948073208332, + 0.012929121032357216, + 0.006582310423254967, + 0.005691078957170248, + -0.007290568668395281, + 0.006379661615937948, + 0.018875746056437492, + -0.0032120617106556892, + 0.013578568585216999, + 0.0013665087753906846, + -0.031722258776426315, + -0.0032436391338706017, + -0.0008659126469865441, + -0.009163392707705498, + 0.011609375476837158, + 0.0019816760905086994, + -0.01055226568132639, + 0.000746529723983258, + -0.0019257308449596167, + 0.006904409267008305, + 0.004372542258352041, + -0.010959714651107788, + -0.01707308180630207, + 0.010341468267142773, + 0.006791603285819292, + -0.017547858878970146, + 0.004081858322024345, + -0.012919639237225056, + -0.020132509991526604, + -0.0008049270254559815, + -0.015639344230294228, + 0.011130635626614094, + 0.022328313440084457, + 0.004540474619716406, + 0.013734742999076843, + -0.004016472492367029, + 0.013484139926731586, + -0.002313012955710292, + -0.0024140607565641403, + 0.0043206471018493176, + 0.01542588695883751, + -0.005214293487370014, + 0.006659426726400852, + 0.02210628241300583, + 0.014920073561370373, + -0.001561694429256022, + -0.00417935149744153, + 0.010724584572017193, + -0.009623399935662746, + 0.005361644085496664, + 0.006262046750634909, + -0.023925116285681725, + 0.022301021963357925, + 0.0018389241304248571, + 0.007099882233887911, + -0.00593427661806345, + 0.005527774803340435, + -0.01612981967628002, + -0.005828452296555042, + -0.04230959340929985, + 0.025852616876363754, + 0.0002094800875056535, + -0.015163098461925983, + 0.0115813622251153, + 0.001205486711114645, + -0.004168160259723663, + 0.007354835979640484, + 0.012025696225464344, + -0.02629285492002964, + 0.0034244523849338293, + -0.011031690053641796, + 0.00704071344807744, + 0.0002928422763943672, + -0.014542220160365105, + -0.008828733116388321, + -0.011601965874433517, + 0.009604801423847675, + 0.015784718096256256, + 0.011675161309540272, + 0.002377961529418826, + 0.020263077691197395, + 0.0012171439593657851, + 0.007112594321370125, + 0.012326405383646488, + -0.02312932349741459, + 0.02278885245323181, + -0.024274712428450584, + 0.003578564152121544, + 0.009179936721920967, + -0.010716808028519154, + -0.01772601716220379, + -0.013172242790460587, + -0.004396465141326189, + -0.003696432104334235, + 0.0033698538318276405, + -0.007437501568347216, + -0.0005003651021979749, + -0.006462160497903824, + -0.007950813509523869, + -0.014017852023243904, + 0.04867030680179596, + 0.0014786924002692103, + -0.007674059364944696, + 0.019848451018333435, + 0.006811461411416531, + -0.014356039464473724, + -0.018587028607726097, + 0.025144796818494797, + -0.009426206350326538, + -0.04242599755525589, + 0.012687324546277523, + -0.007110931444913149, + -0.02234085649251938, + 0.0036227430682629347, + -0.014222056604921818, + -0.0043689049780368805, + 0.017002692446112633, + 0.010764372535049915, + -0.015302850864827633, + -0.00850285030901432, + 0.00041817649616859853, + 0.02552357129752636, + 0.008799540810286999, + 0.020065775141119957, + 0.016614370048046112, + 0.009257414378225803, + 0.0029093290213495493, + 0.008538245223462582, + 0.017120955511927605, + 0.019990533590316772, + 0.014961875043809414, + -0.004005890339612961, + 0.011130237020552158, + 0.01698629930615425, + -0.001957828179001808, + -0.00545898312702775, + -0.010099665261805058, + -0.0069831726141273975, + 0.02089579775929451, + -0.0039876666851341724, + 0.011422292329370975, + 0.026876576244831085, + 0.0042508733458817005, + -0.030325518921017647, + -0.00965104904025793, + 0.006380531005561352, + 0.010689371265470982, + 0.015160313807427883, + -0.019552411511540413, + -0.004504712298512459, + 0.02150016836822033, + -0.021932978183031082, + 0.001787289627827704, + -0.01389093603938818, + -0.002406025305390358, + 0.007026598323136568, + -0.0015572764677926898, + 0.03059273213148117, + -0.010176700539886951, + -0.004619551356881857, + -0.005212526768445969, + -0.0005779772764071822, + -0.015583856962621212, + 0.004384040366858244, + -0.037516627460718155, + 0.002946452470496297, + 0.015495698899030685, + 0.0024227930698543787, + -0.0016286139143630862, + -0.008382461965084076, + 0.01054299809038639, + 0.0166076198220253, + -0.018664659932255745, + 0.003807070665061474, + -0.0216197706758976, + -0.002247363328933716, + 0.025239890441298485, + -0.006451544817537069, + 0.0027193829882889986, + 0.01268891990184784, + 0.00046371249482035637, + 0.011177224107086658, + -0.011011497117578983, + -0.00749538978561759, + -0.005437468644231558, + 0.015119669027626514, + -0.013164267875254154, + -0.0021363620180636644, + 0.01125129871070385, + 0.007163915783166885, + -0.015021105296909809, + -0.009600792080163956, + -0.0031175415497273207, + 0.003692793194204569, + 0.003278784453868866, + -0.0030726438853889704, + -0.007622613571584225, + 0.01749565824866295, + -0.008971643634140491, + 0.0020074890926480293, + -0.01631072163581848, + 0.016070567071437836, + -0.0317869670689106, + 0.011950868181884289, + -0.014143582433462143, + 0.0014827295672148466, + 0.024007979780435562, + -0.01979740336537361, + 0.009935099631547928, + -0.0076099298894405365, + -0.019426554441452026, + -0.009890520013868809, + 0.004665481857955456, + 0.009631354361772537, + -0.0074228509329259396, + 0.021096039563417435, + -0.011257540434598923, + -0.01473485678434372, + 0.003307084320113063, + -0.021457858383655548, + 0.00905569177120924, + -0.008294282481074333, + -0.001723550260066986, + -0.008333584293723106, + -0.003870525863021612, + -0.0001536163908895105, + -0.011160041205585003, + -0.014094109646975994, + -0.00458619836717844, + 0.003048674436286092, + 0.005956898909062147, + -0.0024275286123156548, + 0.010961347259581089, + 0.00915464200079441, + 0.006739212200045586, + 0.016174811869859695, + 0.010610044933855534, + 0.00849140528589487, + -0.010200615972280502, + -0.015903286635875702, + -0.0009772521443665028, + 0.0036224359646439552, + -0.011284089647233486, + -0.009176261723041534, + 0.01273510605096817, + 0.002681352896615863, + 0.005108836106956005, + -0.00015785875439178199, + 0.01604642905294895, + 0.009772346355021, + -0.016711033880710602, + -0.01367376372218132, + -0.006643657106906176, + 0.0045782336965203285, + 0.00785058829933405, + -0.005931437481194735, + -0.007691679988056421, + -0.004886464215815067, + -0.01954241283237934, + -0.026633787900209427, + 0.02130846306681633, + 0.007649777922779322, + -0.005142018664628267, + -0.05884638801217079, + 0.009140107780694962, + 0.007357446942478418, + 0.010744530707597733, + 0.016232192516326904, + -0.011840011924505234, + -0.011758311651647091, + -0.009927189908921719, + -0.024670347571372986, + 0.0020997594110667706, + 0.0004327164788264781, + 0.02076103538274765, + -0.001625585719011724, + 0.014543312601745129, + 0.015552121214568615, + -0.018195193260908127, + -0.0034812670201063156, + -0.012852597050368786, + 0.00804528035223484, + -0.013114528730511665, + -0.01532563753426075, + 0.006972807925194502, + 0.002696059877052903, + 0.005440444685518742, + -0.004180595278739929, + -0.024853287264704704, + -0.007428220473229885, + -0.00960078276693821, + 0.036389634013175964, + 0.012447844259440899, + -0.0021467895712703466, + -0.02289784513413906, + 0.009499876759946346, + 0.009589578956365585, + -0.007513224612921476, + 0.0077130296267569065, + -0.008827785030007362, + -0.01888556219637394, + 0.020876066759228706, + -0.017343273386359215, + 0.0010369110386818647, + 0.02131030522286892, + -0.008363999426364899, + -0.003596170339733362, + -0.003264129161834717, + 0.012586966156959534, + -0.01181891281157732, + -0.015020165592432022, + -0.020025039091706276, + -0.003744133748114109, + 0.012030219659209251, + 0.010717494413256645, + -0.0182906873524189, + -0.0428374819457531, + -0.0005522550200112164, + 0.003489692462608218, + 0.023393038660287857, + -0.011386899277567863, + 0.020767100155353546, + -0.016129611060023308, + 0.000899553473573178, + -0.0009033829555846751, + 0.0003236926859244704, + 0.004357363563030958, + -0.01236678846180439, + -0.0036185954231768847, + -0.002770775929093361, + 0.017221279442310333, + 0.0050428700633347034, + -0.009855049662292004, + 0.007050825282931328, + -0.004415951669216156, + -0.01136085856705904, + 0.0016364618204534054, + 0.00339245842769742, + 0.004369606263935566, + 0.022200457751750946, + 0.003812039503827691, + 0.026450539007782936, + -0.003973135259002447, + 0.009388392791152, + -0.009524490684270859, + 0.017775792628526688, + 0.01259151753038168, + -0.004852794576436281, + 0.006300793495029211, + 0.02321193739771843, + 0.003458484774455428, + -0.009782565757632256, + 0.021155258640646935, + 0.009823303669691086, + -0.015003013424575329, + -0.011662897653877735, + 0.04758395254611969, + 0.007148523349314928, + -0.017273463308811188, + -0.005600208416581154, + -0.0021460556890815496, + -0.003940167371183634, + 0.008173616603016853, + -0.0068290866911411285, + 0.013645858503878117, + -0.015064352191984653, + -0.0013281938154250383, + 0.03224962577223778, + -0.024700192734599113, + 0.01058427058160305, + 0.0013951120199635625, + -0.04232697933912277, + -0.001110779121518135, + -0.0024720891378819942, + 0.008982452563941479, + 0.00657872436568141, + 0.01919950544834137, + 0.015511523932218552, + 0.020146695896983147, + 0.000754877517465502, + -0.004787050653249025, + 0.010195277631282806, + 0.010092787444591522, + -0.0012842024443671107, + 0.012658356688916683, + -0.016536572948098183, + -0.0058469995856285095, + 0.005907063372433186, + 0.023328186944127083, + 0.008361543528735638, + 0.015073410235345364, + -0.004252495244145393, + -0.012619221583008766, + 0.011944830417633057, + 0.0015894414391368628, + 0.0004869721888098866, + -0.017121559008955956, + 0.005586259998381138, + 0.0011026037391275167, + 0.004534210078418255, + 0.04153941199183464, + -0.009357818402349949, + 0.021045619621872902, + 0.014306166209280491, + 0.016236968338489532, + 0.01985875889658928, + 0.010916373692452908, + 0.0038173820357769728, + 0.004768129903823137, + -0.021353881806135178, + -0.005302153993397951, + -0.00640797708183527, + -0.011553320102393627, + -0.019393395632505417, + 0.006074576172977686, + 0.013858940452337265, + 0.012077238410711288, + 0.013037879951298237, + -0.0037624698597937822, + -0.004317753948271275, + -0.0112604396417737, + -0.0035306939389556646, + -0.004901949316263199, + 0.0025317103136330843, + 0.006433866452425718, + 0.00018576282309368253, + -0.0022837184369564056, + 0.017115594819188118, + -0.025366999208927155, + 0.005484417546540499, + 0.020268382504582405, + 0.00048786005936563015, + -0.0334741473197937, + 0.007208972238004208, + 0.0019214332569390535, + 0.0005982376751489937, + 0.022385751828551292, + 0.0062428684905171394, + -0.016648627817630768, + -0.01852639578282833, + 0.007621850352734327, + -0.012095481157302856, + 0.005496454890817404, + -0.01633157581090927, + 0.021218981593847275, + 0.028179043903946877, + -0.007566704414784908, + -0.014293571934103966, + -0.01322718895971775, + 0.007980022579431534, + -0.012588738463819027, + -0.005211920477449894, + -0.011708667501807213, + 0.010810689069330692, + 0.004926127847284079, + 0.00958152487874031, + 0.00988722313195467, + -0.008790708146989346, + -0.006744677666574717, + -0.020508812740445137, + -0.0006657428457401693, + -0.0017632918898016214, + 0.01457108836621046, + 0.01675833761692047, + -0.005462299101054668, + -0.013258369639515877, + 0.0026726850774139166, + 0.01755608431994915, + 0.0010559371439740062, + -0.006580946035683155, + 0.028203710913658142, + -0.00817638449370861, + -0.008569587953388691, + -0.0079962108284235, + 0.00732207577675581, + 0.008809679187834263, + 0.020906798541545868, + -0.00447146687656641, + -0.015889953821897507, + -0.002890945179387927, + -0.005131101701408625, + -0.026867777109146118, + 0.013968212530016899, + 0.0035293709952384233, + -0.00959000177681446, + 0.009770330041646957, + 0.009257892146706581, + 0.007487834896892309, + -0.01163551863282919, + -0.0006587894749827683, + -0.005853578913956881, + 0.00802710559219122, + 0.007543985731899738, + 0.006799638271331787, + 0.010036643594503403, + 0.007581119425594807, + 0.0011805942049250007, + 0.00024908280465751886, + -0.14057116210460663, + 0.021268926560878754, + -0.018489932641386986, + 0.0020750663243234158, + -0.0009221067884936929, + -0.013713846914470196, + -0.012038929387927055, + 0.00041601850534789264, + -0.002648268360644579, + -0.0013336038682609797, + -0.028700200840830803, + -0.0034712147898972034, + 0.023515526205301285, + -0.017381923273205757, + -0.009646168909966946, + -0.0034414338879287243, + 0.0034496525768190622, + 0.015260926447808743, + 0.00014165343600325286, + -0.0017053323099389672, + -0.011790777556598186, + -0.021294597536325455, + -0.02030794508755207, + 0.003299374133348465, + -0.011399263516068459, + -0.014819973148405552, + -0.011305531486868858, + -0.0037743516732007265, + -0.009224272333085537, + -0.00739618856459856, + -0.014883632771670818, + 0.0005400310619734228, + 0.006815807428210974, + -0.0016206835862249136, + 0.008390486240386963, + -0.0011363296071067452, + -0.0012054831022396684, + -0.022834450006484985, + -0.005607855971902609, + -0.014967693947255611, + 0.007096908520907164, + -0.0025186461862176657, + 0.016569048166275024, + -0.01397126168012619, + -0.009068919345736504, + -0.010232196189463139, + 0.04267777502536774, + -0.005440529901534319, + 0.015367677435278893, + -0.018519513309001923, + 0.010754702612757683, + -0.030577804893255234, + -0.01968066580593586, + -0.029443368315696716, + -0.010708282701671124, + -0.018278658390045166, + 0.01933666691184044, + -0.004022790584713221, + 0.034274812787771225, + 0.021044069901108742, + -0.008945425972342491, + 0.007588732521981001, + 0.0006628188421018422, + -0.0017942780395969748, + 0.0010030926205217838, + 0.0033557505812495947, + 0.003923174925148487, + 0.01573387160897255, + 0.00214461050927639, + 0.01788729801774025, + -0.00698742363601923, + 0.0001313993998337537, + -0.011092353612184525, + 0.018681088462471962, + 0.0064740292727947235, + -0.0001612466003280133, + -0.0018874510424211621, + 0.019196784123778343, + -0.00884270016103983, + -0.014585503377020359, + 0.001269510597921908, + -0.004546435549855232, + -0.0005526805762201548, + 0.018972288817167282, + 0.012587075121700764, + -0.004898178856819868, + -0.009272042661905289, + 0.010318079963326454, + -0.006984035484492779, + -0.0010326445335522294, + 0.0013025945518165827, + 0.007934934459626675, + 5.4940959671512246e-05, + -4.7915364120854065e-05, + -0.014805848710238934, + -0.013940444216132164, + -0.00766725093126297, + -0.01674792356789112, + 0.02239605039358139, + -0.0015744860284030437, + 0.0004701352445408702, + -0.00216782558709383, + 0.011106027290225029, + -0.0161292627453804, + 0.0116922277957201, + -0.004804661497473717, + 0.008459655568003654, + 0.011015964671969414, + -0.004684590268880129, + 0.006237265188246965, + 0.01814546063542366, + 0.002315868390724063, + -0.010713557712733746, + 0.008144565857946873, + 0.009710978716611862, + -0.00023647138732485473, + -0.004789176397025585, + 0.00032135224319063127, + -0.00310471816919744, + 0.04176078736782074, + 0.0061872126534581184, + 0.00922621600329876, + 0.008114426396787167, + -0.003912569023668766, + -0.006079386919736862, + 0.006576464977115393, + 0.010572435334324837, + -0.005395614076405764, + 0.009473866783082485, + -0.01589595340192318, + -0.00658356724306941, + -0.007703149225562811, + -0.016404226422309875, + -0.015039065852761269, + 0.004166499245911837, + -0.0024993945844471455, + -0.004206622019410133, + 0.007552871946245432, + -0.01735042594373226, + -0.004685405176132917, + -0.018565336242318153, + -0.006187317427247763, + 0.007632965222001076, + 0.004279849119484425, + 0.019497016444802284, + 0.015504748560488224, + -0.02601083181798458, + -0.003912737127393484, + -0.005677584558725357, + -0.01639927737414837, + 0.015376802533864975, + -0.0017050312599167228, + 0.005361367482692003, + -0.007618164177983999, + -0.000839896674733609, + 0.011798824183642864, + 0.009350240230560303, + 0.013500888831913471, + -0.008363593369722366, + 0.013137003406882286, + 0.023670300841331482, + 0.0058378614485263824, + 0.005486675072461367, + -0.03808815777301788, + -0.004272427875548601, + -0.0034568330738693476, + 0.00675031915307045, + -0.004649403505027294, + 0.022705405950546265, + -0.0005895848735235631, + -0.001356323016807437, + -0.004410691559314728, + -0.005687635857611895, + 0.009959276765584946, + -0.009851446375250816, + -0.01343546062707901, + 0.0063638207502663136, + 0.0014569261111319065, + 0.0010784659534692764, + -0.00298550957813859, + 0.004322414752095938, + 0.0064012398943305016, + -0.017976200208067894, + -0.011603370308876038, + 0.0007271599606610835, + 0.005949233192950487, + -0.0008531610365025699, + -0.0037384903989732265, + 0.005230239126831293, + -3.376183667569421e-05, + 0.007429440971463919, + -0.008286922238767147, + -0.01257348619401455, + -0.0024452137295156717, + 0.0029815405141562223, + -0.016532883048057556, + -0.014682642184197903, + -0.006048596929758787, + 0.009933413937687874, + 0.013643534854054451, + 0.007151082158088684, + -0.006443392019718885, + 5.0855855079134926e-05, + 0.010961108841001987, + -0.0016714597586542368, + -0.003082161070778966, + -0.013010917231440544, + 0.002277263905853033, + -0.0004548198776319623, + 0.035883620381355286, + 0.01163510512560606, + -0.0007736274274066091, + 0.014487561769783497, + -0.005878417752683163, + 0.0076889898627996445, + 0.0034575313329696655, + 0.017918994650244713, + 0.014190309680998325, + 0.009547279216349125, + 0.021359669044613838, + -0.09467242658138275, + 0.014164102263748646, + 0.0061029368080198765, + -0.009393954649567604, + -0.014254904352128506, + -0.0125501723960042, + -0.008598284795880318, + 0.008909791707992554, + -0.0020684502087533474, + 0.006166818551719189, + -0.0078005557879805565, + 0.018207376822829247, + 0.004343695472925901, + 0.003829690394923091, + -0.02641536295413971, + 0.008614731952548027, + -0.015346518717706203, + 0.006213800515979528, + -0.002844830509275198, + 0.0011182049056515098, + 0.004508960526436567, + -0.007930940017104149, + 0.019461138173937798, + -0.004991506692022085, + 0.005410817917436361, + -0.0015952405519783497, + 0.001855663605965674, + -0.009329220280051231, + -0.002047960413619876, + -0.012152120471000671, + -0.01193353533744812, + 0.017158176749944687, + 0.003931439481675625, + -0.003050086321309209, + 0.009831046685576439, + 1.8259455828228965e-05, + 0.005660769995301962, + 0.023258421570062637, + 0.007104786112904549, + 0.017086239531636238, + -0.001584910205565393, + 0.004882157314568758, + 0.009082877077162266, + -0.013465777039527893, + 0.015911106020212173, + 0.0007573279435746372, + 0.016246050596237183, + -0.0007061024662107229, + -0.018569251522421837, + 0.006064686458557844, + 0.006003284826874733, + -0.02868998423218727, + -0.007141293957829475, + 0.0011510752374306321, + 0.018260682001709938, + 0.002547844313085079, + -0.000908679561689496, + -0.006198019254952669, + -0.0019272406352683902, + -0.015647126361727715, + 0.016212938353419304, + -0.00958399660885334, + -0.0333319753408432, + 0.0015528574585914612, + -0.02089713141322136, + 0.012118883430957794, + -0.011829718947410583, + -0.0036953906528651714, + 0.0036227700766175985, + 0.005404670722782612, + -0.013148771598935127, + 0.005125585477799177, + -0.010104633867740631, + 0.029690604656934738, + -0.021467464044690132, + 0.004431967157870531, + -3.037602255062666e-06, + 0.012929283082485199, + 0.025010881945490837, + 0.006473209708929062, + -0.009247330948710442, + -0.010213964618742466, + 0.01048991922289133, + 0.002578838961198926, + -0.007240380626171827, + -0.0037778138648718596, + 0.005552702117711306, + 0.0009970999090000987, + -0.0005134239327162504, + -0.015265228226780891, + -0.012238113209605217, + -0.001074975705705583, + -0.008235855028033257, + 0.00691240094602108, + -0.028163254261016846, + -0.01653376780450344, + 0.00636135833337903, + -0.007173691410571337, + 0.0013631763868033886, + 0.023546883836388588, + 0.004312548786401749, + 0.005438005086034536, + -0.01507131103426218, + -0.012476365081965923, + 0.015368848107755184, + 0.013594105839729309, + 0.0034419354051351547, + -0.004736089147627354, + 0.006106049288064241, + 0.0008354774909093976, + 0.018099304288625717, + 0.03188467398285866, + -0.02209775149822235, + -0.019609501585364342, + -0.013088330626487732, + 0.012137963436543941, + 0.004658730700612068, + 0.008718287572264671, + 0.010411890223622322, + 0.012738681398332119, + 0.0004146971623413265, + 0.013569814153015614, + 0.002742900513112545, + -0.00768134742975235, + 0.0046507022343575954, + 0.00810193084180355, + 0.006253823172301054, + -0.027809666469693184, + -0.004692979156970978, + 0.02830558456480503, + 0.008869927376508713, + -0.01548872608691454, + 0.00010155897325603291, + -0.005155742634087801, + -0.003641632618382573, + -0.003161274129524827, + 0.009278552606701851, + 0.004639081656932831, + -0.017532210797071457, + 0.009128304198384285, + 0.01098115649074316, + -0.01246112585067749, + 0.00964905135333538, + -0.007233189418911934, + -0.05662214010953903, + 0.010319385677576065, + 0.0024188419338315725, + -0.015479503199458122, + -0.00461548613384366, + -0.02290443703532219, + -0.0011483789421617985, + 0.02915932424366474, + -0.013375845737755299, + -0.0037567110266536474, + -0.004223146475851536, + 0.004625230561941862, + 0.007784950081259012, + -0.009415610693395138, + -0.01769721321761608, + 0.004669789224863052, + -0.000823924143332988, + -0.006582512520253658, + -0.01594480872154236, + -0.007807816844433546, + -0.0007451024721376598, + -0.0076911561191082, + 0.022555910050868988, + 0.037120819091796875, + -0.013288027606904507, + 0.006054788362234831, + 0.005287626292556524, + 0.02623872645199299, + -6.791139458073303e-05, + -0.00573841854929924, + -0.011978182010352612, + 0.03993654251098633, + 0.006646513938903809, + -0.03288152813911438, + 0.004087386652827263, + 0.021285168826580048, + 0.0030010321643203497, + 0.00018268873100169003, + -0.017454857006669044, + -0.003263609716668725, + 0.008967570960521698, + -0.006005159113556147, + 0.031793899834156036, + -0.004274985287338495, + -0.009658184833824635, + 0.006045249290764332, + -0.010093500837683678, + -0.012320047244429588, + 0.0019532963633537292, + 0.012335507199168205, + -0.010820155031979084, + 0.030627336353063583, + -0.008389291353523731, + -0.03096228465437889, + 0.014639361761510372, + -0.000689211708959192, + -0.013833221979439259, + -0.0029455730691552162, + -0.005167636554688215, + -0.003692223457619548, + -0.0017449315637350082, + 5.933477223152295e-05, + -0.017761003226041794, + -0.01051334198564291, + -0.011981701478362083, + -0.0006010152865201235, + -0.01631980948150158, + 0.01740327849984169, + 0.009915832430124283, + 0.003225976601243019, + -0.028932111337780952, + -0.02794678881764412, + 0.007482382468879223, + 0.0296532791107893, + -0.11295995861291885, + -0.06597153097391129, + 0.013279268518090248, + 0.00021723005920648575, + 0.011285392567515373, + -0.0013172646285966039, + -0.0013818545266985893, + -0.03836236894130707, + -0.025981925427913666, + -0.007266100030392408, + 0.0006028597126714885, + -0.0037480362225323915, + -0.00985550694167614, + 0.007570114452391863, + 0.010256348177790642, + -0.008984819054603577, + 0.009000944904983044, + 0.03485498204827309, + 0.01462189108133316, + -0.0081847058609128, + -0.017224399372935295, + -0.0043222554959356785, + -0.04422296583652496, + 0.007451097015291452, + 0.0054759616032242775, + -0.010347471572458744, + 0.00042481819400563836, + 0.0035086406860500574, + -0.013084843754768372, + 0.001274296548217535, + -0.00033496436662971973, + -0.017699798569083214, + 0.006926451809704304, + 0.012634036131203175, + 0.004777984227985144, + -0.003715904662385583, + -0.008259001187980175, + -0.0021557947620749474, + 0.0063011301681399345, + 0.007823145017027855, + -0.034423306584358215, + 0.0019891224801540375, + 0.018684379756450653, + 0.01124667003750801, + 0.02184097282588482, + 0.010641698725521564, + 0.001907775760628283, + 0.01020736526697874, + 0.024363500997424126, + 0.02488025464117527, + 0.03337614983320236, + 0.0041281962767243385, + 0.003968661651015282, + 0.008284305222332478, + -0.002636532299220562, + 0.011952398344874382, + 0.0016727830516174436, + -0.03561811149120331, + 0.013210806995630264, + -6.379354454111308e-05, + 0.014107147231698036, + -0.014480868354439735, + 0.007681957446038723, + -0.015722177922725677, + 0.022424697875976562, + -0.009817034006118774, + 0.0059652552008628845, + 0.08736372739076614, + 0.00057596480473876, + 0.00372688309289515, + -0.0018850105116143823, + 0.012539657764136791, + -0.00036746865953318775, + -0.02434581331908703, + 0.000910637085326016, + 0.06461209803819656, + -0.02372094802558422, + -0.022232061251997948, + 0.02249973453581333, + -0.007172407116740942, + 0.008137012831866741, + -0.005806651432067156, + 0.023788707330822945, + 0.013279647566378117, + -0.00931223388761282, + -0.004774498287588358, + 0.005424457136541605, + 0.007753672543913126, + -0.00842311978340149, + 0.012658728286623955, + -0.0072022778913378716, + -0.00011571982031455263, + -1.4347535397973843e-05, + 0.0017955582588911057, + 0.0027977556455880404, + 0.00016695482190698385, + -0.004112112335860729, + 0.014773089438676834, + 0.00030875176889821887, + 0.0017381971701979637, + -0.0022149146534502506, + 0.005079916212707758, + 0.0034085167571902275, + -0.009654971770942211, + 0.0021534115076065063, + -0.013837074860930443, + 0.0060970475897192955, + 0.001334796310402453, + 0.003072521183639765, + 0.004417041782289743, + 0.01744433492422104, + 0.0022729146294295788, + 0.01007277425378561, + 0.0016747744521126151, + -0.011352451518177986, + 0.08393979072570801, + -0.015278252772986889, + -0.017964275553822517, + 0.014627069234848022, + -0.012706505134701729, + -0.0043800147250294685, + -0.014654221013188362, + 0.047902509570121765, + -0.005248336587101221, + 0.0080276383087039, + 0.007699280511587858, + 0.012547913938760757, + 0.003013522829860449, + 0.0023786842357367277, + 0.0035953987389802933, + -0.005653105676174164, + -0.002348233014345169, + 0.007315727416425943, + 0.01005344744771719, + -0.006647786591202021, + -0.015994183719158173, + -0.013911626301705837, + -0.021902427077293396, + 0.015335168689489365, + 0.02264135144650936, + -0.0018817809177562594, + -0.0077837565913796425, + 4.103617538930848e-05, + -0.006557790096849203, + -0.005322078708559275, + 0.030601512640714645, + -0.011868647299706936, + -0.017067842185497284, + -0.0009442181326448917, + -0.008995827287435532, + 0.0018752567702904344, + -0.00023722359037492424, + 0.004350397735834122, + -0.011455286294221878, + -0.005641941446810961, + -0.001585932681336999, + 0.0014924040297046304, + -0.0037905594799667597, + -0.004362761043012142, + -0.005070280749350786, + -0.0008037351071834564, + 0.0029828117694705725, + 0.010019244626164436, + -0.006519452203065157, + 0.01564783602952957, + -0.0015660646604374051, + -0.0019223649287596345, + 0.003924636170268059, + 0.0011776910396292806, + -0.01083623431622982, + 0.003037193790078163, + 0.007842541672289371, + 0.0029085627757012844, + 0.0036976756528019905, + 0.003950351383537054, + -0.015850568190217018, + 0.019292568787932396, + -0.0023701637983322144, + -0.012679013423621655, + 0.0039663007482886314, + -0.017295805737376213, + 0.01591471955180168, + -0.005643086973577738, + 0.007851725444197655, + -0.007805480621755123, + 0.015134260058403015, + 0.01217635814100504, + -0.011955107562243938, + 0.005935292225331068, + 0.03418536111712456, + 0.0021655536256730556, + -0.004184561315923929, + 0.013316561467945576, + 0.018786054104566574, + -0.013993442058563232, + 0.005146142095327377, + -0.0033234399743378162, + -0.01725245639681816, + 0.00597162451595068, + -0.003278224729001522, + 0.02273576706647873, + 0.006020118482410908, + -0.0029718929436057806, + 0.023562239482998848, + 0.010552502237260342, + -0.002702330704778433, + 0.022283384576439857, + -0.007511620409786701, + -0.0007745611947029829, + 0.011770558543503284, + 0.02768518403172493, + -0.003739231964573264, + -0.009806713089346886, + 0.02035883627831936, + -0.01366865448653698, + 0.004783973563462496, + 0.0016406623180955648, + 0.017609048634767532, + 0.01526420284062624, + -0.018195098266005516, + -0.0030379195231944323, + -0.015565083362162113, + 0.01970093324780464, + 0.004906580317765474, + -0.00812846701592207, + 0.0010371035896241665, + 0.009115129709243774, + 0.020038040354847908, + -0.0032886797562241554, + 0.01430064532905817, + 0.009817742742598057, + -0.018072238191962242, + 0.00028840271988883615, + -0.0011026134015992284, + -0.007567830849438906, + 0.015911681577563286, + 0.03704633563756943, + 0.006263663060963154, + 0.024994105100631714, + 0.0012163352221250534, + 0.006126823369413614, + -0.017346905544400215, + -0.001549333450384438, + -0.023209020495414734, + -0.002767095109447837, + -0.0024825974833220243, + 0.0015865401364862919, + -0.0037427216302603483, + 0.003148475894704461, + -0.010471663437783718, + 0.07582086324691772, + -0.007920753210783005, + 0.0062927561812102795, + -0.01027586031705141, + -0.008747143670916557, + 0.005667098332196474, + -0.023518433794379234, + -0.0249176025390625, + -0.012176863849163055, + -0.0009325344581156969, + -0.013892939314246178, + -0.004065525718033314, + 0.020937690511345863, + 0.0005303525249473751, + 0.007286746986210346, + -0.0063512809574604034, + -0.003054508939385414, + -0.009288488887250423, + -0.000927818298805505, + 0.001659231260418892, + 0.07175124436616898, + 0.014043503440916538, + -0.017309991642832756, + -0.0074653406627476215, + -0.013584140688180923, + 0.006841292604804039, + -0.015285730361938477, + -0.008392303250730038, + -0.003923127893358469, + 0.00619945302605629, + 0.00843631662428379, + 0.021706148982048035, + -0.011430629529058933, + 0.00036552196252159774, + 0.0025727893225848675, + 0.0030268868431448936, + 0.011806023307144642, + -0.005082596559077501, + -0.015608755871653557, + -0.0024475306272506714, + 0.015287898480892181, + 0.0005328158149495721, + 0.013733945786952972, + -0.005054493900388479, + 7.167293370002881e-05, + -0.004652048926800489, + 0.030032185837626457, + -0.030268095433712006, + -0.008603135123848915, + 0.007230470422655344, + 0.013251828029751778, + -0.04674719274044037, + -0.002552297431975603, + 0.014707847498357296, + 0.008740603923797607, + -0.0007461259956471622, + 0.006629842333495617, + 0.010853431187570095, + -0.02884477935731411, + -0.014647381380200386, + -0.016110606491565704, + 0.0011478516971692443, + 0.003994394093751907, + -0.0075265890918672085, + 0.004838959313929081, + 0.0029875398613512516, + 0.02280804142355919, + 0.014317222870886326, + -0.015206943266093731, + 0.014634947292506695, + 0.005097230430692434, + 0.014138400554656982, + -0.0008777440525591373, + 0.0065812524408102036, + -0.009854872711002827, + -0.010041269473731518, + 0.00823291763663292, + -0.005306989420205355, + 0.023291775956749916, + -0.007621110882610083, + 0.00023556631640531123, + -0.01729407161474228, + -0.009445065632462502, + 0.007761126849800348, + 0.012727835215628147, + 0.0052755060605704784, + 0.00849055964499712, + -0.055098675191402435, + 0.016522670164704323, + 0.031169207766652107, + -0.019012408331036568, + 0.021287085488438606, + 0.09889126569032669, + 0.003068167483434081, + -0.0040146419778466225, + 0.0088033527135849, + -0.011193392798304558, + 0.004799621179699898, + -0.021397365257143974, + 0.008571232669055462, + 0.0024596937000751495, + -0.015087907202541828, + -0.014470687136054039, + 0.0043216124176979065, + -0.004830708261579275, + 0.06615424901247025, + -0.007539525628089905, + 0.015400086529552937, + -0.002772617619484663, + 0.015582973137497902, + -0.0013421217445284128, + -0.03318040072917938, + -0.009494422934949398, + 0.011144007556140423, + -0.011324119754135609, + 0.00994077417999506, + -0.006393585819751024, + -0.024363726377487183, + -0.010005735792219639, + 0.007475289516150951, + -0.011242734268307686, + 0.004044105764478445, + 0.011375688016414642, + 0.005245792213827372, + 0.007800431922078133, + -0.011049680411815643, + -0.00896268431097269, + 0.008325188420712948, + 0.018027786165475845, + 0.001900791423395276, + -0.006800564471632242, + -0.014843001961708069, + -0.011037077754735947, + -0.008400384336709976, + -0.0270291268825531, + -0.009244726970791817, + 0.007054910995066166, + 0.0022565368562936783, + 0.00815126858651638, + -0.017409879714250565, + 0.015277653932571411, + 0.003826911561191082, + 0.014433519914746284, + -0.005571332294493914, + 0.06019987538456917, + 0.0016506771789863706, + 0.007672008126974106, + 0.007489991374313831, + 0.0024547867942601442, + -0.00898917019367218, + -0.0033269517589360476, + -0.0017034747870638967, + 0.0024776654317975044, + 0.017976442351937294, + -0.02690020576119423, + 0.012680414132773876, + 0.03433927521109581, + -0.03222975134849548, + -0.0005105643649585545, + -0.011664341203868389, + -0.0167100690305233, + -0.01375495083630085, + -0.005301307421177626, + 0.0173981674015522, + 0.022311672568321228, + -0.0023300640750676394, + 0.0046107531525194645, + -0.010562301613390446, + 0.013944271951913834, + -0.009307573549449444, + 0.012598446570336819, + 0.00222252169623971, + 0.012361517176032066, + -0.003465099725872278, + 0.014601849019527435, + 0.009994031861424446, + -0.011125988326966763, + -0.011172674596309662, + 9.243821841664612e-05, + 0.0025080007035285234, + -0.005823191720992327, + 0.0034160406794399023, + -0.0041359649039804935, + -0.013940521515905857, + 0.00516169099137187, + -0.016076788306236267, + -0.004835054278373718, + 0.004392514005303383, + 0.0013349559158086777, + -0.007365044206380844, + -0.004876785445958376, + 0.002383611397817731, + 0.013124857097864151, + 0.008407874032855034, + 0.001014246023260057, + -0.00746720377355814, + 0.002141887554898858, + 0.006258597131818533, + 0.015933524817228317, + -0.0053725820034742355, + 0.022170063108205795, + 0.004257259424775839, + 0.006641917861998081, + -0.013278721831738949, + 0.017826510593295097, + -0.0026895340997725725, + -0.02584243193268776, + 0.002045345725491643, + 0.015468268655240536, + -0.021187156438827515, + 0.0012191199930384755, + -0.008809929713606834, + 0.00028536541503854096, + 0.013986608013510704, + 0.0043679880909621716, + -0.015527077950537205, + -0.02160566858947277, + 0.012933701276779175, + -0.0023414762690663338, + 0.014825057238340378, + -0.007055374328047037, + 0.021947285160422325, + -0.009195255115628242, + 0.010283778421580791, + -0.03243406489491463, + 0.007102156989276409, + -0.007720996625721455, + -0.008876397274434566, + 0.011203881353139877, + -0.03565378487110138, + 0.0006796099478378892, + 0.023840706795454025, + -0.009594902396202087, + 0.008722521364688873, + 0.00467257434502244, + -0.023254215717315674, + 0.003623591037467122, + 0.0030275171156972647, + -0.003441817359998822, + -0.011934874579310417, + -0.010090316645801067, + 0.019350621849298477, + -0.01933194510638714, + 0.023976866155862808, + 0.015515281818807125, + -0.0035937572829425335, + -0.007731938734650612, + -0.02744591236114502, + -0.009767936542630196, + -0.0011632309760898352, + -0.005147438030689955, + 0.016136495396494865, + 0.009255201555788517, + 0.0052611324936151505, + 0.03312793746590614, + -0.001733509125187993, + 0.00714538712054491, + 0.006375190801918507, + 0.005252249073237181, + -0.0035915332846343517, + -0.001433516968972981, + 0.007365926168859005, + -0.007334669586271048, + -0.005865881219506264, + -0.003471437143161893, + -0.003060961375012994, + 0.013857651501893997, + -0.003360083093866706, + 0.01392501499503851, + -0.002652042545378208, + -0.003743464592844248, + 0.007178406696766615, + -0.013317806646227837, + -0.01545175351202488, + 0.009345153346657753, + -0.00919173751026392, + -0.017688410356640816, + -0.03175656497478485, + 0.0007021245546638966, + 0.0010005818912759423, + -0.020353039726614952, + -0.007259553764015436, + 0.007371054030954838, + -0.006811951287090778, + -0.010610517114400864, + -0.02191074751317501, + -0.009378713555634022, + 0.014325940981507301, + -0.0022866209037601948, + -0.010614797472953796, + -0.015110967680811882, + -0.024751955643296242, + 0.006886694114655256, + -0.0024668131954967976, + -0.00881732627749443, + -0.0004275126557331532, + -0.013413667678833008, + 0.00980889517813921, + -0.005603343714028597, + 0.004947782028466463, + 0.013534764759242535, + 0.0012061508605256677, + -0.013627325184643269, + -0.005913924425840378, + 0.013580838218331337, + -0.005613062996417284, + 0.012357380241155624, + 0.009632935747504234, + 0.011380727402865887, + -0.009081532247364521, + 0.008936706930398941, + 0.0006382451974786818, + -0.002228664932772517, + 0.021541357040405273, + 0.01471407525241375, + 0.01866542547941208, + -0.021718259900808334, + -0.0184655599296093, + 0.009409669786691666, + -0.004963140934705734, + -0.00661123264580965, + 0.008496647700667381, + 0.011720343492925167, + 0.0020392572041600943, + -4.4385720684658736e-05, + 0.007227569818496704, + -0.007262388709932566, + 0.00495573878288269, + 0.019189709797501564, + 0.005699576810002327, + -0.010253381915390491, + -0.02196628414094448, + -0.006069928407669067, + -0.022584659978747368, + -0.004435580223798752, + -0.016020242124795914, + -0.013072729110717773, + -0.020857494324445724, + 0.006440855097025633, + 0.00994779821485281, + -0.0034071102272719145, + -0.02892250008881092, + 0.021106557920575142, + -0.022122779861092567, + 0.0034439500886946917, + 0.005526831839233637, + 0.011716468259692192, + 0.006841972935944796, + 0.0022265666630119085, + -0.009438134729862213, + -0.0056886873207986355, + -0.016598565503954887, + -0.0074928272515535355, + 0.005953764542937279, + 0.004832290578633547, + 0.010426217690110207, + -0.009042374789714813, + 0.006956346333026886, + -0.036191027611494064, + -0.012027939781546593, + -0.004292266443371773, + 0.0017522815614938736, + 0.0026141530834138393, + -0.01594221405684948, + -0.006017647683620453, + -0.0015662441728636622, + -0.015864385291934013, + 0.033801186829805374, + 0.005163324065506458, + -0.0023189117200672626, + -0.015384359285235405, + 0.018605181947350502, + 0.00300998380407691, + -0.021032849326729774, + -0.0125309182330966, + -0.0014989611227065325, + -0.016213754191994667, + 0.006768441759049892, + 0.0024708991404622793, + -0.00702714454382658, + -0.01848088949918747, + 0.008801898919045925, + -0.0061686658300459385, + 0.004006996285170317, + -0.002961998339742422, + -0.009437925182282925, + 0.001465909997932613, + 0.003638435387983918, + 0.015669258311390877, + 0.02234981767833233, + -0.01821206510066986, + -0.01039009727537632, + 0.011890804395079613, + 0.0008391410228796303, + 0.005237647797912359, + 0.005652780178934336, + -0.010486056096851826, + 0.00014157193072605878, + -0.017598982900381088, + 0.027476748451590538, + -0.015051262453198433, + -0.005661887116730213, + 0.0027655046433210373, + 0.013765123672783375, + 0.015430174767971039, + -0.013045120052993298, + -0.005954166408628225, + -0.04058607667684555, + 0.0029479980003088713, + 0.0021633761934936047, + 0.018275024369359016, + -0.02660629339516163, + -0.005959813948720694, + -0.014009369537234306, + 0.00983717106282711, + -0.027107464149594307, + -0.006494787987321615, + 0.003112726379185915, + 0.019596271216869354, + 0.009136359207332134, + 0.005966909229755402, + -0.003743375651538372, + -0.02275988459587097, + -0.0033590374514460564, + 0.014752288348972797, + -0.011218326166272163, + 0.012249024584889412, + 0.007947970181703568, + -0.009406509809195995, + 0.0418572872877121, + -0.0006821168353781104, + -0.007804371416568756, + 0.007264989428222179, + -0.0017070476897060871, + -0.023579197004437447, + -0.0043262699618935585, + -0.016617219895124435, + 0.016395144164562225, + -0.003267176914960146, + 0.007953260093927383, + -0.0026215403340756893, + -0.005918181501328945, + -0.004143440630286932, + 0.0020175313111394644, + -0.0085525531321764, + 0.002231957856565714, + -0.008632602170109749, + -0.012912699952721596, + -0.004454903304576874, + 0.004858284257352352, + 0.016801612451672554, + -0.01263068150728941, + -0.02560621313750744, + 0.004128448665142059, + 0.010121879167854786, + 0.021676961332559586, + 0.0012704628752544522, + 0.01602373644709587, + 0.0001097962522180751, + 0.012659141793847084, + 0.05737046152353287, + 0.0027746346313506365, + 0.0061816927045583725, + -0.03413762152194977, + -0.006488367915153503, + -0.026847627013921738, + -0.011941518634557724, + 0.020172882825136185, + 0.004325442481786013, + -0.0044607375748455524, + 0.012757696211338043, + 0.008661951869726181, + -0.0057439194060862064, + -0.009277867153286934, + 0.042510196566581726, + -0.008593394421041012, + -0.009482035413384438, + -0.02224196307361126, + -0.01288223173469305, + 0.008169536478817463, + -0.007087032310664654, + 0.030341189354658127, + 0.005943062715232372, + 0.007055073976516724, + 0.047699011862277985, + 0.018331296741962433, + -0.018762880936264992, + -0.005782564170658588, + -0.001215085037983954, + 0.007023687940090895, + -0.005371879320591688, + 0.0044847410172224045, + -0.012997192330658436, + -0.016975069418549538, + 0.013419223949313164, + 0.014444799162447453, + -0.0008402077364735305, + -0.008576358668506145, + -0.016472868621349335, + 0.0026601236313581467, + 0.009473604150116444, + 0.0066672819666564465, + -0.013642947189509869, + 0.013612758368253708, + -0.007394650485366583, + 0.005648050457239151, + -0.029379401355981827, + 0.0036297098267823458, + -0.00019676287774927914, + -0.06103716045618057, + 0.013447936624288559, + -0.012417471967637539, + 0.013492905534803867, + -0.00016881970805115998, + 0.012587374076247215, + 0.02515636384487152, + 0.014400817453861237, + -0.004655775614082813, + -0.002161601325497031, + 0.006962628569453955, + 0.009517798200249672, + -0.004231804516166449, + -0.001825605402700603, + 0.00838676281273365, + 0.00733801256865263, + 0.014984848909080029, + -0.010497759096324444, + 0.003236215328797698, + 0.014381268993020058, + -0.0023374140728265047, + -0.006221280433237553, + 0.00668158195912838, + -0.003996105398982763, + -0.004049851093441248, + -0.0023235029075294733, + 0.014727537520229816, + 0.01002391055226326, + -0.0038976306095719337, + 0.01618410460650921, + 0.003037011018022895, + -0.0026938223745673895, + -0.02539285272359848, + -0.013733357191085815, + -0.008794798515737057, + 0.01165936328470707, + 0.024410301819443703, + 0.0046487958170473576, + -0.023514585569500923, + -0.010615739040076733, + -0.0010017494205385447, + -0.003150799311697483, + 0.002814415842294693, + 0.00034449182567186654, + 0.052860938012599945, + -0.029195401817560196, + 0.023537207394838333, + -0.005523346364498138, + -0.016222763806581497, + 0.0018258345080539584, + 0.0004135453200433403, + -0.011369050480425358, + -6.124254286987707e-05, + 0.0018256563926115632, + 0.0035504132974892855, + 0.02146379090845585, + -0.017596082761883736, + -0.0015800811816006899, + 0.0032286623027175665, + -0.004355776123702526, + -0.02643752470612526, + -0.020099418237805367, + 0.0096480967476964, + -0.019422199577093124, + 0.008244546130299568, + -0.008811090141534805, + -0.010886617936193943, + 0.004821114242076874, + 0.01915292628109455, + -0.002069171518087387, + 0.017078429460525513, + -0.0032099727541208267, + -0.02225080318748951, + -0.01945418119430542, + 0.006589117925614119, + -0.018211008980870247, + -0.011846491135656834, + -0.007676256820559502, + 0.009069488383829594, + -0.010679029859602451, + -0.006711293943226337, + 0.016674477607011795, + -0.005473244935274124, + 0.0036612460389733315, + 0.022388288751244545, + -0.0015556416474282742, + -0.01633039303123951, + -0.008380862884223461, + 0.005572699010372162, + -0.009416058659553528, + -0.000520561239682138, + -0.0017529327888041735, + -0.007220814470201731, + 0.00194757420103997, + -0.018023332580924034, + 0.00855318270623684, + -0.010794210247695446, + 0.018911100924015045, + 0.002149141626432538, + -0.01619699038565159, + -0.012756701558828354, + 0.01037165243178606, + 0.006080920808017254, + 0.017338858917355537, + 0.01176854595541954, + -0.004950216971337795, + -0.006770220585167408, + -0.0011987908510491252, + 0.005550873000174761, + 0.0068953316658735275, + -0.002380631398409605, + 0.031905971467494965, + -0.014035461470484734, + 0.004884267691522837, + -0.014883064664900303, + 0.007397807668894529, + 0.006826615892350674, + 0.022370174527168274, + -0.012215123511850834, + -0.0055653671734035015, + 0.00431319372728467, + 0.0022257778327912092, + 0.002092591021209955, + 0.002566866111010313, + -0.0042438446544110775, + 0.013065395876765251, + 0.01133787166327238, + 0.04968223720788956, + 0.014185412786900997, + -0.000657498138025403, + 0.0006054366240277886, + 0.008894789032638073, + -0.02327575534582138, + 0.00766755361109972, + -0.0037023103795945644, + 0.0005734576261602342, + 0.010155580006539822, + 0.007295736111700535, + 0.018272917717695236, + 0.0032061291858553886, + -0.011443717405200005, + -0.009044594131410122, + 0.00475812004879117, + -0.0018350925529375672, + -0.05181710422039032, + -0.004841506481170654, + -0.018239116296172142, + -0.010256418958306313, + 0.010402015410363674, + -0.010491261258721352, + 0.0044283331371843815, + -0.009477288462221622, + 0.01636997051537037, + -0.05124153196811676, + 0.008761854842305183, + -0.009123360738158226, + 0.021067000925540924, + -0.0032449853606522083, + -0.04379475861787796, + 0.00285525806248188, + 0.0016030053375288844, + -0.0004954281612299383, + -0.010113351978361607, + -0.0035114812199026346, + -0.009067571721971035, + -0.007643862161785364, + -0.0038961549289524555, + -0.0016463351203128695, + -0.0014819726347923279, + -0.0077359676361083984, + -0.0025626651477068663, + -0.015369419939815998, + 0.00021151777764316648, + -0.005267788656055927, + -0.031338855624198914, + 0.0066016861237585545, + 0.004967994522303343, + -0.001550041139125824, + 0.003962469287216663, + 0.004140784498304129, + -0.005573672242462635, + -0.007392186671495438, + -0.00010971439769491553, + -0.002078439574688673, + -0.038157347589731216, + -0.002497476991266012, + 0.004584156442433596, + -0.014602907933294773, + 0.006994187366217375, + -0.011167815886437893, + -0.003449798561632633, + -0.008995594456791878, + 0.005037620663642883, + 0.0004432621644809842, + -0.0036337419878691435, + -0.002931558759883046, + -0.0020794200245290995, + -0.0009343334240838885, + -0.006341404747217894, + 0.010642611421644688, + -0.0023820395581424236, + 0.01099257729947567, + 0.02001318521797657, + 0.00924777053296566, + -0.004684518091380596, + -0.000996413640677929, + 0.004457944538444281, + 0.019613170996308327, + 0.00697477487847209, + 0.0030058808624744415, + 0.01586875505745411, + 0.08068563044071198, + 0.005122825503349304, + -0.0024659789633005857, + 0.017186641693115234, + 0.005647238809615374, + -0.0015020145801827312, + 0.004863443318754435, + 0.010775391943752766, + -0.00091382215032354, + 0.00992161501199007, + -0.0032916669733822346, + -0.01355907041579485, + 0.03253072127699852, + -0.014989282004535198, + 0.011766116134822369, + 0.024404797703027725, + -0.022652238607406616, + 0.003864533733576536, + -0.01630968227982521, + -0.008270082995295525, + -0.019732560962438583, + -0.004078346770256758, + -0.0062146601267158985, + -0.028170565143227577, + -0.014834907837212086, + 0.016154147684574127, + 0.012454656884074211, + 0.005840727128088474, + -0.015429569408297539, + -0.006499314680695534, + 1.2995593351661228e-05, + 0.0036456058733165264, + 0.02070692740380764, + 0.0035953621845692396, + -0.0055051217786967754, + -0.005016893148422241, + -0.019701670855283737, + -0.01722315512597561, + 0.0003632520092651248, + 0.0019644133280962706, + 0.002113359048962593, + 0.019296586513519287, + -0.0006713659968227148, + 0.005857484415173531, + 0.006871737539768219, + 0.010908110067248344, + -0.009367907419800758, + 0.007926744408905506, + 0.0024272073060274124, + 0.008699405938386917, + -0.0067452965304255486, + -0.01400777604430914, + -0.03220765292644501, + 0.012162091210484505, + 0.00813760980963707, + -5.1945589802926406e-05, + 0.004557203501462936, + 0.011108719743788242, + 0.008100292645394802, + 0.006147092208266258, + 0.01078564953058958, + -0.0036022572312504053, + -0.00476168654859066, + -0.012119434773921967, + 0.0063981227576732635, + 0.0090107973664999, + 0.01268649473786354, + 0.0017497824737802148, + 0.04433903470635414, + 0.0059849354438483715, + 0.025970211252570152, + 0.0013388133374974132, + -0.01564357802271843, + 0.007101865950971842, + 0.019912205636501312, + 0.0003864555910695344, + -0.00038184531149454415, + -0.010198007337749004, + 0.02090342342853546, + -0.008255740627646446, + 0.015720780938863754, + -0.03073808364570141, + -0.08150603622198105, + 0.0018264108803123236, + -0.004517144989222288, + 0.009484121575951576, + 0.014199766330420971, + -0.01304249931126833, + 0.001501111895777285, + 0.004712960217148066, + 0.0023354787845164537, + -0.003095261985436082, + 0.017159678041934967, + -0.0009899024153128266, + -0.0005457205115817487, + -0.0006269220029935241, + 0.010834455490112305, + -0.008568896912038326, + -0.003569802036508918, + -0.005855290684849024, + 0.007432734593749046, + -0.012593535706400871, + -0.005350111052393913, + 0.024672210216522217, + -0.0019386806525290012, + 0.010940090753138065, + 0.0352589413523674, + 0.012447547167539597, + -0.0038381987251341343, + -0.015042820945382118, + -0.01585651934146881, + -0.006268288008868694, + -0.015592769719660282, + 0.0027306596748530865, + 0.009325480088591576, + 0.006169900298118591, + -0.007534654811024666, + -0.0037600162904709578, + -0.004289351403713226, + 0.000991089385934174, + 0.0030682662036269903, + 0.002782549010589719, + 0.00999694038182497, + 0.015619512647390366, + 0.0045175813138484955, + 0.006268071476370096, + -0.006309726741164923, + -0.0029548502061516047, + -0.010972143150866032, + -0.03408029302954674, + 0.02075989544391632, + -0.001352173974737525, + 0.004241594113409519, + -0.0034192358143627644, + -0.005755606107413769, + 0.008271819911897182, + -0.0033976861741393805, + -0.004875042010098696, + 0.00017273427511099726, + 0.005380677990615368, + 0.022887006402015686, + -0.005737040191888809, + -0.0008217194117605686, + 9.551878974889405e-06, + 0.006086540408432484, + 0.011040084064006805, + 0.004689626395702362, + -0.041874952614307404, + 0.011563439853489399, + 0.017451846972107887, + -0.001544792321510613, + 0.011648854240775108, + -0.00968982931226492, + -0.0015931414673104882, + -0.002199416747316718, + -0.009467734955251217, + 0.009000147692859173, + 0.016932031139731407, + 0.027764758095145226, + 0.005739019718021154, + 0.02239065431058407, + 0.007475803606212139, + 0.00030174790299497545, + 0.00028461290639825165, + 0.014361865818500519, + -0.011489171534776688, + -0.0010978815844282508, + -0.0068009765818715096, + -0.0072715673595666885, + -0.005849083419889212, + -0.0037140571512281895, + 0.002013425575569272, + 0.007496306672692299, + 0.02063853293657303, + 0.009343385696411133, + 0.0032973596826195717, + 0.0013450135011225939, + 0.006090259179472923, + -0.01709957793354988, + -0.002102040685713291, + -0.0006078774458728731, + 0.018062513321638107, + 0.0024715971667319536, + -0.006022671703249216, + -0.006617725361138582, + -0.00803044531494379, + 0.002601976739242673, + -9.894675895338878e-05, + 0.014098841696977615, + 0.02276068553328514, + -0.005152376368641853, + -0.008962154388427734, + 0.013693805783987045, + 0.0066393474116921425, + -0.003498507896438241, + 0.006886438000947237, + 0.007114376872777939, + -0.014358610846102238, + 0.002913370728492737, + -0.000411173386964947, + 0.029069198295474052, + 0.01471382100135088, + 0.006771600805222988, + 0.019176838919520378, + -0.0069371978752315044, + -0.03307488188147545, + -0.012436112388968468, + -0.012981860898435116, + 0.011992488987743855, + 0.00026012404123321176, + 0.009573227725923061, + -0.003317134454846382, + -0.012670508585870266, + -0.005751032382249832, + 0.019647080451250076, + 0.011157850734889507, + 0.0037417765706777573, + 0.015422316268086433, + -0.0061828866600990295, + -0.006896853446960449, + 0.005075597204267979, + 0.0032057915814220905, + -0.0053546917624771595, + -0.0017162226140499115, + -0.012730231508612633, + -0.023516103625297546, + 0.0040944418869912624, + -0.0064768679440021515, + 0.009537078440189362, + -0.01792856678366661, + 0.011245423927903175, + -0.015496039763092995, + -0.0024146500509232283, + -0.010188641026616096, + -0.0057060932740569115, + 0.02530439756810665, + 0.0010937510523945093, + 0.016338247805833817, + -0.011270127259194851, + -0.021436013281345367, + -0.003076296066865325, + 0.0014449878362938762, + -0.025066254660487175, + -0.00997532345354557, + 0.010360944084823132, + 0.007994565181434155, + 0.020805805921554565, + -0.009989123791456223, + -0.024070980027318, + -0.011420054361224174, + 0.014045908115804195, + -0.002301764441654086, + 0.021021725609898567, + -0.005920052528381348, + -0.005555750336498022, + -0.1100606620311737, + -0.0013333272654563189, + -0.010383335873484612, + -0.0024324844125658274, + 0.014656013809144497, + 0.0055320970714092255, + 0.003610587678849697, + 0.008353319950401783, + 0.007570816203951836, + 0.0005980990827083588, + 0.004960291553288698, + -0.014320983551442623, + 0.021780073642730713, + 0.005328048951923847, + 0.014773913659155369, + 0.00036367925349622965, + -0.0024609670508652925, + 0.0003627677506301552, + -0.0012642234796658158, + -0.012298866175115108, + 0.008035814389586449, + -0.002589054172858596, + 0.00496963644400239, + -0.0036913594231009483, + 0.00855366513133049, + 0.005062656477093697, + -0.0018019112758338451, + -0.007329288870096207, + -0.009330973029136658, + 0.009057185612618923, + 0.011960270814597607, + 0.003456445410847664, + 0.008591771125793457, + -0.027177317067980766, + -0.002200338989496231, + 0.01947081834077835, + -0.0022944847587496042, + -0.0265960693359375, + -0.011268780566751957, + 0.031984951347112656, + -0.0038782756309956312, + -0.0021741099189966917, + 0.010220522992312908, + -0.0010002547642216086, + -0.028045495972037315, + -0.00602697441354394, + 0.012949258089065552, + -0.037877947092056274, + -0.007170215714722872, + 0.017596257850527763, + -0.002443920588120818, + 0.008517898619174957, + 0.012079782783985138, + 0.007320368196815252, + -0.0015997540904209018, + -0.003759058192372322, + 0.01697436533868313, + -0.009258597157895565, + 0.0116229597479105, + -0.015040935948491096, + 0.003708250354975462, + 0.010384175926446915, + 0.01392564456909895, + 0.0007757418206892908, + -0.010837536305189133, + -0.02084582857787609, + -0.0006796784000471234, + -0.004157013725489378, + 0.01216585747897625, + -0.015524436719715595, + -0.006368208210915327, + -0.011965720914304256, + 0.0007959000649861991, + 0.003282552817836404, + 0.01697205938398838, + -0.013079632073640823, + -1.6858515664353035e-05, + 0.01716669090092182, + -0.012290837243199348, + 0.011355692520737648, + 0.006644989363849163, + 7.216497760964558e-05, + -0.010449581779539585, + 0.02556866966187954, + 0.013258839026093483, + 0.008788528852164745, + 0.027130886912345886, + 0.004548319615423679, + -0.00986379012465477, + 0.019640015438199043, + 0.00840231217443943, + 0.0023446970153599977, + 0.008525993674993515, + -0.0021535700652748346, + 0.006693070754408836, + -0.01538416463881731, + 0.002442802069708705, + -0.0027070478536188602, + -0.006122679449617863, + 0.013550378382205963, + 0.003588184015825391, + -0.06982556730508804, + 0.007518196944147348, + 0.009820936247706413, + -0.01280035637319088, + -0.019948173314332962, + -0.01125146634876728, + 0.008974805474281311, + 0.00019347814668435603, + -0.002835130086168647, + 0.007120916619896889, + 0.002939057070761919, + 0.003743307664990425, + -0.01592685654759407, + 0.011482794769108295, + -0.003948688041418791, + 0.006118200719356537, + -0.017745519056916237, + 0.0030688955448567867, + 0.015680784359574318, + 0.009602596051990986, + -0.007216131780296564, + -0.00071106938412413, + -0.01829252764582634, + 0.01679348014295101, + -0.0026904772967100143, + -0.02531370148062706, + 0.006819016300141811, + 0.01134933065623045, + -0.010883692651987076, + 0.018200267106294632, + 0.00497687142342329, + -0.07682611048221588, + 0.012845315970480442, + -0.002297808649018407, + -0.0011580147547647357, + -0.0069051943719387054, + -0.00863133929669857, + -0.000127527498989366, + 0.0050041405484080315, + -0.0018969946540892124, + -0.006229930557310581, + -0.002832546830177307, + -0.011173218488693237, + 0.00809637364000082, + 0.006466258782893419, + -0.0008464604616165161, + -0.005326536949723959, + -0.03646963834762573, + 0.01503602322191, + -0.00048034064820967615, + -0.004738582298159599, + 0.0006660059443674982, + 0.0071990154683589935, + 0.0016361846355721354, + -0.006685251370072365, + -0.01049802452325821, + -0.010431176982820034, + 0.007832614704966545, + -0.0017802632646635175, + -0.007958317175507545, + 0.012489816173911095, + -0.0039244829677045345, + -0.023933028802275658, + -0.0062790377996861935, + -0.03921337425708771, + -0.0010746694169938564, + 0.011616470292210579, + 0.006040457636117935, + -0.0032674032263457775, + 0.0030712070874869823, + -0.0015448381891474128, + 0.014136671088635921, + 0.02435639314353466, + 0.007755768485367298, + -0.01807386241853237, + 0.005169088952243328, + 0.008116073906421661, + -0.025297969579696655, + -0.011602220125496387, + 0.024171657860279083, + 0.004425316117703915, + 0.00880701094865799, + 0.0034389242064207792, + 0.0003901641466654837, + 0.007944107055664062, + 0.02538790926337242, + -0.0032352746929973364, + -0.004545597359538078, + 0.004784590099006891, + 0.00833042897284031, + 0.010192660614848137, + -0.010590138845145702, + 0.01086315419524908, + 0.013696488924324512, + -0.013249187730252743, + 0.09848418831825256, + -0.008921408094465733, + -0.01160672027617693, + -0.0014811273431405425, + -0.015171647071838379, + -0.01303920429199934, + 0.0032486882992088795, + 0.0004476673202589154, + -0.01515947375446558, + -0.015221519395709038, + 0.017747703939676285, + -0.01625930704176426, + 0.009027152322232723, + -0.0030991912353783846, + -0.0050200787372887135, + -0.006459150929003954, + 0.009837016463279724, + -0.0038185003213584423, + -0.010568585246801376, + 0.10700750350952148, + -0.050744738429784775, + -0.016936305910348892, + 0.004570316523313522, + 0.008584039285779, + 0.020358195528388023, + -0.0020779771730303764, + 0.004486917518079281, + -0.004176947753876448, + 0.004530048463493586, + 0.0010878229513764381, + 0.0020839085336774588, + -0.005041697062551975, + 0.015246784314513206, + 0.009315180592238903, + 0.006611058954149485, + -0.0011461435351520777, + -0.0029665108304470778, + -0.021204138174653053, + -0.004676281940191984, + -0.004988397471606731, + -0.001883900840766728, + -0.017575189471244812, + -0.021290209144353867, + -0.009901989251375198, + 0.01149493083357811, + -0.0022335886023938656, + -0.0009516370482742786, + -0.0033914248924702406, + 0.006689234171062708, + -0.02755572460591793, + 0.006375263910740614, + -0.019161885604262352, + 0.0006652987794950604, + -0.003023321507498622, + 0.008668470196425915, + -0.006400353275239468, + 0.01101712603121996, + 0.008067188784480095, + -0.05016842111945152, + 0.020387977361679077, + 0.0023900449741631746, + -0.00916864164173603, + 0.0036322749219834805, + -0.003873632987961173, + -0.03598451986908913, + -0.0014766675885766745, + 0.014160165563225746, + -0.0005684659699909389, + -0.011639157310128212, + -0.009992370381951332, + 0.009013227187097073, + -0.018564961850643158, + 0.002262088702991605, + -0.00786169059574604, + -0.011983864940702915, + 0.0025757336989045143, + -0.008964032866060734, + -0.0036275344900786877, + -0.030701708048582077, + -1.2736034477711655e-05, + 0.007007175125181675, + 0.0029746796935796738, + -0.01294081099331379, + -0.005706931930035353, + -0.0065298802219331264, + -0.025118310004472733, + 0.0014991185162216425, + -0.0006634898018091917, + -0.0020492137409746647, + 0.0043340278789401054, + -0.008175856433808804, + -0.016978947445750237, + 0.008853256702423096, + 0.017512887716293335, + 0.004681963939219713, + -0.005630165338516235, + -0.020414330065250397, + 0.010203377343714237, + -0.006850847974419594, + 0.00415709987282753, + 0.021311383694410324, + -0.012213138863444328, + 0.004198898561298847, + -0.004814972635358572, + -0.0032302034087479115, + 0.012963201850652695, + 0.003948943689465523, + -0.03119429014623165, + -0.0025802410673350096, + -0.004105126950889826, + 0.015713922679424286, + 0.03433695808053017, + -0.001921502873301506, + -0.010841187089681625, + 0.0056632887572050095, + 0.0016370322555303574, + -0.008713394403457642, + 0.010599509812891483, + -0.018661746755242348, + -0.014619572088122368, + -0.007942081429064274, + -0.0007030157139524817, + 0.020845457911491394, + -0.020975392311811447, + 0.002058228710666299, + -0.03162615746259689, + 0.0028798377607017756, + -0.014567926526069641, + -0.000224937655730173, + -0.008158812299370766, + -0.010674006305634975, + -0.021926838904619217, + -0.0018185689114034176, + -0.0005261832266114652, + -0.016605619341135025, + -0.004907428286969662, + -0.009931025095283985, + 0.002797940047457814, + -0.013492460362613201, + -0.0015226268442347646, + -0.004648158792406321, + -0.014778194949030876, + -0.007655769120901823, + 0.0072705247439444065, + 0.01239989884197712, + 0.003382772207260132, + 0.006304041016846895, + -0.027380917221307755, + 0.0018903349991887808, + 0.010701406747102737, + 0.009950710460543633, + -0.0022457188460975885, + -0.0013048179680481553, + -0.006448055617511272, + -0.009445013478398323, + -0.0043543013744056225, + -0.005899304989725351, + 0.008760999888181686, + 0.012168189510703087, + 0.003623495576903224, + -0.002860513748601079, + 0.014696642756462097, + 0.00664622662588954, + -0.010794464498758316, + 0.0038140309043228626, + 0.02180846966803074, + 0.015655474737286568, + 0.004994645249098539, + -0.0017719959141686559, + -0.0100890276953578, + 0.003387005301192403, + -0.00895288772881031, + 0.020044341683387756, + 0.015991320833563805, + -0.002716548042371869, + -0.04285954684019089, + -0.0011012500617653131, + 0.06296391785144806, + 0.02478996105492115, + -0.0057402788661420345, + 0.019022667780518532, + 0.0637228935956955, + -0.040064554661512375, + -0.0063917930237948895, + 0.0028772172518074512, + -0.025382408872246742, + 0.0011594142997637391, + -0.00555409537628293, + -0.0010608459124341607, + -0.0016512608854100108, + -0.0004975870251655579, + -0.026351992040872574, + 0.008579124696552753, + -0.007295521907508373, + -0.005047335289418697, + -0.003066767007112503, + -0.011319272220134735, + 0.005403378512710333, + 0.03566128760576248, + -0.0073368423618376255, + -0.01953023113310337, + -0.0012140264734625816, + 0.0034700401592999697, + -0.015389238484203815, + 0.016567768529057503, + 0.03966198489069939, + 0.014102538116276264, + -0.007977609522640705, + -0.014325615018606186, + 0.017625058069825172, + -0.012106695212423801, + -0.0062873889692127705, + -0.007929041050374508, + 0.014342661947011948, + -0.006144620478153229, + 0.016466334462165833, + 0.003368194680660963, + 0.0034304731525480747, + -0.0036030153278261423, + 0.015164188109338284, + -0.03132358938455582, + -0.0035460793878883123, + -0.004901463631540537, + -0.005256686359643936, + -0.004236740060150623, + -0.0020242808386683464, + 0.013373812660574913, + -0.008837934583425522, + -0.01667282171547413, + 0.011314953677356243, + -0.005888343323022127, + 0.004306424874812365, + 0.02252529002726078, + 0.011683570221066475, + 0.005091662984341383, + 0.0069917943328619, + 0.005790886003524065, + -0.01186009868979454, + -0.015157736837863922, + 0.010833561420440674, + 0.015457095578312874, + -0.016264334321022034, + 0.011979799717664719, + -0.000889959221240133, + -0.023722410202026367, + -0.04722484573721886, + -0.0019003974739462137, + 0.006918878294527531, + -0.001912941923364997, + -0.014900440350174904, + -0.022613920271396637, + 0.005940202623605728, + 0.006140132900327444, + 0.01083120796829462, + -0.09408728778362274, + 0.003530879272148013, + -0.0065813795663416386, + 0.00042781929369084537, + 0.004156361799687147, + 0.0013949427520856261, + -0.0027621339540928602, + -0.0032572303898632526, + 0.003899245522916317, + 0.001301634474657476, + -0.017047306522727013, + -0.0009321376564912498, + 0.008392412215471268, + 0.0015307702124118805, + -0.000948609143961221, + -0.01646834798157215, + -0.004943536594510078, + -0.009056443348526955, + -0.004277252592146397, + -0.007525656372308731, + 0.017052393406629562, + -0.02086947299540043, + 0.013098575174808502, + 0.0028805851470679045, + 0.020758619531989098, + -0.002741438103839755, + -0.01671239733695984, + 0.005058759823441505, + 0.003133484860882163, + -0.017393959686160088, + -0.003727133385837078, + 0.008729553781449795, + -0.006872472818940878, + -0.00919341016560793, + 0.005627454724162817, + 0.002955513773486018, + -0.001848006621003151, + -0.021247148513793945, + 0.0011617972049862146, + 0.0030035206582397223, + -0.0008808046113699675, + -0.08122498542070389, + -0.016972975805401802, + -0.00047907669795677066, + 0.024103756994009018, + 0.00651074992492795, + -0.004944009240716696, + -0.0025285028386861086, + -0.007301712408661842, + -0.015219677239656448, + 0.0044852737337350845, + 0.0028784782625734806, + -0.008017979562282562, + 0.00906275399029255, + -0.0032000946812331676, + -0.01645597256720066, + -0.012482545338571072, + -0.0057031502947211266, + 0.013649935834109783, + -0.01925339177250862, + 0.005795628763735294, + -0.021159380674362183, + 0.02136789634823799, + -0.0017760208575055003, + -0.0053621078841388226, + 0.017737774178385735, + -0.0013809019001200795, + -0.014768927358090878, + 0.0036635086871683598, + -0.007612437475472689, + -0.01548297330737114, + 0.013424471952021122, + 0.015616350807249546, + 0.009948640130460262, + 0.009249920025467873, + 0.02835085242986679, + -0.00025327643379569054, + -0.005351770203560591, + 0.004825824871659279, + -0.010799693875014782, + -0.018460027873516083, + -0.0045702396892011166, + 0.017261182889342308, + 0.03083011321723461, + 0.00914816278964281, + 0.01710396073758602, + 0.003333726432174444, + 0.011854344047605991, + 0.006586953066289425, + -0.005136910825967789, + 0.008459334261715412, + 0.014697783626616001, + -0.011134302243590355, + 0.0369650162756443, + 0.02173621952533722, + 0.00952412560582161, + 0.007247610948979855, + 0.008096657693386078, + 0.003097767010331154, + -0.010650931857526302, + -0.004623436834663153, + -0.0034907658118754625, + -0.01345803216099739, + 0.020483553409576416, + 0.002582201501354575, + 0.007846462540328503, + -0.0002749804116319865, + -0.004129447974264622, + -0.0179738812148571, + 0.013177061453461647, + 0.07194140553474426, + 0.009848184883594513, + -0.022407719865441322, + 0.007138858083635569, + 0.002408557804301381, + -0.0067494879476726055, + 0.004729173611849546, + -0.01481538824737072, + 0.011927873827517033, + 0.0009316467912867665, + 0.012135563418269157, + 0.003288197796791792, + -0.020327186211943626, + 0.007360697258263826, + -0.018698805943131447, + -0.007955745793879032, + 0.0214819498360157, + 0.038509268313646317, + -0.023987045511603355, + -0.012645588256418705, + -0.062307316809892654, + 0.0014993477379903197, + 0.008282462134957314, + -0.035591211169958115, + 0.007426215801388025, + -0.012707764282822609, + 0.0037989653646945953, + -0.02323576807975769, + -0.00875324010848999, + -0.007841871120035648, + -0.0014017638750374317, + 0.004496355075389147, + -0.007202311418950558, + -0.011192605830729008, + 0.022398460656404495 + ] + }, + "sad": { + "count": 2, + "norm": 12.658817291259766, + "raw_vector": [ + -0.036461129784584045, + -0.09156162291765213, + -0.32503795623779297, + 0.2736768424510956, + 0.08078718930482864, + -0.21399447321891785, + 0.19517214596271515, + -0.03312021493911743, + -0.19883480668067932, + 0.13221246004104614, + -0.0481133759021759, + 0.07747329026460648, + -0.14382514357566833, + 0.11882644146680832, + -0.183986634016037, + 0.06790433079004288, + 0.10570541024208069, + -0.001924889162182808, + 0.08379320800304413, + 0.18792474269866943, + -0.17962928116321564, + -0.027228178456425667, + 0.07794414460659027, + -0.21623125672340393, + -0.12719985842704773, + 0.11109832674264908, + -0.4091463088989258, + -0.27476614713668823, + -0.1792915016412735, + -0.04973096400499344, + 0.21699507534503937, + -0.12981016933918, + 0.2826332747936249, + 0.2200968712568283, + 0.045386821031570435, + 0.0612725168466568, + -0.17431849241256714, + -0.2996876835823059, + 0.02683410793542862, + -0.054008305072784424, + -0.309140682220459, + -0.15528185665607452, + 0.15077298879623413, + 0.1666601598262787, + -0.0961652472615242, + -0.15058596432209015, + 0.043006859719753265, + -0.2523763179779053, + -0.14831103384494781, + -0.16900992393493652, + 0.022717026993632317, + -0.1482466608285904, + 0.02480965480208397, + 0.09120701998472214, + 0.07510241121053696, + 0.11231386661529541, + 0.025720015168190002, + -0.17531971633434296, + -0.12187356501817703, + 0.044518936425447464, + -0.17800194025039673, + -0.18428726494312286, + 0.234553262591362, + 0.04554063081741333, + 0.31554150581359863, + 0.029519975185394287, + 0.2804112136363983, + 0.09950333088636398, + 0.21545004844665527, + 0.03850746899843216, + -0.21275632083415985, + 0.11517013609409332, + -0.056777819991111755, + -0.058778248727321625, + 0.18411900103092194, + 0.061930008232593536, + -0.3708374500274658, + 0.028950713574886322, + -0.18047794699668884, + -0.2966596186161041, + -0.0528368279337883, + 0.19816191494464874, + -0.011413775384426117, + 0.0631292313337326, + 0.17298562824726105, + -0.06111682951450348, + 0.005912094376981258, + 0.29291215538978577, + 0.19292715191841125, + 0.017978500574827194, + -0.14476096630096436, + -0.067608542740345, + 0.025811221450567245, + 0.46732720732688904, + -0.07218626141548157, + -0.26486557722091675, + -0.0692039430141449, + -0.1188381016254425, + 0.4582226276397705, + 0.07999487221240997, + -0.1699196845293045, + 0.1628430038690567, + -0.028097979724407196, + -0.1411750167608261, + -0.02098548784852028, + 0.034088458865880966, + -0.09599564969539642, + 0.09626695513725281, + -0.0507844053208828, + 0.10476381331682205, + 0.16801109910011292, + 0.15189963579177856, + 0.20051419734954834, + 0.0898665338754654, + 0.3073873221874237, + 0.13603170216083527, + 0.06472678482532501, + -0.09297378361225128, + 0.12914565205574036, + 0.21539051830768585, + 0.21652625501155853, + -0.05615787208080292, + 0.04764563590288162, + -0.006749425083398819, + -0.146918386220932, + -0.23404598236083984, + 0.033684518188238144, + -0.10270887613296509, + -0.1780310720205307, + -0.0031237355433404446, + 0.3585149049758911, + -0.0992259755730629, + 0.047492802143096924, + -0.053501006215810776, + 0.2967875003814697, + 0.47793814539909363, + -0.05630803108215332, + -0.0066373348236083984, + -0.05675344169139862, + -0.13243785500526428, + 0.13913767039775848, + 0.09527312219142914, + -0.2070448100566864, + 0.09211012721061707, + 0.14389698207378387, + -0.13965800404548645, + 0.1510736346244812, + 0.031968675553798676, + 0.1729985475540161, + 0.5159397721290588, + 0.043353572487831116, + 0.3005874752998352, + 0.1529703140258789, + -0.14085035026073456, + -0.03806230425834656, + 0.15590275824069977, + 0.07927786558866501, + 0.03886403143405914, + -0.04038231447339058, + 0.006390728056430817, + -0.07635890692472458, + -0.07497299462556839, + 0.4647059440612793, + 0.021022021770477295, + -0.06446033716201782, + 0.21210123598575592, + -0.2736254036426544, + 0.05575714632868767, + 0.13410744071006775, + -0.0436493344604969, + -0.1095503568649292, + -0.23248624801635742, + -0.01040332019329071, + -0.26475176215171814, + -0.012427836656570435, + 0.022006243467330933, + -0.15402968227863312, + 0.2084616869688034, + 0.27750420570373535, + -0.1575668752193451, + 0.1505632847547531, + 0.014609917998313904, + -0.2643383741378784, + 0.08689317107200623, + -0.046932194381952286, + -0.05303668975830078, + -0.14557994902133942, + 0.2521047592163086, + -0.04828711599111557, + -0.05151299759745598, + -0.18587923049926758, + 0.3222425878047943, + 0.5159193873405457, + -0.0014683781191706657, + -0.14315737783908844, + -0.13851642608642578, + -0.8523869514465332, + 0.044806063175201416, + -0.16276128590106964, + 0.07995308935642242, + 0.5343096256256104, + 0.011200957000255585, + 0.05496881157159805, + 0.08832768350839615, + 0.10892701148986816, + 0.06651262938976288, + 0.11167030036449432, + 0.30730700492858887, + -0.12078524380922318, + -0.0009703487157821655, + 0.03941859304904938, + 0.013617988675832748, + 0.12573030591011047, + -0.034301236271858215, + -0.11207091808319092, + 0.3105483055114746, + -0.07687409222126007, + 0.1343686580657959, + -0.08218307048082352, + 0.20909059047698975, + 0.10128059983253479, + 0.07608925551176071, + 0.06558628380298615, + -0.061030205339193344, + 0.48679158091545105, + 0.047256313264369965, + -0.1835387945175171, + 0.014754816889762878, + 0.03296944126486778, + 0.31558164954185486, + 0.17289108037948608, + -0.024654999375343323, + 0.176396906375885, + -0.6207199096679688, + -0.11107519268989563, + 0.021590689197182655, + 0.01915781944990158, + 0.0054382383823394775, + 0.03401289880275726, + 0.20003634691238403, + 0.14134037494659424, + -0.032495930790901184, + -0.1083766520023346, + -0.4489630460739136, + 0.07968685030937195, + 0.2780275344848633, + -0.2779550850391388, + -0.055908843874931335, + -0.03428536653518677, + -0.04042191803455353, + -0.031665802001953125, + -0.06618199497461319, + -0.1449626088142395, + 0.12029611319303513, + -0.11872541159391403, + -0.0032892394810914993, + 0.07127100974321365, + 0.006290074437856674, + 0.31835997104644775, + -0.11675599217414856, + -0.09985088557004929, + 0.036780260503292084, + -0.13069790601730347, + -0.05326134338974953, + -0.1239357739686966, + 0.10386128723621368, + 0.15027980506420135, + -0.012335456907749176, + 0.08177576214075089, + -0.02693665400147438, + -0.5058046579360962, + 0.12382642924785614, + -0.0006500370800495148, + 0.1259027123451233, + 0.019152935594320297, + 0.1889624297618866, + 0.01670275628566742, + 0.2258230745792389, + 0.08231784403324127, + -0.05223189294338226, + 0.0037789158523082733, + 0.32920289039611816, + 0.5655853748321533, + 0.025237902998924255, + -0.023859787732362747, + 0.43092167377471924, + -0.30680689215660095, + 0.2631717920303345, + -0.10082940012216568, + 0.06387250870466232, + -0.10132037103176117, + -0.14357511699199677, + -0.6268166303634644, + 0.028674691915512085, + -0.2186691164970398, + 0.04315951466560364, + 0.018268153071403503, + 0.011622123420238495, + 0.20056499540805817, + -0.1359124481678009, + 0.12963981926441193, + -0.12607797980308533, + -0.15991473197937012, + 0.12151596695184708, + 0.09638791531324387, + 0.20309501886367798, + -0.35498949885368347, + 0.16388604044914246, + 0.10381697118282318, + 0.03740585967898369, + -0.13710463047027588, + 0.016096018254756927, + 0.2287943959236145, + -0.05863657966256142, + 0.01129485946148634, + -0.027790581807494164, + 0.16455480456352234, + 0.19342175126075745, + -0.17964579164981842, + 0.12336885184049606, + -0.17234021425247192, + -0.035293400287628174, + -0.16014544665813446, + 0.004229816608130932, + -0.0016575045883655548, + 0.262690007686615, + 0.06966668367385864, + 0.026329241693019867, + 0.034072067588567734, + -0.06837508827447891, + -0.15159136056900024, + -0.04793056845664978, + -0.2436143308877945, + 0.20565959811210632, + -0.14218905568122864, + 0.2591606378555298, + 0.06309150159358978, + 0.09112276136875153, + -0.33413875102996826, + -0.06863458454608917, + 0.08909395337104797, + 0.02446221373975277, + 0.18187978863716125, + -1.051576018333435, + -0.1859087347984314, + -0.3043471574783325, + 0.01572129875421524, + -0.10238377749919891, + -0.14912980794906616, + -0.08286382257938385, + -0.014736633747816086, + -0.08961014449596405, + 0.5024960041046143, + -0.056320518255233765, + -0.1205827072262764, + -0.01744663715362549, + 0.40617799758911133, + -0.08813533931970596, + 0.2676956057548523, + -0.13101276755332947, + 0.025665834546089172, + -0.6849914193153381, + 0.21327704191207886, + 0.24398303031921387, + -0.002538924803957343, + -0.31684860587120056, + -0.05996139347553253, + 0.1526634395122528, + 0.1575527787208557, + -0.026971396058797836, + 0.05552501231431961, + 0.233412504196167, + -0.18425804376602173, + 0.2560696005821228, + -0.1555684506893158, + -0.3261156976222992, + -0.07887256145477295, + -0.3221767544746399, + 0.1758771538734436, + 0.029030635952949524, + -0.10099206864833832, + 0.02451711893081665, + 1.4460166692733765, + -0.1280137449502945, + 0.15769962966442108, + -0.2592732310295105, + 0.11310354620218277, + 0.21721598505973816, + 0.16363398730754852, + -0.08403526246547699, + -0.004489287734031677, + -0.20017430186271667, + -0.10895177721977234, + 0.13775277137756348, + 0.00912763923406601, + -0.02725294977426529, + 0.38796889781951904, + 0.35548073053359985, + -0.3833393454551697, + 0.0728093832731247, + -0.14317810535430908, + 0.10441215336322784, + 0.045023154467344284, + -0.1218821331858635, + 0.15558604896068573, + -0.06316834688186646, + 0.07064560055732727, + -0.06735249608755112, + -0.20700791478157043, + 0.20328733325004578, + -0.08009260892868042, + 0.2473025918006897, + -0.1360039860010147, + 0.05698637664318085, + -0.058927617967128754, + -0.11274807900190353, + 0.20495058596134186, + 0.08457811921834946, + 0.006667934358119965, + 0.07330723106861115, + -0.14968064427375793, + 0.06023377180099487, + -0.041173551231622696, + -0.18818268179893494, + -0.07314829528331757, + 0.05131378769874573, + 0.07986772060394287, + -0.34013405442237854, + 0.03210902959108353, + 0.22189448773860931, + -0.6369110941886902, + 0.22082114219665527, + 0.6512657999992371, + -0.032534074038267136, + 0.05847054347395897, + 0.12276896834373474, + 0.14195561408996582, + -0.07537741959095001, + -0.06342159956693649, + -0.12996181845664978, + -0.17216870188713074, + 0.02860794961452484, + 0.010844144970178604, + -0.3705972731113434, + 0.12713143229484558, + -0.14492538571357727, + 0.03743504360318184, + -0.29063981771469116, + -0.07333847880363464, + 0.0015726648271083832, + -0.01912936568260193, + -0.05625181645154953, + 0.16181519627571106, + 0.1437397599220276, + -0.16142715513706207, + -0.09794795513153076, + -0.06690970808267593, + 0.09356939792633057, + -0.33460819721221924, + 0.16294609010219574, + 0.058125488460063934, + 0.13237091898918152, + -0.3134126365184784, + 0.08155781775712967, + 0.15377023816108704, + -0.22196565568447113, + 0.07230532169342041, + -0.005289457738399506, + -0.15379631519317627, + 0.19590909779071808, + -0.11812200397253036, + -0.2706877589225769, + 0.20477989315986633, + 0.16599111258983612, + -0.41702526807785034, + -0.11116905510425568, + 0.13706529140472412, + -0.02724749781191349, + 0.177232563495636, + 0.016011252999305725, + -0.13709765672683716, + -0.14104107022285461, + 0.124929279088974, + 0.12272569537162781, + -0.028713542968034744, + 0.04429808259010315, + -0.150088831782341, + 0.7055999636650085, + 0.21609428524971008, + 0.13068461418151855, + -0.0865626260638237, + -0.19402487576007843, + -0.1823122501373291, + -0.023486364632844925, + -0.19792169332504272, + 0.02189212292432785, + -0.1400475651025772, + 0.21496471762657166, + 0.04400908574461937, + -0.14108574390411377, + 0.20184025168418884, + 0.04499293118715286, + -0.1080755814909935, + -0.027273183688521385, + -0.20168732106685638, + 0.2692551016807556, + 0.24554264545440674, + 0.06418609619140625, + -0.16534987092018127, + 0.23511451482772827, + -0.04097723215818405, + -0.046473484486341476, + 0.05093572288751602, + 0.2615596055984497, + -0.012228701263666153, + -0.07237447798252106, + -0.19839070737361908, + 0.16259127855300903, + -0.00897715799510479, + 0.0866081491112709, + 0.06560368835926056, + -0.1414714753627777, + 0.4053795337677002, + 0.3943735957145691, + 0.16178658604621887, + 0.09498909115791321, + 0.2779827117919922, + -0.043921224772930145, + 0.0348832905292511, + 0.29545971751213074, + -0.20617206394672394, + -0.1081276535987854, + -0.009709248319268227, + 0.014326587319374084, + 0.06615366041660309, + -0.029267866164445877, + 0.07808145135641098, + 0.016350116580724716, + -0.018131084740161896, + -0.17691849172115326, + 0.04711131006479263, + -0.1196943148970604, + 0.23615269362926483, + 0.0703234076499939, + -0.005850214511156082, + -0.05286107212305069, + -0.7142319679260254, + -0.2470148801803589, + -0.2440202832221985, + -6.593018770217896e-05, + -0.1745128631591797, + -0.12865258753299713, + 0.6626723408699036, + -0.08559185266494751, + 0.14316312968730927, + -0.096418596804142, + 0.24613922834396362, + -0.0564425103366375, + 0.2744602859020233, + 0.35641032457351685, + -0.3829320967197418, + -0.025718165561556816, + 0.2191621959209442, + 0.11242655664682388, + -0.04977819696068764, + -0.33938413858413696, + -0.07465258985757828, + 0.010715998709201813, + 0.09698658436536789, + -0.14694787561893463, + 0.11261063069105148, + 0.02622254751622677, + -0.12527327239513397, + -0.12266387790441513, + -0.15068334341049194, + -0.0063798753544688225, + -0.25128573179244995, + 0.03270460665225983, + 0.22286416590213776, + 0.10229567438364029, + 0.32057639956474304, + -0.1768019050359726, + 0.10660994052886963, + -0.2211541086435318, + -0.05880177766084671, + -0.0929173082113266, + -0.08211295306682587, + -0.0878419354557991, + 0.03503403440117836, + 0.00626952201128006, + 0.2998404800891876, + 0.1507735401391983, + 0.2775006890296936, + -0.00843316875398159, + 0.19716966152191162, + 0.20842808485031128, + -0.12620267271995544, + 0.20126627385616302, + 0.34872132539749146, + -0.10590207576751709, + 0.07293196022510529, + 0.13523827493190765, + 0.032711826264858246, + -0.0610680989921093, + -0.00414547324180603, + 0.25527864694595337, + -0.04439638927578926, + -0.008854391053318977, + 0.08737590909004211, + 0.19634205102920532, + -0.07556972652673721, + -0.0665178894996643, + 0.19143468141555786, + 0.04522252827882767, + 0.12141003459692001, + -0.3200693726539612, + -0.04997267946600914, + -0.04249188303947449, + -0.026621690019965172, + -0.03415103629231453, + 0.18956927955150604, + 0.26385608315467834, + -0.03368955850601196, + 0.07191433012485504, + 0.429934561252594, + 0.0275759007781744, + 0.16721190512180328, + 0.04976861551403999, + -0.014966420829296112, + 0.0263727605342865, + -0.1918647289276123, + -0.32919812202453613, + 0.12458482384681702, + -0.14122235774993896, + 0.12117621302604675, + -0.30316978693008423, + -0.023928895592689514, + -0.14284522831439972, + 0.3012757897377014, + 0.034955330193042755, + 0.016773462295532227, + -0.12562133371829987, + -0.22960016131401062, + -0.08771207928657532, + 0.4092966318130493, + -0.010025032795965672, + 0.28947046399116516, + 0.5602016448974609, + 0.2151411920785904, + -0.02546009235084057, + -0.1253495216369629, + -0.08956392109394073, + -0.0020537469536066055, + 0.08855593204498291, + -0.08211009949445724, + 0.13901767134666443, + 0.16382727026939392, + 0.01050543412566185, + 0.5111405253410339, + 0.23825114965438843, + -0.11796117573976517, + -0.01199987530708313, + -0.05346742272377014, + -0.1392129808664322, + 0.039233796298503876, + -0.40161603689193726, + 0.05870407447218895, + -0.006717860698699951, + -0.09711560606956482, + 0.1937088668346405, + 0.170863538980484, + -0.13349966704845428, + -0.12021249532699585, + -0.036034513264894485, + 0.10184332728385925, + 0.01643717661499977, + -0.22899270057678223, + 0.11590329557657242, + -0.030735276639461517, + -0.15207813680171967, + -0.14227622747421265, + 0.15634196996688843, + -0.1539791375398636, + -0.2379690706729889, + -0.04465462267398834, + 0.04500018432736397, + 0.13049687445163727, + -0.056707050651311874, + -0.03687465935945511, + -0.09892331063747406, + -0.21525996923446655, + 0.30361461639404297, + 0.09656456112861633, + 0.142318457365036, + 0.23783183097839355, + 0.03514235466718674, + 0.0375545434653759, + -0.1987597793340683, + -0.16862669587135315, + 0.08118510991334915, + 0.11213479936122894, + -0.0557139590382576, + 0.006947070360183716, + -0.007020717486739159, + 0.2460240125656128, + -0.08594890683889389, + 0.10337287187576294, + 0.6100609302520752, + -0.06429824233055115, + 0.06661022454500198, + -0.09539483487606049, + -0.2606181800365448, + -0.18529333174228668, + 0.006810910999774933, + -0.18780517578125, + -0.050206996500492096, + 1.0309901237487793, + -0.08638102561235428, + 0.04113801196217537, + 0.0966307520866394, + -0.012969717383384705, + -0.03473649173974991, + 0.08858274668455124, + 0.09338010847568512, + 0.005208134651184082, + 0.12014657258987427, + -0.12820850312709808, + 0.1400463581085205, + 0.05750764161348343, + 0.07429099082946777, + -0.10545951873064041, + -0.0281270332634449, + -0.019098695367574692, + -0.20169061422348022, + -0.030388224869966507, + -0.018352694809436798, + 0.13317826390266418, + 0.25515297055244446, + -0.09922723472118378, + -0.23288601636886597, + 0.18308870494365692, + -0.13472503423690796, + -0.19905422627925873, + 0.0573296993970871, + -0.37788307666778564, + -0.0433480441570282, + 0.1752171367406845, + -0.2573019862174988, + 0.17840316891670227, + -0.04028617590665817, + -0.06278260052204132, + 0.26550060510635376, + 0.0019919797778129578, + 0.009879060089588165, + 0.07291549444198608, + -0.025819197297096252, + 0.014510943554341793, + -0.10260050743818283, + -0.09893456101417542, + 0.08312361687421799, + 0.2414056807756424, + 0.14758621156215668, + 0.049208082258701324, + 0.07509663701057434, + -0.06568685173988342, + -0.08381558209657669, + 0.10621097683906555, + -0.19046029448509216, + -0.06755350530147552, + -0.07562088966369629, + -0.45312708616256714, + 0.015703070908784866, + -0.04667763039469719, + 0.06860596686601639, + -0.19624409079551697, + -0.17956556379795074, + -0.04414421319961548, + -0.7162910103797913, + -0.11712992936372757, + -0.2655978798866272, + -0.16880396008491516, + 0.09967117011547089, + 0.11056588590145111, + 0.088761106133461, + -0.003440380096435547, + -0.26741641759872437, + 0.14769774675369263, + 0.012221604585647583, + -0.08723767101764679, + 0.08037924766540527, + 0.21160873770713806, + -0.07332967221736908, + 0.012456986121833324, + -0.211550772190094, + -0.12803608179092407, + -0.052183598279953, + 0.053463686257600784, + -0.1958179771900177, + 0.05644380301237106, + -0.012868458405137062, + -0.22456616163253784, + -0.005651500076055527, + -0.24769964814186096, + 0.0469583198428154, + 0.18981121480464935, + 0.05975499749183655, + -0.15038107335567474, + -0.18177610635757446, + 0.08727448433637619, + -0.06608885526657104, + 0.10098052769899368, + -0.14966616034507751, + -0.02875666879117489, + 0.35799723863601685, + -0.18874533474445343, + -0.17205984890460968, + 0.014721281826496124, + -0.09358329325914383, + -0.037713002413511276, + -0.0711686909198761, + -0.1675329953432083, + 0.028978832066059113, + -0.2532491087913513, + 0.10936476290225983, + -0.22615806758403778, + -0.1949004828929901, + 0.14874207973480225, + -0.2607996165752411, + -0.29036015272140503, + -0.017550520598888397, + -0.2718419134616852, + 0.11973424255847931, + -0.05022638663649559, + 0.5277315378189087, + 0.06595094501972198, + 0.14838263392448425, + -0.15988925099372864, + 0.062434032559394836, + 0.442961186170578, + 0.03249087929725647, + -0.33915603160858154, + 0.34567350149154663, + 0.07302052527666092, + -0.0015006698668003082, + -0.07213230431079865, + -0.04477466642856598, + -0.08741942048072815, + -0.20733381807804108, + -0.04753544554114342, + 0.16898149251937866, + -0.15315578877925873, + -0.40446335077285767, + -0.08767323195934296, + 0.07772175967693329, + 0.10825682431459427, + -0.0028234124183654785, + 0.28606218099594116, + -0.10590293258428574, + 0.007620036602020264, + -0.11884854733943939, + -0.2473156452178955, + -0.14685268700122833, + -0.24673590064048767, + 0.03556216508150101, + 0.02674800157546997, + -0.0288630872964859, + -0.08237087726593018, + 0.05924104154109955, + 0.13517193496227264, + -0.04503375664353371, + 0.02475888840854168, + -0.11116823554039001, + -0.1155243068933487, + -0.035529594868421555, + 0.13802364468574524, + 0.06134901940822601, + -0.1673738658428192, + 0.08106890320777893, + 0.0707021951675415, + 0.14543402194976807, + 0.038049519062042236, + -0.05164966732263565, + -0.06353843957185745, + -0.06406567245721817, + 0.0876055508852005, + 0.051784634590148926, + -0.1505453735589981, + 0.03222227841615677, + 0.7973340749740601, + -0.22295868396759033, + -0.1127399280667305, + -0.02532535046339035, + -0.05237646773457527, + 0.05904078483581543, + 0.014868490397930145, + -0.17937937378883362, + -0.1712862104177475, + -0.163478285074234, + 0.06574950367212296, + 0.21039406955242157, + -0.21528515219688416, + -0.47756409645080566, + -0.08143337070941925, + 0.022354919463396072, + -0.015817424282431602, + 0.2749192714691162, + 0.08842692524194717, + 0.02448582649230957, + -0.09225521981716156, + 0.19932156801223755, + -0.053206369280815125, + 0.30348408222198486, + -0.08978264033794403, + -0.0457468181848526, + 0.3410830795764923, + -0.0781368687748909, + -0.13729923963546753, + 0.18692046403884888, + -0.12716257572174072, + -0.06763528287410736, + 0.0553722158074379, + 0.01750081405043602, + -0.13542605936527252, + 0.06691941618919373, + 0.18706996738910675, + -0.02521492913365364, + -0.0037912726402282715, + 0.20778630673885345, + 0.11993925273418427, + 0.03294822573661804, + -0.047375187277793884, + -0.18316052854061127, + 0.2434483766555786, + -0.18282879889011383, + -0.07393641024827957, + 0.06389115750789642, + 0.017710791900753975, + 0.17884372174739838, + -0.12614338099956512, + 0.1321234554052353, + 0.016049303114414215, + -0.260590523481369, + 0.08138206601142883, + 0.07050348073244095, + 0.11886028200387955, + 0.14869213104248047, + -0.01872238516807556, + 0.1275651454925537, + 0.2687695026397705, + -0.08178636431694031, + -0.08643399924039841, + 0.01400073803961277, + -0.256507009267807, + 0.032497890293598175, + -0.25159531831741333, + -0.2383139431476593, + -0.25076207518577576, + 0.2441990077495575, + -0.1603313833475113, + 0.2071569561958313, + 0.19333048164844513, + -0.003860466182231903, + -0.1589711755514145, + -0.20641960203647614, + -0.12091140449047089, + 0.13191422820091248, + 0.16849589347839355, + 0.0385122150182724, + -0.02428525686264038, + 0.06417509913444519, + -0.007810067385435104, + -0.12849657237529755, + 0.16399578750133514, + 0.12793686985969543, + 0.007558256387710571, + -0.15555894374847412, + 0.031296975910663605, + -0.11380672454833984, + -0.12157659977674484, + 0.10608389973640442, + -0.03740239515900612, + 0.0790078267455101, + -1.0840301513671875, + 0.05304271727800369, + -0.04109375178813934, + -0.22208786010742188, + -0.005585263948887587, + -0.07832421362400055, + 0.07485540211200714, + -0.16772350668907166, + -0.1117561087012291, + -0.09968936443328857, + -0.13408100605010986, + -0.023786291480064392, + 0.5354992151260376, + 0.06856665015220642, + -0.313726544380188, + -0.11227788776159286, + -0.06532394140958786, + 0.04219391569495201, + -0.01864589750766754, + -0.10726871341466904, + 0.18544887006282806, + 0.14318689703941345, + 0.07801516354084015, + -0.1253097653388977, + 0.004563838243484497, + -0.14950478076934814, + 0.12767767906188965, + 0.11345551162958145, + 0.18305455148220062, + 0.14282169938087463, + 0.7347378730773926, + 0.06755350530147552, + -0.2566128373146057, + -0.10953325033187866, + -0.012005705386400223, + -0.10699571669101715, + -0.09944625198841095, + 0.007413122802972794, + -0.29086196422576904, + -0.10378856956958771, + 0.03991151228547096, + -0.16696807742118835, + -0.1495925486087799, + 0.033689625561237335, + -0.028324738144874573, + -0.05994594842195511, + 0.015541210770606995, + -0.17122524976730347, + -0.14551660418510437, + 0.17121043801307678, + -0.3405102789402008, + -0.009768277406692505, + -0.011648878455162048, + -0.19999998807907104, + -0.26044344902038574, + 0.11125970631837845, + 0.15259811282157898, + -0.04315885156393051, + 0.18419094383716583, + -0.005185294896364212, + -0.1658848077058792, + -0.06669913232326508, + 0.4035212993621826, + 0.005725463852286339, + -0.7132019996643066, + -0.09048676490783691, + -0.0979607030749321, + 0.21034906804561615, + -0.31926101446151733, + 0.23342964053153992, + -0.09694913029670715, + -0.030804229900240898, + 0.2768746614456177, + 0.3930227756500244, + -0.4381120204925537, + -0.2168939709663391, + -0.21260738372802734, + 0.0015839538536965847, + -0.6362762451171875, + -0.07314067333936691, + -0.17003309726715088, + -0.19177810847759247, + 0.18826192617416382, + -0.18019457161426544, + 0.17228884994983673, + 0.5643159747123718, + -0.1775377094745636, + 0.12521740794181824, + -0.20087674260139465, + 0.07609713077545166, + -0.12975764274597168, + -0.04456618055701256, + 0.015176601707935333, + -0.03667866438627243, + 0.1256365031003952, + -0.14402352273464203, + -0.029338419437408447, + -0.05580485612154007, + -0.09296578168869019, + 0.08750735223293304, + 0.13911546766757965, + -0.09373248368501663, + 0.06486844271421432, + 0.08211484551429749, + 0.05783368647098541, + 0.07175910472869873, + -0.21301423013210297, + -0.1481708288192749, + 0.2587178349494934, + 0.184760183095932, + -0.3025369346141815, + -0.0735827311873436, + -0.08697886765003204, + 0.06717580556869507, + 0.06677226722240448, + -0.08321709930896759, + 0.03913801908493042, + -0.24013985693454742, + 0.131056010723114, + 0.20533889532089233, + -0.01534905657172203, + 0.002274284139275551, + 0.10234828293323517, + -0.18688715994358063, + -0.06800270825624466, + -0.2232053130865097, + -0.29631128907203674, + -0.33263856172561646, + -0.12016138434410095, + 0.09137870371341705, + 0.0837860256433487, + -0.12936154007911682, + 0.15911483764648438, + -0.10319406539201736, + 0.22532275319099426, + 0.04329387843608856, + 0.18405982851982117, + 0.21135148406028748, + -0.043388575315475464, + -0.09488299489021301, + -0.10185406357049942, + -0.045003682374954224, + 0.14345163106918335, + 0.08183711767196655, + 0.18117588758468628, + 0.28319764137268066, + -0.0821782797574997, + 0.06716853380203247, + -0.19410890340805054, + -0.18763454258441925, + 0.04624158889055252, + 0.13060149550437927, + 0.027115968987345695, + -0.02392934076488018, + 0.09156887978315353, + 0.18010057508945465, + 0.009140998125076294, + -0.05712677165865898, + 0.10666759312152863, + 0.036836177110672, + 0.15337294340133667, + -0.31677109003067017, + 0.3170965313911438, + 0.17032787203788757, + 0.09850981086492538, + -0.3201063573360443, + 0.10932532697916031, + 0.13650426268577576, + -0.0876961350440979, + -0.14583712816238403, + -0.18717622756958008, + 0.035604044795036316, + -0.12789538502693176, + -0.14489825069904327, + -0.061647675931453705, + -0.004158528987318277, + -0.14815190434455872, + 0.14892998337745667, + 0.04580248147249222, + -0.1250639110803604, + -0.10818981379270554, + -0.07690303027629852, + 0.11146846413612366, + 0.15819871425628662, + 0.10306724905967712, + -0.09812064468860626, + 0.059857483953237534, + -0.14845377206802368, + -0.2139769196510315, + -0.5116451978683472, + -0.26386165618896484, + -0.05354466289281845, + -0.19773784279823303, + 0.03384444862604141, + 0.01851445622742176, + 0.23862960934638977, + -0.199113667011261, + -0.06906851381063461, + 0.0027602985501289368, + 0.14146926999092102, + -0.022728443145751953, + 0.01493394561111927, + 0.04748458415269852, + -0.046565569937229156, + 0.17268510162830353, + -0.32295966148376465, + -0.06860716640949249, + 0.38144323229789734, + 0.045480549335479736, + 0.07606299966573715, + 0.2996560037136078, + 0.012487031519412994, + 0.2521175444126129, + -0.09384943544864655, + 0.08441109955310822, + 0.04965946078300476, + 0.19475841522216797, + 0.03025004267692566, + -0.14996930956840515, + -0.015151754021644592, + 0.17843258380889893, + 0.11978945136070251, + -0.1079782247543335, + 0.16567623615264893, + 0.03976781666278839, + 0.15822827816009521, + -0.12483350187540054, + 0.16501984000205994, + -0.053955309092998505, + 0.024857746437191963, + -0.025963470339775085, + 0.12152773141860962, + -0.2993898391723633, + -0.14761263132095337, + -0.026452526450157166, + 0.19169527292251587, + -0.10156943649053574, + 0.006922565400600433, + 0.002330658957362175, + 0.17306113243103027, + -0.5352215766906738, + -0.0633377879858017, + 0.16766765713691711, + -0.1569875180721283, + -0.22747817635536194, + -0.031596891582012177, + -0.031953468918800354, + 0.09582751989364624, + 0.16007396578788757, + 0.22889786958694458, + 0.03824649006128311, + 0.11418573558330536, + 0.20129826664924622, + 0.028769712895154953, + -0.31166571378707886, + -0.24314579367637634, + -0.21598157286643982, + 0.20637567341327667, + 0.2691267728805542, + -0.08056901395320892, + -0.1107586920261383, + -0.23405340313911438, + -0.12770526111125946, + -0.4819949269294739, + 0.29183292388916016, + 0.1727650761604309, + -0.222073033452034, + -0.25091230869293213, + -0.2134668529033661, + 0.17499710619449615, + -0.20269282162189484, + -0.08116379380226135, + -0.06819608807563782, + 0.04581451416015625, + -0.05095556378364563, + -0.06219235807657242, + -0.14222049713134766, + -0.10319110751152039, + 0.10757981240749359, + -0.3003026843070984, + -0.04797063395380974, + 0.0794692113995552, + 0.14208166301250458, + 0.14777830243110657, + -0.31141263246536255, + 0.07471343874931335, + -0.03195928782224655, + -0.15117290616035461, + 0.28011077642440796, + -0.05244159698486328, + -0.1416173279285431, + -0.007249489426612854, + -0.19706307351589203, + -0.15354302525520325, + -0.1072964072227478, + -0.05774809420108795, + 0.033677082508802414, + -0.03468131273984909, + 0.28239113092422485, + -0.28596219420433044, + 0.00928671658039093, + -0.12506824731826782, + -0.185037761926651, + -0.10244230926036835, + 0.10128824412822723, + -0.5299028158187866, + 0.04175277799367905, + 0.019539672881364822, + -0.05728514492511749, + -1.0540504455566406, + -0.07592099905014038, + -0.0810537189245224, + 0.16060087084770203, + 0.04054576903581619, + 0.01888025365769863, + -0.15701311826705933, + -0.07115405797958374, + -0.15300601720809937, + 0.04254526644945145, + -0.13000135123729706, + -0.22010867297649384, + 0.19338615238666534, + 0.009627766907215118, + -0.1801096498966217, + 0.14515560865402222, + 0.8115708827972412, + 0.3014701306819916, + -0.032446883618831635, + 0.02706991881132126, + 0.1009884774684906, + 0.23121747374534607, + -0.3259430527687073, + 0.07295326888561249, + -0.009278419427573681, + 0.23622022569179535, + 0.04801376909017563, + -0.22012904286384583, + 0.055944427847862244, + 0.009493507444858551, + 0.18384496867656708, + 0.220789834856987, + -0.01386323757469654, + -0.021997423842549324, + 0.08453535288572311, + -0.05528034269809723, + -0.3043826222419739, + 0.06082197651267052, + -0.0006602704524993896, + -0.2911888659000397, + 0.09802762418985367, + 0.06613563001155853, + 0.03881966695189476, + -0.035304613411426544, + -0.03935065120458603, + 0.14489467442035675, + 0.0863560140132904, + 0.07143483310937881, + -0.23567312955856323, + -0.38697350025177, + -0.16366739571094513, + -0.08332427591085434, + -0.072042316198349, + 0.0922899916768074, + -0.08075898885726929, + -0.2389446198940277, + 0.04066088795661926, + -0.17188866436481476, + -0.017298344522714615, + 0.40156620740890503, + 0.04106063395738602, + 0.010961443185806274, + 0.11599766463041306, + -0.14696097373962402, + -0.02508571743965149, + 0.13357919454574585, + -0.009450159966945648, + 0.024377474561333656, + -0.08740168064832687, + -0.055351197719573975, + 0.1387370526790619, + 0.216125026345253, + -0.1309107542037964, + -0.08597365021705627, + 0.22213512659072876, + -0.05167151242494583, + 0.1635473668575287, + 0.2548537850379944, + 0.010189421474933624, + 0.19797563552856445, + -0.14090070128440857, + -0.28265008330345154, + -0.057477064430713654, + -0.17386557161808014, + 0.05084381252527237, + -0.1706932932138443, + 0.02927999570965767, + 0.03055914305150509, + -0.05469425022602081, + -0.1952735334634781, + 0.06600679457187653, + -0.08430042862892151, + -0.279839426279068, + -0.18887051939964294, + 0.019769202917814255, + 0.05290566384792328, + -0.13576056063175201, + 0.1218208596110344, + -0.06787212193012238, + -0.07927010953426361, + 0.3028636872768402, + -0.2823046147823334, + -0.023278605192899704, + -0.08987614512443542, + 0.0751209408044815, + -0.06997509300708771, + 0.20418448746204376, + 0.073781318962574, + 0.535589337348938, + -0.32726359367370605, + -0.0026517733931541443, + 0.19194692373275757, + -0.14660635590553284, + -0.015260055661201477, + 0.05276402831077576, + -0.09310354292392731, + -0.1522310972213745, + 0.3328365087509155, + -0.04334954172372818, + 0.13964813947677612, + -0.08912710845470428, + -0.0037070736289024353, + 0.18408730626106262, + 0.11176131665706635, + 0.14686718583106995, + -0.1215854287147522, + -0.19981586933135986, + -0.147793710231781, + -0.03010217472910881, + -0.25650662183761597, + -0.01540759764611721, + -0.09003706276416779, + -0.15603771805763245, + 0.29278987646102905, + -0.28847992420196533, + 0.30728915333747864, + -0.04530041292309761, + -0.11620713770389557, + 0.13566210865974426, + 0.22439038753509521, + 0.16674500703811646, + 0.055654093623161316, + 0.04679245874285698, + -0.04265837371349335, + 0.09414999186992645, + 0.006334066390991211, + 0.0818033441901207, + 0.10064791142940521, + 0.17744940519332886, + -0.6161085367202759, + -0.01871849223971367, + 0.09714449942111969, + -0.2512580156326294, + -0.08622505515813828, + 0.1817304790019989, + 0.2352898120880127, + -0.3183034360408783, + 0.11932463943958282, + 0.5370630025863647, + -0.1606065332889557, + 0.09001597762107849, + 0.2828088700771332, + -0.04585965722799301, + 0.18003442883491516, + 0.05530516058206558, + -0.21523399651050568, + -0.13626424968242645, + 0.19371598958969116, + 0.10763604193925858, + -0.005293607711791992, + -0.32309824228286743, + -0.11139176785945892, + -0.2540089786052704, + -0.21031829714775085, + -0.11718790233135223, + -0.03682863712310791, + -0.10808409005403519, + -0.21673107147216797, + -0.25305652618408203, + -0.18939965963363647, + 0.05070982500910759, + -0.14089564979076385, + -0.21502645313739777, + 0.024783771485090256, + 0.06910429894924164, + 0.12784983217716217, + 0.08839869499206543, + -0.26451611518859863, + 0.05047912895679474, + -0.14459264278411865, + -0.3402256369590759, + -0.053811024874448776, + 0.3838852047920227, + 0.12217086553573608, + -0.08076995611190796, + -0.13531482219696045, + -0.19191162288188934, + 0.2475104182958603, + 0.05702432990074158, + -0.27216678857803345, + 0.2776455879211426, + -0.022624999284744263, + 0.17584282159805298, + 0.030457399785518646, + -0.08894842863082886, + 0.01971329003572464, + -0.3872678279876709, + 0.12882499396800995, + 0.05847806856036186, + 0.06598441302776337, + 0.007316485047340393, + 0.19727319478988647, + -0.055496759712696075, + 0.47491616010665894, + -0.03729860484600067, + -0.1961572766304016, + -0.03066970407962799, + 0.020616311579942703, + 0.1061120480298996, + -0.13346190750598907, + -0.21023282408714294, + 0.23627251386642456, + -0.04819299280643463, + 0.27368074655532837, + 0.028448963537812233, + -0.3195071220397949, + 0.08166894316673279, + -0.034424178302288055, + -0.16062670946121216, + -0.005870075896382332, + -0.14149044454097748, + 0.13939251005649567, + 0.09488280117511749, + 0.0688319057226181, + -0.19139714539051056, + 0.16664408147335052, + 0.02704378217458725, + -0.14242812991142273, + -0.09068668633699417, + 0.1901494562625885, + 0.12153471261262894, + 0.039464399218559265, + -0.046746425330638885, + -0.04150552675127983, + 0.03889605402946472, + 0.09649328887462616, + -0.22147434949874878, + 0.11357040703296661, + -0.025412410497665405, + 0.20647448301315308, + -0.20343437790870667, + 0.40238550305366516, + -0.1512838900089264, + 0.1790410578250885, + -0.018769562244415283, + -0.3039126992225647, + 0.2506117820739746, + -0.1257665902376175, + 0.09633272141218185, + 0.2459172010421753, + 0.12520228326320648, + -0.059059515595436096, + -0.12192154675722122, + 0.09396452456712723, + -0.26705092191696167, + 0.1425071656703949, + 0.1865258663892746, + -0.04186375066637993, + 0.2716311514377594, + -0.11463437974452972, + 0.10499582439661026, + 0.02181808277964592, + 0.10549334436655045, + 0.048996295779943466, + 0.0019445568323135376, + 0.1412729173898697, + 0.17841479182243347, + 0.05805586278438568, + -0.03859260678291321, + -0.07540730386972427, + 0.030729681253433228, + -0.13875767588615417, + -0.11588695645332336, + -0.08531045913696289, + -0.2047540247440338, + -0.13431060314178467, + -0.10749103128910065, + 0.12912772595882416, + 0.20131683349609375, + 0.012370824813842773, + -0.04585576057434082, + 0.14284321665763855, + 0.11616063117980957, + -0.16121141612529755, + -0.03394276648759842, + -0.06467185914516449, + 0.001998306717723608, + -0.20312882959842682, + -0.12370635569095612, + 0.21154192090034485, + 0.17309370636940002, + 0.08410084247589111, + -0.05795503035187721, + -0.09937916696071625, + 0.07508495450019836, + 0.09736759960651398, + 0.06185689568519592, + 0.24738383293151855, + 0.33715230226516724, + -0.26973992586135864, + -0.09683718532323837, + 0.06509185582399368, + 0.7449257373809814, + -0.11570296436548233, + -0.09313660115003586, + -0.13601309061050415, + -0.2054803967475891, + 0.1498805731534958, + 0.1488463431596756, + 0.12566648423671722, + 0.31229743361473083, + -0.02658046782016754, + -0.005477670580148697, + -0.2628101706504822, + 0.02057797461748123, + -0.1841011345386505, + -0.1968715339899063, + 0.23032966256141663, + 0.04406869411468506, + 0.16269871592521667, + -0.10184374451637268, + 0.16601449251174927, + 0.19400441646575928, + -0.08826744556427002, + -0.03412892296910286, + -0.06886957585811615, + 0.052921392023563385, + 0.3146132230758667, + 0.09403247386217117, + 0.12153454124927521, + -0.4606497883796692, + -0.15757499635219574, + 0.027175825089216232, + 0.2898596525192261, + -0.12025722116231918, + -0.12139269709587097, + 0.09510856866836548, + -0.0976378321647644, + 0.1117493063211441, + 0.23906885087490082, + -0.26426637172698975, + 0.2195453643798828, + -0.013126061297953129, + -0.2697632908821106, + 0.1058783233165741, + 0.04552324861288071, + 0.04132002964615822, + -0.159336119890213, + 0.14961346983909607, + 0.19013752043247223, + 0.2534933090209961, + 0.047396305948495865, + -0.15228837728500366, + -0.13567082583904266, + 0.23153848946094513, + 0.5422719120979309, + 0.006990939378738403, + -0.04417546093463898, + -0.29612821340560913, + 0.1441446840763092, + -0.2628869414329529, + 0.20418182015419006, + -0.01138729602098465, + 0.011435747146606445, + -0.0040975213050842285, + -0.0551590695977211, + 0.15654891729354858, + 0.04580714553594589, + 0.03507477790117264, + -0.21800105273723602, + -0.06383677572011948, + 0.12475322932004929, + -0.08925512433052063, + 0.055900752544403076, + 0.1438150554895401, + -0.02071567252278328, + -0.042944520711898804, + -0.05531405657529831, + -0.28103163838386536, + -0.048255905508995056, + -0.3348326086997986, + 0.05029520392417908, + -0.11884596943855286, + 0.12056881934404373, + -0.22502052783966064, + -0.15939369797706604, + 0.06143063306808472, + -0.07976062595844269, + -0.29383572936058044, + -0.043780289590358734, + 0.12383570522069931, + -0.26780059933662415, + -0.1243513897061348, + 0.18992044031620026, + 0.1476384997367859, + -0.6023565530776978, + -0.09049186110496521, + 0.21866165101528168, + 0.07089203596115112, + 0.02716652676463127, + 0.04987787455320358, + -0.10346829891204834, + 0.08644819259643555, + -0.17274042963981628, + 0.19069689512252808, + 0.016813382506370544, + -0.4082421362400055, + 0.31267523765563965, + -0.13398435711860657, + -0.0176604762673378, + 0.5358094573020935, + 0.014061152935028076, + 0.03129374980926514, + -0.11370722204446793, + -0.08327887207269669, + -0.24304303526878357, + -0.1963576376438141, + -0.25503334403038025, + -0.009555851109325886, + 0.06059841811656952, + -0.12906014919281006, + -0.1277627795934677, + 0.01625647209584713, + -0.16023986041545868, + 0.20933347940444946, + 0.07401609420776367, + -0.07477645576000214, + -0.2953072786331177, + -0.10584726929664612, + -0.19081155955791473, + 0.0538315512239933, + 0.15974444150924683, + -0.15120744705200195, + -0.020120447501540184, + -0.0061645060777664185, + 0.21673870086669922, + -0.07071544229984283, + -0.013957679271697998, + -0.05739773437380791, + -0.5258399248123169, + 0.11845890432596207, + -0.26641273498535156, + -0.18109914660453796, + -0.20554079115390778, + -0.25138843059539795, + -0.1381884217262268, + -0.04832352325320244, + -0.060358889400959015, + 0.27031493186950684, + 0.06711900979280472, + 0.0811174213886261, + 0.1462513655424118, + 0.24549750983715057, + -0.07689695060253143, + -0.1754378229379654, + -0.15288355946540833, + -0.1650441437959671, + 0.04762842506170273, + 0.05465769022703171, + 0.14254385232925415, + 0.04469439759850502, + 0.062052883207798004, + -0.03204847499728203, + -0.08144514262676239, + -0.0023515485227108, + 0.02890915423631668, + -0.2166631817817688, + 0.32111620903015137, + -0.06942620873451233, + -0.25657373666763306, + -0.006175719201564789, + 0.4237430989742279, + -0.09125719219446182, + -0.024323098361492157, + -0.00757298618555069, + -0.2833772599697113, + -0.07902733981609344, + 0.2107519507408142, + 0.23452231287956238, + -0.09648363292217255, + 0.15311454236507416, + -0.0695786401629448, + 0.20673847198486328, + -0.2686071991920471, + -0.35671335458755493, + 0.09578557312488556, + 0.180939719080925, + 0.16744056344032288, + -0.10101762413978577, + 0.15935854613780975, + 0.0659768134355545, + 0.14821788668632507, + -0.13685058057308197, + -0.06235891580581665, + -0.12129078060388565, + -0.1251605600118637, + 0.11127997934818268, + 0.08537967503070831, + 0.25961732864379883, + 0.008427511900663376, + 0.02232120931148529, + -0.18445268273353577, + -0.21214066445827484, + 0.06914625316858292, + 0.1678352802991867, + -0.03383302688598633, + -0.22223930060863495, + -0.013366920873522758, + 0.08330699801445007, + -0.3570255637168884, + 0.10350336879491806, + 0.10848083347082138, + 0.10122257471084595, + -0.09268880635499954, + -0.11152011901140213, + -0.26465535163879395, + 0.05660349875688553, + 0.20114803314208984, + 0.036595962941646576, + 0.06495368480682373, + 0.3401142954826355, + -0.17682108283042908, + -0.04467766359448433, + 0.12139806151390076, + -0.12368082255125046, + -0.1171940416097641, + -0.09478715807199478, + 0.14729198813438416, + 0.008339513093233109, + 0.07409942150115967, + -0.10161364823579788, + -0.09549789130687714, + -0.08607536554336548, + -0.12705205380916595, + -0.09596805274486542, + -0.014944929629564285, + -0.003153085708618164, + 1.7794629335403442, + -0.2692394256591797, + 0.2340606451034546, + -0.026267891749739647, + 0.011672794818878174, + 0.17360109090805054, + 0.15239860117435455, + -0.005266305059194565, + 0.03352392464876175, + 0.016881875693798065, + 0.36331063508987427, + 0.04394146800041199, + -0.29767879843711853, + 0.2200346291065216, + 0.12210908532142639, + 0.04356449842453003, + -0.04366855323314667, + -0.19318529963493347, + -0.001793157309293747, + 0.021587494760751724, + 0.14925728738307953, + 0.2695644497871399, + 0.25707459449768066, + -0.04176615923643112, + 0.14430126547813416, + 0.18760335445404053, + 0.1431146115064621, + 0.04777880012989044, + 0.11676837503910065, + 0.09362702816724777, + 0.18840917944908142, + -0.00683613121509552, + -0.08628007769584656, + 0.020515944808721542, + -0.10621361434459686, + 0.014384601265192032, + 0.015259996056556702, + 0.2890571653842926, + 0.07098882645368576, + 0.18947333097457886, + -0.08983846753835678, + 0.03188307210803032, + -0.20974455773830414, + 0.17685964703559875, + 0.11480183154344559, + 0.12952753901481628, + -0.5402501821517944, + 0.06887070089578629, + -0.19453664124011993, + 0.23443514108657837, + -0.1361418068408966, + 0.3870788812637329, + 0.24913400411605835, + 0.3727181851863861, + 0.1355542242527008, + 0.231386199593544, + -0.24477934837341309, + 0.05092373490333557, + -0.43387869000434875, + -0.2663930654525757, + 0.11323850601911545, + -0.09606436640024185, + -0.008390456438064575, + 0.022713445127010345, + -0.012697994709014893, + -0.042479805648326874, + -0.0496627502143383, + -0.199172243475914, + -0.027148228138685226, + -0.22643204033374786, + 0.08845250308513641, + -0.0016633588820695877, + 0.14041605591773987, + -0.23648053407669067, + -0.08195354789495468, + 0.0020411834120750427, + 0.02389293909072876, + -0.24300861358642578, + 0.11193814128637314, + 0.1846352517604828, + -0.016070522367954254, + 0.0575525239109993, + 0.0069963037967681885, + -0.24016675353050232, + -0.15933749079704285, + 0.06200515478849411, + 0.11737319827079773, + -0.13061468303203583, + 0.08840962499380112, + 0.01307207252830267, + -0.01648932695388794, + -0.10044687986373901, + -0.0006954800337553024, + 0.0006065294146537781, + 0.18742457032203674, + 0.17646954953670502, + 0.09705835580825806, + 0.21200889348983765, + -0.28350749611854553, + 0.0199311301112175, + -0.005951354280114174, + 0.027442103251814842, + -0.14058917760849, + 0.2041773796081543, + -0.1480097621679306, + 0.06082133576273918, + -0.10708922147750854, + -0.13944905996322632, + 0.059301406145095825, + -0.07895641028881073, + -0.22970010340213776, + -0.029316194355487823, + 0.13562099635601044, + -0.10310058295726776, + -0.12292949855327606, + 0.002993449103087187, + 0.060625337064266205, + -0.0040679387748241425, + 0.03930205479264259, + -0.5286423563957214, + -0.07832280546426773, + -0.1167929545044899, + -0.10271906107664108, + 0.04952849820256233, + 0.07695785909891129, + -0.0832502618432045, + -0.133834570646286, + 0.06830211728811264, + -0.11992797255516052, + 0.20122399926185608, + 0.08334015309810638, + 0.09751279652118683, + 0.2076580971479416, + 0.19037678837776184, + -0.05274289846420288, + 0.03163938224315643, + 0.053250886499881744, + -0.09561040252447128, + 0.21963590383529663, + 0.05931168049573898, + 0.23501521348953247, + 0.07832412421703339, + -0.09662429988384247, + -0.054177798330783844, + -0.24680915474891663, + -0.1962718367576599, + 0.3292663097381592, + 0.04953061416745186, + 0.07187152653932571, + 0.20759546756744385, + -0.19465219974517822, + 0.02158369868993759, + -0.06786857545375824, + 0.09643696993589401, + 0.01063209306448698, + -0.14935918152332306, + -0.11836297810077667, + -0.17090529203414917, + 0.10587318986654282, + -0.16629894077777863, + -0.299638032913208, + -0.07390044629573822, + -0.06945487856864929, + 0.4821510910987854, + 0.05408388376235962, + 0.043759413063526154, + -0.08545106649398804, + 0.05885596573352814, + -0.28742358088493347, + 0.007463466376066208, + 0.01716943457722664, + 0.05583413317799568, + 0.07199874520301819, + -0.1260726898908615, + 0.12470763921737671, + 0.17007704079151154, + -0.08055847883224487, + -0.01844298094511032, + -0.013652078807353973, + 0.03779299929738045, + -0.05471665412187576, + -0.08103214204311371, + 0.2275574803352356, + 0.1468849778175354, + -0.00920499861240387, + -0.07531026750802994, + 0.010800015181303024, + 0.04732488468289375, + -0.06620863825082779, + 0.0004274016246199608, + -0.09404797852039337, + 0.10490267723798752, + 0.15916544198989868, + 0.03095349296927452, + -0.037742797285318375, + 0.20928677916526794, + 0.1858648806810379, + 0.07656809687614441, + -0.1257452666759491, + -0.17271098494529724, + -0.09052428603172302, + 0.08156570792198181, + -0.0006437897682189941, + -0.13875465095043182, + 0.021158702671527863, + 0.039016515016555786, + 0.16470281779766083, + -0.028827473521232605, + 0.005757477134466171, + -0.4542441666126251, + -0.14728668332099915, + 0.00979321077466011, + -0.18339543044567108, + 0.07441382110118866, + -0.09733353555202484, + -0.043768271803855896, + -0.226833313703537, + -0.1796325147151947, + -0.12085728347301483, + -0.2703881561756134, + 1.1984410285949707, + -0.17930078506469727, + -0.0772559642791748, + 0.11891636997461319, + 0.18045024573802948, + 0.15887033939361572, + 0.10884411633014679, + -0.11278743296861649, + 0.026184124872088432, + -0.07806462794542313, + 0.09874582290649414, + -0.23048387467861176, + -0.054986052215099335, + -0.04847933351993561, + 0.33438727259635925, + -0.10905224084854126, + 0.19426879286766052, + -0.07865937054157257, + 0.03601217269897461, + -0.014155164361000061, + -0.057078100740909576, + 0.10039632022380829, + -0.24635499715805054, + 0.06318657100200653, + -0.06849455833435059, + 0.02019387111067772, + -0.02349051833152771, + 0.11809691786766052, + 0.025924749672412872, + 0.15383146703243256, + 0.15106447041034698, + -0.21720224618911743, + -0.049767374992370605, + 0.03861050307750702, + -0.12444944679737091, + -0.000231131911277771, + -0.0716586634516716, + -0.2944241166114807, + -0.089938223361969, + -0.2162916213274002, + 0.020063094794750214, + -0.061802349984645844, + -0.11497846990823746, + 0.17046085000038147, + -0.2014157474040985, + -0.009586863219738007, + -0.2056557834148407, + 0.008938446640968323, + 0.23506474494934082, + -0.07677178084850311, + -0.07599450647830963, + 0.36318129301071167, + 0.09040038287639618, + -0.01457127183675766, + -0.23115862905979156, + -0.03225269541144371, + 0.011502804234623909, + 0.07845963537693024, + 0.024396605789661407, + 0.1980741024017334, + -0.20523661375045776, + 0.12132206559181213, + 0.42194339632987976, + -0.01965731382369995, + 0.26453298330307007, + -0.15341074764728546, + 0.1497502624988556, + 0.046779289841651917, + -0.04585997015237808, + -0.06841674447059631, + 0.16644790768623352, + -0.06488385051488876, + 0.1279127299785614, + -0.37584787607192993, + 0.2717527151107788, + -0.05610347166657448, + 3.843754529953003e-05, + -0.16366945207118988, + -0.31660813093185425, + -0.08194317668676376, + 0.11706031858921051, + 0.1292967051267624, + -0.1327899545431137, + -0.03264505788683891, + 0.09165466576814651, + 0.04782262444496155, + -0.07029068470001221, + -0.012622114270925522, + 0.0064993686974048615, + 0.1932397484779358, + 0.1549200415611267, + 0.013607913628220558, + 0.10425619781017303, + -0.0875028520822525, + 0.35651347041130066, + 0.20929795503616333, + -0.08052726089954376, + 0.09081045538187027, + -0.017256196588277817, + -0.29807573556900024, + -0.05459170043468475, + -0.0688387006521225, + 0.1907849907875061, + 0.15793602168560028, + -0.19455143809318542, + -0.17208530008792877, + -0.04357082396745682, + 0.059953272342681885, + -0.07729536294937134, + -0.010576162487268448, + -0.229115828871727, + -0.4036223292350769, + 0.2797313928604126, + 0.24823307991027832, + 0.1656828671693802, + -0.15365226566791534, + -0.05897396802902222, + -0.11036323755979538, + -0.13180223107337952, + -0.1612566113471985, + -0.005249574780464172, + -0.17177782952785492, + -0.03472186252474785, + 0.09723678231239319, + -0.05887240543961525, + -0.1025608479976654, + -0.07916601002216339, + 0.35203754901885986, + 0.059407517313957214, + -0.35831525921821594, + -0.11228276789188385, + 0.19606895744800568, + -0.001285608857870102, + 0.06526564061641693, + 0.046098850667476654, + 0.040017999708652496, + -0.11745550483465195, + -0.05872528254985809, + 0.22193707525730133, + -0.11555355787277222, + -0.13900841772556305, + 0.15774309635162354, + -0.12214554846286774, + 0.0915636271238327, + 0.7167693376541138, + -0.1306312084197998, + -0.030619680881500244, + 0.19595220685005188, + 0.058426663279533386, + 0.2899430990219116, + 0.01453712023794651, + -0.3691226840019226, + 0.1693224161863327, + 0.047555506229400635, + 0.0534600093960762, + -0.0585499033331871, + -0.0985482782125473, + 0.11919046938419342, + 0.22402580082416534, + -0.059114016592502594, + 0.010429948568344116, + 0.08332684636116028, + 0.20184247195720673, + 0.0988377258181572, + 0.00943213701248169, + 0.09736095368862152, + -0.2855311930179596, + -0.4699057340621948, + 0.1682107150554657, + -0.07664647698402405, + -0.06693508476018906, + -0.33215129375457764, + 0.0008596479892730713, + 0.07264159619808197, + 0.15162962675094604, + -0.505549430847168, + -0.08413700759410858, + 0.416241317987442, + -0.05174148082733154, + -0.2694450914859772, + -0.037989526987075806, + -0.0023126378655433655, + 0.22095784544944763, + 0.041313447058200836, + -0.1135188564658165, + 0.07601822912693024, + -0.4024732708930969, + 0.05411628633737564, + 0.12226121127605438, + -0.07652570307254791, + 0.1277717798948288, + 0.1559572070837021, + -0.024726416915655136, + -0.15615293383598328, + 0.1369703710079193, + -0.38770589232444763, + 0.1061985194683075, + 0.3919459283351898, + -0.1853170394897461, + 0.00872461125254631, + 0.17511223256587982, + 0.03728747367858887, + 0.06541617214679718, + 0.04673917591571808, + 0.02208879590034485, + -0.0007511191070079803, + 0.22483330965042114, + 0.13308647274971008, + 0.15167418122291565, + 0.00760815292596817, + 0.2065895050764084, + -0.220304936170578, + -0.1255227029323578, + -0.040837064385414124, + 0.3662462830543518, + 0.3537733554840088, + -0.09471812099218369, + -0.3753754794597626, + 1.4299468994140625, + 0.8351216912269592, + -0.16809985041618347, + -0.002749904990196228, + -0.14285975694656372, + 0.016675036400556564, + 0.017492666840553284, + 0.48562222719192505, + 0.3289004862308502, + 0.09198014438152313, + -0.007631482556462288, + 0.04744574427604675, + 0.12475910782814026, + -0.09582875669002533, + -0.12983326613903046, + 0.11373718082904816, + -0.11394132673740387, + -0.4412228465080261, + -0.18509583175182343, + 0.10360869765281677, + 0.21804054081439972, + 0.054714635014534, + 0.5598104596138, + -0.0943220928311348, + -0.0693192183971405, + 0.1309867799282074, + -0.00537775456905365, + -0.04441523551940918, + 0.16563865542411804, + -0.016131091862916946, + 0.004240256734192371, + 0.22405856847763062, + -0.08768070489168167, + -0.15993189811706543, + -0.06048361957073212, + 0.0470389723777771, + 0.10454921424388885, + 0.027289830148220062, + -0.07976482808589935, + -0.09903177618980408, + 0.4357583820819855, + -0.025179952383041382, + -0.23652216792106628, + -0.14236953854560852, + -0.27648088335990906, + -0.13471132516860962, + -0.024150174111127853, + -0.12921321392059326, + -0.3084130883216858, + -0.31495463848114014, + -0.42250263690948486, + -0.052258074283599854, + -0.05023860186338425, + -0.10486947000026703, + 0.03337539732456207, + -0.1513032615184784, + -0.021175481379032135, + 0.450883150100708, + -0.1672331988811493, + 0.000807552132755518, + -0.17857977747917175, + 0.18331068754196167, + -0.09724448621273041, + 0.19902417063713074, + -0.2838701605796814, + 0.12427204102277756, + -0.07551304996013641, + -1.1059212684631348, + -0.007291056215763092, + -0.04717795178294182, + 0.02386200800538063, + -0.15873725712299347, + 0.004651717841625214, + 0.3081892132759094, + -0.011527597904205322, + -0.8179128170013428, + 0.3002792000770569, + 0.2814316153526306, + -0.2848201096057892, + 0.09079418331384659, + -0.10300497710704803, + 0.07350531220436096, + -0.30113691091537476, + -0.16810466349124908, + 0.1178818866610527, + 0.06043948233127594, + -0.0686672106385231, + -0.098152294754982, + 0.10662677884101868, + -0.16024449467658997, + 0.09117231518030167, + 0.0014648661017417908, + 0.00018161162734031677, + -0.02272963710129261, + -0.03541628643870354, + -0.0021134652197360992, + 0.052054502069950104, + -0.18700984120368958, + -0.003908433020114899, + -0.02200356125831604, + 0.028038188815116882, + -0.06430573016405106, + -0.04314778745174408, + 0.12222056090831757, + -0.027259627357125282, + 0.17516100406646729, + -0.07718140631914139, + -0.016896963119506836, + -0.03889448195695877, + -0.05591452866792679, + -0.22082467377185822, + -0.02877243608236313, + -0.12750941514968872, + -0.02120063081383705, + 0.14370863139629364, + -1.062578558921814, + 0.1934046447277069, + 0.22740647196769714, + -0.18516141176223755, + 0.16084930300712585, + 0.05544578284025192, + 0.18550513684749603, + -0.6063891053199768, + 0.066437728703022, + -0.10162042081356049, + -0.09746381640434265, + -0.15884172916412354, + -0.038147591054439545, + -0.030111312866210938, + -0.04551350325345993, + 0.07156161218881607, + 0.029725849628448486, + -0.09260844439268112, + -0.12726476788520813, + 0.08415311574935913, + 0.20246748626232147, + 0.17610472440719604, + 0.27725887298583984, + -0.19412508606910706, + -0.28661274909973145, + 0.02382112666964531, + 0.09853318333625793, + -0.0005194898694753647, + 0.0830138623714447, + 0.06737122684717178, + -0.3873789608478546, + 0.15024307370185852, + 0.21605870127677917, + 0.011952672153711319, + 0.11387652158737183, + -0.023738540709018707, + 0.003002965822815895, + -0.05507093667984009, + 0.14501038193702698, + 0.0714203268289566, + 0.02007603645324707, + -0.018892070278525352, + 0.04798397794365883, + 0.05522735416889191, + 0.0641837790608406, + 0.010174348950386047, + -0.037758879363536835, + -0.1268317997455597, + 0.08252856880426407, + -0.1980830729007721, + 0.019824549555778503, + 0.024334874004125595, + -0.049681276082992554, + -0.014908156357705593, + 0.13717389106750488, + -0.03844732046127319, + -0.09927733242511749, + -0.036818914115428925, + -0.04680819436907768, + -0.050006743520498276, + 0.2006494700908661, + -0.24422109127044678, + 0.03000348061323166, + 0.16050131618976593, + -0.05020865797996521, + 0.2189444601535797, + -0.201461523771286, + 0.07143482565879822, + -0.09939354658126831, + 0.0988081842660904, + -0.1915818750858307, + -0.15413826704025269, + 0.15133756399154663, + -0.07513377070426941, + -0.4327462911605835, + -0.027413364499807358, + 0.05297155678272247, + -0.16857188940048218, + -0.2378092110157013, + 0.17714042961597443, + -0.06514407694339752, + 0.04207080602645874, + 0.2183956801891327, + -0.07559368759393692, + 0.041498444974422455, + -0.2878079414367676, + -0.07620757818222046, + 0.03762064874172211, + -0.29827016592025757, + -0.133582204580307, + 0.03420831263065338, + -0.28208133578300476, + 0.09508823603391647, + 0.009805021807551384, + -0.1490013748407364, + -0.3504617512226105, + 0.04733430594205856, + 0.12414140999317169, + -0.2577188313007355, + 0.17302899062633514, + -0.060559432953596115, + -0.02076883241534233, + -0.22290971875190735, + -0.19322673976421356, + 0.23032844066619873, + 0.03845649212598801, + 0.19703556597232819, + -0.24939057230949402, + -0.06211152672767639, + 0.10289673507213593, + -0.013128502294421196, + -0.11538675427436829, + -0.25365790724754333, + 0.04163080081343651, + -0.18102926015853882, + -0.12428098917007446, + 0.22877314686775208, + -0.003650844097137451, + 0.013957764953374863, + 0.09579981863498688, + -0.20142310857772827, + -0.46896281838417053, + -0.07929056882858276, + -0.3163958191871643, + -0.015397369861602783, + -0.07755833864212036, + 0.21959128975868225, + 0.01961274817585945, + 0.2937988042831421, + 0.03502818942070007, + 0.03142673149704933, + -0.020083706825971603, + 0.047378458082675934, + -0.039855990558862686, + 0.1325589120388031, + -0.959802508354187, + 0.10026738792657852, + -0.0796588659286499, + 0.1300802379846573, + 0.11072851717472076, + -0.07173877954483032, + 0.29771554470062256, + 0.31542742252349854, + 0.15414471924304962, + 0.011804763227701187, + 0.1758681982755661, + 0.0514647513628006, + -0.2650464177131653, + -0.006713627837598324, + -0.0922415480017662, + 0.08039972186088562, + 0.038666460663080215, + 0.11758125573396683, + 0.011745065450668335, + -0.02100391685962677, + -0.9082859754562378, + -0.17777414619922638, + 0.2191239893436432, + 0.09450238943099976, + 0.17195914685726166, + -0.08660267293453217, + 0.19349926710128784, + 0.10623668134212494, + 0.04966217279434204, + -0.07847772538661957, + -0.10679382085800171, + -0.2747741639614105, + 0.14469827711582184, + -0.004627082496881485, + -0.03256846219301224, + -0.038316816091537476, + -0.14945031702518463, + 0.06433967500925064, + 0.19758829474449158, + 0.030982814729213715, + -0.1935267597436905, + -0.006744811311364174, + -0.1738555133342743, + 0.06398393213748932, + -0.0009073168039321899, + 0.05888943746685982, + -0.3801720142364502, + 0.38315820693969727, + 0.10890550911426544, + -0.09152920544147491, + -0.1677524894475937, + 0.5917640924453735, + 0.03230907768011093, + -0.18618378043174744, + -0.11064569652080536, + 0.009445086121559143, + -0.08392594009637833, + -0.13739164173603058, + 0.3651408553123474, + 0.1854185312986374, + 0.2039412260055542, + -0.014530450105667114, + -0.05056432634592056, + 0.09527772665023804, + -0.06125551089644432, + -0.03781881928443909, + -0.2887228727340698, + -0.18123914301395416, + 0.19250188767910004, + -0.18526113033294678, + -0.06452490389347076, + -0.17897546291351318, + 0.01111120730638504, + -0.08331086486577988, + 0.12475104629993439, + 0.1271105855703354, + -0.10421901196241379, + 0.06718021631240845, + -0.2948463559150696, + 0.09647422283887863, + -0.0029819682240486145, + 0.21892254054546356, + 0.11956337094306946, + -0.09824671596288681, + -0.16111934185028076, + -0.0667816624045372, + -0.10748046636581421, + 0.6974842548370361, + -0.20915746688842773, + -0.3945653736591339, + 0.24067461490631104, + -0.26946932077407837, + -1.2518465518951416, + -0.038839370012283325, + 0.050820622593164444, + -0.11144006997346878, + 0.14169511198997498, + -0.06075742095708847, + 0.2708653509616852, + -0.10850168764591217, + -0.031136833131313324, + 0.19099506735801697, + 0.1831817924976349, + -0.05470648035407066, + 0.06115107983350754, + -0.837434709072113, + 0.09544146060943604, + -0.19494685530662537, + 0.03509804233908653, + -0.1972620189189911, + 0.016989681869745255, + 0.42002469301223755, + 0.1201881691813469, + -0.1410699486732483, + 0.14334997534751892, + -0.12583845853805542, + 0.0809352695941925, + 0.3084160089492798, + 0.1266607940196991, + -0.09462833404541016, + 0.1423197239637375, + -0.05119360238313675, + -0.1440027803182602, + -0.0664055272936821, + -0.09874427318572998, + 0.1398758739233017, + 0.11345648765563965, + -0.10538704693317413, + -0.22821044921875, + -0.024061767384409904, + 0.08608710020780563, + 0.18789485096931458, + 0.13971635699272156, + 0.10633892565965652, + 0.3421567976474762, + 0.11702730506658554, + -0.08930682390928268, + -0.028565024957060814, + -0.10318542271852493, + 0.2203884720802307, + -0.19339704513549805, + -0.04844418168067932, + -0.18271127343177795, + 0.07052646577358246, + -0.7620593309402466, + -0.020895617082715034, + -0.09711858630180359, + -0.09481441974639893, + -0.03107471391558647, + 0.11379227042198181, + 0.04211529716849327, + 0.021563969552516937, + -0.03136429563164711, + -0.22756057977676392, + 0.340524822473526, + -0.16051900386810303, + -0.43469464778900146, + 0.40799054503440857, + 0.006463088095188141, + 0.14765679836273193, + 0.2115297019481659, + 0.1741214394569397, + 0.06710830330848694, + -0.22024023532867432, + -0.2824394702911377, + 0.029495853930711746, + -0.05836667865514755, + 0.13370627164840698, + -0.1765180230140686, + 0.11782288551330566, + -0.15948137640953064, + -0.02813449501991272, + -0.15648218989372253, + 0.04386407881975174, + -0.18484213948249817, + -0.12651261687278748, + 0.14084184169769287, + 0.14143285155296326, + -0.0011701472103595734, + -0.031748346984386444, + 0.0737147331237793, + -0.04324302449822426, + 0.05235643684864044, + 0.17647051811218262, + -0.06534092873334885, + 0.20351314544677734, + 0.06120605394244194, + -0.05560396611690521, + -0.016898954287171364, + 0.09323279559612274, + 0.061734333634376526, + -0.030173685401678085, + -0.16614516079425812, + -0.10643373429775238, + -0.012839183211326599, + 0.09452598541975021, + -0.02711375802755356, + -0.07922643423080444, + -0.20169955492019653, + 0.06801054626703262, + -0.28064680099487305, + -0.05389184504747391, + -0.0840788260102272, + 0.16809293627738953, + -0.22566254436969757, + 0.03404635936021805, + 0.3271346688270569, + -0.025891602039337158, + -0.19581004977226257, + 0.26820439100265503, + -0.015432603657245636, + 0.11152327805757523, + -0.0036123767495155334, + -0.17705392837524414, + -0.055293574929237366, + 0.19655448198318481, + 0.2735022306442261, + -0.1637253761291504, + 0.02964034676551819, + -0.18766771256923676, + 0.08931273221969604, + -0.2778266668319702, + 0.11640104651451111, + -0.1301804780960083, + 0.4105769395828247, + -0.08990491926670074, + 0.09773869812488556, + 0.11236470192670822, + -0.14182788133621216, + 0.45133480429649353, + -0.008603070862591267, + -0.3017951548099518, + 0.12146012485027313, + -0.11041678488254547, + -0.05914927273988724, + 0.2943708896636963, + -0.045870378613471985, + -0.038324788212776184, + 0.04356933757662773, + 0.1510814130306244, + 0.12773147225379944, + -0.24495598673820496, + 0.24471956491470337, + -0.3035188317298889, + -0.1964050829410553, + 0.045492738485336304, + 0.09787721186876297, + 0.34743285179138184, + 0.12365052103996277, + 0.014725148677825928, + 0.06516049802303314, + -0.20426897704601288, + -0.117159903049469, + -0.06659970432519913, + -0.41936051845550537, + 0.021944178268313408, + -0.09045222401618958, + -0.08070239424705505, + -0.06648727506399155, + 0.04546457156538963, + 0.01814664527773857, + -0.09324392676353455, + 0.09284822642803192, + 0.07425516098737717, + 0.04394428804516792, + 0.03874818980693817, + -0.17542153596878052, + 0.04253473877906799, + -0.17627419531345367, + 0.033571720123291016, + 0.04738786071538925, + -0.09087015688419342, + 0.16858768463134766, + 0.1956009417772293, + -0.11829854547977448, + 0.11635653674602509, + 0.22391436994075775, + 0.4020006060600281, + -0.008888062089681625, + -0.012666203081607819, + 0.2576453983783722, + 0.0918973833322525, + -0.09330882132053375, + 0.0862312912940979, + 0.13431662321090698, + 0.2773641347885132, + 0.11872348189353943, + -0.1813494861125946, + 0.0289459228515625, + 0.134370818734169, + 0.19128698110580444, + 0.3133305311203003, + -0.08717738837003708, + 0.03122691810131073, + 0.11161696910858154, + 0.005411822348833084, + 0.16980119049549103, + -0.1241689920425415, + 0.07093174010515213, + -0.06263307482004166, + -0.17133407294750214, + -0.015268433839082718, + 0.17250585556030273, + 0.07486331462860107, + -0.1719173789024353, + 0.07105477154254913, + -0.15642978250980377, + -0.12194158881902695, + -0.14406655728816986, + 0.1149614155292511, + -0.11312813311815262, + -0.008079420775175095, + 0.028212258592247963, + -0.2726881206035614, + -0.1862628161907196, + -0.23628221452236176, + 0.2749274969100952, + 0.23375216126441956, + -0.11911529302597046, + 0.06282750517129898, + 0.08369041979312897, + -0.1075575053691864, + -0.14836564660072327, + -0.02581460028886795, + 0.0005618557333946228, + -0.09149245917797089, + 0.09193326532840729, + -0.06273382902145386, + -0.24291904270648956, + -0.07214992493391037, + 0.12979571521282196, + 0.2780671715736389, + 0.07683814316987991, + 0.28589513897895813, + 0.0561491884291172, + 0.2027973234653473, + 0.16548529267311096, + 0.26403123140335083, + -0.08153359591960907, + -0.1259273886680603, + 0.043129973113536835, + 0.36612468957901, + -0.2671840786933899, + 0.2800482511520386, + -0.0435962900519371, + -0.06996315717697144, + -0.14831660687923431, + -0.0866113007068634, + -0.028185680508613586, + 0.11947563290596008, + 0.07201208174228668, + 0.21011826395988464, + 0.0948503389954567, + -0.07536762207746506, + -0.06117108464241028, + -0.13198357820510864, + 0.11446578055620193, + -0.08805911988019943, + 0.45813560485839844, + 0.15225949883460999, + 0.05433500185608864, + -0.022181831300258636, + -0.03309207409620285, + 0.2018095850944519, + 0.07617630809545517, + 0.019826790317893028, + 0.20082435011863708, + -0.4278830885887146, + -0.06536159664392471, + 0.029354669153690338, + 0.19474780559539795, + -0.2355196177959442, + -0.03810285031795502, + 0.2662510871887207, + 0.15862655639648438, + 0.018975086510181427, + 0.2052469551563263, + -0.08568049967288971, + -0.03127865493297577, + 0.0889553502202034, + 0.23394621908664703, + -0.1114216297864914, + 0.07808799296617508, + -0.05072380602359772, + 0.03749539330601692, + 0.11947298049926758, + -0.01855669915676117, + -0.0460582971572876, + -0.19835427403450012, + -0.28292226791381836, + 0.23054322600364685, + 0.131526380777359, + -0.15052352845668793, + -0.010622575879096985, + -0.06630242615938187, + -0.07155755162239075, + 0.1327410489320755, + -0.0017921105027198792, + 0.22278231382369995, + -0.3478230834007263, + 0.1905311942100525, + 0.07167282700538635, + -0.03500799462199211, + -0.17425020039081573, + -0.1953277587890625, + 0.16513581573963165, + 0.07537274062633514, + 0.5137717723846436, + -0.03731811046600342, + -0.02738579362630844, + -0.2313401997089386, + 0.3368041217327118, + 0.07544414699077606, + 0.17734205722808838, + -0.1245269700884819, + 0.343148410320282, + 0.08221632242202759, + -0.03940342739224434, + -0.24806568026542664, + -0.11565546691417694, + -0.07553401589393616, + 0.04738670960068703, + 0.28811323642730713, + 0.04252144694328308, + -0.1867465078830719, + 0.14201074838638306, + -0.15505822002887726, + -0.10061191022396088, + 0.11907529830932617, + -0.529863715171814, + 0.008634813129901886, + 0.09879413992166519, + -0.0919661670923233, + 0.021609224379062653, + 0.29848480224609375, + 0.05476544797420502, + 0.21035437285900116, + -0.20754319429397583, + 0.041358500719070435, + -0.10067887604236603, + 0.033185601234436035, + 0.07491720467805862, + 0.05245101824402809, + -0.025539562106132507, + 0.10826520621776581, + -0.028253965079784393, + 0.10927858203649521, + 0.16345952451229095, + 0.0563938207924366, + -0.061500102281570435, + -0.21268853545188904, + 0.15988948941230774, + 0.3241444528102875, + -0.05226129665970802, + -0.12813103199005127, + -0.2744046747684479, + -0.016082532703876495, + -0.20284155011177063, + -0.001389889745041728, + -0.1602497696876526, + -0.7262422442436218, + -0.035123560577631, + -0.0782528966665268, + 0.4321419596672058, + 0.08213507384061813, + 0.3398593068122864, + 0.15116553008556366, + -0.2553648352622986, + -0.05475500971078873, + 0.056467629969120026, + -0.1614973247051239, + -0.10965010523796082, + 0.07271124422550201, + 0.11744686961174011, + -0.5381288528442383, + 0.10878220200538635, + 0.12003136426210403, + 0.28155696392059326, + 0.16307379305362701, + -0.10341665893793106, + 0.0897134393453598, + -0.38408362865448, + -0.07523219287395477, + -0.08930892497301102, + -0.6038127541542053, + -0.2320525199174881, + 0.2375158816576004, + 0.07320044189691544, + 0.015381582081317902, + -0.08891159296035767, + 0.0680016577243805, + -0.056771546602249146, + 0.16452902555465698, + 0.21488435566425323, + -0.169871523976326, + -0.1828540712594986, + 0.01063602976500988, + 0.10856655240058899, + 0.208527073264122, + -0.03367400914430618, + -0.1199246197938919, + -0.08439990878105164, + 0.1727035939693451, + -0.17232145369052887, + 0.09360752254724503, + -0.07149765640497208, + 0.3719085454940796, + -0.045947857201099396, + 0.002490781247615814, + 0.7726584076881409, + -0.17023497819900513, + 0.15719053149223328, + -0.1708042323589325, + 0.002137046307325363, + -0.15934130549430847, + -0.31844982504844666, + -0.18229733407497406, + 0.05893664062023163, + 0.027363304048776627, + -0.08813866972923279, + -0.12048406153917313, + 0.05356964096426964, + 0.02311001718044281, + -0.10616651177406311, + -0.09289056062698364, + -0.189690500497818, + 0.13288924098014832, + -0.04096667468547821, + -0.18204987049102783, + 0.029588915407657623, + 0.07875403761863708, + -0.0845809280872345, + 0.05058596283197403, + 0.0512663871049881, + 0.02941279299557209, + -0.18643322587013245, + -0.1268908679485321, + 0.049339376389980316, + -0.20487160980701447, + -0.03844498470425606, + 0.03410061448812485, + 0.32144343852996826, + 0.17384806275367737, + 0.1113317608833313, + -0.14759376645088196, + -0.3090055584907532, + -0.05884823948144913, + 0.29766684770584106, + 0.1343827247619629, + 0.01268094964325428, + 0.03988540917634964, + -0.035627156496047974, + -0.0043608397245407104, + -0.6691570281982422, + 0.3695792853832245, + -0.2979532480239868, + 0.06991902738809586, + 0.205361008644104, + -0.023112893104553223, + -0.00523499958217144, + 0.1439187228679657, + 0.0007752543315291405, + -0.02311064675450325, + -0.04494399577379227, + -0.271706223487854, + 0.2227455973625183, + 0.020001977682113647, + -0.04087105393409729, + 0.055138956755399704, + 0.33466780185699463, + 0.25443488359451294, + -0.12213349342346191, + 0.24586209654808044, + -0.10436621308326721, + 0.11153804510831833, + 0.13781172037124634, + -0.06102960556745529, + -0.2424534112215042, + 0.026193290948867798, + -0.21619275212287903, + 0.04063442349433899, + 0.28166884183883667, + 0.2462669461965561, + -0.08341044187545776, + 0.23052982985973358, + 0.14996257424354553, + 0.0971723422408104, + -0.11480902135372162, + 0.13518387079238892, + 0.08495700359344482, + -0.21107915043830872, + 0.06928481161594391, + -0.04634706676006317, + -0.2834092378616333, + 0.019692566245794296, + 0.20672351121902466, + 0.10609182715415955, + -0.0705438107252121, + 0.11919619143009186, + 0.00658966600894928, + 0.022190041840076447, + 0.0914069265127182, + -0.024653993546962738, + 0.22815406322479248, + -0.10827319324016571, + 0.1366419494152069, + -0.23939219117164612, + -0.027205631136894226, + 0.2050347626209259, + 0.1614847630262375, + -0.1312929093837738, + -0.07697727531194687, + -0.21948948502540588, + -0.14897587895393372, + 0.06266386806964874, + 0.08570300042629242, + 0.015175266191363335, + -0.07026747614145279, + -0.08728671818971634, + 0.03013601154088974, + -0.4038918614387512, + 0.1776723712682724, + -0.061829060316085815, + 0.18840202689170837, + -0.09364750981330872, + -0.08641690015792847, + -0.2831799387931824, + 0.15462902188301086, + 0.07045098394155502, + -0.05459991842508316, + -0.02817569673061371, + -0.026489712297916412, + -0.032493505626916885, + 0.053722068667411804, + -0.16539247334003448, + -0.14352402091026306, + -0.628918468952179, + -0.17957061529159546, + 0.008323170244693756, + -0.007664114236831665, + -0.1125975027680397, + 0.2946435511112213, + -0.09706219285726547, + 0.04686683416366577, + -0.0072592757642269135, + -0.12855763733386993, + -0.0923554003238678, + -0.2313135266304016, + -0.04058580473065376, + 0.14486394822597504, + 0.11449386179447174, + -0.06023216247558594, + 0.02323007583618164, + 0.6559432744979858, + 0.06128775328397751, + 0.23088563978672028, + 0.1298341304063797, + -0.13167724013328552, + 0.13280700147151947, + -0.056057438254356384, + 0.11997127532958984, + -0.20722448825836182, + 0.6486572027206421, + -0.11091472208499908, + 0.11549095809459686, + -0.26668334007263184, + 0.04107767343521118, + 0.5543898940086365, + -0.0361441969871521, + -0.020292149856686592, + 0.006271492689847946, + 0.12802310287952423, + 0.044451210647821426, + 0.11478473246097565, + 0.09676232933998108, + 0.04932071641087532, + 0.020840682089328766, + 0.018760040402412415, + 0.09792818129062653, + 0.032440315932035446, + 0.19455868005752563, + -0.0026775775477290154, + 0.06668397784233093, + 0.39671289920806885, + -0.08356956392526627, + -0.06288891285657883, + 0.019621700048446655, + -0.05016016960144043, + -0.05241745710372925, + 0.07055610418319702, + 0.0935763269662857, + 0.0013888580724596977, + 0.02631058171391487, + 0.483026921749115, + 0.03161507844924927, + -0.058030009269714355, + 0.18485556542873383, + -0.08853816986083984, + 0.14137136936187744, + 0.043670400977134705, + 0.11387358605861664, + -0.06377033144235611, + -0.005611196160316467, + 0.04599887505173683, + 0.03711007535457611, + 0.026322998106479645, + 0.01182752475142479, + 0.08027470111846924, + -0.13472291827201843, + 0.030153788626194, + -0.13915303349494934, + -0.25334325432777405, + -0.11706585437059402, + 0.05930043011903763, + 0.012613411992788315, + -0.05643231421709061, + -0.24827957153320312, + -0.08829240500926971, + -0.03805091977119446, + -0.20087970793247223, + -1.021384596824646, + -0.06484891474246979, + 0.031216371804475784, + -0.21756258606910706, + -0.07148734480142593, + 0.01901373267173767, + -0.06156545877456665, + -0.13640370965003967, + 0.011567890644073486, + -0.12559595704078674, + 0.041668590158224106, + 0.17164181172847748, + -0.41180044412612915, + 0.18974658846855164, + -0.14894509315490723, + -0.30893588066101074, + 0.2867506146430969, + -0.04892042651772499, + 0.20646131038665771, + 0.10468946397304535, + 0.24979090690612793, + 0.051627062261104584, + 0.07867024838924408, + 0.3566060960292816, + 0.18779242038726807, + -0.20449241995811462, + -0.15766124427318573, + -0.07393667101860046, + 0.19532009959220886, + 0.08227365463972092, + -0.00016448646783828735, + -0.04614907503128052, + -0.2621251940727234, + -0.04551301896572113, + 0.0696883276104927, + 0.06350792944431305, + 0.24939985573291779, + 0.21802477538585663, + -0.0045983437448740005, + -0.024867156520485878, + -0.026752598583698273, + -0.24427196383476257, + 0.008498668670654297, + -0.07414881139993668, + -0.08698808401823044, + -0.1380837857723236, + 0.11858659982681274, + -0.10034321248531342, + -0.030725538730621338, + -0.11012419313192368, + 0.08538749814033508, + 0.1773218959569931, + 0.40771082043647766, + -0.15395769476890564, + -0.10301251709461212, + 0.0006575807929039001, + -0.05768878757953644, + -0.14062325656414032, + -0.10254012048244476, + -0.07781492173671722, + -0.13653355836868286, + 0.04560030251741409, + 0.060277365148067474, + 0.15341773629188538, + -0.08099271357059479, + -0.11406603455543518, + -0.16059604287147522, + -0.022150151431560516, + -0.5612797737121582, + -0.07576218992471695, + -0.32875216007232666, + -0.016947809606790543, + 0.19802919030189514, + -0.08990120887756348, + -0.252064973115921, + -0.0048920586705207825, + 0.004833690822124481, + 0.12909477949142456, + -0.2646126449108124, + 0.10450790077447891, + -0.19900648295879364, + 0.3891078531742096, + 1.03177011013031, + -0.023120179772377014, + 0.05718168988823891, + -0.12005776911973953, + -0.17975226044654846, + 0.16510263085365295, + -0.01900230161845684, + -0.059660494327545166, + -0.02956444025039673, + 0.03918234631419182, + -0.2172212302684784, + 0.01253099087625742, + 0.006908175069838762, + 0.007936105132102966, + -0.13715140521526337, + 0.10847215354442596, + 0.045189470052719116, + 0.07412106543779373, + -0.09408963471651077, + 0.1594192534685135, + 0.06772606819868088, + -0.3123210072517395, + 0.024541392922401428, + -0.13848863542079926, + -0.44633662700653076, + -0.15757125616073608, + 0.04858703911304474, + 0.19042430818080902, + 0.20072481036186218, + 0.07934913039207458, + 0.19738605618476868, + -0.034566912800073624, + -0.11804955452680588, + -0.07810365408658981, + 0.09537982940673828, + 0.04759737104177475, + 0.054298147559165955, + -0.012545980513095856, + -0.0388406440615654, + -0.03522379323840141, + -0.12654945254325867, + -0.19772456586360931, + -0.0571872740983963, + -0.07934634387493134, + 0.0798737108707428, + 0.03740491345524788, + 0.13889431953430176, + 0.43141624331474304, + -0.26279574632644653, + 0.01711692288517952, + -0.05369356647133827, + 0.04328346624970436, + 0.07285919785499573, + -0.10471150279045105, + 0.043010711669921875, + 0.06171228736639023, + -0.0021866708993911743, + -0.06811300665140152, + -0.2897224426269531, + 0.07262411713600159, + 0.010401979088783264, + -0.00012090802192687988, + -0.07704838365316391, + -0.13975439965724945, + -0.05936511978507042, + 0.530087411403656, + -0.1463794708251953, + -0.22091972827911377, + 0.019555263221263885, + -0.1474607288837433, + 0.12266181409358978, + 0.02016732096672058, + 0.02784201130270958, + 0.11985036730766296, + -0.11393114924430847, + -0.2143394947052002, + -0.3514690399169922, + -0.07264919579029083, + -0.2834392786026001, + -0.09463485330343246, + -0.0038197487592697144, + -0.0036028772592544556, + -0.18180423974990845, + 0.14543931186199188, + 0.013897828757762909, + 0.08609232306480408, + 0.09204942733049393, + 0.07404245436191559, + 0.04701559245586395, + -0.025487583130598068, + -0.0948944091796875, + -0.2612594664096832, + -0.11827622354030609, + -0.04174067825078964, + -0.017026254907250404, + -0.07709546387195587, + 0.2164604514837265, + 0.02660931646823883, + 0.007695019245147705, + -0.22865010797977448, + -0.03128751367330551, + 0.07623987644910812, + 0.08377258479595184, + 0.10165595263242722, + -0.03293794393539429, + 0.0012525394558906555, + -0.17847466468811035, + -0.28812336921691895, + 0.06522299349308014, + 0.1134503036737442, + -0.1733473837375641, + -0.08404631912708282, + 0.04428699612617493, + -0.0871741771697998, + -0.09005960077047348, + 0.18176306784152985, + -0.036879874765872955, + 0.005204983055591583, + -0.3679816424846649, + -0.18625958263874054, + -0.0857204869389534, + -0.24275611340999603, + 0.08781670033931732, + 0.41868895292282104, + 0.15742644667625427, + 0.16433501243591309, + -0.15181075036525726, + -0.0032928846776485443, + -0.12118571996688843, + 0.0419909842312336, + 0.1603936403989792, + 0.07280126214027405, + -0.2487087994813919, + -0.14124518632888794, + -0.04736645892262459, + -0.19522830843925476, + 0.07826808094978333, + 0.08730599284172058, + -0.06425109505653381, + -0.040581513196229935, + 0.06778407841920853, + 0.0217253677546978, + 0.16114968061447144, + 0.2976861000061035, + -0.05183078348636627, + 0.08198951184749603, + -0.12072813510894775, + 0.22695443034172058, + -0.14235378801822662, + 0.19616156816482544, + 0.03056659922003746, + 0.12897616624832153, + 0.07223237305879593, + -0.32032379508018494, + -0.013845615088939667, + -0.20682293176651, + 0.14266648888587952, + 0.271354615688324, + 0.03894227743148804, + -0.01829184591770172, + 0.3173091411590576, + 0.12627577781677246, + -0.1311573088169098, + -0.10120175033807755, + -0.263376921415329, + 0.1264505237340927, + 0.30471017956733704, + 0.14456436038017273, + -0.1778046190738678, + 0.02913770079612732, + -0.2661101818084717, + 0.07494086027145386, + 0.07032924145460129, + 1.3932379484176636, + 0.016878381371498108, + 0.13144078850746155, + 0.030792348086833954, + -0.18552780151367188, + -0.07002982497215271, + -0.04570575803518295, + -0.10574313998222351, + -0.09583757817745209, + -0.007571214810013771, + -0.06279143691062927, + 0.18128672242164612, + -0.27570998668670654, + -0.06744679063558578, + -0.18702030181884766, + -0.0046037333086133, + 0.03115294873714447, + -0.0045921653509140015, + 0.016003571450710297, + 0.15568910539150238, + -0.10172390192747116, + 0.03277432918548584, + -0.06290969997644424, + 0.04672825708985329, + -0.10827930271625519, + -0.06408724188804626, + 0.022810062393546104, + 0.09278012812137604, + 0.11811904609203339, + -0.11465327441692352, + -0.15140289068222046, + -0.043754540383815765, + -0.10876170545816422, + 0.3440327048301697, + 0.02785368077456951, + -0.24647754430770874, + 0.029045477509498596, + 0.33667483925819397, + 0.14264944195747375, + -0.4048916697502136, + 0.04909437149763107, + 0.027521643787622452, + -0.1293797343969345, + 0.012662019580602646, + 0.3550229072570801, + 0.07629437744617462, + -0.16392230987548828, + 0.4794900417327881, + 0.09076645970344543, + -0.2227478325366974, + 0.030937127768993378, + -0.10782653093338013, + -0.15291577577590942, + -0.09266725182533264, + 0.020251035690307617, + 0.04758521914482117, + -0.21487540006637573, + 0.11720290035009384, + -0.14713291823863983, + 0.19040049612522125, + -0.04694207012653351, + -0.13145139813423157, + -0.17628221213817596, + -0.009819962084293365, + 0.13719037175178528, + 0.26388347148895264, + 0.008603904396295547, + 0.05262289196252823, + -0.15400542318820953, + 0.19652105867862701, + 0.08061400055885315, + 0.15147185325622559, + -0.010075107216835022, + -0.041553232818841934, + -0.2148461937904358, + 0.16557267308235168, + 0.00021340325474739075, + -0.21731001138687134, + 0.15558746457099915, + -0.1437496691942215, + -0.08411772549152374, + -0.0009135119616985321, + 0.13227933645248413, + -0.3236691355705261, + -0.16784125566482544, + -0.11125244200229645, + -0.3434450030326843, + -0.05757632851600647, + 0.12486390769481659, + -0.24861937761306763, + -0.10636337101459503, + -0.02968105673789978, + -0.1079290360212326, + 0.02726166322827339, + -0.08472637832164764, + 0.19474534690380096, + -0.03092294931411743, + 0.03426799923181534, + 0.07750587910413742, + -0.17153170704841614, + -0.04542216286063194, + 0.8839091658592224, + -0.0951714739203453, + -0.12432141602039337, + 0.16203737258911133, + 0.25252026319503784, + 0.14243027567863464, + -0.1136104092001915, + -0.0024491939693689346, + 0.0358894057571888, + -0.0901423990726471, + -0.03720500320196152, + -0.04738587141036987, + 0.20161518454551697, + -0.145358607172966, + 0.049985695630311966, + -0.07744917273521423, + 0.22463735938072205, + -0.03884857892990112, + -0.19850021600723267, + -0.12155750393867493, + 0.09134767204523087, + 0.009001299738883972, + 0.2315617799758911, + -0.21258564293384552, + 0.03405824303627014, + 0.3204416036605835, + -0.08632068336009979, + -0.14366909861564636, + 0.13777472078800201, + -0.23039387166500092, + -0.06300131976604462, + 0.9725278615951538, + -0.16260653734207153, + 0.029087528586387634, + 0.014659106731414795, + 0.0874115526676178, + 0.10926254838705063, + 0.0016143769025802612, + -0.0633465051651001, + 0.024013709276914597, + 0.07886354625225067, + 0.0358566977083683, + 0.141439750790596, + -0.10249051451683044, + -0.08185522258281708, + 0.010715201497077942, + 0.06742766499519348, + 0.46166250109672546, + -0.19033829867839813, + 0.0060805389657616615, + 0.059984851628541946, + -0.00843086838722229, + -0.0911310613155365, + -0.020712189376354218, + 0.08462744951248169, + 0.13289257884025574, + 0.13204637169837952, + -0.09915164113044739, + 0.022536084055900574, + 0.100742869079113, + -0.15810632705688477, + 0.04967932030558586, + 0.30296385288238525, + 0.07948519289493561, + 0.49639493227005005, + 0.0136040560901165, + -0.14705081284046173, + -0.07646503299474716, + 0.041361477226018906, + -0.03887787461280823, + 0.01955588161945343, + -0.17895352840423584, + -0.3083231449127197, + -0.09817889332771301, + 0.22879375517368317, + -0.06543455272912979, + -0.10273987054824829, + 0.32024237513542175, + 0.14687037467956543, + -0.30598461627960205, + -0.05601925402879715, + -0.11148634552955627, + -0.04353273659944534, + -0.004939038306474686, + -0.10056301206350327, + -0.3213809132575989, + 0.040954768657684326, + 0.0575418695807457, + -0.06056724488735199, + -0.10545338690280914, + -0.12902700901031494, + 0.1340586543083191, + -0.13751469552516937, + -0.17338135838508606, + 0.1677190661430359, + -1.2466933727264404, + 0.11293447762727737, + 0.14692729711532593, + 0.018749315291643143, + 0.1920551210641861, + 0.16506090760231018, + -0.04112454876303673, + -0.00566694512963295, + 0.19190096855163574, + 0.19268645346164703, + -0.22466494143009186, + 0.2058236002922058, + -0.1142730861902237, + 0.039232127368450165, + 0.06354829668998718, + 0.08176523447036743, + -0.1245250403881073, + 0.04833768308162689, + 0.13378576934337616, + -1.354588508605957, + 0.6423684358596802, + 0.21439357101917267, + -0.05785483866930008, + -0.10866379737854004, + -0.257710725069046, + 0.026304759085178375, + -0.05679908022284508, + 0.052875228226184845, + -0.057345084846019745, + -0.013770556077361107, + -0.026379801332950592, + 0.06382191181182861, + -0.19300627708435059, + -0.11791916191577911, + -0.08368818461894989, + 0.014508809894323349, + 0.03755252808332443, + 0.2684193253517151, + 0.059196196496486664, + 0.06314722448587418, + 0.02384798228740692, + 0.2224811464548111, + 0.26950889825820923, + 0.12534749507904053, + -0.14551223814487457, + 0.02827458828687668, + 0.01204662024974823, + 0.0429314449429512, + -0.0846777930855751, + 0.3488228917121887, + -0.0807032585144043, + 0.24256682395935059, + -0.008421901613473892, + 0.03827166184782982, + -0.10973261296749115, + 0.08102092146873474, + -0.13946379721164703, + -0.10212108492851257, + 0.6350729465484619, + -0.25808772444725037, + -0.030255140736699104, + 0.1160641685128212, + -0.04598034918308258, + 0.049035608768463135, + 0.45552146434783936, + 0.018692858517169952, + -0.17925098538398743, + 0.00719606876373291, + 0.14733800292015076, + 0.12649163603782654, + -0.1140967607498169, + 0.23501047492027283, + -0.02863537333905697, + 0.09951968491077423, + 0.15170156955718994, + -0.03260575979948044, + 0.113474041223526, + 0.04592030122876167, + 0.3886473774909973, + 0.0001611858606338501, + -0.08870257437229156, + -0.037655942142009735, + 0.16381536424160004, + 0.07224299013614655, + 0.08266059309244156, + 0.31796813011169434, + -0.01897706463932991, + 0.008399039506912231, + 0.02594059705734253, + -0.05486375093460083, + 0.10349667072296143, + 0.21493341028690338, + -0.11207178235054016, + -0.22169244289398193, + -0.05926814675331116, + 0.07127124071121216, + 0.25842127203941345, + -0.12916269898414612, + 0.08672364801168442, + -0.05262395739555359, + -0.2697768807411194, + 0.15460386872291565, + -0.053153082728385925, + 0.06095186248421669, + 0.04089055210351944, + -0.1640987992286682, + -0.04998892545700073, + 0.3948828876018524, + 0.03266280144453049, + 0.0519661009311676, + -0.19891968369483948, + -0.434665322303772, + 0.024323957040905952, + 0.13723662495613098, + -0.07169057428836823, + -0.0207228884100914, + 0.11030128598213196, + -0.13417723774909973, + 0.23623572289943695, + 0.18506650626659393, + 0.10053736716508865, + 0.008899301290512085, + -0.26387882232666016, + 0.26552367210388184, + -0.0260547436773777, + 0.40034979581832886, + -0.03645534813404083, + 0.18441268801689148, + 0.0028474517166614532, + 0.1032809242606163, + 0.13512031733989716, + 0.27756839990615845, + 0.023020930588245392, + 0.006660878658294678, + 0.2102074921131134, + 0.06212227791547775, + 0.12571509182453156, + -0.03541857749223709, + 0.1707986295223236, + 0.019274674355983734, + 0.058840230107307434, + 0.18707449734210968, + 0.09691296517848969, + -0.09203624725341797, + -0.15696802735328674, + -0.04282187670469284, + -0.07980172336101532, + 0.34661003947257996, + -0.023929424583911896, + -0.13546714186668396, + -0.1259642392396927, + 0.028428129851818085, + 0.016517477110028267, + 0.08162474632263184, + 0.11956270784139633, + 0.05512026697397232, + 0.07467822730541229, + -0.11090390384197235, + -0.15403491258621216, + -0.045869145542383194, + 0.03621075302362442, + -0.18604212999343872, + -0.0841333270072937, + 0.13664518296718597, + -0.04828113317489624, + -0.2760694622993469, + -0.19817981123924255, + -0.06322631239891052, + 0.022431373596191406, + 0.12771518528461456, + -0.0428755022585392, + 0.11333294212818146, + -0.2537377178668976, + -0.20243120193481445, + 0.034388311207294464, + 0.5425512194633484, + 0.013940531760454178, + -0.797048807144165, + -0.31381160020828247, + 0.07266516238451004, + -0.24080446362495422, + -0.806656539440155, + 0.5071699619293213, + 0.08091254532337189, + -0.03642217814922333, + 0.3213112950325012, + -0.014676794409751892, + 0.07030829787254333, + 0.013429060578346252, + 0.020903002470731735, + 0.00629887729883194, + 0.33358508348464966, + -0.10860158503055573, + 0.09235268086194992, + 0.06389331072568893, + 0.038821667432785034, + 0.14328867197036743, + -0.06840040534734726, + -0.4514297842979431, + 0.09287577867507935, + 0.2472296506166458, + 0.015368131920695305, + -0.043926626443862915, + 0.19480957090854645, + -0.20972837507724762, + -0.5020738244056702, + -0.17852143943309784, + 0.10098712146282196, + 0.1813453882932663, + -0.22311237454414368, + 0.15325646102428436, + 0.07959090918302536, + 0.10037229210138321, + -0.1815611720085144, + 0.07778364419937134, + -0.20844434201717377, + -0.04263737425208092, + -0.04342573881149292, + 0.04560987651348114, + -0.19196070730686188, + 0.39651960134506226, + 0.0448891744017601, + 0.06204671412706375, + 0.06654344499111176, + 0.05363208055496216, + 0.025624975562095642, + -0.16929668188095093, + 0.11187779158353806, + 0.21105822920799255, + -0.14323395490646362, + 0.07453949749469757, + -0.05451422929763794, + -0.28514355421066284, + -0.14790019392967224, + -0.06445445120334625, + -0.08850783109664917, + -0.07330577075481415, + 0.1501348614692688, + 0.1918790638446808, + -0.13714009523391724, + -0.1956685483455658, + 0.20588725805282593, + -0.1516500860452652, + 0.011265818029642105, + 0.30029770731925964, + 0.5978107452392578, + 0.02405676245689392, + -0.08758483082056046, + 0.02421554923057556, + 0.18862195312976837, + 0.28626549243927, + -0.07519595324993134, + -0.07772679626941681, + -0.13711030781269073, + 1.1910340785980225, + -0.04469677060842514, + 0.08331245183944702, + -0.0054156593978405, + -0.05261463299393654, + -0.01765827089548111, + 0.034965358674526215, + 0.04123269394040108, + -0.049359872937202454, + -0.016477150842547417, + 0.2157987654209137, + 0.01179976761341095, + -0.10623805224895477, + -0.019377723336219788, + 0.01200825348496437, + 0.20846980810165405, + 0.06257931143045425, + 0.1146438717842102, + 0.0541449673473835, + 0.0952659547328949, + -0.21586313843727112, + 0.26418277621269226, + -0.16581249237060547, + -0.03646482527256012, + -0.2627795338630676, + 0.03470335900783539, + 0.2115592062473297, + -0.06403791159391403, + -0.03966629505157471, + 0.22018694877624512, + 0.04718109592795372, + -0.11050578951835632, + 0.08699740469455719, + 0.11637769639492035, + -0.07123690843582153, + -0.03741329908370972, + 0.02339359000325203, + 0.2689638137817383, + -0.014707006514072418, + -0.038021020591259, + 0.011149972677230835, + 1.028212308883667, + 0.214857816696167, + 0.006064536049962044, + -0.30512505769729614, + -0.08241838216781616, + 0.06258533895015717, + 0.0320078544318676, + 0.09243106096982956, + 0.19266313314437866, + -0.056778281927108765, + -0.03643813729286194, + 0.10149815678596497, + -0.11472374200820923, + 0.0405094213783741, + 0.20831315219402313, + 0.15801429748535156, + 0.07219518721103668, + -0.17279206216335297, + 0.24372521042823792, + -0.07336585223674774, + 0.2678527534008026, + -0.270492285490036, + 0.022482309490442276, + 0.06787799298763275, + -0.22453920543193817, + 0.01748059317469597, + 0.18695715069770813, + -0.04637570306658745, + 0.09636446833610535, + 0.1959962248802185, + -0.16993798315525055, + -0.19768452644348145, + -0.1259380578994751, + -0.1170930564403534, + -0.3588882088661194, + 0.0032061776146292686, + 0.06774706393480301, + -0.061089254915714264, + 0.13671135902404785, + 0.23368215560913086, + 0.05785384401679039, + -0.21850618720054626, + -0.3902725875377655, + -0.11580493301153183, + -0.2165159285068512, + -0.04220098257064819, + -0.1500619649887085, + -0.08338306099176407, + 0.06502722203731537, + -0.10708517581224442, + -0.18605659902095795, + 0.1409471035003662, + -0.46793341636657715, + -0.2751549184322357, + -0.12056416273117065, + -0.09174615889787674, + -0.10249421000480652, + -0.0392141118645668, + 0.13482820987701416, + 0.058527253568172455, + 0.04418893903493881, + 0.17036275565624237, + -0.25929757952690125, + -0.03268762677907944, + -0.0993269607424736, + 0.0034809112548828125, + 0.052273958921432495, + 0.22752812504768372, + -0.16680604219436646, + -0.9106931686401367, + -0.12466638535261154, + 0.2836552560329437, + -0.09036948531866074, + -0.030489467084407806, + 0.08544055372476578, + -0.05986572802066803, + 0.18754532933235168, + -0.15099278092384338, + -0.011793544515967369, + -0.15362201631069183, + -0.04162471741437912, + 0.2573181688785553, + -0.09317771345376968, + 0.23670482635498047, + 0.10071034729480743, + -0.2719360589981079, + -0.48748183250427246, + 0.3036476671695709, + 0.16007819771766663, + 0.7887363433837891, + -0.018979966640472412, + -0.10484617948532104, + 0.4505426287651062, + -0.09400712698698044, + 0.16086527705192566, + -0.04809039086103439, + 0.2941373586654663, + 0.11080567538738251, + 0.09926878660917282, + 0.01774466224014759, + -0.056918542832136154, + 0.0911727324128151, + 0.1416851431131363, + -0.2835380434989929 + ], + "vector": [ + -0.0028802950400859118, + -0.007233031559735537, + -0.025676803663372993, + 0.021619463339447975, + 0.00638189073652029, + -0.01690477691590786, + 0.015417881309986115, + -0.002616375219076872, + -0.015707219019532204, + 0.010444298386573792, + -0.00380077981390059, + 0.006120104808360338, + -0.01136165764182806, + 0.009386851452291012, + -0.014534267596900463, + 0.005364192184060812, + 0.008350338786840439, + -0.00015205916133709252, + 0.006619355175644159, + 0.014845363795757294, + -0.014190052635967731, + -0.0021509260404855013, + 0.006157300900667906, + -0.017081473022699356, + -0.010048320516943932, + 0.008776359260082245, + -0.032321054488420486, + -0.021705515682697296, + -0.014163369312882423, + -0.003928563091903925, + 0.017141813412308693, + -0.01025452557951212, + 0.022326989099383354, + 0.017386842519044876, + 0.0035853919107466936, + 0.004840303212404251, + -0.013770519755780697, + -0.02367422543466091, + 0.002119795884937048, + -0.004266457632184029, + -0.024420976638793945, + -0.012266695499420166, + 0.011910511180758476, + 0.013165539130568504, + -0.007596700917929411, + -0.011895737610757351, + 0.003397383727133274, + -0.019936800003051758, + -0.01171602588146925, + -0.01335116196423769, + 0.0017945615109056234, + -0.01171094086021185, + 0.0019598715007305145, + 0.007205019239336252, + 0.0059328144416213036, + 0.0088723823428154, + 0.002031786600127816, + -0.013849612325429916, + -0.009627562947571278, + 0.003516832133755088, + -0.014061498455703259, + -0.014558016322553158, + 0.01852884516119957, + 0.0035975424107164145, + 0.024926617741584778, + 0.0023319695610553026, + 0.022151455283164978, + 0.0078603969886899, + 0.017019761726260185, + 0.003041948424652219, + -0.016806967556476593, + 0.009098016656935215, + -0.0044852388091385365, + -0.004643265623599291, + 0.014544723555445671, + 0.004892242606729269, + -0.02929479442536831, + 0.0022869999520480633, + -0.014257093891501427, + -0.023435018956661224, + -0.004173914901912212, + 0.01565406285226345, + -0.0009016462718136609, + 0.004986977204680443, + 0.01366522815078497, + -0.004828004632145166, + 0.000467033707536757, + 0.0231389831751585, + 0.015240535140037537, + 0.0014202353777363896, + -0.011435584165155888, + -0.005340826231986284, + 0.002038991544395685, + 0.03691713139414787, + -0.005702449008822441, + -0.02092340588569641, + -0.005466856993734837, + -0.009387772530317307, + 0.03619790077209473, + 0.00631930073723197, + -0.013423030264675617, + 0.012863998301327229, + -0.0022196369245648384, + -0.011152306571602821, + -0.0016577763017266989, + 0.002692862879484892, + -0.00758330337703228, + 0.007604735437780619, + -0.004011781420558691, + 0.00827595591545105, + 0.013272258453071117, + 0.01199951209127903, + 0.01583988405764103, + 0.007099125534296036, + 0.024282468482851982, + 0.010746004059910774, + 0.0051131779327988625, + -0.0073445867747068405, + 0.010202031582593918, + 0.017015058547258377, + 0.017104778438806534, + -0.0044362652115523815, + 0.003763830056414008, + -0.0005331797292456031, + -0.011606012471020222, + -0.018488772213459015, + 0.0026609529741108418, + -0.008113623596727848, + -0.014063799753785133, + -0.0002467636077199131, + 0.028321359306573868, + -0.007838486693799496, + 0.0037517566233873367, + -0.004226382821798325, + 0.023445120081305504, + 0.03775535523891449, + -0.004448127467185259, + -0.0005243250634521246, + -0.004483313299715519, + -0.01046210341155529, + 0.010991363786160946, + 0.007526226341724396, + -0.01635577902197838, + 0.007276361342519522, + 0.011367332190275192, + -0.011032468639314175, + 0.01193426176905632, + 0.0025254078209400177, + 0.013666248880326748, + 0.04075734317302704, + 0.003424772759899497, + 0.023745303973555565, + 0.012084092013537884, + -0.01112665981054306, + -0.003006781917065382, + 0.012315744534134865, + 0.006262659560889006, + 0.003070115577429533, + -0.003190054325386882, + 0.0005048440070822835, + -0.006032072938978672, + -0.005922590848058462, + 0.03671006113290787, + 0.0016606623539701104, + -0.005092129576951265, + 0.01675521768629551, + -0.021615400910377502, + 0.004404609557241201, + 0.01059399452060461, + -0.0034481368493288755, + -0.008654074743390083, + -0.018365558236837387, + -0.0008218240109272301, + -0.020914414897561073, + -0.0009817533427849412, + 0.0017384123057126999, + -0.012167777866125107, + 0.016467707231640816, + 0.021921811625361443, + -0.012447203509509563, + 0.01189394574612379, + 0.0011541297426447272, + -0.020881759002804756, + 0.006864240858703852, + -0.003707470605149865, + -0.004189703613519669, + -0.011500280350446701, + 0.019915347918868065, + -0.0038145044818520546, + -0.004069337155669928, + -0.01468377560377121, + 0.025455979630351067, + 0.0407557338476181, + -0.00011599646677495912, + -0.011308906599879265, + -0.010942287743091583, + -0.06733543425798416, + 0.003539514262229204, + -0.012857543304562569, + 0.006316000130027533, + 0.04220849648118019, + 0.0008848343859426677, + 0.004342333879321814, + 0.006977561861276627, + 0.008604832924902439, + 0.005254253279417753, + 0.00882154330611229, + 0.024276122450828552, + -0.009541589766740799, + -7.665398152312264e-05, + 0.003113923827186227, + 0.0010757710551843047, + 0.009932232089340687, + -0.002709671389311552, + -0.008853190578520298, + 0.024532174691557884, + -0.0060727703385055065, + 0.010614629834890366, + -0.006492160260677338, + 0.016517387703061104, + 0.008000794798135757, + 0.0060107712633907795, + 0.005181075073778629, + -0.004821161739528179, + 0.03845474496483803, + 0.003733074991032481, + -0.014498889446258545, + 0.0011655762791633606, + 0.0026044645346701145, + 0.024929789826273918, + 0.013657758943736553, + -0.0019476542947813869, + 0.013934706337749958, + -0.049034588038921356, + -0.00877453200519085, + 0.0017055850476026535, + 0.0015133973211050034, + 0.0004296008264645934, + 0.0026868938002735376, + 0.015802135691046715, + 0.011165369302034378, + -0.0025670588947832584, + -0.00856135692447424, + -0.035466428846120834, + 0.006294968072324991, + 0.021963153034448624, + -0.021957429125905037, + -0.004416592884808779, + -0.0027084178291261196, + -0.003193182870745659, + -0.0025014819111675024, + -0.005228134337812662, + -0.011451512575149536, + 0.009502950124442577, + -0.009378870949149132, + -0.0002598378050606698, + 0.005630147643387318, + 0.000496892724186182, + 0.02514926716685295, + -0.009223293513059616, + -0.007887852378189564, + 0.002905505243688822, + -0.010324654169380665, + -0.004207450430840254, + -0.009790469892323017, + 0.008204659447073936, + 0.011871552094817162, + -0.000974455731920898, + 0.006459984462708235, + -0.0021278965286910534, + -0.0399567075073719, + 0.009781832806766033, + -5.1350536523386836e-05, + 0.009945850819349289, + 0.001513011404313147, + 0.014927336946129799, + 0.0013194562634453177, + 0.01783919148147106, + 0.0065028066746890545, + -0.00412612734362483, + 0.0002985204628203064, + 0.02600581757724285, + 0.04467916488647461, + 0.001993701560422778, + -0.0018848354229703546, + 0.03404122591018677, + -0.024236615747213364, + 0.020789602771401405, + -0.007965152151882648, + 0.00504569336771965, + -0.008003936149179935, + -0.011341906152665615, + -0.049516208469867706, + 0.0022651951294392347, + -0.017274055629968643, + 0.0034094429574906826, + 0.0014431169256567955, + 0.000918105011805892, + 0.015843896195292473, + -0.010736583732068539, + 0.0102410688996315, + -0.009959696792066097, + -0.012632675468921661, + 0.009599314071238041, + 0.0076142908073961735, + 0.016043759882450104, + -0.028042864054441452, + 0.01294639427214861, + 0.008201158605515957, + 0.002954925410449505, + -0.01083076186478138, + 0.0012715262128040195, + 0.0180739164352417, + -0.004632073920220137, + 0.00089225237024948, + -0.0021953536197543144, + 0.012999224476516247, + 0.01527960691601038, + -0.014191356487572193, + 0.009745685383677483, + -0.013614242896437645, + -0.002788048703223467, + -0.012650901451706886, + 0.00033413994242437184, + -0.00013093676534481347, + 0.02075154520571232, + 0.005503411870449781, + 0.0020799131598323584, + 0.0026915681082755327, + -0.005401380360126495, + -0.011975159868597984, + -0.0037863384932279587, + -0.019244635477662086, + 0.016246352344751358, + -0.011232412420213223, + 0.020472737029194832, + 0.004983996506780386, + 0.007198363076895475, + -0.026395732536911964, + -0.005421879701316357, + 0.0070380945689976215, + 0.0019324248423799872, + 0.01436783466488123, + -0.08307063579559326, + -0.014686105772852898, + -0.02404230646789074, + 0.0012419248232617974, + -0.008087941445410252, + -0.011780706234276295, + -0.006545937154442072, + -0.001164139830507338, + -0.007078871596604586, + 0.039695337414741516, + -0.004449113737791777, + -0.00952559057623148, + -0.0013782201567664742, + 0.0320865660905838, + -0.006962367799133062, + 0.021146968007087708, + -0.01034952700138092, + 0.002027506474405527, + -0.05411180108785629, + 0.01684810221195221, + 0.01927376165986061, + -0.00020056571520399302, + -0.025029873475432396, + -0.004736729431897402, + 0.012059849686920643, + 0.012446089647710323, + -0.002130641136318445, + 0.004386271815747023, + 0.018438728526234627, + -0.014555707573890686, + 0.020228557288646698, + -0.012289335019886494, + -0.025761939585208893, + -0.006230642087757587, + -0.025450779125094414, + 0.01389364805072546, + 0.0022933133877813816, + -0.007978001609444618, + 0.0019367622444406152, + 0.11422999948263168, + -0.010112615302205086, + 0.012457690201699734, + -0.02048163115978241, + 0.008934764191508293, + 0.017159264534711838, + 0.012926483526825905, + -0.006638476625084877, + -0.0003546372172422707, + -0.015813034027814865, + -0.008606789633631706, + 0.01088196225464344, + 0.0007210499024949968, + -0.0021528827492147684, + 0.030648116022348404, + 0.02808167040348053, + -0.03028239868581295, + 0.005751673597842455, + -0.011310543864965439, + 0.00824817642569542, + 0.0035566636361181736, + -0.009628240019083023, + 0.012290725484490395, + -0.00499006686732173, + 0.0055807423777878284, + -0.005320599302649498, + -0.016352863982319832, + 0.01605895161628723, + -0.006327021401375532, + 0.01953599415719509, + -0.010743814520537853, + 0.004501713905483484, + -0.004655065014958382, + -0.008906683884561062, + 0.016190342605113983, + 0.006681360304355621, + 0.0005267423111945391, + 0.005791001487523317, + -0.011824220418930054, + 0.0047582462430000305, + -0.003252559108659625, + -0.014865739271044731, + -0.005778446327894926, + 0.00405360059812665, + 0.006309255957603455, + -0.026869339868426323, + 0.002536495216190815, + 0.017528848722577095, + -0.05031363293528557, + 0.017444057390093803, + 0.05144760385155678, + -0.002570072188973427, + 0.0046189576387405396, + 0.009698296897113323, + 0.011213971301913261, + -0.0059545389376580715, + -0.005010073073208332, + -0.010266505181789398, + -0.013600694015622139, + 0.002259922679513693, + 0.0008566475589759648, + -0.029275821521878242, + 0.010042915120720863, + -0.011448572389781475, + 0.002957230666652322, + -0.022959476336836815, + -0.005793469958007336, + 0.00012423473526723683, + -0.001511149574071169, + -0.004443686455488205, + 0.012782805599272251, + 0.01135491207242012, + -0.012752151116728783, + -0.007737528067082167, + -0.00528562068939209, + 0.007391638122498989, + -0.026432815939188004, + 0.012872141785919666, + 0.004591699689626694, + 0.010456815361976624, + -0.024758445098996162, + 0.006442767567932606, + 0.012147283181548119, + -0.017534470185637474, + 0.005711854435503483, + -0.0004178477101959288, + -0.012149343267083168, + 0.015476098284125328, + -0.009331203997135162, + -0.021383337676525116, + 0.0161768589168787, + 0.01311268750578165, + -0.03294346109032631, + -0.008781946264207363, + 0.010827654041349888, + -0.0021524520125240088, + 0.014000720344483852, + 0.001264830119907856, + -0.010830210521817207, + -0.011141725815832615, + 0.009868953377008438, + 0.009694878943264484, + -0.00226826430298388, + 0.003499385667964816, + -0.011856465600430965, + 0.05573980137705803, + 0.017070652917027473, + 0.010323603637516499, + -0.00683812890201807, + -0.015327251516282558, + -0.014401997439563274, + -0.0018553363624960184, + -0.015635086223483086, + 0.0017293972196057439, + -0.011063242331147194, + 0.016981421038508415, + 0.003476555924862623, + -0.011145254597067833, + 0.01594463735818863, + 0.003554275957867503, + -0.008537573739886284, + -0.0021544811315834522, + -0.015932556241750717, + 0.021270163357257843, + 0.019396966323256493, + 0.005070465616881847, + -0.01306203193962574, + 0.018573181703686714, + -0.0032370504923164845, + -0.003671234240755439, + 0.004023734945803881, + 0.020662246271967888, + -0.0009660224313847721, + -0.005717317573726177, + -0.01567213609814644, + 0.012844112701714039, + -0.0007091624429449439, + 0.006841725204139948, + 0.005182450171560049, + -0.011175726540386677, + 0.03202349320054054, + 0.03115406259894371, + 0.01278054527938366, + 0.00750378891825676, + 0.021959612146019936, + -0.0034696152433753014, + 0.002755651716142893, + 0.02334023080766201, + -0.016286835074424744, + -0.008541686460375786, + -0.0007669948972761631, + 0.0011317477328702807, + 0.005225895904004574, + -0.002312053693458438, + 0.006168147549033165, + 0.0012915990082547069, + -0.0014322890201583505, + -0.013975909911096096, + 0.003721620189025998, + -0.00945541076362133, + 0.018655193969607353, + 0.005555290728807449, + -0.000462145428173244, + -0.004175830166786909, + -0.05642169713973999, + -0.019513266161084175, + -0.019276704639196396, + -5.208242328080814e-06, + -0.013785874471068382, + -0.010163080878555775, + 0.052348677068948746, + -0.006761441472917795, + 0.011309360153973103, + -0.00761671457439661, + 0.019444093108177185, + -0.00445875059813261, + 0.021681353449821472, + 0.02815510518848896, + -0.030250227078795433, + -0.0020316403824836016, + 0.01731300726532936, + 0.008881284855306149, + -0.003932294435799122, + -0.026810098439455032, + -0.00589727982878685, + 0.0008465244900435209, + 0.0076615833677351475, + -0.011608341708779335, + 0.00889582559466362, + 0.0020714846905320883, + -0.009896127507090569, + -0.0096899950876832, + -0.0119034294039011, + -0.000503986666444689, + -0.019850648939609528, + 0.002583543537184596, + 0.017605450004339218, + 0.00808098167181015, + 0.02532435581088066, + -0.013966700062155724, + 0.008421793580055237, + -0.017470361664891243, + -0.004645124077796936, + -0.007340125739574432, + -0.006486621219664812, + -0.006939189974218607, + 0.00276755983941257, + 0.0004952691961079836, + 0.023686295375227928, + 0.011910554952919483, + 0.021921534091234207, + -0.0006661892984993756, + 0.015575678087770939, + 0.016465051099658012, + -0.00996954645961523, + 0.0158992949873209, + 0.027547702193260193, + -0.0083658741787076, + 0.005761356558650732, + 0.010683326050639153, + 0.002584113972261548, + -0.004824155010282993, + -0.0003274771443102509, + 0.020166074857115746, + -0.0035071515012532473, + -0.0006994643481448293, + 0.006902375258505344, + 0.015510300174355507, + -0.005969730205833912, + -0.005254668649286032, + 0.015122635290026665, + 0.0035724134650081396, + 0.00959094613790512, + -0.025284303352236748, + -0.003947657998651266, + -0.0033567023929208517, + -0.00210301554761827, + -0.002697806339710951, + 0.014975275844335556, + 0.020843660458922386, + -0.00266135111451149, + 0.005680967587977648, + 0.03396324813365936, + 0.002178394701331854, + 0.013209125027060509, + 0.003931537736207247, + -0.0011822922388091683, + 0.0020833511371165514, + -0.015156608074903488, + -0.026005441322922707, + 0.009841742925345898, + -0.011156046763062477, + 0.009572475217282772, + -0.02394929714500904, + -0.0018902947194874287, + -0.01128424797207117, + 0.023799678310751915, + 0.0027613425627350807, + 0.001325041870586574, + -0.009923622943460941, + -0.01813756860792637, + -0.0069289314560592175, + 0.032332926988601685, + -0.0007919407216832042, + 0.022867102175951004, + 0.044253870844841, + 0.01699536293745041, + -0.0020112537313252687, + -0.009902151301503181, + -0.007075220346450806, + -0.00016223845886997879, + 0.0069955927319824696, + -0.006486395839601755, + 0.01098188478499651, + 0.012941751629114151, + 0.0008298906614072621, + 0.04037822037935257, + 0.01882096379995346, + -0.009318498894572258, + -0.0009479459840804338, + -0.004223729483783245, + -0.01099731307476759, + 0.003099325578659773, + -0.03172618895769119, + 0.00463740574195981, + -0.0005306862876750529, + -0.007671775761991739, + 0.015302288345992565, + 0.013497591018676758, + -0.010545982979238033, + -0.009496345184743404, + -0.0028465939685702324, + 0.008045247755944729, + 0.0012984764762222767, + -0.01808958128094673, + 0.009155933745205402, + -0.002427973784506321, + -0.012013613246381283, + -0.01123929861932993, + 0.012350440956652164, + -0.01216378528624773, + -0.01879868097603321, + -0.003527550958096981, + 0.0035548489540815353, + 0.010308773256838322, + -0.004479648545384407, + -0.002912962343543768, + -0.007814577780663967, + -0.017004745081067085, + 0.023984437808394432, + 0.0076282452791929245, + 0.011242634616792202, + 0.018787840381264687, + 0.002776116831228137, + 0.002966670785099268, + -0.01570129208266735, + -0.01332088839262724, + 0.006413325201719999, + 0.008858236484229565, + -0.004401197656989098, + 0.0005487930029630661, + -0.0005546108586713672, + 0.019434992223978043, + -0.0067896475084125996, + 0.008166076615452766, + 0.04819256812334061, + -0.005079324822872877, + 0.00526196276769042, + -0.007535840850323439, + -0.020587878301739693, + -0.014637491665780544, + 0.0005380369257181883, + -0.014835918322205544, + -0.003966168034821749, + 0.08144442737102509, + -0.006823783274739981, + 0.0032497516367584467, + 0.007633473724126816, + -0.001024559955112636, + -0.0027440551202744246, + 0.0069977110251784325, + 0.00737668527290225, + 0.0004114234761800617, + 0.009491137228906155, + -0.010127999819815159, + 0.011063147336244583, + 0.004542892333120108, + 0.005868714768439531, + -0.008330914191901684, + -0.0022219321690499783, + -0.001508726621977985, + -0.01593281701207161, + -0.002400557976216078, + -0.0014497953234240413, + 0.010520593263208866, + 0.020156146958470345, + -0.00783858634531498, + -0.018397139385342598, + 0.01446333434432745, + -0.010642781853675842, + -0.015724550932645798, + 0.004528835415840149, + -0.02985137328505516, + -0.0034243359696120024, + 0.013841508887708187, + -0.020325910300016403, + 0.014093194156885147, + -0.0031824596226215363, + -0.0049595944583415985, + 0.0209735706448555, + 0.00015735907072667032, + 0.0007804094348102808, + 0.0057600559666752815, + -0.0020396215841174126, + 0.0011463111732155085, + -0.008105062879621983, + -0.00781546626240015, + 0.006566459778696299, + 0.019070161506533623, + 0.01165876816958189, + 0.0038872575387358665, + 0.005932358093559742, + -0.005189019721001387, + -0.0066211228258907795, + 0.008390276692807674, + -0.01504566241055727, + -0.005336478352546692, + -0.005973772145807743, + -0.03579537197947502, + 0.00124048488214612, + -0.0036873610224574804, + 0.005419618915766478, + -0.015502560883760452, + -0.014185018837451935, + -0.003487230511382222, + -0.05658435449004173, + -0.00925283320248127, + -0.020981255918741226, + -0.013334891758859158, + 0.0078736562281847, + 0.008734297938644886, + 0.00701180100440979, + -0.0002717773604672402, + -0.021124912425875664, + 0.011667578481137753, + 0.0009654618334025145, + -0.006891455035656691, + 0.006349665112793446, + 0.016716312617063522, + -0.005792774260044098, + 0.000984056037850678, + -0.016711732372641563, + -0.010114379227161407, + -0.004122312180697918, + 0.004223434720188379, + -0.015468900091946125, + 0.004458852577954531, + -0.0010165608255192637, + -0.017739901319146156, + -0.000446447724243626, + -0.01956736110150814, + 0.003709534415975213, + 0.01499438751488924, + 0.004720424767583609, + -0.011879551224410534, + -0.014359643682837486, + 0.006894363090395927, + -0.0052207764238119125, + 0.00797708984464407, + -0.011823075823485851, + -0.0022716710809618235, + 0.028280464932322502, + -0.01491018757224083, + -0.013592095114290714, + 0.0011629271320998669, + -0.0073927356861531734, + -0.002979188458994031, + -0.00562206469476223, + -0.013234490528702736, + 0.002289221156388521, + -0.02000574767589569, + 0.008639413863420486, + -0.017865655943751335, + -0.01539642084389925, + 0.01175007689744234, + -0.020602209493517876, + -0.022937383502721786, + -0.0013864266220480204, + -0.021474510431289673, + 0.009458565153181553, + -0.003967699594795704, + 0.04168885201215744, + 0.005209882277995348, + 0.01172168180346489, + -0.012630662880837917, + 0.004932058975100517, + 0.03499230369925499, + 0.0025666600558906794, + -0.026792079210281372, + 0.02730693481862545, + 0.005768353119492531, + -0.00011854739568661898, + -0.005698186811059713, + -0.0035370339173823595, + -0.00690581277012825, + -0.016378609463572502, + -0.0037551254499703646, + 0.013348916545510292, + -0.012098743580281734, + -0.031951118260622025, + -0.0069258627481758595, + 0.006139732897281647, + 0.008551890961825848, + -0.00022303919831756502, + 0.022597860544919968, + -0.008365942165255547, + 0.0006019548745825887, + -0.009388597682118416, + -0.019537026062607765, + -0.01160082221031189, + -0.019491229206323624, + 0.0028092802967876196, + 0.0021129937376827, + -0.00228007766418159, + -0.006506996229290962, + 0.004679824225604534, + 0.010678085498511791, + -0.0035575011279433966, + 0.0019558609928935766, + -0.008781882002949715, + -0.009125995449721813, + -0.0028067072853446007, + 0.010903360322117805, + 0.004846347030252218, + -0.013221919536590576, + 0.0064041451551020145, + 0.00558521319180727, + 0.01148875243961811, + 0.003005772130563855, + -0.0040801335126161575, + -0.005019302945584059, + -0.005060952622443438, + 0.006920516490936279, + 0.004090795759111643, + -0.01189253106713295, + 0.0025454415008425713, + 0.06298645585775375, + -0.017612915486097336, + -0.008906039409339428, + -0.002000609412789345, + -0.00413754815235734, + 0.004664004780352116, + 0.001174556091427803, + -0.014170310460031033, + -0.013530980795621872, + -0.012914183549582958, + 0.005193968769162893, + 0.01662035845220089, + -0.017006734386086464, + -0.03772580623626709, + -0.006432936526834965, + 0.0017659564036875963, + -0.0012495183618739247, + 0.021717611700296402, + 0.00698540173470974, + 0.0019342901650816202, + -0.007287823129445314, + 0.015745671465992928, + -0.004203107673674822, + 0.02397412620484829, + -0.007092498242855072, + -0.0036138303112238646, + 0.02694430947303772, + -0.006172525230795145, + -0.010846135206520557, + 0.014766029082238674, + -0.010045375674962997, + -0.005342938471585512, + 0.004374201409518719, + 0.0013824999332427979, + -0.010698160156607628, + 0.005286387633532286, + 0.014777839183807373, + -0.001991886645555496, + -0.00029949660529382527, + 0.016414353623986244, + 0.009474759921431541, + 0.002602788619697094, + -0.003742465516552329, + -0.014469007961452007, + 0.0192315261811018, + -0.014442802406847477, + -0.005840704310685396, + 0.005047166254371405, + 0.0013990873703733087, + 0.014127995818853378, + -0.00996486283838749, + 0.010437266901135445, + 0.0012678359635174274, + -0.020585693418979645, + 0.0064288838766515255, + 0.005569515749812126, + 0.009389525279402733, + 0.01174613181501627, + -0.0014789995038881898, + 0.010077177546918392, + 0.02123180218040943, + -0.006460821721702814, + -0.006827968172729015, + 0.0011060067918151617, + -0.020263109356164932, + 0.0025672137271612883, + -0.01987510547041893, + -0.018825924023985863, + -0.019809281453490257, + 0.019290823489427567, + -0.012665589340031147, + 0.01636463776230812, + 0.015272396616637707, + -0.0003049626247957349, + -0.012558137997984886, + -0.01630638912320137, + -0.00955155584961176, + 0.010420738719403744, + 0.01331055536866188, + 0.0030423232819885015, + -0.0019184459233656526, + 0.005069596692919731, + -0.000616966572124511, + -0.010150756686925888, + 0.012955063953995705, + 0.010106542147696018, + 0.000597074453253299, + -0.012288584373891354, + 0.0024723459500819445, + -0.008990312926471233, + -0.009604103863239288, + 0.008380237966775894, + -0.002954651601612568, + 0.006241327617317438, + -0.08563439548015594, + 0.004190179519355297, + -0.0032462552189826965, + -0.017544124275445938, + -0.00044121529208496213, + -0.00618732487782836, + 0.00591330137103796, + -0.013249539770185947, + -0.008828321471810341, + -0.007875093258917332, + -0.010591906495392323, + -0.0018790295580402017, + 0.04230246692895889, + 0.005416512954980135, + -0.024783242493867874, + -0.008869539946317673, + -0.005160351283848286, + 0.00333316414617002, + -0.0014729573158547282, + -0.0084738340228796, + 0.014649778604507446, + 0.011311237700283527, + 0.006162910722196102, + -0.009899010881781578, + 0.0003605264355428517, + -0.011810327880084515, + 0.010086067020893097, + 0.008962567895650864, + 0.014460636302828789, + 0.011282389052212238, + 0.058041587471961975, + 0.005336478352546692, + -0.02027147077023983, + -0.008652723394334316, + -0.0009484065813012421, + -0.008452268317341805, + -0.007855888456106186, + 0.0005856094066984951, + -0.02297702431678772, + -0.008198915049433708, + 0.0031528626568615437, + -0.013189864344894886, + -0.011817260645329952, + 0.002661356469616294, + -0.002237550215795636, + -0.0047355093993246555, + 0.0012276985216885805, + -0.013526164926588535, + -0.011495276354253292, + 0.013524995185434818, + -0.026899060234427452, + -0.0007716579711996019, + -0.00092021853197366, + -0.0157992634922266, + -0.020574074238538742, + 0.008789107203483582, + 0.012054689228534698, + -0.0034093905705958605, + 0.01455040741711855, + -0.00040961921331472695, + -0.013104289770126343, + -0.0052689858712255955, + 0.03187669813632965, + 0.0004522905801422894, + -0.056340333074331284, + -0.0071481214836239815, + -0.007738535292446613, + 0.016616802662611008, + -0.025220446288585663, + 0.018440082669258118, + -0.007658624555915594, + -0.0024334208574146032, + 0.021872078999876976, + 0.031047353520989418, + -0.03460923954844475, + -0.01713382638990879, + -0.0167952012270689, + 0.00012512653484009206, + -0.050263483077287674, + -0.005777844227850437, + -0.013431989587843418, + -0.015149764716625214, + 0.014871999621391296, + -0.014234708622097969, + 0.013610185123980045, + 0.04457888752222061, + -0.014024825766682625, + 0.00989171490073204, + -0.015868524089455605, + 0.006011393386870623, + -0.010250376537442207, + -0.0035205644089728594, + 0.0011988957412540913, + -0.002897479571402073, + 0.009924821555614471, + -0.01137732807546854, + -0.0023176271934062243, + -0.004408378154039383, + -0.007343954872339964, + 0.00691275903955102, + 0.010989610105752945, + -0.007404521573334932, + 0.005124368239194155, + 0.006486770696938038, + 0.004568648524582386, + 0.005668705329298973, + -0.01682734116911888, + -0.011704950593411922, + 0.020437756553292274, + 0.014595374464988708, + -0.02389930561184883, + -0.005812765099108219, + -0.006871010642498732, + 0.005306641571223736, + 0.005274763330817223, + -0.006573844701051712, + 0.0030917595140635967, + -0.01897016540169716, + 0.01035294309258461, + 0.01622101664543152, + -0.0012125190114602447, + 0.00017966008454095572, + 0.008085138164460659, + -0.014763398095965385, + -0.005371963605284691, + -0.01763239875435829, + -0.023407502099871635, + -0.026277223601937294, + -0.009492306970059872, + 0.00721858162432909, + 0.0066187880001962185, + -0.010219085961580276, + 0.01256948709487915, + -0.008151951245963573, + 0.01779966801404953, + 0.003420057240873575, + 0.014540049247443676, + 0.016695989295840263, + -0.0034275378566235304, + -0.007495407480746508, + -0.008046096190810204, + -0.0035551253240555525, + 0.011332151480019093, + 0.006464831065386534, + 0.014312229119241238, + 0.022371571511030197, + -0.0064917816780507565, + 0.005306066945195198, + -0.015333889052271843, + -0.014822438359260559, + 0.003652915358543396, + 0.01031703781336546, + 0.002142061712220311, + -0.0018903298769146204, + 0.007233604788780212, + 0.01422728318721056, + 0.000722105207387358, + -0.00451280502602458, + 0.008426347747445107, + 0.002909922506660223, + 0.012115898542106152, + -0.025023750960826874, + 0.02504945918917656, + 0.013455275446176529, + 0.007781912572681904, + -0.025287223979830742, + 0.008636298589408398, + 0.010783334262669086, + -0.00692767184227705, + -0.011520596221089363, + -0.014786233194172382, + 0.0028125885874032974, + -0.010103264823555946, + -0.01144642848521471, + -0.004869939759373665, + -0.00032850849675014615, + -0.011703455820679665, + 0.011764921247959137, + 0.0036182275507599115, + -0.009879589080810547, + -0.008546597324311733, + -0.0060750562697649, + 0.008805599063634872, + 0.012497116811573505, + 0.00814193394035101, + -0.007751170080155134, + 0.004728521220386028, + -0.011727302335202694, + -0.016903389245271683, + -0.04041808843612671, + -0.020844100043177605, + -0.004229831509292126, + -0.015620562247931957, + 0.002673586830496788, + 0.0014625738840550184, + 0.018850861117243767, + -0.01572924666106701, + -0.005456158425658941, + 0.0002180534356739372, + 0.011175552383065224, + -0.0017954633804038167, + 0.0011797267943620682, + 0.0037511074915528297, + -0.0036785088013857603, + 0.013641487807035446, + -0.02551262453198433, + -0.005419713910669088, + 0.030132612213492393, + 0.0035927961580455303, + 0.006008697208017111, + 0.023671722039580345, + 0.0009864295134320855, + 0.019916359335184097, + -0.007413760293275118, + 0.006668166257441044, + 0.003922914620488882, + 0.015385198406875134, + 0.0023896421771496534, + -0.011847023852169514, + -0.0011969328625127673, + 0.014095517806708813, + 0.009462925605475903, + -0.00852988287806511, + 0.013087812811136246, + 0.003141511231660843, + 0.012499451637268066, + -0.009861387312412262, + 0.013035960495471954, + -0.004262270871549845, + 0.0019636705983430147, + -0.0020510186441242695, + 0.009600243531167507, + -0.023650696501135826, + -0.011660855263471603, + -0.002089652232825756, + 0.015143221244215965, + -0.008023612201213837, + 0.0005468571907840669, + 0.00018411347991786897, + 0.013671193271875381, + -0.04228053614497185, + -0.005003452301025391, + 0.013245128095149994, + -0.01240143645554781, + -0.01796993985772133, + -0.0024960380978882313, + -0.0025242064148187637, + 0.007570021785795689, + 0.012645254842936993, + 0.018082089722156525, + 0.0030213319696485996, + 0.009020253084599972, + 0.015901822596788406, + 0.0022727015893906355, + -0.02462044544517994, + -0.019207622855901718, + -0.01706174947321415, + 0.016302919015288353, + 0.02126002497971058, + -0.006364655680954456, + -0.008749528788030148, + -0.018489357084035873, + -0.010088246315717697, + -0.038075827062129974, + 0.02305372804403305, + 0.013647805899381638, + -0.017542952671647072, + -0.019821150228381157, + -0.01686309650540352, + 0.013824127614498138, + -0.016011986881494522, + -0.0064116413705050945, + -0.0053872400894761086, + 0.0036191781982779503, + -0.004025301896035671, + -0.004912967327982187, + -0.011234896257519722, + -0.008151717483997345, + 0.008498409762978554, + -0.023722806945443153, + -0.0037895035929977894, + 0.006277775391936302, + 0.01122392900288105, + 0.0116739422082901, + -0.024600451812148094, + 0.005902086850255728, + -0.00252466625533998, + -0.011942103505134583, + 0.022127721458673477, + -0.004142693243920803, + -0.011187247931957245, + -0.0005726829986087978, + -0.01556725800037384, + -0.012129333801567554, + -0.008476021699607372, + -0.004561887122690678, + 0.002660365542396903, + -0.002739696064963937, + 0.022307859733700752, + -0.02258996106684208, + 0.0007336164708249271, + -0.009879931807518005, + -0.01461730245500803, + -0.008092565461993217, + 0.008001398295164108, + -0.041860371828079224, + 0.003298315918073058, + 0.0015435622772201896, + -0.004525315947830677, + -0.08326610922813416, + -0.005997479427605867, + -0.00640294561162591, + 0.012686878442764282, + 0.003202966647222638, + 0.001491470611654222, + -0.0124034583568573, + -0.005620908923447132, + -0.01208691205829382, + 0.0033609196543693542, + -0.010269628837704659, + -0.01738777570426464, + 0.015276794321835041, + 0.00076055817771703, + -0.01422799937427044, + 0.011466759257018566, + 0.06411111354827881, + 0.023815032094717026, + -0.0025631843600422144, + 0.002138423966243863, + 0.007977718487381935, + 0.01826532930135727, + -0.025748301297426224, + 0.0057630399242043495, + -0.0007329609943553805, + 0.01866052858531475, + 0.0037929110694676638, + -0.017389385029673576, + 0.004419404082000256, + 0.0007499521598219872, + 0.014523075893521309, + 0.017441585659980774, + -0.0010951447766274214, + -0.0017377155600115657, + 0.006677981931716204, + -0.00436694361269474, + -0.024045107886195183, + 0.004804712254554033, + -5.215893543208949e-05, + -0.023002849891781807, + 0.007743821479380131, + 0.0052244714461266994, + 0.0030666107777506113, + -0.00278893462382257, + -0.003108556615188718, + 0.011446146294474602, + 0.006821807473897934, + 0.005643088836222887, + -0.018617309629917145, + -0.03056948259472847, + -0.01292912196367979, + -0.006582311354577541, + -0.005691078025847673, + 0.007290570065379143, + -0.00637966301292181, + -0.018875746056437492, + 0.003212060546502471, + -0.013578572310507298, + -0.0013665056321769953, + 0.03172225505113602, + 0.0032436391338706017, + 0.0008659136947244406, + 0.0091633889824152, + -0.011609376408159733, + -0.0019816793501377106, + 0.010552264750003815, + -0.0007465278613381088, + 0.0019257308449596167, + -0.006904411129653454, + -0.004372540861368179, + 0.010959716513752937, + 0.01707308180630207, + -0.010341468267142773, + -0.00679160188883543, + 0.017547857016324997, + -0.00408185925334692, + 0.01291964016854763, + 0.020132511854171753, + 0.0008049267926253378, + 0.015639346092939377, + -0.011130637489259243, + -0.022328317165374756, + -0.004540476482361555, + -0.01373474020510912, + 0.004016474355012178, + -0.01348414272069931, + 0.0023130120243877172, + 0.0024140598252415657, + -0.004320644773542881, + -0.015425890684127808, + 0.0052142939530313015, + -0.006659423932433128, + -0.022106286138296127, + -0.014920076355338097, + 0.0015616943128407001, + 0.004179352894425392, + -0.010724584572017193, + 0.009623399935662746, + -0.0053616478107869625, + -0.006262047216296196, + 0.023925116285681725, + -0.022301025688648224, + -0.0018389241304248571, + -0.007099885027855635, + 0.005934278015047312, + -0.005527774803340435, + 0.01612982340157032, + 0.00582845276221633, + 0.042309585958719254, + -0.025852620601654053, + -0.0002094803494401276, + 0.015163101255893707, + -0.011581363156437874, + -0.0012054882245138288, + 0.004168163985013962, + -0.007354837376624346, + -0.012025697156786919, + 0.026292860507965088, + -0.0034244542475789785, + 0.011031689122319221, + -0.007040713913738728, + -0.0002928451867774129, + 0.014542220160365105, + 0.008828733116388321, + 0.011601967737078667, + -0.009604801423847675, + -0.015784718096256256, + -0.011675159446895123, + -0.002377961063757539, + -0.020263079553842545, + -0.0012171434937044978, + -0.007112596649676561, + -0.012326405383646488, + 0.02312932349741459, + -0.02278885245323181, + 0.024274712428450584, + -0.003578566014766693, + -0.009179936721920967, + 0.010716807097196579, + 0.01772601529955864, + 0.013172241859138012, + 0.0043964688666164875, + 0.003696432104334235, + -0.0033698545303195715, + 0.007437502965331078, + 0.0005003679543733597, + 0.006462163291871548, + 0.007950814440846443, + 0.014017850160598755, + -0.04867030680179596, + -0.0014786920510232449, + 0.0076740579679608345, + -0.019848458468914032, + -0.006811462342739105, + 0.014356039464473724, + 0.018587030470371246, + -0.025144800543785095, + 0.009426207281649113, + 0.04242600128054619, + -0.012687325477600098, + 0.007110930979251862, + 0.022340860217809677, + -0.003622744232416153, + 0.014222057536244392, + 0.004368904046714306, + -0.017002694308757782, + -0.010764374397695065, + 0.015302850864827633, + 0.008502851240336895, + -0.00041817553574219346, + -0.02552357316017151, + -0.008799539878964424, + -0.020065775141119957, + -0.01661437191069126, + -0.009257413446903229, + -0.0029093269258737564, + -0.008538245223462582, + -0.017120957374572754, + -0.01999053545296192, + -0.014961875975131989, + 0.004005889408290386, + -0.011130237951874733, + -0.01698629930615425, + 0.0019578267820179462, + 0.0054589854553341866, + 0.010099666193127632, + 0.006983171682804823, + -0.02089579962193966, + 0.0039876652881503105, + -0.011422286741435528, + -0.026876574382185936, + -0.004250872880220413, + 0.030325518921017647, + 0.00965104904025793, + -0.00638052960857749, + -0.01068937312811613, + -0.015160311944782734, + 0.019552413374185562, + 0.004504712298512459, + -0.021500175818800926, + 0.02193298004567623, + -0.0017872917233034968, + 0.01389093603938818, + 0.002406022511422634, + -0.007026598788797855, + 0.0015572773991152644, + -0.03059273399412632, + 0.010176700539886951, + 0.0046195522882044315, + 0.005212525837123394, + 0.000577975413762033, + 0.015583856962621212, + -0.004384039901196957, + 0.03751663118600845, + -0.002946452470496297, + -0.015495703555643559, + -0.0024227937683463097, + 0.001628612750209868, + 0.008382461033761501, + -0.01054299995303154, + -0.0166076198220253, + 0.018664659932255745, + -0.003807069268077612, + 0.021619772538542747, + 0.0022473635617643595, + -0.025239886716008186, + 0.006451546214520931, + -0.002719383453950286, + -0.012688918970525265, + -0.0004637144156731665, + -0.011177225038409233, + 0.011011495254933834, + 0.0074953921139240265, + 0.005437467247247696, + -0.015119669958949089, + 0.013164269737899303, + 0.0021363592240959406, + -0.01125129871070385, + -0.007163914851844311, + 0.015021107159554958, + 0.00960079487413168, + 0.0031175424810498953, + -0.003692795755341649, + -0.0032787839882075787, + 0.0030726452823728323, + 0.007622614968568087, + -0.01749565824866295, + 0.008971644565463066, + -0.0020074869971722364, + 0.01631072536110878, + -0.016070567071437836, + 0.031786974519491196, + -0.011950870975852013, + 0.014143585227429867, + -0.0014827264240011573, + -0.02400798536837101, + 0.01979740895330906, + -0.009935097768902779, + 0.007609930820763111, + 0.019426554441452026, + 0.009890520013868809, + -0.00466548465192318, + -0.009631353430449963, + 0.007422851864248514, + -0.021096039563417435, + 0.011257542297244072, + 0.014734857715666294, + -0.00330708222463727, + 0.021457862108945847, + -0.009055694565176964, + 0.008294284343719482, + 0.001723548281006515, + 0.008333586156368256, + 0.0038705270271748304, + 0.0001536128402221948, + 0.011160041205585003, + 0.014094112440943718, + 0.004586199764162302, + -0.0030486739706248045, + -0.005956899840384722, + 0.002427531871944666, + -0.010961346328258514, + -0.009154642932116985, + -0.006739212665706873, + -0.016174815595149994, + -0.010610044002532959, + -0.008491395972669125, + 0.010200615040957928, + 0.01590328849852085, + 0.0009772496996447444, + -0.0036224364303052425, + 0.011284088715910912, + 0.009176262654364109, + -0.012735108844935894, + -0.002681353595107794, + -0.005108838900923729, + 0.00015785888535901904, + -0.0160464309155941, + -0.009772347286343575, + 0.016711033880710602, + 0.013673766516149044, + 0.006643657106906176, + -0.004578234162181616, + -0.00785058829933405, + 0.005931435152888298, + 0.007691682316362858, + 0.004886467009782791, + 0.01954241283237934, + 0.026633791625499725, + -0.02130846120417118, + -0.00764978164806962, + 0.005142017267644405, + 0.05884639173746109, + -0.009140108712017536, + -0.007357448805123568, + -0.010744533501565456, + -0.016232196241617203, + 0.011840013787150383, + 0.01175831351429224, + 0.009927189908921719, + 0.024670347571372986, + -0.002099759178236127, + -0.0004327158385422081, + -0.0207610372453928, + 0.001625584322027862, + -0.014543312601745129, + -0.015552126802504063, + 0.018195196986198425, + 0.003481264691799879, + 0.01285259984433651, + -0.008045281283557415, + 0.013114534318447113, + 0.0153256356716156, + -0.006972803734242916, + -0.002696059411391616, + -0.00544044328853488, + 0.004180595278739929, + 0.024853287264704704, + 0.0074282195419073105, + 0.009600781835615635, + -0.03638963773846626, + -0.012447845190763474, + 0.0021467902697622776, + 0.02289784699678421, + -0.009499877691268921, + -0.009589576162397861, + 0.007513226941227913, + -0.0077130296267569065, + 0.008827784098684788, + 0.01888556033372879, + -0.020876070484519005, + 0.017343275249004364, + -0.0010369105730205774, + -0.02131030708551407, + 0.008363998495042324, + 0.003596169175580144, + 0.003264130325987935, + -0.012586967088282108, + 0.011818913742899895, + 0.015020164661109447, + 0.020025039091706276, + 0.003744133748114109, + -0.0120302215218544, + -0.010717496275901794, + 0.01829068921506405, + 0.042837485671043396, + 0.0005522585124708712, + -0.0034896989818662405, + -0.023393038660287857, + 0.011386900208890438, + -0.020767102017998695, + 0.016129612922668457, + -0.0008995545213110745, + 0.0009033819660544395, + -0.00032368910615332425, + -0.004357363563030958, + 0.01236678846180439, + 0.003618595888838172, + 0.002770778490230441, + -0.017221281304955482, + -0.005042870528995991, + 0.009855045937001705, + -0.00705082667991519, + 0.0044159539975225925, + 0.01136086042970419, + -0.0016364619368687272, + -0.003392459126189351, + -0.0043696071952581406, + -0.022200465202331543, + -0.0038120390381664038, + -0.026450544595718384, + 0.003973136190325022, + -0.00938839465379715, + 0.009524493478238583, + -0.017775794491171837, + -0.01259151566773653, + 0.004852794110774994, + -0.006300795823335648, + -0.023211941123008728, + -0.0034584817476570606, + 0.009782564826309681, + -0.021155262365937233, + -0.009823302738368511, + 0.015003016218543053, + 0.01166289858520031, + -0.04758395254611969, + -0.007148524280637503, + 0.017273465171456337, + 0.005600210279226303, + 0.0021460556890815496, + 0.003940168768167496, + -0.008173614740371704, + 0.006829089019447565, + -0.013645858503878117, + 0.015064353123307228, + 0.001328195328824222, + -0.03224962577223778, + 0.024700192734599113, + -0.010584271512925625, + -0.0013951127184554935, + 0.042326975613832474, + 0.0011107793543487787, + 0.002472091233357787, + -0.008982452563941479, + -0.00657872436568141, + -0.01919950544834137, + -0.015511531382799149, + -0.020146695896983147, + -0.0007548771100118756, + 0.004787052050232887, + -0.010195276699960232, + -0.010092789307236671, + 0.0012842015130445361, + -0.012658359482884407, + 0.016536574810743332, + 0.005846999119967222, + -0.0059070647694170475, + -0.023328188806772232, + -0.008361544460058212, + -0.015073411166667938, + 0.004252494312822819, + 0.012619223445653915, + -0.011944832280278206, + -0.001589441322721541, + -0.00048697329475544393, + 0.017121560871601105, + -0.005586259998381138, + -0.0011026053689420223, + -0.004534210078418255, + -0.04153941944241524, + 0.009357817471027374, + -0.02104562520980835, + -0.014306166209280491, + -0.016236966475844383, + -0.01985876075923443, + -0.010916377417743206, + -0.003817380638793111, + -0.004768130369484425, + 0.021353885531425476, + 0.005302154924720526, + 0.0064079780131578445, + 0.011553320102393627, + 0.019393399357795715, + -0.006074576172977686, + -0.013858942314982414, + -0.012077238410711288, + -0.013037879951298237, + 0.0037624703254550695, + 0.004317756276577711, + 0.0112604396417737, + 0.00353069300763309, + 0.004901949316263199, + -0.0025317117106169462, + -0.006433866452425718, + -0.000185763681656681, + 0.0022837168071419, + -0.017115594819188118, + 0.025366999208927155, + -0.005484415218234062, + -0.020268380641937256, + -0.0004878590989392251, + 0.0334741473197937, + -0.007208982482552528, + -0.0019214353524148464, + -0.0005982380243949592, + -0.02238576114177704, + -0.006242868956178427, + 0.016648629680275917, + 0.01852639950811863, + -0.0076218522153794765, + 0.01209548581391573, + -0.005496456753462553, + 0.01633157953619957, + -0.021218979731202126, + -0.028179042041301727, + 0.007566708140075207, + 0.014293571934103966, + 0.01322718895971775, + -0.007980020716786385, + 0.012588739395141602, + 0.005211925599724054, + 0.011708667501807213, + -0.01081069279462099, + -0.004926125053316355, + -0.009581525810062885, + -0.009887224063277245, + 0.00879070907831192, + 0.00674468046054244, + 0.020508814603090286, + 0.0006657424382865429, + 0.0017632934032008052, + -0.014571083709597588, + -0.016758332028985023, + 0.005462299566715956, + 0.013258369639515877, + -0.0026726846117526293, + -0.01755608804523945, + -0.0010559376096352935, + 0.006580946501344442, + -0.028203705325722694, + 0.008176385425031185, + 0.008569587022066116, + 0.0079962108284235, + -0.007322074845433235, + -0.008809679187834263, + -0.020906798541545868, + 0.004471468273550272, + 0.015889953821897507, + 0.0028909463435411453, + 0.005131102167069912, + 0.026867778971791267, + -0.013968215323984623, + -0.0035293709952384233, + 0.009589999914169312, + -0.009770330041646957, + -0.009257897734642029, + -0.007487836759537458, + 0.011635525152087212, + 0.0006587908719666302, + 0.005853581707924604, + -0.008027104660868645, + -0.00754398200660944, + -0.0067996373400092125, + -0.010036644525825977, + -0.007581123150885105, + -0.0011805944377556443, + -0.0002490821643732488, + 0.14057102799415588, + -0.021268924698233604, + 0.018489930778741837, + -0.002075066789984703, + 0.0009221078362315893, + 0.01371384784579277, + 0.01203892845660448, + -0.0004160187381785363, + 0.0026482667308300734, + 0.0013336060801520944, + 0.0287002045661211, + 0.003471214324235916, + -0.023515529930591583, + 0.017381926998496056, + 0.009646168909966946, + 0.0034414350520819426, + -0.0034496551379561424, + -0.015260928310453892, + -0.00014165282482281327, + 0.0017053326591849327, + 0.011790776625275612, + 0.021294599398970604, + 0.02030794695019722, + -0.0032993729691952467, + 0.011399269104003906, + 0.014819975011050701, + 0.01130552776157856, + 0.00377434934489429, + 0.009224272333085537, + 0.007396190892904997, + 0.014883631840348244, + -0.0005400291993282735, + -0.006815808825194836, + 0.0016206841683015227, + -0.008390484377741814, + 0.0011363305384293199, + 0.0012054835679009557, + 0.022834451869130135, + 0.005607855971902609, + 0.01496769580990076, + -0.007096908520907164, + 0.0025186454877257347, + -0.016569048166275024, + 0.01397126168012619, + 0.009068922139704227, + 0.010232198983430862, + -0.042677778750658035, + 0.0054405322298407555, + -0.015367679297924042, + 0.018519513309001923, + -0.010754701681435108, + 0.030577808618545532, + 0.019680669531226158, + 0.029443366453051567, + 0.010708285495638847, + 0.018278658390045166, + -0.019336668774485588, + 0.004022787790745497, + -0.03427482023835182, + -0.02104407176375389, + 0.008945425041019917, + -0.007588731590658426, + -0.0006628151750192046, + 0.001794278621673584, + -0.0010030948324128985, + -0.003355748485773802, + -0.0039231744594872, + -0.015733875334262848, + -0.0021446100436151028, + -0.01788729801774025, + 0.006987422239035368, + -0.0001313992397626862, + 0.011092351749539375, + -0.01868109218776226, + -0.006474028807133436, + 0.00016124597459565848, + 0.0018874543020501733, + -0.019196785986423492, + 0.008842701092362404, + 0.014585505239665508, + -0.0012695121113210917, + 0.004546437878161669, + 0.0005526822642423213, + -0.01897229067981243, + -0.012587076053023338, + 0.004898179322481155, + 0.00927205104380846, + -0.01031807903200388, + 0.0069840350188314915, + 0.0010326456977054477, + -0.0013025961816310883, + -0.007934934459626675, + -5.494036304298788e-05, + 4.791359242517501e-05, + 0.014805851504206657, + 0.013940445147454739, + 0.0076672532595694065, + 0.01674792356789112, + -0.02239604853093624, + 0.001574485911987722, + -0.0004701350990217179, + 0.002167825121432543, + -0.011106028221547604, + 0.0161292627453804, + -0.011692226864397526, + 0.004804661963135004, + -0.00845965463668108, + -0.011015962809324265, + 0.004684593062847853, + -0.00623726611956954, + -0.01814546249806881, + -0.0023158714175224304, + 0.010713559575378895, + -0.008144566789269447, + -0.009710977785289288, + 0.0002364714746363461, + 0.004789178725332022, + -0.00032135218498297036, + 0.003104717703536153, + -0.041760802268981934, + -0.006187213584780693, + -0.00922621414065361, + -0.008114428259432316, + 0.003912569023668766, + 0.006079387851059437, + -0.006576464511454105, + -0.010572439059615135, + 0.005395615939050913, + -0.009473868645727634, + 0.01589595526456833, + 0.006583565380424261, + 0.007703152019530535, + 0.016404226422309875, + 0.015039065852761269, + -0.004166495054960251, + 0.002499394817277789, + 0.00420662434771657, + -0.007552870083600283, + 0.01735042780637741, + 0.00468540471047163, + 0.018565338104963303, + 0.00618731789290905, + -0.007632964290678501, + -0.004279846791177988, + -0.019497014582157135, + -0.015504753217101097, + 0.026010828092694283, + 0.0039127361960709095, + 0.005677586421370506, + 0.01639927737414837, + -0.015376808121800423, + 0.0017050327733159065, + -0.0053613679483532906, + 0.0076181660406291485, + 0.0008398962672799826, + -0.011798826046288013, + -0.009350240230560303, + -0.013500889763236046, + 0.008363592438399792, + -0.01313700433820486, + -0.02367030270397663, + -0.005837863311171532, + -0.00548667972907424, + 0.03808816149830818, + 0.004272427875548601, + 0.0034568326082080603, + -0.0067503200843930244, + 0.004649404902011156, + -0.022705405950546265, + 0.0005895863869227469, + 0.0013563222019001842, + 0.0044106910936534405, + 0.005687635857611895, + -0.009959278628230095, + 0.009851444512605667, + 0.01343546062707901, + -0.006363823544234037, + -0.0014569276245310903, + -0.0010784639744088054, + 0.0029855079483240843, + -0.00432241428643465, + -0.0064012412913143635, + 0.017976203933358192, + 0.011603373102843761, + -0.0007271610083989799, + -0.005949234124273062, + 0.0008531614439561963, + 0.0037384917959570885, + -0.005230238661170006, + 3.3763157262001187e-05, + -0.00742944423109293, + 0.008286925964057446, + 0.0125734843313694, + 0.002445212099701166, + -0.002981542143970728, + 0.016532884910702705, + 0.014682642184197903, + 0.006048597861081362, + -0.009933413937687874, + -0.013643532060086727, + -0.007151085417717695, + 0.006443391088396311, + -5.0857022870332e-05, + -0.010961106978356838, + 0.001671459642238915, + 0.003082161070778966, + 0.01301091630011797, + -0.0022772643715143204, + 0.0004548195283859968, + -0.03588361665606499, + -0.011635106056928635, + 0.0007736276020295918, + -0.01448756456375122, + 0.00587841821834445, + -0.007688991259783506, + -0.003457532497122884, + -0.017918996512889862, + -0.014190307818353176, + -0.009547281078994274, + -0.021359669044613838, + 0.09467243403196335, + -0.014164102263748646, + -0.0061029368080198765, + 0.009393955580890179, + 0.01425490528345108, + 0.0125501723960042, + 0.008598284795880318, + -0.008909792639315128, + 0.0020684495102614164, + -0.006166818551719189, + 0.007800556719303131, + -0.018207378685474396, + -0.004343695938587189, + -0.003829688997939229, + 0.02641536481678486, + -0.008614725433290005, + 0.015346519649028778, + -0.006213800981640816, + 0.002844829112291336, + -0.0011182059533894062, + -0.00450896006077528, + 0.007930940017104149, + -0.019461138173937798, + 0.004991506692022085, + -0.005410817917436361, + 0.0015952414833009243, + -0.0018556645372882485, + 0.00932922214269638, + 0.0020479599479585886, + 0.012152120471000671, + 0.01193353720009327, + -0.017158178612589836, + -0.003931439481675625, + 0.003050087718293071, + -0.009831048548221588, + -1.825856998038944e-05, + -0.0056607709266245365, + -0.023258421570062637, + -0.0071047889068722725, + -0.017086243256926537, + 0.0015849106712266803, + -0.004882158245891333, + -0.009082876145839691, + 0.013465779833495617, + -0.015911102294921875, + -0.0007573269540444016, + -0.016246050596237183, + 0.0007061043870635331, + 0.018569249659776688, + -0.006064688321202993, + -0.006003286689519882, + 0.02868998609483242, + 0.007141297683119774, + -0.0011510768672451377, + -0.018260682001709938, + -0.002547844313085079, + 0.0009086792124435306, + 0.00619802251458168, + 0.001927242148667574, + 0.015647126361727715, + -0.016212938353419304, + 0.00958399660885334, + 0.0333319753408432, + -0.0015528554795309901, + 0.02089713327586651, + -0.012118884362280369, + 0.011829719878733158, + 0.0036953918170183897, + -0.0036227689124643803, + -0.005404671188443899, + 0.013148772530257702, + -0.005125585477799177, + 0.010104634799063206, + -0.02969059906899929, + 0.021467464044690132, + -0.004431968089193106, + 3.0364246867975453e-06, + -0.012929284945130348, + -0.02501087822020054, + -0.006473209708929062, + 0.00924733467400074, + 0.010213963687419891, + -0.010489918291568756, + -0.0025788394268602133, + 0.007240381557494402, + 0.0037778113037347794, + -0.005552705377340317, + -0.0009971006074920297, + 0.000513426202815026, + 0.015265229158103466, + 0.012238113209605217, + 0.001074975123628974, + 0.008235855959355831, + -0.0069124032743275166, + 0.028163252398371696, + 0.01653376780450344, + -0.006361357402056456, + 0.007173691876232624, + -0.0013631760375574231, + -0.023546885699033737, + -0.004312543664127588, + -0.005438004154711962, + 0.01507131289690733, + 0.012476365081965923, + -0.015368848107755184, + -0.013594105839729309, + -0.0034419347066432238, + 0.004736087750643492, + -0.006106049288064241, + -0.0008354779565706849, + -0.018099308013916016, + -0.031884677708148956, + 0.02209775149822235, + 0.019609499722719193, + 0.013088337145745754, + -0.012137963436543941, + -0.004658726509660482, + -0.00871828943490982, + -0.010411891154944897, + -0.01273867953568697, + -0.00041469710413366556, + -0.013569816946983337, + -0.0027428993489593267, + 0.007681347895413637, + -0.004650703631341457, + -0.008101929910480976, + -0.006253823637962341, + 0.02780967205762863, + 0.004692975431680679, + -0.02830558829009533, + -0.008869925513863564, + 0.01548872608691454, + -0.00010155836935155094, + 0.005155745428055525, + 0.0036416396033018827, + 0.003161274828016758, + -0.009278552606701851, + -0.0046390811912715435, + 0.017532212659716606, + -0.009128306061029434, + -0.010981153696775436, + 0.012461123988032341, + -0.009649048559367657, + 0.007233189884573221, + 0.05662214010953903, + -0.01031938474625349, + -0.002418842166662216, + 0.015479503199458122, + 0.004615491256117821, + 0.02290443889796734, + 0.0011483790585771203, + -0.029159333556890488, + 0.013375847600400448, + 0.003756710095331073, + 0.004223144147545099, + -0.004625226836651564, + -0.007784951478242874, + 0.009415608830749989, + 0.01769721508026123, + -0.00466978969052434, + 0.0008239275775849819, + 0.0065825143828988075, + 0.015944812446832657, + 0.007807816844433546, + 0.0007451041019521654, + 0.007691157050430775, + -0.022555913776159286, + -0.03712082281708717, + 0.013288027606904507, + -0.006054789759218693, + -0.00528762536123395, + -0.026238730177283287, + 6.790902989450842e-05, + 0.005738419014960527, + 0.011978182941675186, + -0.03993654623627663, + -0.006646513938903809, + 0.03288153186440468, + -0.004087386652827263, + -0.021285170689225197, + -0.0030010328628122807, + -0.00018268988060299307, + 0.017454857006669044, + 0.003263610415160656, + -0.008967571891844273, + 0.0060051605105400085, + -0.03179390728473663, + 0.004274987615644932, + 0.00965818576514721, + -0.0060452488251030445, + 0.010093500837683678, + 0.012320045381784439, + -0.001953295897692442, + -0.012335507199168205, + 0.010820155031979084, + -0.030627340078353882, + 0.008389292284846306, + 0.03096228651702404, + -0.014639364555478096, + 0.0006892121746204793, + 0.013833221979439259, + 0.00294557330198586, + 0.0051676370203495026, + 0.0036922229919582605, + 0.0017449336592108011, + -5.933564534643665e-05, + 0.017761005088686943, + 0.01051334198564291, + 0.011981702409684658, + 0.0006010161014273763, + 0.01631981134414673, + -0.01740328036248684, + -0.009915831498801708, + -0.0032259777653962374, + 0.028932109475135803, + 0.027946794405579567, + -0.00748238293454051, + -0.029653282836079597, + 0.11296054720878601, + 0.06597153842449188, + -0.013279269449412823, + -0.00021723237296100706, + -0.011285395361483097, + 0.001317266491241753, + 0.0013818563893437386, + 0.03836236894130707, + 0.025981929153203964, + 0.007266093045473099, + -0.0006028590723872185, + 0.003748039249330759, + 0.009855510666966438, + -0.007570119109004736, + -0.010256350040435791, + 0.008984819054603577, + -0.009000945836305618, + -0.03485498204827309, + -0.014621890150010586, + 0.0081847058609128, + 0.017224401235580444, + 0.004322255030274391, + 0.04422296583652496, + -0.007451098412275314, + -0.005475963465869427, + 0.010347473435103893, + -0.000424822821514681, + -0.00350864022038877, + 0.013084844686090946, + -0.0012742968974635005, + 0.00033496468677185476, + 0.017699802294373512, + -0.006926453206688166, + -0.012634031474590302, + -0.004777983296662569, + 0.003715905826538801, + 0.008259003050625324, + 0.0021557961590588093, + -0.006301127839833498, + -0.00782314594835043, + 0.034423310309648514, + -0.0019891236443072557, + -0.018684381619095802, + -0.01124667003750801, + -0.02184097282588482, + -0.010641698725521564, + -0.0019077749457210302, + -0.01020736899226904, + -0.024363499134778976, + -0.02488025836646557, + -0.03337615355849266, + -0.004128195811063051, + -0.003968664910644293, + -0.008284302428364754, + 0.002636533696204424, + -0.011952401138842106, + -0.0016727851470932364, + 0.03561811149120331, + -0.013210807926952839, + 6.379364640451968e-05, + -0.014107145369052887, + 0.014480870217084885, + -0.007681956514716148, + 0.015722177922725677, + -0.022424697875976562, + 0.009817034006118774, + -0.005965253338217735, + -0.08736371248960495, + -0.0005759666091762483, + -0.0037268847227096558, + 0.0018850108608603477, + -0.01253965962678194, + 0.00036746860132552683, + 0.02434581331908703, + -0.0009106378420256078, + -0.06461210548877716, + 0.02372095175087452, + 0.022232063114643097, + -0.02249974012374878, + 0.007172406651079655, + -0.00813701469451189, + 0.005806649103760719, + -0.023788707330822945, + -0.01327965036034584, + 0.009312235750257969, + 0.004774496890604496, + -0.005424457136541605, + -0.0077536702156066895, + 0.008423123508691788, + -0.012658725492656231, + 0.007202277425676584, + 0.0001157190345111303, + 1.4346650459629018e-05, + -0.0017955576768144965, + -0.0027977563440799713, + -0.0001669559715082869, + 0.0041121141985058784, + -0.014773089438676834, + -0.0003087518271058798, + -0.0017382004298269749, + 0.002214913722127676, + -0.005079916212707758, + -0.003408516524359584, + 0.009654974564909935, + -0.002153410343453288, + 0.013837074860930443, + -0.006097047124058008, + -0.0013347979402169585, + -0.003072520950809121, + -0.004417042247951031, + -0.017444336786866188, + -0.0022729167249053717, + -0.010072775185108185, + -0.001674771890975535, + 0.011352453380823135, + -0.0839397981762886, + 0.015278255566954613, + 0.017964275553822517, + -0.014627070166170597, + 0.01270650327205658, + 0.004380012862384319, + 0.014654223807156086, + -0.047902509570121765, + 0.005248336121439934, + -0.008027639240026474, + -0.007699282839894295, + -0.012547912076115608, + -0.003013519337400794, + -0.002378682838752866, + -0.0035953994374722242, + 0.005653104279190302, + 0.0023482327815145254, + -0.007315726485103369, + -0.010053448379039764, + 0.006647786591202021, + 0.01599418744444847, + 0.013911625370383263, + 0.021902430802583694, + -0.01533516775816679, + -0.02264135330915451, + 0.0018817813834175467, + 0.007783758919686079, + -4.1037787013920024e-05, + 0.006557789631187916, + 0.005322079174220562, + -0.030601512640714645, + 0.01186865009367466, + 0.017067842185497284, + 0.0009442171431146562, + 0.008995826356112957, + -0.0018752573523670435, + 0.000237223255680874, + -0.00435040146112442, + 0.011455286294221878, + 0.00564194330945611, + 0.0015859330305829644, + -0.0014924040297046304, + 0.003790557850152254, + 0.004362757783383131, + 0.0050702826119959354, + 0.0008037361549213529, + -0.0029828124679625034, + -0.010019245557487011, + 0.0065194531343877316, + -0.015647834166884422, + 0.0015660665230825543, + 0.0019223655108362436, + -0.003924638032913208, + -0.0011776895262300968, + 0.010836232453584671, + -0.0030371968168765306, + -0.007842544466257095, + -0.0029085588175803423, + -0.003697675187140703, + -0.00395034858956933, + 0.015850570052862167, + -0.019292566925287247, + 0.0023701644968241453, + 0.012679013423621655, + -0.0039662993513047695, + 0.017295807600021362, + -0.01591471955180168, + 0.0056430883705616, + -0.00785172451287508, + 0.00780548295006156, + -0.015134263783693314, + -0.01217635627835989, + 0.011955111287534237, + -0.005935291294008493, + -0.034185364842414856, + -0.0021655550226569176, + 0.004184558056294918, + -0.013316559605300426, + -0.018786052241921425, + 0.013993442058563232, + -0.005146142560988665, + 0.003323438810184598, + 0.017252454534173012, + -0.005971623118966818, + 0.0032782244961708784, + -0.02273576892912388, + -0.006020118482410908, + 0.0029718929436057806, + -0.023562245070934296, + -0.010552503168582916, + 0.0027023309376090765, + -0.022283388301730156, + 0.0075116208754479885, + 0.0007745606708340347, + -0.011770560406148434, + -0.027685189619660378, + 0.00373923615552485, + 0.009806714951992035, + -0.020358840003609657, + 0.013668653555214405, + -0.004783972632139921, + -0.0016406613867729902, + -0.017609048634767532, + -0.015264201909303665, + 0.018195100128650665, + 0.0030379213858395815, + 0.015565085224807262, + -0.01970093697309494, + -0.0049065821804106236, + 0.008128463290631771, + -0.0010371033567935228, + -0.0091151287779212, + -0.020038042217493057, + 0.0032886802218854427, + -0.01430064532905817, + -0.009817740879952908, + 0.018072236329317093, + -0.00028840324375778437, + 0.0011026121210306883, + 0.007567833177745342, + -0.015911685302853584, + -0.037046339362859726, + -0.006263663060963154, + -0.024994105100631714, + -0.0012163355713710189, + -0.006126823369413614, + 0.017346903681755066, + 0.0015493349637836218, + 0.023209024220705032, + 0.0027670981362462044, + 0.0024825960863381624, + -0.0015865389723330736, + 0.003742723958566785, + -0.003148476593196392, + 0.010471666231751442, + -0.07582087069749832, + 0.007920755073428154, + -0.006292757578194141, + 0.01027586031705141, + 0.008747145533561707, + -0.005667099729180336, + 0.023518433794379234, + 0.0249176062643528, + 0.012176865711808205, + 0.0009325328865088522, + 0.013892941176891327, + 0.004065526183694601, + -0.020937692373991013, + -0.000530351884663105, + -0.0072867427952587605, + 0.006351282354444265, + 0.003054508240893483, + 0.009288487024605274, + 0.000927816960029304, + -0.0016592321917414665, + -0.07175125181674957, + -0.014043503440916538, + 0.017309989780187607, + 0.007465341128408909, + 0.013584139756858349, + -0.006841292604804039, + 0.015285730361938477, + 0.008392306976020336, + 0.003923128824681044, + -0.006199451629072428, + -0.008436319418251514, + -0.021706148982048035, + 0.011430631391704082, + -0.00036552248639054596, + -0.0025727886240929365, + -0.0030268875416368246, + -0.011806025169789791, + 0.005082597490400076, + 0.01560874842107296, + 0.002447528298944235, + -0.01528790220618248, + -0.0005328152910806239, + -0.013733945786952972, + 0.005054495297372341, + -7.167468720581383e-05, + 0.004652048926800489, + -0.030032191425561905, + 0.03026808798313141, + 0.00860313419252634, + -0.007230470422655344, + -0.013251829892396927, + 0.04674718528985977, + 0.0025522983632981777, + -0.014707833528518677, + -0.008740602992475033, + 0.0007461270433850586, + -0.006629840470850468, + -0.010853433981537819, + 0.028844784945249557, + 0.01464738231152296, + 0.016110606491565704, + -0.0011478521628305316, + -0.003994395956397057, + 0.007526590023189783, + -0.004838960245251656, + -0.002987547544762492, + -0.022808045148849487, + -0.01431722566485405, + 0.015206941403448582, + -0.01463494822382927, + -0.005097229965031147, + -0.014138403348624706, + 0.0008777445182204247, + -0.006581251975148916, + 0.009854873642325401, + 0.010041268542408943, + -0.008232918567955494, + 0.005306989885866642, + -0.023291777819395065, + 0.007621108554303646, + -0.00023556452651973814, + 0.017294075340032578, + 0.009445066563785076, + -0.007761129178106785, + -0.012727835215628147, + -0.005275505594909191, + -0.00849056150764227, + 0.05509869009256363, + -0.016522670164704323, + -0.031169213354587555, + 0.019012408331036568, + -0.021287085488438606, + -0.09889127314090729, + -0.0030681672506034374, + 0.00401464244350791, + -0.008803355507552624, + 0.011193392798304558, + -0.004799612797796726, + 0.021397367119789124, + -0.008571234531700611, + -0.002459695329889655, + 0.015087908133864403, + 0.014470688067376614, + -0.004321610555052757, + 0.004830710589885712, + -0.06615426391363144, + 0.007539524231106043, + -0.015400084666907787, + 0.002772616222500801, + -0.015582974068820477, + 0.001342122326605022, + 0.03318040445446968, + 0.009494422934949398, + -0.011144006624817848, + 0.011324120685458183, + -0.009940775111317635, + 0.006393588613718748, + 0.02436373010277748, + 0.010005736723542213, + -0.007475290447473526, + 0.011242734268307686, + -0.004044106230139732, + -0.011375689879059792, + -0.005245792213827372, + -0.007800434250384569, + 0.011049679480493069, + 0.008962645195424557, + -0.008325189352035522, + -0.018027786165475845, + -0.0019007910741493106, + 0.006800564471632242, + 0.014843001961708069, + 0.011037078686058521, + 0.008400384336709976, + 0.02702912874519825, + 0.009244726970791817, + -0.007054910529404879, + -0.0022565319668501616, + -0.00815126858651638, + 0.017409877851605415, + -0.015277654863893986, + -0.003826912259683013, + -0.014433518052101135, + 0.005571331363171339, + -0.060199882835149765, + -0.001650676829740405, + -0.00767201092094183, + -0.007489990442991257, + -0.002454788191244006, + 0.008989171124994755, + 0.003326953621581197, + 0.0017034743214026093, + -0.0024776640348136425, + -0.01797644793987274, + 0.02690020762383938, + -0.012680410407483578, + -0.03433927893638611, + 0.03222975134849548, + 0.0005105601740069687, + 0.011664343997836113, + 0.0167100690305233, + 0.013754953630268574, + 0.005301309283822775, + -0.01739816926419735, + -0.022311680018901825, + 0.0023300640750676394, + -0.004610752686858177, + 0.010562303476035595, + -0.013944274745881557, + 0.009307574480772018, + -0.012598441913723946, + -0.00222252169623971, + -0.012361517176032066, + 0.0034651008900254965, + -0.014601849019527435, + -0.009994030930101871, + 0.011125987395644188, + 0.011172674596309662, + -9.243732347385958e-05, + -0.0025080025661736727, + 0.005823192652314901, + -0.0034160397481173277, + 0.004135965835303068, + 0.013940521515905857, + -0.005161692854017019, + 0.016076790168881416, + 0.004835052881389856, + -0.0043925088830292225, + -0.0013349552173167467, + 0.007365047931671143, + 0.004876785445958376, + -0.0023836102336645126, + -0.013124856166541576, + -0.00840787310153246, + -0.0010142482351511717, + 0.007467205170542002, + -0.0021418870892375708, + -0.006258596666157246, + -0.015933522954583168, + 0.00537258293479681, + -0.022170064970850945, + -0.00425725756213069, + -0.006641917861998081, + 0.013278723694384098, + -0.017826510593295097, + 0.00268953712657094, + 0.025842435657978058, + -0.0020453413017094135, + -0.015468273311853409, + 0.021187160164117813, + -0.001219118945300579, + 0.00880992878228426, + -0.00028536448371596634, + -0.013986608944833279, + -0.004367989022284746, + 0.015527080744504929, + 0.02160567045211792, + -0.01293370220810175, + 0.0023414783645421267, + -0.014825059100985527, + 0.007055377122014761, + -0.021947285160422325, + 0.009195254184305668, + -0.010283779352903366, + 0.032434068620204926, + -0.007102157920598984, + 0.007720997557044029, + 0.008876398205757141, + -0.011203881353139877, + 0.03565378859639168, + -0.0006796109373681247, + -0.023840706795454025, + 0.009594903327524662, + -0.008722519502043724, + -0.004672574810683727, + 0.023254217579960823, + -0.0036235912702977657, + -0.0030275173485279083, + 0.003441817359998822, + 0.011934875510632992, + 0.010090316645801067, + -0.019350621849298477, + 0.01933194510638714, + -0.023976871743798256, + -0.015515279024839401, + 0.003593758912757039, + 0.0077319396659731865, + 0.027445917949080467, + 0.009767936542630196, + 0.0011632326059043407, + 0.005147439427673817, + -0.016136497259140015, + -0.009255201555788517, + -0.005261131562292576, + -0.03312793746590614, + 0.0017335093580186367, + -0.007145393174141645, + -0.0063751921989023685, + -0.005252250004559755, + 0.0035915339831262827, + 0.001433518249541521, + -0.00736592710018158, + 0.007334668189287186, + 0.005865884479135275, + 0.003471437143161893, + 0.0030609644018113613, + -0.01385765615850687, + 0.0033600879833102226, + -0.01392501313239336, + 0.0026520423125475645, + 0.0037434666883200407, + -0.007178408093750477, + 0.013317806646227837, + 0.015451754443347454, + -0.009345149621367455, + 0.009191738441586494, + 0.017688412219285965, + 0.03175656870007515, + -0.0007021242054179311, + -0.001000583404675126, + 0.020353037863969803, + 0.007259555160999298, + -0.0073710535652935505, + 0.006811955012381077, + 0.010610518977046013, + 0.02191074565052986, + 0.009378718212246895, + -0.014325941912829876, + 0.002286621369421482, + 0.01061480026692152, + 0.015110967680811882, + 0.02475195936858654, + -0.006886693183332682, + 0.002466811565682292, + 0.008817330002784729, + 0.00042751405271701515, + 0.013413669541478157, + -0.00980889331549406, + 0.005603346507996321, + -0.00494778249412775, + -0.01353476196527481, + -0.0012061501620337367, + 0.013627327978610992, + 0.005913926288485527, + -0.013580840080976486, + 0.005613065790385008, + -0.0123573774471879, + -0.009632936678826809, + -0.011380728334188461, + 0.009081528522074223, + -0.008936705999076366, + -0.0006382444989867508, + 0.0022286646999418736, + -0.021541358903050423, + -0.014714077115058899, + -0.01866542547941208, + 0.021718261763453484, + 0.018465561792254448, + -0.009409669786691666, + 0.004963141866028309, + 0.006611235439777374, + -0.008496647700667381, + -0.011720340698957443, + -0.0020392583683133125, + 4.4384534703567624e-05, + -0.0072275674901902676, + 0.00726238964125514, + -0.004955741576850414, + -0.019189711660146713, + -0.005699578672647476, + 0.01025338377803564, + 0.02196628414094448, + 0.006069930735975504, + 0.022584663704037666, + 0.004435579292476177, + 0.016020242124795914, + 0.013072729110717773, + 0.020857496187090874, + -0.006440854165703058, + -0.00994780007749796, + 0.00340710929594934, + 0.02892250381410122, + -0.02110655978322029, + 0.022122781723737717, + -0.003443946596235037, + -0.005526831839233637, + -0.011716466397047043, + -0.0068419743329286575, + -0.002226565033197403, + 0.009438135661184788, + 0.005688689649105072, + 0.016598569229245186, + 0.007492827717214823, + -0.005953765008598566, + -0.004832290578633547, + -0.010426216758787632, + 0.009042375721037388, + -0.006956346333026886, + 0.036191027611494064, + 0.012027940712869167, + 0.004292265046387911, + -0.0017522830748930573, + -0.0026141521520912647, + 0.01594221405684948, + 0.00601764814928174, + 0.0015662434743717313, + 0.015864385291934013, + -0.03380119055509567, + -0.0051633259281516075, + 0.002318910788744688, + 0.01538436021655798, + -0.01860518380999565, + -0.0030099849682301283, + 0.02103285677731037, + 0.012530914507806301, + 0.001498962054029107, + 0.016213754191994667, + -0.006768444087356329, + -0.002470898674800992, + 0.007027145475149155, + 0.01848089136183262, + -0.008801898919045925, + 0.006168663967400789, + -0.00400699395686388, + 0.0029619981069117785, + 0.0094379261136055, + -0.0014659109292551875, + -0.003638436086475849, + -0.015669258311390877, + -0.02234981767833233, + 0.01821206696331501, + 0.010390100069344044, + -0.011890805326402187, + -0.0008391443989239633, + -0.005237647797912359, + -0.005652783438563347, + 0.010486054234206676, + -0.0001415701408404857, + 0.017598982900381088, + -0.02747674472630024, + 0.015051263384521008, + 0.005661889910697937, + -0.002765502780675888, + -0.01376512460410595, + -0.015430174767971039, + 0.013045121915638447, + 0.005954169202595949, + 0.04058608040213585, + -0.002947993343695998, + -0.0021633768919855356, + -0.018275024369359016, + 0.026606285944581032, + 0.005959810223430395, + 0.014009370468556881, + -0.00983717292547226, + 0.027107462286949158, + 0.006494787055999041, + -0.0031127259135246277, + -0.019596276804804802, + -0.00913635641336441, + -0.005966909229755402, + 0.003743375651538372, + 0.02275988645851612, + 0.0033590379171073437, + -0.014752287417650223, + 0.011218327097594738, + -0.012249029241502285, + -0.007947971113026142, + 0.00940651074051857, + -0.0418572835624218, + 0.000682118465192616, + 0.007804373744875193, + -0.007264988962560892, + 0.0017070492031052709, + 0.023579200729727745, + 0.004326269030570984, + 0.016617221757769585, + -0.016395149752497673, + 0.003267169464379549, + -0.007953261025249958, + 0.0026215403340756893, + 0.005918183363974094, + 0.004143437370657921, + -0.002017531543970108, + 0.0085525531321764, + -0.002231959253549576, + 0.008632605895400047, + 0.01291270088404417, + 0.004454904235899448, + -0.004858281929045916, + -0.016801612451672554, + 0.01263068150728941, + 0.025606218725442886, + -0.004128450062125921, + -0.01012188009917736, + -0.021676959469914436, + -0.0012704608961939812, + -0.01602373644709587, + -0.00010979617945849895, + -0.012659142725169659, + -0.057370465248823166, + -0.0027746320702135563, + -0.006181690841913223, + 0.034137625247240067, + 0.006488368846476078, + 0.026847634464502335, + 0.011941520497202873, + -0.020172882825136185, + -0.004325444344431162, + 0.004460735246539116, + -0.012757694348692894, + -0.008661954663693905, + 0.005743920803070068, + 0.009277870878577232, + -0.042510200291872025, + 0.008593393489718437, + 0.009482036344707012, + 0.02224196493625641, + 0.012882229872047901, + -0.008169535547494888, + 0.0070870318450033665, + -0.030341193079948425, + -0.005943066440522671, + -0.0070550767704844475, + -0.047698985785245895, + -0.018331294879317284, + 0.018762880936264992, + 0.00578256556764245, + 0.001215088414028287, + -0.007023688871413469, + 0.00537188071757555, + -0.004484743345528841, + 0.012997187674045563, + 0.016975073143839836, + -0.013419225811958313, + -0.014444799162447453, + 0.0008402072126045823, + 0.008576358668506145, + 0.016472872346639633, + -0.0026601229328662157, + -0.009473604150116444, + -0.006667282432317734, + 0.013642949052155018, + -0.013612761162221432, + 0.0073946500197052956, + -0.005648051854223013, + 0.029379406943917274, + -0.003629711689427495, + 0.00019676255760714412, + 0.06103717163205147, + -0.013447936624288559, + 0.012417473830282688, + -0.013492906466126442, + 0.0001688187912805006, + -0.012587376870214939, + -0.02515636384487152, + -0.014400818385183811, + 0.00465577794238925, + 0.0021616003941744566, + -0.006962630897760391, + -0.009517797268927097, + 0.004231804516166449, + 0.0018256063340231776, + -0.008386763744056225, + -0.00733801256865263, + -0.014984851703047752, + 0.010497760958969593, + -0.0032362164929509163, + -0.014381269924342632, + 0.0023374154698103666, + 0.006221279501914978, + -0.00668158195912838, + 0.003996104933321476, + 0.004049856215715408, + 0.002323502441868186, + -0.014727539382874966, + -0.010023911483585835, + 0.003897629212588072, + -0.01618410274386406, + -0.0030370124150067568, + 0.0026938230730593204, + 0.025392848998308182, + 0.013733357191085815, + 0.008794799447059631, + -0.011659364216029644, + -0.024410301819443703, + -0.004648794420063496, + 0.023514585569500923, + 0.010615740902721882, + 0.0010017483728006482, + 0.003150800708681345, + -0.0028144142124801874, + -0.00034449028316885233, + -0.05286094546318054, + 0.029195403680205345, + -0.02353721112012863, + 0.005523345898836851, + 0.016222763806581497, + -0.0018258335767313838, + -0.00041354569839313626, + 0.011369049549102783, + 6.124223727965727e-05, + -0.0018256560433655977, + -0.003550410270690918, + -0.021463792771100998, + 0.017596082761883736, + 0.0015800826949998736, + -0.0032286630012094975, + 0.004355774726718664, + 0.02643752470612526, + 0.020099420100450516, + -0.0096480967476964, + 0.019422201439738274, + -0.008244547061622143, + 0.008811095729470253, + 0.010886618867516518, + -0.004821114242076874, + -0.0191529281437397, + 0.00206917361356318, + -0.017078431323170662, + 0.003209969960153103, + 0.02225080318748951, + 0.01945418305695057, + -0.006589117925614119, + 0.018211008980870247, + 0.011846492066979408, + 0.007676257751882076, + -0.009069490246474743, + 0.010679028928279877, + 0.006711290683597326, + -0.016674475744366646, + 0.0054732454009354115, + -0.003661247668787837, + -0.022388286888599396, + 0.0015556402504444122, + 0.016330396756529808, + 0.008380863815546036, + -0.005572701338678598, + 0.009416060522198677, + 0.0005205593770369887, + 0.0017529316246509552, + 0.007220810744911432, + -0.001947574783116579, + 0.018023332580924034, + -0.008553183637559414, + 0.01079421117901802, + -0.018911102786660194, + -0.002149144886061549, + 0.016196992248296738, + 0.012756702490150928, + -0.010371657088398933, + -0.0060809217393398285, + -0.017338862642645836, + -0.011768546886742115, + 0.004950215108692646, + 0.00677022198215127, + 0.0011987901525571942, + -0.005550872068852186, + -0.006895329803228378, + 0.0023806339595466852, + -0.031905971467494965, + 0.014035463333129883, + -0.004884268157184124, + 0.014883067458868027, + -0.007397808600217104, + -0.006826617289334536, + -0.022370172664523125, + 0.012215123511850834, + 0.0055653685703873634, + -0.004313192795962095, + -0.0022257764358073473, + -0.002092589857056737, + -0.002566867507994175, + 0.004243845585733652, + -0.013065396808087826, + -0.011337869800627232, + -0.049682244658470154, + -0.014185418374836445, + 0.0006574998260475695, + -0.0006054368568584323, + -0.008894788101315498, + 0.02327575720846653, + -0.007667556405067444, + 0.0037023075856268406, + -0.0005734560545533895, + -0.010155580006539822, + -0.0072957370430231094, + -0.018272917717695236, + -0.0032061291858553886, + 0.011443719267845154, + 0.009044594131410122, + -0.0047581191174685955, + 0.0018350905738770962, + 0.05181710422039032, + 0.004841506946831942, + 0.018239116296172142, + 0.010256418958306313, + -0.010402017273008823, + 0.01049126498401165, + -0.004428331274539232, + 0.009477289393544197, + -0.016369972378015518, + 0.05124153196811676, + -0.008761854842305183, + 0.009123360738158226, + -0.021067002788186073, + 0.0032449851278215647, + 0.04379476234316826, + -0.0028552585281431675, + -0.0016030052211135626, + 0.0004954248433932662, + 0.010113353841006756, + 0.0035114821512252092, + 0.009067571721971035, + 0.007643868215382099, + 0.003896155161783099, + 0.0016463372157886624, + 0.0014819741481915116, + 0.0077359662391245365, + 0.0025626656133681536, + 0.015369419939815998, + -0.00021151878172531724, + 0.005267789121717215, + 0.03133885934948921, + -0.006601687986403704, + -0.004967992659658194, + 0.0015500420704483986, + -0.003962468821555376, + -0.004140786360949278, + 0.005573672708123922, + 0.007392185740172863, + 0.00010971468145726249, + 0.0020784391090273857, + 0.038157351315021515, + 0.0024974748957902193, + -0.00458415737375617, + 0.014602909795939922, + -0.006994189694523811, + 0.011167817749083042, + 0.0034498011227697134, + 0.008995594456791878, + -0.005037621594965458, + -0.0004432638525031507, + 0.0036337419878691435, + 0.002931559458374977, + 0.0020794200245290995, + 0.0009343309211544693, + 0.0063414061442017555, + -0.010642615146934986, + 0.0023820383939892054, + -0.010992578230798244, + -0.02001318521797657, + -0.009247771464288235, + 0.00468451576307416, + 0.0009964131750166416, + -0.004457945004105568, + -0.019613172858953476, + -0.006974775344133377, + -0.0030058827251195908, + -0.015868758782744408, + -0.08068562299013138, + -0.005122825503349304, + 0.0024659784976392984, + -0.017186643555760384, + -0.005647237412631512, + 0.0015020149294286966, + -0.0048634447157382965, + -0.010775391012430191, + 0.000913820811547339, + -0.009921618737280369, + 0.003291665343567729, + 0.013559071347117424, + -0.03253072127699852, + 0.014989282935857773, + -0.01176611427217722, + -0.024404797703027725, + 0.022652244195342064, + -0.003864533733576536, + 0.01630968414247036, + 0.008270082995295525, + 0.019732562825083733, + 0.00407834816724062, + 0.0062146601267158985, + 0.028170568868517876, + 0.01483491063117981, + -0.016154149547219276, + -0.01245465874671936, + -0.005840724799782038, + 0.015429569408297539, + 0.006499316077679396, + -1.2993826203455683e-05, + -0.0036456072703003883, + -0.02070692554116249, + -0.0035953610204160213, + 0.005505121313035488, + 0.005016892682760954, + 0.019701670855283737, + 0.01722315512597561, + -0.00036325224209576845, + -0.001964413793757558, + -0.0021133569534868, + -0.019296586513519287, + 0.0006713635521009564, + -0.005857483483850956, + -0.006871738471090794, + -0.010908110998570919, + 0.009367905557155609, + -0.007926744408905506, + -0.0024272045120596886, + -0.008699405938386917, + 0.006745298393070698, + 0.014007777906954288, + 0.032207656651735306, + -0.012162091210484505, + -0.00813760980963707, + 5.194646291784011e-05, + -0.0045572021044790745, + -0.011108719743788242, + -0.008100292645394802, + -0.0061470926739275455, + -0.010785648599267006, + 0.003602256067097187, + 0.0047616902738809586, + 0.012119436636567116, + -0.006398126482963562, + -0.0090107973664999, + -0.01268649660050869, + -0.0017497804947197437, + -0.04433903843164444, + -0.005984934512525797, + -0.025970211252570152, + -0.0013388146180659533, + 0.01564357802271843, + -0.007101865019649267, + -0.019912205636501312, + -0.00038645463064312935, + 0.0003818437980953604, + 0.010198012925684452, + -0.02090342529118061, + 0.008255739696323872, + -0.015720780938863754, + 0.030738089233636856, + 0.08150604367256165, + -0.0018264091340824962, + 0.004517143126577139, + -0.00948412250727415, + -0.014199767261743546, + 0.013042500242590904, + -0.001501111895777285, + -0.004712959751486778, + -0.002335482044145465, + 0.003095261286944151, + -0.017159678041934967, + 0.000989902182482183, + 0.0005457203951664269, + 0.0006269231089390814, + -0.01083445642143488, + 0.0085689015686512, + 0.003569801803678274, + 0.0058552916161715984, + -0.007432735059410334, + 0.012593534775078297, + 0.005350110121071339, + -0.024672210216522217, + 0.0019386797212064266, + -0.010940092615783215, + -0.035258952528238297, + -0.01244754996150732, + 0.0038381973281502724, + 0.015042820014059544, + 0.01585652120411396, + 0.006268289405852556, + 0.015592772513628006, + -0.0027306589763611555, + -0.00932548101991415, + -0.006169901229441166, + 0.0075346557423472404, + 0.0037600172217935324, + 0.004289353732019663, + -0.0009910863591358066, + -0.0030682680662721395, + -0.002782550174742937, + -0.009996941313147545, + -0.01561951357871294, + -0.004517584107816219, + -0.00626806914806366, + 0.0063097295351326466, + 0.002954850671812892, + 0.010972140356898308, + 0.034080296754837036, + -0.02075989730656147, + 0.001352173974737525, + -0.004241594113409519, + 0.003419234650209546, + 0.005755608435720205, + -0.008271823637187481, + 0.0033976880367845297, + 0.004875043872743845, + -0.0001727389608277008, + -0.005380677059292793, + -0.022887006402015686, + 0.00573703832924366, + 0.0008217180729843676, + -9.551288712827954e-06, + -0.006086539011448622, + -0.01104008313268423, + -0.004689625930041075, + 0.0418749563395977, + -0.011563439853489399, + -0.017451845109462738, + 0.0015447938349097967, + -0.011648855172097683, + 0.009689832106232643, + 0.0015931441448628902, + 0.0021994165144860744, + 0.00946773774921894, + -0.009000142104923725, + -0.016932031139731407, + -0.027764761820435524, + -0.005739019252359867, + -0.022390659898519516, + -0.007475805468857288, + -0.00030174609855748713, + -0.00028461404144763947, + -0.014361865818500519, + 0.011489170603454113, + 0.001097877393476665, + 0.006800977047532797, + 0.007271565962582827, + 0.005849081557244062, + 0.003714058781042695, + -0.0020134253427386284, + -0.007496309466660023, + -0.020638536661863327, + -0.009343386627733707, + -0.003297360148280859, + -0.0013450115220621228, + -0.006090258248150349, + 0.01709957979619503, + 0.002102038124576211, + 0.0006078782025724649, + -0.018062517046928406, + -0.0024715985637158155, + 0.006022669840604067, + 0.0066177258267998695, + 0.008030446246266365, + -0.0026019765064120293, + 9.894600952975452e-05, + -0.014098841696977615, + -0.02276068553328514, + 0.005152376368641853, + 0.008962156251072884, + -0.013693805783987045, + -0.006639350205659866, + 0.0034985097590833902, + -0.006886439397931099, + -0.007114377338439226, + 0.014358613640069962, + -0.0029133744537830353, + 0.0004111745220143348, + -0.029069196432828903, + -0.014713821932673454, + -0.006771603133529425, + -0.019176840782165527, + 0.0069371964782476425, + 0.03307488560676575, + 0.012436110526323318, + 0.01298186182975769, + -0.011992490850389004, + -0.00026012578746303916, + -0.009573225863277912, + 0.003317133290693164, + 0.012670507654547691, + 0.005751031916588545, + -0.019647080451250076, + -0.011157849803566933, + -0.00374177610501647, + -0.015422318130731583, + 0.006182890385389328, + 0.006896852049976587, + -0.0050755999982357025, + -0.0032057901844382286, + 0.005354692693799734, + 0.0017162241274490952, + 0.012730231508612633, + 0.023516107350587845, + -0.004094441421329975, + 0.006476869806647301, + -0.009537078440189362, + 0.01792856492102146, + -0.011245425790548325, + 0.015496042557060719, + 0.00241464888677001, + 0.010188642889261246, + 0.0057060918770730495, + -0.02530440129339695, + -0.001093752682209015, + -0.016338251531124115, + 0.011270128190517426, + 0.021436017006635666, + 0.003076296765357256, + -0.0014449885347858071, + 0.025066254660487175, + 0.009975321590900421, + -0.010360945016145706, + -0.007994566112756729, + -0.020805807784199715, + 0.009989126585423946, + 0.0240709837526083, + 0.011420052498579025, + -0.01404591090977192, + 0.002301771193742752, + -0.021021725609898567, + 0.00592005206272006, + 0.005555751267820597, + 0.1100606694817543, + 0.0013333300594240427, + 0.010383338667452335, + 0.0024324823170900345, + -0.014656013809144497, + -0.005532098468393087, + -0.0036105867475271225, + -0.008353319019079208, + -0.007570816203951836, + -0.0005980980931781232, + -0.004960292484611273, + 0.014320984482765198, + -0.021780075505375862, + -0.00532804848626256, + -0.014773915521800518, + -0.00036367800203152, + 0.0024609684478491545, + -0.00036276417085900903, + 0.0012642232468351722, + 0.012298866175115108, + -0.008035814389586449, + 0.002589051378890872, + -0.004969635047018528, + 0.003691360354423523, + -0.00855366699397564, + -0.005062656477093697, + 0.0018019110430032015, + 0.007329288870096207, + 0.009330970235168934, + -0.009057186543941498, + -0.011960271745920181, + -0.0034564477391541004, + -0.008591774851083755, + 0.027177318930625916, + 0.0022003382910043, + -0.0194708202034235, + 0.0022944859229028225, + 0.0265960730612278, + 0.011268781498074532, + -0.031984951347112656, + 0.0038782746996730566, + 0.0021741085220128298, + -0.010220522992312908, + 0.0010002530179917812, + 0.028045503422617912, + 0.006026975344866514, + -0.012949259020388126, + 0.03787795081734657, + 0.007170216646045446, + -0.017596259713172913, + 0.002443919191136956, + -0.008517899550497532, + -0.012079783715307713, + -0.007320371922105551, + 0.001599757350049913, + 0.0037590572610497475, + -0.01697436533868313, + 0.00925859808921814, + -0.0116229597479105, + 0.01504093874245882, + -0.0037082508206367493, + -0.01038417685776949, + -0.013925646431744099, + -0.0007757408893667161, + 0.010837534442543983, + 0.020845822989940643, + 0.0006796767702326179, + 0.004157014656811953, + -0.012165862135589123, + 0.015524440445005894, + 0.006368209607899189, + 0.011965719051659107, + -0.0007958963979035616, + -0.00328255258500576, + -0.01697205938398838, + 0.013079632073640823, + 1.685807183093857e-05, + -0.01716669090092182, + 0.012290837243199348, + -0.011355695314705372, + -0.006644990760833025, + -7.216408266685903e-05, + 0.01044958084821701, + -0.02556867152452469, + -0.013258841820061207, + -0.008788533508777618, + -0.027130892500281334, + -0.004548318218439817, + 0.009863789193332195, + -0.019640015438199043, + -0.008402314968407154, + -0.002344694221392274, + -0.008525996468961239, + 0.0021535709965974092, + -0.006693072151392698, + 0.015384165570139885, + -0.002442799275740981, + 0.002707045990973711, + 0.006122679449617863, + -0.01355037372559309, + -0.003588183782994747, + 0.06982557475566864, + -0.007518196478486061, + -0.009820934385061264, + 0.01280035637319088, + 0.019948171451687813, + 0.01125146821141243, + -0.008974804542958736, + -0.00019347731722518802, + 0.0028351310174912214, + -0.007120918016880751, + -0.002939058467745781, + -0.0037433095276355743, + 0.01592685841023922, + -0.01148279570043087, + 0.003948686178773642, + -0.006118199788033962, + 0.017745524644851685, + -0.0030688948463648558, + -0.015680786222219467, + -0.009602596051990986, + 0.007216129917651415, + 0.0007110695587471128, + 0.01829252950847149, + -0.01679348386824131, + 0.0026904758997261524, + 0.025313707068562508, + -0.006819016300141811, + -0.01134933065623045, + 0.010883696377277374, + -0.01820026896893978, + -0.004976872354745865, + 0.07682612538337708, + -0.012845317833125591, + 0.0022978077176958323, + 0.0011580154532566667, + 0.006905191112309694, + 0.00863133929669857, + 0.00012752984184771776, + -0.005004141014069319, + 0.0018969946540892124, + 0.006229930091649294, + 0.0028325472958385944, + 0.011173220351338387, + -0.00809637364000082, + -0.006466261576861143, + 0.0008464615093544126, + 0.005326537415385246, + 0.03646963834762573, + -0.015036025084555149, + 0.0004803402116522193, + 0.004738582763820887, + -0.0006660075741820037, + -0.007199018727988005, + -0.0016361867310479283, + 0.0066852574236691, + 0.01049802452325821, + 0.010431177914142609, + -0.007832614704966545, + 0.001780267688445747, + 0.00795831624418497, + -0.012489818036556244, + 0.003924483433365822, + 0.023933030664920807, + 0.0062790377996861935, + 0.03921337425708771, + 0.001074670348316431, + -0.011616473086178303, + -0.006040456239134073, + 0.0032674046233296394, + -0.0030712091829627752, + 0.001544842729344964, + -0.014136670157313347, + -0.02435639500617981, + -0.007755771279335022, + 0.01807386428117752, + -0.005169088952243328, + -0.008116072043776512, + 0.025297969579696655, + 0.011602219194173813, + -0.024171659722924232, + -0.00442531518638134, + -0.00880701094865799, + -0.0034389260690659285, + -0.00039016586379148066, + -0.007944107986986637, + -0.02538790926337242, + 0.0032352760899811983, + 0.004545595962554216, + -0.004784589633345604, + -0.008330429904162884, + -0.010192658752202988, + 0.010590140707790852, + -0.010863155126571655, + -0.013696489855647087, + 0.013249189592897892, + -0.09848418831825256, + 0.008921408094465733, + 0.011606715619564056, + 0.001481126993894577, + 0.015171648003160954, + 0.01303920429199934, + -0.003248688066378236, + -0.0004476678150240332, + 0.015159470960497856, + 0.015221521258354187, + -0.017747703939676285, + 0.01625930704176426, + -0.009027153253555298, + 0.0030991937965154648, + 0.005020081531256437, + 0.006459152791649103, + -0.009837020188570023, + 0.003818499157205224, + 0.010568583384156227, + -0.10700751096010208, + 0.05074474215507507, + 0.016936304047703743, + -0.004570319317281246, + -0.008584040217101574, + -0.020358199253678322, + 0.0020779792685061693, + -0.0044869184494018555, + 0.004176948685199022, + -0.004530050791800022, + -0.0010878233006224036, + -0.0020839073695242405, + 0.005041696131229401, + -0.015246786177158356, + -0.009315179660916328, + -0.006611058954149485, + 0.001146142603829503, + 0.0029665115289390087, + 0.021204140037298203, + 0.004676281940191984, + 0.004988398402929306, + 0.001883902819827199, + 0.01757519133388996, + 0.021290211006999016, + 0.009901991114020348, + -0.011494931764900684, + 0.002233588369563222, + 0.0009516386780887842, + 0.0033914262894541025, + -0.006689234171062708, + 0.02755572460591793, + -0.006375260651111603, + 0.0191618874669075, + -0.0006652992451563478, + 0.0030233205761760473, + -0.008668472990393639, + 0.0064003546722233295, + -0.011017126962542534, + -0.00806718971580267, + 0.05016842484474182, + -0.020387981086969376, + -0.002390044741332531, + 0.009168642573058605, + -0.0036322784144431353, + 0.0038736327551305294, + 0.03598451986908913, + 0.0014766670065000653, + -0.01416016835719347, + 0.0005684629431925714, + 0.011639160104095936, + 0.00999237410724163, + -0.009013224393129349, + 0.018564963713288307, + -0.002262089168652892, + 0.007861688733100891, + 0.01198386587202549, + -0.0025757350958883762, + 0.00896403193473816, + 0.003627534955739975, + 0.030701713636517525, + 1.2733090443362016e-05, + -0.007007176987826824, + -0.002974680857732892, + 0.01294081099331379, + 0.005706930533051491, + 0.00652988301590085, + 0.025118311867117882, + -0.0014991182833909988, + 0.0006634932360611856, + 0.002049211645498872, + -0.004334034398198128, + 0.008175856433808804, + 0.016978949308395386, + -0.008853258565068245, + -0.017512887716293335, + -0.0046819658018648624, + 0.005630165804177523, + 0.020414330065250397, + -0.010203378275036812, + 0.006850849371403456, + -0.004157098941504955, + -0.021311381831765175, + 0.012213137000799179, + -0.00419889809563756, + 0.004814973101019859, + 0.003230203175917268, + -0.012963201850652695, + -0.003948941361159086, + 0.0311942957341671, + 0.0025802410673350096, + 0.004105130676180124, + -0.015713922679424286, + -0.034336961805820465, + 0.0019215031061321497, + 0.010841188952326775, + -0.005663291551172733, + -0.0016370319062843919, + 0.00871339626610279, + -0.010599507950246334, + 0.018661752343177795, + 0.014619573019444942, + 0.007942082360386848, + 0.0007030120468698442, + -0.020845456048846245, + 0.020975394174456596, + -0.0020582289434969425, + 0.03162616118788719, + -0.0028798384591937065, + 0.014567923732101917, + 0.00022493820870295167, + 0.00815881323069334, + 0.010674008168280125, + 0.02192688174545765, + 0.0018185687949880958, + 0.0005261849146336317, + 0.016605619341135025, + 0.004907431546598673, + 0.009931029751896858, + -0.0027979372534900904, + 0.013492463156580925, + 0.0015226283576339483, + 0.004648161586374044, + 0.014778196811676025, + 0.007655767723917961, + -0.0072705247439444065, + -0.01239989697933197, + -0.00338277081027627, + -0.006304042413830757, + 0.027380917221307755, + -0.0018903365125879645, + -0.010701405815780163, + -0.009950711391866207, + 0.0022457176819443703, + 0.0013048199471086264, + 0.006448054686188698, + 0.009445014409720898, + 0.004354298114776611, + 0.005899305455386639, + -0.008761000819504261, + -0.012168191373348236, + -0.0036234937142580748, + 0.002860516309738159, + -0.014696643687784672, + -0.0066462233662605286, + 0.010794466361403465, + -0.0038140318356454372, + -0.021808471530675888, + -0.015655476599931717, + -0.004994646180421114, + 0.0017719960305839777, + 0.010089029558002949, + -0.0033870069310069084, + 0.008952885866165161, + -0.020044345408678055, + -0.015991320833563805, + 0.002716550137847662, + 0.042859550565481186, + 0.0011012507602572441, + -0.06296392530202866, + -0.0247899629175663, + 0.005740280728787184, + -0.019022665917873383, + -0.06372290104627609, + 0.04006456211209297, + 0.006391793489456177, + -0.002877218183130026, + 0.02538241073489189, + -0.0011594127863645554, + 0.005554096773266792, + 0.001060846378095448, + 0.0016512603033334017, + 0.0004975881311111152, + 0.026351993903517723, + -0.008579125627875328, + 0.007295521907508373, + 0.005047336686402559, + 0.0030667688697576523, + 0.011319277808070183, + -0.005403380375355482, + -0.03566129133105278, + 0.007336844690144062, + 0.01953023299574852, + 0.0012140258913859725, + -0.0034700417891144753, + 0.01538923941552639, + -0.016567770391702652, + -0.03966198489069939, + -0.01410253718495369, + 0.007977611385285854, + 0.014325618743896484, + -0.017625056207180023, + 0.01210669707506895, + 0.0062873889692127705, + 0.007929041981697083, + -0.014342664740979671, + 0.006144621875137091, + -0.016466336324810982, + -0.0033681956119835377, + -0.003430473618209362, + 0.0036030125338584185, + -0.015164189971983433, + 0.03132358938455582, + 0.003546079620718956, + 0.004901462234556675, + 0.005256687290966511, + 0.0042367372661828995, + 0.0020242787431925535, + -0.013373815454542637, + 0.008837933652102947, + 0.016672823578119278, + -0.011314955540001392, + 0.005888346116989851, + -0.004306423477828503, + -0.02252529188990593, + -0.01168357115238905, + -0.005091664381325245, + -0.006991792935878038, + -0.005790886003524065, + 0.011860101483762264, + 0.01515774056315422, + -0.010833563283085823, + -0.015457095578312874, + 0.016264336183667183, + -0.011979798786342144, + 0.0008899581735022366, + 0.023722413927316666, + 0.047224849462509155, + 0.0019003957277163863, + -0.006918879225850105, + 0.0019129393622279167, + 0.014900440350174904, + 0.022613920271396637, + -0.005940203554928303, + -0.006140131037682295, + -0.01083120983093977, + 0.09408731013536453, + -0.0035308804363012314, + 0.006581377238035202, + -0.00042781716911122203, + -0.0041563622653484344, + -0.0013949384447187185, + 0.002762134652584791, + 0.0032572310883551836, + -0.003899248316884041, + -0.0013016343582421541, + 0.017047308385372162, + 0.0009321382385678589, + -0.008392415009438992, + -0.0015307688154280186, + 0.0009486078633926809, + 0.01646834798157215, + 0.0049435351975262165, + 0.00905644427984953, + 0.004277253057807684, + 0.0075256600975990295, + -0.017052393406629562, + 0.02086946740746498, + -0.013098577037453651, + -0.0028805870097130537, + -0.0207586158066988, + 0.0027414376381784678, + 0.016712399199604988, + -0.005058759357780218, + -0.0031334913801401854, + 0.017393959686160088, + 0.003727132920175791, + -0.008729550987482071, + 0.0068724751472473145, + 0.00919341016560793, + -0.005627453792840242, + -0.0029555130749940872, + 0.0018480075523257256, + 0.021247152239084244, + -0.0011617994168773293, + -0.0030035206582397223, + 0.0008808068232610822, + 0.08122499287128448, + 0.01697297766804695, + 0.00047907602856867015, + -0.024103756994009018, + -0.006510748993605375, + 0.004944011569023132, + 0.0025285028386861086, + 0.007301713805645704, + 0.015219679102301598, + -0.004485275596380234, + -0.002878478728234768, + 0.008017981424927711, + -0.00906275399029255, + 0.0032000953797250986, + 0.01645597256720066, + 0.012482548132538795, + 0.005703154020011425, + -0.013649937696754932, + 0.01925339549779892, + -0.005795632489025593, + 0.021159382537007332, + -0.02136789634823799, + 0.001776019693352282, + 0.005362111609429121, + -0.017737770453095436, + 0.0013809025986120105, + 0.014768927358090878, + -0.003663509851321578, + 0.007612438406795263, + 0.015482980757951736, + -0.01342447567731142, + -0.015616350807249546, + -0.009948642924427986, + -0.009249920956790447, + -0.028350848704576492, + 0.00025327623006887734, + 0.005351768806576729, + -0.004825826268643141, + 0.010799694806337357, + 0.01846003159880638, + 0.0045702410861849785, + -0.017261184751987457, + -0.030830098316073418, + -0.009148163720965385, + -0.01710396260023117, + -0.003333722474053502, + -0.011854343116283417, + -0.006586954928934574, + 0.005136911291629076, + -0.008459335193037987, + -0.0146977873519063, + 0.011134302243590355, + -0.0369650200009346, + -0.021736226975917816, + -0.00952412560582161, + -0.007247609086334705, + -0.008096665143966675, + -0.0030977705027908087, + 0.010650932788848877, + 0.004623437765985727, + 0.0034907637163996696, + 0.013458031229674816, + -0.020483555272221565, + -0.002582202199846506, + -0.007846464402973652, + 0.0002749791892711073, + 0.004129450302571058, + 0.0179738849401474, + -0.013177063316106796, + -0.07194141298532486, + -0.009848185814917088, + 0.02240772172808647, + -0.007138856686651707, + -0.0024085557088255882, + 0.0067494893446564674, + -0.0047291722148656845, + 0.014815391041338444, + -0.011927873827517033, + -0.0009316466166637838, + -0.012135574594140053, + -0.003288199659436941, + 0.020327188074588776, + -0.007360696792602539, + 0.018698809668421745, + 0.007955746725201607, + -0.021481947973370552, + -0.038509272038936615, + 0.023987049236893654, + 0.01264558918774128, + 0.062307268381118774, + -0.001499347505159676, + -0.008282462134957314, + 0.035591211169958115, + -0.007426217198371887, + 0.012707765214145184, + -0.0037989639677107334, + 0.02323576994240284, + 0.008753241039812565, + 0.007841869257390499, + 0.001401763060130179, + -0.004496355541050434, + 0.007202310487627983, + 0.011192604899406433, + -0.022398462519049644 + ] + } + }, + "global_mean": [ + -0.15481701493263245, + 0.07514829188585281, + -0.012442536652088165, + -0.07234915345907211, + 0.1850370466709137, + 0.12461965531110764, + -0.14593061804771423, + -0.19140130281448364, + 0.16291984915733337, + 0.06827570497989655, + 0.005796582903712988, + -0.24000763893127441, + 0.06378709524869919, + -0.01535334438085556, + -0.08299259841442108, + -0.10409721732139587, + 0.0637214258313179, + -0.35154861211776733, + 0.14102652668952942, + 0.17738127708435059, + 0.047423575073480606, + 0.1280430555343628, + -0.228316992521286, + 0.026302719488739967, + -0.07419207692146301, + -0.21928031742572784, + -0.6252557039260864, + -0.13862833380699158, + -0.15888534486293793, + -0.06679324805736542, + 0.05034058168530464, + 0.1271810382604599, + 0.011861849576234818, + 0.1817970722913742, + -0.08663390576839447, + -0.1591731309890747, + 0.2583630681037903, + -0.011860324069857597, + 0.021747075021266937, + -0.27360227704048157, + -0.2127220183610916, + 0.1173146516084671, + -0.12085563689470291, + -0.0026835910975933075, + -0.10568185895681381, + 0.07464595139026642, + -0.19323453307151794, + -0.30242955684661865, + 0.15541014075279236, + -0.11168289929628372, + 0.02478037029504776, + -0.8766361474990845, + -0.16873040795326233, + 0.0033949073404073715, + 0.04703349620103836, + -0.06063811108469963, + -0.1372065246105194, + 0.163995623588562, + -0.08878251165151596, + -0.03415728360414505, + -0.02227005362510681, + -0.2667565941810608, + 0.011290661059319973, + 0.10173501074314117, + -0.14038948714733124, + 0.09556581825017929, + 0.23028190433979034, + 0.07276299595832825, + -0.21724528074264526, + 0.15944278240203857, + 0.0473533496260643, + -0.20722562074661255, + -0.07176807522773743, + 0.1501328945159912, + -0.2487228959798813, + 0.5240609049797058, + -0.3695521354675293, + 0.10122206807136536, + 0.019179029390215874, + -0.01975829154253006, + 0.03114820271730423, + -0.05315259099006653, + 0.12420395016670227, + 0.08099012821912766, + -0.042620569467544556, + 0.07522953301668167, + 0.008907311595976353, + -0.6434735655784607, + -0.03254596143960953, + 0.20540142059326172, + 0.09029601514339447, + 0.061024945229291916, + -0.31218278408050537, + -0.08508869260549545, + 0.056920018047094345, + -0.4871674180030823, + -0.036388903856277466, + -0.012616265565156937, + 0.24482972919940948, + 0.15853959321975708, + 0.2114214152097702, + -0.151211217045784, + -0.10651325434446335, + -0.28039029240608215, + -0.01854858547449112, + -0.15677043795585632, + -0.14245504140853882, + -0.03687964379787445, + -0.1876261830329895, + 0.08928831666707993, + 0.18511930108070374, + -0.13278159499168396, + -0.14599356055259705, + 0.1154213696718216, + -0.03778738155961037, + -0.21248185634613037, + -0.10685616731643677, + 0.18401312828063965, + 0.24081352353096008, + -0.24381974339485168, + 0.2288583219051361, + 0.3994728922843933, + 0.11634381115436554, + 0.02922772243618965, + -0.1284283548593521, + 0.017221199348568916, + 0.19618505239486694, + -0.027415232732892036, + -0.26099005341529846, + 0.08941406011581421, + 0.26071056723594666, + -0.011984173208475113, + 0.07331979274749756, + 0.12437015771865845, + 0.1576167196035385, + -0.03998057171702385, + -0.08755462616682053, + -0.012134291231632233, + -0.1854899525642395, + 0.07563511282205582, + 0.07665546983480453, + -0.1469641923904419, + -0.6624408960342407, + 0.06524382531642914, + -0.014111094176769257, + -0.04357018321752548, + -0.3500887453556061, + -0.018857426941394806, + 0.19768667221069336, + 0.19562023878097534, + -0.006722267717123032, + -0.3305571973323822, + -0.05920698493719101, + 0.23828361928462982, + -0.27741193771362305, + 0.19166100025177002, + -0.05004248768091202, + 0.14494143426418304, + 0.06767784804105759, + -0.28948819637298584, + -0.1351519227027893, + 0.0015970934182405472, + -0.2873532772064209, + 0.18902665376663208, + 0.028392834588885307, + -0.02091898024082184, + 0.3857731223106384, + 0.013448316603899002, + 0.17912831902503967, + 0.06552515923976898, + 0.08987155556678772, + -0.9824025630950928, + 0.13520005345344543, + -0.27473294734954834, + -0.08636029809713364, + 0.15106803178787231, + -0.022648807615041733, + 0.08589312434196472, + -0.12397705763578415, + -0.0038160253316164017, + -0.04291731119155884, + -0.15372279286384583, + 0.20082277059555054, + -0.030179444700479507, + -0.1659402847290039, + -0.08881695568561554, + -0.12150205671787262, + -0.025346916168928146, + 0.07512691617012024, + 0.10832156240940094, + 0.06002853810787201, + -0.4051479697227478, + -0.0775681585073471, + 0.028557460755109787, + -0.18941473960876465, + -0.10525080561637878, + 0.0855771079659462, + 0.18594235181808472, + -0.18913684785366058, + 0.09767486155033112, + -0.11388556659221649, + -0.7715792655944824, + -0.061741262674331665, + 0.005775486119091511, + 0.037485912442207336, + -0.03323186933994293, + -0.21083185076713562, + 0.21432572603225708, + -0.5486024022102356, + 0.0944448858499527, + -0.28758230805397034, + 0.009826894849538803, + -0.13025853037834167, + 0.1933758556842804, + -0.07136711478233337, + -0.07508252561092377, + 0.15963926911354065, + -0.027339491993188858, + 0.07112213969230652, + 0.03561766818165779, + 0.10399287939071655, + 0.14909319579601288, + 0.046434029936790466, + -0.03897035866975784, + -0.3705006241798401, + -0.09661811590194702, + -0.3191036581993103, + 0.055488474667072296, + 0.21015001833438873, + -0.2417912632226944, + 0.30419424176216125, + 0.013338938355445862, + -0.05256381630897522, + -80.22969055175781, + -0.756206214427948, + 0.652847945690155, + 0.09959404170513153, + -0.1808985322713852, + -0.30774274468421936, + -0.21248406171798706, + 0.10384569317102432, + -0.07325275242328644, + 0.06650358438491821, + 1.11733078956604, + -0.03037351742386818, + 0.13380873203277588, + -0.03144712746143341, + 0.12961934506893158, + 0.03948706388473511, + 0.07358364015817642, + 0.02046680450439453, + -0.07663664221763611, + -0.14242929220199585, + -0.22893022000789642, + -0.12094581127166748, + -0.02722017467021942, + -0.10528232902288437, + 0.16193488240242004, + 0.058888696134090424, + -0.037024080753326416, + -0.0023971963673830032, + -0.29727306962013245, + 0.1886601746082306, + 0.043864499777555466, + 0.2838861048221588, + -0.2079772800207138, + -0.0989396795630455, + -0.06183066964149475, + -0.19388096034526825, + 0.23818394541740417, + -2.643366813659668, + -0.31723323464393616, + -0.13408538699150085, + -0.09018111228942871, + -0.3016611933708191, + 0.23923525214195251, + 0.09051290154457092, + -0.015267942100763321, + -0.1256718635559082, + 0.09172676503658295, + 0.10814926773309708, + 0.046387240290641785, + -0.13421879708766937, + -0.12016181647777557, + -0.05927788466215134, + 0.10188908129930496, + 0.07107992470264435, + -0.1071694865822792, + 0.03553386777639389, + -0.0010333973914384842, + -0.036923326551914215, + 0.21851268410682678, + 0.9525425434112549, + 0.28502917289733887, + -0.13824152946472168, + -0.12971237301826477, + 0.04113049432635307, + -0.11438016593456268, + -0.07394130527973175, + 0.0740947425365448, + 0.15692663192749023, + 0.014974968507885933, + 0.011923052370548248, + 0.24753844738006592, + -0.09656091779470444, + 0.164018452167511, + 0.39135444164276123, + -0.12462469935417175, + 0.05956874415278435, + 0.09489256143569946, + 0.12280004471540451, + -0.25218266248703003, + -0.016096655279397964, + -0.05478423088788986, + 0.17687466740608215, + 0.06971026211977005, + -0.10577982664108276, + 0.08470762521028519, + -0.14624682068824768, + 0.4103856086730957, + -0.13651829957962036, + -0.1198510229587555, + 0.05481841415166855, + -0.012645053677260876, + -0.034758105874061584, + 0.18264184892177582, + -0.05928199365735054, + 0.2711232304573059, + -0.40395233035087585, + -0.07594215124845505, + 0.06657034903764725, + 0.12231804430484772, + -0.08862319588661194, + 0.023334138095378876, + -0.01460207998752594, + 0.18005555868148804, + 0.15687593817710876, + -0.1545153260231018, + -0.1033579558134079, + 0.24563315510749817, + -0.08204105496406555, + 0.044591024518013, + 0.11905885487794876, + 0.15379220247268677, + -0.23393329977989197, + 0.039011336863040924, + 0.04042486101388931, + -0.023325115442276, + 0.06437284499406815, + -0.03615958243608475, + -0.009439347311854362, + -0.10298943519592285, + 0.3798553943634033, + 0.043956879526376724, + -0.012265516445040703, + 0.14141136407852173, + 0.2922036647796631, + -0.038320086896419525, + -0.22039425373077393, + -0.034076400101184845, + 0.1394900679588318, + 0.361605703830719, + -0.01270073652267456, + -0.1489858776330948, + 0.2497267723083496, + 0.09106029570102692, + -0.30554747581481934, + -0.18473872542381287, + -4.820833683013916, + 0.023674972355365753, + 0.06155281513929367, + -0.01645711064338684, + -0.23468008637428284, + 0.13190969824790955, + 0.09632133692502975, + 0.08767402917146683, + 0.1531018316745758, + -0.07839994877576828, + -0.02003129944205284, + 0.14119182527065277, + 0.0009404495358467102, + -0.649933934211731, + 1.3140813112258911, + -0.13165399432182312, + 0.029949314892292023, + -0.17675566673278809, + -0.1530212163925171, + -0.15141251683235168, + -0.10069933533668518, + -0.07867318391799927, + 0.04717196896672249, + -0.06861142814159393, + 0.13364925980567932, + -0.2105112075805664, + 0.07311318069696426, + 0.1901448369026184, + 0.18489716947078705, + 0.21369077265262604, + -0.11356482654809952, + -0.018614985048770905, + -0.0888335257768631, + -0.17861652374267578, + 0.0393172986805439, + -0.126193568110466, + 0.041347846388816833, + 0.020195331424474716, + 0.13644692301750183, + 0.014861293137073517, + -0.2089652270078659, + 0.10030116140842438, + 0.03300093114376068, + -0.9036486148834229, + -0.2625132203102112, + -0.24475440382957458, + -0.07949367165565491, + 0.0718110129237175, + -0.23760384321212769, + 0.1540619134902954, + 0.4389624297618866, + 0.30063295364379883, + -0.11323805153369904, + 0.26329895853996277, + -0.020449191331863403, + -0.11204954981803894, + -0.16093891859054565, + 0.09999106824398041, + 0.09263823926448822, + 0.013324987143278122, + 0.11853998899459839, + 0.22203481197357178, + 0.17723853886127472, + 0.05155910551548004, + 0.13732555508613586, + 0.04558064788579941, + -0.032808322459459305, + -0.07537369430065155, + 0.2492266297340393, + 0.007086992263793945, + 0.0370992012321949, + -0.015219897031784058, + -0.001413535326719284, + -0.18134649097919464, + -0.1660034954547882, + -0.4897770583629608, + -0.23701705038547516, + -1.7845211029052734, + -0.22883090376853943, + -0.19543825089931488, + 0.018056094646453857, + 0.06887514144182205, + -0.04073108732700348, + 0.05771953612565994, + -0.24009546637535095, + -0.10249444842338562, + 0.17490994930267334, + -0.12917105853557587, + -0.07253244519233704, + -0.046525292098522186, + 0.878259003162384, + 0.15257546305656433, + 0.12222524732351303, + -0.052846599370241165, + -0.1778222918510437, + -0.013943343423306942, + -0.20438697934150696, + 0.152787983417511, + -0.1400390863418579, + 0.2342444360256195, + 0.06906578689813614, + -0.1426900178194046, + -0.11129240691661835, + -0.21069198846817017, + -0.1609899401664734, + -0.15432628989219666, + 0.08105744421482086, + 0.2637740969657898, + 0.024557504802942276, + 0.04820256680250168, + -0.23572653532028198, + 0.10515917092561722, + -0.19900023937225342, + 0.11442771553993225, + 0.16327594220638275, + -0.29476386308670044, + -0.06249794363975525, + -0.26336967945098877, + 0.23747512698173523, + -0.16688314080238342, + 0.11045819520950317, + -0.1583286076784134, + 0.06515532732009888, + 0.10111048817634583, + -0.11991287767887115, + -0.19261407852172852, + 0.1406497359275818, + -0.2202017605304718, + -0.20623070001602173, + 0.2651084363460541, + -0.027114350348711014, + -0.11638739705085754, + 0.4105619788169861, + 0.09529301524162292, + -0.044485971331596375, + 0.16981801390647888, + -0.015248734503984451, + 0.17654313147068024, + -0.008339272812008858, + 0.3004862666130066, + -0.07455368340015411, + -0.016568223014473915, + 0.24924330413341522, + 0.14047367870807648, + -0.18713773787021637, + -0.17374098300933838, + -0.13473182916641235, + -0.12407627701759338, + -0.16859301924705505, + -0.27017712593078613, + 0.024925561621785164, + 0.13681139051914215, + 0.18383881449699402, + 0.022875212132930756, + 0.06407731771469116, + 0.1274697482585907, + 0.05447911471128464, + 0.12489278614521027, + -0.0490565150976181, + 0.16090697050094604, + 0.09737041592597961, + 0.05438621714711189, + -0.09588351845741272, + -0.014072457328438759, + 0.10285347700119019, + 0.16825392842292786, + 0.05114585906267166, + 0.040777284651994705, + -0.0501159206032753, + -0.4388313293457031, + -0.10578839480876923, + -0.0287492536008358, + -0.1670101433992386, + 0.021006135269999504, + 0.10535957664251328, + 0.1345711052417755, + 0.15975028276443481, + -0.2921215891838074, + 0.2934587895870209, + 0.350590318441391, + 0.4378421902656555, + 0.26981568336486816, + 0.17437639832496643, + 0.0563100203871727, + -0.5565789937973022, + -0.10200159251689911, + 0.045104097574949265, + 0.10897795855998993, + -0.25003713369369507, + 0.07311797142028809, + -0.04748031497001648, + 0.24317581951618195, + -0.19509562849998474, + 0.13144858181476593, + 0.06721477210521698, + 0.1656549572944641, + 0.2268202304840088, + -0.07859665155410767, + 0.09048329293727875, + -0.08133597671985626, + 0.18970569968223572, + -0.30035337805747986, + -0.23300683498382568, + 0.11652886867523193, + 0.04853246733546257, + -0.10478109866380692, + 0.08229891955852509, + -0.15293511748313904, + -0.1318860501050949, + -0.10077355802059174, + 0.019594360142946243, + 0.09714847058057785, + -0.07158525288105011, + 0.07114535570144653, + 0.0061157140880823135, + 0.10327283293008804, + -0.009803514927625656, + -0.0680665373802185, + -0.3069511651992798, + -0.12227409332990646, + 0.06948911398649216, + 0.10153523832559586, + -0.2729972004890442, + -0.34025484323501587, + -0.2706676125526428, + 0.06845584511756897, + -0.08145713806152344, + 0.12643834948539734, + -0.010405167937278748, + -0.17069441080093384, + 0.1159382313489914, + -0.06560660898685455, + -0.017307352274656296, + 0.20126910507678986, + -0.18979953229427338, + 0.12308134138584137, + -0.025129904970526695, + 0.15573470294475555, + -0.2288369983434677, + -0.08665977418422699, + -0.1133558377623558, + -0.0006286390125751495, + -0.3633049726486206, + 0.42875513434410095, + -0.06366752088069916, + -0.1752077043056488, + -0.040915727615356445, + -0.04244792461395264, + -0.035667628049850464, + -0.1257636696100235, + -0.08849196135997772, + 0.0806688517332077, + -0.006999870762228966, + -0.15668514370918274, + 0.04300858452916145, + -0.11435241997241974, + 0.1139700785279274, + 0.2213813215494156, + 1.15147066116333, + 0.07376676797866821, + 0.13590404391288757, + 0.00036559998989105225, + -0.019376851618289948, + -0.03142087161540985, + -0.13490599393844604, + -0.1000274047255516, + 0.38273900747299194, + 0.06137575954198837, + -0.07278664410114288, + -0.052229877561330795, + -0.14027220010757446, + 0.16242575645446777, + -0.18352113664150238, + 0.10690763592720032, + -0.15334495902061462, + -0.3136320114135742, + -0.3210951089859009, + -0.08181923627853394, + -0.08493614196777344, + 0.6235330104827881, + 0.16127608716487885, + -0.04984704777598381, + -0.14413438737392426, + 0.11958837509155273, + -0.10476213693618774, + -0.14077945053577423, + 0.19547337293624878, + 0.08524547517299652, + -0.022110681980848312, + 0.42598533630371094, + -0.24177923798561096, + -0.06843231618404388, + -0.13944396376609802, + 0.2738213539123535, + 0.018898561596870422, + 0.16469410061836243, + -0.23054970800876617, + 0.47936055064201355, + 0.7497663497924805, + -0.11474798619747162, + -0.18968865275382996, + -0.17079636454582214, + 0.04836156219244003, + -0.10070464760065079, + -0.05958126485347748, + 0.057488057762384415, + 0.06464833766222, + 0.11563820391893387, + -5.046699523925781, + 0.05337660759687424, + 0.15844741463661194, + -0.2203933745622635, + 0.10300097614526749, + -0.15860581398010254, + 0.10587631911039352, + -0.052869148552417755, + 0.180791437625885, + 0.007441394031047821, + -0.029285751283168793, + -0.012437434867024422, + -0.04421862214803696, + 0.07913921773433685, + 0.10468721389770508, + -0.13754960894584656, + 0.03590087965130806, + -0.06703443825244904, + 0.0802558958530426, + 0.042585812509059906, + 0.1007194072008133, + 0.10223844647407532, + -0.12295500934123993, + -0.04404143989086151, + 0.3697699308395386, + -0.23855262994766235, + 0.2182830423116684, + 0.19666701555252075, + 0.3853745460510254, + 0.02383001148700714, + -0.01089404709637165, + -0.18998420238494873, + -0.09352102130651474, + 0.2754945755004883, + -0.04111941158771515, + -0.045103125274181366, + 0.12888102233409882, + -0.05735038220882416, + -0.05671019107103348, + -0.024651192128658295, + -0.7776057720184326, + -0.11879435926675797, + 0.05028599128127098, + 0.10091378539800644, + 0.16302913427352905, + 0.038927726447582245, + -0.024377621710300446, + -0.25274884700775146, + -0.13866859674453735, + -0.14485889673233032, + 0.14462098479270935, + 0.14666610956192017, + 0.024204183369874954, + 0.7587709426879883, + 0.06162988394498825, + -0.18232432007789612, + 0.28539204597473145, + 0.06673303246498108, + 0.6420860290527344, + -0.17873956263065338, + -0.12877143919467926, + 0.021448735147714615, + -0.1647965908050537, + 0.08014805614948273, + -0.1283869445323944, + 0.21055984497070312, + -0.20276550948619843, + 0.2162153720855713, + 0.17809291183948517, + -0.09990237653255463, + -0.05767035111784935, + 0.26634612679481506, + -0.01718864031136036, + -0.06321775913238525, + 0.02276700735092163, + -0.24066150188446045, + 0.025283705443143845, + -0.17971114814281464, + 0.00234806165099144, + 0.15090756118297577, + 0.018892891705036163, + -0.05661390721797943, + -0.08543777465820312, + -0.09669456630945206, + 0.0815807357430458, + -0.23303265869617462, + 0.21261656284332275, + 0.07813262939453125, + 0.15659336745738983, + -0.1200329065322876, + 0.05797988176345825, + 0.13963738083839417, + -0.06430749595165253, + -0.02657894790172577, + 0.09580178558826447, + 0.003148656338453293, + -0.17990857362747192, + 0.04507774859666824, + -0.018138114362955093, + 0.0345299057662487, + 0.16110631823539734, + 0.28273433446884155, + 0.163813978433609, + 0.08132753521203995, + -0.36649462580680847, + 0.025068871676921844, + 0.04430852830410004, + -0.11141929775476456, + -0.21097619831562042, + -0.11608318984508514, + -0.035073041915893555, + 1.3723115921020508, + 0.11429661512374878, + 0.006924510933458805, + 0.128562793135643, + -0.07264488935470581, + 0.06208306550979614, + 0.06537951529026031, + 0.07665401697158813, + 0.020371783524751663, + -0.25103187561035156, + 0.11321809887886047, + -0.24307800829410553, + 0.020901532843708992, + 0.04044736921787262, + -0.2086184024810791, + -0.26771342754364014, + 0.028737748041749, + 0.2725483775138855, + -0.05138248950242996, + 0.15937252342700958, + -0.263265997171402, + 0.13579334318637848, + -0.7508867979049683, + -0.18652816116809845, + 0.28692999482154846, + 0.16157451272010803, + -0.3141225278377533, + 0.12639549374580383, + -0.1817033588886261, + -0.059940092265605927, + 0.005028571933507919, + -0.16020122170448303, + 0.189651221036911, + -0.11139470338821411, + 0.27069246768951416, + -4.159831523895264, + 0.009089844301342964, + -0.019565140828490257, + -0.03008761629462242, + -0.07373745739459991, + -0.21077531576156616, + -0.1281028389930725, + -0.23148059844970703, + -0.060695745050907135, + 0.18695157766342163, + -0.10783717036247253, + -0.11493107676506042, + -0.09976273030042648, + -0.14952148497104645, + -0.2124822586774826, + -0.17836759984493256, + 0.225758358836174, + -0.06754402816295624, + -0.12497582286596298, + -0.0025797784328460693, + 0.20306678116321564, + 0.1882268190383911, + -0.03755947947502136, + -0.1753661334514618, + -0.18684843182563782, + -0.03655703365802765, + -0.19624440371990204, + 0.11242437362670898, + 0.3224946856498718, + -0.05076204985380173, + 0.2522026300430298, + -0.007546674460172653, + -0.02690722793340683, + 0.07173662632703781, + 0.35861989855766296, + 0.48626407980918884, + -0.13581126928329468, + -0.03184666484594345, + 0.05168849602341652, + -0.22772863507270813, + -0.28027254343032837, + 0.14304494857788086, + -0.11799491941928864, + -0.024600371718406677, + 0.02144174836575985, + 0.21208533644676208, + -0.36964839696884155, + -0.044437225908041, + 0.012157466262578964, + 0.13614630699157715, + -0.0976334661245346, + 0.09097293019294739, + -0.06151575595140457, + 0.06508901715278625, + -1.055813193321228, + -0.056794993579387665, + -0.012490080669522285, + -0.06442265957593918, + -0.010799897834658623, + -0.1859194040298462, + 0.05420253425836563, + -0.07700088620185852, + -0.09438858926296234, + -0.0654674768447876, + -0.015099729411303997, + -0.022974185645580292, + 0.8240432739257812, + 0.2689317762851715, + 0.06613162904977798, + -0.2907821536064148, + -0.1816447377204895, + -0.14114759862422943, + 0.27890580892562866, + -0.0018482645973563194, + 0.13399264216423035, + -0.17088326811790466, + 0.21563249826431274, + -0.0735994279384613, + -0.14084815979003906, + -0.39832961559295654, + 0.2324865758419037, + -0.06702746450901031, + 0.1943996250629425, + 0.3394288420677185, + 0.1374301314353943, + -0.12371043860912323, + -0.9015613794326782, + -0.0827537328004837, + -0.039446890354156494, + -0.2306642383337021, + 0.08712909370660782, + -0.0797971561551094, + 0.1087094247341156, + 0.04135657101869583, + -0.07493608444929123, + -0.23660705983638763, + 0.03788068890571594, + 0.12805356085300446, + 0.12347416579723358, + 0.03991961479187012, + -0.017433390021324158, + -4.4083452224731445, + 0.24677835404872894, + 0.08824845403432846, + -0.07122568041086197, + 0.015276040881872177, + -0.050949931144714355, + -0.45906758308410645, + -0.10121101886034012, + 0.07639113813638687, + 0.05943109467625618, + 0.2019839733839035, + -0.06752259284257889, + 0.19221565127372742, + -0.008628221228718758, + -0.06318989396095276, + -0.19946090877056122, + -0.08641713857650757, + -0.012096263468265533, + -0.05205132067203522, + -0.22083711624145508, + -0.1379857361316681, + 0.10479217767715454, + -0.2627062201499939, + -0.20992803573608398, + 0.15079471468925476, + -0.1468486487865448, + -0.05702085793018341, + 0.026615647599101067, + 0.08396510779857635, + -0.13005664944648743, + 0.17622894048690796, + -0.13978953659534454, + -0.012338295578956604, + 0.19352692365646362, + 0.4327693283557892, + -0.024293826892971992, + 0.552825927734375, + 0.0480910986661911, + 0.1006217822432518, + 0.030956104397773743, + -0.1849641054868698, + 0.0804966613650322, + -0.1055784672498703, + 0.2264656126499176, + -0.02897545136511326, + -0.16487354040145874, + -0.04446887969970703, + -0.06695984303951263, + -0.12541836500167847, + -0.27754107117652893, + -0.14137423038482666, + 0.08109063655138016, + -0.1746443808078766, + -0.1330375075340271, + -0.04936844855546951, + -0.1377488374710083, + -0.06458224356174469, + 0.02539905160665512, + -0.04237356781959534, + 0.26859769225120544, + 0.02680286020040512, + 0.06788698583841324, + -0.04541000723838806, + 0.21836164593696594, + -0.9961048364639282, + -0.13440707325935364, + -0.48696625232696533, + -0.10085708647966385, + 0.005531070753931999, + 0.04619615152478218, + -0.02470541000366211, + 2.7679667472839355, + 0.04277239739894867, + -0.023848848417401314, + -0.09907034039497375, + 0.008017364889383316, + -0.021109044551849365, + 0.09512007981538773, + -0.026731722056865692, + 0.13273528218269348, + 0.10291776806116104, + -0.17774949967861176, + 0.004192455671727657, + -0.13218684494495392, + 0.026162557303905487, + 0.058982040733098984, + 0.22044697403907776, + 0.052114397287368774, + 0.18168017268180847, + 0.784090518951416, + -0.14111368358135223, + 0.02192954532802105, + 0.030719803646206856, + 0.3032032549381256, + -0.08420298248529434, + 0.02782997488975525, + 0.06785423308610916, + 0.11328525841236115, + 0.10082808136940002, + -0.16480505466461182, + 0.04529346525669098, + -0.12575894594192505, + -0.07754366099834442, + 0.07728524506092072, + -0.11989670246839523, + 0.20140576362609863, + 0.07776980102062225, + -0.08552851527929306, + 0.39243268966674805, + 0.1923070251941681, + -0.05526125058531761, + 0.18072733283042908, + 0.203178271651268, + -0.025029119104146957, + 0.023400433361530304, + 0.7213128209114075, + 0.041662171483039856, + -0.17084194719791412, + -0.015883825719356537, + 0.3305771052837372, + -0.1774233877658844, + 0.0013835951685905457, + -0.16907954216003418, + 0.5131338834762573, + 0.10228943824768066, + 0.08792930841445923, + 0.1645381897687912, + -0.1912781298160553, + -0.004733586683869362, + -0.21751287579536438, + -0.11282221227884293, + 0.06276088953018188, + 0.736221432685852, + 0.0809750184416771, + -0.0762091875076294, + 0.005654092878103256, + -0.055845875293016434, + 0.3342639207839966, + 0.08148550987243652, + -0.35034775733947754, + 0.038957465440034866, + -0.09293025732040405, + -0.39637407660484314, + 0.0864156037569046, + 0.5473430156707764, + -0.03745989501476288, + -0.10053065419197083, + -0.09958784282207489, + -0.07726524025201797, + 0.12702196836471558, + 0.011911008507013321, + -0.09234198927879333, + -0.35910218954086304, + -0.13335870206356049, + -0.0875057727098465, + -0.1451154351234436, + 0.1803293228149414, + 0.030999805778265, + 0.07708922773599625, + -0.2230033576488495, + -0.14729070663452148, + 0.03146910294890404, + 0.08359824120998383, + -0.14710211753845215, + 0.06297829002141953, + -0.23920391499996185, + 0.2447313368320465, + 0.24186104536056519, + 0.030660171061754227, + -0.2537521719932556, + -0.7671850919723511, + 0.04930529743432999, + 0.20597490668296814, + 0.2040739357471466, + -0.03362197428941727, + -0.1483183652162552, + -0.088892862200737, + -0.13360029458999634, + 0.09846252202987671, + -0.052083246409893036, + -0.11027906835079193, + -0.24702461063861847, + 0.1193203330039978, + 0.17529770731925964, + -0.327205628156662, + 0.13634327054023743, + -0.7532446384429932, + 0.04094429686665535, + 0.13684868812561035, + 0.12774384021759033, + -0.14826297760009766, + 3.4057140350341797, + 0.14113211631774902, + 0.4314430356025696, + 0.01483798399567604, + 0.1715824455022812, + -0.24308466911315918, + -0.058372899889945984, + 0.05955592542886734, + -0.0012541264295578003, + -0.023516923189163208, + 0.1585213840007782, + 0.009964004158973694, + 0.17358475923538208, + -0.15646864473819733, + -0.05201329290866852, + -0.6521866917610168, + 0.12213535606861115, + -0.28503087162971497, + 0.02528981864452362, + -0.00924187246710062, + -0.2635369300842285, + -0.2894631028175354, + 0.13561156392097473, + -0.16657352447509766, + -0.041034035384655, + -0.1088317334651947, + 0.0987989753484726, + -0.012180197052657604, + -0.046013519167900085, + 0.2320050299167633, + -0.9493962526321411, + 0.10777796059846878, + -0.0009934883564710617, + -0.5124272704124451, + 0.21015706658363342, + 0.10252506285905838, + -0.28434470295906067, + -0.2678360641002655, + -0.04672478511929512, + -0.06970925629138947, + -0.04906347021460533, + -0.21265393495559692, + -0.12199337780475616, + 0.09265530109405518, + -0.055043406784534454, + 0.11709898710250854, + -0.10185342282056808, + -0.07714833319187164, + -0.12440726906061172, + -0.12609711289405823, + 0.03845987468957901, + -0.07168520987033844, + 0.09723472595214844, + -0.0540812686085701, + -0.01164497435092926, + 0.0941605344414711, + -0.07084590196609497, + 0.48606836795806885, + 0.09489710628986359, + 0.05649537593126297, + -0.1610375940799713, + -0.10145622491836548, + 0.0709635466337204, + 0.10448504984378815, + 0.047516755759716034, + -0.1954854428768158, + -0.12279490381479263, + -0.2167670726776123, + 0.225650355219841, + -0.04503948241472244, + 0.15926828980445862, + -0.03176803141832352, + -0.04322713613510132, + 0.4202510416507721, + -0.08745894581079483, + -0.2822618782520294, + -0.054012730717659, + 0.1440424770116806, + -0.01656855270266533, + -0.023310650140047073, + 0.3854422867298126, + -0.021953653544187546, + -0.053492121398448944, + 0.07484804838895798, + 0.14185570180416107, + 0.25432243943214417, + -0.0478818379342556, + 0.048690617084503174, + 0.18235516548156738, + 0.07799576222896576, + 0.09522254765033722, + 0.20264758169651031, + 0.0950842946767807, + -0.042233169078826904, + 0.08301383256912231, + 0.013576112687587738, + -0.1504230499267578, + -0.13419893383979797, + 0.053921330720186234, + 0.12426017224788666, + -2.114739418029785, + -0.03347273916006088, + 0.04699334129691124, + -0.10274048149585724, + -0.17253360152244568, + 0.14293524622917175, + 0.17553985118865967, + -0.35341840982437134, + -0.9189366102218628, + -0.0005035363137722015, + -0.05726254731416702, + 0.44128209352493286, + -0.04976746812462807, + -0.1615670919418335, + 0.12670177221298218, + -0.04224333167076111, + -0.03460671007633209, + -1.4851133823394775, + -0.23413056135177612, + 0.05416500195860863, + 0.123154416680336, + 0.12223157286643982, + -0.17982766032218933, + -0.09628695249557495, + -0.003817567601799965, + -0.16224126517772675, + 0.11682543158531189, + -0.05007314682006836, + -0.05334993079304695, + 0.007643461227416992, + -0.05009540542960167, + -0.0037967227399349213, + 0.2089577317237854, + 0.06831399351358414, + -0.06722371280193329, + -0.746620774269104, + -0.06911646574735641, + -0.14408905804157257, + 0.45601949095726013, + 0.21590200066566467, + 0.2012999802827835, + -0.11987858265638351, + 0.5894783735275269, + 0.04938419163227081, + 0.05091819167137146, + -0.2232043445110321, + -0.011262690648436546, + -0.3430151641368866, + 0.07012464106082916, + 0.0802469328045845, + 0.18923428654670715, + -0.08073242008686066, + -0.1837902069091797, + -0.07135665416717529, + -0.051028355956077576, + 0.17750993371009827, + -0.03300931677222252, + 0.004606775939464569, + -0.44259583950042725, + -0.14817284047603607, + -0.8711497783660889, + 0.26140737533569336, + 0.03055259771645069, + -0.05545177683234215, + -0.08105821907520294, + -0.015519161708652973, + -0.13243073225021362, + -0.09507071226835251, + -0.03511967882514, + 0.17930126190185547, + 0.26154962182044983, + 0.07692338526248932, + -0.025130601599812508, + 0.0762714147567749, + 0.012569158338010311, + 0.1300983726978302, + -0.19535616040229797, + 0.5088502168655396, + 0.24290573596954346, + 0.08920907229185104, + 0.0661989152431488, + 0.08085332810878754, + -0.024735480546951294, + -0.04431511461734772, + -0.17988251149654388, + -0.18848095834255219, + 0.021552113816142082, + -0.053494010120630264, + -0.004067521542310715, + 0.0484023243188858, + -0.04366448521614075, + -0.28931939601898193, + 0.4190186858177185, + -0.2522362172603607, + -0.03028954565525055, + 0.1450902223587036, + -0.3168178200721741, + 0.38805723190307617, + 0.06507038325071335, + 0.03743894398212433, + -0.11702525615692139, + 0.10545115172863007, + 0.20186755061149597, + -0.005323763936758041, + -0.14682325720787048, + -0.20377561450004578, + 0.11804553121328354, + 0.3392033576965332, + -0.09314055740833282, + -0.15353038907051086, + -0.10035134851932526, + -0.03657316789031029, + 0.18089815974235535, + 0.04951288923621178, + -0.027326341718435287, + 0.09607190638780594, + 0.09405401349067688, + -0.19396360218524933, + 0.2436768263578415, + 0.08659626543521881, + -0.17789818346500397, + 0.022942326962947845, + 0.00452803261578083, + 0.17503860592842102, + 0.19623006880283356, + -0.0962667316198349, + 0.1652517020702362, + -0.004412509500980377, + 0.02263724058866501, + 0.18873000144958496, + -0.12624765932559967, + 0.2807636857032776, + 0.011576060205698013, + -0.11309549957513809, + -0.5824000835418701, + -0.2886784076690674, + 0.671547532081604, + -0.24826458096504211, + 0.11841108649969101, + -0.6570214629173279, + -0.14287695288658142, + 0.04476966708898544, + -0.08606896549463272, + -0.10955213755369186, + 0.08646755665540695, + -0.12715007364749908, + -0.1502830684185028, + -0.07095147669315338, + 0.20956024527549744, + -0.02535107359290123, + 0.09279336780309677, + 0.21563801169395447, + -0.15945905447006226, + -0.3148648142814636, + 0.1507519781589508, + 0.02515529841184616, + -0.002438109368085861, + 0.14718341827392578, + 0.11796189844608307, + 0.15432016551494598, + -0.35558798909187317, + -0.12872804701328278, + 0.35296690464019775, + -0.007559139281511307, + -0.0037244614213705063, + -0.17960605025291443, + 0.12820157408714294, + -0.07785076647996902, + -0.16469642519950867, + 0.23450368642807007, + -0.025600485503673553, + 0.07724916934967041, + -0.23625096678733826, + -0.2406909465789795, + 0.08685891330242157, + 0.03459630906581879, + 0.0498984269797802, + 0.12156658619642258, + 0.02438928373157978, + 0.0962475910782814, + 0.24606919288635254, + 0.07398655265569687, + -0.18049970269203186, + -0.0550677552819252, + -0.0892726480960846, + -0.6806126832962036, + 0.15628352761268616, + 0.04707719385623932, + 0.1095060184597969, + -0.006212830543518066, + 0.14848922193050385, + -0.5087099075317383, + -0.3336407542228699, + -0.12326660007238388, + -0.21484695374965668, + 0.0942181944847107, + 0.25288891792297363, + -0.08546103537082672, + 0.04589945077896118, + -0.013223178684711456, + 0.36103612184524536, + -0.077562615275383, + -0.19432197511196136, + 0.05781092494726181, + 0.1065266951918602, + -0.10148584097623825, + -0.06790301203727722, + -0.18358922004699707, + -0.042165908962488174, + 0.20316696166992188, + -0.26177114248275757, + 0.31333744525909424, + -0.22689233720302582, + -0.13527432084083557, + -0.10824266076087952, + 0.17041641473770142, + 0.10039448738098145, + -0.43165460228919983, + -0.3225780129432678, + 0.09428626298904419, + -0.04103714972734451, + -0.049147412180900574, + -0.1187358945608139, + 0.010338492691516876, + -0.09418186545372009, + 0.034461960196495056, + -0.3292625844478607, + -0.09596753865480423, + -0.12194044888019562, + 0.5518189668655396, + 0.06343082338571548, + 0.012058520689606667, + -0.11952507495880127, + -0.15934684872627258, + 0.024789124727249146, + -0.34961074590682983, + 0.11305306851863861, + 0.01140553317964077, + -0.10806882381439209, + -0.0889202430844307, + 0.25850170850753784, + 0.04385819286108017, + 0.23895639181137085, + 0.05954843759536743, + -0.22188954055309296, + -0.013073226436972618, + -0.06110123172402382, + 0.16441825032234192, + 0.10733051598072052, + 0.0546441487967968, + -0.07380648702383041, + 0.06393669545650482, + -0.09132475405931473, + -0.186504065990448, + 0.06297402083873749, + -0.14251156151294708, + -0.08536198735237122, + 0.33202970027923584, + -0.03183164820075035, + 0.015072453767061234, + -0.04873449355363846, + 0.06468522548675537, + -0.30686360597610474, + -0.09978454560041428, + -0.001217767596244812, + -0.16364341974258423, + -0.8408327102661133, + -0.33653724193573, + -0.11176992207765579, + 0.21173585951328278, + 0.016387224197387695, + 0.26546865701675415, + 0.240985706448555, + -0.1065363883972168, + 0.02864152006804943, + -0.16286718845367432, + 0.2245476096868515, + -0.2509123682975769, + 0.1636076271533966, + 0.03526340052485466, + 0.3084544539451599, + -0.17285865545272827, + -0.01013248972594738, + 0.04155438765883446, + 0.018421966582536697, + -0.08042863011360168, + 0.18872284889221191, + 0.24258053302764893, + 0.12678033113479614, + -0.12380018085241318, + 0.23045697808265686, + -0.0918872132897377, + 0.054015591740608215, + 0.15016524493694305, + 0.09797538816928864, + -0.031148636713624, + 0.038160551339387894, + -0.26728856563568115, + 0.23266994953155518, + 0.18194769322872162, + 0.056604430079460144, + -0.07077489793300629, + 0.0592183917760849, + -0.10473983734846115, + -0.059103041887283325, + 0.006316233426332474, + -0.2663247585296631, + 0.1883789747953415, + 0.08254821598529816, + -0.07151848077774048, + -0.033183589577674866, + 0.05838920176029205, + 0.027087736874818802, + 0.015455015003681183, + -0.19682681560516357, + 0.021040916442871094, + -0.021150361746549606, + -0.010920369997620583, + -0.21052522957324982, + -0.012390397489070892, + 0.09741449356079102, + -0.11330854147672653, + -0.022423718124628067, + 0.0654149055480957, + -0.04812133312225342, + -0.06134631112217903, + 0.01054813526570797, + -0.05059542506933212, + -0.27404746413230896, + 0.07959895581007004, + 0.08014329522848129, + -0.10071208328008652, + -0.06013219431042671, + 0.4465600252151489, + -0.019970491528511047, + 0.013661212287843227, + 0.003773532807826996, + 0.24263139069080353, + 0.1354798972606659, + -0.1638595461845398, + 0.20423108339309692, + -0.05259980633854866, + -0.12150143086910248, + -0.08109092712402344, + -0.09389618039131165, + 0.40082019567489624, + -0.05936669930815697, + -0.11695360392332077, + 0.25353822112083435, + 0.10817566514015198, + 0.06194556877017021, + 0.5988513827323914, + -0.020077429711818695, + -0.043705202639102936, + -0.11834284663200378, + 0.26183703541755676, + -0.10153362154960632, + -0.2669726312160492, + -0.08761163055896759, + -0.13708701729774475, + -0.2807031273841858, + 0.09235738962888718, + -0.2695091962814331, + -0.5384374856948853, + 0.24642139673233032, + -0.06181998550891876, + 0.25971248745918274, + -0.1933540552854538, + -0.1966998279094696, + -0.16035303473472595, + 0.06105552986264229, + 0.042093776166439056, + -0.0010674931108951569, + -0.11161547899246216, + 0.18545930087566376, + -0.19150972366333008, + 0.1627618372440338, + 0.1326187700033188, + -0.17570611834526062, + -0.11552022397518158, + -0.0505271777510643, + 0.18345072865486145, + 0.3177293539047241, + -0.15486322343349457, + -0.08844012022018433, + -0.20871078968048096, + -0.145466148853302, + -0.03662080317735672, + -0.17150090634822845, + 0.16886553168296814, + 0.0520135760307312, + -0.06286759674549103, + 0.0912889912724495, + 0.11586949974298477, + -0.26960280537605286, + 0.15748226642608643, + -0.07080709934234619, + 0.0036341026425361633, + -0.26421618461608887, + -0.1573493480682373, + -0.014277108013629913, + 0.06310709565877914, + -0.162746861577034, + -0.07905765622854233, + 0.05209191143512726, + -0.06971801072359085, + -0.09409516304731369, + 0.08976028859615326, + 0.5013571381568909, + -0.14687450230121613, + -0.29931601881980896, + -0.3372502624988556, + -0.0787537470459938, + 0.08619270473718643, + -0.1387976109981537, + -0.05606096610426903, + 0.047225672751665115, + 0.5200177431106567, + 0.014980018138885498, + -0.05887208878993988, + 0.12237618863582611, + 0.004014893900603056, + -0.16183152794837952, + -0.021387534216046333, + -0.10055232048034668, + -0.026258550584316254, + 0.22564810514450073, + 0.3214842677116394, + -0.35934415459632874, + -0.07069315016269684, + -0.055410437285900116, + -0.7377564907073975, + 0.0826917439699173, + -0.18226364254951477, + -0.02293897047638893, + -0.013144714757800102, + 0.11037808656692505, + 0.18544074892997742, + 0.07884110510349274, + 0.006028380710631609, + -0.05915699154138565, + -0.10260559618473053, + -0.13828206062316895, + 0.0886101946234703, + 0.014985188841819763, + -0.22601589560508728, + 0.20627258718013763, + -0.0443141832947731, + -0.016544077545404434, + 0.030196567997336388, + 0.00285259447991848, + -0.4086526930332184, + 0.13916975259780884, + -0.06797359883785248, + -0.013587908819317818, + -0.13361701369285583, + 0.04994167387485504, + 0.27830663323402405, + 0.31254082918167114, + -0.22987580299377441, + 0.03965337574481964, + -0.029522381722927094, + -0.05023109167814255, + -0.03834317624568939, + -0.20766961574554443, + -0.3457704782485962, + -0.19970041513442993, + -0.07585066556930542, + -0.04810243099927902, + 0.13811779022216797, + -0.14281240105628967, + 0.6117485761642456, + -0.09285478293895721, + 0.027764948084950447, + -0.17389050126075745, + 0.22926083207130432, + -0.14242097735404968, + 0.08654756844043732, + 0.22563302516937256, + 0.08013888448476791, + -0.01837417297065258, + -0.1420375406742096, + -0.20238050818443298, + 0.07855894416570663, + 0.014157787896692753, + -0.14775660634040833, + 0.10354894399642944, + -0.30647537112236023, + 0.059986405074596405, + 0.053513798862695694, + -0.036234982311725616, + -0.01355714537203312, + -0.12334020435810089, + 0.06891737133264542, + 0.0102958083152771, + -0.050030577927827835, + 0.15724006295204163, + 0.30876731872558594, + 0.15307767689228058, + -0.18262557685375214, + 0.00403648242354393, + -0.10095628350973129, + -0.1890069842338562, + 0.4077307879924774, + 0.1591096818447113, + -0.007677106186747551, + 0.11664387583732605, + 0.10265778005123138, + 0.8671356439590454, + 0.14597837626934052, + -0.24937714636325836, + -0.27358558773994446, + 0.23304563760757446, + -0.013986763544380665, + -0.021899215877056122, + 0.17679792642593384, + -0.2306932806968689, + 0.0713701993227005, + 0.000364567618817091, + 0.2951298654079437, + -0.12391765415668488, + -0.13920976221561432, + -0.1273135542869568, + -0.045668791979551315, + 0.09640341997146606, + -0.15302838385105133, + 0.5210765600204468, + 0.09928394854068756, + 0.22960804402828217, + -0.0932997614145279, + -0.21601973474025726, + -0.032682374119758606, + 0.07371018081903458, + 0.043028682470321655, + 0.03150932490825653, + 0.033302053809165955, + 0.2857869267463684, + -0.09239651262760162, + -0.09765732288360596, + -0.2340090125799179, + 0.004069413989782333, + 0.0678546354174614, + 0.07860009372234344, + 0.007866047322750092, + -0.12261660397052765, + -0.1685212254524231, + 0.0014281831681728363, + 0.09960393607616425, + -0.030360694974660873, + -0.03025228902697563, + 0.24407565593719482, + 0.17005380988121033, + -0.07380492985248566, + -0.03892599791288376, + -0.3509351313114166, + -0.17800843715667725, + 0.11682618409395218, + -0.052685368806123734, + -0.39458656311035156, + 1.1814773082733154, + 0.09021295607089996, + 0.22489282488822937, + 0.07546836882829666, + 0.16496479511260986, + -0.1333855837583542, + 0.501467227935791, + -0.11850918084383011, + -0.3901975154876709, + 0.08116514980792999, + 0.39151298999786377, + -0.09121829271316528, + 0.5150079727172852, + -0.1812475621700287, + 0.1951710432767868, + -0.008979201316833496, + 0.29427921772003174, + 0.2372610867023468, + -0.23334550857543945, + 0.01628742553293705, + -0.03037899173796177, + -0.17300084233283997, + -0.150589257478714, + 0.22123633325099945, + -0.24011215567588806, + 0.2369726598262787, + 0.1374271661043167, + 0.1289009004831314, + -0.005646146833896637, + 0.30954986810684204, + 0.12301012128591537, + -0.24276503920555115, + -0.1185467541217804, + 0.09894502907991409, + -0.07388556748628616, + -0.08655981719493866, + -0.054837416857481, + -0.39370208978652954, + 0.016441186890006065, + 0.010215416550636292, + 0.11039198935031891, + -0.11135862022638321, + 0.01992756873369217, + -0.18738257884979248, + -0.0762026309967041, + -0.016007181257009506, + -0.03243378549814224, + 0.14768098294734955, + -0.048256389796733856, + -0.1450938582420349, + 0.19052354991436005, + -0.014040790498256683, + 0.056886397302150726, + 0.08288761973381042, + -0.19383129477500916, + -0.17193031311035156, + -0.22691215574741364, + 0.3057939410209656, + -0.05852021276950836, + -0.35636094212532043, + -0.16517595946788788, + -0.025233499705791473, + 0.12522092461585999, + 0.045438747853040695, + -0.3053279519081116, + 18.857013702392578, + -0.0872279703617096, + 0.29870736598968506, + 0.0019886288791894913, + 0.08310830593109131, + -0.019438613206148148, + 0.2431129813194275, + -0.1542791873216629, + 0.23289406299591064, + -0.10429844260215759, + 0.030662162229418755, + 0.10741923004388809, + 0.2975713014602661, + -0.11164958029985428, + -0.05983817204833031, + 0.16782967746257782, + 0.15073144435882568, + 0.18416771292686462, + 0.04282801225781441, + -0.18888726830482483, + 0.12013466656208038, + 0.07527083158493042, + 0.0014098398387432098, + -0.11984091997146606, + -0.34624284505844116, + -0.03675093129277229, + -0.11383633315563202, + 0.15412354469299316, + 0.16079173982143402, + -0.08150133490562439, + 0.14018920063972473, + 0.13595744967460632, + -0.007373658940196037, + -0.08877032995223999, + 0.07484836876392365, + 0.012652631849050522, + -0.1229342520236969, + -0.39012610912323, + -0.292339950799942, + 0.04999176785349846, + -0.09359556436538696, + 0.0864659994840622, + 0.11649425327777863, + 0.031905099749565125, + -0.09394874423742294, + 0.26402753591537476, + 0.07597421109676361, + -0.03326164931058884, + -0.1822308599948883, + 0.0872097909450531, + -0.13077440857887268, + 0.02854374796152115, + -0.017057839781045914, + 0.43067580461502075, + 0.055983882397413254, + 0.05225195735692978, + 0.10901371389627457, + 0.1725616157054901, + 0.25697094202041626, + 0.16103415191173553, + 0.06032368913292885, + 0.2818947434425354, + -0.2951442301273346, + -0.07470625638961792, + 0.028336603194475174, + -0.09633994102478027, + -0.13708841800689697, + 0.08966586738824844, + 0.11873198300600052, + -0.38128530979156494, + 0.12777380645275116, + -0.5229775309562683, + 0.05363660305738449, + 0.4960048794746399, + -0.16367465257644653, + 0.07702010869979858, + 0.012293379753828049, + 0.002458984963595867, + 0.110280342400074, + 0.025389881804585457, + -0.08518461883068085, + -0.1276746392250061, + -0.12450694292783737, + -0.20020458102226257, + -0.12492348253726959, + -0.21130463480949402, + 1.4995899200439453, + -0.010330568999052048, + -0.10856017470359802, + -0.1376771330833435, + 0.10952617228031158, + 0.058181729167699814, + 0.19758197665214539, + 0.18326735496520996, + 0.11357943713665009, + 0.1764938235282898, + -0.2854617238044739, + -0.25836706161499023, + -0.21692721545696259, + 0.035150833427906036, + -0.0014596367254853249, + -0.017131932079792023, + 0.05609649419784546, + -0.11302081495523453, + -0.2318318635225296, + 0.10451754927635193, + 0.05182657390832901, + 0.08379818499088287, + -0.07782736420631409, + -0.03702577203512192, + -0.15759927034378052, + 0.08639275282621384, + -0.1305907964706421, + -0.11057707667350769, + 0.16129246354103088, + 0.22752565145492554, + -0.23430892825126648, + 0.1463598757982254, + 0.10169952362775803, + -0.018878623843193054, + 0.010727926157414913, + 0.07448685169219971, + 0.3788963556289673, + 0.0242159366607666, + -0.2339308112859726, + -0.15219394862651825, + 0.07340121269226074, + -0.09488998353481293, + -0.08971871435642242, + -0.19448694586753845, + -0.4198821783065796, + 0.29437607526779175, + -0.02522781491279602, + 0.2307763397693634, + -0.1399955302476883, + -0.05689083784818649, + 0.17737895250320435, + 0.042446818202733994, + -0.06579087674617767, + -0.030015312135219574, + -0.12411906570196152, + -0.06941068172454834, + -0.21899005770683289, + -0.09585846960544586, + 0.40645474195480347, + -0.049139656126499176, + 0.6440051794052124, + 0.14382889866828918, + 0.23675215244293213, + -0.034180447459220886, + 0.0763162299990654, + 0.19198235869407654, + -0.10132923722267151, + 0.14727556705474854, + 0.11066539585590363, + -0.03597559779882431, + -0.14838173985481262, + -0.09700622409582138, + 0.4677809476852417, + -0.06859661638736725, + 0.07321924716234207, + -0.1436445415019989, + 0.42406177520751953, + 0.8786634802818298, + 0.09359084069728851, + 0.09901481866836548, + 0.43075841665267944, + 0.0824960470199585, + -0.1894683539867401, + -0.254157692193985, + 0.09278404712677002, + 0.0225366298109293, + -0.009811099618673325, + 0.12034033238887787, + 0.2130148708820343, + -0.00786074809730053, + 0.03485589101910591, + -0.02149883657693863, + -0.14467258751392365, + 0.08961499482393265, + 0.2060098797082901, + 0.10939048230648041, + -0.1489029973745346, + 0.02479807287454605, + -0.8699288964271545, + -0.04895023629069328, + 0.053842417895793915, + -0.03890606760978699, + -0.08717527985572815, + -0.18401354551315308, + 0.15517506003379822, + 0.30241864919662476, + -0.1411738395690918, + 0.13510531187057495, + 0.04427872225642204, + 0.019946660846471786, + -0.08253473043441772, + -0.06282448768615723, + -0.1787032186985016, + -0.1950162649154663, + 0.2507186532020569, + -0.036230966448783875, + -0.06974098086357117, + -0.13934214413166046, + 0.16501636803150177, + -0.049334414303302765, + 0.08987639844417572, + 0.10654149204492569, + -8.792057633399963e-05, + -0.016774117946624756, + -0.0001140795648097992, + -0.10137294232845306, + -0.25739312171936035, + -0.1367170214653015, + 0.07797178626060486, + -0.14025717973709106, + -0.01662147231400013, + -0.21790799498558044, + 0.09635463356971741, + -0.15396569669246674, + 0.4662286639213562, + -0.09401269257068634, + -0.05326342210173607, + 0.17089632153511047, + 0.09596750885248184, + 0.13084028661251068, + 0.9359078407287598, + -0.17497648298740387, + 0.0002786777913570404, + -0.24903392791748047, + 0.12479686737060547, + 0.003216039389371872, + 0.03269895538687706, + -0.0945916622877121, + 0.16573825478553772, + -0.5754947066307068, + 0.005084124393761158, + 0.16095629334449768, + -0.13999226689338684, + -0.04588931053876877, + 0.0018521938472986221, + 0.15204007923603058, + 0.0859692245721817, + -0.06334377825260162, + 0.02235996164381504, + 0.3750430941581726, + 0.11377407610416412, + -0.39286473393440247, + 0.16797031462192535, + 0.21981699764728546, + -0.052927415817976, + 0.10377643257379532, + 0.056749165058135986, + -0.024306848645210266, + -0.14571616053581238, + -0.006563728675246239, + 0.00742066465318203, + -0.1129215806722641, + -0.010858984664082527, + 0.1864628791809082, + -0.17370563745498657, + 0.18310752511024475, + 0.018851108849048615, + 0.14422301948070526, + -0.040410324931144714, + -0.058889154344797134, + 0.0012691952288150787, + -0.2459568977355957, + -0.07406052201986313, + 0.04852059856057167, + -0.08473241329193115, + -0.17842164635658264, + -0.31524914503097534, + 0.06872968375682831, + 0.3055039644241333, + 0.058104008436203, + 0.08021330833435059, + -0.1390162706375122, + -0.06182059645652771, + 0.06331466138362885, + 0.07162901759147644, + 0.07706207036972046, + -0.15076999366283417, + -0.10856424272060394, + 0.32057666778564453, + 0.05539393797516823, + -0.017550911754369736, + -0.1248554140329361, + -0.06817363947629929, + -0.19421665370464325, + 0.08318721503019333, + -0.04483276233077049, + 0.021247880533337593, + 0.4208521544933319, + 0.047819480299949646, + -0.04014235734939575, + -0.10501182079315186, + 0.15197324752807617, + -0.21456198394298553, + 0.002436339855194092, + -0.06296807527542114, + -0.08561597019433975, + -0.06910782307386398, + -0.04916615039110184, + -0.22787676751613617, + 0.08728662133216858, + 0.10790671408176422, + -0.10227760672569275, + 0.20275381207466125, + -0.22207552194595337, + -0.04729156196117401, + -0.10455187410116196, + -0.052421294152736664, + 0.2167578935623169, + 0.6311007738113403, + -0.19640812277793884, + 0.11376157402992249, + -0.020509015768766403, + 0.11243501305580139, + -0.26054832339286804, + -0.6262387037277222, + -0.21500572562217712, + 0.09637171775102615, + 0.09036547690629959, + 0.06573137640953064, + 0.11572778970003128, + -0.14839588105678558, + 0.22743460536003113, + 0.30897414684295654, + 0.045682962983846664, + -0.12404772639274597, + 0.2700965404510498, + 0.3122033476829529, + 0.18673954904079437, + -0.1832159012556076, + 0.22206367552280426, + -0.06427422910928726, + 0.07690996676683426, + -0.009909840300679207, + -0.14987802505493164, + -0.5517820715904236, + -0.005601132288575172, + -0.11122879385948181, + 0.11237255483865738, + -0.036787547171115875, + -0.2093365490436554, + 0.15382732450962067, + -0.15876977145671844, + 0.18532758951187134, + 0.08240605145692825, + 0.24479860067367554, + -0.030915606766939163, + 0.002443423494696617, + -0.2664819061756134, + 1.5861449241638184, + 0.02401919849216938, + -0.09488748013973236, + 0.004315223544836044, + -0.18707583844661713, + 0.09380064904689789, + -0.37599676847457886, + 0.09980058670043945, + -1.2617548704147339, + 0.18619322776794434, + 1.6091222763061523, + 0.6365091800689697, + -0.17545711994171143, + 0.19847342371940613, + -0.23455065488815308, + -0.07883745431900024, + 0.11219519376754761, + -0.16472990810871124, + -0.20441526174545288, + -0.1220095306634903, + -0.19439873099327087, + -0.07459215819835663, + 0.1622833013534546, + 0.07520495355129242, + 0.05395388975739479, + 0.1643868088722229, + -0.2989664077758789, + -0.4466211199760437, + -0.34914568066596985, + 0.25426679849624634, + -0.1024429127573967, + 0.07919906824827194, + 0.1012076884508133, + -0.09681545197963715, + 0.07550984621047974, + 0.2832566201686859, + 0.021382786333560944, + 0.016877491027116776, + -0.045662060379981995, + -0.26917174458503723, + 0.03903266787528992, + -0.23900720477104187, + 0.19653046131134033, + -0.06123531609773636, + 0.009078891947865486, + 0.007403096184134483, + 0.014896813780069351, + 0.10413449257612228, + -0.06524570286273956, + 0.011390520259737968, + 0.2992994487285614, + -0.12553194165229797, + 0.7762449383735657, + -0.4320182800292969, + 0.09273237735033035, + -0.1012825295329094, + 0.1229790598154068, + 0.5799223184585571, + 0.21772831678390503, + -0.15862411260604858, + -0.20032158493995667, + 0.0444764606654644, + 0.07472338527441025, + 0.2786107659339905, + -0.06492118537425995, + 0.17357897758483887, + 0.15120598673820496, + 0.02279832772910595, + 0.13269753754138947, + -0.04551054537296295, + -0.132293239235878, + -0.11522576212882996, + -0.08790450543165207, + -0.07039481401443481, + 0.1533217579126358, + 0.19478121399879456, + 0.2474164068698883, + 0.12228575348854065, + -0.040828898549079895, + 0.04274679720401764, + 0.09814885258674622, + -0.3000674545764923, + 0.013068684376776218, + 1.9593939781188965, + 400.19415283203125, + -0.09042426943778992, + 0.08769181370735168, + 0.1304207146167755, + -0.0787959098815918, + 0.28586792945861816, + 0.3671308159828186, + -0.1718420386314392, + -2.303131341934204, + -0.5611149072647095, + -0.16699156165122986, + 0.001307908445596695, + -0.1863236129283905, + 0.18309688568115234, + 0.05928519368171692, + 0.2392747700214386, + -0.028297320008277893, + -0.3655607998371124, + -0.24590717256069183, + 0.010914947837591171, + -0.1846437305212021, + 0.33729708194732666, + -0.06752959638834, + -0.17869672179222107, + 0.04271797835826874, + 0.20049074292182922, + -0.10700307786464691, + -0.039118461310863495, + -0.10993466526269913, + 0.03460134193301201, + 0.10727585852146149, + 0.05630633607506752, + 0.0023062368854880333, + -0.2698800563812256, + 0.17497748136520386, + -0.08548182249069214, + -0.20479273796081543, + -0.21715420484542847, + 0.003990404307842255, + -0.21884532272815704, + 0.13650092482566833, + 0.10586610436439514, + 0.045182958245277405, + 0.10447877645492554, + 0.02888963185250759, + -0.02580903470516205, + 0.2021266222000122, + -0.12543734908103943, + -0.08262138813734055, + -0.033942997455596924, + 0.14228792488574982, + -0.09186757355928421, + -0.006820939481258392, + -0.021503932774066925, + 0.08637012541294098, + -0.1334662139415741, + 0.1421053409576416, + -0.8411264419555664, + 0.11242784559726715, + 0.2607801556587219, + -0.0778207778930664, + -0.04167737439274788, + 0.17639142274856567, + 0.06785394251346588, + -0.16188770532608032, + 0.06852312386035919, + -0.14503595232963562, + -1.2349827289581299, + -0.3098733425140381, + -0.06263426691293716, + 0.16844981908798218, + 0.17731250822544098, + -0.0944519191980362, + 0.000135103240609169, + 0.3763299882411957, + 0.18190525472164154, + 0.04309516400098801, + -0.15253791213035583, + 0.4853176474571228, + -0.11261220276355743, + 0.20687121152877808, + 0.026730917394161224, + -0.19145429134368896, + 0.20382475852966309, + -0.05376478284597397, + -0.2440648078918457, + 0.17988239228725433, + 0.04258203133940697, + -0.2430170178413391, + -0.09262469410896301, + 0.06428667902946472, + 0.07095986604690552, + 0.07991278916597366, + -0.16219353675842285, + -0.20017075538635254, + -0.04496436193585396, + -0.06389282643795013, + 0.11464030295610428, + 0.026879118755459785, + 0.17427806556224823, + 0.03395228832960129, + -0.09875854104757309, + -0.1661592423915863, + 0.1619057059288025, + 0.11933711171150208, + 0.24740025401115417, + 0.08012957870960236, + -0.24600043892860413, + -0.11358329653739929, + -0.027164477854967117, + -0.19218267500400543, + -0.21240250766277313, + -0.0012561730109155178, + -0.12626540660858154, + -0.0693816989660263, + 0.40860113501548767, + -0.03253260999917984, + 0.24416865408420563, + -0.19834473729133606, + 0.029517877846956253, + 0.0009969063103199005, + -0.02707391232252121, + -0.4107518792152405, + -0.24983401596546173, + -0.1908039003610611, + 0.040978144854307175, + -0.19502654671669006, + -0.05421096086502075, + 0.008282117545604706, + -0.07242553681135178, + -0.33534491062164307, + 0.13928550481796265, + 0.039624862372875214, + -0.11583253741264343, + -0.03559396415948868, + -0.16925334930419922, + 0.013437829911708832, + -0.5659615993499756, + -0.3243495523929596, + -0.03189726173877716, + 0.01810554787516594, + -0.22034676373004913, + 0.22231987118721008, + -0.05673282966017723, + -0.1588640809059143, + 0.30818355083465576, + -0.03276125341653824, + 0.005638552829623222, + 0.07543572038412094, + 0.12248875945806503, + 0.07248737663030624, + 0.048580750823020935, + 0.23070615530014038, + -0.21242444217205048, + -0.03840535506606102, + -0.2098144292831421, + 0.1935265213251114, + -0.3342209458351135, + 0.08255114406347275, + 0.07213559001684189, + 0.014932522550225258, + -0.02873840369284153, + 0.3308478891849518, + -0.08835998177528381, + -0.09908808767795563, + -0.24880030751228333, + -0.09249471873044968, + 0.041061751544475555, + 0.2040049135684967, + 0.019581634551286697, + 0.3724808096885681, + 0.13570266962051392, + -0.3282621502876282, + 0.07543732225894928, + -0.13739192485809326, + 0.08213316649198532, + -0.4100177586078644, + -0.060186807066202164, + -0.17512670159339905, + -0.006283190101385117, + -0.07771577686071396, + -0.17507100105285645, + -0.07131537050008774, + -0.03129987046122551, + -0.2513112723827362, + -0.10099683701992035, + -0.08371651917695999, + -0.11592710018157959, + -0.051617395132780075, + -0.2760010361671448, + 0.012998554855585098, + -0.17867547273635864, + 0.21874293684959412, + -0.12667371332645416, + 0.13693608343601227, + -0.013680032454431057, + -0.032353051006793976, + -0.1376313418149948, + -0.10581765323877335, + 0.07166782766580582, + -0.005637109279632568, + 0.20278137922286987, + -0.24443115293979645, + 0.25663238763809204, + 0.18387717008590698, + 0.02167193591594696, + -0.140913724899292, + 0.10575948655605316, + -0.014713986776769161, + 0.19244948029518127, + 0.6275730729103088, + 0.004764385521411896, + 0.1794443428516388, + 0.14208897948265076, + -0.19049827754497528, + -0.2593642473220825, + 0.167900949716568, + -0.1900370717048645, + -0.4473845064640045, + -0.0026482176035642624, + -0.17683854699134827, + 0.12618523836135864, + 0.08662953972816467, + 0.05399678647518158, + 0.2469424605369568, + 0.1028314083814621, + -0.18494245409965515, + 0.15070465207099915, + 0.03803112357854843, + -0.03501908481121063, + 0.026116639375686646, + -0.008641120046377182, + -0.1007368415594101, + -0.041404370218515396, + -0.0028443150222301483, + -0.00886005163192749, + 0.7465531229972839, + -0.05006994679570198, + -0.2055637240409851, + 0.114458367228508, + 0.06402038037776947, + -0.08640493452548981, + 0.2836254835128784, + 0.033757418394088745, + 0.18816237151622772, + 0.1669514775276184, + -0.03985782712697983, + -0.12866267561912537, + 0.04910006746649742, + -0.688607931137085, + -0.4822573661804199, + -0.022466856986284256, + 0.04136611148715019, + 0.16545721888542175, + -0.04894743487238884, + 0.12712430953979492, + -0.7866840958595276, + 0.024727024137973785, + -0.11305604875087738, + -0.08022992312908173, + -0.01963239349424839, + -0.08216545730829239, + -0.055238619446754456, + 0.11001791059970856, + 0.29050734639167786, + -0.05541418120265007, + 0.1390964686870575, + 0.35319626331329346, + -0.12914760410785675, + -0.084623783826828, + -0.37503552436828613, + -0.21085669100284576, + 0.4538748860359192, + -0.18875497579574585, + 0.10021263360977173, + -0.1489151269197464, + 0.0665060356259346, + 0.19272634387016296, + -0.17641779780387878, + 0.12736421823501587, + 0.1402568221092224, + 0.085049569606781, + -0.17483177781105042, + 0.19804203510284424, + 0.022020868957042694, + 0.10509330034255981, + -0.31780174374580383, + -0.07778523117303848, + 0.5142648220062256, + -0.17595502734184265, + 0.10541866719722748, + 1.6598962247371674e-05, + 0.023517917841672897, + -0.1753200888633728, + 0.06214258074760437, + -0.12312930077314377, + 0.05981163680553436, + -0.939083456993103, + 0.08186423778533936, + -0.10091700404882431, + 0.1218893975019455, + 0.20308196544647217, + 0.05891411006450653, + -1.370619535446167, + -0.07342849671840668, + 0.21325188875198364, + 0.017375044524669647, + 0.32990220189094543, + -0.16953229904174805, + 0.1118449717760086, + -0.5681256055831909, + 0.36035236716270447, + 0.1223384365439415, + -0.03644291311502457, + 0.03400257229804993, + 0.5252257585525513, + -0.031840309500694275, + 0.3428027927875519, + 0.13835392892360687, + -0.04340951517224312, + -0.0362781397998333, + -0.12623371183872223, + -0.07489971816539764, + -0.0035989880561828613, + 0.07666943967342377, + -0.15608569979667664, + -0.062226369976997375, + -0.10734357684850693, + 0.12649677693843842, + 0.010362513363361359, + -0.06311720609664917, + -0.0795905590057373, + 0.012846045196056366, + 0.15306267142295837, + -0.19793982803821564, + 0.1391351819038391, + 0.34224098920822144, + 0.6251205205917358, + 0.020800136029720306, + -0.19495654106140137, + 0.06604225188493729, + -0.02440517768263817, + 0.03155434876680374, + -1.6039725542068481, + -0.04086938872933388, + 0.07726965099573135, + 0.22768044471740723, + -0.7148520946502686, + 0.3513248562812805, + 0.0037746476009488106, + 0.07983304560184479, + 0.10448629409074783, + 0.12217094749212265, + -0.15568915009498596, + 0.16136208176612854, + 0.1563168466091156, + 0.24317368865013123, + -0.27642157673835754, + -0.04654873535037041, + -0.13029848039150238, + 0.06223052367568016, + 0.3054971694946289, + 0.05438552051782608, + 0.0029123835265636444, + -0.09469567239284515, + 0.26001060009002686, + -0.14283527433872223, + -0.2956453263759613, + 0.09109416604042053, + 0.08399426192045212, + -0.024337170645594597, + -0.20119380950927734, + -0.16450008749961853, + 0.014777298085391521, + -0.00460380595177412, + -0.08122467994689941, + 4.139474391937256, + 0.20105507969856262, + 0.024409174919128418, + -0.32959699630737305, + 0.0700746476650238, + -0.06625926494598389, + -0.03034888207912445, + -0.08334535360336304, + -1.0343291759490967, + 0.1755072921514511, + 0.047709595412015915, + -0.6236447095870972, + -0.14602366089820862, + -0.029226649552583694, + 0.16370630264282227, + -0.09426981210708618, + -0.09844382107257843, + 0.0956479012966156, + 0.5835853815078735, + -0.08543530106544495, + -0.05714254826307297, + 0.16990073025226593, + -0.16730400919914246, + -0.23703482747077942, + -0.2650038003921509, + 0.2353193610906601, + 0.021762194111943245, + -0.11542738974094391, + -0.08910908550024033, + -0.2579363286495209, + -0.02192584238946438, + 0.07446370273828506, + -0.3317418098449707, + -0.050595931708812714, + 0.33443695306777954, + 0.03156241402029991, + -0.15900591015815735, + -0.03649378940463066, + 0.1811225265264511, + 0.10842522978782654, + -0.08231978118419647, + 0.02693925052881241, + 0.10723697394132614, + 0.2121007740497589, + 0.4691407084465027, + 0.20469053089618683, + -0.15589086711406708, + -0.17809566855430603, + -0.487522155046463, + -0.09166277945041656, + -0.0011907704174518585, + -0.19440922141075134, + 0.05072362348437309, + 0.07853192836046219, + 0.09388445317745209, + 0.16979211568832397, + -0.2653241753578186, + 0.05662381649017334, + 0.05144142359495163, + 0.03713436424732208, + 0.1998976171016693, + -0.37170788645744324, + 0.034154970198869705, + 0.005583703517913818, + 0.03664746135473251, + -0.028220748528838158, + 0.02535630762577057, + -0.10245626419782639, + 0.11439970135688782, + 0.06662742793560028, + -0.31800466775894165, + -0.14439716935157776, + 0.036706387996673584, + -0.13271589577198029, + 0.15017852187156677, + 0.36800557374954224, + -0.09318367391824722, + 0.03373732790350914, + -0.0332157202064991, + 0.13793867826461792, + -0.005549859255552292, + -0.3634120225906372, + -0.10183123499155045, + -0.0044394005089998245, + 0.015032082796096802, + 0.19968289136886597, + -0.17150245606899261, + 0.037018150091171265, + 0.13685280084609985, + 0.07095208764076233, + -0.2521572411060333, + -0.034182894974946976, + 0.028622332960367203, + 0.20436809957027435, + 0.05961724370718002, + -0.43516555428504944, + 0.21578876674175262, + -0.07704877108335495, + -0.22866040468215942, + -0.07802824676036835, + -0.11764004081487656, + -0.009535655379295349, + -0.11785691976547241, + 0.07435201108455658, + -0.1740427017211914, + -0.1732863485813141, + 0.28576570749282837, + 0.03071467950940132, + 0.12096680700778961, + 0.018864203244447708, + -0.03989231213927269, + 0.23927465081214905, + -0.060234129428863525, + -0.019026553258299828, + 0.008978370577096939, + 0.14748047292232513, + -0.012456417083740234, + -0.038680799305438995, + -0.06347613036632538, + -0.006018403917551041, + -0.02183021605014801, + -0.08131736516952515, + -0.05191275477409363, + 0.012677639722824097, + 0.04877959191799164, + 0.034515608102083206, + -0.08947289735078812, + 0.0657014399766922, + -0.15359771251678467, + 0.18093349039554596, + 0.2632080912590027, + -0.10506909340620041, + -0.0856640636920929, + -0.09299210458993912, + 0.0820271223783493, + 0.06001269444823265, + 0.007374882698059082, + -0.0531194731593132, + 0.007040103897452354, + -0.1343194544315338, + 0.13435542583465576, + -0.619415283203125, + -0.24228382110595703, + -0.2161865085363388, + -0.10182659327983856, + -0.0877213180065155, + 0.13707172870635986, + -0.15728721022605896, + -0.5118765830993652, + -0.24546745419502258, + -0.1316407471895218, + 0.44449469447135925, + 0.02652556635439396, + 0.07034605741500854, + 0.0018317736685276031, + -0.25710731744766235, + -0.030131598934531212, + -0.3974325954914093, + -0.5990699529647827, + 0.05545612424612045, + -0.48221665620803833, + -0.00030260486528277397, + 0.1903197467327118, + -0.4739799201488495, + 0.08903712034225464, + -0.10119324922561646, + 0.057219114154577255, + -0.11694256961345673, + 0.15878891944885254, + 0.27031177282333374, + 0.24425680935382843, + 0.25658148527145386, + -0.10684269666671753, + -0.09609251469373703, + -0.14648649096488953, + -0.1635626256465912, + 0.06694357097148895, + -0.38260531425476074, + -0.0496973991394043, + -0.03430749475955963, + 0.5517897605895996, + -0.39358940720558167, + -0.3294740617275238, + 0.40450191497802734, + -0.2340942919254303, + -0.26070740818977356, + 0.053174592554569244, + 0.048972368240356445, + -0.12842851877212524, + -1.1870570182800293, + -0.18025809526443481, + -0.05816394090652466, + 0.0859784409403801, + 0.04273573309183121, + 0.4253934919834137, + 0.13461622595787048, + -0.2860134243965149, + -0.04897996038198471, + 0.004161002114415169, + -0.05091376602649689, + 0.001937204971909523, + -0.02782481536269188, + -0.17808087170124054, + -0.12207619845867157, + 0.053216855973005295, + 0.1708933413028717, + 0.15254127979278564, + -0.3444918096065521, + -0.061249785125255585, + 0.22011518478393555, + 0.03423329442739487, + -0.0005021551623940468, + -0.07497448474168777, + 0.2796217203140259, + 0.1211143359541893, + 0.0032757632434368134, + -0.09853079169988632, + 0.12920540571212769, + -0.1433437615633011, + -0.22448399662971497, + 0.016627594828605652, + 0.006546732038259506, + -0.22408346831798553, + 0.20506735146045685, + 0.04546082764863968, + -0.10912810266017914, + 0.18208666145801544, + -0.06475427001714706, + 0.199888676404953, + 0.08383658528327942, + -0.14543485641479492, + -0.12805818021297455, + -0.05698508769273758, + -0.09641920030117035, + 0.2161630541086197, + 0.2286825180053711, + -0.14601272344589233, + 0.07672373950481415, + -0.08757563680410385, + -0.0915369987487793, + 0.014061985537409782, + -0.15721605718135834, + 0.11711534112691879, + -0.14476165175437927, + 0.2600480616092682, + -0.13774119317531586, + 0.1408727914094925, + -0.34858930110931396, + 0.15616902709007263, + -0.03962526470422745, + 0.05426107719540596, + -0.09089227020740509, + 0.03314565494656563, + 0.2286245971918106, + -0.05088980868458748, + -0.07544748485088348, + 0.33917713165283203, + -0.24239447712898254, + -0.021062590181827545, + -0.06213388964533806, + 0.32734596729278564, + 0.013155842199921608, + 0.024753369390964508, + -0.19695191085338593, + -0.06524882465600967, + 0.038922227919101715, + 0.10014506429433823, + 0.05984389781951904, + -0.3371092975139618, + -0.29746586084365845, + -0.10651034116744995, + 0.02226027101278305, + 0.09700033813714981, + -0.25387200713157654, + -0.24266836047172546, + -0.03478250652551651, + 0.10947787016630173, + -0.2956179976463318, + 0.08550848066806793, + -0.6037024855613708, + -0.16191460192203522, + -1.3939827680587769, + -0.2913095951080322, + -0.11617016792297363, + -0.20274849236011505, + -0.33401861786842346, + 0.12697701156139374, + -0.10375437885522842, + 0.07496258616447449, + 0.12822018563747406, + -0.12142511457204819, + 0.20697204768657684, + 0.0712418183684349, + -0.036123402416706085, + 0.1981358677148819, + -0.291744202375412, + -0.06544731557369232, + -0.04110334441065788, + -0.08746715635061264, + -0.0017258897423744202, + 0.2714487314224243, + 0.020046744495630264, + 0.04827061668038368, + -0.28706032037734985, + -0.03582293912768364, + 0.16452980041503906, + 0.05336824059486389, + -0.4205099940299988, + 0.010618919506669044, + 0.028716955333948135, + 0.17669445276260376, + 0.22322353720664978, + 1.6340292692184448, + 0.15559536218643188, + 0.01565604656934738, + -0.15054139494895935, + 0.42568713426589966, + -0.016316095367074013, + 0.08649042248725891, + 0.08256468176841736, + -0.11392495781183243, + -0.01566769741475582, + 0.057253647595644, + -0.07272990047931671, + 0.40715348720550537, + 0.11655939370393753, + -0.7830561995506287, + 0.21706849336624146, + -0.06929086148738861, + -0.1302022635936737, + -0.024005908519029617, + -0.011783022433519363, + 0.15919315814971924, + 0.0988052636384964, + -0.22841396927833557, + -0.12932050228118896, + -0.2756459712982178, + -0.03800060972571373, + 0.11424926668405533, + 0.8002386093139648, + -0.13064183294773102, + -0.19976407289505005, + 0.0659303292632103, + -0.29724735021591187, + 0.03691321238875389, + -0.139328271150589, + 0.07325729727745056, + 0.131170392036438, + 0.6186315417289734, + 0.04937654361128807, + 0.09027466177940369, + 0.13155655562877655, + -0.4142979383468628, + 0.1058553010225296, + 0.055392660200595856, + 0.5279094576835632, + 0.19421041011810303, + -0.003995828330516815, + 6.123690605163574, + -0.2764202952384949, + -0.022144630551338196, + 0.11054255813360214, + -0.3126178979873657, + -0.016277631744742393, + -0.023363441228866577, + 0.09765458106994629, + 0.2544645071029663, + -0.09138830006122589, + 0.07351148128509521, + -0.14187611639499664, + -0.0383526049554348, + -0.2596137523651123, + 0.00359425600618124, + -0.0903003066778183, + -0.6564229726791382, + 0.007794952020049095, + 0.0762149915099144, + -0.1864793598651886, + 0.08424221724271774, + -0.014969984069466591, + -0.110084168612957, + -0.018239067867398262, + -0.05501881241798401, + -0.5997422933578491, + 0.10461629182100296, + -0.23648707568645477, + -0.1931307166814804, + 0.05901767313480377, + 0.0485837496817112, + 0.17608322203159332, + 0.24645881354808807, + -0.07223911583423615, + -0.021172955632209778, + 0.2837218642234802, + -0.023360680788755417, + -0.06756768375635147, + -0.06276710331439972, + 0.021944621577858925, + -0.13686136901378632, + -0.20900243520736694, + -0.24720267951488495, + 0.13314548134803772, + 0.10572455823421478, + -0.00849699042737484, + -0.09836907684803009, + -0.021401165053248405, + -0.0766599178314209, + -0.3051277995109558, + 0.10462558269500732, + -0.04965243861079216, + 0.13058899343013763, + -0.03440491855144501, + -0.08599875867366791, + 0.020073313266038895, + -0.05333692580461502, + 0.2568076550960541, + -0.035116877406835556, + 0.026119738817214966, + -0.20709562301635742, + 0.07850600779056549, + 0.38239404559135437, + -0.1771060675382614, + 0.07962283492088318, + -0.09588591754436493, + -0.2212718427181244, + -0.16066186130046844, + -0.3819352984428406, + 0.3924744725227356, + 0.14336906373500824, + -0.02985207922756672, + 0.044271133840084076, + 0.08991462737321854, + 0.23320162296295166, + -0.07544724643230438, + 0.03755534440279007, + 0.11940734088420868, + 0.07387486100196838, + -0.12582054734230042, + 0.16646850109100342, + 0.2120724320411682, + -0.2552544176578522, + -0.03068378008902073, + 0.0835033506155014, + 0.047097038477659225, + 0.02233823761343956, + -0.018960367888212204, + -0.08159056305885315, + 0.14209921658039093, + -0.5887501239776611, + 0.19953028857707977, + -0.002032764256000519, + -0.15223196148872375, + -0.004515849053859711, + -0.056581802666187286, + 0.1071665808558464, + 0.006848413497209549, + -0.04368424415588379, + 0.043485138565301895, + 0.2052256166934967, + 0.04015824571251869, + 0.16434548795223236, + 0.2543739676475525, + 0.08613830804824829, + 0.18107058107852936, + -0.04804687947034836, + 0.13203400373458862, + 0.06417669355869293, + -0.1589391827583313, + 0.013385267928242683, + -0.28175845742225647, + 0.13326804339885712, + 0.20548513531684875, + 0.01854492351412773, + 0.3714033365249634, + 0.11662160605192184, + 0.9066799879074097, + -0.05279846116900444, + 0.5155372023582458, + 0.012818492017686367, + -0.10279355943202972, + 0.21524804830551147, + 0.14527627825737, + -0.06594038009643555, + -0.03713899105787277, + 0.2218550443649292, + -0.010448917746543884, + 0.1298677623271942, + 0.05912906676530838, + -0.850629985332489, + -0.33153408765792847, + -0.2035944163799286, + -0.037259541451931, + -0.13391880691051483, + -0.1607714146375656, + -1.7917567491531372, + -0.13279134035110474, + 0.11389011144638062, + 0.07878643274307251, + 0.10531870275735855, + 0.005706876516342163, + -0.1536111980676651, + -0.10851552337408066, + -0.16411727666854858, + -0.1346529722213745, + -0.027890264987945557, + 0.027241017669439316, + -0.033932577818632126, + 0.10525337606668472, + 0.2581630051136017, + 0.31205007433891296, + -0.433380126953125, + 0.28141114115715027, + 0.06864436715841293, + 0.029583897441625595, + 0.06914782524108887, + -0.09348676353693008, + 0.14649799466133118, + 0.6052842140197754, + 0.14426235854625702, + -0.002232300117611885, + 0.1149986982345581, + 0.07612435519695282, + 0.20890650153160095, + -0.09257848560810089, + 0.019795628264546394, + -0.15296754240989685, + 0.04387165233492851, + -0.3354845345020294, + -0.1701933741569519, + -0.49770185351371765, + -0.07815682142972946, + -0.04234614223241806, + -0.07539783418178558, + 0.17819422483444214, + 0.07427295297384262, + 0.027328291907906532, + 0.015300825238227844, + -0.04526958987116814, + 0.13140368461608887, + 0.13135409355163574, + -0.3451191782951355, + 0.09798969328403473, + -0.20167802274227142, + 0.22090716660022736, + -0.3021252155303955, + -0.2029758244752884, + 0.09053142368793488, + -0.1991042196750641, + -0.20959055423736572, + -0.059336379170417786, + 0.013776205480098724, + -0.1937141716480255, + -0.20134666562080383, + -0.009306509979069233, + -0.022409241646528244, + -0.20359176397323608, + -0.1934388279914856, + -0.02946428395807743, + 0.09653347730636597, + -0.019226673990488052, + 0.21135301887989044, + -0.1146392971277237, + -0.20324426889419556, + -0.05662545934319496, + -0.04959096387028694, + 0.10841439664363861, + 0.041524894535541534, + 0.1267426609992981, + 0.16152091324329376, + -0.0893854945898056, + 0.08159754425287247, + 0.13467812538146973, + -0.10986340045928955, + 0.09839055687189102, + -0.10103294253349304, + -0.11263436079025269, + -0.0013069119304418564, + 0.13020619750022888, + -0.039397045969963074, + -0.4063265025615692, + 0.17797496914863586, + 0.14496158063411713, + -0.06395658850669861, + 0.2851535379886627, + 0.0463077612221241, + -0.3399028778076172, + -0.12789815664291382, + -0.06431898474693298, + 0.11831626296043396, + 0.06726069748401642, + -0.029393114149570465, + 0.21583278477191925, + 0.03094600886106491, + 0.14975851774215698, + -0.3911968767642975, + -0.12042456120252609, + -0.10336853563785553, + -0.10656853020191193, + 0.06339465081691742, + -0.056173257529735565, + -0.21304890513420105, + -0.017924703657627106, + 0.088800348341465, + 0.07892873883247375, + 0.18822254240512848, + 0.14788399636745453, + -0.10952769219875336, + -0.02139296941459179, + -0.2500525414943695, + 0.17335964739322662, + -0.131059467792511, + -0.10579557716846466, + 0.007936794310808182, + -0.12397687882184982, + -0.08033176511526108, + -0.11388573795557022, + 0.10525467991828918, + -0.30328741669654846, + -0.026447661221027374, + -0.5254642367362976, + 0.10929851233959198, + -0.2986045181751251, + 0.05399494618177414, + 0.1440328061580658, + -0.02920253947377205, + 0.09440548717975616, + 0.37444034218788147, + -0.05071761831641197, + 0.12081612646579742, + 0.05280504748225212, + 0.13058538734912872, + 0.06410287320613861, + 0.019298451021313667, + -0.27233588695526123, + -0.005111847072839737, + -0.0791146457195282, + 0.037853628396987915, + -0.07138620316982269, + -0.2010335773229599, + -0.09088070690631866, + -0.086260586977005, + -0.1289941668510437, + -0.1934363842010498, + -0.1640760600566864, + -0.02628188207745552, + -0.20405025780200958, + 0.2615984082221985, + 0.06697657704353333, + -0.09100895375013351, + -0.020805595442652702, + 0.11600593477487564, + -0.047367293387651443, + -0.03851450979709625, + -0.11536981165409088, + -0.1341235339641571, + -0.2270999401807785, + -0.1257963478565216, + 0.17933858931064606, + -0.1503383219242096, + -0.06856685876846313, + -0.06713496148586273, + -0.039120059460401535, + 0.9232521653175354, + 0.0024806149303913116, + 0.06589379906654358, + -0.13442078232765198, + 0.07610920071601868, + -0.12328231334686279, + 0.21817953884601593, + -0.10777530819177628, + -0.07858490198850632, + -1.0021886825561523, + -0.17243966460227966, + -0.08174457401037216, + -0.0902562215924263, + -0.06871453672647476, + -0.08841162919998169, + -0.1640194058418274, + 0.029507935047149658, + 0.11811364442110062, + -0.05699992552399635, + 0.11866630613803864, + -0.007922634482383728, + -0.03763469681143761, + -0.06933280825614929, + 0.15644733607769012, + -0.036831922829151154, + 0.240792378783226, + -0.11116047203540802, + 0.1480906903743744, + -0.08567693829536438, + 0.030243024230003357, + -0.0302374716848135, + -0.010658033192157745, + 0.1569455862045288, + -0.04933568090200424, + 0.19109947979450226, + 0.041771914809942245, + -0.04679276421666145, + -0.018168199807405472, + 0.5017486214637756, + -0.13669250905513763, + 0.1384713500738144, + 0.17443373799324036, + 0.030231980606913567, + -0.012056615203619003, + -0.08649782836437225, + 0.00671752542257309, + -0.16772343218326569, + -0.0006960183382034302, + -0.21877920627593994, + 0.03180895745754242, + -0.20258013904094696, + 0.09820904582738876, + 0.06711797416210175, + -0.06399320065975189, + -0.1077205166220665, + 0.13713186979293823, + 0.19087037444114685, + 0.007557861506938934, + -0.027238069102168083, + 0.1546371877193451, + 0.31224679946899414, + 0.3289525508880615, + -0.09354335069656372, + 0.02429414540529251, + 0.1448531150817871, + 0.029223719611763954, + -0.04660066217184067, + -0.12286233901977539, + -0.06465071439743042, + -0.14525431394577026, + 0.1875906139612198, + 0.054294563829898834, + -0.10698923468589783, + 0.15973111987113953, + 0.15967179834842682, + -0.12503869831562042, + 0.1354166865348816, + 0.21552670001983643, + 0.04496998339891434, + 0.38695648312568665, + 0.002718539908528328, + -0.07412208616733551, + -0.025025654584169388, + 0.01291272509843111, + -0.15040230751037598, + 0.037366412580013275, + -0.009021814912557602, + -0.32337087392807007, + 0.5226877331733704, + 0.08473686128854752, + 0.35341495275497437, + 0.04574764519929886, + -0.14319930970668793, + -0.3100793957710266, + -0.07194659858942032, + 0.08242733031511307, + -0.03656978905200958, + 0.1010398119688034, + -0.2515687942504883, + -0.2918280363082886, + -0.1864495873451233, + -0.08049976825714111, + -0.1270269751548767, + 0.07825927436351776, + 0.36405378580093384, + 0.012423674575984478, + 0.050586260855197906, + -0.13332638144493103, + -0.4061724543571472, + -0.2511610686779022, + -0.09884698688983917, + 0.049243759363889694, + -0.08972541987895966, + -0.004738014191389084, + -0.23759499192237854, + 0.0816323459148407, + 0.12133035063743591, + -0.031589217483997345, + 0.14331157505512238, + -0.020596517249941826, + -0.23963075876235962, + -0.3062940537929535, + -0.03661808371543884, + 0.004461761564016342, + -0.06971319764852524, + -0.0530112124979496, + -0.1142127513885498, + -0.0020559532567858696, + -0.0910060852766037, + -0.4571656286716461, + 0.2642363905906677, + -0.21178853511810303, + -0.05563084036111832, + 0.21613764762878418, + 0.048841021955013275, + -0.05408858880400658, + -0.38765451312065125, + -0.48001283407211304, + -0.01462717354297638, + 0.10840125381946564, + 0.1601804941892624, + -0.19869756698608398, + -0.11147283017635345, + 0.15502220392227173, + 0.012425659224390984, + 0.054957784712314606, + 0.3899439573287964, + -0.2278626263141632, + -0.0670551285147667, + 0.045238032937049866, + 0.28647559881210327, + -0.027247529476881027, + 0.14640188217163086, + -0.07613691687583923, + 0.051604315638542175, + 0.01140320673584938, + -1.411252498626709, + -0.2765878140926361, + -0.0152684785425663, + 0.2773634195327759, + 0.03154301643371582, + 0.08520307391881943, + 0.08713215589523315, + -0.0008756723254919052, + -0.14177878201007843, + 0.10858245193958282, + 0.07427961379289627, + 0.04088558256626129, + 0.20361827313899994, + 0.0351678766310215, + -0.09592264890670776, + -0.011663282290101051, + 0.11008860170841217, + 0.1316959261894226, + -0.041790999472141266, + 0.3282356858253479, + -0.12716931104660034, + 0.04206673800945282, + 0.0007050354033708572, + -0.07135982811450958, + -0.7284839749336243, + 0.17665919661521912, + 0.04989539459347725, + -0.5955175161361694, + 0.1521809846162796, + 0.023423384875059128, + 0.0363793782889843, + 0.08747287839651108, + 0.007536157965660095, + 0.025684012100100517, + 0.16995231807231903, + -0.02549254149198532, + -0.09246622025966644, + 0.42881253361701965, + 0.044317252933979034, + -0.022103730589151382, + -0.13414476811885834, + -0.15687045454978943, + 0.15003788471221924, + -0.014494150876998901, + 0.09934970736503601, + 0.14377018809318542, + 0.22829240560531616, + -0.1838427633047104, + 0.05419619381427765, + -0.29352253675460815, + -0.072325699031353, + 0.20172393321990967, + 1.3434722423553467, + -0.3286343216896057, + 0.1488075703382492, + 0.16324876248836517, + -0.2499956488609314, + -0.09508215636014938, + 0.010231168940663338, + 0.16457462310791016, + -0.1717730611562729, + -0.11291380226612091, + -0.18256816267967224, + -0.07054699212312698, + 0.5423495769500732, + -0.12875433266162872, + 0.012040166184306145, + -0.07895325124263763, + -0.30049893260002136, + -0.13081328570842743, + -0.03201160952448845, + -0.04063604772090912, + 0.01309749111533165, + 0.2493966966867447, + 0.13336282968521118, + -0.37957292795181274, + 0.015946384519338608, + 0.02860933169722557, + 0.02767125889658928, + 0.18720148503780365, + 0.08956943452358246, + 0.2281036674976349, + 0.007285378873348236, + -0.1514052003622055, + 0.11885719001293182, + -0.05470932275056839, + -0.22454579174518585, + 0.17513695359230042, + -0.02480388432741165, + -0.2653040289878845, + -0.861605703830719, + -0.16436757147312164, + -0.0338863730430603, + 0.10131441056728363, + -0.0990506112575531, + 0.008069116622209549, + -0.16376948356628418, + 0.05869948863983154, + 0.10359476506710052, + 0.1637578308582306, + -0.2651410698890686, + 0.15054281055927277, + -0.02808363363146782, + -0.7986765503883362, + 0.06626493483781815, + 0.11123562604188919, + 0.012694444507360458, + 0.13034270703792572, + -0.135960191488266, + -0.1241556704044342, + 0.11623556911945343, + 0.29479485750198364, + -0.036842964589595795, + -0.08032053709030151, + -0.05921628326177597, + 0.05465219169855118, + 0.2347339540719986, + -0.40634483098983765, + 0.020288214087486267, + -0.014066513627767563, + 0.1314685344696045, + 0.11126053333282471, + 0.09666695445775986, + 0.05154745280742645, + -0.023320425301790237, + 0.03942801430821419, + -0.14769934117794037, + -0.25944381952285767, + -0.06500869244337082, + -0.07607421278953552, + 0.08005242049694061, + -0.341216117143631, + -0.6607894897460938, + -0.32691824436187744, + -0.024413011968135834, + -0.16384126245975494, + -0.24643266201019287, + -0.020424548536539078, + 0.11979435384273529, + -0.07045137882232666, + 0.07774576544761658, + 0.06054891273379326, + -0.13453137874603271, + -0.06476577371358871, + -0.4030872881412506, + -0.37874874472618103, + 0.41170626878738403, + 0.243387371301651, + -0.2618764042854309, + -0.08608340471982956, + -0.08697812259197235, + -0.13462591171264648, + -0.30989569425582886, + -0.13657265901565552, + -0.7218409180641174, + -0.09092344343662262, + 0.031387362629175186, + 0.07323142886161804, + 0.1362530142068863, + -0.020536446943879128, + -0.05384806916117668, + -0.2283378392457962, + 0.10055278241634369, + -0.33570680022239685, + 0.04401281103491783, + 0.1042785719037056, + 0.009765014983713627, + 0.2246111035346985, + 0.12656673789024353, + -0.16876424849033356, + -0.00772881880402565, + 0.019708411768078804, + 0.21406984329223633, + 0.046111345291137695, + -0.28771331906318665, + 0.039471279829740524, + -0.13972356915473938, + -0.04599759355187416, + 0.06990262866020203, + -0.023248054087162018, + 0.004790592938661575, + -0.1564532369375229, + -0.00515946326777339, + -1.015061378479004, + 0.29044729471206665, + 0.11272598803043365, + 0.026326298713684082, + 0.038679301738739014, + -0.09179006516933441, + -0.0424167662858963, + 0.035334035754203796, + 0.03597622737288475, + -0.17783671617507935, + -0.016025196760892868, + 0.5089297294616699, + 0.05151734873652458, + 1.05580735206604, + -0.0538579598069191, + 0.31348851323127747, + 0.063083715736866, + -0.00801361259073019, + 0.09786675870418549, + -0.06254179775714874, + -1.0078070163726807, + -0.0728139653801918, + 0.18151815235614777, + 0.030563950538635254, + -0.04282257333397865, + 0.06503462791442871, + -0.006095465272665024, + -0.111064612865448, + 0.03625868260860443, + -0.0395892933011055, + -0.03945434093475342, + -0.03524428606033325, + 0.1559285968542099, + 0.14589542150497437, + 0.014435335993766785, + 0.034266240894794464, + -0.09475100040435791, + -0.039419688284397125, + -0.501643180847168, + -0.01706010103225708, + 0.11995244026184082, + 0.00011026859283447266, + 0.1542080044746399, + -0.07801307737827301, + -0.6292688846588135, + 0.055765993893146515, + 0.07875168323516846, + 0.05036789923906326, + 0.06902898848056793, + 0.11793894320726395, + -0.052088718861341476, + -0.09854128956794739, + -0.018472999334335327, + 0.30427756905555725, + 0.318101167678833, + -0.1180635318160057, + 0.13575300574302673, + 0.11753188073635101, + -0.18750493228435516, + 0.03717479109764099, + 0.09851858019828796, + 0.2689881920814514, + -0.2252669334411621, + -0.14309465885162354, + 0.2718889117240906, + -0.12502267956733704, + -0.043033815920352936, + 0.10467074811458588, + -0.2610551714897156, + 0.12488678842782974, + 0.16208074986934662, + 0.002028188668191433, + 0.10056214034557343, + -0.2622268795967102, + 0.29358869791030884, + -0.20104646682739258, + -0.007583617232739925, + -0.0990380048751831, + -0.1088697537779808, + 0.07216395437717438, + -0.16648641228675842, + 0.0683538094162941, + 0.11690916121006012, + -0.059702470898628235, + -0.07539644837379456, + 0.163648784160614, + 0.19279715418815613, + 0.16285845637321472, + -0.0662740170955658, + -0.052563250064849854, + -0.15193867683410645, + 0.08712024986743927, + 0.02320186048746109, + 0.29452359676361084, + -0.25358477234840393, + -0.12149500846862793, + 0.07324348390102386, + -0.2363685965538025, + -0.11627158522605896, + -0.19087117910385132, + -0.15784648060798645, + 0.07243910431861877, + 0.17035147547721863, + 0.05958441272377968, + -0.0061130765825510025, + 0.19379281997680664, + 0.07453586161136627, + -0.009929869323968887, + 0.03034641593694687, + 0.0774797648191452, + -0.0007544709369540215, + 0.1588524580001831, + -0.11706490069627762, + -0.1544896960258484, + 0.1634749174118042, + -0.06669879704713821, + 0.03099343739449978, + 0.0028800684958696365, + 0.04835749417543411, + 0.17945224046707153, + -0.026393631473183632, + 0.19139012694358826, + -0.7781764268875122, + -0.03540264442563057, + 0.12076164782047272, + -0.05099935829639435, + 0.16502198576927185, + 0.9370487332344055, + 0.1438605785369873, + -0.034324705600738525, + 0.07627351582050323, + -0.146646648645401, + 0.010051161050796509, + -0.8021360039710999, + -0.026400715112686157, + -0.013805036433041096, + 0.24779082834720612, + -0.01690974086523056, + 0.10431891679763794, + 0.13338980078697205, + 0.10616175830364227, + -0.08459220826625824, + -0.24152082204818726, + 0.08201659470796585, + 0.22438567876815796, + 0.2615962028503418, + 0.023924607783555984, + 0.029998216778039932, + 0.07155638933181763, + 0.14914633333683014, + -0.23260797560214996, + 0.2737045884132385, + 0.07694773375988007, + 0.11164046078920364, + 0.12944626808166504, + 0.0038343481719493866, + 0.22758804261684418, + 0.22096379101276398, + -0.23760655522346497, + 0.2704780697822571, + -0.4588407874107361, + 0.089697927236557, + -0.19703039526939392, + 0.17656543850898743, + 0.07816343754529953, + -0.3171590566635132, + 0.024435482919216156, + -0.15057681500911713, + -0.1140832006931305, + -0.2795836329460144, + -0.12727850675582886, + 0.2715390622615814, + -0.09705475717782974, + -0.06002888083457947, + 0.09806188941001892, + 5.102908134460449, + -0.2016466110944748, + -0.09327128529548645, + -0.14621974527835846, + -0.08774372190237045, + -0.4648868441581726, + -0.006588231772184372, + 0.3044431209564209, + 0.6887125968933105, + -0.17664188146591187, + -0.40561196208000183, + 0.031816281378269196, + 0.2530326545238495, + -0.2254898101091385, + 0.1799481213092804, + 0.08999090641736984, + -0.3163144588470459, + 0.0072645992040634155, + -0.2097502201795578, + -0.06660695374011993, + 0.0007535070180892944, + 0.37145566940307617, + 0.08736656606197357, + 0.031964220106601715, + 0.03727443516254425, + -0.11751637607812881, + 0.21293172240257263, + -0.387254536151886, + -0.15320998430252075, + 0.23095066845417023, + 0.006120836362242699, + -0.10884219408035278, + -0.12240234017372131, + 0.03295309469103813, + 0.049254074692726135, + 0.23047080636024475, + -0.021917887032032013, + -0.011091377586126328, + -0.261638343334198, + -0.04210708290338516, + -0.034683551639318466, + -0.1383388191461563, + 0.16027703881263733, + 0.027460908517241478, + -0.09629900753498077, + 0.21193288266658783, + -0.6076356768608093, + 0.13526204228401184, + -0.007499219849705696, + -0.08660682290792465, + 0.14163072407245636, + 0.16294626891613007, + -0.033997464925050735, + 0.05692892149090767, + 0.18552908301353455, + 0.14851334691047668, + -0.05237056314945221, + -0.3026484549045563, + 0.09410378336906433, + 0.14597748219966888, + -0.43721437454223633, + -0.050269484519958496, + -0.03293248265981674, + 0.12720619142055511, + 0.02982385642826557, + -0.7268029451370239, + -0.083797886967659, + -0.23150011897087097, + -0.18691366910934448, + 0.024362383410334587, + 0.03420146927237511, + -0.10736708343029022, + 0.11877836287021637, + -0.05135267972946167, + 0.04976661503314972, + -0.035992059856653214, + -0.08332902193069458, + -0.3035602867603302, + -0.018757499754428864, + 0.0037054214626550674, + -0.1159057766199112, + -0.08873846381902695, + -0.041230056434869766, + 0.27799665927886963, + -0.13479889929294586, + 0.18816599249839783, + 0.011443689465522766, + 0.24222669005393982, + 0.02471565082669258, + 0.8472627401351929, + -0.2407931685447693, + 0.23493768274784088, + -0.20149768888950348, + 0.2069108635187149, + 0.0667075514793396, + 0.048373665660619736, + 0.19082409143447876, + -0.024735771119594574, + 0.0811462253332138, + -0.20423626899719238, + -0.020693950355052948, + 0.03155907243490219, + 0.13109703361988068, + -0.05393880605697632, + 0.18669834733009338, + 0.02656012773513794, + -0.01786964386701584, + 0.919197678565979, + -0.5664170384407043, + 0.07355130463838577, + -0.04022739455103874, + -0.25325265526771545, + 0.20368194580078125, + 0.03552988916635513, + -0.21502061188220978, + -0.14530766010284424, + 0.01596694625914097, + 0.20431284606456757, + -0.136883944272995, + -0.0493842288851738, + 0.19003036618232727, + 0.289750337600708, + -0.203596293926239, + -0.7189891338348389, + 0.258744478225708, + 0.20875683426856995, + 0.20203441381454468, + 0.23725324869155884, + -0.5415815114974976, + -0.030056901276111603, + 0.03023400530219078, + 0.0057091303169727325, + -0.09210141003131866, + -0.08284204453229904, + 0.21877342462539673, + -0.2894008159637451, + 0.027657832950353622, + -0.014091124758124352, + -0.1127782016992569, + -0.037334538996219635, + -0.14601123332977295, + 0.19616225361824036, + -0.4096965491771698, + 0.07699527591466904, + 0.941036581993103, + -0.007862817496061325, + 0.07342630624771118, + -0.06983202695846558, + -0.04398294538259506, + 0.09786073863506317, + -0.005066980607807636, + 0.5236072540283203, + 0.14989636838436127, + -0.07193434238433838, + 0.10184074193239212, + 0.11190924048423767, + -0.08754625916481018, + 0.10212501883506775, + 0.008242914453148842, + 0.1240282952785492, + 0.09752115607261658, + -0.04684269800782204, + -0.014513885602355003, + -0.2552889287471771, + -3.5191092491149902, + 0.20993588864803314, + 0.009169979020953178, + -0.05963001772761345, + 0.02940577082335949, + -0.09243880212306976, + 0.11080679297447205, + 0.11525967717170715, + 0.059609197080135345, + 0.09534205496311188, + 0.00025714177172631025, + 0.17795555293560028, + 0.0582057423889637, + -0.05095314607024193, + 0.1310758888721466, + -0.10775086283683777, + 0.003710150718688965, + -0.0375332273542881, + -0.2811119854450226, + 0.02243681252002716, + 0.06758009642362595, + -0.004321753978729248, + 0.011451156809926033, + 0.14114075899124146, + -0.4248347878456116, + -0.267453670501709, + 0.09192027151584625, + -0.039447735995054245, + -0.03385644778609276, + -0.39575910568237305, + -0.08133060485124588, + -0.12526226043701172, + 0.07551030069589615, + -0.06397092342376709, + -0.4526228904724121, + 0.0002547968178987503, + -0.04103362560272217, + -0.02697700262069702, + -0.06363694369792938, + 0.16718672215938568, + 0.09057709574699402, + 0.03168811649084091, + -2.0727038383483887, + -0.23211559653282166, + 0.009995643049478531, + -0.0881691575050354, + 0.13400959968566895, + -0.2581899166107178, + -0.14529958367347717, + 0.013068126514554024, + -0.14617100358009338, + 0.014576399698853493, + 0.6343027949333191, + 0.7609153985977173, + -0.06955452263355255, + 0.22184348106384277, + -0.04814024269580841, + -0.3348216414451599, + -0.46997061371803284, + 0.06772874295711517, + -0.15017037093639374, + -0.07794792205095291, + -0.08936400711536407, + 0.0010905228555202484, + -0.06891392171382904, + -0.10427749156951904, + -0.27975034713745117, + -0.16720551252365112, + -0.10732416063547134, + -0.08314915001392365, + 0.1493699997663498, + -0.01206555962562561, + 0.2584931254386902, + -0.021716684103012085, + 0.18927636742591858, + 0.08538838475942612, + 0.05992983281612396, + -0.07851581275463104, + -0.09109018743038177, + 1.04533052444458, + 0.018495803698897362, + 0.21469175815582275, + 0.05888465791940689, + -0.31943053007125854, + 0.008660702966153622, + 0.34225964546203613, + 0.05879615247249603, + -0.1480351984500885, + -0.09045194089412689, + 7.43947172164917, + -0.13143736124038696, + -0.4017033278942108, + 0.09318342059850693, + 0.047529034316539764, + -0.30622032284736633, + -0.2362421154975891, + 0.22380493581295013, + -0.1501374989748001, + 0.12524403631687164, + 0.21685081720352173, + -0.21737398207187653, + -0.05313001573085785, + -0.12014801800251007, + 0.01470138132572174 + ], + "neutral_projector": { + "component_count": 1, + "components": [ + [ + -0.0019443760393187404, + 0.0010896690655499697, + 0.0025332437362521887, + -0.003148057032376528, + 0.0003680323716253042, + 0.0029906868003308773, + -0.0015823132125660777, + -0.00033877516398206353, + 0.0027913907542824745, + -0.0016498876502737403, + 0.0006912623648531735, + -0.000887290749233216, + 0.0006938464939594269, + -0.0007404389325529337, + 0.0023267699871212244, + -0.0009681867086328566, + 0.0011017867363989353, + -0.00022374837135430425, + -0.001306732650846243, + -0.0010732975788414478, + 0.001840702025219798, + -0.00011986509343842044, + -0.0010937921470031142, + 0.001864848891273141, + 0.0010324085596948862, + -0.001438798732124269, + 0.0012357014929875731, + 0.003566059982404113, + 0.0010417276062071323, + 0.0002727432001847774, + -0.0017251238459721208, + 0.00343171670101583, + -0.003248791676014662, + -0.001971325371414423, + -0.002026770729571581, + 0.00035252294037491083, + 0.00273457495495677, + 0.002847255440428853, + -0.0007655353401787579, + 0.0006283908733166754, + 0.0016842237673699856, + 0.00200643390417099, + -0.0009643773082643747, + -0.0029630730859935284, + -8.144779712893069e-06, + 0.0015224652597680688, + -0.0004424615763127804, + 0.001306754071265459, + 0.0028492072597146034, + 0.002250945894047618, + 7.260177517309785e-05, + -0.0004151581961195916, + -0.00011433374311309308, + -0.001552415662445128, + 0.00017790033598430455, + -0.002146138111129403, + -0.0012223589001223445, + 0.001830643624998629, + 0.0009748813463374972, + -0.0002946795430034399, + 0.0015103211626410484, + 0.0016387143405154347, + -0.00231499713845551, + -0.0008204395417124033, + -0.0030680715572088957, + 0.0010087615810334682, + -0.0014658679720014334, + -0.0014548274921253324, + -0.005008223000913858, + -0.0009944712510332465, + 0.0032273640390485525, + -0.002172627253457904, + 0.001005330472253263, + 0.0011871069436892867, + -0.0032323673367500305, + 0.0007883226498961449, + 0.0050184158608317375, + -0.0007115580374374986, + 0.001356008811853826, + 0.0034009746741503477, + 0.0017834407044574618, + -0.001373819774016738, + 0.000913816737011075, + 0.0006683079991489649, + -0.0019995372276753187, + 0.0013825575588271022, + -2.2012081899447367e-05, + -0.0036339908838272095, + -0.0019752078223973513, + 0.00027641942142508924, + 0.002392347902059555, + 0.0005425595445558429, + 0.00047650630585849285, + -0.006305858958512545, + 0.0016462724888697267, + 0.0022195368073880672, + 0.0009978036396205425, + 4.264006929588504e-05, + -0.0037210050504654646, + -0.00010435586591484025, + 0.00215297844260931, + -0.001487529487349093, + -0.0008509212639182806, + 0.002059964695945382, + 0.0002806465490721166, + 0.00012055921979481354, + 0.0011837165802717209, + -0.000720099953468889, + 1.8205637388746254e-05, + -0.0016580891096964478, + -0.0019195681670680642, + -0.0016511576250195503, + -0.00219385651871562, + -0.00013570398732554168, + -0.0030049667693674564, + -0.0021219863556325436, + -0.0004400797770358622, + 0.001701453817076981, + -0.0012693210737779737, + -0.0020302939228713512, + -0.0014085255097597837, + 0.002047831192612648, + 0.0005656172870658338, + 0.00036681696656160057, + 0.001454195356927812, + 0.002161563141271472, + -0.0005440321401692927, + 0.001348535530269146, + 0.0013075878378003836, + -6.773611676180735e-05, + -0.001874864217825234, + 0.00023058938677422702, + 0.0006236530607566237, + 0.0006002493319101632, + -0.0019820104353129864, + -0.005206220783293247, + -0.000847995572257787, + -0.0016141267260536551, + 0.002398392651230097, + 0.0005474878707900643, + -0.0004907360416837037, + -0.002211759565398097, + 0.0007731119403615594, + 0.00024138213484548032, + -0.0005880150711163878, + 0.0011145115131512284, + -0.0026881799567490816, + -0.0006131374393589795, + -0.0007981142261996865, + -0.003633648157119751, + 0.00034230126766487956, + -0.0035459441132843494, + -0.0006689950823783875, + 0.0016589576844125986, + 0.0013547661947086453, + -0.0017873335164040327, + 0.00021246627147775143, + 0.0008903316338546574, + -1.5167058336373884e-05, + -0.0006967120571061969, + 0.0009758850792422891, + 0.0013552268501371145, + -0.00427255081012845, + 0.0010419785976409912, + 0.0006016046390868723, + -0.00144675571937114, + 0.0039042083080857992, + -0.0012532055843621492, + 8.540663839085028e-05, + -0.00046510822721756995, + 0.0009745669667609036, + 0.006383821368217468, + -0.00128187017980963, + 0.0023506765719503164, + -0.0003311149775981903, + -0.00034304134896956384, + 0.0020296103321015835, + -0.001547182910144329, + -0.0014862037496641278, + 0.0013266608584672213, + -0.0025342300068587065, + -0.0018099808366969228, + 0.002510694321244955, + -0.0014636853011325002, + -0.00021864750306122005, + -0.00028871739050373435, + 0.0003516680153552443, + -0.0024878147523850203, + 0.0008824286633171141, + 0.00032602393184788525, + 0.002800967777147889, + -0.004102091770619154, + -0.00489479023963213, + -0.00011580886348383501, + 0.0023896940983831882, + -0.00019228007295168936, + 0.008411500602960587, + -0.00028077210299670696, + 0.0003411612124182284, + -0.00015715169138275087, + -0.004050807561725378, + 0.0007313360110856593, + -0.00012349961616564542, + -0.0011537980753928423, + -0.00028103592921979725, + -0.0014595373068004847, + -0.0020872834138572216, + -0.000982430181466043, + 0.0006251579034142196, + -0.0004951133741997182, + -0.0011203803587704897, + -0.0007885562954470515, + -0.002837846288457513, + 1.2025342584820464e-05, + 0.0009404831798747182, + -0.0014343163929879665, + 0.0011160479625687003, + -0.0019225296564400196, + -0.00040725190774537623, + -0.0019376534037292004, + -0.0011186192277818918, + -0.0014784734230488539, + -6.290677265496925e-05, + 0.0010463995859026909, + -0.006526527460664511, + -0.0009801764972507954, + 0.0015830629272386432, + 0.001516828779131174, + -0.00023709464585408568, + -0.0015076883137226105, + -0.0011271913535892963, + -7.914446177892387e-05, + -0.004128390457481146, + -0.1937871128320694, + -0.00042526109609752893, + 0.0003346692828927189, + -0.0015141533222049475, + 0.0003960692265536636, + -0.0004413097631186247, + -0.0035094365011900663, + -0.0009320616372860968, + -0.00014488793385680765, + -0.0001029863633448258, + 0.002255668630823493, + -0.0008359203347936273, + -0.002573777688667178, + 0.0038154488429427147, + 0.0008059084066189826, + 0.0007674767985008657, + 0.0009859200799837708, + 0.0005173722747713327, + -0.00023566011805087328, + 0.001147732138633728, + -0.0009053392568603158, + 0.0013343874597921968, + 0.00021894995006732643, + -0.0008234084234572947, + -0.00042631130781956017, + -0.003588793333619833, + 0.0006624821107834578, + 0.0011284075444564223, + -0.0005086185992695391, + 0.0016333842650055885, + 0.0011655641719698906, + 0.002035454846918583, + -0.0008339221240021288, + -0.00039498406113125384, + -0.0008238048758357763, + -0.0007760361186228693, + 0.00017712669796310365, + -0.006480461917817593, + -0.001039115129970014, + -0.0006414016825146973, + -0.0011684289202094078, + -0.00013515753380488604, + -0.0007574467454105616, + -0.000600371160544455, + -0.002505854470655322, + -0.0007295040413737297, + -0.00025079509941861033, + 0.0007277348195202649, + -0.004029802978038788, + -0.002787218429148197, + -0.0019107977859675884, + 0.0009332358022220433, + -0.0030471128411591053, + 0.004076201468706131, + -0.002342361258342862, + 0.0008114463416859508, + -0.00034266585134901106, + 0.0009997112210839987, + 0.0005426730494946241, + 0.0021502701565623283, + -0.004199902527034283, + 0.0023529815953224897, + -0.000541370187420398, + -0.0007029775297269225, + 0.00027018404216505587, + -0.0029906700365245342, + 0.001360344816930592, + -0.0006279225926846266, + 0.0009925084887072444, + 0.0036229221150279045, + 0.0005428033182397485, + -0.0016882887575775385, + -0.0018514087423682213, + 0.002580844797194004, + -0.002387630520388484, + -0.0007658295216970146, + -0.0004883797373622656, + 0.0013516785111278296, + 0.0008226002682931721, + -0.002112181158736348, + 0.0004001574998255819, + -1.236181560670957e-05, + -0.00022959162015467882, + -0.0009898232528939843, + -0.000753762957174331, + 0.0007779928855597973, + -0.0011203945614397526, + 0.0018703247187659144, + 0.00032317012664861977, + 0.0015862281434237957, + 0.00011411895684432238, + 0.00018669350538402796, + -0.0026720548048615456, + -0.0015756759094074368, + -0.0007840374601073563, + -0.00023400595819111913, + 0.0003620267380028963, + 0.0014370821882039309, + 0.00044762069592252374, + 0.0034576880279928446, + -0.001726788585074246, + 0.0022404745686799288, + -0.0018896764377132058, + 0.000207511693588458, + -0.0019153986359015107, + 0.00209864997304976, + -0.00044448449625633657, + -0.0008828636491671205, + -0.00017013475007843226, + -0.0014239003648981452, + 0.009043412283062935, + 0.0013149885926395655, + 0.002039200160652399, + 0.0008920293184928596, + 0.000986521947197616, + 0.0019943085499107838, + 0.0005902934353798628, + -0.0003098157176282257, + -0.0001243785081896931, + -0.004824899602681398, + 0.0017450497252866626, + 0.0018621619092300534, + 0.0010586213320493698, + -0.005372060928493738, + 0.0015163447242230177, + -0.0018235733732581139, + 1.902420808619354e-05, + -0.0007742580492049456, + 0.0037760573904961348, + -0.0033881424460560083, + -0.001996515551581979, + 1.0015854059020057e-05, + 0.0015189939877018332, + 0.00014207392814569175, + -0.000993235968053341, + -0.005369656253606081, + 4.5584161853184924e-05, + -0.00021061238658148795, + -0.0030713023152202368, + 0.001063833711668849, + -0.0019033983116969466, + 0.002337794518098235, + 0.003238135017454624, + 0.0019557701889425516, + 0.0031386069022119045, + -0.002087474102154374, + -0.0015118407318368554, + -3.452617602306418e-05, + -0.0020516361109912395, + -0.01963154785335064, + -0.00044482905650511384, + 0.000254862941801548, + 0.0023487815633416176, + -0.0005383367533795536, + -0.002104458399116993, + -0.0018205147935077548, + 0.0002875227655749768, + -0.0012493768008425832, + 0.00161773432046175, + 0.0012919410364702344, + -4.2879612010437995e-05, + 0.0013336475240066648, + -0.000632869137916714, + -0.003894503926858306, + -0.002143680350854993, + 0.002870331984013319, + -0.000881556305103004, + 0.0005566983018070459, + -0.002401100704446435, + -0.0010099124629050493, + 0.001018707756884396, + -0.0030362929683178663, + 0.0006966744549572468, + -0.000713762070517987, + 0.0005059923278167844, + 0.0019001866457983851, + -0.0024056031834334135, + 0.0008794837631285191, + -0.0032905833795666695, + 0.0006343350396491587, + -0.0005502229323610663, + -0.00016139236686285585, + 0.0005792545271106064, + -0.001914326217956841, + 0.000305853842291981, + 0.0007028140244074166, + -0.001211474067531526, + 0.0012098178267478943, + -0.001852070214226842, + 0.0006299861706793308, + 0.001689793774858117, + -0.0002760380448307842, + -0.0016092209843918681, + 0.0007728683995082974, + 0.0034131084103137255, + -0.0009834725642576814, + -0.0035640522837638855, + 0.006545205134898424, + -0.0012456598924472928, + -0.006105718202888966, + 0.0005888082669116557, + -0.0004246261960361153, + -0.0014387194532901049, + -0.0016017600428313017, + 0.0005033345078118145, + 0.0006432448863051832, + 0.0018193414434790611, + 0.0010799099691212177, + -0.0013993020402267575, + -0.0005981013528071344, + 0.005717719439417124, + -0.0008837642963044345, + 0.0024602096527814865, + 0.000610851333476603, + 0.002572593977674842, + -0.00015332677867263556, + -0.0004841687041334808, + 0.0001762668980518356, + 0.001901012728922069, + -0.0012776602525264025, + -0.0016733076190575957, + 0.001981326611712575, + 0.0009886507177725434, + 0.0014417757047340274, + -0.0006317108636721969, + 0.007637595757842064, + -0.0012424507876858115, + -0.00016423349734395742, + -0.0016398573061451316, + 0.0039589665830135345, + -0.0010868323734030128, + -0.0012119500897824764, + 0.002895868383347988, + -0.0002396697673248127, + 0.0011489659082144499, + 0.0010980970691889524, + -0.0031813313253223896, + -2.6055011403514072e-05, + 0.002229335019364953, + -0.0039304401725530624, + -0.0022503123618662357, + 0.0040869927033782005, + 0.002040388062596321, + -0.0008114258525893092, + 0.000319175684126094, + -0.001161012565717101, + 0.0007580037345178425, + 0.0012633663136512041, + 0.001839738804847002, + 0.0003121057525277138, + -0.0013510988792404532, + 0.0001594472851138562, + -0.0005054748617112637, + 0.0013985172845423222, + -0.007900900207459927, + -0.0008170491782948375, + -0.0011839037761092186, + 0.0017047799192368984, + 0.0020231229718774557, + 0.0026236637495458126, + -0.0005624043988063931, + 0.0023625707253813744, + -0.00086400838335976, + 0.00010764493345050141, + -0.0017652547685429454, + -0.000735871319193393, + 0.001699597341939807, + -0.0025592090096324682, + -0.0010196069488301873, + 0.001030360464937985, + 1.8106537027051672e-05, + 0.0035705864429473877, + -0.001158850733190775, + -0.0023446190170943737, + 0.0007171116303652525, + 0.0026230341754853725, + -0.0025389830116182566, + 0.0006394992815330625, + 0.000575877376832068, + 0.00024598787422291934, + -0.0022224795538932085, + -0.00040399894351139665, + 0.00027376567595638335, + 0.0010622567497193813, + -0.0017884633271023631, + 2.768798140095896e-06, + -0.0008838946814648807, + -0.00039490876952186227, + 0.0007081739604473114, + -0.003905593417584896, + -0.004467662423849106, + -0.0040772948414087296, + 0.00019737373804673553, + -0.002360576530918479, + 0.0009458661079406738, + -0.0007752134115435183, + -0.002857821760699153, + 0.0018165857763960958, + 0.001110103097744286, + 0.00024136783031281084, + 0.00045835255878046155, + -0.00039695066516287625, + -0.000707273546140641, + -0.002068722853437066, + 0.00012549907842185348, + -0.0012539963936433196, + 0.001451988355256617, + -0.0003821295977104455, + 0.0017868314171209931, + -0.001221082522533834, + -0.0005584598984569311, + 0.0003866588813252747, + 0.0009624825906939805, + 0.00795369129627943, + 0.004737076349556446, + 0.003159062936902046, + 0.0005247842636890709, + 0.001933620311319828, + 0.0012212308356538415, + -0.007022729143500328, + 0.00043670451850630343, + -0.0010899248300120234, + 0.0011972365900874138, + -0.002869474934414029, + -0.0006896162522025406, + -0.002727650571614504, + 0.00034594599856063724, + 0.003138950327411294, + -3.983944407082163e-05, + -0.002425116254016757, + -0.0005342471995390952, + 0.0005664709606207907, + 0.002428314881399274, + 0.0009119610767811537, + -0.00118613475933671, + -0.0008513678913004696, + 0.0024879667907953262, + -0.0011779529741033912, + 2.6176627216045745e-05, + 0.0012956267455592752, + 0.0009696810157038271, + 0.0013239337131381035, + 0.0001323882897850126, + 0.0013579078949987888, + -0.0005003100959584117, + -0.001645340584218502, + -0.0014820820651948452, + -0.0037245801649987698, + 0.0004392903938423842, + -0.0016542708035558462, + 0.0018407214665785432, + 7.20138632459566e-05, + 0.000749430910218507, + -0.0010510627180337906, + -0.00017262186156585813, + -0.0010149136651307344, + -0.0007706843898631632, + -0.0038450006395578384, + -0.0019887227099388838, + -0.0029803572688251734, + 0.0002948127512354404, + -0.00182335264980793, + -0.0017318613827228546, + 0.0003102065238635987, + -0.001970659475773573, + -0.0025777267292141914, + 0.0011248356895521283, + -0.0011380567448213696, + -0.00236418005079031, + -0.0007880654884502292, + 6.638337799813598e-05, + 0.000714843743480742, + -0.001743266824632883, + -0.0003876315022353083, + 0.00028119157650507987, + -0.0009602865902706981, + -0.0012543585617095232, + 0.0003466650377959013, + -9.119835158344358e-05, + -0.002036747522652149, + -0.0010756757110357285, + -0.0007751471130177379, + 0.0043167052790522575, + 0.0003909359802491963, + -0.0008704313077032566, + -0.00016447153757326305, + -0.00010945446410914883, + -0.0020679912995547056, + -0.002034930745139718, + -0.0013141667004674673, + -0.000381006597308442, + -0.004398391116410494, + -0.0003599224437493831, + -0.0005932063213549554, + -0.00046589525300078094, + 0.00024874857626855373, + -0.0011704112403094769, + 0.002978560281917453, + 0.003574150847271085, + -0.0014365800889208913, + 0.0012801365228369832, + -0.0017127738101407886, + 0.0048643313348293304, + 2.331149335077498e-05, + 0.0014700326137244701, + -0.0028792473021894693, + 8.01692294771783e-05, + 0.00024505986948497593, + 0.0018770277965813875, + 0.0013859074097126722, + 0.002967478008940816, + -0.0031692483462393284, + -7.681363058509305e-05, + -0.0024548955261707306, + -0.0035217145923525095, + -0.0005734635633416474, + 0.0003363353607710451, + 0.0017720777541399002, + 0.0009809150360524654, + -0.0003051795356441289, + -0.0015254055615514517, + -9.456738189328462e-05, + -0.0015108713414520025, + -0.000923957908526063, + -0.00024839877733029425, + -0.0056268698535859585, + -0.0023484048433601856, + 0.0016204146668314934, + 0.0012691135052591562, + 0.00201498088426888, + 0.0017449622973799706, + -0.0006764883873984218, + 0.002756174886599183, + 0.000449270912213251, + 0.00093623879365623, + 2.883073830162175e-05, + -0.0021938567515462637, + -0.0007339310832321644, + 0.0013755311956629157, + 0.0003289717133156955, + 0.0010011402191594243, + -0.00029495032504200935, + 0.000394565548049286, + -0.011478215456008911, + -0.0012436151737347245, + 0.0006243034731596708, + 0.0020945121068507433, + 0.000772360188420862, + -0.0021829113829880953, + 0.001362277427688241, + 0.0026953485794365406, + 0.0006318158120848238, + -0.0004273125668987632, + -0.00034291890915483236, + -8.442286343779415e-05, + 0.0005344043020159006, + 0.0006649142596870661, + -0.001584283891133964, + -0.002020031912252307, + -0.0008709064568392932, + -0.002105418359860778, + -0.0020537273958325386, + 0.0007253698422573507, + 0.0004023405781481415, + 0.002859752858057618, + 0.0009144873474724591, + -0.00022601813543587923, + -0.0013858121819794178, + 0.001299814903177321, + 0.0009097429574467242, + -0.0003338585956953466, + -0.0011611528461799026, + 0.0007057143957354128, + -0.0007621331023983657, + -0.009362603537738323, + 0.0014651961391791701, + -0.00015594818978570402, + -9.762569789018016e-06, + 0.0025619904045015574, + 0.0012655117316171527, + 0.001248515909537673, + 0.0023397295735776424, + 0.0015567275695502758, + -0.012359815649688244, + 0.0015169241232797503, + 0.0004129086446482688, + -0.001425606431439519, + -0.0005866140709258616, + 0.0003971180703956634, + -0.0016783876344561577, + -0.0015021577710285783, + 0.00029135626391507685, + -0.0017414711182937026, + 0.0026627746410667896, + -0.0004186882870271802, + -0.0002288237592438236, + -0.00020260066958144307, + 0.001867413055151701, + -0.00022170867305248976, + 0.0002280108310515061, + 0.0023672902025282383, + -0.00014732492854818702, + -0.0009710201993584633, + -0.0024529413785785437, + -0.0022792923264205456, + 0.0006224494427442551, + 0.0019709179177880287, + -0.0030562079045921564, + 0.0006100126774981618, + 0.0022514823358505964, + 7.522232772316784e-05, + 0.0034132753498852253, + 0.0009482026216574013, + -0.00048202063771896064, + 0.0025816760025918484, + -0.0012162767816334963, + -0.0007824907079339027, + 6.91513287165435e-06, + -0.0037293131463229656, + -0.00035201883292756975, + -0.0007508962880820036, + -0.0007893599104136229, + 0.0004867800744250417, + -8.054552017711103e-05, + 0.0012572398409247398, + 0.0014228273648768663, + -0.00012432642688509077, + -0.0012517663417384028, + -0.0005950990016572177, + 0.00025145726976916194, + -0.00033358141081407666, + 0.0025991087313741446, + 0.0004540283407550305, + -0.0009701841627247632, + 0.0024834771174937487, + 0.0008366141119040549, + 0.001811020658351481, + 0.004314456135034561, + 0.0005806851550005376, + 1.3996416782902088e-05, + -0.0007903940277174115, + 0.0008848533034324646, + 0.0017956008668988943, + 0.001974261598661542, + 0.010660910047590733, + 0.0009520715102553368, + 0.0030701449140906334, + 0.0010365622583776712, + -0.0003803116560447961, + -9.458895510761067e-05, + -0.00034398064599372447, + -0.0015830864431336522, + 0.0026110673788934946, + -0.0008889290038496256, + 0.003690883982926607, + 0.001613097032532096, + -0.0011364975944161415, + -0.0016600954113528132, + 0.00021681319049093872, + -0.00010313322127331048, + 0.001646369113586843, + 0.0013070391723886132, + 0.000570505450014025, + -0.00041210927884094417, + 0.002187103731557727, + -0.0010685017332434654, + 0.00025616493076086044, + 0.0021581125911325216, + -0.000402714911615476, + 0.0010305606992915273, + -0.0002560533757787198, + -0.0008374510216526687, + -0.0011154047679156065, + 0.0002616697456687689, + -0.00039970321813598275, + -0.0014615969266742468, + -0.0014954411890357733, + -0.0010167730506509542, + 0.0009404816664755344, + 0.0002415754133835435, + -0.002085853833705187, + 0.0029139528051018715, + 0.001119742402806878, + -0.0011151492362841964, + -0.0001877056056400761, + -0.00040783287840895355, + 0.0009866759646683931, + 0.0015980970347300172, + -0.0006352602504193783, + 0.003956350032240152, + -0.0005930818733759224, + 0.0025717017706483603, + 0.002107050269842148, + -0.0013257462996989489, + 0.0018363186391070485, + 0.0026262525934726, + -0.00027510945801623166, + 0.002003380097448826, + -0.0004891784046776593, + 0.0007302346639335155, + -0.00420977221801877, + -9.038840653374791e-05, + -0.0019580177031457424, + 0.002003400819376111, + -0.0011871521128341556, + -0.0027535189874470234, + -0.0010169055312871933, + 0.00353574613109231, + -0.003284232225269079, + 0.0006083713378757238, + -0.000376632233383134, + 0.0006562890484929085, + 0.0006036671111360192, + 0.0006147576496005058, + 0.0024329000152647495, + 0.0006187035469338298, + -0.0014081118861213326, + 0.001776556484401226, + 0.004939746577292681, + 0.00040073515265248716, + 2.8639299216592917e-06, + -0.0017601588042452931, + 0.00021255169122014195, + -0.001480655511841178, + 0.00013299885904416442, + -0.0014982485445216298, + 0.0009730937890708447, + 0.0034813748206943274, + 0.0012401380809023976, + 0.0015185148222371936, + -0.0011373478919267654, + -0.0017694361740723252, + 0.0008406784036196768, + 0.0012181152123957872, + -0.0001856669259723276, + -0.0021280022338032722, + 0.0006580103072337806, + 0.00022821863240096718, + 0.0014980019768700004, + 0.001597098307684064, + 0.00022153579629957676, + -0.0020142407156527042, + 0.0006545656360685825, + 0.003440014086663723, + -0.0004908203845843673, + -0.0016164631815627217, + -0.0014484267449006438, + -0.0004376556316856295, + -0.0007474343292415142, + 3.496297722449526e-05, + 0.0010471167042851448, + -0.0028527225367724895, + -0.0016903298674151301, + 0.002286613453179598, + 0.0009165513329207897, + -0.0038073568139225245, + 0.0028345249593257904, + 0.0014171712100505829, + 0.0007998066139407456, + -2.007293551287148e-05, + -0.0008566475589759648, + -0.000602618558332324, + 0.0023724138736724854, + 0.0011811282020062208, + 0.0015408218605443835, + -0.0007898794719949365, + -0.0025730819907039404, + 0.0013823192566633224, + 0.004551505669951439, + 0.0010540804360061884, + -0.0006986738299019635, + 0.00021638214820995927, + -0.0029480084776878357, + -0.0002023058623308316, + -0.0008892584010027349, + -8.926580790102889e-07, + -0.0019798562861979008, + 0.0001021150455926545, + 0.002161799930036068, + 0.0005717183812521398, + -0.00046018717694096267, + -0.00424176175147295, + 0.00018155173165723681, + 0.0013089962303638458, + -0.0017692174296826124, + 0.0009055731352418661, + 0.0007104074466042221, + -0.0010123332031071186, + -0.0006232293089851737, + 0.00284612737596035, + -0.003987996838986874, + -0.002074258169159293, + 0.0005573960370384157, + -0.000652223767247051, + -0.0014875598717480898, + -0.0005641711177304387, + -0.0008568173507228494, + -0.0008504666038788855, + 0.0014426197158172727, + -0.0036194566637277603, + 0.0015500818844884634, + -0.0004814064013771713, + -0.0009970706887543201, + 0.0002951033820863813, + -0.0014569812919944525, + 0.0002169222425436601, + -0.0007619507377967238, + -0.0012342820409685373, + 0.0038143503479659557, + -0.0016333578387275338, + -0.0009116167202591896, + 4.449245170690119e-05, + -0.003172679338604212, + 8.403490937780589e-05, + -0.0013045319356024265, + -0.002240345813333988, + 0.0002946122258435935, + 0.0011066616280004382, + 9.568638233758975e-06, + 0.0035041961818933487, + -0.0004937108024023473, + 0.001817250857129693, + 0.0031906466465443373, + 0.0030254339799284935, + -0.0032486573327332735, + 0.0019911702256649733, + -0.0030345895793288946, + -0.0028720973059535027, + 0.0008941081468947232, + 0.00254059094004333, + 0.002129939617589116, + 0.0011411817977204919, + -0.0009360139374621212, + -0.000808084208983928, + -0.00037638828507624567, + -0.0007451188866980374, + -0.0018868438201025128, + 0.00010233431385131553, + 0.0019183600088581443, + -0.0018624820513650775, + -0.0006968613597564399, + 0.0005658190930262208, + 0.0018311680760234594, + -0.0003433352103456855, + 0.0020949242170900106, + 0.001013907021842897, + -1.859345502452925e-05, + -0.0001751065719872713, + -0.0013309464557096362, + 0.012017962522804737, + -0.00010830674000317231, + 0.0024797304067760706, + 0.0025951038114726543, + 7.17819930287078e-05, + 0.0017236539861187339, + -0.0020118060056120157, + 4.2303196096327156e-05, + 0.0011804032837972045, + 0.0018670739373192191, + 0.0009548965026624501, + 0.0018758930964395404, + -0.0021692002192139626, + -0.0010106799891218543, + 0.002825490664690733, + 0.0024085647892206907, + 0.00023061457613948733, + 0.00019388833607081324, + 0.0011650047963485122, + 0.0013310529757291079, + -0.0021057419944554567, + -0.0004727418418042362, + -0.0014493970666080713, + 0.0011947524035349488, + 0.001021033269353211, + 0.0024286601692438126, + -0.0004786561185028404, + -0.0012991908006370068, + -0.0020529101602733135, + -0.0006581881316378713, + -0.008595031686127186, + -0.0011569639900699258, + 0.002515861066058278, + 0.0010592377511784434, + 0.00038335463614203036, + 0.0016232177149504423, + 0.0008064095745794475, + -0.0005149970529600978, + 0.0029469660948961973, + 0.001652359846048057, + 9.257425699615851e-05, + 0.001549741136841476, + 0.0010407932568341494, + -0.0013964310055598617, + 0.0016839980380609632, + -6.897638377267867e-05, + -7.8092998592183e-05, + 0.0017181748989969492, + 0.0015029091155156493, + -0.0016608824953436852, + 0.00313476100564003, + 0.0011834438191726804, + 0.0010731000220403075, + 0.0026653746608644724, + 0.0024412197526544333, + -0.0007888521649874747, + 0.0012011333601549268, + 0.0006815125816501677, + -0.001680353656411171, + -0.0001547838473925367, + 0.0024333149194717407, + -0.00138153787702322, + -0.0026926021091639996, + -0.00014512338384520262, + 0.007150421384721994, + 0.0001721314765745774, + 0.0011502114357426763, + -0.0016272462671622634, + 0.00366412615403533, + -0.002280224347487092, + -0.00015169706603046507, + -0.00019793222600128502, + -0.0019855499267578125, + 0.0011641629971563816, + 0.00580266397446394, + 0.0012856802204623818, + 0.0013755469117313623, + 1.0290363206877373e-05, + 0.007587558124214411, + 0.00048472496564500034, + 0.0009584507788531482, + 0.002441885182633996, + -0.0027164164930582047, + 4.771852218254935e-06, + -0.0033223144710063934, + -0.002200659364461899, + -0.0003018758143298328, + -0.0013682700227946043, + 0.002097670454531908, + -0.00040866437484510243, + 0.0021620802581310272, + 0.0011875235941261053, + -0.0006376184173859656, + 0.0001771149254636839, + -0.0015177505556493998, + 0.0013105013640597463, + 0.0013503555674105883, + 0.0014671572716906667, + 0.0010172287002205849, + -0.0007830779650248587, + -0.001987420953810215, + 0.0005416959756985307, + 9.0444678789936e-05, + -0.0014427094720304012, + -0.00021434013615362346, + -0.0009093613480217755, + 0.0004557901993393898, + 0.0011478246888145804, + -0.0018882342847064137, + -0.001326825236901641, + 0.003563562175258994, + 0.00039886386366561055, + 0.00030565648921765387, + 0.0005563192535191774, + -0.000918294710572809, + 0.0011093000648543239, + -0.0010736826807260513, + 0.0006941377650946379, + -0.0019484513904899359, + -0.001974408281967044, + -0.0005936441593803465, + 0.00032614998053759336, + -0.0003719641244970262, + 0.0019780544098466635, + 0.0008333292789757252, + 0.001790902460925281, + 0.0029299878515303135, + 0.0032264345791190863, + 0.0013235993683338165, + -0.00027076745755039155, + 0.0006300677778199315, + 0.0004801533941645175, + 0.00761133199557662, + 0.0010978347854688764, + -0.0058965301141142845, + -0.001643848605453968, + -0.0015841403510421515, + -0.0025362286251038313, + -0.0003445508482400328, + 0.0012495272094383836, + 0.0011420717928558588, + -0.00017008831491693854, + -0.0012601028429344296, + 0.0008757158066146076, + -0.001031524152494967, + -0.0031001344323158264, + 0.00014785387611482292, + -0.0015717854257673025, + 0.0020242014434188604, + 0.0007817783043719828, + 0.0004973689210601151, + -0.0014080085093155503, + -0.00030751785379834473, + 3.785638909903355e-05, + -0.00022454056306742132, + -0.001901299343444407, + -0.0007613000925630331, + 0.0005309506668709219, + -0.0019248600583523512, + -0.00012421872816048563, + -0.000812760554254055, + 0.0034469219390302896, + -0.0031761901918798685, + -0.0016728088958188891, + -0.0016396105056628585, + 0.0026038524229079485, + -0.0009297176729887724, + -0.0019067084649577737, + -0.00046471235691569746, + 0.0006601575296372175, + 0.001960811670869589, + -0.0009803703287616372, + 0.0007802087347954512, + 0.0011340826749801636, + -1.726483242237009e-05, + -8.680103201186284e-05, + 0.0006498628645204008, + -0.0010152170434594154, + -0.000424559140810743, + 0.0018379298271611333, + 0.0003622530202846974, + 0.0005388074787333608, + -0.0008219311130233109, + -0.0016045216470956802, + -0.0005225236527621746, + 0.0003011056687682867, + 0.0005065123550593853, + 0.002635628916323185, + 0.0028465420473366976, + 0.005221819505095482, + 0.0031723282299935818, + 0.0007940102368593216, + 0.0015369764296337962, + -0.0006031275261193514, + 0.00011289269605185837, + -0.0013117979979142547, + 0.0035565500147640705, + -0.0002887278678826988, + 0.0003792923525907099, + -0.0013289813650771976, + 0.0016089639393612742, + 0.00033989144139923155, + -0.0009262613602913916, + 0.00061765470309183, + -0.0014665161725133657, + 0.0021517882123589516, + 0.000965035636909306, + -0.00721549428999424, + -0.00030889612389728427, + -0.0011489902390167117, + -0.00423585856333375, + -0.001042775111272931, + -0.001566580613143742, + 0.0012092558899894357, + -0.0008893142221495509, + -0.0006133756251074374, + -0.0015786470612511039, + 0.0036105290055274963, + 0.000615077733527869, + 0.0007145056151784956, + -0.0018410480115562677, + -0.0015610215486958623, + 0.0018161076586693525, + -0.0014065239811316133, + 0.0010341315064579248, + -0.001923330477438867, + 0.0010435550939291716, + -0.0026031523011624813, + 0.0010027599055320024, + 0.00031308719189837575, + 0.00037496790173463523, + -0.0016804041806608438, + -0.001735372468829155, + 0.001968811731785536, + 0.0018083157483488321, + -0.0012597882887348533, + 0.0010200106771662831, + 0.0005107109900563955, + -0.0001353842089883983, + -0.0026877985801547766, + 0.008764052763581276, + 0.00014447708963416517, + -0.0012103422777727246, + 0.0018038100097328424, + 0.003608166705816984, + -0.00027001669513992965, + 0.00011213320249225944, + -0.001141043845564127, + -0.0009020241559483111, + -0.007564850617200136, + -0.0008454552735202014, + 0.0007330998778343201, + -0.001647156081162393, + -0.0006498783477582037, + 0.0032164249569177628, + 0.002400714438408613, + 0.0019585576374083757, + -0.004051651805639267, + -0.0018298416398465633, + 0.0003638919733930379, + 0.0007739661959931254, + 0.0013961358927190304, + 0.0012153035495430231, + 0.004712145309895277, + -0.003107369178906083, + -0.0013526533730328083, + 0.0026732380501925945, + -9.840065467869863e-05, + 0.001111839315854013, + -0.0020039775408804417, + 0.002263688948005438, + 0.0004583342233672738, + 0.0006701753591187298, + -0.001019743736833334, + 0.0013549657305702567, + 0.0007522323285229504, + 0.0016025975346565247, + 0.0006938145961612463, + -0.0006649430142715573, + 0.0023262877948582172, + 0.000620320497546345, + 7.851072587072849e-05, + -0.0008723753271624446, + -0.002007744973525405, + 0.003467654110863805, + -0.001972548896446824, + 0.0006925627239979804, + 0.0008266661898232996, + -0.002449974650517106, + -0.0004816343716811389, + 0.0034230274613946676, + -0.0009506309870630503, + 0.0022448364179581404, + 0.001629915670491755, + 0.0016354823019355536, + -0.0002758871123660356, + 0.0003716599603649229, + 0.00019271565543022007, + -0.0033085106406360865, + 0.0004078896890860051, + 0.000877030601259321, + 0.001310420804657042, + 0.0013512418372556567, + 0.0014384533278644085, + -0.0009951964020729065, + 0.004965835250914097, + -0.0009349758038297296, + 0.0003527079534251243, + -0.0012236528564244509, + 0.013645975850522518, + 0.0010762690799310803, + -0.0021812699269503355, + -0.0036184731870889664, + 0.0010686680907383561, + -0.00035233478411100805, + 0.0016658299136906862, + 0.0015528210205957294, + 0.0012243008241057396, + -0.0010125054977834225, + 0.001813448965549469, + 0.002783019794151187, + -0.0013920067576691508, + -0.0008323253132402897, + 0.0029738666489720345, + -0.0010405192151665688, + -0.006949421484023333, + -0.003514079377055168, + 0.0005689134122803807, + -0.0002452756743878126, + -6.876874977024272e-05, + -0.0025086498353630304, + 0.0035717340651899576, + -0.0018334718188270926, + -7.758159335935488e-05, + -0.0015231195138767362, + 7.776381244184449e-05, + 0.002254517748951912, + -0.0005069537437520921, + 0.00032671759254299104, + -0.0016900567570701241, + -0.0027743689715862274, + 9.395308006787673e-05, + -0.00036392893525771797, + -0.0008076771628111601, + 0.0004295454127714038, + 0.0028667079750448465, + -0.0007153156911954284, + -0.002427133498713374, + 0.002732299966737628, + -0.001283370889723301, + -0.001390730612911284, + -0.0009148180834017694, + 0.0011545248562470078, + 0.001595994341187179, + -0.0010400537867099047, + -0.0008093634969554842, + -0.0003833233204204589, + 0.0023150008637458086, + 0.004421762656420469, + 0.0016352874226868153, + 0.0010646214941516519, + 0.0007193426135927439, + -0.0008167715859599411, + 0.0022759740240871906, + 0.0016320233698934317, + 0.00018594299035612494, + 0.001124727656133473, + -0.0003397409454919398, + -0.0008028966840356588, + 0.0004944878746755421, + -0.0009920988231897354, + 0.0005121708381921053, + 0.0012388784671202302, + 0.0019660324323922396, + -0.00033818796509876847, + -0.001074237166903913, + -0.0001828325039241463, + 0.0015447331825271249, + -0.0002034416829701513, + -0.0022660878021270037, + -0.0018611883278936148, + 0.00072751339757815, + -1.5138583876250777e-05, + -0.002382760401815176, + 0.001084397197701037, + -0.002036140998825431, + -0.0025960265193134546, + 5.672384759236593e-06, + -0.0032114475034177303, + 0.001675897161476314, + 0.003342813579365611, + 0.0014641088200733066, + 0.00013356337149161845, + -0.0011436024215072393, + 0.0017026446294039488, + 0.00037835148395970464, + 0.0002734510926529765, + -0.0003508156805764884, + 0.0025916676968336105, + -0.0003084555210079998, + -0.0002574147656559944, + 0.004448997788131237, + 0.0016566760605201125, + -0.00014249513333197683, + -0.0010055546881631017, + 0.001672588987275958, + -0.0010909333359450102, + 0.0023425950203090906, + 0.0008606509072706103, + -0.003296609502285719, + 0.0031465671490877867, + 9.947984653990716e-05, + 0.0020604818128049374, + -0.0011393600143492222, + 0.0007716206018812954, + -0.0030118762515485287, + -0.0009888603817671537, + -0.0053068953566253185, + 0.004150803200900555, + 0.00041222767322324216, + -0.0016933587612584233, + 0.002341275103390217, + 0.000935526448301971, + -0.003531284164637327, + 0.0011541794519871473, + 0.001978397835046053, + -0.0042603500187397, + 0.0008470375905744731, + -0.0006528440862894058, + 0.000597945530898869, + 0.0014466829597949982, + -0.0012244104873389006, + -0.000882049382198602, + -0.0022106945980340242, + 0.0005952630308456719, + 0.0012628305703401566, + 0.000909630034584552, + -4.771283784066327e-05, + 0.0017373434966430068, + -0.00013790834054816514, + 0.00217418628744781, + 0.002088712528347969, + -0.002229934325441718, + 0.0016462976345792413, + -0.0029365152586251497, + 0.000641011749394238, + 0.00038044078974053264, + -0.0007051420980133116, + -0.0007388569647446275, + -0.0010399275925010443, + -0.0007579623488709331, + -0.00040365668246522546, + 0.000814742234069854, + -0.0010921739740297198, + -0.0013680336996912956, + -0.002315226709470153, + -0.0009542188490740955, + -5.240085010882467e-05, + 0.00526172062382102, + -0.00010210414620814845, + -0.00038635105011053383, + 0.005727747455239296, + 0.001043644268065691, + -0.0015409794868901372, + -0.0029651678632944822, + 0.00486644497141242, + -0.0014937990345060825, + -0.004215956665575504, + 0.0007591780158691108, + -0.0004359988961368799, + -0.003377752611413598, + 0.0008490638574585319, + -0.0010268352925777435, + -3.868107796733966e-06, + 0.0023523804266005754, + 0.001481885788962245, + -0.0015069565270096064, + -0.0015474444953724742, + -0.0005650587263517082, + 0.004325635265558958, + 0.00020866985141765326, + 0.0020317677408456802, + 0.0019158754730597138, + 9.92703644442372e-05, + -0.0009408865007571876, + 0.0009018497657962143, + 0.002031385898590088, + 0.0027284331154078245, + 0.0019896295852959156, + -1.2495504051912576e-05, + 0.0010801417520269752, + 0.001421445282176137, + 0.000603978056460619, + -0.0012518141884356737, + -0.0029295708518475294, + -0.0002262554335175082, + 0.0022958077024668455, + -0.0002245963114546612, + -0.0021807788871228695, + 0.0030641681514680386, + 0.00020720809698104858, + -0.0025843523908406496, + -0.0007267857436090708, + 0.00046131599810905755, + 0.0016979225911200047, + 0.0016248386818915606, + -0.002147441264241934, + -0.0004314763646107167, + 0.005512472242116928, + -0.0028195828199386597, + 0.0015903193270787597, + -0.00172199378721416, + 4.097407509107143e-05, + 0.0012335379142314196, + -0.0007024083752185106, + 0.005103644914925098, + -0.0008688645320944488, + -0.0005867828731425107, + -0.0003059999435208738, + 0.0008814532775431871, + -0.000954283750616014, + 0.00013074299204163253, + -0.0041518439538776875, + 0.00021027443290222436, + 0.002919780556112528, + 0.0008781147189438343, + 0.00020471221068874002, + -0.0004529579309746623, + 0.0015962776960805058, + -8.656101999804378e-05, + -0.0014169582864269614, + -0.00016322794544976205, + -0.00288994493894279, + -0.00028397791902534664, + 0.0016245293663814664, + -0.0013000261969864368, + 0.0004745126934722066, + 0.00045049324398860335, + -0.00018175797595176846, + 0.0011558200931176543, + 0.00015561829786747694, + -0.001731857773847878, + 0.0004995243507437408, + 0.0016715802485123277, + -0.001694142702035606, + 0.0014488011365756392, + 0.0005127101321704686, + 4.079645805177279e-05, + -0.003400305053219199, + -0.0022325029131025076, + -0.0005131460493430495, + 0.0014640184817835689, + -0.00013714974920731038, + -0.001052144099958241, + -0.0012161118211224675, + 0.0019406332867220044, + -0.001560186268761754, + -0.0007827722583897412, + -0.0027939239516854286, + 0.0010797652648761868, + -0.006625773385167122, + 0.002347651170566678, + -0.002199881011620164, + -0.0011304965009912848, + 0.005217951722443104, + -0.004144731443375349, + 2.9470726076397114e-05, + -0.0007788314251229167, + -0.00208798935636878, + -0.0010417272569611669, + 0.0013051775749772787, + 0.0008636356214992702, + -0.0005462928093038499, + 0.0018888585036620498, + -0.001983370864763856, + -0.0012682880042120814, + -0.0004245380114298314, + -0.004078932572156191, + 0.002044935245066881, + -0.0018048423808068037, + 0.00032850317074917257, + -0.0013899458572268486, + -0.0008491073967888951, + 0.002151394495740533, + -0.000955446157604456, + -0.0030866775196045637, + -0.0006864083698019385, + -9.47475855355151e-05, + 0.0014918985543772578, + -0.001212586648762226, + 0.0005562664591707289, + 0.0011702134506776929, + 0.0018382256384938955, + 0.0021832375787198544, + -0.0005191215313971043, + -0.0015918404096737504, + -0.0001316783163929358, + -0.00262875366024673, + 0.001401297515258193, + 0.00039817849756218493, + -0.0013854415155947208, + -0.0005970985512249172, + 0.0023686683271080256, + 0.0008678378071635962, + 0.0019656734075397253, + -8.549915946787223e-05, + 0.0007739438442513347, + 0.0013626462314277887, + -0.0014023518888279796, + -0.0027578333392739296, + -0.0012975723948329687, + 0.0002765524841379374, + 0.0005045023281127214, + 0.00014379322237800807, + -0.0007051313295960426, + -0.0015868329210206866, + -0.0019285721937194467, + -0.0034183161333203316, + 0.0014955244259908795, + 0.00245425826869905, + -1.4039987036085222e-05, + -0.007697437424212694, + 0.0008024052949622273, + 0.0014097532257437706, + 0.0016629325691610575, + 0.00236526969820261, + -0.0018396679079160094, + -0.001441356958821416, + -0.0002920780098065734, + -0.00258674006909132, + -0.001217903452925384, + -0.0005511002382263541, + 0.0028796454425901175, + 0.0007731216610409319, + 0.0019008161034435034, + 0.0037856432609260082, + -0.0020857404451817274, + 0.000785425363574177, + -0.0019906640518456697, + 0.001341135473921895, + -0.00486771110445261, + 0.00012753023474942893, + -0.0010912822326645255, + -3.4595857869135216e-05, + -0.0005361714866012335, + -0.0002022361004492268, + -0.00265360064804554, + 0.00016263170982711017, + 0.00012695939221885055, + 0.00649528531357646, + 0.0013851586263626814, + -0.00033355067716911435, + -0.0026930689346045256, + 0.0014711099211126566, + 0.00021857091633137316, + -0.0019845308270305395, + 0.0002510902122594416, + -0.00029116959194652736, + 1.9074703232035972e-05, + 0.0036482710856944323, + -0.0027078816201537848, + 0.00015400904521811754, + 0.002033709082752466, + -0.002611700911074877, + -3.021930024260655e-05, + -0.0004523523966781795, + 0.0022073998115956783, + -0.0012596278684213758, + -0.0009784180438145995, + -0.002572795143350959, + -0.0003926339268218726, + 0.0017922248225659132, + 0.002435841131955385, + -0.0026239019352942705, + -0.0062407515943050385, + -0.0018613665597513318, + 0.0033403278794139624, + 0.0028374819085001945, + -0.000720486044883728, + 0.0027388371527194977, + -0.0018632865976542234, + 0.000576711492612958, + 0.00045331832370720804, + -0.001494628726504743, + 0.0011015923228114843, + -0.0012822201242670417, + -0.000540266337338835, + -0.0009844556916505098, + 0.0026912095490843058, + 0.0006426514009945095, + -4.533419632934965e-05, + 0.00045092293294146657, + -0.0014120794367045164, + -0.0015231291763484478, + -1.0296674872734002e-06, + 0.000553038262296468, + 0.00081535434583202, + 0.0051956092938780785, + 0.0007576164207421243, + 0.00437635462731123, + -0.0006534276762977242, + 0.002125901635736227, + -0.0014002174139022827, + 0.005105053540319204, + 0.00041175889782607555, + -0.0001592133630765602, + 0.003151081735268235, + 0.003498703008517623, + -0.001049819402396679, + -0.0009511527023278177, + 0.003551060799509287, + 0.0006920796586200595, + -0.0025717681273818016, + -0.0013403692282736301, + 0.0034791892394423485, + 0.0008131970535032451, + -0.002433682093396783, + -0.0006431024521589279, + -0.000425634701969102, + -0.0013924784725531936, + 0.000499433372169733, + -0.0019892139825969934, + 0.001286071608774364, + -0.0023931071627885103, + -0.0014798172051087022, + 0.0040140533819794655, + -0.0023161754943430424, + 0.001196045894175768, + 0.00046052804100327194, + -0.006435659248381853, + -0.0002319539780728519, + -0.0010847204830497503, + 0.0006404472514986992, + 0.0006539530004374683, + 0.001463336287997663, + 0.004732709843665361, + 0.002449183026328683, + -0.00012675249308813363, + -0.0015040274010971189, + 0.0007708770572207868, + 0.0020269991364330053, + 0.0003515693824738264, + 0.00229458324611187, + -0.002529128221794963, + -0.0009988687233999372, + 0.0011469933670014143, + 0.0031128476839512587, + 0.0015233069425448775, + 0.0014282461488619447, + -0.00011618342250585556, + -0.0017442202661186457, + 0.0018101385794579983, + -0.0002608805662021041, + 0.0006611744174733758, + -0.002423639874905348, + 0.00036230578552931547, + 0.001208120840601623, + -2.2721827917848714e-05, + 0.00802809651941061, + -0.0005476038786582649, + 0.003821058664470911, + 0.0018013145308941603, + 0.001141681452281773, + 0.0030001462437212467, + 0.0017664768965914845, + -0.0004270983044989407, + 0.0006431582733057439, + -0.003921545576304197, + -0.00076990423258394, + -0.001415996695868671, + -0.0007834592252038419, + -0.003922450356185436, + 0.0005102413706481457, + 0.0025683713611215353, + 0.0011869111331179738, + 0.0016315701650455594, + -0.0007209802279248834, + -0.0010228004539385438, + -0.0011832689633592963, + -9.058107025339268e-06, + -0.0007096915505826473, + 0.0008445139392279088, + 0.0006240521906875074, + 0.000509031058754772, + 0.000684883096255362, + 0.0014710620744153857, + -0.0028823516331613064, + -0.00013027206296101213, + 0.0016143890097737312, + -0.0005669529200531542, + -0.004285686183720827, + 0.0011592196533456445, + 0.0012744150590151548, + 0.0002600648731458932, + 0.004144053906202316, + 0.0009902528254315257, + -0.0020120302215218544, + -0.0012124842032790184, + 0.0014696617145091295, + -0.0022847356740385294, + 0.001330402446910739, + -0.001917494460940361, + 0.002142366487532854, + 0.003832611022517085, + -0.002388829132542014, + -0.0013086145045235753, + -0.0006015135440975428, + 0.00024027515610214323, + -0.0017064152052626014, + -0.00253166607581079, + -0.0013665644219145179, + 0.00264448462985456, + -0.001082892995327711, + 0.0013789975782856345, + 0.0011567703913897276, + -0.0018205353990197182, + -0.0017841110238805413, + -0.0018422577995806932, + 0.0005113473744131625, + -0.0009595681913197041, + -0.0005711658159270883, + -0.0011910536559298635, + -0.0007464597001671791, + -0.0012001520954072475, + 9.99437106656842e-05, + 0.002861111192032695, + 0.00032158850808627903, + -0.0006166445673443377, + 0.0018323776312172413, + -0.0010009420802816749, + -0.0003110138059128076, + -0.0004915476310998201, + -0.00011955980153288692, + 0.0009267040877602994, + 0.004352703224867582, + -0.001371956430375576, + -0.0011731956619769335, + -0.0007002612692303956, + -0.000929345260374248, + -0.002456992631778121, + 0.0023402816150337458, + 0.000412430934375152, + -0.00010157463839277625, + 0.0010653925128281116, + 0.003146111499518156, + 0.0008461989928036928, + -0.0032527875155210495, + -0.000715755217242986, + -0.0020970450714230537, + -0.00012536959548015147, + -0.0010767873609438539, + -0.0007577741635031998, + 0.0012576961889863014, + 0.0017749759135767817, + 0.000265925977146253, + -0.0007869800901971757, + -0.01905478723347187, + 0.0013900049962103367, + -0.0011253968114033341, + 0.00041260389843955636, + -0.0008111122297123075, + -0.0013512329896911979, + -0.0003238220524508506, + 0.0005799196660518646, + 0.0008152570808306336, + -0.0010121635859832168, + -0.003926430828869343, + 0.00034087765379808843, + 0.0034623865503817797, + -0.0019730878993868828, + -0.000979693839326501, + -0.000999112264253199, + 0.001295555499382317, + 0.002163045108318329, + -0.0005585491308011115, + -0.0002811831363942474, + -0.0009013997041620314, + -0.0026422080118209124, + -0.0025068263057619333, + -0.0006078718579374254, + -0.0031321849673986435, + -0.0020838689524680376, + 0.0006502897595055401, + 0.00036127999192103744, + -0.0002874196507036686, + -0.0015981118194758892, + -0.0012519934680312872, + -0.000982975005172193, + 0.001206455985084176, + -0.0004942318191751838, + 0.00017893662152346224, + -0.0008461721008643508, + -0.0006213999586179852, + -0.004162375815212727, + -0.0005865422426722944, + -0.002691347384825349, + 0.0008896799990907311, + 0.00025263472343795, + 0.001369657926261425, + -0.0010052165016531944, + -0.002500846516340971, + -0.001505330321379006, + 0.004321437329053879, + -0.0014017142821103334, + 0.0030824439600110054, + -0.001697979518212378, + 0.0003646406112238765, + -0.003763470333069563, + -0.004050222225487232, + -0.0023039979860186577, + -0.002090283203870058, + -0.0020831716246902943, + 0.0034650808665901423, + 0.000624199747107923, + 0.005891379434615374, + 0.00276827160269022, + -0.0006549227982759476, + 0.0013181514805182815, + -0.0013254133518785238, + -0.0008222307078540325, + 0.0012076054699718952, + -0.00107251584995538, + -4.986061685485765e-05, + 0.002317852107807994, + -2.76185164693743e-05, + 0.0013843066990375519, + 0.00028910196851938963, + -0.00010880444460781291, + -0.0002156074478989467, + 0.0032725350465625525, + 0.0009110895334742963, + 0.00029128268943168223, + -0.0016506464453414083, + 0.0026534514036029577, + -0.0011232850374653935, + -0.0030793414916843176, + 0.0006522212061099708, + -0.0011858476791530848, + -0.001084411283954978, + 0.0016172649338841438, + 0.0011555468663573265, + -0.0004905387759208679, + -0.005432731006294489, + 0.00042323608067817986, + -4.716525290859863e-05, + -2.6045912818517536e-05, + 0.000841584347654134, + 0.0009301375830546021, + -0.00029437130433507264, + 0.0003442603338044137, + -0.0024369582533836365, + -0.000915953831281513, + -0.0016448450041934848, + -0.0008975900709629059, + 0.0017263343324884772, + -0.00021364152780734003, + -5.0717306294245645e-05, + 6.617396866204217e-05, + 0.0011907925363630056, + -0.0016918574692681432, + 0.0009726627031341195, + -0.0007105983095243573, + 0.00019463032367639244, + 0.0003699145745486021, + -0.0017962093697860837, + 0.0013287152396515012, + 0.00297139142639935, + 0.0014515925431624055, + -0.0023260742891579866, + 0.0013763519236817956, + 0.001149409101344645, + -5.8496560086496174e-05, + -0.0008544863667339087, + -0.00037007208447903395, + 7.144687697291374e-05, + 0.008442379534244537, + 0.0009839041158556938, + -0.00024795846547931433, + 0.0010671489872038364, + -0.0003974972933065146, + -0.001229863497428596, + -0.0005826745764352381, + 0.001731987576931715, + -0.0012383374851197004, + 0.0017900461098179221, + -0.001810968853533268, + -0.0009080118616111577, + -0.0011945151491090655, + -0.0006132688722573221, + -0.0019988608546555042, + -0.0011647946666926146, + -0.0002721932833082974, + -0.0008556992979720235, + -0.00033666950184851885, + -0.0025861936155706644, + -8.299902401631698e-05, + -0.0025707422755658627, + -0.0007185642025433481, + 0.0004433616413734853, + -0.0004663760191760957, + 0.0011435393244028091, + 0.0040929485112428665, + 0.0011464188573881984, + -0.0005678391316905618, + -0.0012852501822635531, + -0.0013823865447193384, + 0.00303244823589921, + -0.0009557213634252548, + 0.0006016491679474711, + -0.0019020376494154334, + 0.0001740743318805471, + 0.0020284501370042562, + 0.0012535675195977092, + 0.0017660674639046192, + -0.0012421709252521396, + 0.0020740176551043987, + 0.003014169167727232, + 0.0014221519231796265, + 0.001824334030970931, + -0.004860640037804842, + -0.00015900962171144783, + 0.0003956951550208032, + 0.0012096187565475702, + -0.0014374691527336836, + 0.0018462762236595154, + -0.00020769496040884405, + 0.00048682393389754, + -0.0003319014504086226, + -0.0005931076593697071, + 0.0021628038957715034, + 0.00012318178778514266, + -0.0012459199642762542, + 0.0020256727002561092, + 0.0008371756412088871, + -0.0011995561653748155, + 0.000695910130161792, + 9.030468936543912e-05, + 0.001555211958475411, + -0.0033225356601178646, + -0.002184125827625394, + 0.000837848347146064, + 0.0008285128860734403, + -0.0005442393012344837, + -0.0008353314478881657, + 0.0002860066597349942, + -9.417855471838266e-05, + 0.0019246649462729692, + -0.0013374899281188846, + -0.0010221876436844468, + 0.00015781456022523344, + 0.0007921617943793535, + -0.0020936515647917986, + -0.0015102854231372476, + -0.0017002334352582693, + 0.00026792383869178593, + 0.0002904701977968216, + 0.0013783032773062587, + 0.0001314240653300658, + 0.0006869226926937699, + 0.0002397035714238882, + -9.373619104735553e-05, + -0.0002660956233739853, + -0.0005881301476620138, + 0.00045715560554526746, + 0.00020032704924233258, + 0.0016694065416231751, + 0.0009368355968035758, + -0.00048115316894836724, + 0.0026321725454181433, + -0.0006160056800581515, + 0.001110440120100975, + 0.0007435081643052399, + 0.0029441185761243105, + 0.0008690290269441903, + 0.0019182420801371336, + 0.001867432612925768, + -0.01021931879222393, + 0.001052115228958428, + 0.0004975461633875966, + -0.001375417341478169, + -0.0013294790405780077, + -0.0017520706169307232, + 0.0019753093365579844, + 0.0011381730437278748, + 0.00018570259271655232, + -0.00038665891042910516, + -0.0006021642475388944, + 0.002077981596812606, + 0.0006099878228269517, + -0.0001737457641866058, + -0.0028868147637695074, + -0.003355639986693859, + -0.0019446841906756163, + 0.0006361269042827189, + 8.730413537705317e-05, + 0.0008183674071915448, + 0.00013876396405976266, + -0.0006183047662489116, + 0.0019568700809031725, + -0.00020032426982652396, + 0.0008297852473333478, + -0.0005232166149653494, + 0.0011480613611638546, + -0.002327674301341176, + 0.00010792719695018604, + -0.0007939960923977196, + -0.002098433207720518, + 0.0024835949297994375, + 0.0008653912809677422, + -0.0007985172560438514, + 0.0016265864251181483, + -0.0004081361403223127, + 0.0011199922300875187, + 0.0035567518789321184, + 0.0017638092394918203, + 0.003084094962105155, + -0.0003511257527861744, + 0.0009774875361472368, + -2.194490207330091e-07, + -0.0023199133574962616, + 0.0008255328284576535, + -0.0005073149804957211, + 0.0012193210422992706, + -0.00045461056288331747, + -0.0015236309263855219, + 0.0013437612215057015, + 0.0009206875693053007, + -0.0037093968130648136, + -0.0014138519763946533, + 0.0010213302448391914, + 0.0025779062416404486, + 0.00029639602871611714, + -0.00017596204997971654, + -0.002131777349859476, + -0.0009987509110942483, + -0.0014608849305659533, + 0.0015415583038702607, + -0.0012400603154674172, + -0.0036594518460333347, + -0.0009493599063716829, + -0.0017017348436638713, + 0.0020510361064225435, + -0.001355692744255066, + -0.0015259594656527042, + -0.00017980521079152822, + 0.00044578066444955766, + -0.0013959085335955024, + 0.0002738723414950073, + -0.000884305452927947, + 0.0006443356978707016, + -0.0032481676898896694, + 0.000615699915215373, + 0.0008552919025532901, + 0.001682855887338519, + -0.00016432971460744739, + 9.623805090086535e-05, + -0.002428508596494794, + -0.0009984502103179693, + 0.0003456460253801197, + 0.0009191549033857882, + -0.001109096803702414, + 0.0010039140470325947, + 0.002004254376515746, + 0.0005386327393352985, + -0.0005668888334184885, + -0.002233063569292426, + -0.0017832651501521468, + 0.00036838953383266926, + -0.0011610527290031314, + 0.0019111395813524723, + -0.0015665731625631452, + -0.0020735214930027723, + 0.0005151114892214537, + -0.0008510316256433725, + 0.00021994844428263605, + 0.003885316662490368, + -0.0027120450977236032, + 1.4003186151967384e-05, + -0.0016063342336565256, + -0.0007696400862187147, + 0.0012487220810726285, + 0.001206974033266306, + 7.808358350303024e-05, + 0.00011062787962146103, + 0.000744551420211792, + 0.0004069832502864301, + 0.00256212055683136, + 0.003425909671932459, + -0.0006290183519013226, + -0.0013110670261085033, + -0.003583019133657217, + 0.0015701405936852098, + -0.0016446859808638692, + 0.0020601090509444475, + 0.0010648942552506924, + 0.001002211356535554, + 0.0016667598392814398, + 0.0025261009577661753, + -0.0003547066589817405, + -0.0009719904628582299, + 0.0010268931509926915, + 1.3545098227041308e-05, + 0.0006552617414854467, + -0.004667739383876324, + 0.0014522143173962831, + 0.0031651281751692295, + 0.0009634480229578912, + -0.0014394361060112715, + -0.00039469817420467734, + -0.0016631386242806911, + 0.000762933399528265, + -0.0008479428361169994, + 0.000530364690348506, + 0.00010402523912489414, + -0.0025763604789972305, + 0.0017248363001272082, + 0.0010393280535936356, + -0.0005593227106146514, + -0.00014014789485372603, + -0.0008495054789818823, + -0.00047329498920589685, + 0.002908316208049655, + 0.0008018492953851819, + -0.0004106585984118283, + -0.0024475804530084133, + -0.002385085681453347, + -0.000103720449260436, + 0.006637976970523596, + -0.002125099068507552, + -0.00020738772582262754, + 0.00041616312228143215, + -0.0010244115255773067, + 0.0008241976611316204, + -4.178615927230567e-05, + -0.0019940114580094814, + 7.625310536241159e-05, + -0.0021297733765095472, + -0.0014696083962917328, + -0.0027285295072942972, + -0.000713723711669445, + -0.0012333577033132315, + -0.0008730393601581454, + 0.0033607531804591417, + 0.0042099361307919025, + -0.0019949290435761213, + 0.0012992431875318289, + 0.00014543063298333436, + 0.003727830247953534, + 0.0011673218104988337, + -0.0007495488389395177, + -0.00194414216093719, + 0.005093309562653303, + 0.0013385415077209473, + -0.004539472050964832, + 0.0003571140405256301, + 0.0026191361248493195, + 0.0006274309125728905, + 0.0009925334015861154, + -0.0015476987464353442, + -0.0005165973561815917, + 0.0012006773613393307, + -0.0017476725624874234, + 0.0054237935692071915, + -0.00041209752089343965, + -0.001507901935838163, + 0.00027091550873592496, + -0.000900912273209542, + -0.0023101589176803827, + -2.3193455490400083e-05, + 0.0014320453628897667, + -0.0017775017768144608, + 0.0038659011479467154, + -0.0015778220258653164, + -0.004223819822072983, + 0.0022705846931785345, + -0.00047983074910007417, + -0.0018294494366273284, + -0.0004335945122875273, + -0.0006655787583440542, + 0.00014815105532761663, + -0.0010246154852211475, + 0.0004537724598776549, + -0.002587184077128768, + -0.00176032236777246, + -0.0013986515114083886, + -0.0004321747401263565, + -0.001761983847245574, + 0.0018056880217045546, + 0.000499615038279444, + 0.0009609331609681249, + -0.0030531352385878563, + -0.004327102098613977, + 0.0011134793749079108, + 0.0037610207218676805, + 0.9712010025978088, + -0.008726161904633045, + 0.001545978942885995, + 0.0018422453431412578, + 0.0014667613431811333, + 0.00013198223314248025, + 8.395769691560417e-05, + -0.004798023961484432, + -0.0037077295128256083, + 0.0004405109502840787, + 0.0002857670478988439, + -0.0015687306877225637, + -0.002942281076684594, + 0.0022664922289550304, + 0.0015875534154474735, + 0.00014091252523940057, + 0.0012874584645032883, + 0.0016582150710746646, + 0.0012394206132739782, + -0.0009845499880611897, + -0.0025806440971791744, + -4.985830673831515e-05, + -0.005063168704509735, + 0.000765420263633132, + 0.0010522030061110854, + -0.0016323407180607319, + 0.002567953197285533, + 0.000142579767270945, + -0.0017492413753643632, + 0.0002550506324041635, + 0.00013692217180505395, + -0.0035951705649495125, + 0.0013509007403627038, + 0.00032804510556161404, + 0.0008091583731584251, + -0.0017782998038455844, + -0.0023200628347694874, + -0.000804318580776453, + -0.0006302641122601926, + 0.0009259612997993827, + -0.00459399214014411, + 0.00035860363277606666, + 0.00222776853479445, + 0.0015365004073828459, + 0.002288862131536007, + 0.0011743013747036457, + 0.00029457814525812864, + 0.0014164104359224439, + 0.0014114069053903222, + 0.0029070740565657616, + 0.004788487683981657, + -0.00041500854422338307, + 0.0015249316347762942, + -0.0009709286969155073, + -0.0005245183128863573, + 0.0018481509760022163, + 0.001034326502121985, + -0.0050832428969442844, + 0.0022566590923815966, + -6.955024582566693e-05, + 0.0006500459276139736, + -0.0020908708684146404, + 0.0003221185179427266, + -0.001927342964336276, + 0.002603433560580015, + -0.0010088782291859388, + -0.0004141836252529174, + 0.007764532696455717, + -0.00025660573737695813, + 0.0010688822949305177, + -0.0002894877688959241, + 0.00168028031475842, + -0.0004328985814936459, + -0.002990949433296919, + 0.00043018889846280217, + 0.008118481375277042, + -0.00326452380977571, + -0.001967900199815631, + 0.005150690674781799, + -0.0007714565144851804, + 0.0013626994332298636, + 0.0005688138189725578, + 0.00288455281406641, + 0.0017675372073426843, + -0.002024021465331316, + -0.00022163613175507635, + 0.0003257562348153442, + -0.0006009202916175127, + -0.0022169966250658035, + -0.00022451976838055998, + -0.0006676524644717574, + 8.327255636686459e-05, + 0.0006603826768696308, + -0.00016813675756566226, + 0.0006054247496649623, + 0.0005898064700886607, + -0.0009943506447598338, + 0.0017504479037597775, + 7.129554433049634e-05, + 0.0016380026936531067, + 0.00038597395177930593, + -0.000102634345239494, + -0.0002296716411365196, + -0.0016562726814299822, + -0.00016095497994683683, + -0.0009499691659584641, + -5.348809281713329e-05, + 0.0009397733956575394, + 0.00011510686454130337, + 0.00033298027119599283, + 0.002328487578779459, + 0.0014710037503391504, + 0.0014116201782599092, + -0.0006920419982634485, + -0.0021290380973368883, + 0.00894771795719862, + -0.0023575942032039165, + -0.0014237520517781377, + 0.0018552152905613184, + -0.000879364728461951, + 0.0005405956762842834, + -0.0023712925612926483, + 0.0034778020344674587, + -0.00026793789584189653, + 0.0013528796844184399, + 0.002054254524409771, + 0.0008851675665937364, + -0.0014213869580999017, + -0.0005133379017934203, + 0.0007511573494412005, + -0.0010094824247062206, + 0.0002942778810393065, + -6.293544720392674e-05, + 0.001696101506240666, + -0.0005238198209553957, + -0.0028469767421483994, + -0.0003643623203970492, + -0.0036679874174296856, + 0.0005419260123744607, + 0.001944639370776713, + -0.00033102219458669424, + -0.001904509961605072, + 0.00020189151109661907, + -0.00031766569009050727, + -0.0007545917760580778, + 0.0039372858591377735, + -0.0026503195986151695, + -0.002348492620512843, + 0.0004100975056644529, + -0.00038146329461596906, + 0.0007697973633185029, + 0.0003170424606651068, + 0.0014517164090648293, + -0.0015323096886277199, + -0.0013363553443923593, + -0.00037724949652329087, + 0.000165405057487078, + 0.0006234809989109635, + 0.0008303262293338776, + -0.0013728132471442223, + -0.0007178255473263562, + 0.0009084782795980573, + 0.0011098445393145084, + -0.0012445398606359959, + 0.00038033979944884777, + -0.00046725996071472764, + -0.0005131939542479813, + 0.0012196084717288613, + -0.00013675181253347546, + -0.0003575757727958262, + 0.001699998159892857, + 0.00200292794033885, + -0.0007843200000934303, + -5.854296250618063e-05, + -0.0005346934194676578, + -0.0025318777188658714, + 0.001552396104671061, + -0.0006318429950624704, + -0.001870753476396203, + -0.0006378493853844702, + -0.002410776447504759, + 0.0014069804456084967, + -0.001130446558818221, + 0.0006233509047888219, + -0.0018059815047308803, + 0.002253716578707099, + 0.00025046791415661573, + -0.0026330086402595043, + 0.00011397301568649709, + 0.004524684511125088, + 0.0009328742162324488, + 0.0006594504229724407, + 0.0009960124734789133, + 0.0011127955513074994, + -0.001487069996073842, + 0.0007135030464269221, + 0.0006075437995605171, + -0.0017911097966134548, + -0.00016052176943048835, + -0.0002654466952662915, + 0.0025073804426938295, + 0.0009571541449986398, + -0.00023244977637659758, + 0.003972856793552637, + 0.001000282703898847, + -0.0004107109270989895, + 0.0038855026941746473, + -0.0008457994554191828, + 0.0002658139856066555, + 0.002295107813552022, + 0.0055844043381512165, + -0.0020144949667155743, + -0.001391426078043878, + 0.003280685283243656, + -0.0008690599934197962, + 0.0003948069061152637, + 0.00017823376401793212, + 0.0011643196921795607, + 0.00010495223250472918, + -0.0024037028197199106, + -0.0012874266831204295, + -0.0024085973855108023, + 0.003273595357313752, + 0.0015224944800138474, + 0.0007033230504021049, + 4.845460352953523e-06, + 0.0007428143289871514, + 0.0030368859879672527, + -0.0005475024227052927, + 0.0019884321372956038, + 0.0002834789047483355, + -0.0016638198867440224, + 0.0008139103883877397, + 0.0006107928929850459, + -0.0017566189635545015, + 0.002481794683262706, + 0.003385930322110653, + 0.0007913184817880392, + 0.002411459805443883, + 0.0004855171428062022, + 0.0008132794755510986, + -0.00134143081959337, + 0.0004272115766070783, + -0.0030257583130151033, + -0.0017944058636203408, + -9.603948274161667e-05, + -0.0005044811405241489, + -0.0013632323825731874, + 0.0006771226180717349, + -0.0023340785410255194, + 0.009023449383676052, + -0.0015912888338789344, + 0.001193054486066103, + -0.0009347543236799538, + -0.0016640436369925737, + 0.002095883246511221, + -0.002227615565061569, + -0.0035344399511814117, + -0.0021493162494152784, + 0.0004887672839686275, + -0.002312140306457877, + -0.0005918863462284207, + 0.0028437853325158358, + 1.6443676940980367e-05, + -0.0011638081632554531, + -0.0007653087377548218, + 0.00019333403906784952, + -4.011150303995237e-05, + 0.0006552432896569371, + 0.00039233436109498143, + 0.008208082057535648, + 0.0016201338730752468, + -0.00026982842246070504, + -0.0009188810363411903, + -0.0006206401740200818, + 0.0004710153734777123, + -0.0014628778444603086, + -0.0016012208070605993, + -0.000811516831163317, + 0.00020163763838354498, + 0.0017476478824391961, + 0.0018830830231308937, + -0.0020674222614616156, + -0.00034807025804184377, + -9.328683518106118e-05, + 0.0002693905553314835, + 0.0009204698726534843, + -0.001325306948274374, + 0.0014134336961433291, + 0.0007253668736666441, + 0.0026865587569773197, + -0.00025517839821986854, + 0.0009961090981960297, + -0.0006956364959478378, + 0.0009484962793067098, + -0.0004785018682014197, + 0.005110506899654865, + -0.001181136816740036, + -0.0008225021883845329, + 0.0001248766202479601, + 0.0020182093139737844, + -0.0022997758351266384, + -0.0006460457807406783, + -0.0012035915860906243, + 0.00022555420582648367, + -0.0006860081339254975, + -0.00023073014745023102, + 0.002307325601577759, + -0.004841092508286238, + -0.001501730759628117, + -0.0017657226417213678, + 0.00033573390101082623, + 0.0015021779108792543, + -0.0011179392458871007, + 0.0006745361024513841, + 0.0018099249573424459, + 0.0033215219154953957, + 0.002755234483629465, + 0.0002689157845452428, + 0.0009751081233844161, + 0.0006841829745098948, + 0.0016758095007389784, + -0.0005921116680838168, + 0.00029548825114034116, + -0.0011311472626402974, + -0.0015602745115756989, + 0.001172108226455748, + -0.0004829227109439671, + 0.001977448584511876, + 0.0005695672589354217, + -0.0010064190719276667, + -0.0036124486941844225, + -0.0013672731583938003, + 0.0014519218821078539, + 0.0013399772578850389, + 0.0008833497413434088, + 0.0019176286878064275, + -0.00992410909384489, + 0.0006917552091181278, + 0.005193436052650213, + -0.0019382958998903632, + 0.0020055179484188557, + 0.011962241493165493, + 0.00011973935033893213, + -0.0004199242393951863, + 0.002011843491345644, + -0.0008229816448874772, + -0.0013225445291027427, + -0.0024064311292022467, + 0.0012251330772414804, + 0.0009976958390325308, + -0.0012319423258304596, + -0.0014095231890678406, + 0.00010378532169852406, + -0.0013038123724982142, + 0.012161774560809135, + -0.0007121629314497113, + 0.0005990420468151569, + 0.0006199578056111932, + 0.0013488949043676257, + -0.0004977927310392261, + -0.004194631706923246, + -0.0009307331638410687, + 0.00048554191016592085, + -0.0010500235948711634, + 0.0009289015433751047, + -0.002576419385150075, + -0.004071993287652731, + -0.0017738693859428167, + 0.0009517925791442394, + -0.0017925481079146266, + -0.0002131717192241922, + 0.0024636026937514544, + 0.0006216350011527538, + 0.001581158023327589, + -0.0008330266573466361, + 0.01034969836473465, + 0.001435483805835247, + 0.001832225825637579, + 6.942944310139865e-06, + -0.00037726949085481465, + -0.0009909347863867879, + -0.0011771575082093477, + -0.0007696663960814476, + -0.00311777601018548, + 0.0006121713668107986, + 0.00024991706595756114, + 0.0001013705477816984, + 0.0009121501934714615, + -0.0017260325839743018, + 0.0021293850149959326, + 0.00031942548230290413, + 0.0006115578580647707, + 0.0005040919058956206, + 0.008460454642772675, + 3.7067884477437474e-06, + 0.00154498137999326, + 0.0004943054518662393, + 0.00027094801771454513, + -0.0005474395584315062, + -0.0007025428349152207, + 0.00018154148710891604, + -0.0005563443992286921, + 0.004519092384725809, + -0.004205420613288879, + 0.00010234476940240711, + 0.004313288256525993, + -0.003176545724272728, + 0.0008525789016857743, + -0.0022953760344535112, + -0.0012559889582917094, + -0.002530299127101898, + -0.00041503465035930276, + 0.001533015980385244, + 0.004300106782466173, + -0.00040271939360536635, + 0.0002511398633942008, + -0.0012987633235752583, + 0.0022191214375197887, + -0.0015310359885916114, + -0.0013402506010606885, + 9.251861047232524e-05, + 0.001130262273363769, + -0.0003459787112660706, + 0.0012625243980437517, + 0.0008604449685662985, + -0.0009482068126089871, + -0.0013690831838175654, + -0.0006492561078630388, + 0.0012717314530164003, + -0.0010715114185586572, + 0.0005253059207461774, + -0.0003991698904428631, + -0.001881683012470603, + 0.0012630653800442815, + -0.00236493325792253, + -0.0003261528618168086, + -0.0022765970788896084, + -0.0002413332840660587, + -0.0027561569586396217, + -0.0003239322977606207, + -0.0005763180088251829, + 0.0006783553981222212, + -0.00031604719697497785, + 0.0017620689468458295, + -0.0011491673067212105, + -0.00119796022772789, + 0.00015247377450577915, + 0.0008652020478621125, + -0.0009422030416317284, + 0.002755960915237665, + 0.0008018006337806582, + 0.00048063622671179473, + -0.0018430986674502492, + 0.002004456939175725, + -0.001147437491454184, + -0.002923597116023302, + -0.0008989154011942446, + 0.0036250122357159853, + -0.002964114071801305, + -0.00046195933828130364, + -0.0008015958010219038, + -0.00047518560313619673, + 0.0019017724553123116, + 0.0013137290952727199, + -0.002852241275832057, + -0.0028159809298813343, + 0.002060360973700881, + -0.001336784684099257, + 0.002074472140520811, + -0.002079165307804942, + 0.0016964850947260857, + -0.0005030424799770117, + 0.0015751912724226713, + -0.004224785137921572, + 0.0015792603371664882, + -0.001428981893695891, + -0.0009943449404090643, + 0.0006808299222029746, + -0.005471518263220787, + -5.55169208382722e-05, + 0.002221164759248495, + -0.0006534920539706945, + 7.891852874308825e-05, + 0.0003559408360160887, + -0.002471288200467825, + 0.00022881969925947487, + 0.0010306596523150802, + -0.00015297686331905425, + -0.002374198054894805, + -0.0008897443185560405, + 0.0018389818724244833, + -0.00164667924400419, + 0.004309999290853739, + 0.0010140376398339868, + -0.0014425746630877256, + -0.0017978118266910315, + -0.006479333620518446, + -0.000692014757078141, + -0.0009284145780839026, + -0.0008645397028885782, + 0.002299683401361108, + 0.00033586524659767747, + -1.5088408872543368e-05, + 0.0031408111099153757, + -0.00019531416182871908, + 0.004374331329017878, + 0.0013125584227964282, + 0.0004763944598380476, + -0.0006848569610156119, + -0.0007722832378931344, + 0.0014035425847396255, + -0.00020415306789800525, + -0.00176698446739465, + -0.0003141899942420423, + -0.001813547103665769, + 0.0027095284312963486, + -0.00033025338780134916, + 0.00027881318237632513, + -0.00011073449422838166, + -0.001177626196295023, + 0.0009297488140873611, + -0.0006714208284392953, + -0.002547971671447158, + -0.00039596177521161735, + -0.001626139390282333, + -0.001406102441251278, + -0.0033615967258810997, + -0.00012123940541641787, + 0.0009261482045985758, + -0.002080849139019847, + -0.00043446270865388215, + 0.0004095077165402472, + -0.002546564443036914, + -0.0017362277721986175, + -0.002158507937565446, + -0.002196693327277899, + 0.002005617832764983, + -0.00046203608508221805, + -0.002353613032028079, + -0.0008275388390757143, + -0.0042132483795285225, + -2.025904177571647e-05, + 0.000714554451406002, + -0.0018206130480393767, + 0.00041435487219132483, + -0.0015048917848616838, + 0.0017225441988557577, + -0.0014643077738583088, + 0.0005983318551443517, + -0.00011821428051916882, + -0.00033892723149619997, + -0.0015937339048832655, + -0.000556287937797606, + 0.002123564947396517, + -0.0021600101608783007, + 0.0019858689047396183, + 0.0012689150171354413, + 0.0015103580662980676, + 8.241718023782596e-05, + 0.0004122501122765243, + -0.00044134646304883063, + 1.9121519017062383e-06, + 0.003046624828130007, + 0.00297141051851213, + 0.001927536679431796, + -0.002307760063558817, + -0.0018176716985180974, + 0.0006982158520258963, + -0.0008450396708212793, + -0.002260577166453004, + 0.000521529174875468, + 0.0004689005436375737, + 0.0006172136636450887, + 0.0006416238029487431, + -0.0006946276989765465, + -0.0009215546888299286, + 0.0018536337884142995, + 0.002908476162701845, + 0.0012510472442954779, + -0.0019724436569958925, + -0.00173375743906945, + -0.001195729011669755, + -0.0037078186869621277, + -9.881130972644314e-05, + -0.0011623185127973557, + -0.001841197139583528, + -0.0029534748755395412, + -0.0005158011335879564, + 0.0018360919784754515, + 0.0009956556605175138, + -0.003956682980060577, + 0.003214895958080888, + -0.0026910831220448017, + -0.0014652744866907597, + 0.00036460021510720253, + 5.407136995927431e-05, + 0.001146080787293613, + -0.0011493910569697618, + -0.0014092371566221118, + -0.0019428175874054432, + -0.003217970486730337, + -0.000912260846234858, + 0.0005287652020342648, + 0.0009796444792300463, + 0.0009794693905860186, + -0.001309188432060182, + 0.0009137459564954042, + -0.003275965340435505, + -0.0014558011898770928, + 0.0003018288407474756, + 0.0008693654672242701, + -0.00023171701468527317, + -0.00241464632563293, + -0.0007205134606920183, + 0.0002227774093626067, + -0.0016879247268661857, + 0.003733455203473568, + 0.0012211630819365382, + 0.00031807165942154825, + -0.0013672682689502835, + 0.0024189073592424393, + 0.0007398682064376771, + -0.004973934032022953, + 0.0006716055213473737, + -0.0007434057188220322, + -0.0008374479366466403, + 0.0016468996182084084, + -0.00019000515749212354, + -0.0007002484053373337, + -0.002073810435831547, + 0.0003367977624293417, + 0.00035172197385691106, + -0.00033127935603260994, + -0.00011619161523412913, + -0.0014953163918107748, + 0.0024082001764327288, + 0.0005393890314735472, + 0.0010515970643609762, + 0.0027500761207193136, + -0.002664316212758422, + -0.0018601991469040513, + 0.0011025996645912528, + 0.001904445351101458, + 0.0003366977034602314, + 0.0008997839177027345, + -0.00013521806977223605, + -0.0008601897279731929, + -0.001970356097444892, + 0.00019660535326693207, + -0.0030461843125522137, + -0.0015926964115351439, + -0.0003825698222499341, + 0.002027659211307764, + 0.001779103302396834, + -0.001999639207497239, + -0.0018375281943008304, + -0.005670727696269751, + -0.0010115221375599504, + 0.0009305434650741518, + 0.0013701081043109298, + -0.0008855981286615133, + 0.000966849853284657, + -0.0015568407252430916, + 0.0011838054051622748, + -0.0030203142669051886, + -0.000433700013672933, + 4.552643440547399e-05, + 0.0039468929171562195, + -0.0005220268503762782, + 0.0007175987702794373, + -0.0003960074100177735, + -0.0032687720376998186, + -0.0004727162595372647, + 0.0005816050106659532, + -0.0008262272458523512, + 0.0017491913167759776, + 0.0010533510940149426, + -0.0005492831696756184, + 0.004023799207061529, + -0.0009425708558410406, + -0.0012906987685710192, + 0.00037766684545204043, + -0.0009354738285765052, + -0.0033204967621713877, + 0.00010395755816716701, + -0.0033666116651147604, + 0.002652618568390608, + 0.0038140900433063507, + 0.0013336705742403865, + -0.0002373687457293272, + -0.0013124484103173018, + 0.00019305663590785116, + 0.00025818278663791716, + -0.0008999127894639969, + 0.0010836859000846744, + -0.0025687923189252615, + -0.0016903567593544722, + -0.001008306397125125, + -0.0008738583419471979, + 0.003163703717291355, + -0.0018700165674090385, + -0.004799478687345982, + 0.00062877795426175, + 0.000789673940744251, + 0.0018697251798585057, + -0.0009962900076061487, + 0.0014312129933387041, + -3.3957723644562066e-05, + 0.002031751209869981, + 0.007902590557932854, + -0.0007358973962254822, + -0.0003126816591247916, + -0.0065756565891206264, + -0.0011165167670696974, + -0.003759806975722313, + -0.0020500931423157454, + 0.0007002497441135347, + 0.0011634182883426547, + -0.0003202608204446733, + 0.0006378910620696843, + 0.0022732981014996767, + -0.0015585909131914377, + -0.0020984492730349302, + 0.004330980125814676, + -0.00031917699379846454, + -0.0011500543914735317, + -0.0034788851626217365, + -0.0016500451602041721, + 0.00030314410105347633, + -0.0003758459642995149, + 0.003162560286000371, + 0.0017874673940241337, + 0.002013630233705044, + 0.010205570608377457, + 0.0015456866240128875, + -0.0016738537233322859, + -0.001153213786892593, + -0.0006735154893249273, + 0.0008879085071384907, + -0.001353594707325101, + 0.0014288503443822265, + 0.0012101423926651478, + -0.003099047811701894, + 0.0020858978386968374, + 0.0014785417588427663, + 0.00012260382936801761, + -0.00012012165097985417, + -0.0027537255082279444, + -0.0005344435339793563, + 0.0007453045109286904, + 0.0007327419589273632, + -0.002246530493721366, + 0.001956565072759986, + 0.0002580625005066395, + 0.001388801378197968, + -0.004261484835296869, + 0.0013259819243103266, + 0.00014382562949322164, + -0.009214780293405056, + 0.0008755059679970145, + -0.001962874550372362, + 0.0014168875059112906, + 0.0005690287798643112, + 0.0023366864770650864, + 0.0033934786915779114, + 0.0018372710328549147, + -0.001445091562345624, + 0.00039423449197784066, + 0.0003037177084479481, + 0.0002696335141081363, + -0.0004468930419534445, + -0.0007884257356636226, + 0.0013187880394980311, + 0.0007306523621082306, + 0.0031358636915683746, + -0.00185877806507051, + 0.0010131867602467537, + 0.0022841019090265036, + -0.0010271458886563778, + -0.0005609598592855036, + 0.0007377338479273021, + -0.0003614503948483616, + -0.001419185777194798, + -2.8343114536255598e-05, + 0.0019684918224811554, + 0.0023279411252588034, + 0.0005550634232349694, + 0.0007029845146462321, + 0.0009891475783661008, + -0.0005715032457374036, + -0.002167642116546631, + -0.0007609721506014466, + -0.001712337019853294, + 0.0015881629660725594, + 0.0025685750879347324, + -0.0005709005636163056, + -0.0022703639697283506, + -0.0016041559865698218, + 0.0003468604991212487, + -0.0010010554688051343, + -0.000803284696303308, + 0.0005247360677458346, + 0.007370674982666969, + -0.004096168093383312, + 0.0039214747957885265, + -0.0005313034635037184, + -0.0019167911959812045, + 0.00022141686349641532, + 0.0002304345543961972, + -0.0005139762652106583, + -0.00016572045569773763, + 0.0003267417778261006, + -0.0005974898231215775, + 0.0020771182607859373, + -0.0013090057764202356, + -0.0011036930372938514, + 0.0006592427380383015, + 0.0002685213985387236, + -0.0035048944409936666, + -0.0021445692982524633, + 0.0015251714503392577, + -0.0023968929890543222, + 0.0012911491794511676, + -0.0012350627221167088, + -0.0009711303282529116, + 0.0005868860171176493, + 0.0025268085300922394, + -0.0012934815604239702, + 0.002962942235171795, + 0.0008091520867310464, + -0.0022616793867200613, + -0.002867785980924964, + 0.0008125080494210124, + -0.002375450450927019, + -0.0007806779467500746, + -0.001043219119310379, + 0.0014382187509909272, + -0.0003343150019645691, + 0.0010137954959645867, + 0.00044960257946513593, + -0.00047709408681839705, + 0.0010553525062277913, + 0.0017413599416613579, + 0.0006571973208338022, + -0.0034329481422901154, + -0.0015669360291212797, + 0.0014866965357214212, + -0.0018617890309542418, + 0.0009032501257024705, + 0.00043674660264514387, + 0.0012487225467339158, + 0.0005368282436393201, + -0.0025144729297608137, + 0.0014145950553938746, + -0.0016263218130916357, + 0.0026322463527321815, + 0.0012515222188085318, + -0.002371177077293396, + -0.0014478295342996716, + 0.0026583971921354532, + 0.000907745910808444, + 0.0019166616257280111, + 0.0014265112113207579, + 0.0007949141436256468, + -0.0023304889909923077, + 0.00027805849094875157, + -4.945980981574394e-05, + -8.549274207325652e-05, + -0.0012010668870061636, + 0.0022111725993454456, + -0.0024189611431211233, + 0.0010854080319404602, + -0.002162092598155141, + 0.0011410218430683017, + 0.0010657418752089143, + 0.002296777442097664, + -0.001221578218974173, + -0.00123723188880831, + 0.0003241390222683549, + -0.000903734122402966, + -0.00038178852992132306, + 0.0010132660390809178, + -0.0008043139823712409, + 0.0017974922666326165, + 0.0005661548930220306, + 0.007384802680462599, + 0.0031498263124376535, + -0.0011419752845540643, + 0.0002039771352428943, + 0.0008791966829448938, + -0.0026632079388946295, + 0.0013432783307507634, + 0.002249327953904867, + -0.0005700652254745364, + 0.0014658634318038821, + 0.0016952132573351264, + 0.002067920519039035, + 0.0003892056120093912, + -0.0013359126169234514, + -0.0006821020506322384, + 0.00047025049570947886, + 0.0008653416880406439, + -0.005941556766629219, + -0.0002643649058882147, + -0.001778623554855585, + -0.0012101744068786502, + 0.0020575106609612703, + -0.0027662375941872597, + -0.00024757656501606107, + -0.0015390004264190793, + 0.002932044444605708, + -0.0038311751559376717, + 0.0011141863651573658, + -0.00046009791549295187, + 0.002752105938270688, + -0.00010465671948622912, + -0.005245727486908436, + 0.0005237343139015138, + 4.7891961003188044e-05, + 0.0005229726084508002, + -0.0015725750708952546, + -0.000978879863396287, + -0.0008795072208158672, + -0.002951117930933833, + -0.0004883919609710574, + -0.001345221884548664, + -0.0009798187529668212, + -0.00038257299456745386, + -0.0003602703509386629, + -0.0016529216663911939, + -7.975089829415083e-05, + -0.00036813030601479113, + -0.004946222063153982, + 0.0014245384372770786, + -0.0006893198587931693, + -0.000664146093185991, + 0.00024480311549268663, + 0.0016731851501390338, + -0.0009074300760403275, + 2.197732828790322e-05, + -0.00015605984663125128, + -4.421165067469701e-05, + -0.003955477848649025, + 0.0007699790876358747, + 0.00037918693851679564, + -0.0018094967817887664, + 0.0011888606240972877, + -0.002188023179769516, + -0.0016291897045448422, + -0.0007074256427586079, + 0.0011215429985895753, + 0.0007907861727289855, + 0.00040345630259253085, + -0.0002809578727465123, + -9.987424709834158e-05, + 0.0006423855666071177, + -0.0005630259984172881, + 0.002583965426310897, + 0.0005018007941544056, + 0.0008351688156835735, + 0.0016508792759850621, + 0.000954898598138243, + 0.0009246490662917495, + 0.0001633410429349169, + 0.00034702016273513436, + 0.002712283981963992, + 0.0005002925172448158, + 0.0012268096907064319, + 0.002729063620790839, + 0.009235391393303871, + 0.00047409776016138494, + -9.25657332118135e-06, + 0.0020038944203406572, + -0.00036258273757994175, + -0.0004527646815404296, + 0.002085251733660698, + 0.0004861570487264544, + 0.0007601432735100389, + 0.002307100687175989, + 0.00033584621269255877, + -0.001872733235359192, + 0.00357034127227962, + -0.0015592031413689256, + -0.001544987433589995, + 0.002315854886546731, + -0.005164744798094034, + 0.0002961147401947528, + -0.001511992304585874, + -0.0007981946691870689, + -0.002477353671565652, + -0.0016494258306920528, + -0.0006933941622264683, + -0.005063431337475777, + -0.0023190216161310673, + 0.0006927000358700752, + 0.0024007223546504974, + -0.000459105969639495, + -0.0014545866288244724, + -0.0014570608036592603, + -0.0010193977504968643, + 0.0018293221946805716, + 0.0024450726341456175, + -0.0001430621778126806, + -0.0005494669312611222, + -0.00032377662137150764, + -0.0023881704546511173, + -0.0022644971031695604, + 0.00019378589058760554, + -0.00016147393034771085, + -0.0009230870055034757, + 0.002830586163327098, + 0.0010729917557910085, + -9.996293374570087e-05, + 0.0010961949592456222, + 0.0014522727578878403, + 0.000229318902711384, + 0.0009833549847826362, + -0.0008625185000710189, + 0.00027709483401849866, + -0.0016550045693293214, + -0.0019427631050348282, + -0.004445001017302275, + 0.0009028885397128761, + 0.00044467716361396015, + -0.0004485994577407837, + -0.00021361913240980357, + 0.0016406624345108867, + 0.0005047940649092197, + 0.0001490667782491073, + 0.0008392349700443447, + 0.00021544049377553165, + -0.001459584222175181, + -0.0017949098255485296, + 0.0019385298946872354, + 0.000616108241956681, + 0.0019008854869753122, + -0.0012502983445301652, + 0.005667093209922314, + 1.8565822756499983e-05, + 0.0031085892114788294, + 0.0005192967946641147, + -0.0010869939578697085, + -0.0001181359330075793, + 0.002428078791126609, + -0.0004018627223558724, + 0.0007385555654764175, + -0.0043842727318406105, + 0.0026264656335115433, + -0.0002523717121221125, + 0.00044390620314516127, + -0.004401055630296469, + -0.008658027276396751, + -0.0004433393769431859, + 0.0005070701590739191, + 0.001011642045341432, + 0.0021096733398735523, + -0.002145141363143921, + 0.0001857782044680789, + 0.0003009409992955625, + 0.0022506292443722486, + 0.000620236445683986, + 0.002262987894937396, + 7.961530354805291e-05, + -8.645277375762817e-06, + -0.0009265595581382513, + 0.0009470576187595725, + -0.0027707326225936413, + -0.00018352486949879676, + -0.0009444158640690148, + 0.0008100699633359909, + -0.0010448935208842158, + -5.5321797844953835e-05, + 0.0024687196128070354, + 0.00017703737830743194, + 0.0015205132076516747, + 0.007414526771754026, + 0.0024041393771767616, + 0.0004403761704452336, + -0.0012685126857832074, + -0.0025053913705050945, + -0.001054601278156042, + -0.0021469490602612495, + -0.00025471625849604607, + 0.0008531411294825375, + 0.0009644012898206711, + -0.0014709156239405274, + -0.0007407926605083048, + -0.001440412481315434, + -0.001438323175534606, + 0.0011435666820034385, + 0.0006370730116032064, + 0.001235255622304976, + 0.0010263575240969658, + 0.0019485572120174766, + -0.0006266716518439353, + -0.00182510691229254, + 0.0001458955812267959, + -0.00044297255226410925, + -0.0022362270392477512, + 0.003189902286976576, + 7.155393632274354e-06, + -0.00017091486370190978, + 0.00027114214026369154, + -0.0017409475985914469, + 0.0020476733334362507, + -0.0014903335832059383, + -0.0011385575635358691, + 0.001717206323519349, + 0.00010082044173032045, + 0.002617924241349101, + 0.000517776352353394, + 0.0008909012540243566, + -0.0007668209145776927, + 0.0005314495065249503, + 0.001303832046687603, + 4.727431951323524e-05, + -0.004871683195233345, + 0.0011175849940627813, + 0.001301623065955937, + -0.001006514998152852, + 0.001394552644342184, + -0.0018770302413031459, + -0.00104004074819386, + -6.810448394389823e-05, + -0.002451143227517605, + -0.0015285019762814045, + 0.002207095269113779, + 0.0032230860088020563, + 0.00022739788983017206, + 0.0038730106316506863, + 0.000290400959784165, + -0.0009494052501395345, + 0.0008853438193909824, + 0.0011716645676642656, + -0.00040156187606044114, + 0.0010432074777781963, + 0.0006006781477481127, + 8.260953472927213e-05, + 0.0007034926675260067, + -0.001504960237070918, + -0.0004334023396950215, + 0.002043931046500802, + 0.0032784477807581425, + 0.0015255688922479749, + -0.00015762053953949362, + 0.00027782292454503477, + -0.0003694077313411981, + -0.0030110368970781565, + 0.001139695174060762, + -0.0005262466729618609, + 0.004108400084078312, + 0.0009215330937877297, + 0.00011929916945518926, + -0.0007401066832244396, + -0.0008593007223680615, + 0.0001925380202010274, + 0.000348325032973662, + 0.0008098653634078801, + 0.0028588492423295975, + -0.000402430712711066, + -0.0018586867954581976, + 0.0014947435120120645, + 0.0015373160131275654, + -0.0009228108101524413, + 0.0011859001824632287, + 0.0008870199089869857, + -0.0026715078856796026, + 0.0009221251239068806, + -0.0007480386993847787, + 0.001789512811228633, + 0.0013527532573789358, + 0.0023909336887300014, + 0.0019440416945144534, + 0.00023859168868511915, + -0.0038977230433374643, + -0.0004214865039102733, + -0.0015382588608190417, + 0.0023204570170491934, + 0.0003190408751834184, + -4.3841868318850175e-05, + -0.00038142441189847887, + -0.001044557779096067, + -0.00042411420145072043, + 0.0025814631953835487, + 0.0019460102776065469, + -8.17471300251782e-05, + 0.0029515314381569624, + -0.003274578135460615, + -0.00034405456972308457, + 0.0014271349646151066, + -0.0006236877525225282, + -0.0010013862047344446, + -0.0009416269604116678, + -0.005529053043574095, + -0.003930073697119951, + 7.350205851253122e-05, + -0.0003424398018978536, + 0.0009793975623324513, + -0.0006056370330043137, + 0.0017858328064903617, + -0.001919484930112958, + 0.0001324019394814968, + -0.0019892831332981586, + 0.0003137511375825852, + 0.002884521149098873, + 0.0009263849351555109, + 0.002188857877627015, + -0.001659658271819353, + -0.0029122575651854277, + -0.0003355272638145834, + 0.000455527740996331, + -0.0023720012977719307, + -0.0016939622582867742, + 0.0015156199224293232, + 0.0010432624258100986, + 0.0026319364551454782, + -0.0015380287077277899, + -0.003950704820454121, + -0.0002963415754493326, + 0.0029394470620900393, + -0.0015046077314764261, + 0.0018785549327731133, + -0.00023531854094471782, + -0.001191652030684054, + -0.012811382301151752, + -0.001474473625421524, + -0.0019847480580210686, + 0.0010953533928841352, + 0.001575364964082837, + 0.0012003891170024872, + -0.00017972846399061382, + 0.00017829994612839073, + 0.0003407520707696676, + -0.00015451086801476777, + 0.00018065432959701866, + -0.0016450748080387712, + 0.0026247091591358185, + 0.00028112827567383647, + 0.00211747526191175, + -3.657171328086406e-05, + -0.00094781001098454, + -0.0017716819420456886, + -0.0011087694438174367, + -0.0015626238891854882, + 0.0011661453172564507, + 0.001424010843038559, + -0.00031033490085974336, + -0.0007076439214870334, + 0.0015533670084550977, + 0.00017777521861717105, + 2.3603699901286745e-06, + -0.0007659397087991238, + -0.00012669202988035977, + 0.0012194085866212845, + 0.0011901496909558773, + 0.0015897734556347132, + 0.002348345937207341, + -0.005055599380284548, + -0.00021601980552077293, + 0.0022921699564903975, + -0.0008336709579452872, + -0.005221123807132244, + -0.0018943729810416698, + 0.0038549862802028656, + 0.000253314123256132, + 0.00037568548577837646, + 0.001080434420146048, + 0.0002634755219332874, + -0.005158170126378536, + -0.0010205390863120556, + 0.0017576449317857623, + -0.004056282341480255, + -0.000868080707732588, + 0.0029744612984359264, + 0.0005654706619679928, + 0.0008669935632497072, + 0.0009357125381939113, + 0.00212973658926785, + -0.0018446353496983647, + 0.00029438259662128985, + 0.002220333321020007, + -0.0016578270588070154, + 0.0005789244896732271, + -0.0024415021762251854, + 0.0006281663081608713, + 0.0008660456514917314, + 0.002416523639112711, + -0.00011369612184353173, + -5.464408968691714e-05, + 0.0011420839000493288, + 0.0007106576231308281, + -0.0010899705812335014, + 0.0021907559130340815, + -0.0020280005410313606, + -0.0006239422364160419, + -0.00011892728070961311, + -0.0016074704471975565, + -0.00015623439685441554, + 0.0016311071813106537, + -0.0013833983102813363, + -9.90635744528845e-05, + 0.0020373223815113306, + -0.0013295701937749982, + 0.002619819948449731, + 0.001340597402304411, + -0.0004320603038650006, + -0.0007941538351587951, + 0.0030891771893948317, + 0.0019206189317628741, + 0.0030984387267380953, + 0.0038963486440479755, + -0.0004631485207937658, + -0.000772495346609503, + 0.0024389810860157013, + 0.0022572348825633526, + -0.001065150136128068, + 0.0031917733140289783, + -0.0007137004868127406, + 0.001698161126114428, + -0.0016983230598270893, + -0.0013853406999260187, + 0.0004048503178637475, + -0.0007390433456748724, + -0.0013815949205309153, + 0.00021037511760368943, + -0.007713936269283295, + 0.0005985050229355693, + 0.00016630621394142509, + -0.0010189572349190712, + -0.0017415884649381042, + -0.0015501201851293445, + 9.628503903513774e-05, + -0.00013722710718866438, + -0.000628008390776813, + 0.0016542436787858605, + 0.00024666677927598357, + 0.0012865790631622076, + -0.0035215788520872593, + 0.001093655708245933, + -0.0007307023624889553, + 0.0005630635423585773, + -0.0033866011071950197, + -8.154538227245212e-05, + 0.002602047985419631, + 0.0016059614717960358, + -0.0009694290929473937, + 0.0005328343249857426, + -0.002544189803302288, + 0.00430453522130847, + 0.00020982793648727238, + -0.004106768406927586, + 0.0007460606284439564, + 0.000728904502466321, + -0.0024349712766706944, + 0.0018863048171624541, + 0.0010365324560552835, + -0.011752038262784481, + 0.002773451851680875, + 0.0006746603758074343, + -0.0004567581636365503, + 0.0004885158850811422, + -0.001077004475519061, + -0.0010451284470036626, + 0.0003478216822259128, + -0.00010341832239646465, + -0.000502970302477479, + -0.0004193767672404647, + -0.002640658989548683, + 0.0005250144749879837, + 0.0019039452308788896, + -0.0008924396825022995, + -0.0008012147736735642, + -0.003907147794961929, + 0.002837960608303547, + 0.00016910558042582124, + -0.0004956085467711091, + 0.001045114011503756, + 0.0012465817853808403, + 0.001178882666863501, + -0.0030307418201118708, + -0.0012162304483354092, + -0.001555012189783156, + 0.0007290912908501923, + -0.002110011875629425, + -0.00013916617899667472, + 0.0015127465594559908, + -0.0007591357571072876, + -0.004733990877866745, + -0.0005497706588357687, + -0.003922636620700359, + -0.00045137465349398553, + 0.002464879537001252, + -0.0002359136415179819, + -0.0009232642478309572, + 0.0015203733928501606, + -0.0025871479883790016, + -0.0018669608980417252, + 0.002795123029500246, + 0.001965014263987541, + -0.003038751892745495, + 4.190827894490212e-05, + -0.00036807297146879137, + -0.002258376684039831, + -0.0010061837965622544, + 0.0028747308533638716, + -0.0003034556866623461, + 0.0004990184097550809, + 0.0011858476791530848, + 0.0005249410751275718, + 0.0011631408706307411, + 0.0028147161938250065, + -0.0008789640851318836, + 0.0002740568888839334, + 0.00027146906359121203, + -0.0014491198817268014, + 0.0003221436054445803, + -0.001283105812035501, + 0.0014926712028682232, + 0.0017613825621083379, + -0.001267918269149959, + 0.015236674807965755, + -0.0011597913689911366, + 0.000699730240739882, + 5.136090476298705e-05, + -0.0024862606078386307, + -0.0012508712243288755, + 0.0002233265695394948, + -1.1476458894321695e-05, + 0.0009795695077627897, + -0.002088529523462057, + 0.0022732438519597054, + -0.0014631518861278892, + 0.0017920444952324033, + -0.001926975091919303, + -0.0015436671674251556, + -0.0011782110668718815, + 0.002278686733916402, + 0.00018909521168097854, + -0.0007971677696332335, + 0.013315392658114433, + -0.007022424601018429, + 9.250910807168111e-05, + 0.0019574372563511133, + 0.0014498212840408087, + 0.00335161411203444, + -0.0012500562006607652, + 0.0006780927651561797, + -0.0006817997200414538, + 0.001264043035916984, + 0.00022314905072562397, + -0.00037780191632919014, + 1.3444241631077603e-05, + 0.00215507997199893, + 0.00020624519675038755, + 0.0003544356150086969, + 9.41640610108152e-05, + -0.0012474459363147616, + -0.0023100704420357943, + -0.00024369335733354092, + -0.000605574925430119, + -0.0012007724726572633, + -0.002720178570598364, + -0.001931681064888835, + -0.0023102755658328533, + 0.0015346851432695985, + -0.00031258142553269863, + -0.0011291055707260966, + -0.0007275433163158596, + 0.0008775175083428621, + -0.002397319534793496, + -0.0006112285773269832, + -0.002843909664079547, + 0.0004404535866342485, + -0.00041083001997321844, + 0.0019700161647051573, + -0.0018079878063872457, + 0.0015092139365151525, + 0.0011432816972956061, + -0.006736985873430967, + 0.0027630776166915894, + 5.8245630498277023e-05, + -0.000816876592580229, + 0.001871472573839128, + -0.0002085096639348194, + -0.0024114937987178564, + 4.1330986277898774e-05, + 0.00215062964707613, + 0.000991536770015955, + -0.0023221580777317286, + -0.0020541055127978325, + 0.0004242373688612133, + -0.002437944058328867, + 0.000546218128874898, + -0.00040386157343164086, + -0.0014064551796764135, + 0.0008707482484169304, + -0.0005219039740040898, + -0.00036567592178471386, + -0.004514528438448906, + 0.0014209906803444028, + 0.001854466856457293, + 0.0009720909292809665, + -0.0022885960061103106, + 0.0003710287855938077, + -0.0012318810913711786, + -0.0039249504916369915, + 0.0004108843859285116, + -0.001692176447249949, + 0.0009948279475793242, + 0.0041274079121649265, + -0.0005684965290129185, + -0.0022175468038767576, + 0.001723376102745533, + 0.0010158034274354577, + 0.0008141205762512982, + -0.0014518352691084146, + -0.0013671980705112219, + 0.0011871573515236378, + -0.0013894502772018313, + -9.979953028960153e-05, + 0.0017969681648537517, + 0.0007686202879995108, + -4.4030915887560695e-05, + -0.0004072409064974636, + -0.00044187891762703657, + 0.0013716366374865174, + -0.0011048504384234548, + -0.0037412841338664293, + -0.00031677482184022665, + -0.0024242631625384092, + 0.0015699733048677444, + 0.004325966350734234, + -0.0003051911189686507, + -0.0016646328149363399, + 0.0016560243675485253, + 0.0007407726370729506, + -0.0012738079531118274, + 0.00022321964206639677, + -0.0031576191540807486, + -0.0020698069129139185, + -0.0008585963514633477, + 0.0025102857034653425, + 0.001834533060900867, + -0.0014257337898015976, + 0.0003355522349011153, + -0.006892407312989235, + 0.0011353057343512774, + -0.0010431052651256323, + -0.0005407095886766911, + -0.0010539018549025059, + -0.0016452575800940394, + -0.006587575655430555, + -5.0832302804337814e-05, + -0.0007074015447869897, + -9.837008110480383e-05, + -0.002070108661428094, + -0.0021389357279986143, + -0.001025484991259873, + -0.0012860572896897793, + -0.0009171174606308341, + -0.0022747968323528767, + -0.0022691143676638603, + 0.0002391439920756966, + 0.0014127446338534355, + 0.000764271302614361, + 0.00011615709081524983, + 0.0011198567226529121, + -0.003993820399045944, + 0.0011709301033988595, + 0.000977740972302854, + 0.0008477268856950104, + 0.0005021363613195717, + 4.566506322589703e-05, + -0.00067703373497352, + -0.0014928034506738186, + 0.0011875045020133257, + -0.0005184163455851376, + 0.0009658909402787685, + 0.0014487124281004071, + 3.954928615712561e-05, + -0.0017109483014792204, + 0.0023074999917298555, + -0.0011446712305769324, + -0.0016165964771062136, + 0.0007253311923705041, + 0.0026776716113090515, + 0.0019206487340852618, + 0.000705912068951875, + -0.00021594161808025092, + -0.0005215693381614983, + 0.0007759933941997588, + 0.0004309784562792629, + 0.0034060475882142782, + 0.0017509671160951257, + -0.0014349089469760656, + -0.00527418265119195, + -0.000564392888918519, + 0.007386801298707724, + 0.002385903149843216, + -0.0013837955193594098, + 0.001269152038730681, + 0.008131664246320724, + -0.007933242246508598, + -0.0008091102936305106, + 0.0007364722550846636, + -0.0021894576493650675, + -4.7394751163665205e-05, + -0.0014700453029945493, + -0.00042907733586616814, + 0.00017218005086760968, + -0.000326990062603727, + -0.003835787530988455, + 0.0013283087173476815, + -0.0006962200859561563, + -0.0008823691168799996, + -0.0010708140907809138, + -0.0013015879085287452, + 0.001955450512468815, + 0.0054825288243591785, + -0.0019786155316978693, + -0.003335603978484869, + 0.00023972678172867745, + 0.0011040844256058335, + -0.002048505237326026, + 0.0018118865555152297, + 0.004121521022170782, + 0.0006379963597282767, + -0.001086024334654212, + -0.0028551346622407436, + 0.0003306291182525456, + -0.0015359470853582025, + -0.0008596341358497739, + -0.0011320259654894471, + 0.0023878859356045723, + -0.001014307839795947, + 0.0017054796917364001, + 0.00017490662867203355, + 0.0005842202808707952, + 0.0005818713107146323, + 0.0015335369389504194, + -0.0024199446197599173, + -0.0005338492337614298, + 0.000238191889366135, + -0.0009196939063258469, + 0.0030956619884818792, + 0.0008258476736955345, + 0.002225574105978012, + 2.0111689082114026e-05, + -0.0017231795936822891, + 0.0019093189621344209, + -0.002029549330472946, + -0.0003158418112434447, + 0.0012203475926071405, + 0.0008390891598537564, + 0.0008104691514745355, + 0.0008677143487147987, + 0.0005834624753333628, + -0.0022155519109219313, + -0.0005506427842192352, + 0.0006357599631883204, + 0.0011808499693870544, + -0.002802611328661442, + 0.0010827790247276425, + 0.00042981450678780675, + -0.0033447647001594305, + -0.004044405650347471, + 0.0005378212663345039, + 0.0017056497745215893, + 0.001732508186250925, + -0.002146270591765642, + -0.003048852551728487, + 0.00035546094295568764, + 0.0006423845188692212, + 0.0011156200198456645, + -0.014056621119379997, + 0.0007503035594709218, + 0.0001459483610233292, + -0.00045729990233667195, + -8.076131052803248e-05, + 0.00044850361882708967, + -0.0007536619086749852, + -0.0007205328438431025, + 0.0018109662923961878, + 1.9980989236501046e-05, + -0.00258479081094265, + 0.0002440619864501059, + 0.000976839568465948, + -0.000665544590447098, + 0.0006316062062978745, + -0.0021248594857752323, + 0.00013475098239723593, + -0.0008164424798451364, + -0.00016120406507980078, + -0.002595440251752734, + 0.002132406225427985, + -0.0005337225738912821, + 0.0014989638002589345, + 0.00140818499494344, + 0.001255686511285603, + 0.00040840369183570147, + -0.002523298840969801, + 0.000479868525872007, + 0.0012775362702086568, + -0.0016064239898696542, + 0.00010341695451643318, + -0.00020481200772337615, + -0.001182897132821381, + -0.00026536386576481164, + 0.0005084268632344902, + -0.00016140284424182028, + -0.00037480637547560036, + -0.003281604964286089, + 0.001266951090656221, + 0.00033061904832720757, + -0.0018481285078451037, + -0.011357473209500313, + -0.0024904541205614805, + 0.00030683737713843584, + 0.0025620036758482456, + 0.00020077569934073836, + -0.0015631852438673377, + -0.0002540176210459322, + -0.0013144796248525381, + -0.0019602933898568153, + 0.0015219839988276362, + 0.00045657905866391957, + -0.001698385109193623, + 0.0007732656667940319, + -0.0008519296534359455, + -0.0021494326647371054, + -0.0023699270095676184, + -0.0023124697618186474, + 0.002235902938991785, + -0.00287187029607594, + 0.0021526464261114597, + -0.0025347673799842596, + 0.001996818697080016, + 0.00043286089203320444, + -0.00258078146725893, + 0.0015689956489950418, + -0.0004087841371074319, + -0.0010181900579482317, + 0.000994934351183474, + -0.0015739352675154805, + -0.003223252249881625, + 0.0029991392511874437, + 0.001315490691922605, + 0.0019416200229898095, + 0.0008964565931819379, + -0.00012777095253113657, + 9.670133295003325e-05, + 0.0002503832511138171, + 0.0008266411023214459, + -0.0015395216178148985, + -0.0020763655193150043, + -0.0012864707969129086, + 0.003246298525482416, + 0.004724637605249882, + 0.0014095319202169776, + 0.0019092474831268191, + -0.0015460585709661245, + 0.0015454088570550084, + 0.00041960235103033483, + -0.0013210908509790897, + 0.000923472223803401, + 0.0024319321382790804, + -0.0009225099929608405, + 0.005138793028891087, + 0.002584883477538824, + 0.0008070251205936074, + 0.0003308151790406555, + 0.0049697053618729115, + 0.001080294605344534, + -0.0014672946417704225, + -0.0006568810204043984, + 0.0007778569124639034, + -0.0015785505529493093, + 0.0025092209689319134, + 0.000665041443426162, + 0.0020185450557619333, + 0.0008988117915578187, + -0.0004988632281310856, + -0.00381807261146605, + 0.0022711397614330053, + 0.008274818770587444, + 0.0011698679300025105, + -0.0025792447850108147, + 0.0013568239519372582, + -0.0009050946100614965, + -0.0005804302636533976, + -0.00014557346003130078, + -0.0024317926727235317, + 0.0017749646212905645, + -5.308065283315955e-06, + 0.002140484983101487, + 0.0011847598943859339, + -0.002735432703047991, + 0.0005904481513425708, + -0.003355642082169652, + -0.001490257098339498, + 0.0021220885682851076, + 0.006915592588484287, + -0.004410606808960438, + -0.0016439841128885746, + 0.017917465418577194, + 0.00040342312422581017, + 0.0006391266360878944, + -0.002801543101668358, + 0.0013668835163116455, + -0.0012752590700984001, + 0.0001216028758790344, + -0.0032653389498591423, + -0.0009629882988519967, + -2.3212216547108255e-05, + 0.0003189251001458615, + 0.0007292632362805307, + -1.3086756553093437e-05, + -0.0002832622267305851, + 0.0027056445833295584 + ] + ], + "variance_threshold": 0.5 + } + } + }, + "metadata": { + "formula": "mean(concept examples) - mean(concept means)", + "model_id": "Qwen/Qwen3-8B", + "neutral_project_out": true, + "paper": "sofroniew2026twheemotion", + "pooling": "mean", + "source": "emotion_vector_space_spec", + "token_selector": { + "kind": "full_sequence", + "value": null + } + }, + "summary": { + "concept_count": 2, + "dropped_concepts": {}, + "layer_count": 4, + "normalized": "l2", + "used_example_count": 4 + }, + "vector_space_kind": "story" +} \ No newline at end of file diff --git a/papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/results/happy_direction_results.json b/papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/results/happy_direction_results.json new file mode 100644 index 0000000..d0c5102 --- /dev/null +++ b/papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/results/happy_direction_results.json @@ -0,0 +1,8223 @@ +{ + "feature": "emotion_vector_space_1_ce103f73", + "kind": "direction_result", + "layers": { + "24": { + "emotion": "happy", + "norm": 1.0, + "raw_vector": [ + 0.015880627557635307, + 0.007046127691864967, + 0.0013465671800076962, + 0.005041386932134628, + 0.02226206287741661, + -0.03188471496105194, + 0.011977038346230984, + -0.005371276754885912, + -0.009403771720826626, + 0.007001750636845827, + -0.0035079645458608866, + -0.0004332263197284192, + 0.00015040746075101197, + -0.0038134714122861624, + 0.007593883667141199, + 0.004461341071873903, + -0.012466785497963428, + -0.003887397702783346, + -0.017726214602589607, + -0.0038662131410092115, + 0.009036082774400711, + -0.013547400012612343, + -0.0017773157451301813, + 0.007876063697040081, + -0.00820839498192072, + -0.013232378289103508, + 0.0706501230597496, + -0.0026612714864313602, + -0.0032117816153913736, + 0.009558257646858692, + -0.006054622586816549, + 0.034101493656635284, + -0.01553944032639265, + -0.00242172135040164, + -0.0010014931904152036, + 0.020563503727316856, + -0.013038025237619877, + 0.011491728946566582, + 0.008625413291156292, + -0.002619414124637842, + 0.0015809019096195698, + 0.00886357482522726, + -0.016972260549664497, + -0.016267769038677216, + -0.0003095550637226552, + 0.0006070618401281536, + 0.014121501706540585, + 0.001161340856924653, + 0.010062841698527336, + -0.0035681920126080513, + 0.00036889768671244383, + 0.04304323345422745, + 0.0010444625513628125, + 0.007914152927696705, + -0.03558133915066719, + -0.006777269300073385, + -0.005931540858000517, + -0.0036965031176805496, + 0.019593114033341408, + 0.0004728423373308033, + 0.0018595029832795262, + 0.008042062632739544, + -0.008087166585028172, + 0.025951966643333435, + -0.01102533657103777, + -0.012033926323056221, + 0.0023180758580565453, + -0.004991540219634771, + -0.02545207366347313, + -0.00551013695076108, + -0.008163576945662498, + -0.0017198218265548348, + 0.012849276885390282, + 0.0075452495366334915, + -0.0114652244374156, + -0.026584388688206673, + 0.0036935738753527403, + 2.6837804398383014e-05, + 0.02191607467830181, + 0.014861424453556538, + -0.03544330596923828, + -0.009113513864576817, + 0.015097800642251968, + 0.011198888532817364, + -0.01137014664709568, + -0.010315951891243458, + 0.011094598099589348, + -0.009198491461575031, + 0.007368661463260651, + -0.006951133720576763, + 0.007362895179539919, + 0.0024814296048134565, + 0.008187852799892426, + -0.015134725719690323, + 0.0191095769405365, + 0.05116945132613182, + -0.01460309512913227, + 0.0004681138671003282, + -0.04003944993019104, + -0.0036175509449094534, + 0.0036998153664171696, + 0.00966844242066145, + 0.026285221800208092, + 0.02147473767399788, + -0.007572024129331112, + 0.00030798689112998545, + 0.006759602576494217, + 0.0045525189489126205, + 0.01800401508808136, + -0.012697947211563587, + 0.004295684397220612, + -0.001574820838868618, + 4.7700483264634386e-05, + -0.007474397774785757, + -0.008746693842113018, + -0.010344480164349079, + -0.007039531134068966, + 0.00452010752633214, + -0.004345029126852751, + -0.004518871661275625, + -0.020282477140426636, + -0.010734237730503082, + -0.03374483808875084, + -0.0035934457555413246, + -0.005413037724792957, + 0.026600228622555733, + -0.00025796855334192514, + 0.0015869757626205683, + 0.009215034544467926, + -0.011161740869283676, + -0.01835857331752777, + 0.021724678575992584, + -0.0006761600379832089, + -0.0032259183935821056, + -0.029308516532182693, + -0.01759343221783638, + -0.0022582444362342358, + 0.01027002278715372, + 0.0018158105667680502, + 0.004836220294237137, + -0.009558729827404022, + -0.0013029996771365404, + 0.02432762272655964, + -0.0055900816805660725, + -0.009249303489923477, + 0.003371360246092081, + 0.0076238857582211494, + -0.013619043864309788, + 0.0016267378814518452, + -0.022067274898290634, + -0.004422996658831835, + -0.000495361047796905, + 0.006567629985511303, + 0.01777169480919838, + -0.005706555675715208, + -0.02637113817036152, + 0.004002649337053299, + 0.009184552356600761, + 0.00020787680114153773, + 1.7900321836350486e-05, + 0.008350342512130737, + -0.006296580191701651, + -0.01644238829612732, + -0.012876381166279316, + 0.004735175054520369, + 0.0054525164887309074, + 0.015655390918254852, + 0.026501426473259926, + 0.017827264964580536, + -0.0046499646268785, + -0.00975937582552433, + 0.012630256824195385, + 0.033685918897390366, + 0.003179003717377782, + -0.0028340788558125496, + 0.0041765132918953896, + 0.025822805240750313, + -0.0061741904355585575, + -0.006101808976382017, + -0.009427830576896667, + -0.011523929424583912, + -0.004993511363863945, + 0.00696840975433588, + 0.006300745997577906, + -0.0026493777986615896, + 0.00041050196159631014, + -0.0012578938622027636, + -0.0027208582032471895, + 0.0009908509673550725, + 0.007451236248016357, + -0.01126272976398468, + -0.014759747311472893, + -0.028083276003599167, + -0.0110991345718503, + 0.00338281923905015, + 0.0012706900015473366, + 0.04787881299853325, + 0.0012564013013616204, + 0.016548022627830505, + -0.0005360560608096421, + -0.04909517988562584, + 0.0003398599219508469, + 0.02159520983695984, + -0.012670700438320637, + -0.017541371285915375, + 0.01781177520751953, + 0.0014344853116199374, + -0.0505162850022316, + -0.02983294054865837, + 0.00713336281478405, + -0.008305134251713753, + -0.0005171220982447267, + 0.006403539329767227, + -0.002339144004508853, + -0.008463719859719276, + -0.005268306937068701, + -0.0007395289721898735, + 0.002938243094831705, + -0.005385435651987791, + 0.012095891870558262, + 0.012004047632217407, + -0.0033011746127158403, + -0.014994803816080093, + 0.0038412550929933786, + -0.03436257690191269, + 0.052594516426324844, + 0.017027713358402252, + 0.010169140994548798, + -0.006896637845784426, + -0.012538999319076538, + -0.003179677063599229, + -0.005070356652140617, + 0.017117995768785477, + 0.06879720836877823, + -0.018875015899538994, + 0.0018706682603806257, + 0.006558103021234274, + 0.007020398508757353, + 0.0018705680267885327, + -0.01875179074704647, + -0.014911510981619358, + 0.02361033856868744, + -0.010574701242148876, + 0.08054423332214355, + 0.002186280908063054, + -0.012732830829918385, + 0.025618551298975945, + 0.011963596567511559, + -0.026996629312634468, + -0.004279542714357376, + 0.00811893679201603, + 0.046142566949129105, + 0.0060517629608511925, + -0.013145120814442635, + 0.00797489657998085, + -0.00974055752158165, + -0.014752806164324284, + 0.010102391242980957, + -0.002376775024458766, + 0.005735170561820269, + 0.014921044930815697, + 0.007026126142591238, + -0.02451450563967228, + -0.0049586170352995396, + -0.020680677145719528, + -0.0008935906225815415, + 0.00631133234128356, + 0.022785335779190063, + -0.002318905433639884, + 0.014848736114799976, + -0.0020534133072942495, + -0.016828102990984917, + -0.0006037437124177814, + 0.016318175941705704, + 0.01633392833173275, + -0.004519061651080847, + -0.010319085791707039, + 0.0032859144266694784, + -0.010809017345309258, + -0.008616593666374683, + 0.015299228951334953, + -0.005991959013044834, + -0.008920162916183472, + 0.008757133968174458, + -0.00633823499083519, + -0.010564484633505344, + -0.0006444058381021023, + -0.00949031300842762, + -0.0034466106444597244, + -0.003266548039391637, + 0.01036116760224104, + 0.024674104526638985, + 0.023621534928679466, + 0.0035328890662640333, + 0.0012001062277704477, + -0.004114561714231968, + 0.01622568443417549, + 0.013629471883177757, + -0.017664320766925812, + 0.009775443933904171, + -0.006973872426897287, + -0.014502391219139099, + 0.0055548963136971, + 0.001303791650570929, + 0.010885046795010567, + -0.0035517506767064333, + -0.0018942252499982715, + 0.019572565332055092, + 0.00774830486625433, + 0.016367312520742416, + 0.003961826208978891, + -0.0009925566846504807, + -0.013326233252882957, + -0.003917884547263384, + 9.308859443990514e-05, + -0.012298885732889175, + -0.0031132772564888, + -0.010063361376523972, + -0.011770571582019329, + -0.01197068765759468, + -0.005308746360242367, + -0.007518484722822905, + 0.006922300439327955, + -0.0118957394734025, + -0.007771818432956934, + -0.0055368514731526375, + -0.005785096436738968, + 0.012121121399104595, + -0.011108728125691414, + -0.01553519070148468, + 0.005813846364617348, + 0.002999326214194298, + 0.006323539651930332, + -0.018886180594563484, + 0.0036980274599045515, + -0.00934627652168274, + 0.024157090112566948, + 0.00394961005076766, + 0.00041737357969395816, + -0.015788497403264046, + 1.108939522964647e-05, + -0.015228874050080776, + 0.004401928745210171, + 0.04269970953464508, + 0.01364114135503769, + 0.0024971815291792154, + -0.02824135310947895, + 0.0031398185528814793, + 0.0033663539215922356, + -0.0019770809449255466, + -0.0004886656533926725, + -0.004729340318590403, + -0.010554692707955837, + -0.004705187398940325, + -0.01934266835451126, + -0.005485374014824629, + -0.009105462580919266, + 0.01711905188858509, + -0.007189224008470774, + 0.005438867025077343, + -0.0067782592959702015, + 0.0346427857875824, + 0.004983891732990742, + -0.007754660677164793, + -0.0087708355858922, + 0.00494858343154192, + -0.008720913901925087, + 0.0022366121411323547, + -0.054517053067684174, + -0.005443524103611708, + 0.012440170161426067, + -0.007625422440469265, + 0.0005169917130842805, + -0.050635699182748795, + -0.0021972516551613808, + 0.015755565837025642, + -0.004385816864669323, + 0.006642966531217098, + -0.011284127831459045, + 0.0038749545346945524, + 0.0017867679707705975, + 0.003435488324612379, + -0.028690649196505547, + -0.007021977566182613, + 0.006031387951225042, + -0.005619063973426819, + 0.004153725225478411, + 0.003029740648344159, + 0.015350663103163242, + -0.006549219135195017, + 0.012358603999018669, + -0.001303158001974225, + -0.007065161596983671, + 0.024818312376737595, + 0.029864972457289696, + 0.015386234037578106, + -0.0019866758957505226, + -0.027501920238137245, + -0.006325901951640844, + -0.005696170497685671, + -0.000250909011811018, + 0.005161323118954897, + -0.002290666103363037, + 0.00714935502037406, + -0.009140009060502052, + -0.004972638096660376, + -0.004478454124182463, + 0.0010029751574620605, + -0.011749383062124252, + -0.00941255409270525, + -0.01180553063750267, + 0.016786418855190277, + 0.004095125012099743, + 0.018294086679816246, + 0.007624452002346516, + -0.004223186522722244, + 0.004739977419376373, + 0.001874388544820249, + 0.0409981869161129, + 0.014098292216658592, + 0.01288799662142992, + 0.019459139555692673, + -0.016751278191804886, + 0.017716174945235252, + 0.010903315618634224, + 0.0002263614587718621, + -0.007405977696180344, + 0.011588587425649166, + -0.019256267696619034, + 0.0026088152080774307, + 0.026044286787509918, + -0.0034512244164943695, + -0.004151794593781233, + 0.010989280417561531, + -0.006744483020156622, + -0.009844881482422352, + 0.011653024703264236, + -0.005862488877028227, + -0.009897586889564991, + 0.001325933262705803, + 0.007945628836750984, + 0.005499581806361675, + -0.002773750340566039, + 0.02127741649746895, + 0.001962332520633936, + -0.024862170219421387, + -0.007280838210135698, + 0.03362472355365753, + -0.012709399685263634, + -0.03260965272784233, + 0.00042629666859284043, + 0.0007771772798150778, + -0.012591177597641945, + -0.006875037215650082, + -0.01843556948006153, + -0.003082488663494587, + 0.0018871088977903128, + 0.0041535645723342896, + 0.00438337679952383, + 0.0010180127574130893, + -0.006497780792415142, + 0.001378999906592071, + 0.017603954300284386, + 0.0037497624289244413, + -0.006488247774541378, + -0.01147423405200243, + 0.007844868116080761, + 0.006211614701896906, + -0.005234678741544485, + -0.03574905917048454, + 0.008436156436800957, + 0.003510907059535384, + 0.008667788468301296, + -0.004876305349171162, + 0.01768256537616253, + 0.009767957963049412, + -0.0013065513921901584, + -0.00011031029862351716, + 0.00025215884670615196, + -0.004182951059192419, + 0.0007366929785348475, + 0.007290246430784464, + -0.006165798753499985, + -0.017829252406954765, + 0.009960221126675606, + -0.006946898065507412, + 0.02517705038189888, + -0.011535757221281528, + 0.029706796631217003, + -0.00027521129231899977, + 0.00140833156183362, + 0.013807362876832485, + -0.01939162239432335, + -0.0067568435333669186, + 0.006612664088606834, + 0.00482727587223053, + -0.0011800284264609218, + -0.002703940263018012, + 0.0008301388588733971, + -0.014485500752925873, + -0.021166199818253517, + 0.0007373317494057119, + 0.00992465578019619, + 0.01793689653277397, + -0.009314707480370998, + 0.004017391242086887, + -0.006055157631635666, + -0.004072013311088085, + -0.014808835461735725, + 0.010860045440495014, + -0.017232226207852364, + -0.0038885425310581923, + -0.0072439550422132015, + 0.003933530300855637, + -0.0010373055702075362, + 0.014064028859138489, + 5.506071465788409e-05, + -0.0047845919616520405, + 0.0034529385156929493, + -0.008849289268255234, + 0.0010774490656331182, + -0.006144396029412746, + -0.006363149732351303, + -0.033551305532455444, + 0.00231839157640934, + 0.0055251638405025005, + -0.016565412282943726, + -0.004214686341583729, + 0.005028110463172197, + 0.0208484698086977, + -0.0030961697921156883, + 0.00443548196926713, + -0.0015337351942434907, + 0.0014473311603069305, + -0.0019064174266532063, + 0.0007706358446739614, + 0.010370992124080658, + -0.019471032544970512, + 0.003348750527948141, + -0.009451569058001041, + 0.002743178280070424, + 0.015875499695539474, + 0.0025982402730733156, + 0.008050396107137203, + -0.010697750374674797, + 0.010631280951201916, + 0.02590920403599739, + 0.01527620479464531, + -0.008573455736041069, + -0.003384728217497468, + -0.0020532377529889345, + 0.015354307368397713, + -0.07810995727777481, + 0.013752195984125137, + -0.02179715223610401, + 0.003546719439327717, + -0.00019025908841285855, + 0.00861685536801815, + 0.008022372610867023, + 3.8915233744774014e-05, + 0.015744607895612717, + 0.008389587514102459, + -0.009635869413614273, + -0.011265121400356293, + 0.005098540335893631, + 0.007309361826628447, + -0.003583610290661454, + -0.01411075983196497, + 0.005507662892341614, + 0.007577930111438036, + -0.00023355567827820778, + -0.009380040690302849, + -0.014244945719838142, + 0.0076566655188798904, + 0.0044554900377988815, + -0.0007113947067409754, + 0.0028770165517926216, + 0.014054722152650356, + 0.02035311609506607, + 0.020570984110236168, + 0.00027862819842994213, + 0.013602386228740215, + -0.007164840120822191, + -0.022095192223787308, + -0.010018042288720608, + -0.008366400375962257, + 0.03296675533056259, + -0.004350954666733742, + 0.0005651022074744105, + -0.0025892890989780426, + 0.011435509659349918, + 0.02232097089290619, + -0.02194163016974926, + 0.0022107369732111692, + 0.015637574717402458, + 0.009627830237150192, + 0.010323233902454376, + 0.00024495701654814184, + -0.016347505152225494, + 0.016729053109884262, + 0.00393998809158802, + -0.013291235081851482, + 0.012251756154000759, + -0.005860255565494299, + -0.014683619141578674, + 0.006594029255211353, + 0.005720661953091621, + 0.005197202321141958, + 0.006611823569983244, + 0.024281738325953484, + -0.001370826386846602, + 0.0026329185348004103, + -0.016055148094892502, + 0.003661755006760359, + -0.0028694344218820333, + 0.02643478475511074, + -0.009864448569715023, + 0.00029365569935180247, + 0.014638485386967659, + -0.007939551025629044, + -0.018148774281144142, + -0.0038824831135571003, + -0.00654930155724287, + 0.007863277569413185, + -0.0062744212336838245, + 0.007907072082161903, + -0.010794810019433498, + -0.0001417544117430225, + -0.0018782527185976505, + -0.00023415246687363833, + -0.009602885693311691, + 0.026599779725074768, + -0.001858290983363986, + -0.003213256597518921, + -0.0073832059279084206, + -0.012406774796545506, + -0.0036179069429636, + 0.00572856143116951, + 0.009060840122401714, + 0.0027874871157109737, + 0.007970490492880344, + -0.0020357395987957716, + -0.005117363762110472, + 0.025895729660987854, + -0.03603493422269821, + -0.005465388298034668, + 0.006333087105304003, + -0.01483782846480608, + -0.00999570731073618, + 0.01704540103673935, + 0.006330819800496101, + -0.015390608459711075, + 0.009602086618542671, + -0.011645814403891563, + -0.010790248401463032, + -0.006180014461278915, + -0.0067066410556435585, + 0.029753588140010834, + -0.02681131847202778, + -0.02466416358947754, + -0.007309389766305685, + 0.008403649553656578, + 0.016898367553949356, + 0.016853749752044678, + 0.0029722147155553102, + 0.04799400269985199, + -0.0159769244492054, + 0.020562781020998955, + -0.0030281946528702974, + -0.009392383508384228, + -0.014175308868288994, + 0.0017650709487497807, + -0.007106146775186062, + -0.0019915862940251827, + -0.009646585211157799, + 0.002305875765159726, + -0.0038518619257956743, + 0.01922914758324623, + 0.00917256809771061, + 0.008250949904322624, + 0.0058709969744086266, + 0.0004125468840356916, + 0.010660373605787754, + 0.006976958364248276, + -0.005409738048911095, + -0.0003108402597717941, + 0.008066914044320583, + -0.005895680747926235, + -0.017633702605962753, + -0.01782388798892498, + 0.02204299159348011, + -0.017923910170793533, + 0.022319305688142776, + -0.007066069636493921, + 0.003312287852168083, + 0.011332476511597633, + 0.011996990069746971, + -0.011891770176589489, + -0.01434660516679287, + -0.010267963632941246, + -0.001166586996987462, + 0.00748026417568326, + 0.0011652946704998612, + -0.0014421063242480159, + -0.025714626535773277, + -0.01799287647008896, + -0.008288762532174587, + 0.00967532116919756, + 0.0036703769583255053, + 0.020785745233297348, + 0.011368646286427975, + -0.0072553385980427265, + -0.001954811392351985, + -0.007532323244959116, + 0.011052524670958519, + 0.0085065346211195, + -0.03401831537485123, + -0.007236079778522253, + 0.000966415274888277, + -0.008276167325675488, + -0.003755677491426468, + 0.01224503293633461, + -0.00484697287902236, + -0.006562691181898117, + 0.001033487031236291, + -0.021557241678237915, + 0.021638771519064903, + 0.0019656321965157986, + -0.010335859842598438, + 0.002989354310557246, + 0.00374276889488101, + -0.00421206234022975, + 0.0007182353874668479, + -0.003975053783506155, + 0.005006938707083464, + 0.0078103081323206425, + -0.05073762312531471, + 0.006758007220923901, + -0.003401651978492737, + -0.00354378717020154, + -0.007083203177899122, + 0.013777473010122776, + -0.0303290206938982, + -0.00865792017430067, + 0.025559445843100548, + -0.010826858691871166, + -0.0027388606686145067, + 0.02556738816201687, + -0.024983743205666542, + 0.010266739875078201, + 0.005188055336475372, + -0.033203136175870895, + 0.014626089483499527, + -0.001438518287613988, + 0.0009114986751228571, + 0.011807930655777454, + 0.010726830922067165, + -0.005448949057608843, + -0.0016959186177700758, + 0.0029783244244754314, + 0.005677809938788414, + 0.013212515041232109, + -0.01633247174322605, + 0.008472251705825329, + 0.00406485004350543, + -0.009029584005475044, + 0.0006993477582000196, + -0.0021979613229632378, + 0.007384899538010359, + -0.010617716237902641, + 0.005359036847949028, + -0.00742261903360486, + 0.006449802312999964, + 0.00455252081155777, + -0.028231963515281677, + -0.0019460187759250402, + -0.006251865532249212, + 0.027151891961693764, + 0.004273163620382547, + 0.023915383964776993, + -0.013837048783898354, + 0.014993144199252129, + 0.0018191507551819086, + -0.010365714319050312, + -0.005957536865025759, + -0.005876112729310989, + -0.00937612820416689, + -0.0066420529037714005, + 0.004429619759321213, + -0.0067819394171237946, + -0.010994684882462025, + -0.019946971908211708, + 0.019718604162335396, + -0.007638941984623671, + -0.013276898302137852, + -0.019301902502775192, + 0.0010031991405412555, + 0.018527070060372353, + -0.014479153789579868, + 0.0018842146964743733, + 0.01464182510972023, + 0.002010630676522851, + 0.0019866940565407276, + 0.0032691536471247673, + -0.0006972894771024585, + -0.008279839530587196, + -0.004717840347439051, + -0.010906415991485119, + 0.006295325700193644, + 0.0581173449754715, + 0.01566735841333866, + -0.013705329969525337, + 0.00898866169154644, + -0.02600654773414135, + 0.026627836748957634, + 0.015031815506517887, + -0.017529433593153954, + 0.0004994279006496072, + -0.010866468772292137, + -0.011323017999529839, + 0.013529624789953232, + -0.025094283744692802, + 0.007309041917324066, + -0.006519991438835859, + 0.00024514153483323753, + 0.006885637529194355, + 0.0021112756803631783, + 0.015906205400824547, + -0.015339563600718975, + -0.016082976013422012, + -0.0006789290928281844, + 0.0014664174523204565, + 0.0004605713183991611, + -0.012494420632719994, + 0.021685216575860977, + -0.015573076903820038, + -0.0029774620197713375, + 0.025044679641723633, + -0.017190832644701004, + 0.006527254823595285, + 0.001292601926252246, + 0.011925905011594296, + -0.006632052827626467, + 0.00036380061646923423, + 0.0022292681969702244, + 0.009436934255063534, + -0.014462176710367203, + -0.001296967500820756, + 0.003805262502282858, + -0.006280340254306793, + -0.015960006043314934, + 0.018988406285643578, + 0.019515765830874443, + 0.004724477883428335, + 0.009532776661217213, + 0.013481510803103447, + 0.0021915363613516092, + -0.003777259262278676, + -0.01781483367085457, + 0.014493072405457497, + 0.0007233804208226502, + 0.007534426636993885, + 0.0029443695675581694, + -0.007938751950860023, + -0.00621316721662879, + -0.01692686229944229, + 0.004691054578870535, + -0.004384730011224747, + -0.015151023864746094, + -0.004046754911541939, + -0.004582501947879791, + -0.0031415161211043596, + -0.0018484564498066902, + -0.004366638604551554, + -0.005426356568932533, + 0.005747688468545675, + -0.06305012106895447, + 0.008300290443003178, + 0.007158536929637194, + 0.004728398285806179, + -0.008703114464879036, + 0.01235118880867958, + -0.0073855286464095116, + 0.00743985828012228, + -0.012710674665868282, + 0.007718132808804512, + 0.006346060428768396, + 0.0015788552118465304, + -0.015700465068221092, + 0.013276302255690098, + 0.023906100541353226, + 0.006557180546224117, + 0.011629757471382618, + 0.011931471526622772, + -0.004495350643992424, + -0.0071508134715259075, + 0.009305493906140327, + -0.00649539940059185, + 0.006039153318852186, + 6.189182749949396e-05, + -0.007698690984398127, + 0.037609394639730453, + -0.010974298231303692, + -0.012206247076392174, + 0.002449566964060068, + -0.01682870276272297, + 0.003923733253031969, + 0.0037260225508362055, + 0.00529826944693923, + -0.014323333278298378, + 0.01980488933622837, + -0.03132821246981621, + 0.0031777098774909973, + -0.001252482645213604, + -0.0047742691822350025, + -0.017041627317667007, + 0.006572175770998001, + 0.007430725730955601, + -0.0057794093154370785, + -0.0010309512726962566, + -0.012415336444973946, + 0.010550487786531448, + 0.0008960967534221709, + -0.04655403271317482, + -0.005243248306214809, + 0.014610977843403816, + 0.005516708828508854, + 0.006929396651685238, + -0.006232811603695154, + -0.03922618180513382, + 0.011343436315655708, + 0.017999283969402313, + 0.003469793125987053, + 0.005173419136554003, + 0.013009542599320412, + 0.01835719309747219, + -0.0007387885707430542, + -0.008651833981275558, + 0.015386246144771576, + -0.0004184153804089874, + 0.003843854647129774, + 0.0015774392522871494, + -0.013532130047678947, + 0.0010783742181956768, + -0.008126823231577873, + 0.008508245460689068, + -0.002985980361700058, + -0.02623569779098034, + -0.003918954636901617, + -0.006309908349066973, + -0.0028010327368974686, + -0.014834646135568619, + -0.005790164228528738, + 0.0062273177318274975, + 0.014840617775917053, + 0.007251518778502941, + -0.008380159735679626, + 0.005063353106379509, + -0.011395764537155628, + -0.003908864688128233, + 0.013443819247186184, + -0.0002706650993786752, + -0.010724203661084175, + 0.006621338427066803, + -0.008094647899270058, + 0.015235495753586292, + -0.016031913459300995, + -0.0005834841867908835, + -0.0016602210234850645, + 0.0016375365667045116, + -0.0004135191556997597, + -0.002308460883796215, + -0.0016865774523466825, + 0.0007569526205770671, + -0.016776783391833305, + -0.03320331126451492, + 0.002731040585786104, + -0.0016035051085054874, + 0.009883967228233814, + -0.0012713456526398659, + -0.018925493583083153, + 0.011942928656935692, + 0.028707826510071754, + 0.008274100720882416, + 0.011035856790840626, + 0.008357144892215729, + 0.0028260124381631613, + 0.06881920993328094, + 0.0026817063335329294, + 0.026137545704841614, + -0.005030698608607054, + 0.000593930424656719, + -0.0010770701337605715, + 0.022680364549160004, + -0.013019820675253868, + 0.011141102761030197, + -0.0069023496471345425, + 0.010401715524494648, + 0.017223617061972618, + 0.0016754289390519261, + 0.013637976720929146, + 0.023765288293361664, + -0.01937619037926197, + -0.012778297066688538, + 0.00818764790892601, + 0.009454714134335518, + 0.0015345682622864842, + -0.029407644644379616, + 0.005379702430218458, + -0.002861133310943842, + -0.008764366619288921, + 0.0022067460231482983, + -0.04293984919786453, + 0.003303940175101161, + 0.0036267517134547234, + -0.00495172617956996, + 0.0016866225050762296, + -0.01401526015251875, + -0.0036266122478991747, + 0.003996358718723059, + -0.006494144443422556, + -0.006857672240585089, + -0.0074074422009289265, + 0.008844409137964249, + 0.0225200392305851, + 0.0008430239977315068, + 0.004462873097509146, + -0.01471176277846098, + -0.0008252314291894436, + 0.002203243086114526, + -0.00017466802091803402, + -0.028640851378440857, + 0.010749652981758118, + 0.004598503932356834, + 0.01306148525327444, + -0.020686574280261993, + 0.004779801703989506, + -0.00929802842438221, + 0.01227306667715311, + 0.01826157420873642, + -0.003847370622679591, + 0.021541818976402283, + 0.0008367954287678003, + 0.024913568049669266, + 0.008201416581869125, + 0.006162659265100956, + 0.03940754383802414, + 0.018385183066129684, + -0.00970498751848936, + -0.010649931617081165, + 0.016205132007598877, + 0.00017044050036929548, + -0.002731659449636936, + 0.011805805377662182, + 0.0027969132643193007, + -0.0038294352125376463, + 0.014570720493793488, + 0.004732975736260414, + -0.003770292503759265, + -0.009702056646347046, + 0.008282698690891266, + -0.0031250861939042807, + 0.02357197180390358, + 0.009767921641469002, + -0.005864526145160198, + 0.01101693045347929, + -0.007721268571913242, + -0.018509970977902412, + 0.0056508504785597324, + -0.0035887467674911022, + 0.023407308384776115, + -0.006273148115724325, + -0.0017511581536382437, + 0.007030950393527746, + 0.010034591890871525, + -0.00044906261609867215, + -0.0010437214514240623, + 0.00724861491471529, + 0.0056457421742379665, + -0.014214611612260342, + -0.002893852535635233, + -0.004749953746795654, + -0.013866678811609745, + 0.0015789307653903961, + 0.0014902995899319649, + 0.030550777912139893, + -0.005352330859750509, + -0.010826637037098408, + 0.0013082921504974365, + -0.005269714165478945, + 0.01577143929898739, + 0.00023626162146683782, + 0.0061386204324662685, + -7.937185000628233e-05, + -0.0074877506121993065, + 0.002958059310913086, + -0.010671704076230526, + 0.003212894778698683, + -0.009452966041862965, + -0.01975684054195881, + -0.004057179670780897, + 0.01573958434164524, + -0.0187594722956419, + 0.019177118316292763, + -0.007516805082559586, + 0.006899998523294926, + 0.008723628707230091, + 0.007221757434308529, + 0.013463116250932217, + -0.012329732067883015, + -0.02379990555346012, + -0.0066830432042479515, + 0.01890767365694046, + 0.004937466699630022, + -0.010958432219922543, + 0.003841508412733674, + 0.010277766734361649, + -0.04258614033460617, + 0.023333346471190453, + 0.0038250668440014124, + 0.004224870353937149, + 0.008022768422961235, + -0.0026011241134256124, + -0.009382934309542179, + -0.012395878322422504, + -0.0003608427650760859, + 0.0003983408969361335, + 0.014096013270318508, + -0.014377825893461704, + 0.05010078102350235, + -0.005372192244976759, + -0.002090282505378127, + -0.007097454741597176, + -0.0152174923568964, + -0.02240457944571972, + -0.014668021351099014, + -0.0023412653245031834, + -0.019818268716335297, + -0.003997910302132368, + 0.005017233081161976, + 0.011576488614082336, + 0.0003720065578818321, + 0.014109830372035503, + 0.013190289959311485, + -0.020943230018019676, + 0.008464197628200054, + 0.007011245004832745, + 0.03554268926382065, + 0.011728133074939251, + -0.023762736469507217, + 0.01208469644188881, + -0.00501448567956686, + -0.0037492236588150263, + 0.00189745775423944, + 0.011204901151359081, + 0.018094835802912712, + -0.006978597026318312, + 0.0015833809738978744, + 0.007840490899980068, + 0.012598137371242046, + 0.0023435463663190603, + 0.0051875547505915165, + 0.03673451021313667, + -0.017726080492138863, + 0.0057186828926205635, + 0.012833322398364544, + -0.007779263891279697, + -0.0008673366392031312, + -0.0004611280164681375, + -0.0030230889096856117, + 0.01825069636106491, + 0.027979401871562004, + 0.0015599034959450364, + -0.00020622789452318102, + 0.00034989547566510737, + -0.007720537483692169, + -0.005157319828867912, + -0.0029681988526135683, + -0.0015803718706592917, + 0.003941318951547146, + 0.0026174967642873526, + -0.002906233537942171, + -0.006017028354108334, + -0.0026363623328506947, + -0.007003063801676035, + 0.0008522653952240944, + -0.0013798802392557263, + 0.027905385941267014, + -0.012390903197228909, + 0.0005208543152548373, + 0.0004348664078861475, + -0.003423915011808276, + 0.006883727386593819, + 0.006691585294902325, + -0.0027872007340192795, + -0.009845143184065819, + -0.0024809143505990505, + 0.000556074024643749, + -0.007111800834536552, + 0.008656607940793037, + -0.012715269811451435, + 0.004840061068534851, + -0.006242081988602877, + 0.0019433248089626431, + -0.004377959296107292, + -0.0003695774357765913, + -0.004545609001070261, + -0.0021520412992686033, + 0.001564624486491084, + -0.005916419439017773, + -0.010461964644491673, + -0.0041190944612026215, + 0.0042860060930252075, + 0.0089021697640419, + -0.04859784245491028, + -0.00290908245369792, + 0.0011774071026593447, + -0.015764158219099045, + 0.007426995784044266, + -0.0020504705607891083, + 0.014562409371137619, + 0.014538426883518696, + 0.009753461927175522, + -0.01003477443009615, + 0.010462414473295212, + 0.0007126066484488547, + -9.599253826308995e-05, + 0.012556896544992924, + -0.00236444640904665, + 0.0023098124656826258, + -0.010857359506189823, + -0.02198641560971737, + 0.003700551576912403, + -0.005287522450089455, + 0.0020599171984940767, + 0.002221150090917945, + -0.005432257428765297, + -0.0008142466540448368, + 0.0076355235651135445, + -0.03232469782233238, + 0.008336744271218777, + 0.00431152805685997, + -0.006967606488615274, + 0.0027057062834501266, + 0.005083663389086723, + 0.004301148932427168, + -0.014342029578983784, + 0.0039871083572506905, + 0.016665121540427208, + 0.016227073967456818, + 0.005191376432776451, + 0.018881959840655327, + 0.03066568449139595, + -0.014845333993434906, + 0.013629721477627754, + -0.012701774947345257, + -0.026630420237779617, + -0.01043572835624218, + -0.008270373567938805, + -0.002883884822949767, + 0.003657091408967972, + -0.0025253607891499996, + 0.002176424954086542, + -0.0016337042907252908, + 0.0071184211410582066, + -0.010156451724469662, + 0.010678690858185291, + 0.001522435573861003, + -0.005574320908635855, + -0.018290840089321136, + 0.0021470726933330297, + 0.027036838233470917, + -0.00022703406284563243, + 0.010230522602796555, + 0.020266307517886162, + -0.008725488558411598, + -0.011506094597280025, + -0.0008439611410722136, + 0.019440650939941406, + -0.0021814738865941763, + 0.003975952975451946, + 0.003025009762495756, + 0.02496718056499958, + -0.0013802124885842204, + 0.03403645008802414, + 0.008664729073643684, + -0.014864923432469368, + 0.014248690567910671, + 0.012225518934428692, + 0.0058189393021166325, + -0.0028227390721440315, + 0.02995148114860058, + -0.001169694121927023, + -0.01585794799029827, + -0.018361927941441536, + 0.011520353145897388, + -0.012073742225766182, + -0.007169872522354126, + 0.010574552230536938, + 0.004508213605731726, + 0.0036562185268849134, + 0.023547761142253876, + -0.008269762620329857, + -0.008785337209701538, + -0.003731118980795145, + -0.007504124194383621, + -0.013968807645142078, + -0.0280152577906847, + 0.007103903219103813, + 0.013782260939478874, + -0.0010639295214787126, + -0.0071867345832288265, + -0.02073359116911888, + 0.016939381137490273, + -0.013271914795041084, + -0.014541580341756344, + 0.008920673280954361, + 0.0032113997731357813, + -0.010570663027465343, + 0.001500969287008047, + 0.009259497746825218, + 6.0845759435324e-05, + 0.0007535312906838953, + -0.0071226488798856735, + -0.007184877526015043, + 0.004035844001919031, + 0.0009710490121506155, + 0.009577610529959202, + 0.006151150446385145, + -0.004510140512138605, + -0.00568736856803298, + -0.03794505447149277, + -0.025751816108822823, + 0.01315137930214405, + -0.012118276208639145, + -0.008873632177710533, + -0.0100230872631073, + 0.0011623760219663382, + -0.001776656019501388, + -0.002800289774313569, + 0.011582881212234497, + 0.009497326798737049, + 0.008129601366817951, + 0.00043464492773637176, + 0.010129883885383606, + 0.010572251863777637, + -0.004093135241419077, + 0.01039839070290327, + -0.0178541149944067, + 0.03088933229446411, + -0.00417015515267849, + -0.010271362960338593, + 0.0031263467390090227, + 0.011230426840484142, + 0.0013697076356038451, + -0.01290548499673605, + 0.01776697486639023, + -0.020695459097623825, + -0.008011781610548496, + 0.006351467687636614, + -0.004358360543847084, + -0.008991246111690998, + -0.00013310357462614775, + 0.006293696351349354, + -0.017465954646468163, + -0.034720681607723236, + 0.0010210550390183926, + 0.00023773156863171607, + -0.002055670600384474, + -0.006855747662484646, + -0.003761137370020151, + -0.016333047300577164, + -0.0001713815436232835, + -0.009787162765860558, + -0.00745043670758605, + -0.023624585941433907, + 0.009937000460922718, + -0.01812877506017685, + 0.0232937503606081, + -0.0036883477587252855, + 0.013600523583590984, + -0.0033770003356039524, + 0.00696079945191741, + 0.009688841179013252, + -0.010261091403663158, + -0.012325981631875038, + 0.003024609060958028, + -0.008258278481662273, + 0.014134269207715988, + 0.018546387553215027, + -0.014821648597717285, + -0.023241909220814705, + -0.009646555408835411, + 0.003075413638725877, + -0.012779362499713898, + 0.006102806888520718, + -0.01114700734615326, + 0.017385665327310562, + -0.0033291999716311693, + 0.008313830010592937, + -0.01354861818253994, + -0.0034515236038714647, + 0.005770778749138117, + -0.0005707288510166109, + 0.012692835181951523, + -0.01113920472562313, + 0.02088434062898159, + 0.009407800622284412, + -9.804384899325669e-05, + -0.0030881997663527727, + 0.01547426450997591, + -0.013975461944937706, + -0.002721362514421344, + -0.012145763263106346, + -0.009721418842673302, + -0.005475987680256367, + 0.007843038067221642, + 0.015433849766850471, + -0.0048813545145094395, + 0.02129485085606575, + 0.01925443671643734, + 0.030468406155705452, + -0.014113308861851692, + -0.006837745197117329, + -0.03885858133435249, + -0.005648639984428883, + -0.0024627498351037502, + -0.011758552864193916, + 0.009833130054175854, + -0.00174320163205266, + -0.01846114918589592, + 0.012404567562043667, + -0.00021245372772682458, + 0.0002634562843013555, + -0.0031215762719511986, + -0.0038951821625232697, + 0.0016869624378159642, + -0.020127099007368088, + 0.005720446817576885, + -0.013125970959663391, + 0.033879730850458145, + 0.012077653780579567, + -0.023736819624900818, + 0.024870440363883972, + -0.008193549700081348, + -0.0008884704438969493, + 0.0029295175336301327, + 0.015958312898874283, + -0.0025256644003093243, + -0.01814604550600052, + 0.04624844342470169, + 0.004143258091062307, + -0.0020486507564783096, + 0.002829710254445672, + -0.008826023899018764, + 0.002218597801402211, + 0.009430382400751114, + 0.012602884322404861, + -0.02664593607187271, + 0.005803109612315893, + 0.007938163354992867, + 0.01140069030225277, + 0.012010089121758938, + 0.004948675166815519, + -0.014466796070337296, + -0.017206493765115738, + -0.011586849577724934, + 0.012087633833289146, + 0.02421744540333748, + 0.008654465898871422, + 0.013462603092193604, + -0.011486157774925232, + 0.0013223396381363273, + -0.0015426799654960632, + 0.0049476586282253265, + 0.0057536703534424305, + 0.009076952002942562, + -0.009942924603819847, + 0.003484015353024006, + 0.016216998919844627, + 0.010168606415390968, + -0.007911857217550278, + 0.005912289954721928, + -0.009893395937979221, + -0.014212309382855892, + -0.0016373121179640293, + 0.006818356458097696, + -0.010053256526589394, + -0.003526497632265091, + 0.004898864310234785, + 0.0011108805192634463, + 0.008389515802264214, + -0.005319698713719845, + 0.00219100178219378, + 0.004143994301557541, + -0.011459628120064735, + 0.007979115471243858, + 0.002897492842748761, + 0.014921567402780056, + -0.0003892495296895504, + 0.0026357106398791075, + -0.007194054313004017, + -0.004283427726477385, + -0.006014323327690363, + -0.0031511427368968725, + -0.009706243872642517, + -0.008727838285267353, + -0.0023325015790760517, + 0.001276420778594911, + -0.03082381747663021, + 0.0004138750082347542, + 0.013067152351140976, + 0.0004004641086794436, + -0.018129564821720123, + 0.014504744671285152, + 0.02010558545589447, + -0.003841748461127281, + 0.0007281916332431138, + 0.015725642442703247, + -0.0012887879274785519, + 0.015040461905300617, + 0.015474680811166763, + -0.0008843917166814208, + 0.012628565542399883, + -0.01777050271630287, + 0.0001335765846306458, + -0.011746377684175968, + -0.021088559180498123, + -0.01589093916118145, + 0.008247735910117626, + 0.008396859280765057, + 0.0022468455135822296, + -0.00791319739073515, + 0.00011504302528919652, + -0.012142769992351532, + 0.0067022573202848434, + 0.0004793503903783858, + 0.027304023504257202, + -0.009914949536323547, + -0.02106110379099846, + -0.005173597950488329, + 0.005501722916960716, + -0.026575088500976562, + 0.010570080950856209, + -0.004778075497597456, + -0.003373175160959363, + 0.01087422575801611, + -0.002430189633741975, + -0.0009197587496601045, + -0.018950020894408226, + 0.008251236751675606, + 0.0016751923831179738, + -0.014339261688292027, + 0.0014146988978609443, + -0.003206981811672449, + -0.015994088724255562, + -0.016089048236608505, + -0.0155401062220335, + -0.005974882282316685, + -0.019542191177606583, + -0.00044368303497321904, + 0.002778073074296117, + -0.010100554674863815, + 0.0036608208902180195, + -0.008567585609853268, + -0.02237676829099655, + -0.0010281444992870092, + -0.002232773695141077, + 0.010502674616873264, + -0.000456184265203774, + 0.023598341271281242, + 0.0042241825722157955, + -0.015285964123904705, + 0.031455542892217636, + -6.835544627392665e-05, + 0.0090279970318079, + -0.010999144054949284, + 0.0085138576105237, + 0.0007090718136169016, + -0.0029183337464928627, + 0.004791056737303734, + -0.0006586794042959809, + -0.0026212516240775585, + 0.00667656771838665, + -0.0021288967691361904, + -0.0019967739935964346, + 0.005977231543511152, + -0.002603803528472781, + -0.0021240985952317715, + 0.01459683571010828, + 0.005403164774179459, + 0.0025057538878172636, + 0.007731019984930754, + 0.015363452956080437, + -5.332316140993498e-05, + 0.011033520102500916, + -0.003783856751397252, + -0.0031315742526203394, + -0.02271685190498829, + -0.0046455468982458115, + -0.011428712867200375, + 0.010326960124075413, + 0.0038590040057897568, + 0.0050865355879068375, + -0.007492550183087587, + 0.013271425850689411, + -0.009907145984470844, + -0.014608181081712246, + -0.002955448580905795, + -0.006124615203589201, + 0.014409296214580536, + 0.00883921142667532, + 0.025464216247200966, + -0.007426440250128508, + 0.011167078278958797, + -0.0048673199489712715, + -0.006418885663151741, + 0.0033382270485162735, + 0.0026318212039768696, + 0.00940571166574955, + 0.008107015863060951, + 0.004968383815139532, + -0.009102053008973598, + 0.004967597778886557, + -0.012353237718343735, + 0.00171157147269696, + -0.005286942236125469, + 0.007511022035032511, + -0.008661163039505482, + 0.012793664820492268, + 0.00738841388374567, + 0.020188305526971817, + -0.0144577631726861, + 0.004760548938065767, + -0.013418591581285, + -0.002757942071184516, + -0.008469297550618649, + 0.009790885262191296, + -0.0015881704166531563, + 0.007045703940093517, + 0.006830349564552307, + 0.007442587986588478, + 0.006158356089144945, + -0.014467994682490826, + -0.005382925737649202, + -0.006010386161506176, + 0.012275844812393188, + 0.0007569980225525796, + 0.002465961268171668, + -0.01093147974461317, + 0.010844029486179352, + 0.005856627132743597, + 0.0031308026518672705, + -0.007771816570311785, + 0.008686133660376072, + -0.002429238287732005, + -0.03169383853673935, + -0.0013656722148880363, + -0.00847315788269043, + -0.000791888334788382, + -0.001619809539988637, + 0.013722469098865986, + 0.019492989405989647, + -0.012933003716170788, + 0.004965861327946186, + -0.023649008944630623, + -0.003104296512901783, + 0.009156066924333572, + 0.005765043664723635, + -0.0007042495417408645, + -0.007479163818061352, + -0.01659592241048813, + -0.01258805487304926, + -0.011905016377568245, + -0.019975753501057625, + 0.0005771328578703105, + -0.012045323848724365, + -0.015743354335427284, + 0.00020508069428615272, + 0.007819273509085178, + 0.0030908139888197184, + 0.0005767922848463058, + -0.010959931649267673, + -0.005449959542602301, + -0.0050907745026052, + 0.000682880578096956, + 0.0017132670618593693, + 0.0028748931363224983, + -0.0008907034643925726, + -0.012634913437068462, + 0.013637135736644268, + 0.008216733112931252, + 0.010417845100164413, + -0.016661155968904495, + 0.007233615964651108, + -0.016756799072027206, + 0.03113333322107792, + -0.011812599375844002, + 0.008413216099143028, + 0.00574024673551321, + -0.009784807451069355, + -0.00177743227686733, + 0.004456781782209873, + 0.002683111699298024, + 0.015232089906930923, + -0.01303790882229805, + 0.0033595107961446047, + 0.003999048378318548, + -0.013065285049378872, + 0.005323979537934065, + 0.0007441378547810018, + -0.014129162766039371, + -0.0036559891887009144, + 0.005385632161051035, + -0.002773504937067628, + 0.013712451793253422, + 0.027732647955417633, + 0.03787126764655113, + -0.00835232064127922, + 0.007389536127448082, + -0.017761623486876488, + -0.0002296955353813246, + -0.014840975403785706, + -0.004533682484179735, + 0.001019626040942967, + -0.002993572736158967, + 0.011396592482924461, + 0.01244534645229578, + -0.0003265608102083206, + -0.00964108482003212, + 0.018413836136460304, + -0.006174793466925621, + -0.0057344441302120686, + 0.00035627803299576044, + 0.02213800512254238, + -0.036280032247304916, + -0.00692232558503747, + -0.009887846186757088, + -0.0013461122289299965, + -0.007516344543546438, + 0.010417935438454151, + -0.006887771654874086, + 0.005173271056264639, + 0.004342224914580584, + -0.010637020692229271, + 0.0245320126414299, + -0.010161266662180424, + -0.008115947246551514, + -0.01789155974984169, + -0.014598495326936245, + -0.013843505643308163, + 0.0004247499455232173, + -0.007298199459910393, + -0.019031314179301262, + -0.017865819856524467, + 0.001444071065634489, + 0.004014174919575453, + -0.0036100195720791817, + -0.006941529456526041, + 0.008004529401659966, + 0.0013828491792082787, + 0.0022730056662112474, + 0.009113910607993603, + -0.009199924767017365, + -0.004977500066161156, + 0.0008504567085765302, + 0.004935144446790218, + -0.005005966871976852, + -0.031110025942325592, + -0.008719215169548988, + 0.0012224201345816255, + -0.0012390563497319818, + -0.0246390700340271, + 0.04220448434352875, + -0.01056948583573103, + 0.0009295943309552968, + -0.011342482641339302, + -0.006158413365483284, + -0.012250246480107307, + -0.01875537633895874, + -0.013212827034294605, + -0.018279850482940674, + -0.004611072596162558, + -0.033403050154447556, + -0.0004374709096737206, + 0.01882139779627323, + 0.005514934659004211, + 0.0021590804681181908, + 0.009634722024202347, + -0.003710502292960882, + 0.009651612490415573, + 0.00554442685097456, + 0.003201512387022376, + -0.020808067172765732, + -0.013289675116539001, + -0.011076844297349453, + 0.0355151891708374, + 0.006388929206877947, + -0.010010463185608387, + -0.00530313840135932, + 0.004402791149914265, + -0.008290043100714684, + 0.026771405711770058, + 0.013604404404759407, + -0.006531294900923967, + -0.0170646570622921, + 0.003883455181494355, + -0.006380477454513311, + -0.005560262128710747, + -0.005134239327162504, + 0.008225517347455025, + -0.013817278668284416, + 0.005383767653256655, + -0.011194824241101742, + -0.01765306107699871, + -0.005429217126220465, + 0.04006923362612724, + -0.00019251389312557876, + -0.011122497729957104, + -0.0001777312863850966, + -0.008311082608997822, + -0.01412404328584671, + -0.004211727995425463, + -0.008500795811414719, + 0.009475575760006905, + 0.022363167256116867, + -0.002977658761665225, + -0.006047646049410105, + 0.013107158243656158, + 0.0065325601026415825, + 0.016145026311278343, + -0.016510585322976112, + 0.04656141996383667, + -0.005577022675424814, + 0.00919910054653883, + 0.007211204152554274, + 0.012298951856791973, + 0.023861195892095566, + -0.05368819087743759, + 0.00046699316590093076, + 0.0027273113373667, + 0.008259203284978867, + -0.012307712808251381, + -0.042193539440631866, + -0.014854776673018932, + -0.0015723658725619316, + -0.006030558608472347, + -0.014479318633675575, + 0.006010556593537331, + -0.007828823290765285, + 0.0010831911349669099, + -0.010530325584113598, + 0.002095982199534774, + -0.0047872173599898815, + 0.00471362192183733, + -0.014374581165611744, + 0.0016375323757529259, + 0.004660863894969225, + 0.006582734640687704, + -7.11260800017044e-05, + -0.019756557419896126, + -0.0036798559594899416, + -0.0001458844490116462, + -0.0036999410949647427, + -0.009133505634963512, + -0.01487777754664421, + -0.010606457479298115, + 0.00646215071901679, + 0.0018796146614477038, + 0.0023041553795337677, + -0.012498700059950352, + -0.0027634501457214355, + 0.003969782032072544, + -0.010701837949454784, + -0.0074175079353153706, + 0.008889985270798206, + -0.003336649853736162, + -0.015421926975250244, + -0.00771112646907568, + -0.009055225178599358, + -0.0021457206457853317, + 0.005668866913765669, + -0.0017537077656015754, + -0.005837250035256147, + 0.019558150321245193, + -0.004761511459946632, + 0.007025666069239378, + 0.0033419113606214523, + 0.003898069728165865, + -0.016109799966216087, + -0.011416854336857796, + 0.004056269768625498, + 0.015237986110150814, + 0.0040057641454041, + 0.005366581492125988, + -0.005585897713899612, + 0.0016173134790733457, + 0.0031433908734470606, + -0.006692851427942514, + -0.0009332924382761121, + 0.018639830872416496, + -0.018904322758316994, + -0.02235671691596508, + -0.019372889772057533, + -0.002562542213127017, + -0.0077780624851584435, + -0.0090788584202528, + -0.0031012743711471558, + -0.0027422693092375994, + 0.012763040140271187, + 0.004219364374876022, + -0.014026320539414883, + 0.01085622888058424, + -0.005849315784871578, + -0.00507343327626586, + 0.00021750082669313997, + 0.006628153380006552, + 0.004453498404473066, + 0.002960268408060074, + 0.003091994673013687, + 3.39334765158128e-05, + 0.010948867537081242, + -0.0026573410723358393, + -0.0004267857293598354, + -0.024568039923906326, + 0.004783795215189457, + -0.004962720908224583, + -0.01510708499699831, + 0.006923602428287268, + 0.0029023545794188976, + -0.0218571275472641, + 0.018078148365020752, + 0.0021839155815541744, + -0.010348241776227951, + -0.00869474746286869, + 0.02395002916455269, + 0.005426069721579552, + -0.0009091253741644323, + -0.007208712864667177, + -0.01225342694669962, + -0.018802931532263756, + -0.002690900582820177, + 0.0004319935105741024, + 0.0011998915579169989, + 0.001087126205675304, + -0.020647183060646057, + 0.00017058367666322738, + 0.009083866141736507, + -0.005986855365335941, + -0.013676290400326252, + 0.0016143524553626776, + 0.0004268789489287883, + 0.003807902103289962, + 0.0014132148353382945, + -0.010769129730761051, + 0.009909857995808125, + 0.006445510778576136, + 0.027559703215956688, + 0.010246138088405132, + -0.010776486247777939, + 0.015779972076416016, + -0.0019124752143397927, + 0.00843009538948536, + -0.005311034619808197, + 0.006555952597409487, + 0.015062141232192516, + -0.014076854102313519, + -0.006297260522842407, + -0.00139439117629081, + -0.016602128744125366, + 0.010723855346441269, + -0.0003088233934249729, + -0.006925743073225021, + -0.0017893562326207757, + -0.0010176228825002909, + -0.003955316264182329, + -0.006377636920660734, + -0.004252004902809858, + -0.01143034640699625, + -0.016621626913547516, + 0.0026192795485258102, + -0.0009935474954545498, + 0.015393608249723911, + 0.011177548207342625, + -0.08124402165412903, + 0.005012823268771172, + 0.00679137883707881, + -0.01580815017223358, + 0.0019833308178931475, + -0.04571450874209404, + 0.01794450730085373, + -7.333275425480679e-05, + -0.015729038044810295, + 0.008249283768236637, + -0.003077404573559761, + -0.0078020174987614155, + 0.008455225266516209, + -0.018779104575514793, + 0.02123774215579033, + -0.0020929723978042603, + 0.019414149224758148, + -0.05348715931177139, + 0.013795871287584305, + 0.007279970217496157, + -0.0002354266616748646, + 0.01951795071363449, + 0.0072309463284909725, + -0.009268575347959995, + 0.005457538180053234, + -0.015405463986098766, + -0.023228434845805168, + 0.03395450487732887, + -0.002303891582414508, + -0.0019860228057950735, + -0.008066241629421711, + -0.01059582456946373, + 0.0009968928061425686, + -0.025473566725850105, + -0.010860379785299301, + -0.00022055114095564932, + 0.013397558592259884, + -4.819244350073859e-05, + -0.022446902468800545, + 0.0018892273074015975, + -0.004592331126332283, + 0.0102090397849679, + 0.0027177217416465282, + -0.00010455876326886937, + 0.0009454662795178592, + 0.020564954727888107, + 0.011963062919676304, + -0.014818606898188591, + 0.011531046591699123, + -0.010122598148882389, + 0.01278042234480381, + -0.006700543686747551, + 0.008697655983269215, + 0.0017938866512849927, + -0.006014599930495024, + 0.003262963378801942, + 0.0029138943646103144, + 0.001459629274904728, + -0.0020580929704010487, + 0.01129673421382904, + 0.01360382791608572, + -0.004418862517923117, + 0.002272967714816332, + 0.013713076710700989, + 0.009615788236260414, + 0.007454128935933113, + 0.0006064733024686575, + -0.00795968621969223, + 0.009668579325079918, + -0.006430217996239662, + 0.031528834253549576, + 0.0016912524588406086, + 0.0014177818084135652, + 0.024107489734888077, + -0.04402128979563713, + 0.011175005696713924, + 0.007322608958929777, + 0.0017007032874971628, + 0.006691938731819391, + 0.014202502556145191, + -0.015054012648761272, + 0.013914098963141441, + -6.675874465145171e-05, + 0.0004539986839517951, + 0.002280560787767172, + -0.0182444266974926, + -0.00358511577360332, + 0.0001422164641553536, + 0.011190319433808327, + 0.031222613528370857, + 0.006163864862173796, + -0.0008212664979510009, + 0.011130905710160732, + -0.011869125999510288, + -0.01082063838839531, + -0.0066844564862549305, + 0.01599453203380108, + -0.02265329100191593, + -0.00259005487896502, + 0.0002479849208611995, + -0.0038875609170645475, + 0.0018895184621214867, + 0.005971373058855534, + -0.014018292538821697, + -0.01165454089641571, + 0.009397044777870178, + -0.011669398285448551, + 0.002856733277440071, + 0.0018898701528087258, + 0.0023081700783222914, + 0.015790848061442375, + 0.03312520310282707, + -0.02336185611784458, + -0.027063697576522827, + 0.00799457635730505, + 0.01331815030425787, + 0.007637414149940014, + -0.004724729340523481, + -0.0037457821890711784, + -0.018496474251151085, + -0.016974052414298058, + -0.0051897186785936356, + -0.0142852533608675, + 0.0009108562371693552, + -0.004410567227751017, + -0.00948504637926817, + -0.02010914869606495, + 0.018893297761678696, + -0.006440309341996908, + 0.010401956737041473, + -0.009974734857678413, + 0.0071517894975841045, + -0.009359154850244522, + -0.010480040684342384, + 0.008504421450197697, + 0.01706455834209919, + 0.009639612399041653, + 0.008815714158117771, + -0.013399242423474789, + 0.014914718456566334, + 0.0015107457293197513, + 0.0009898345451802015, + 0.0044012111611664295, + 0.02203207276761532, + 0.002395524876192212, + -0.006598132662475109, + 0.02017234079539776, + 0.030182864516973495, + -0.0003318005765322596, + 0.006965063512325287, + -0.012503543868660927, + 0.007748713716864586, + 0.009525088593363762, + -0.009525196626782417, + 0.00048022830742411315, + -0.0015453482046723366, + 0.008259749971330166, + 0.00016993026656564325, + -0.021093429997563362, + 0.0046725585125386715, + 0.0028504161164164543, + 5.5552678531967103e-05, + 0.0032930681481957436, + 0.0002869449381250888, + 0.007773506920784712, + 0.005084836855530739, + -0.007145474199205637, + -0.004901261068880558, + -0.011592482216656208, + -0.009508808143436909, + 0.0012430065544322133, + 0.004486449994146824, + -0.0022781917359679937, + -0.004730351734906435, + -0.01563415117561817, + 0.008536860346794128, + -0.015229820273816586, + 0.0002604372857604176, + -0.02783798985183239, + -0.014507990330457687, + -0.007261376362293959, + -0.0014615383697673678, + -0.009987302124500275, + -0.012994751334190369, + 0.014379586093127728, + 0.01622712053358555, + 0.011762460693717003, + -0.005831305403262377, + 0.0009124259231612086, + 0.011192272417247295, + 0.005255656782537699, + 0.0014138257829472423, + 0.0019624694250524044, + -0.0008960071136243641, + 0.011166389100253582, + 0.006100625731050968, + 0.005182923283427954, + 0.0008327622781507671, + 0.004188502673059702, + -0.0028944178484380245, + 0.007523374632000923, + -0.008684650994837284, + -0.0005714785074815154, + 0.012484202161431313, + -0.0029887405689805746, + -0.011309219524264336, + -0.0021514049731194973, + -0.0017486127326264977, + -0.027185361832380295, + -0.003177159233018756, + -0.01099690143018961, + 0.016672328114509583, + 0.01891857013106346, + 0.011365467682480812, + 0.016206275671720505, + 0.006543883588165045, + 0.009634421207010746, + -0.013370498083531857, + -0.03850129619240761, + -0.039885956794023514, + 0.009486755356192589, + -0.01716616190969944, + 0.0015362778212875128, + -0.03382537513971329, + -0.003554306458681822, + 0.0011702352203428745, + -0.011109265498816967, + 0.007567265070974827, + -0.028578203171491623, + -0.012376001104712486, + -0.010436910204589367, + -0.011246380396187305, + -0.001622788142412901, + -0.008207927457988262, + 0.013891450129449368, + 0.024792077019810677, + -0.0008141741272993386, + -0.0052626668475568295, + 0.01675868034362793, + 0.006752858869731426, + 0.007103662937879562, + 0.012277260422706604, + 0.013241534121334553, + 0.008604135364294052, + -0.014484097249805927, + 0.002719832118600607, + -0.019326556473970413, + -0.0005164071335457265, + 0.0018418841063976288, + 0.018310198560357094, + -0.0050910478457808495, + 5.6296255934285e-05, + 0.002836761064827442, + -0.0035448234993964434, + -0.01018758025020361, + 0.007235854398459196, + -0.01296462956815958, + -0.002805116819217801, + 0.024547358974814415, + 0.008500540629029274, + 0.01559463795274496, + -0.0109400674700737, + -0.019552022218704224, + 0.011901197023689747, + 0.006132264155894518, + -0.01067740935832262, + -0.006050108466297388, + 0.005583134945482016, + -0.0031229928135871887, + 0.003939815331250429, + 0.004313288256525993, + -0.013470170088112354, + 0.0010188922751694918, + -9.571114060236141e-05, + 0.0008636938291601837, + 0.017322203144431114, + -0.004389862064272165, + -0.005701310466974974, + 0.013381851837038994, + -0.000843144312966615, + -0.03245583921670914, + -0.001748640788719058, + 0.00434727082028985, + -0.009308653883635998, + -0.006505244877189398, + 0.0035798456519842148, + -0.003579899901524186, + -0.001699741231277585, + -0.0019481334602460265, + -0.03558040410280228, + -0.019585013389587402, + 0.061961956322193146, + -0.391346275806427, + -0.009805074892938137, + -0.005311299115419388, + 0.012429353781044483, + 0.012331315316259861, + -0.004620926920324564, + 2.0003497411380522e-05, + -0.019048277288675308, + 0.010522694326937199, + -0.0105934739112854, + 0.002600663574412465, + -0.022192856296896935, + -0.0019414074486121535, + 0.006453630514442921, + 0.006207812577486038, + -0.009539391845464706, + 0.011280296370387077, + 0.026041816920042038, + 0.0005640890449285507, + -0.008196543902158737, + -0.01222767774015665, + -0.0018536972347646952, + -0.03542224317789078, + 0.0021762531250715256, + -0.0013040732592344284, + 0.009074646979570389, + 0.005393420811742544, + -0.018802989274263382, + 0.005423860624432564, + 0.008448581211268902, + 0.005111283622682095, + 0.01761278323829174, + -0.007411164231598377, + 0.004014314152300358, + -0.00807331595569849, + -0.00016977368795778602, + 0.0035860114730894566, + 0.000997471623122692, + 0.013453520834445953, + -0.015577060170471668, + -0.009949559345841408, + -0.013155519030988216, + -0.004056420177221298, + 0.00041857975884340703, + 0.0037538488395512104, + -0.002666264306753874, + 0.002408260013908148, + 0.001550939166918397, + -0.005868556443601847, + 0.006004128139466047, + 0.03257961571216583, + -0.0025285209994763136, + -0.007446326781064272, + 0.018696360290050507, + 0.007084166631102562, + 0.009736963547766209, + 0.008853914216160774, + -0.004607365932315588, + -0.009098488837480545, + 0.02899875119328499, + 0.004041003994643688, + 0.008501378819346428, + -0.0027824847493320704, + -0.01952304318547249, + -0.0008873629849404097, + 0.0031902557238936424, + -0.010980194434523582, + 0.05463327839970589, + -0.0015933673130348325, + -0.008912159129977226, + 0.0015384673606604338, + 0.00016493548173457384, + 0.006026001181453466, + 0.006024287082254887, + 0.0049944231286644936, + 0.022744257003068924, + -0.007481846492737532, + -0.005539467558264732, + -0.001411316217854619, + -0.01630895957350731, + -0.00397465517744422, + -0.0002580920699983835, + 0.009600493125617504, + 0.004315943922847509, + -0.004729969426989555, + -0.0014966016169637442, + -0.004739911761134863, + -0.03225057199597359, + 0.014808064326643944, + -0.016183750703930855, + 0.0022592402528971434, + -0.006634825374931097, + 0.04389442130923271, + 0.007088263053447008, + 0.0035201956052333117, + -0.005437053740024567, + 0.0030314538162201643, + -0.005779487080872059, + 0.007033981382846832, + -0.008552156388759613, + 6.210475112311542e-05, + 0.00997183471918106, + 0.01009327918291092, + 0.009344486519694328, + 0.020117416977882385, + 0.014333177357912064, + 0.022169621661305428, + 0.009742495603859425, + 0.016345949843525887, + 0.025175614282488823, + -0.014347244054079056, + -0.030684923753142357, + -0.004880518652498722, + 0.0008245697827078402, + 0.006107604131102562, + 0.03796149045228958, + -0.006812362931668758, + 0.0013672466157004237, + 0.0052411979995667934, + -0.010486559011042118, + -0.014084002934396267, + 0.0013269769260659814, + 0.02333782985806465, + 0.005630056373775005, + -0.015475320629775524, + -0.007288471795618534, + -0.014546080492436886, + -0.019893571734428406, + 0.004420780576765537, + -0.01587238349020481, + 0.00854562595486641, + 0.01349538005888462, + -0.004058605059981346, + 0.002591107040643692, + 0.005686652846634388, + -0.016564343124628067, + 0.005345245357602835, + 0.004664267413318157, + 0.007140402216464281, + 0.018689392134547234, + 0.01205484475940466, + 0.007293334696441889, + 0.00151803286280483, + 0.017382606863975525, + -0.006223974749445915, + 0.08055943250656128, + -0.00931277871131897, + -0.004803857766091824, + 0.007587823551148176, + 0.00469136331230402, + 0.017749948427081108, + -0.00408091489225626, + 0.007432747632265091, + -0.0106255654245615, + -0.0002567607443779707, + -0.000943652936257422, + 0.004965555854141712, + -0.008471527136862278, + -0.016490435227751732, + -0.022204075008630753, + 0.009648142382502556, + 0.010455301031470299, + -0.002010100521147251, + 0.009660336188971996, + 0.0118410000577569, + 0.0073808166198432446, + -0.007207728922367096, + 0.0013362026074901223, + -0.005806175991892815, + -0.008535042405128479, + -0.020264243707060814, + -0.0037527631502598524, + 0.00940061453729868, + -0.0025431723333895206, + 0.009508715011179447, + -0.003506830194965005, + 0.024242430925369263, + -0.006463021505624056, + 0.01889999397099018, + 0.0065412139520049095, + -0.007613268680870533, + -0.007406186778098345, + -0.0102493055164814, + 0.009714311920106411, + -0.015011249110102654, + -0.007298525422811508, + -0.0056706322357058525, + 0.006371475290507078, + 0.0030945513863116503, + 0.004859598353505135, + -0.012238876894116402, + -0.0018746864516288042, + 0.008693506009876728, + 0.0016975649632513523, + -0.013221119530498981, + 0.0008176973205991089, + -0.007596543524414301, + 0.014806884340941906, + 0.008589393459260464, + 0.010684805922210217, + 0.00521582318469882, + 0.005083146039396524, + 0.0015447769546881318, + -0.007316752336919308, + 0.0012804586440324783, + -0.018634863197803497, + 0.01687624864280224, + 0.009340433403849602, + -0.0024761713575571775, + -0.023813357576727867, + 0.017089255154132843, + 0.017772771418094635, + -0.017941193655133247, + 0.0022174008190631866, + -0.05216469243168831, + -0.01000938005745411, + -0.0007198108942247927, + 0.012206350453197956, + 0.01672106236219406, + -0.008083554916083813, + 0.004513642750680447, + -0.0038471436128020287, + -0.01419095043092966, + -0.030041690915822983, + -0.0023168588522821665, + -0.011456672102212906, + -0.01284588873386383, + 0.0012082676403224468, + -0.005281256977468729, + -0.005653455853462219, + -0.012241284362971783, + 0.005104308016598225, + -0.0015846758615225554, + 0.006091437302529812, + -0.0047143204137682915, + 0.019220365211367607, + 0.029576124623417854, + 0.007392203435301781, + 0.03329552337527275, + 0.00883022602647543, + 0.002010100521147251, + 0.0016402873443439603, + 0.0028525423258543015, + -0.015619158744812012, + -0.016635673120617867, + 0.014124209061264992, + 0.007808182388544083, + 0.0052836621180176735, + -0.0024062087759375572, + -0.017492685467004776, + 0.05487386882305145, + 0.008131856098771095, + 0.013545886613428593, + 0.0054628886282444, + 7.83937139203772e-05, + -0.012642649933695793, + 0.04186294972896576, + 0.0007171402685344219, + 0.004603598732501268, + 0.023158960044384003, + 0.0028471711557358503, + -0.0001080037109204568, + -0.003929751459509134, + 0.016398100182414055, + 0.003731384640559554, + 0.004880330990999937, + 0.005389032885432243, + -0.006354536395519972, + 0.006976320408284664, + 0.0011892237234860659, + 0.04386892542243004, + -0.009726548567414284, + -0.008131123147904873, + -0.0019081521313637495, + -0.020149992778897285, + -0.004924544133245945, + 0.0075403363443911076, + 0.0029561654664576054, + -0.01581154391169548, + -0.0011635377304628491, + 0.014718259684741497, + -0.004458762239664793, + 0.0013361121527850628, + -0.014836433343589306, + -0.013788288459181786, + -0.0010171777103096247, + -0.00219675712287426, + -0.006132147740572691, + -0.011647970415651798, + -0.028060825541615486, + 0.0007246031891554594, + 0.0064996215514838696, + 0.0036334882024675608, + -0.008727749809622765, + 0.007237001787871122, + -0.010513709858059883, + 0.08129532635211945, + -0.07380371540784836, + 4.181689291726798e-05, + 0.0034747079480439425, + -0.004776198882609606, + -0.020519480109214783, + -0.00816772598773241, + 0.0866633728146553, + 0.010538368485867977, + -0.010299637913703918, + -0.019582610577344894, + -0.01448143646121025, + 0.015577763319015503, + -0.0038457117043435574, + -0.012225898914039135, + 0.002205882454290986, + 0.0017789785051718354, + -0.008514869958162308, + -0.0013982440577819943, + 0.03467588499188423, + -0.001241324353031814, + -0.00434611551463604, + -0.013406936079263687, + 0.010942265391349792, + -0.008134744130074978, + 0.008808713406324387, + 0.00416139978915453, + -0.0082100760191679, + -0.0088196424767375, + -0.005768732167780399, + 0.009196811355650425, + 0.013557160273194313, + -0.0013962542871013284, + -0.0001782975741662085, + 0.014355240389704704, + -0.006318679079413414, + 0.0032505712006241083, + -0.00012002143921563402, + -0.013149661011993885, + 0.004215471912175417, + 0.02221585623919964, + -0.047138314694166183, + -0.005934156943112612, + 0.011042904108762741, + -3.978401218773797e-05, + 0.01234731450676918, + 0.04179169237613678, + -0.051277197897434235, + 0.002920712111517787, + -0.004204432480037212, + -0.0019878901075571775, + -0.034412235021591187, + -0.036930665373802185, + 0.008111410774290562, + -0.01854327879846096, + 0.00023521117691416293, + -0.002137524075806141, + -0.00010400709288660437, + 0.00021915689285378903, + 0.02733893133699894, + -0.027963800355792046, + -0.006682508625090122, + -0.0053445142693817616, + -0.006891102530062199, + 0.013180517591536045, + -0.040177807211875916, + -0.010368644259870052, + -0.003175282385200262, + 0.0009088094811886549, + 0.023546066135168076, + 0.0006072320975363255, + -3.183037551934831e-05, + -0.001286746934056282, + -0.024338146671652794, + 0.001819882309064269, + -0.01050186064094305, + 0.02023828588426113, + 0.0052159191109240055, + 0.0007981698727235198, + -0.021545570343732834, + 0.047468800097703934, + -0.0037565124221146107, + 0.029365483671426773, + -0.004871409852057695, + -0.015805723145604134, + 0.019572272896766663, + 0.016428522765636444, + -0.009632394649088383, + -0.006924137473106384, + 0.008439872413873672, + -0.0018390428740531206, + -0.007060118485242128, + 0.013700720854103565, + 0.012860634364187717, + -0.006382695399224758, + 0.003249997505918145, + 0.014557748101651669, + 0.008409813977777958, + 0.018285809084773064, + 0.003087640507146716, + -0.0007569827721454203, + 0.0004483954980969429, + -0.013425517827272415, + -0.0037768417969346046, + 0.015038230456411839, + -0.011726914905011654, + 0.015194562263786793, + 0.0027724620886147022, + 0.00021272758021950722, + -0.008296028710901737, + 0.017712555825710297, + -0.006565441843122244, + 0.005661229137331247, + 0.008453947491943836, + 0.009654118679463863, + -0.0003356184752192348, + 0.008431276306509972, + 0.0006984274950809777, + -0.0009192433208227158, + -0.0005066212033852935, + 0.018939580768346786, + 0.012229407206177711, + 0.013702762313187122, + 0.0005521022249013186, + 0.008144302293658257, + 0.007045137695968151, + -0.007294682320207357, + -0.0069524566642940044, + 0.020070597529411316, + 0.014114509336650372, + 0.036749422550201416, + 0.018772287294268608, + -0.00315588666126132, + 0.0025401669554412365, + -0.004412664566189051, + -0.0033525386825203896, + 0.013294712640345097, + 0.0173562690615654, + -0.018883002921938896, + -0.004627042915672064, + 0.011750506237149239, + -0.009559298865497112, + -0.007814067415893078, + 0.004275457467883825, + 0.009202226996421814, + 0.0071158744394779205, + 0.0009557862067595124, + -0.0007411367841996253, + 0.006143872160464525, + -0.0031233620829880238, + 0.022723402827978134, + -0.01581420749425888, + 0.0029603533912450075, + -0.003435197053477168, + -0.0006718975491821766, + 0.016543997451663017, + 0.001506512868218124, + -0.012100033462047577, + 0.021434154361486435, + -0.03126939758658409, + -0.009267574176192284, + 0.010063329711556435, + -0.0021780510433018208, + -0.0014034889172762632, + -0.00039809918962419033, + -0.0025988046545535326, + -0.006816447246819735, + -0.0034343458246439695, + -0.004837471060454845, + 0.005166773218661547, + 0.006678635720163584, + -0.01567450352013111, + -0.009278867393732071, + 0.009677167981863022, + -0.012109316885471344, + -0.005293181166052818, + -0.008057205937802792, + -0.0008766647079028189, + -0.009879674762487411, + 0.012406275607645512, + -0.016082430258393288, + -0.019760483875870705, + -0.0025484906509518623, + -0.0465022474527359, + 0.018012603744864464, + 0.03806453198194504, + -0.009475593455135822, + 0.009390754625201225, + 0.011141275055706501, + -0.009722769260406494, + 0.002959007862955332, + 0.010562167502939701, + -0.001776783843524754, + -0.010983034037053585, + -0.009886338375508785, + 0.005976871121674776, + -0.014164786785840988, + 0.05784440040588379, + -0.0010216300142928958, + 0.001960764406248927, + 0.004007786512374878, + -0.006225747987627983, + 0.002013331977650523, + 0.018230576068162918, + 0.01828070916235447, + 0.007076951675117016, + -0.0005832350580021739, + 0.014474143274128437, + 0.020988579839468002, + 0.015613974072039127, + -0.006025542970746756, + -0.008552055805921555, + -0.008496141992509365, + -0.0022141188383102417, + 0.004728558007627726, + -0.004667443688958883, + -0.0027785422280430794, + 0.03006996214389801, + 0.010452432557940483, + -0.0006535578286275268, + 0.009709055535495281, + -0.007681211922317743, + -0.04808282107114792, + 0.005234651267528534, + 0.0032528203446418047, + -0.002027723239734769, + -0.024690799415111542, + -0.002995676826685667, + 0.017908256500959396, + 0.01757880300283432, + 0.005711089354008436, + 0.016863785684108734, + 0.025903692469000816, + -0.001188825466670096, + -0.017736591398715973, + -0.008126086555421352, + -0.0030198104213923216, + -0.004186807665973902, + 0.04234866052865982, + 0.004800889175385237, + 0.0039027812890708447, + 0.013473696075379848, + -0.0011623887112364173, + -0.04909510165452957, + -0.003916272893548012, + -0.01115148700773716, + 0.026883330196142197, + -0.002339116530492902, + -0.001712673925794661, + -0.014416336081922054, + -0.01684761419892311, + -0.027060959488153458, + 0.015222175046801567, + 0.007857460528612137, + -0.007187149487435818, + -0.01019990723580122, + -0.016386717557907104, + -0.007381181698292494, + 0.016216525807976723, + 0.01276975218206644, + 0.009746141731739044, + 0.03500202298164368, + -0.006051605101674795, + -0.011447183787822723, + 0.0063157472759485245, + -0.008156771771609783, + 0.005907254759222269, + 0.01649254560470581, + 0.012720565311610699, + 0.01606343686580658, + -0.0038000387139618397, + -0.024939948692917824, + -0.0012791764456778765, + 0.00031864127959124744, + 0.01618282124400139, + 0.0007393029518425465, + 0.01325744017958641, + 0.0237618088722229, + -0.0011612044181674719, + 0.019034862518310547, + -0.016215460374951363, + -0.009468873962759972, + 0.11875709146261215, + 0.01054765097796917, + -0.01003891322761774, + -0.02748452126979828, + -0.006145751103758812, + -0.01728716865181923, + -0.00742358760908246, + -0.0015411974163725972, + -0.00909373164176941, + -0.014338033273816109, + 0.005035079549998045, + 0.011222406290471554, + 0.012032369151711464, + -0.0070396591909229755, + 0.01955215446650982, + 0.0011583516607061028, + -0.006511148530989885, + 0.0014913445338606834, + 0.01586044952273369, + 0.005534712690860033, + 0.0007996975327841938, + -0.012576243840157986, + -0.010486588813364506, + 0.001769321970641613, + -0.0067698038183152676, + 0.00314587471075356, + -0.003810620866715908, + 0.005753005854785442, + -0.007995719090104103, + -0.017012348398566246, + -0.0077966731041669846, + -0.002359014470130205, + -0.0022199442610144615, + 0.0014648610958829522, + 0.0004872482968494296, + -0.006468322593718767, + -0.0028248773887753487, + -0.004419039003551006, + -0.027204323559999466, + 0.015481846407055855, + 0.00040715234354138374, + -0.016602952033281326, + -0.01086906436830759, + 0.017050569877028465, + 0.0010343312751501799, + -0.022052476182579994, + -0.025084203109145164, + -0.001854294678196311, + -0.006116362288594246, + -0.0005115819512866437, + 0.010493222624063492, + -0.007503744214773178, + 0.010547731071710587, + 0.02440129965543747, + 0.010459557175636292, + 0.0026419328060001135, + -0.005128274206072092, + -0.008534683845937252, + -0.00939145591109991, + -0.007279886864125729, + -0.01256482396274805, + -0.005305242724716663, + -0.014414525590837002, + -0.007100818678736687, + 0.007206492591649294, + 0.019737208262085915, + -0.004667956382036209, + 8.455602801404893e-05, + -0.02620527893304825, + -0.0029191512148827314, + 0.01151609979569912, + 0.014515196904540062, + -0.0020635442342609167, + 0.006678088568150997, + 0.00546529795974493, + 0.016768300905823708, + -0.004098103381693363, + 0.0023520179092884064, + -0.007760494481772184, + -0.03490118682384491, + 0.023180553689599037, + -0.011061839759349823, + -0.008698321878910065, + -0.018466239795088768, + -0.00015529204392805696, + 0.003692756872624159, + 0.003530405228957534, + -0.0066236830316483974, + -0.008329632692039013, + 0.0067450073547661304, + 0.010942695662379265, + 0.020268788561224937, + -0.005459314677864313, + -0.008931765332818031, + 0.0005225440254434943, + 0.004498493857681751, + 0.0009210467105731368, + 0.027500256896018982, + -0.0014303496573120356, + -0.004855922423303127, + -0.004668144974857569, + 0.028728505596518517, + -0.003981706686317921, + 0.018868323415517807, + -0.012711173854768276, + -0.016222279518842697, + -0.03726532310247421, + -0.008217716589570045, + -0.02566402219235897, + 0.01071115117520094, + 0.01572711579501629, + -0.01024052407592535, + -0.007181716151535511, + -0.003817975288257003, + 0.0037965027149766684, + 0.014546244405210018, + -0.013269120827317238, + 0.0068143680691719055, + -0.00717886071652174, + -0.020954908803105354, + 0.008721119724214077, + -0.0035153497010469437, + -0.0021962581668049097, + -0.006211618427187204, + -0.00395483523607254, + -0.011316787451505661, + -0.014411898329854012, + -0.0009935428388416767, + -0.001497143879532814, + 0.0027935246471315622, + 0.0027558468282222748, + 0.02221866138279438, + 0.01159585639834404, + -0.007424049079418182, + -0.0058436584658920765, + -0.006211073603481054, + -0.02137589640915394, + -0.05521176755428314, + 0.008355957455933094, + 0.0060626850463449955, + 0.0055539109744131565, + 0.002002725377678871, + 0.007012359332293272, + -0.0004677542601712048, + -0.02505587227642536, + -0.015758225694298744, + 0.03406543657183647, + -0.008352266624569893, + 0.0009378105169162154, + -0.017591753974556923, + -0.0005268650711514056, + 0.01606512814760208, + -0.002840787637978792, + 0.0192448478192091, + -0.0018997467122972012, + -0.00522752245888114, + 0.08755452185869217, + 0.001646530581638217, + -0.008278497494757175, + -0.006325374357402325, + -0.012967442162334919, + -0.0005320935742929578, + -0.001623952412046492, + -0.021913722157478333, + -0.011566118337213993, + 0.008745773695409298, + 0.005327918566763401, + -0.013290412724018097, + 0.0070809233002364635, + 0.00986743625253439, + -0.016130773350596428, + 0.00013330303772818297, + -0.0045030792243778706, + -0.007593359332531691, + -0.006559408735483885, + -0.0015332349576056004, + 0.002779784146696329, + 0.00805285107344389, + -0.007922294549643993, + -0.007059289142489433, + 0.004996871575713158, + -0.01814279332756996, + -0.0027297683991491795, + -0.006592227146029472, + -0.0029800981283187866, + -0.005984614137560129, + 0.012816731818020344, + 0.007031584158539772, + -0.012081647291779518, + -0.004916845355182886, + 0.009324494749307632, + 0.0049008638598024845, + 0.017295438796281815, + -0.00609701918438077, + -0.00952343549579382, + -0.0015796417137607932, + 0.008631282486021519, + 0.008583804592490196, + 0.00729275681078434, + -0.012325125746428967, + -0.002044806256890297, + 0.003932288847863674, + 0.004455618094652891, + 0.00879975501447916, + 0.008971760049462318, + 0.017665347084403038, + 0.01063703652471304, + 0.0009215489844791591, + 0.010953104123473167, + -0.008298725821077824, + 0.009064868092536926, + -0.00010806829232024029, + 0.014048601500689983, + -0.05171621963381767, + -0.003429262200370431, + 0.009039686992764473, + 0.0055026100017130375, + 0.0262248944491148, + -0.016652951017022133, + 0.011748344637453556, + 0.0029150941409170628, + -0.0041564577259123325, + 0.01634795404970646, + -0.015593291260302067, + -0.008417215198278427, + 0.011619124561548233, + -0.019851472228765488, + 0.019569404423236847, + 0.005698860622942448, + -0.0059709707275033, + -0.010528486222028732, + 0.0069342018105089664, + -0.011635196395218372, + 0.0010618561645969748, + 0.016429949551820755, + -0.004905564710497856, + 0.009909536689519882, + -0.0030773545149713755, + -0.0012581757036969066, + 0.01591341942548752, + 0.004519576206803322, + -0.0005955418455414474, + 0.010038078762590885, + -0.004547916818410158, + 0.004220615141093731, + 0.01641269586980343, + -0.026295822113752365, + -0.0196444783359766, + -0.017227577045559883, + -0.019112419337034225, + 0.003801405429840088, + 0.0003066651406697929, + -0.00834211241453886, + -0.0025065846275538206, + 0.019563399255275726, + 0.010318041779100895, + -0.005070357583463192, + -0.01962945982813835, + -0.02684956043958664, + -0.005081812385469675, + 0.001302263350225985, + 0.002720228862017393, + 0.030505871400237083, + -0.0042420243844389915, + 0.0008878543740138412, + 0.012894279323518276, + -0.008892481215298176, + -0.006922495551407337, + -0.005066287703812122, + 0.006075812969356775, + 0.007073195185512304, + 0.010492583736777306, + 0.015410047024488449, + -0.004145191051065922, + -0.004933708347380161, + 0.007419962901622057, + -0.023131851106882095, + -0.003670359728857875, + -0.0005205825436860323, + 0.003091412829235196, + 0.0025936730671674013, + 0.013997988775372505, + 0.011932501569390297, + 0.002746280748397112, + 0.0017118846299126744, + -0.003931002225726843, + 0.016953127458691597, + 0.010601327754557133, + 0.007038602605462074, + 0.0017610606737434864, + -0.002499060705304146, + -0.007324632257223129, + 0.026294369250535965, + -0.007014214526861906, + 0.004200909286737442, + 0.008038937114179134, + 0.0020944008138030767, + 0.002174889435991645, + -0.0041710990481078625, + -0.004447652958333492, + -0.008097928017377853, + 0.010987476445734501, + -0.0017475977074354887, + -0.012918340042233467, + -0.0045036450028419495, + -0.0009665307588875294, + 0.0041493382304906845, + 0.004489189479500055, + 0.005614425055682659, + -0.01275758445262909, + -0.0038893313612788916, + 0.005602917168289423, + 0.014276240020990372, + -0.014043274335563183, + -0.00023045921989250928, + 0.03120853193104267, + -0.023269446566700935, + -0.008621674962341785, + -0.003326470497995615, + 0.009626183658838272, + 0.023952946066856384, + 0.001678978675045073, + -0.009258531965315342, + -0.01662672497332096, + -0.008904985152184963, + 0.002518090419471264, + -0.0032520308159291744, + -0.011419568210840225, + -0.0025726472958922386, + -0.001091450685635209, + -0.034886717796325684, + -0.0017231082310900092, + 0.007657189853489399, + -0.0011932073393836617, + -0.038536373525857925, + -0.00564488023519516, + 0.009710077196359634, + 0.0038819294422864914, + 0.010498046875, + 0.00734301982447505, + 0.004897090140730143, + -0.00297190947458148, + -0.0034815948456525803, + -0.01452905684709549, + -0.0020622904412448406, + -0.000748797960113734, + 0.0020412870217114687, + -0.006989396642893553, + 0.015482843853533268, + -0.006261326838284731, + 0.011006543412804604, + 0.01431942731142044, + 0.012136241421103477, + -0.0001762489991961047, + 0.012017329223453999, + -0.0047692046500742435, + 0.00798571016639471, + 0.005640823859721422, + -0.005483716260641813, + -0.0028374106623232365, + -0.006257105618715286, + -0.00214157672598958, + 0.00503478804603219, + -0.006073854397982359, + -0.013560045510530472, + -0.019829822704195976, + -0.002079620026051998, + 0.006949129048734903, + 0.0018922693561762571, + 0.004846880212426186, + -0.010114391334354877, + 0.014624081552028656, + 0.0033133490942418575, + 0.013511312194168568, + -0.015317474491894245, + -0.004461026284843683, + -0.01453099213540554, + 0.011034064926207066, + 0.004594774451106787, + -0.0054330225102603436, + 0.0009402291034348309, + 0.003758926410228014, + 0.010534348897635937, + 0.003576850751414895, + -0.0144644258543849, + -0.0018989227246493101, + 0.0024889023043215275, + -0.0028083587531000376, + 0.003423305694013834, + -0.0027783478144556284, + -0.002589867217466235, + -0.01243642345070839, + 0.03707638010382652, + -0.0009797777747735381, + 0.011317243799567223, + 0.01052258163690567, + -0.0013146995333954692, + 0.0016060967463999987, + 0.005579854361712933, + 0.001456332509405911, + 0.005958536174148321, + 0.024423986673355103, + 0.010794546455144882, + 0.005361174698919058, + 0.00212551630102098, + -0.009724353440105915, + 0.01925892010331154, + -0.0018380621913820505, + -0.0009263745159842074, + 0.009465048089623451, + 0.0015091885579749942, + -0.002474983222782612, + 0.0020405566319823265, + -0.015288221649825573, + 0.012759782373905182, + -0.009127382189035416, + 0.007728633005172014, + 0.02202901430428028, + 0.01032406184822321, + -0.0008085455629043281, + 0.006012458819895983, + -0.0029838222544640303, + 0.001114903949201107, + -0.0002905406872741878, + 0.006604847498238087, + 0.019267503172159195, + 0.01783714070916176, + -0.002680897479876876, + -0.0013681569835171103, + -0.006574008148163557, + 0.018125196918845177, + -0.004946145694702864, + -0.01959017664194107, + 0.0012089518131688237, + -0.022127626463770866, + -0.013014611788094044, + 0.001996094360947609, + -0.006844706367701292, + -0.00023938732920214534, + -0.011128944344818592, + 0.0019326277542859316, + 0.01318553276360035, + -0.013558464124798775, + -0.028161214664578438, + -0.022945843636989594, + 0.012669107876718044, + -0.008984588086605072, + -0.013149763457477093, + 0.003111287485808134, + 0.004902158863842487, + 0.0008966362220235169, + -0.007441603112965822, + 0.017292100936174393, + -0.0033453963696956635, + 0.01267517264932394, + 0.017653226852416992, + 0.005457945168018341, + 0.001391052850522101, + 0.004071148112416267, + 0.014735250733792782, + 0.03252119570970535, + 0.005164068192243576, + 0.003661937778815627, + -0.0020733403507620096, + -0.01700940914452076, + -0.006963676773011684, + 0.007922736927866936, + -0.00508118374273181, + 0.01531885378062725, + -0.0036319864448159933, + 0.000541812798473984, + -0.015132222324609756, + -0.004396294243633747, + -0.0187655221670866, + -0.04387442767620087, + 0.008865145966410637, + -0.03281682729721069, + 0.010977618396282196, + 0.010361949913203716, + -0.010266739875078201, + 0.012842865660786629, + 0.010595842264592648, + -0.005584474187344313, + -0.0028425026684999466, + 0.0032324129715561867, + 0.0020136937964707613, + -0.009142953902482986, + -0.008169902488589287, + 0.01647336594760418, + 0.016833264380693436, + 0.00626386608928442, + 0.012560410425066948, + -0.011521675623953342, + -0.001403096946887672, + 0.016551047563552856, + 0.00876608956605196, + 0.0010410700924694538, + 0.008336570113897324, + 0.027417948469519615, + 0.004794261883944273, + 0.013013675808906555, + -0.001174045610241592, + 0.0007961374358274043, + -0.004045180510729551, + -0.007487817667424679, + 0.012666005641222, + 0.012361429631710052, + 0.010316749103367329, + 0.0004801460599992424, + -0.0037372400984168053, + -0.0019024161156266928, + 0.004317778628319502, + 0.0035864110104739666, + 0.002463540295138955, + -0.026907479390501976, + 0.004865566268563271, + 0.018384290859103203, + -0.007801632862538099, + -0.014358173124492168, + -0.010242528282105923, + -0.02149350382387638, + -0.02253013849258423, + 0.001938431989401579, + -0.0095552708953619, + -0.013084214180707932, + -0.012209773063659668, + -0.0026984247379004955, + -0.009917192161083221, + -0.004689977969974279, + 0.00597993703559041, + 0.012152415700256824, + -0.006578425411134958, + 0.00835496000945568, + 7.821033068466932e-05, + 0.006525642238557339, + 0.023403840139508247, + -0.007402850780636072, + 0.0034347916953265667, + -0.0032129946630448103, + -0.03318372368812561, + -0.003497983328998089, + 0.0275427233427763, + -0.0023356545716524124, + 0.019536789506673813, + 0.022125329822301865, + -0.0014545819722115993, + 0.0196485985070467, + 0.007431895472109318, + 0.04617717117071152, + 0.003183026798069477, + -0.0001240794372279197, + -0.013208074495196342, + -0.012754533439874649, + 0.010950661264359951, + -0.0009023158927448094, + -0.009995883330702782, + 0.009186591021716595, + -0.007056322414427996, + 0.0015098800649866462, + -0.011203287169337273, + 0.007018927950412035, + -0.016360701993107796, + -0.006408556364476681, + -0.005116238258779049, + -0.011964497156441212, + 0.0015083462931215763, + -0.008042804896831512, + 0.00804817397147417, + -0.008163321763277054, + -0.017742721363902092, + -0.019944537431001663, + 0.010662700980901718, + 0.014877211302518845, + 0.014720057137310505, + -0.009514421224594116, + -0.008938147686421871, + -0.002383305225521326, + -0.00967949628829956, + -0.006536663975566626, + 0.006364248692989349, + -0.002645410830155015, + 0.023829249665141106, + 0.012898381799459457, + -0.007361024618148804, + 0.008649168536067009, + 0.009376617148518562, + -0.004015657585114241, + 0.0055791293270885944, + 0.020899521186947823, + -0.023024125024676323, + 0.02528107352554798, + -0.002208806574344635, + 0.0037166972178965807, + -0.006802384275943041, + -0.006168688647449017, + 0.019424794241786003, + -0.060162968933582306, + -0.02281174622476101, + -0.02398216910660267, + 0.0018332996405661106, + 0.018422754481434822, + -0.0026235454715788364, + -0.0048584467731416225, + -0.015030420385301113, + 0.0023875695187598467, + 0.0146514056250453, + -0.005562593694776297, + -0.005805102176964283, + 0.028119396418333054, + -0.011522932909429073, + -0.002499168971553445, + 0.019667593762278557, + 0.005364013835787773, + 0.00554875610396266, + -0.004574395250529051, + 0.002609319519251585, + -0.003626369871199131, + 0.0029871449805796146, + -0.003476461861282587, + -0.011225476861000061, + 0.002887590089812875, + -0.006387121044099331, + -0.007281909231096506, + -0.011309565976262093, + 0.0035794961731880903, + -0.00807796511799097, + -0.015346957370638847, + 0.0022028556559234858, + -0.016080576926469803, + 0.018590543419122696, + -0.009886877611279488, + 0.006467617116868496, + -0.0017932435730472207, + 0.010027856566011906, + -0.021072138100862503, + 0.02127055637538433, + 0.006205061916261911, + -0.007439880631864071, + -0.0163869746029377, + 0.007007664069533348, + -0.07922595739364624, + -0.02788044698536396, + 0.005419603083282709, + 0.03386342152953148, + -0.004641999024897814, + -0.0039206743240356445, + -0.0012071700766682625, + -0.03564850240945816, + -0.010574089363217354, + 0.017245758324861526, + 0.007548045367002487, + -0.00984274223446846, + 0.007426795549690723, + 0.007688955403864384, + -0.007261746563017368, + -0.005260912235826254, + 0.0035509637091308832, + 0.005713252816349268, + -0.0029251608066260815, + 0.012324389070272446, + -0.0263815987855196, + -0.005066198762506247, + -0.00515421899035573, + -0.00032754961284808815, + 0.01111095491796732, + 0.016258783638477325, + -0.0038673256058245897, + 0.015378079377114773, + -0.010226603597402573, + -0.0069462452083826065, + -0.002115961629897356, + 0.01678987592458725, + -0.0015926017658784986, + 0.007000999059528112, + 0.0016695110825821757, + 0.0179409421980381, + 0.0005683738854713738, + -0.0028900448232889175, + -0.015612230636179447, + 0.0014259446179494262, + -0.0016478077741339803, + 0.0061606112867593765, + 0.0034755151718854904, + 0.004238127265125513, + -0.012538495473563671, + -0.004356002435088158, + -0.0012013213708996773, + 0.001364274648949504, + 0.015490523539483547, + -0.0038782490883022547, + 0.003340272232890129, + -0.006592144258320332, + -0.008534576743841171, + 0.003979245666414499, + -0.020625660195946693, + 0.008593186736106873, + 0.008636590093374252, + -0.005485687404870987, + 0.00790587067604065, + 0.004048253409564495, + -0.006531120277941227, + -0.003897344460710883, + -0.00498405285179615, + 0.015377508476376534, + 0.0016695013036951423, + 0.007361170835793018, + 0.013836637139320374, + -0.010259389877319336, + -0.0047974358312785625, + -0.001138202496804297, + -0.0056905597448349, + -0.011857145465910435, + -0.015879733487963676, + -0.008301971480250359, + -0.016409555450081825, + -0.017470408231019974, + -0.010062686167657375, + 0.0013008462265133858, + -0.005303734913468361, + -0.023209000006318092, + -0.003067594487220049, + 0.002258922206237912, + 0.011500023305416107, + 0.008368420414626598, + -0.00179075647611171, + 0.010551744140684605, + 0.0024265639949589968, + 0.01922677271068096, + -0.00039887946331873536, + 0.007761041168123484, + -0.019719403237104416, + 0.0050078462809324265, + 0.0014843168901279569, + 0.015451988205313683, + 0.004213083069771528, + -0.00911447498947382, + 0.03507094830274582, + 0.018271533772349358, + 0.007505957502871752, + -0.016487712040543556, + 0.0033922831062227488, + 0.005789589136838913, + -0.006577116437256336, + -0.004448184743523598, + 0.0044700936414301395, + -0.01825708895921707, + 0.034874629229307175, + 0.005891117732971907, + -0.06195620819926262, + -0.006472081411629915, + 0.005112671758979559, + -0.0016610316233709455, + -0.003357426030561328, + 0.0072632101364433765, + -0.006647227797657251, + -0.012382269836962223, + -0.001497423043474555, + -0.008515103720128536, + -0.016057796776294708, + 0.0053186905570328236, + 0.0018818326061591506, + 0.013092250563204288, + -0.00409690011292696, + 0.00935771968215704, + -0.005553907249122858, + -0.0029800839256495237, + 0.019609834998846054, + 0.015916481614112854, + -0.0023287772201001644, + 0.015194394625723362, + -0.03449421003460884, + 0.013935690745711327, + 0.004089877009391785, + 0.005322540178894997, + 0.02320192940533161, + -0.0069959876127541065, + 0.010370815172791481, + 0.0027514633256942034, + -0.0017691432731226087, + -0.02245207503437996, + 0.0028986085671931505, + 0.0007137122447602451, + 0.014847351238131523, + 0.006305910646915436, + 0.0030098671559244394, + 0.00031528438557870686, + 0.013657396659255028, + 0.02907228283584118, + 0.0026079448871314526, + 0.01035858690738678, + 0.0022104675881564617, + -0.002768238540738821, + 0.0009848810732364655, + 0.019584322348237038, + 0.007346856873482466, + -0.021103356033563614, + 0.002177639165893197, + -0.015655530616641045, + 0.0018482072046026587, + 0.003584992839023471, + 0.003943829331547022, + 0.01722690463066101, + -0.003469107672572136, + -0.004341100342571735, + -0.003164398716762662, + 0.022719882428646088, + -0.011052196845412254, + 0.005934086162596941, + -0.01381641998887062, + 0.019735975190997124, + 0.03166123852133751, + -0.012361296452581882, + -0.0657259076833725, + -0.020637642592191696, + -0.0144069604575634, + 0.0038636079989373684, + 0.0029545302968472242, + -0.016413990408182144, + -0.00582096865400672, + 0.02416626550257206, + 0.010460251942276955, + 0.008920969441533089, + -0.01824953407049179, + -0.00343599496409297, + 0.005061381962150335, + -0.0028775560203939676, + -0.010187787003815174, + 0.008179591968655586, + 0.004913522396236658, + -0.00927993468940258, + 0.010684316977858543, + -0.011790146119892597, + 0.00997245218604803, + -0.0018959726439788938, + 0.012626116164028645, + -0.004742871969938278, + -0.01163154374808073, + -0.026583513244986534, + 0.011911923997104168, + 0.0014231035020202398, + -0.00281972112134099, + -0.01839648373425007, + -0.012476025149226189, + 0.027643606066703796, + 0.012030738405883312, + -0.025415875017642975, + -0.001429753378033638, + 0.001197646139189601, + -0.002398040844127536, + -0.00530348950996995, + -0.004499646369367838, + -0.01976742222905159, + -0.012912314385175705, + -0.014712395146489143, + 0.008343123830854893, + 0.02034182660281658, + 0.002616897923871875, + 0.0015432004583999515, + -0.003267887746915221, + -0.001140942913480103, + -0.004952054005116224, + -0.0037483409978449345, + 0.04249156266450882, + -0.007525091990828514, + -0.010147330351173878, + 0.01088855229318142, + 0.013447481207549572, + 0.006853216327726841, + 0.00464027002453804, + 0.004488260950893164, + -0.013376287184655666, + -0.003530818736180663, + 0.009166043251752853, + -0.00861982349306345, + 0.00043307553278282285, + -0.002710925182327628, + -0.019515907391905785, + -0.0064010960049927235, + -0.011096678674221039, + -0.017314651980996132, + 0.007288741413503885, + -0.013647892512381077, + -0.005354726687073708, + -0.004262795206159353, + 0.007126353681087494, + -0.003714007558301091, + -0.009916716255247593, + 0.006799359805881977, + 0.010689862072467804, + 0.0006710236775688827, + 0.019833408296108246, + 0.0042415279895067215, + -0.037837184965610504, + 0.01109075453132391, + 0.004448003601282835, + -0.00013194892380852252, + 0.002669510431587696, + -0.010541283525526524, + -0.011674895882606506, + 0.010805860161781311, + -0.009471300058066845, + -0.011376600712537766, + -0.009376393631100655, + -0.001986261224374175, + 0.007262710947543383, + 0.009168902412056923, + 0.0020013221073895693, + -0.0007376068388111889, + 0.006864301394671202, + 0.0004386409418657422, + -0.006847064010798931, + -0.015706578269600868, + -0.004035645630210638, + -0.004543020855635405, + 0.010142700746655464, + 0.0037561769131571054, + 0.026716075837612152, + 0.0003796402597799897, + 0.004714024253189564, + -0.005196633283048868, + 0.0038792528212070465, + -0.05187200382351875, + -0.005104644689708948, + 0.020166892558336258, + -0.007743534632027149, + -0.02975725382566452, + -0.03640946373343468, + 0.01677963323891163, + -0.03135530278086662, + 0.0013304955791682005, + -0.008282637223601341, + 0.014279515482485294, + 0.0021158093586564064, + 0.011999614536762238, + -0.017264438793063164, + -0.0017726566875353456, + 0.010676167905330658, + 0.005884714424610138, + 0.013384230434894562, + -0.0012105393689125776, + -0.004347457550466061, + -0.00231130956672132, + 0.001117232721298933, + 0.012782099656760693, + 0.01398566085845232, + -0.040582627058029175, + -0.02080669440329075, + -0.0053053973242640495, + 0.002612998243421316, + 0.016347268596291542, + -0.039837438613176346, + 0.011399800889194012, + 0.014724153093993664, + -0.007089031860232353, + 0.02656799741089344, + -0.02546560764312744, + -0.018734710291028023, + 0.0007240134291350842, + -0.004965181928128004, + 0.01908096857368946, + 0.01797887682914734, + -0.020701510831713676, + -0.007285646628588438, + 8.985931344795972e-05, + 0.005762308370321989, + -0.001478393911384046, + -0.009578519500792027, + -0.010313746519386768, + -0.019702263176441193, + -0.013756593689322472, + -0.0028065356891602278, + 0.013810430653393269, + -0.029696263372898102, + -0.01942763850092888, + 0.01105937547981739, + 0.006720618810504675, + -0.015079755336046219, + -0.008852972649037838, + -0.004303340800106525, + 0.016543351113796234, + -0.005754257086664438, + -0.006127804517745972, + -0.026734357699751854, + 0.0017168432241305709, + -0.001718433341011405, + 0.012795966118574142, + -0.0031854715198278427, + -0.000557648774702102, + 0.0007116738706827164, + 0.003170877927914262, + -0.011315016075968742, + 0.023988952860236168, + 0.026189561933279037, + -0.0027429608162492514, + 0.015148050151765347, + -0.00766671122983098, + 0.003756619291380048, + -0.016823122277855873, + -0.009613719768822193, + 0.007587088271975517, + -0.002959110541269183, + 0.01399114727973938, + 0.010622652247548103, + -0.016022587195038795, + 0.009324519895017147, + -0.007391254883259535, + 0.002719693351536989, + 0.007309063337743282, + -0.0034797743428498507, + 0.0562906451523304, + 0.005160065833479166, + -0.008043410256505013, + -0.009310608729720116, + 0.00667001586407423, + 0.0003646060358732939, + 0.0050510806031525135, + 0.015019181184470654, + -0.009972631931304932, + -0.03570060431957245, + 0.012864458374679089, + 0.04095259681344032, + -0.0010812242981046438, + 0.0031923081260174513, + 0.011122796684503555, + 0.1283637136220932, + -0.028704997152090073, + -0.028308704495429993, + 0.016754386946558952, + -0.003272195113822818, + -0.01082681491971016, + -0.016240917146205902, + 0.023332083597779274, + 0.012286140583455563, + -0.0011067771119996905, + -0.052307408303022385, + 0.0033665166702121496, + -0.0028980423230677843, + -0.01084961462765932, + 0.015117427334189415, + -0.011977862566709518, + -0.008029605261981487, + 0.019260937348008156, + 0.0058240569196641445, + -0.02464125119149685, + 0.011143708601593971, + -0.0008706917287781835, + 0.03279055282473564, + 0.005418133921921253, + 0.011395628564059734, + -0.0032616383396089077, + -0.01144370436668396, + 0.022464372217655182, + 0.022429581731557846, + -0.0068843853659927845, + 0.010980126447975636, + -0.009394318796694279, + -0.012188713066279888, + -0.002959088422358036, + -0.003477970138192177, + 0.007695713080465794, + 0.006878781598061323, + -0.0035800831392407417, + -0.00160782050807029, + -0.04455837607383728, + -0.0030478299595415592, + 0.0018085574265569448, + 0.018341004848480225, + 0.011983311735093594, + -0.017588984221220016, + 0.019988862797617912, + 0.003924007527530193, + -0.003517263336107135, + -0.0031142879743129015, + -0.004395765718072653, + -0.004816590342670679, + -0.010017644613981247, + -0.009662714786827564, + 0.0005214190459810197, + 0.005220230668783188, + -0.00879519060254097, + -0.002467290498316288, + -0.017420481890439987, + 0.009756222367286682, + -0.0009167435928247869, + -0.0030262174550443888, + 0.018001871183514595, + 0.010495787486433983, + -0.016474055126309395, + -0.02433532476425171, + -0.00844273529946804, + 0.011152602732181549, + 0.0004018684849143028, + -0.005059216637164354, + -0.022433528676629066, + -0.005472222343087196, + -0.014673872850835323, + -0.006082497537136078, + -0.05370490625500679, + 0.00012074871483491734, + 0.005943971686065197, + 0.006143524777144194, + -0.002632595133036375, + -0.011522267945110798, + 0.009023986756801605, + -0.009773830883204937, + 0.0034727875608950853, + -0.0032375087030231953, + -0.0002949668269138783, + -0.014867693185806274, + 0.007757530082017183, + 0.00022718089167028666, + -0.008648760616779327, + 0.012547854334115982, + 0.005969881545752287, + 0.005935147870332003, + -0.008470745757222176, + 0.010666294023394585, + -0.008054745383560658, + -0.07249145954847336, + 0.006319514010101557, + 0.01115881372243166, + 0.005281304474920034, + 0.0038096869830042124, + -0.0005909273168072104, + 0.008159256540238857, + -0.00941863190382719, + -0.005065915174782276, + 0.0027173745911568403, + 0.023775923997163773, + -0.009003423154354095, + 0.0016939141787588596, + 0.004332554526627064, + -0.0014161558356136084, + -0.005688633304089308, + -0.005693497601896524, + 0.008247049525380135, + -0.010859109461307526, + -0.004202027805149555, + -0.017888342961668968, + -0.006899502128362656, + -0.002054117154330015, + 0.0028496449813246727, + -0.01088014431297779, + 0.0027994494885206223, + -0.004721255507320166, + 0.0015802356647327542, + 0.005869870539754629, + 0.0032634863164275885, + -0.0024718870408833027, + -0.01040685549378395, + 0.0051142075099051, + 0.0008331027929671109, + -0.015952469781041145, + -0.007711038924753666, + -0.0026961127296090126, + -0.002666323911398649, + -0.018021445721387863, + 0.001310491468757391, + -0.01279436144977808, + 0.016683727502822876, + -0.005520686041563749, + 0.0026028896681964397, + 0.010971864685416222, + 0.007421482354402542, + 0.014096439816057682, + 0.0045592160895466805, + -0.00935429148375988, + -0.0024861337151378393, + 0.007644015830010176, + 0.008923516608774662, + -0.0009817846585065126, + 0.007495856378227472, + 0.013618332333862782, + -0.012770401313900948, + -0.016564171761274338, + 0.0006286321440711617, + -0.011687454767525196, + 0.004778402391821146, + 0.0048357658088207245, + 0.009606592357158661, + -0.00771834421902895, + 0.021416066214442253, + -0.003217598656192422, + -0.00910928100347519, + 0.021316714584827423, + -0.004881054628640413, + -0.003644288517534733, + 0.014925387687981129, + -0.00337241287343204, + 0.015323291532695293, + 0.0045631928369402885, + 0.04746655747294426, + 0.005071279592812061, + 0.01602376438677311, + -0.007695366162806749, + -0.024546010419726372, + -0.02267001010477543, + -0.006185268517583609, + 0.013161041773855686, + 0.0055510071106255054, + -0.019409365952014923, + 0.0007900785421952605, + 0.01734340563416481, + 0.002297768136486411, + 0.007977853529155254, + 0.015147528611123562, + 0.04195673391222954, + 0.026089347898960114, + -0.004524372052401304, + -0.004695751704275608, + 0.01936998777091503, + 0.0011578191770240664, + -0.001898327493108809, + -0.00428495928645134, + 0.003575903596356511, + -0.01425930205732584, + 0.006460873875766993, + 0.027069946750998497, + 0.0018709177384153008, + 0.012739486061036587, + 0.011064897291362286, + -0.004048272967338562, + 0.0012056715786457062, + 0.01718083955347538, + 0.01582416519522667, + 0.0037609937135130167, + 0.0031954003497958183, + -0.04218340665102005, + -0.004232326988130808, + -0.008471866138279438, + 0.00024051929358392954, + 0.0030364994890987873, + 0.00848176795989275, + 0.015397652983665466, + -0.02385835163295269, + -0.012756610289216042, + 0.010674454271793365, + -0.018864139914512634, + 0.01411425694823265, + -0.008529291488230228, + -0.008695864118635654, + 0.0072135915979743 + ], + "residual_norm": 1.0, + "scale": 1.0, + "source": "vector", + "vector": [ + 0.015880627557635307, + 0.007046127691864967, + 0.0013465671800076962, + 0.005041386932134628, + 0.02226206287741661, + -0.03188471496105194, + 0.011977038346230984, + -0.005371276754885912, + -0.009403771720826626, + 0.007001750636845827, + -0.0035079645458608866, + -0.0004332263197284192, + 0.00015040746075101197, + -0.0038134714122861624, + 0.007593883667141199, + 0.004461341071873903, + -0.012466785497963428, + -0.003887397702783346, + -0.017726214602589607, + -0.0038662131410092115, + 0.009036082774400711, + -0.013547400012612343, + -0.0017773157451301813, + 0.007876063697040081, + -0.00820839498192072, + -0.013232378289103508, + 0.0706501230597496, + -0.0026612714864313602, + -0.0032117816153913736, + 0.009558257646858692, + -0.006054622586816549, + 0.034101493656635284, + -0.01553944032639265, + -0.00242172135040164, + -0.0010014931904152036, + 0.020563503727316856, + -0.013038025237619877, + 0.011491728946566582, + 0.008625413291156292, + -0.002619414124637842, + 0.0015809019096195698, + 0.00886357482522726, + -0.016972260549664497, + -0.016267769038677216, + -0.0003095550637226552, + 0.0006070618401281536, + 0.014121501706540585, + 0.001161340856924653, + 0.010062841698527336, + -0.0035681920126080513, + 0.00036889768671244383, + 0.04304323345422745, + 0.0010444625513628125, + 0.007914152927696705, + -0.03558133915066719, + -0.006777269300073385, + -0.005931540858000517, + -0.0036965031176805496, + 0.019593114033341408, + 0.0004728423373308033, + 0.0018595029832795262, + 0.008042062632739544, + -0.008087166585028172, + 0.025951966643333435, + -0.01102533657103777, + -0.012033926323056221, + 0.0023180758580565453, + -0.004991540219634771, + -0.02545207366347313, + -0.00551013695076108, + -0.008163576945662498, + -0.0017198218265548348, + 0.012849276885390282, + 0.0075452495366334915, + -0.0114652244374156, + -0.026584388688206673, + 0.0036935738753527403, + 2.6837804398383014e-05, + 0.02191607467830181, + 0.014861424453556538, + -0.03544330596923828, + -0.009113513864576817, + 0.015097800642251968, + 0.011198888532817364, + -0.01137014664709568, + -0.010315951891243458, + 0.011094598099589348, + -0.009198491461575031, + 0.007368661463260651, + -0.006951133720576763, + 0.007362895179539919, + 0.0024814296048134565, + 0.008187852799892426, + -0.015134725719690323, + 0.0191095769405365, + 0.05116945132613182, + -0.01460309512913227, + 0.0004681138671003282, + -0.04003944993019104, + -0.0036175509449094534, + 0.0036998153664171696, + 0.00966844242066145, + 0.026285221800208092, + 0.02147473767399788, + -0.007572024129331112, + 0.00030798689112998545, + 0.006759602576494217, + 0.0045525189489126205, + 0.01800401508808136, + -0.012697947211563587, + 0.004295684397220612, + -0.001574820838868618, + 4.7700483264634386e-05, + -0.007474397774785757, + -0.008746693842113018, + -0.010344480164349079, + -0.007039531134068966, + 0.00452010752633214, + -0.004345029126852751, + -0.004518871661275625, + -0.020282477140426636, + -0.010734237730503082, + -0.03374483808875084, + -0.0035934457555413246, + -0.005413037724792957, + 0.026600228622555733, + -0.00025796855334192514, + 0.0015869757626205683, + 0.009215034544467926, + -0.011161740869283676, + -0.01835857331752777, + 0.021724678575992584, + -0.0006761600379832089, + -0.0032259183935821056, + -0.029308516532182693, + -0.01759343221783638, + -0.0022582444362342358, + 0.01027002278715372, + 0.0018158105667680502, + 0.004836220294237137, + -0.009558729827404022, + -0.0013029996771365404, + 0.02432762272655964, + -0.0055900816805660725, + -0.009249303489923477, + 0.003371360246092081, + 0.0076238857582211494, + -0.013619043864309788, + 0.0016267378814518452, + -0.022067274898290634, + -0.004422996658831835, + -0.000495361047796905, + 0.006567629985511303, + 0.01777169480919838, + -0.005706555675715208, + -0.02637113817036152, + 0.004002649337053299, + 0.009184552356600761, + 0.00020787680114153773, + 1.7900321836350486e-05, + 0.008350342512130737, + -0.006296580191701651, + -0.01644238829612732, + -0.012876381166279316, + 0.004735175054520369, + 0.0054525164887309074, + 0.015655390918254852, + 0.026501426473259926, + 0.017827264964580536, + -0.0046499646268785, + -0.00975937582552433, + 0.012630256824195385, + 0.033685918897390366, + 0.003179003717377782, + -0.0028340788558125496, + 0.0041765132918953896, + 0.025822805240750313, + -0.0061741904355585575, + -0.006101808976382017, + -0.009427830576896667, + -0.011523929424583912, + -0.004993511363863945, + 0.00696840975433588, + 0.006300745997577906, + -0.0026493777986615896, + 0.00041050196159631014, + -0.0012578938622027636, + -0.0027208582032471895, + 0.0009908509673550725, + 0.007451236248016357, + -0.01126272976398468, + -0.014759747311472893, + -0.028083276003599167, + -0.0110991345718503, + 0.00338281923905015, + 0.0012706900015473366, + 0.04787881299853325, + 0.0012564013013616204, + 0.016548022627830505, + -0.0005360560608096421, + -0.04909517988562584, + 0.0003398599219508469, + 0.02159520983695984, + -0.012670700438320637, + -0.017541371285915375, + 0.01781177520751953, + 0.0014344853116199374, + -0.0505162850022316, + -0.02983294054865837, + 0.00713336281478405, + -0.008305134251713753, + -0.0005171220982447267, + 0.006403539329767227, + -0.002339144004508853, + -0.008463719859719276, + -0.005268306937068701, + -0.0007395289721898735, + 0.002938243094831705, + -0.005385435651987791, + 0.012095891870558262, + 0.012004047632217407, + -0.0033011746127158403, + -0.014994803816080093, + 0.0038412550929933786, + -0.03436257690191269, + 0.052594516426324844, + 0.017027713358402252, + 0.010169140994548798, + -0.006896637845784426, + -0.012538999319076538, + -0.003179677063599229, + -0.005070356652140617, + 0.017117995768785477, + 0.06879720836877823, + -0.018875015899538994, + 0.0018706682603806257, + 0.006558103021234274, + 0.007020398508757353, + 0.0018705680267885327, + -0.01875179074704647, + -0.014911510981619358, + 0.02361033856868744, + -0.010574701242148876, + 0.08054423332214355, + 0.002186280908063054, + -0.012732830829918385, + 0.025618551298975945, + 0.011963596567511559, + -0.026996629312634468, + -0.004279542714357376, + 0.00811893679201603, + 0.046142566949129105, + 0.0060517629608511925, + -0.013145120814442635, + 0.00797489657998085, + -0.00974055752158165, + -0.014752806164324284, + 0.010102391242980957, + -0.002376775024458766, + 0.005735170561820269, + 0.014921044930815697, + 0.007026126142591238, + -0.02451450563967228, + -0.0049586170352995396, + -0.020680677145719528, + -0.0008935906225815415, + 0.00631133234128356, + 0.022785335779190063, + -0.002318905433639884, + 0.014848736114799976, + -0.0020534133072942495, + -0.016828102990984917, + -0.0006037437124177814, + 0.016318175941705704, + 0.01633392833173275, + -0.004519061651080847, + -0.010319085791707039, + 0.0032859144266694784, + -0.010809017345309258, + -0.008616593666374683, + 0.015299228951334953, + -0.005991959013044834, + -0.008920162916183472, + 0.008757133968174458, + -0.00633823499083519, + -0.010564484633505344, + -0.0006444058381021023, + -0.00949031300842762, + -0.0034466106444597244, + -0.003266548039391637, + 0.01036116760224104, + 0.024674104526638985, + 0.023621534928679466, + 0.0035328890662640333, + 0.0012001062277704477, + -0.004114561714231968, + 0.01622568443417549, + 0.013629471883177757, + -0.017664320766925812, + 0.009775443933904171, + -0.006973872426897287, + -0.014502391219139099, + 0.0055548963136971, + 0.001303791650570929, + 0.010885046795010567, + -0.0035517506767064333, + -0.0018942252499982715, + 0.019572565332055092, + 0.00774830486625433, + 0.016367312520742416, + 0.003961826208978891, + -0.0009925566846504807, + -0.013326233252882957, + -0.003917884547263384, + 9.308859443990514e-05, + -0.012298885732889175, + -0.0031132772564888, + -0.010063361376523972, + -0.011770571582019329, + -0.01197068765759468, + -0.005308746360242367, + -0.007518484722822905, + 0.006922300439327955, + -0.0118957394734025, + -0.007771818432956934, + -0.0055368514731526375, + -0.005785096436738968, + 0.012121121399104595, + -0.011108728125691414, + -0.01553519070148468, + 0.005813846364617348, + 0.002999326214194298, + 0.006323539651930332, + -0.018886180594563484, + 0.0036980274599045515, + -0.00934627652168274, + 0.024157090112566948, + 0.00394961005076766, + 0.00041737357969395816, + -0.015788497403264046, + 1.108939522964647e-05, + -0.015228874050080776, + 0.004401928745210171, + 0.04269970953464508, + 0.01364114135503769, + 0.0024971815291792154, + -0.02824135310947895, + 0.0031398185528814793, + 0.0033663539215922356, + -0.0019770809449255466, + -0.0004886656533926725, + -0.004729340318590403, + -0.010554692707955837, + -0.004705187398940325, + -0.01934266835451126, + -0.005485374014824629, + -0.009105462580919266, + 0.01711905188858509, + -0.007189224008470774, + 0.005438867025077343, + -0.0067782592959702015, + 0.0346427857875824, + 0.004983891732990742, + -0.007754660677164793, + -0.0087708355858922, + 0.00494858343154192, + -0.008720913901925087, + 0.0022366121411323547, + -0.054517053067684174, + -0.005443524103611708, + 0.012440170161426067, + -0.007625422440469265, + 0.0005169917130842805, + -0.050635699182748795, + -0.0021972516551613808, + 0.015755565837025642, + -0.004385816864669323, + 0.006642966531217098, + -0.011284127831459045, + 0.0038749545346945524, + 0.0017867679707705975, + 0.003435488324612379, + -0.028690649196505547, + -0.007021977566182613, + 0.006031387951225042, + -0.005619063973426819, + 0.004153725225478411, + 0.003029740648344159, + 0.015350663103163242, + -0.006549219135195017, + 0.012358603999018669, + -0.001303158001974225, + -0.007065161596983671, + 0.024818312376737595, + 0.029864972457289696, + 0.015386234037578106, + -0.0019866758957505226, + -0.027501920238137245, + -0.006325901951640844, + -0.005696170497685671, + -0.000250909011811018, + 0.005161323118954897, + -0.002290666103363037, + 0.00714935502037406, + -0.009140009060502052, + -0.004972638096660376, + -0.004478454124182463, + 0.0010029751574620605, + -0.011749383062124252, + -0.00941255409270525, + -0.01180553063750267, + 0.016786418855190277, + 0.004095125012099743, + 0.018294086679816246, + 0.007624452002346516, + -0.004223186522722244, + 0.004739977419376373, + 0.001874388544820249, + 0.0409981869161129, + 0.014098292216658592, + 0.01288799662142992, + 0.019459139555692673, + -0.016751278191804886, + 0.017716174945235252, + 0.010903315618634224, + 0.0002263614587718621, + -0.007405977696180344, + 0.011588587425649166, + -0.019256267696619034, + 0.0026088152080774307, + 0.026044286787509918, + -0.0034512244164943695, + -0.004151794593781233, + 0.010989280417561531, + -0.006744483020156622, + -0.009844881482422352, + 0.011653024703264236, + -0.005862488877028227, + -0.009897586889564991, + 0.001325933262705803, + 0.007945628836750984, + 0.005499581806361675, + -0.002773750340566039, + 0.02127741649746895, + 0.001962332520633936, + -0.024862170219421387, + -0.007280838210135698, + 0.03362472355365753, + -0.012709399685263634, + -0.03260965272784233, + 0.00042629666859284043, + 0.0007771772798150778, + -0.012591177597641945, + -0.006875037215650082, + -0.01843556948006153, + -0.003082488663494587, + 0.0018871088977903128, + 0.0041535645723342896, + 0.00438337679952383, + 0.0010180127574130893, + -0.006497780792415142, + 0.001378999906592071, + 0.017603954300284386, + 0.0037497624289244413, + -0.006488247774541378, + -0.01147423405200243, + 0.007844868116080761, + 0.006211614701896906, + -0.005234678741544485, + -0.03574905917048454, + 0.008436156436800957, + 0.003510907059535384, + 0.008667788468301296, + -0.004876305349171162, + 0.01768256537616253, + 0.009767957963049412, + -0.0013065513921901584, + -0.00011031029862351716, + 0.00025215884670615196, + -0.004182951059192419, + 0.0007366929785348475, + 0.007290246430784464, + -0.006165798753499985, + -0.017829252406954765, + 0.009960221126675606, + -0.006946898065507412, + 0.02517705038189888, + -0.011535757221281528, + 0.029706796631217003, + -0.00027521129231899977, + 0.00140833156183362, + 0.013807362876832485, + -0.01939162239432335, + -0.0067568435333669186, + 0.006612664088606834, + 0.00482727587223053, + -0.0011800284264609218, + -0.002703940263018012, + 0.0008301388588733971, + -0.014485500752925873, + -0.021166199818253517, + 0.0007373317494057119, + 0.00992465578019619, + 0.01793689653277397, + -0.009314707480370998, + 0.004017391242086887, + -0.006055157631635666, + -0.004072013311088085, + -0.014808835461735725, + 0.010860045440495014, + -0.017232226207852364, + -0.0038885425310581923, + -0.0072439550422132015, + 0.003933530300855637, + -0.0010373055702075362, + 0.014064028859138489, + 5.506071465788409e-05, + -0.0047845919616520405, + 0.0034529385156929493, + -0.008849289268255234, + 0.0010774490656331182, + -0.006144396029412746, + -0.006363149732351303, + -0.033551305532455444, + 0.00231839157640934, + 0.0055251638405025005, + -0.016565412282943726, + -0.004214686341583729, + 0.005028110463172197, + 0.0208484698086977, + -0.0030961697921156883, + 0.00443548196926713, + -0.0015337351942434907, + 0.0014473311603069305, + -0.0019064174266532063, + 0.0007706358446739614, + 0.010370992124080658, + -0.019471032544970512, + 0.003348750527948141, + -0.009451569058001041, + 0.002743178280070424, + 0.015875499695539474, + 0.0025982402730733156, + 0.008050396107137203, + -0.010697750374674797, + 0.010631280951201916, + 0.02590920403599739, + 0.01527620479464531, + -0.008573455736041069, + -0.003384728217497468, + -0.0020532377529889345, + 0.015354307368397713, + -0.07810995727777481, + 0.013752195984125137, + -0.02179715223610401, + 0.003546719439327717, + -0.00019025908841285855, + 0.00861685536801815, + 0.008022372610867023, + 3.8915233744774014e-05, + 0.015744607895612717, + 0.008389587514102459, + -0.009635869413614273, + -0.011265121400356293, + 0.005098540335893631, + 0.007309361826628447, + -0.003583610290661454, + -0.01411075983196497, + 0.005507662892341614, + 0.007577930111438036, + -0.00023355567827820778, + -0.009380040690302849, + -0.014244945719838142, + 0.0076566655188798904, + 0.0044554900377988815, + -0.0007113947067409754, + 0.0028770165517926216, + 0.014054722152650356, + 0.02035311609506607, + 0.020570984110236168, + 0.00027862819842994213, + 0.013602386228740215, + -0.007164840120822191, + -0.022095192223787308, + -0.010018042288720608, + -0.008366400375962257, + 0.03296675533056259, + -0.004350954666733742, + 0.0005651022074744105, + -0.0025892890989780426, + 0.011435509659349918, + 0.02232097089290619, + -0.02194163016974926, + 0.0022107369732111692, + 0.015637574717402458, + 0.009627830237150192, + 0.010323233902454376, + 0.00024495701654814184, + -0.016347505152225494, + 0.016729053109884262, + 0.00393998809158802, + -0.013291235081851482, + 0.012251756154000759, + -0.005860255565494299, + -0.014683619141578674, + 0.006594029255211353, + 0.005720661953091621, + 0.005197202321141958, + 0.006611823569983244, + 0.024281738325953484, + -0.001370826386846602, + 0.0026329185348004103, + -0.016055148094892502, + 0.003661755006760359, + -0.0028694344218820333, + 0.02643478475511074, + -0.009864448569715023, + 0.00029365569935180247, + 0.014638485386967659, + -0.007939551025629044, + -0.018148774281144142, + -0.0038824831135571003, + -0.00654930155724287, + 0.007863277569413185, + -0.0062744212336838245, + 0.007907072082161903, + -0.010794810019433498, + -0.0001417544117430225, + -0.0018782527185976505, + -0.00023415246687363833, + -0.009602885693311691, + 0.026599779725074768, + -0.001858290983363986, + -0.003213256597518921, + -0.0073832059279084206, + -0.012406774796545506, + -0.0036179069429636, + 0.00572856143116951, + 0.009060840122401714, + 0.0027874871157109737, + 0.007970490492880344, + -0.0020357395987957716, + -0.005117363762110472, + 0.025895729660987854, + -0.03603493422269821, + -0.005465388298034668, + 0.006333087105304003, + -0.01483782846480608, + -0.00999570731073618, + 0.01704540103673935, + 0.006330819800496101, + -0.015390608459711075, + 0.009602086618542671, + -0.011645814403891563, + -0.010790248401463032, + -0.006180014461278915, + -0.0067066410556435585, + 0.029753588140010834, + -0.02681131847202778, + -0.02466416358947754, + -0.007309389766305685, + 0.008403649553656578, + 0.016898367553949356, + 0.016853749752044678, + 0.0029722147155553102, + 0.04799400269985199, + -0.0159769244492054, + 0.020562781020998955, + -0.0030281946528702974, + -0.009392383508384228, + -0.014175308868288994, + 0.0017650709487497807, + -0.007106146775186062, + -0.0019915862940251827, + -0.009646585211157799, + 0.002305875765159726, + -0.0038518619257956743, + 0.01922914758324623, + 0.00917256809771061, + 0.008250949904322624, + 0.0058709969744086266, + 0.0004125468840356916, + 0.010660373605787754, + 0.006976958364248276, + -0.005409738048911095, + -0.0003108402597717941, + 0.008066914044320583, + -0.005895680747926235, + -0.017633702605962753, + -0.01782388798892498, + 0.02204299159348011, + -0.017923910170793533, + 0.022319305688142776, + -0.007066069636493921, + 0.003312287852168083, + 0.011332476511597633, + 0.011996990069746971, + -0.011891770176589489, + -0.01434660516679287, + -0.010267963632941246, + -0.001166586996987462, + 0.00748026417568326, + 0.0011652946704998612, + -0.0014421063242480159, + -0.025714626535773277, + -0.01799287647008896, + -0.008288762532174587, + 0.00967532116919756, + 0.0036703769583255053, + 0.020785745233297348, + 0.011368646286427975, + -0.0072553385980427265, + -0.001954811392351985, + -0.007532323244959116, + 0.011052524670958519, + 0.0085065346211195, + -0.03401831537485123, + -0.007236079778522253, + 0.000966415274888277, + -0.008276167325675488, + -0.003755677491426468, + 0.01224503293633461, + -0.00484697287902236, + -0.006562691181898117, + 0.001033487031236291, + -0.021557241678237915, + 0.021638771519064903, + 0.0019656321965157986, + -0.010335859842598438, + 0.002989354310557246, + 0.00374276889488101, + -0.00421206234022975, + 0.0007182353874668479, + -0.003975053783506155, + 0.005006938707083464, + 0.0078103081323206425, + -0.05073762312531471, + 0.006758007220923901, + -0.003401651978492737, + -0.00354378717020154, + -0.007083203177899122, + 0.013777473010122776, + -0.0303290206938982, + -0.00865792017430067, + 0.025559445843100548, + -0.010826858691871166, + -0.0027388606686145067, + 0.02556738816201687, + -0.024983743205666542, + 0.010266739875078201, + 0.005188055336475372, + -0.033203136175870895, + 0.014626089483499527, + -0.001438518287613988, + 0.0009114986751228571, + 0.011807930655777454, + 0.010726830922067165, + -0.005448949057608843, + -0.0016959186177700758, + 0.0029783244244754314, + 0.005677809938788414, + 0.013212515041232109, + -0.01633247174322605, + 0.008472251705825329, + 0.00406485004350543, + -0.009029584005475044, + 0.0006993477582000196, + -0.0021979613229632378, + 0.007384899538010359, + -0.010617716237902641, + 0.005359036847949028, + -0.00742261903360486, + 0.006449802312999964, + 0.00455252081155777, + -0.028231963515281677, + -0.0019460187759250402, + -0.006251865532249212, + 0.027151891961693764, + 0.004273163620382547, + 0.023915383964776993, + -0.013837048783898354, + 0.014993144199252129, + 0.0018191507551819086, + -0.010365714319050312, + -0.005957536865025759, + -0.005876112729310989, + -0.00937612820416689, + -0.0066420529037714005, + 0.004429619759321213, + -0.0067819394171237946, + -0.010994684882462025, + -0.019946971908211708, + 0.019718604162335396, + -0.007638941984623671, + -0.013276898302137852, + -0.019301902502775192, + 0.0010031991405412555, + 0.018527070060372353, + -0.014479153789579868, + 0.0018842146964743733, + 0.01464182510972023, + 0.002010630676522851, + 0.0019866940565407276, + 0.0032691536471247673, + -0.0006972894771024585, + -0.008279839530587196, + -0.004717840347439051, + -0.010906415991485119, + 0.006295325700193644, + 0.0581173449754715, + 0.01566735841333866, + -0.013705329969525337, + 0.00898866169154644, + -0.02600654773414135, + 0.026627836748957634, + 0.015031815506517887, + -0.017529433593153954, + 0.0004994279006496072, + -0.010866468772292137, + -0.011323017999529839, + 0.013529624789953232, + -0.025094283744692802, + 0.007309041917324066, + -0.006519991438835859, + 0.00024514153483323753, + 0.006885637529194355, + 0.0021112756803631783, + 0.015906205400824547, + -0.015339563600718975, + -0.016082976013422012, + -0.0006789290928281844, + 0.0014664174523204565, + 0.0004605713183991611, + -0.012494420632719994, + 0.021685216575860977, + -0.015573076903820038, + -0.0029774620197713375, + 0.025044679641723633, + -0.017190832644701004, + 0.006527254823595285, + 0.001292601926252246, + 0.011925905011594296, + -0.006632052827626467, + 0.00036380061646923423, + 0.0022292681969702244, + 0.009436934255063534, + -0.014462176710367203, + -0.001296967500820756, + 0.003805262502282858, + -0.006280340254306793, + -0.015960006043314934, + 0.018988406285643578, + 0.019515765830874443, + 0.004724477883428335, + 0.009532776661217213, + 0.013481510803103447, + 0.0021915363613516092, + -0.003777259262278676, + -0.01781483367085457, + 0.014493072405457497, + 0.0007233804208226502, + 0.007534426636993885, + 0.0029443695675581694, + -0.007938751950860023, + -0.00621316721662879, + -0.01692686229944229, + 0.004691054578870535, + -0.004384730011224747, + -0.015151023864746094, + -0.004046754911541939, + -0.004582501947879791, + -0.0031415161211043596, + -0.0018484564498066902, + -0.004366638604551554, + -0.005426356568932533, + 0.005747688468545675, + -0.06305012106895447, + 0.008300290443003178, + 0.007158536929637194, + 0.004728398285806179, + -0.008703114464879036, + 0.01235118880867958, + -0.0073855286464095116, + 0.00743985828012228, + -0.012710674665868282, + 0.007718132808804512, + 0.006346060428768396, + 0.0015788552118465304, + -0.015700465068221092, + 0.013276302255690098, + 0.023906100541353226, + 0.006557180546224117, + 0.011629757471382618, + 0.011931471526622772, + -0.004495350643992424, + -0.0071508134715259075, + 0.009305493906140327, + -0.00649539940059185, + 0.006039153318852186, + 6.189182749949396e-05, + -0.007698690984398127, + 0.037609394639730453, + -0.010974298231303692, + -0.012206247076392174, + 0.002449566964060068, + -0.01682870276272297, + 0.003923733253031969, + 0.0037260225508362055, + 0.00529826944693923, + -0.014323333278298378, + 0.01980488933622837, + -0.03132821246981621, + 0.0031777098774909973, + -0.001252482645213604, + -0.0047742691822350025, + -0.017041627317667007, + 0.006572175770998001, + 0.007430725730955601, + -0.0057794093154370785, + -0.0010309512726962566, + -0.012415336444973946, + 0.010550487786531448, + 0.0008960967534221709, + -0.04655403271317482, + -0.005243248306214809, + 0.014610977843403816, + 0.005516708828508854, + 0.006929396651685238, + -0.006232811603695154, + -0.03922618180513382, + 0.011343436315655708, + 0.017999283969402313, + 0.003469793125987053, + 0.005173419136554003, + 0.013009542599320412, + 0.01835719309747219, + -0.0007387885707430542, + -0.008651833981275558, + 0.015386246144771576, + -0.0004184153804089874, + 0.003843854647129774, + 0.0015774392522871494, + -0.013532130047678947, + 0.0010783742181956768, + -0.008126823231577873, + 0.008508245460689068, + -0.002985980361700058, + -0.02623569779098034, + -0.003918954636901617, + -0.006309908349066973, + -0.0028010327368974686, + -0.014834646135568619, + -0.005790164228528738, + 0.0062273177318274975, + 0.014840617775917053, + 0.007251518778502941, + -0.008380159735679626, + 0.005063353106379509, + -0.011395764537155628, + -0.003908864688128233, + 0.013443819247186184, + -0.0002706650993786752, + -0.010724203661084175, + 0.006621338427066803, + -0.008094647899270058, + 0.015235495753586292, + -0.016031913459300995, + -0.0005834841867908835, + -0.0016602210234850645, + 0.0016375365667045116, + -0.0004135191556997597, + -0.002308460883796215, + -0.0016865774523466825, + 0.0007569526205770671, + -0.016776783391833305, + -0.03320331126451492, + 0.002731040585786104, + -0.0016035051085054874, + 0.009883967228233814, + -0.0012713456526398659, + -0.018925493583083153, + 0.011942928656935692, + 0.028707826510071754, + 0.008274100720882416, + 0.011035856790840626, + 0.008357144892215729, + 0.0028260124381631613, + 0.06881920993328094, + 0.0026817063335329294, + 0.026137545704841614, + -0.005030698608607054, + 0.000593930424656719, + -0.0010770701337605715, + 0.022680364549160004, + -0.013019820675253868, + 0.011141102761030197, + -0.0069023496471345425, + 0.010401715524494648, + 0.017223617061972618, + 0.0016754289390519261, + 0.013637976720929146, + 0.023765288293361664, + -0.01937619037926197, + -0.012778297066688538, + 0.00818764790892601, + 0.009454714134335518, + 0.0015345682622864842, + -0.029407644644379616, + 0.005379702430218458, + -0.002861133310943842, + -0.008764366619288921, + 0.0022067460231482983, + -0.04293984919786453, + 0.003303940175101161, + 0.0036267517134547234, + -0.00495172617956996, + 0.0016866225050762296, + -0.01401526015251875, + -0.0036266122478991747, + 0.003996358718723059, + -0.006494144443422556, + -0.006857672240585089, + -0.0074074422009289265, + 0.008844409137964249, + 0.0225200392305851, + 0.0008430239977315068, + 0.004462873097509146, + -0.01471176277846098, + -0.0008252314291894436, + 0.002203243086114526, + -0.00017466802091803402, + -0.028640851378440857, + 0.010749652981758118, + 0.004598503932356834, + 0.01306148525327444, + -0.020686574280261993, + 0.004779801703989506, + -0.00929802842438221, + 0.01227306667715311, + 0.01826157420873642, + -0.003847370622679591, + 0.021541818976402283, + 0.0008367954287678003, + 0.024913568049669266, + 0.008201416581869125, + 0.006162659265100956, + 0.03940754383802414, + 0.018385183066129684, + -0.00970498751848936, + -0.010649931617081165, + 0.016205132007598877, + 0.00017044050036929548, + -0.002731659449636936, + 0.011805805377662182, + 0.0027969132643193007, + -0.0038294352125376463, + 0.014570720493793488, + 0.004732975736260414, + -0.003770292503759265, + -0.009702056646347046, + 0.008282698690891266, + -0.0031250861939042807, + 0.02357197180390358, + 0.009767921641469002, + -0.005864526145160198, + 0.01101693045347929, + -0.007721268571913242, + -0.018509970977902412, + 0.0056508504785597324, + -0.0035887467674911022, + 0.023407308384776115, + -0.006273148115724325, + -0.0017511581536382437, + 0.007030950393527746, + 0.010034591890871525, + -0.00044906261609867215, + -0.0010437214514240623, + 0.00724861491471529, + 0.0056457421742379665, + -0.014214611612260342, + -0.002893852535635233, + -0.004749953746795654, + -0.013866678811609745, + 0.0015789307653903961, + 0.0014902995899319649, + 0.030550777912139893, + -0.005352330859750509, + -0.010826637037098408, + 0.0013082921504974365, + -0.005269714165478945, + 0.01577143929898739, + 0.00023626162146683782, + 0.0061386204324662685, + -7.937185000628233e-05, + -0.0074877506121993065, + 0.002958059310913086, + -0.010671704076230526, + 0.003212894778698683, + -0.009452966041862965, + -0.01975684054195881, + -0.004057179670780897, + 0.01573958434164524, + -0.0187594722956419, + 0.019177118316292763, + -0.007516805082559586, + 0.006899998523294926, + 0.008723628707230091, + 0.007221757434308529, + 0.013463116250932217, + -0.012329732067883015, + -0.02379990555346012, + -0.0066830432042479515, + 0.01890767365694046, + 0.004937466699630022, + -0.010958432219922543, + 0.003841508412733674, + 0.010277766734361649, + -0.04258614033460617, + 0.023333346471190453, + 0.0038250668440014124, + 0.004224870353937149, + 0.008022768422961235, + -0.0026011241134256124, + -0.009382934309542179, + -0.012395878322422504, + -0.0003608427650760859, + 0.0003983408969361335, + 0.014096013270318508, + -0.014377825893461704, + 0.05010078102350235, + -0.005372192244976759, + -0.002090282505378127, + -0.007097454741597176, + -0.0152174923568964, + -0.02240457944571972, + -0.014668021351099014, + -0.0023412653245031834, + -0.019818268716335297, + -0.003997910302132368, + 0.005017233081161976, + 0.011576488614082336, + 0.0003720065578818321, + 0.014109830372035503, + 0.013190289959311485, + -0.020943230018019676, + 0.008464197628200054, + 0.007011245004832745, + 0.03554268926382065, + 0.011728133074939251, + -0.023762736469507217, + 0.01208469644188881, + -0.00501448567956686, + -0.0037492236588150263, + 0.00189745775423944, + 0.011204901151359081, + 0.018094835802912712, + -0.006978597026318312, + 0.0015833809738978744, + 0.007840490899980068, + 0.012598137371242046, + 0.0023435463663190603, + 0.0051875547505915165, + 0.03673451021313667, + -0.017726080492138863, + 0.0057186828926205635, + 0.012833322398364544, + -0.007779263891279697, + -0.0008673366392031312, + -0.0004611280164681375, + -0.0030230889096856117, + 0.01825069636106491, + 0.027979401871562004, + 0.0015599034959450364, + -0.00020622789452318102, + 0.00034989547566510737, + -0.007720537483692169, + -0.005157319828867912, + -0.0029681988526135683, + -0.0015803718706592917, + 0.003941318951547146, + 0.0026174967642873526, + -0.002906233537942171, + -0.006017028354108334, + -0.0026363623328506947, + -0.007003063801676035, + 0.0008522653952240944, + -0.0013798802392557263, + 0.027905385941267014, + -0.012390903197228909, + 0.0005208543152548373, + 0.0004348664078861475, + -0.003423915011808276, + 0.006883727386593819, + 0.006691585294902325, + -0.0027872007340192795, + -0.009845143184065819, + -0.0024809143505990505, + 0.000556074024643749, + -0.007111800834536552, + 0.008656607940793037, + -0.012715269811451435, + 0.004840061068534851, + -0.006242081988602877, + 0.0019433248089626431, + -0.004377959296107292, + -0.0003695774357765913, + -0.004545609001070261, + -0.0021520412992686033, + 0.001564624486491084, + -0.005916419439017773, + -0.010461964644491673, + -0.0041190944612026215, + 0.0042860060930252075, + 0.0089021697640419, + -0.04859784245491028, + -0.00290908245369792, + 0.0011774071026593447, + -0.015764158219099045, + 0.007426995784044266, + -0.0020504705607891083, + 0.014562409371137619, + 0.014538426883518696, + 0.009753461927175522, + -0.01003477443009615, + 0.010462414473295212, + 0.0007126066484488547, + -9.599253826308995e-05, + 0.012556896544992924, + -0.00236444640904665, + 0.0023098124656826258, + -0.010857359506189823, + -0.02198641560971737, + 0.003700551576912403, + -0.005287522450089455, + 0.0020599171984940767, + 0.002221150090917945, + -0.005432257428765297, + -0.0008142466540448368, + 0.0076355235651135445, + -0.03232469782233238, + 0.008336744271218777, + 0.00431152805685997, + -0.006967606488615274, + 0.0027057062834501266, + 0.005083663389086723, + 0.004301148932427168, + -0.014342029578983784, + 0.0039871083572506905, + 0.016665121540427208, + 0.016227073967456818, + 0.005191376432776451, + 0.018881959840655327, + 0.03066568449139595, + -0.014845333993434906, + 0.013629721477627754, + -0.012701774947345257, + -0.026630420237779617, + -0.01043572835624218, + -0.008270373567938805, + -0.002883884822949767, + 0.003657091408967972, + -0.0025253607891499996, + 0.002176424954086542, + -0.0016337042907252908, + 0.0071184211410582066, + -0.010156451724469662, + 0.010678690858185291, + 0.001522435573861003, + -0.005574320908635855, + -0.018290840089321136, + 0.0021470726933330297, + 0.027036838233470917, + -0.00022703406284563243, + 0.010230522602796555, + 0.020266307517886162, + -0.008725488558411598, + -0.011506094597280025, + -0.0008439611410722136, + 0.019440650939941406, + -0.0021814738865941763, + 0.003975952975451946, + 0.003025009762495756, + 0.02496718056499958, + -0.0013802124885842204, + 0.03403645008802414, + 0.008664729073643684, + -0.014864923432469368, + 0.014248690567910671, + 0.012225518934428692, + 0.0058189393021166325, + -0.0028227390721440315, + 0.02995148114860058, + -0.001169694121927023, + -0.01585794799029827, + -0.018361927941441536, + 0.011520353145897388, + -0.012073742225766182, + -0.007169872522354126, + 0.010574552230536938, + 0.004508213605731726, + 0.0036562185268849134, + 0.023547761142253876, + -0.008269762620329857, + -0.008785337209701538, + -0.003731118980795145, + -0.007504124194383621, + -0.013968807645142078, + -0.0280152577906847, + 0.007103903219103813, + 0.013782260939478874, + -0.0010639295214787126, + -0.0071867345832288265, + -0.02073359116911888, + 0.016939381137490273, + -0.013271914795041084, + -0.014541580341756344, + 0.008920673280954361, + 0.0032113997731357813, + -0.010570663027465343, + 0.001500969287008047, + 0.009259497746825218, + 6.0845759435324e-05, + 0.0007535312906838953, + -0.0071226488798856735, + -0.007184877526015043, + 0.004035844001919031, + 0.0009710490121506155, + 0.009577610529959202, + 0.006151150446385145, + -0.004510140512138605, + -0.00568736856803298, + -0.03794505447149277, + -0.025751816108822823, + 0.01315137930214405, + -0.012118276208639145, + -0.008873632177710533, + -0.0100230872631073, + 0.0011623760219663382, + -0.001776656019501388, + -0.002800289774313569, + 0.011582881212234497, + 0.009497326798737049, + 0.008129601366817951, + 0.00043464492773637176, + 0.010129883885383606, + 0.010572251863777637, + -0.004093135241419077, + 0.01039839070290327, + -0.0178541149944067, + 0.03088933229446411, + -0.00417015515267849, + -0.010271362960338593, + 0.0031263467390090227, + 0.011230426840484142, + 0.0013697076356038451, + -0.01290548499673605, + 0.01776697486639023, + -0.020695459097623825, + -0.008011781610548496, + 0.006351467687636614, + -0.004358360543847084, + -0.008991246111690998, + -0.00013310357462614775, + 0.006293696351349354, + -0.017465954646468163, + -0.034720681607723236, + 0.0010210550390183926, + 0.00023773156863171607, + -0.002055670600384474, + -0.006855747662484646, + -0.003761137370020151, + -0.016333047300577164, + -0.0001713815436232835, + -0.009787162765860558, + -0.00745043670758605, + -0.023624585941433907, + 0.009937000460922718, + -0.01812877506017685, + 0.0232937503606081, + -0.0036883477587252855, + 0.013600523583590984, + -0.0033770003356039524, + 0.00696079945191741, + 0.009688841179013252, + -0.010261091403663158, + -0.012325981631875038, + 0.003024609060958028, + -0.008258278481662273, + 0.014134269207715988, + 0.018546387553215027, + -0.014821648597717285, + -0.023241909220814705, + -0.009646555408835411, + 0.003075413638725877, + -0.012779362499713898, + 0.006102806888520718, + -0.01114700734615326, + 0.017385665327310562, + -0.0033291999716311693, + 0.008313830010592937, + -0.01354861818253994, + -0.0034515236038714647, + 0.005770778749138117, + -0.0005707288510166109, + 0.012692835181951523, + -0.01113920472562313, + 0.02088434062898159, + 0.009407800622284412, + -9.804384899325669e-05, + -0.0030881997663527727, + 0.01547426450997591, + -0.013975461944937706, + -0.002721362514421344, + -0.012145763263106346, + -0.009721418842673302, + -0.005475987680256367, + 0.007843038067221642, + 0.015433849766850471, + -0.0048813545145094395, + 0.02129485085606575, + 0.01925443671643734, + 0.030468406155705452, + -0.014113308861851692, + -0.006837745197117329, + -0.03885858133435249, + -0.005648639984428883, + -0.0024627498351037502, + -0.011758552864193916, + 0.009833130054175854, + -0.00174320163205266, + -0.01846114918589592, + 0.012404567562043667, + -0.00021245372772682458, + 0.0002634562843013555, + -0.0031215762719511986, + -0.0038951821625232697, + 0.0016869624378159642, + -0.020127099007368088, + 0.005720446817576885, + -0.013125970959663391, + 0.033879730850458145, + 0.012077653780579567, + -0.023736819624900818, + 0.024870440363883972, + -0.008193549700081348, + -0.0008884704438969493, + 0.0029295175336301327, + 0.015958312898874283, + -0.0025256644003093243, + -0.01814604550600052, + 0.04624844342470169, + 0.004143258091062307, + -0.0020486507564783096, + 0.002829710254445672, + -0.008826023899018764, + 0.002218597801402211, + 0.009430382400751114, + 0.012602884322404861, + -0.02664593607187271, + 0.005803109612315893, + 0.007938163354992867, + 0.01140069030225277, + 0.012010089121758938, + 0.004948675166815519, + -0.014466796070337296, + -0.017206493765115738, + -0.011586849577724934, + 0.012087633833289146, + 0.02421744540333748, + 0.008654465898871422, + 0.013462603092193604, + -0.011486157774925232, + 0.0013223396381363273, + -0.0015426799654960632, + 0.0049476586282253265, + 0.0057536703534424305, + 0.009076952002942562, + -0.009942924603819847, + 0.003484015353024006, + 0.016216998919844627, + 0.010168606415390968, + -0.007911857217550278, + 0.005912289954721928, + -0.009893395937979221, + -0.014212309382855892, + -0.0016373121179640293, + 0.006818356458097696, + -0.010053256526589394, + -0.003526497632265091, + 0.004898864310234785, + 0.0011108805192634463, + 0.008389515802264214, + -0.005319698713719845, + 0.00219100178219378, + 0.004143994301557541, + -0.011459628120064735, + 0.007979115471243858, + 0.002897492842748761, + 0.014921567402780056, + -0.0003892495296895504, + 0.0026357106398791075, + -0.007194054313004017, + -0.004283427726477385, + -0.006014323327690363, + -0.0031511427368968725, + -0.009706243872642517, + -0.008727838285267353, + -0.0023325015790760517, + 0.001276420778594911, + -0.03082381747663021, + 0.0004138750082347542, + 0.013067152351140976, + 0.0004004641086794436, + -0.018129564821720123, + 0.014504744671285152, + 0.02010558545589447, + -0.003841748461127281, + 0.0007281916332431138, + 0.015725642442703247, + -0.0012887879274785519, + 0.015040461905300617, + 0.015474680811166763, + -0.0008843917166814208, + 0.012628565542399883, + -0.01777050271630287, + 0.0001335765846306458, + -0.011746377684175968, + -0.021088559180498123, + -0.01589093916118145, + 0.008247735910117626, + 0.008396859280765057, + 0.0022468455135822296, + -0.00791319739073515, + 0.00011504302528919652, + -0.012142769992351532, + 0.0067022573202848434, + 0.0004793503903783858, + 0.027304023504257202, + -0.009914949536323547, + -0.02106110379099846, + -0.005173597950488329, + 0.005501722916960716, + -0.026575088500976562, + 0.010570080950856209, + -0.004778075497597456, + -0.003373175160959363, + 0.01087422575801611, + -0.002430189633741975, + -0.0009197587496601045, + -0.018950020894408226, + 0.008251236751675606, + 0.0016751923831179738, + -0.014339261688292027, + 0.0014146988978609443, + -0.003206981811672449, + -0.015994088724255562, + -0.016089048236608505, + -0.0155401062220335, + -0.005974882282316685, + -0.019542191177606583, + -0.00044368303497321904, + 0.002778073074296117, + -0.010100554674863815, + 0.0036608208902180195, + -0.008567585609853268, + -0.02237676829099655, + -0.0010281444992870092, + -0.002232773695141077, + 0.010502674616873264, + -0.000456184265203774, + 0.023598341271281242, + 0.0042241825722157955, + -0.015285964123904705, + 0.031455542892217636, + -6.835544627392665e-05, + 0.0090279970318079, + -0.010999144054949284, + 0.0085138576105237, + 0.0007090718136169016, + -0.0029183337464928627, + 0.004791056737303734, + -0.0006586794042959809, + -0.0026212516240775585, + 0.00667656771838665, + -0.0021288967691361904, + -0.0019967739935964346, + 0.005977231543511152, + -0.002603803528472781, + -0.0021240985952317715, + 0.01459683571010828, + 0.005403164774179459, + 0.0025057538878172636, + 0.007731019984930754, + 0.015363452956080437, + -5.332316140993498e-05, + 0.011033520102500916, + -0.003783856751397252, + -0.0031315742526203394, + -0.02271685190498829, + -0.0046455468982458115, + -0.011428712867200375, + 0.010326960124075413, + 0.0038590040057897568, + 0.0050865355879068375, + -0.007492550183087587, + 0.013271425850689411, + -0.009907145984470844, + -0.014608181081712246, + -0.002955448580905795, + -0.006124615203589201, + 0.014409296214580536, + 0.00883921142667532, + 0.025464216247200966, + -0.007426440250128508, + 0.011167078278958797, + -0.0048673199489712715, + -0.006418885663151741, + 0.0033382270485162735, + 0.0026318212039768696, + 0.00940571166574955, + 0.008107015863060951, + 0.004968383815139532, + -0.009102053008973598, + 0.004967597778886557, + -0.012353237718343735, + 0.00171157147269696, + -0.005286942236125469, + 0.007511022035032511, + -0.008661163039505482, + 0.012793664820492268, + 0.00738841388374567, + 0.020188305526971817, + -0.0144577631726861, + 0.004760548938065767, + -0.013418591581285, + -0.002757942071184516, + -0.008469297550618649, + 0.009790885262191296, + -0.0015881704166531563, + 0.007045703940093517, + 0.006830349564552307, + 0.007442587986588478, + 0.006158356089144945, + -0.014467994682490826, + -0.005382925737649202, + -0.006010386161506176, + 0.012275844812393188, + 0.0007569980225525796, + 0.002465961268171668, + -0.01093147974461317, + 0.010844029486179352, + 0.005856627132743597, + 0.0031308026518672705, + -0.007771816570311785, + 0.008686133660376072, + -0.002429238287732005, + -0.03169383853673935, + -0.0013656722148880363, + -0.00847315788269043, + -0.000791888334788382, + -0.001619809539988637, + 0.013722469098865986, + 0.019492989405989647, + -0.012933003716170788, + 0.004965861327946186, + -0.023649008944630623, + -0.003104296512901783, + 0.009156066924333572, + 0.005765043664723635, + -0.0007042495417408645, + -0.007479163818061352, + -0.01659592241048813, + -0.01258805487304926, + -0.011905016377568245, + -0.019975753501057625, + 0.0005771328578703105, + -0.012045323848724365, + -0.015743354335427284, + 0.00020508069428615272, + 0.007819273509085178, + 0.0030908139888197184, + 0.0005767922848463058, + -0.010959931649267673, + -0.005449959542602301, + -0.0050907745026052, + 0.000682880578096956, + 0.0017132670618593693, + 0.0028748931363224983, + -0.0008907034643925726, + -0.012634913437068462, + 0.013637135736644268, + 0.008216733112931252, + 0.010417845100164413, + -0.016661155968904495, + 0.007233615964651108, + -0.016756799072027206, + 0.03113333322107792, + -0.011812599375844002, + 0.008413216099143028, + 0.00574024673551321, + -0.009784807451069355, + -0.00177743227686733, + 0.004456781782209873, + 0.002683111699298024, + 0.015232089906930923, + -0.01303790882229805, + 0.0033595107961446047, + 0.003999048378318548, + -0.013065285049378872, + 0.005323979537934065, + 0.0007441378547810018, + -0.014129162766039371, + -0.0036559891887009144, + 0.005385632161051035, + -0.002773504937067628, + 0.013712451793253422, + 0.027732647955417633, + 0.03787126764655113, + -0.00835232064127922, + 0.007389536127448082, + -0.017761623486876488, + -0.0002296955353813246, + -0.014840975403785706, + -0.004533682484179735, + 0.001019626040942967, + -0.002993572736158967, + 0.011396592482924461, + 0.01244534645229578, + -0.0003265608102083206, + -0.00964108482003212, + 0.018413836136460304, + -0.006174793466925621, + -0.0057344441302120686, + 0.00035627803299576044, + 0.02213800512254238, + -0.036280032247304916, + -0.00692232558503747, + -0.009887846186757088, + -0.0013461122289299965, + -0.007516344543546438, + 0.010417935438454151, + -0.006887771654874086, + 0.005173271056264639, + 0.004342224914580584, + -0.010637020692229271, + 0.0245320126414299, + -0.010161266662180424, + -0.008115947246551514, + -0.01789155974984169, + -0.014598495326936245, + -0.013843505643308163, + 0.0004247499455232173, + -0.007298199459910393, + -0.019031314179301262, + -0.017865819856524467, + 0.001444071065634489, + 0.004014174919575453, + -0.0036100195720791817, + -0.006941529456526041, + 0.008004529401659966, + 0.0013828491792082787, + 0.0022730056662112474, + 0.009113910607993603, + -0.009199924767017365, + -0.004977500066161156, + 0.0008504567085765302, + 0.004935144446790218, + -0.005005966871976852, + -0.031110025942325592, + -0.008719215169548988, + 0.0012224201345816255, + -0.0012390563497319818, + -0.0246390700340271, + 0.04220448434352875, + -0.01056948583573103, + 0.0009295943309552968, + -0.011342482641339302, + -0.006158413365483284, + -0.012250246480107307, + -0.01875537633895874, + -0.013212827034294605, + -0.018279850482940674, + -0.004611072596162558, + -0.033403050154447556, + -0.0004374709096737206, + 0.01882139779627323, + 0.005514934659004211, + 0.0021590804681181908, + 0.009634722024202347, + -0.003710502292960882, + 0.009651612490415573, + 0.00554442685097456, + 0.003201512387022376, + -0.020808067172765732, + -0.013289675116539001, + -0.011076844297349453, + 0.0355151891708374, + 0.006388929206877947, + -0.010010463185608387, + -0.00530313840135932, + 0.004402791149914265, + -0.008290043100714684, + 0.026771405711770058, + 0.013604404404759407, + -0.006531294900923967, + -0.0170646570622921, + 0.003883455181494355, + -0.006380477454513311, + -0.005560262128710747, + -0.005134239327162504, + 0.008225517347455025, + -0.013817278668284416, + 0.005383767653256655, + -0.011194824241101742, + -0.01765306107699871, + -0.005429217126220465, + 0.04006923362612724, + -0.00019251389312557876, + -0.011122497729957104, + -0.0001777312863850966, + -0.008311082608997822, + -0.01412404328584671, + -0.004211727995425463, + -0.008500795811414719, + 0.009475575760006905, + 0.022363167256116867, + -0.002977658761665225, + -0.006047646049410105, + 0.013107158243656158, + 0.0065325601026415825, + 0.016145026311278343, + -0.016510585322976112, + 0.04656141996383667, + -0.005577022675424814, + 0.00919910054653883, + 0.007211204152554274, + 0.012298951856791973, + 0.023861195892095566, + -0.05368819087743759, + 0.00046699316590093076, + 0.0027273113373667, + 0.008259203284978867, + -0.012307712808251381, + -0.042193539440631866, + -0.014854776673018932, + -0.0015723658725619316, + -0.006030558608472347, + -0.014479318633675575, + 0.006010556593537331, + -0.007828823290765285, + 0.0010831911349669099, + -0.010530325584113598, + 0.002095982199534774, + -0.0047872173599898815, + 0.00471362192183733, + -0.014374581165611744, + 0.0016375323757529259, + 0.004660863894969225, + 0.006582734640687704, + -7.11260800017044e-05, + -0.019756557419896126, + -0.0036798559594899416, + -0.0001458844490116462, + -0.0036999410949647427, + -0.009133505634963512, + -0.01487777754664421, + -0.010606457479298115, + 0.00646215071901679, + 0.0018796146614477038, + 0.0023041553795337677, + -0.012498700059950352, + -0.0027634501457214355, + 0.003969782032072544, + -0.010701837949454784, + -0.0074175079353153706, + 0.008889985270798206, + -0.003336649853736162, + -0.015421926975250244, + -0.00771112646907568, + -0.009055225178599358, + -0.0021457206457853317, + 0.005668866913765669, + -0.0017537077656015754, + -0.005837250035256147, + 0.019558150321245193, + -0.004761511459946632, + 0.007025666069239378, + 0.0033419113606214523, + 0.003898069728165865, + -0.016109799966216087, + -0.011416854336857796, + 0.004056269768625498, + 0.015237986110150814, + 0.0040057641454041, + 0.005366581492125988, + -0.005585897713899612, + 0.0016173134790733457, + 0.0031433908734470606, + -0.006692851427942514, + -0.0009332924382761121, + 0.018639830872416496, + -0.018904322758316994, + -0.02235671691596508, + -0.019372889772057533, + -0.002562542213127017, + -0.0077780624851584435, + -0.0090788584202528, + -0.0031012743711471558, + -0.0027422693092375994, + 0.012763040140271187, + 0.004219364374876022, + -0.014026320539414883, + 0.01085622888058424, + -0.005849315784871578, + -0.00507343327626586, + 0.00021750082669313997, + 0.006628153380006552, + 0.004453498404473066, + 0.002960268408060074, + 0.003091994673013687, + 3.39334765158128e-05, + 0.010948867537081242, + -0.0026573410723358393, + -0.0004267857293598354, + -0.024568039923906326, + 0.004783795215189457, + -0.004962720908224583, + -0.01510708499699831, + 0.006923602428287268, + 0.0029023545794188976, + -0.0218571275472641, + 0.018078148365020752, + 0.0021839155815541744, + -0.010348241776227951, + -0.00869474746286869, + 0.02395002916455269, + 0.005426069721579552, + -0.0009091253741644323, + -0.007208712864667177, + -0.01225342694669962, + -0.018802931532263756, + -0.002690900582820177, + 0.0004319935105741024, + 0.0011998915579169989, + 0.001087126205675304, + -0.020647183060646057, + 0.00017058367666322738, + 0.009083866141736507, + -0.005986855365335941, + -0.013676290400326252, + 0.0016143524553626776, + 0.0004268789489287883, + 0.003807902103289962, + 0.0014132148353382945, + -0.010769129730761051, + 0.009909857995808125, + 0.006445510778576136, + 0.027559703215956688, + 0.010246138088405132, + -0.010776486247777939, + 0.015779972076416016, + -0.0019124752143397927, + 0.00843009538948536, + -0.005311034619808197, + 0.006555952597409487, + 0.015062141232192516, + -0.014076854102313519, + -0.006297260522842407, + -0.00139439117629081, + -0.016602128744125366, + 0.010723855346441269, + -0.0003088233934249729, + -0.006925743073225021, + -0.0017893562326207757, + -0.0010176228825002909, + -0.003955316264182329, + -0.006377636920660734, + -0.004252004902809858, + -0.01143034640699625, + -0.016621626913547516, + 0.0026192795485258102, + -0.0009935474954545498, + 0.015393608249723911, + 0.011177548207342625, + -0.08124402165412903, + 0.005012823268771172, + 0.00679137883707881, + -0.01580815017223358, + 0.0019833308178931475, + -0.04571450874209404, + 0.01794450730085373, + -7.333275425480679e-05, + -0.015729038044810295, + 0.008249283768236637, + -0.003077404573559761, + -0.0078020174987614155, + 0.008455225266516209, + -0.018779104575514793, + 0.02123774215579033, + -0.0020929723978042603, + 0.019414149224758148, + -0.05348715931177139, + 0.013795871287584305, + 0.007279970217496157, + -0.0002354266616748646, + 0.01951795071363449, + 0.0072309463284909725, + -0.009268575347959995, + 0.005457538180053234, + -0.015405463986098766, + -0.023228434845805168, + 0.03395450487732887, + -0.002303891582414508, + -0.0019860228057950735, + -0.008066241629421711, + -0.01059582456946373, + 0.0009968928061425686, + -0.025473566725850105, + -0.010860379785299301, + -0.00022055114095564932, + 0.013397558592259884, + -4.819244350073859e-05, + -0.022446902468800545, + 0.0018892273074015975, + -0.004592331126332283, + 0.0102090397849679, + 0.0027177217416465282, + -0.00010455876326886937, + 0.0009454662795178592, + 0.020564954727888107, + 0.011963062919676304, + -0.014818606898188591, + 0.011531046591699123, + -0.010122598148882389, + 0.01278042234480381, + -0.006700543686747551, + 0.008697655983269215, + 0.0017938866512849927, + -0.006014599930495024, + 0.003262963378801942, + 0.0029138943646103144, + 0.001459629274904728, + -0.0020580929704010487, + 0.01129673421382904, + 0.01360382791608572, + -0.004418862517923117, + 0.002272967714816332, + 0.013713076710700989, + 0.009615788236260414, + 0.007454128935933113, + 0.0006064733024686575, + -0.00795968621969223, + 0.009668579325079918, + -0.006430217996239662, + 0.031528834253549576, + 0.0016912524588406086, + 0.0014177818084135652, + 0.024107489734888077, + -0.04402128979563713, + 0.011175005696713924, + 0.007322608958929777, + 0.0017007032874971628, + 0.006691938731819391, + 0.014202502556145191, + -0.015054012648761272, + 0.013914098963141441, + -6.675874465145171e-05, + 0.0004539986839517951, + 0.002280560787767172, + -0.0182444266974926, + -0.00358511577360332, + 0.0001422164641553536, + 0.011190319433808327, + 0.031222613528370857, + 0.006163864862173796, + -0.0008212664979510009, + 0.011130905710160732, + -0.011869125999510288, + -0.01082063838839531, + -0.0066844564862549305, + 0.01599453203380108, + -0.02265329100191593, + -0.00259005487896502, + 0.0002479849208611995, + -0.0038875609170645475, + 0.0018895184621214867, + 0.005971373058855534, + -0.014018292538821697, + -0.01165454089641571, + 0.009397044777870178, + -0.011669398285448551, + 0.002856733277440071, + 0.0018898701528087258, + 0.0023081700783222914, + 0.015790848061442375, + 0.03312520310282707, + -0.02336185611784458, + -0.027063697576522827, + 0.00799457635730505, + 0.01331815030425787, + 0.007637414149940014, + -0.004724729340523481, + -0.0037457821890711784, + -0.018496474251151085, + -0.016974052414298058, + -0.0051897186785936356, + -0.0142852533608675, + 0.0009108562371693552, + -0.004410567227751017, + -0.00948504637926817, + -0.02010914869606495, + 0.018893297761678696, + -0.006440309341996908, + 0.010401956737041473, + -0.009974734857678413, + 0.0071517894975841045, + -0.009359154850244522, + -0.010480040684342384, + 0.008504421450197697, + 0.01706455834209919, + 0.009639612399041653, + 0.008815714158117771, + -0.013399242423474789, + 0.014914718456566334, + 0.0015107457293197513, + 0.0009898345451802015, + 0.0044012111611664295, + 0.02203207276761532, + 0.002395524876192212, + -0.006598132662475109, + 0.02017234079539776, + 0.030182864516973495, + -0.0003318005765322596, + 0.006965063512325287, + -0.012503543868660927, + 0.007748713716864586, + 0.009525088593363762, + -0.009525196626782417, + 0.00048022830742411315, + -0.0015453482046723366, + 0.008259749971330166, + 0.00016993026656564325, + -0.021093429997563362, + 0.0046725585125386715, + 0.0028504161164164543, + 5.5552678531967103e-05, + 0.0032930681481957436, + 0.0002869449381250888, + 0.007773506920784712, + 0.005084836855530739, + -0.007145474199205637, + -0.004901261068880558, + -0.011592482216656208, + -0.009508808143436909, + 0.0012430065544322133, + 0.004486449994146824, + -0.0022781917359679937, + -0.004730351734906435, + -0.01563415117561817, + 0.008536860346794128, + -0.015229820273816586, + 0.0002604372857604176, + -0.02783798985183239, + -0.014507990330457687, + -0.007261376362293959, + -0.0014615383697673678, + -0.009987302124500275, + -0.012994751334190369, + 0.014379586093127728, + 0.01622712053358555, + 0.011762460693717003, + -0.005831305403262377, + 0.0009124259231612086, + 0.011192272417247295, + 0.005255656782537699, + 0.0014138257829472423, + 0.0019624694250524044, + -0.0008960071136243641, + 0.011166389100253582, + 0.006100625731050968, + 0.005182923283427954, + 0.0008327622781507671, + 0.004188502673059702, + -0.0028944178484380245, + 0.007523374632000923, + -0.008684650994837284, + -0.0005714785074815154, + 0.012484202161431313, + -0.0029887405689805746, + -0.011309219524264336, + -0.0021514049731194973, + -0.0017486127326264977, + -0.027185361832380295, + -0.003177159233018756, + -0.01099690143018961, + 0.016672328114509583, + 0.01891857013106346, + 0.011365467682480812, + 0.016206275671720505, + 0.006543883588165045, + 0.009634421207010746, + -0.013370498083531857, + -0.03850129619240761, + -0.039885956794023514, + 0.009486755356192589, + -0.01716616190969944, + 0.0015362778212875128, + -0.03382537513971329, + -0.003554306458681822, + 0.0011702352203428745, + -0.011109265498816967, + 0.007567265070974827, + -0.028578203171491623, + -0.012376001104712486, + -0.010436910204589367, + -0.011246380396187305, + -0.001622788142412901, + -0.008207927457988262, + 0.013891450129449368, + 0.024792077019810677, + -0.0008141741272993386, + -0.0052626668475568295, + 0.01675868034362793, + 0.006752858869731426, + 0.007103662937879562, + 0.012277260422706604, + 0.013241534121334553, + 0.008604135364294052, + -0.014484097249805927, + 0.002719832118600607, + -0.019326556473970413, + -0.0005164071335457265, + 0.0018418841063976288, + 0.018310198560357094, + -0.0050910478457808495, + 5.6296255934285e-05, + 0.002836761064827442, + -0.0035448234993964434, + -0.01018758025020361, + 0.007235854398459196, + -0.01296462956815958, + -0.002805116819217801, + 0.024547358974814415, + 0.008500540629029274, + 0.01559463795274496, + -0.0109400674700737, + -0.019552022218704224, + 0.011901197023689747, + 0.006132264155894518, + -0.01067740935832262, + -0.006050108466297388, + 0.005583134945482016, + -0.0031229928135871887, + 0.003939815331250429, + 0.004313288256525993, + -0.013470170088112354, + 0.0010188922751694918, + -9.571114060236141e-05, + 0.0008636938291601837, + 0.017322203144431114, + -0.004389862064272165, + -0.005701310466974974, + 0.013381851837038994, + -0.000843144312966615, + -0.03245583921670914, + -0.001748640788719058, + 0.00434727082028985, + -0.009308653883635998, + -0.006505244877189398, + 0.0035798456519842148, + -0.003579899901524186, + -0.001699741231277585, + -0.0019481334602460265, + -0.03558040410280228, + -0.019585013389587402, + 0.061961956322193146, + -0.391346275806427, + -0.009805074892938137, + -0.005311299115419388, + 0.012429353781044483, + 0.012331315316259861, + -0.004620926920324564, + 2.0003497411380522e-05, + -0.019048277288675308, + 0.010522694326937199, + -0.0105934739112854, + 0.002600663574412465, + -0.022192856296896935, + -0.0019414074486121535, + 0.006453630514442921, + 0.006207812577486038, + -0.009539391845464706, + 0.011280296370387077, + 0.026041816920042038, + 0.0005640890449285507, + -0.008196543902158737, + -0.01222767774015665, + -0.0018536972347646952, + -0.03542224317789078, + 0.0021762531250715256, + -0.0013040732592344284, + 0.009074646979570389, + 0.005393420811742544, + -0.018802989274263382, + 0.005423860624432564, + 0.008448581211268902, + 0.005111283622682095, + 0.01761278323829174, + -0.007411164231598377, + 0.004014314152300358, + -0.00807331595569849, + -0.00016977368795778602, + 0.0035860114730894566, + 0.000997471623122692, + 0.013453520834445953, + -0.015577060170471668, + -0.009949559345841408, + -0.013155519030988216, + -0.004056420177221298, + 0.00041857975884340703, + 0.0037538488395512104, + -0.002666264306753874, + 0.002408260013908148, + 0.001550939166918397, + -0.005868556443601847, + 0.006004128139466047, + 0.03257961571216583, + -0.0025285209994763136, + -0.007446326781064272, + 0.018696360290050507, + 0.007084166631102562, + 0.009736963547766209, + 0.008853914216160774, + -0.004607365932315588, + -0.009098488837480545, + 0.02899875119328499, + 0.004041003994643688, + 0.008501378819346428, + -0.0027824847493320704, + -0.01952304318547249, + -0.0008873629849404097, + 0.0031902557238936424, + -0.010980194434523582, + 0.05463327839970589, + -0.0015933673130348325, + -0.008912159129977226, + 0.0015384673606604338, + 0.00016493548173457384, + 0.006026001181453466, + 0.006024287082254887, + 0.0049944231286644936, + 0.022744257003068924, + -0.007481846492737532, + -0.005539467558264732, + -0.001411316217854619, + -0.01630895957350731, + -0.00397465517744422, + -0.0002580920699983835, + 0.009600493125617504, + 0.004315943922847509, + -0.004729969426989555, + -0.0014966016169637442, + -0.004739911761134863, + -0.03225057199597359, + 0.014808064326643944, + -0.016183750703930855, + 0.0022592402528971434, + -0.006634825374931097, + 0.04389442130923271, + 0.007088263053447008, + 0.0035201956052333117, + -0.005437053740024567, + 0.0030314538162201643, + -0.005779487080872059, + 0.007033981382846832, + -0.008552156388759613, + 6.210475112311542e-05, + 0.00997183471918106, + 0.01009327918291092, + 0.009344486519694328, + 0.020117416977882385, + 0.014333177357912064, + 0.022169621661305428, + 0.009742495603859425, + 0.016345949843525887, + 0.025175614282488823, + -0.014347244054079056, + -0.030684923753142357, + -0.004880518652498722, + 0.0008245697827078402, + 0.006107604131102562, + 0.03796149045228958, + -0.006812362931668758, + 0.0013672466157004237, + 0.0052411979995667934, + -0.010486559011042118, + -0.014084002934396267, + 0.0013269769260659814, + 0.02333782985806465, + 0.005630056373775005, + -0.015475320629775524, + -0.007288471795618534, + -0.014546080492436886, + -0.019893571734428406, + 0.004420780576765537, + -0.01587238349020481, + 0.00854562595486641, + 0.01349538005888462, + -0.004058605059981346, + 0.002591107040643692, + 0.005686652846634388, + -0.016564343124628067, + 0.005345245357602835, + 0.004664267413318157, + 0.007140402216464281, + 0.018689392134547234, + 0.01205484475940466, + 0.007293334696441889, + 0.00151803286280483, + 0.017382606863975525, + -0.006223974749445915, + 0.08055943250656128, + -0.00931277871131897, + -0.004803857766091824, + 0.007587823551148176, + 0.00469136331230402, + 0.017749948427081108, + -0.00408091489225626, + 0.007432747632265091, + -0.0106255654245615, + -0.0002567607443779707, + -0.000943652936257422, + 0.004965555854141712, + -0.008471527136862278, + -0.016490435227751732, + -0.022204075008630753, + 0.009648142382502556, + 0.010455301031470299, + -0.002010100521147251, + 0.009660336188971996, + 0.0118410000577569, + 0.0073808166198432446, + -0.007207728922367096, + 0.0013362026074901223, + -0.005806175991892815, + -0.008535042405128479, + -0.020264243707060814, + -0.0037527631502598524, + 0.00940061453729868, + -0.0025431723333895206, + 0.009508715011179447, + -0.003506830194965005, + 0.024242430925369263, + -0.006463021505624056, + 0.01889999397099018, + 0.0065412139520049095, + -0.007613268680870533, + -0.007406186778098345, + -0.0102493055164814, + 0.009714311920106411, + -0.015011249110102654, + -0.007298525422811508, + -0.0056706322357058525, + 0.006371475290507078, + 0.0030945513863116503, + 0.004859598353505135, + -0.012238876894116402, + -0.0018746864516288042, + 0.008693506009876728, + 0.0016975649632513523, + -0.013221119530498981, + 0.0008176973205991089, + -0.007596543524414301, + 0.014806884340941906, + 0.008589393459260464, + 0.010684805922210217, + 0.00521582318469882, + 0.005083146039396524, + 0.0015447769546881318, + -0.007316752336919308, + 0.0012804586440324783, + -0.018634863197803497, + 0.01687624864280224, + 0.009340433403849602, + -0.0024761713575571775, + -0.023813357576727867, + 0.017089255154132843, + 0.017772771418094635, + -0.017941193655133247, + 0.0022174008190631866, + -0.05216469243168831, + -0.01000938005745411, + -0.0007198108942247927, + 0.012206350453197956, + 0.01672106236219406, + -0.008083554916083813, + 0.004513642750680447, + -0.0038471436128020287, + -0.01419095043092966, + -0.030041690915822983, + -0.0023168588522821665, + -0.011456672102212906, + -0.01284588873386383, + 0.0012082676403224468, + -0.005281256977468729, + -0.005653455853462219, + -0.012241284362971783, + 0.005104308016598225, + -0.0015846758615225554, + 0.006091437302529812, + -0.0047143204137682915, + 0.019220365211367607, + 0.029576124623417854, + 0.007392203435301781, + 0.03329552337527275, + 0.00883022602647543, + 0.002010100521147251, + 0.0016402873443439603, + 0.0028525423258543015, + -0.015619158744812012, + -0.016635673120617867, + 0.014124209061264992, + 0.007808182388544083, + 0.0052836621180176735, + -0.0024062087759375572, + -0.017492685467004776, + 0.05487386882305145, + 0.008131856098771095, + 0.013545886613428593, + 0.0054628886282444, + 7.83937139203772e-05, + -0.012642649933695793, + 0.04186294972896576, + 0.0007171402685344219, + 0.004603598732501268, + 0.023158960044384003, + 0.0028471711557358503, + -0.0001080037109204568, + -0.003929751459509134, + 0.016398100182414055, + 0.003731384640559554, + 0.004880330990999937, + 0.005389032885432243, + -0.006354536395519972, + 0.006976320408284664, + 0.0011892237234860659, + 0.04386892542243004, + -0.009726548567414284, + -0.008131123147904873, + -0.0019081521313637495, + -0.020149992778897285, + -0.004924544133245945, + 0.0075403363443911076, + 0.0029561654664576054, + -0.01581154391169548, + -0.0011635377304628491, + 0.014718259684741497, + -0.004458762239664793, + 0.0013361121527850628, + -0.014836433343589306, + -0.013788288459181786, + -0.0010171777103096247, + -0.00219675712287426, + -0.006132147740572691, + -0.011647970415651798, + -0.028060825541615486, + 0.0007246031891554594, + 0.0064996215514838696, + 0.0036334882024675608, + -0.008727749809622765, + 0.007237001787871122, + -0.010513709858059883, + 0.08129532635211945, + -0.07380371540784836, + 4.181689291726798e-05, + 0.0034747079480439425, + -0.004776198882609606, + -0.020519480109214783, + -0.00816772598773241, + 0.0866633728146553, + 0.010538368485867977, + -0.010299637913703918, + -0.019582610577344894, + -0.01448143646121025, + 0.015577763319015503, + -0.0038457117043435574, + -0.012225898914039135, + 0.002205882454290986, + 0.0017789785051718354, + -0.008514869958162308, + -0.0013982440577819943, + 0.03467588499188423, + -0.001241324353031814, + -0.00434611551463604, + -0.013406936079263687, + 0.010942265391349792, + -0.008134744130074978, + 0.008808713406324387, + 0.00416139978915453, + -0.0082100760191679, + -0.0088196424767375, + -0.005768732167780399, + 0.009196811355650425, + 0.013557160273194313, + -0.0013962542871013284, + -0.0001782975741662085, + 0.014355240389704704, + -0.006318679079413414, + 0.0032505712006241083, + -0.00012002143921563402, + -0.013149661011993885, + 0.004215471912175417, + 0.02221585623919964, + -0.047138314694166183, + -0.005934156943112612, + 0.011042904108762741, + -3.978401218773797e-05, + 0.01234731450676918, + 0.04179169237613678, + -0.051277197897434235, + 0.002920712111517787, + -0.004204432480037212, + -0.0019878901075571775, + -0.034412235021591187, + -0.036930665373802185, + 0.008111410774290562, + -0.01854327879846096, + 0.00023521117691416293, + -0.002137524075806141, + -0.00010400709288660437, + 0.00021915689285378903, + 0.02733893133699894, + -0.027963800355792046, + -0.006682508625090122, + -0.0053445142693817616, + -0.006891102530062199, + 0.013180517591536045, + -0.040177807211875916, + -0.010368644259870052, + -0.003175282385200262, + 0.0009088094811886549, + 0.023546066135168076, + 0.0006072320975363255, + -3.183037551934831e-05, + -0.001286746934056282, + -0.024338146671652794, + 0.001819882309064269, + -0.01050186064094305, + 0.02023828588426113, + 0.0052159191109240055, + 0.0007981698727235198, + -0.021545570343732834, + 0.047468800097703934, + -0.0037565124221146107, + 0.029365483671426773, + -0.004871409852057695, + -0.015805723145604134, + 0.019572272896766663, + 0.016428522765636444, + -0.009632394649088383, + -0.006924137473106384, + 0.008439872413873672, + -0.0018390428740531206, + -0.007060118485242128, + 0.013700720854103565, + 0.012860634364187717, + -0.006382695399224758, + 0.003249997505918145, + 0.014557748101651669, + 0.008409813977777958, + 0.018285809084773064, + 0.003087640507146716, + -0.0007569827721454203, + 0.0004483954980969429, + -0.013425517827272415, + -0.0037768417969346046, + 0.015038230456411839, + -0.011726914905011654, + 0.015194562263786793, + 0.0027724620886147022, + 0.00021272758021950722, + -0.008296028710901737, + 0.017712555825710297, + -0.006565441843122244, + 0.005661229137331247, + 0.008453947491943836, + 0.009654118679463863, + -0.0003356184752192348, + 0.008431276306509972, + 0.0006984274950809777, + -0.0009192433208227158, + -0.0005066212033852935, + 0.018939580768346786, + 0.012229407206177711, + 0.013702762313187122, + 0.0005521022249013186, + 0.008144302293658257, + 0.007045137695968151, + -0.007294682320207357, + -0.0069524566642940044, + 0.020070597529411316, + 0.014114509336650372, + 0.036749422550201416, + 0.018772287294268608, + -0.00315588666126132, + 0.0025401669554412365, + -0.004412664566189051, + -0.0033525386825203896, + 0.013294712640345097, + 0.0173562690615654, + -0.018883002921938896, + -0.004627042915672064, + 0.011750506237149239, + -0.009559298865497112, + -0.007814067415893078, + 0.004275457467883825, + 0.009202226996421814, + 0.0071158744394779205, + 0.0009557862067595124, + -0.0007411367841996253, + 0.006143872160464525, + -0.0031233620829880238, + 0.022723402827978134, + -0.01581420749425888, + 0.0029603533912450075, + -0.003435197053477168, + -0.0006718975491821766, + 0.016543997451663017, + 0.001506512868218124, + -0.012100033462047577, + 0.021434154361486435, + -0.03126939758658409, + -0.009267574176192284, + 0.010063329711556435, + -0.0021780510433018208, + -0.0014034889172762632, + -0.00039809918962419033, + -0.0025988046545535326, + -0.006816447246819735, + -0.0034343458246439695, + -0.004837471060454845, + 0.005166773218661547, + 0.006678635720163584, + -0.01567450352013111, + -0.009278867393732071, + 0.009677167981863022, + -0.012109316885471344, + -0.005293181166052818, + -0.008057205937802792, + -0.0008766647079028189, + -0.009879674762487411, + 0.012406275607645512, + -0.016082430258393288, + -0.019760483875870705, + -0.0025484906509518623, + -0.0465022474527359, + 0.018012603744864464, + 0.03806453198194504, + -0.009475593455135822, + 0.009390754625201225, + 0.011141275055706501, + -0.009722769260406494, + 0.002959007862955332, + 0.010562167502939701, + -0.001776783843524754, + -0.010983034037053585, + -0.009886338375508785, + 0.005976871121674776, + -0.014164786785840988, + 0.05784440040588379, + -0.0010216300142928958, + 0.001960764406248927, + 0.004007786512374878, + -0.006225747987627983, + 0.002013331977650523, + 0.018230576068162918, + 0.01828070916235447, + 0.007076951675117016, + -0.0005832350580021739, + 0.014474143274128437, + 0.020988579839468002, + 0.015613974072039127, + -0.006025542970746756, + -0.008552055805921555, + -0.008496141992509365, + -0.0022141188383102417, + 0.004728558007627726, + -0.004667443688958883, + -0.0027785422280430794, + 0.03006996214389801, + 0.010452432557940483, + -0.0006535578286275268, + 0.009709055535495281, + -0.007681211922317743, + -0.04808282107114792, + 0.005234651267528534, + 0.0032528203446418047, + -0.002027723239734769, + -0.024690799415111542, + -0.002995676826685667, + 0.017908256500959396, + 0.01757880300283432, + 0.005711089354008436, + 0.016863785684108734, + 0.025903692469000816, + -0.001188825466670096, + -0.017736591398715973, + -0.008126086555421352, + -0.0030198104213923216, + -0.004186807665973902, + 0.04234866052865982, + 0.004800889175385237, + 0.0039027812890708447, + 0.013473696075379848, + -0.0011623887112364173, + -0.04909510165452957, + -0.003916272893548012, + -0.01115148700773716, + 0.026883330196142197, + -0.002339116530492902, + -0.001712673925794661, + -0.014416336081922054, + -0.01684761419892311, + -0.027060959488153458, + 0.015222175046801567, + 0.007857460528612137, + -0.007187149487435818, + -0.01019990723580122, + -0.016386717557907104, + -0.007381181698292494, + 0.016216525807976723, + 0.01276975218206644, + 0.009746141731739044, + 0.03500202298164368, + -0.006051605101674795, + -0.011447183787822723, + 0.0063157472759485245, + -0.008156771771609783, + 0.005907254759222269, + 0.01649254560470581, + 0.012720565311610699, + 0.01606343686580658, + -0.0038000387139618397, + -0.024939948692917824, + -0.0012791764456778765, + 0.00031864127959124744, + 0.01618282124400139, + 0.0007393029518425465, + 0.01325744017958641, + 0.0237618088722229, + -0.0011612044181674719, + 0.019034862518310547, + -0.016215460374951363, + -0.009468873962759972, + 0.11875709146261215, + 0.01054765097796917, + -0.01003891322761774, + -0.02748452126979828, + -0.006145751103758812, + -0.01728716865181923, + -0.00742358760908246, + -0.0015411974163725972, + -0.00909373164176941, + -0.014338033273816109, + 0.005035079549998045, + 0.011222406290471554, + 0.012032369151711464, + -0.0070396591909229755, + 0.01955215446650982, + 0.0011583516607061028, + -0.006511148530989885, + 0.0014913445338606834, + 0.01586044952273369, + 0.005534712690860033, + 0.0007996975327841938, + -0.012576243840157986, + -0.010486588813364506, + 0.001769321970641613, + -0.0067698038183152676, + 0.00314587471075356, + -0.003810620866715908, + 0.005753005854785442, + -0.007995719090104103, + -0.017012348398566246, + -0.0077966731041669846, + -0.002359014470130205, + -0.0022199442610144615, + 0.0014648610958829522, + 0.0004872482968494296, + -0.006468322593718767, + -0.0028248773887753487, + -0.004419039003551006, + -0.027204323559999466, + 0.015481846407055855, + 0.00040715234354138374, + -0.016602952033281326, + -0.01086906436830759, + 0.017050569877028465, + 0.0010343312751501799, + -0.022052476182579994, + -0.025084203109145164, + -0.001854294678196311, + -0.006116362288594246, + -0.0005115819512866437, + 0.010493222624063492, + -0.007503744214773178, + 0.010547731071710587, + 0.02440129965543747, + 0.010459557175636292, + 0.0026419328060001135, + -0.005128274206072092, + -0.008534683845937252, + -0.00939145591109991, + -0.007279886864125729, + -0.01256482396274805, + -0.005305242724716663, + -0.014414525590837002, + -0.007100818678736687, + 0.007206492591649294, + 0.019737208262085915, + -0.004667956382036209, + 8.455602801404893e-05, + -0.02620527893304825, + -0.0029191512148827314, + 0.01151609979569912, + 0.014515196904540062, + -0.0020635442342609167, + 0.006678088568150997, + 0.00546529795974493, + 0.016768300905823708, + -0.004098103381693363, + 0.0023520179092884064, + -0.007760494481772184, + -0.03490118682384491, + 0.023180553689599037, + -0.011061839759349823, + -0.008698321878910065, + -0.018466239795088768, + -0.00015529204392805696, + 0.003692756872624159, + 0.003530405228957534, + -0.0066236830316483974, + -0.008329632692039013, + 0.0067450073547661304, + 0.010942695662379265, + 0.020268788561224937, + -0.005459314677864313, + -0.008931765332818031, + 0.0005225440254434943, + 0.004498493857681751, + 0.0009210467105731368, + 0.027500256896018982, + -0.0014303496573120356, + -0.004855922423303127, + -0.004668144974857569, + 0.028728505596518517, + -0.003981706686317921, + 0.018868323415517807, + -0.012711173854768276, + -0.016222279518842697, + -0.03726532310247421, + -0.008217716589570045, + -0.02566402219235897, + 0.01071115117520094, + 0.01572711579501629, + -0.01024052407592535, + -0.007181716151535511, + -0.003817975288257003, + 0.0037965027149766684, + 0.014546244405210018, + -0.013269120827317238, + 0.0068143680691719055, + -0.00717886071652174, + -0.020954908803105354, + 0.008721119724214077, + -0.0035153497010469437, + -0.0021962581668049097, + -0.006211618427187204, + -0.00395483523607254, + -0.011316787451505661, + -0.014411898329854012, + -0.0009935428388416767, + -0.001497143879532814, + 0.0027935246471315622, + 0.0027558468282222748, + 0.02221866138279438, + 0.01159585639834404, + -0.007424049079418182, + -0.0058436584658920765, + -0.006211073603481054, + -0.02137589640915394, + -0.05521176755428314, + 0.008355957455933094, + 0.0060626850463449955, + 0.0055539109744131565, + 0.002002725377678871, + 0.007012359332293272, + -0.0004677542601712048, + -0.02505587227642536, + -0.015758225694298744, + 0.03406543657183647, + -0.008352266624569893, + 0.0009378105169162154, + -0.017591753974556923, + -0.0005268650711514056, + 0.01606512814760208, + -0.002840787637978792, + 0.0192448478192091, + -0.0018997467122972012, + -0.00522752245888114, + 0.08755452185869217, + 0.001646530581638217, + -0.008278497494757175, + -0.006325374357402325, + -0.012967442162334919, + -0.0005320935742929578, + -0.001623952412046492, + -0.021913722157478333, + -0.011566118337213993, + 0.008745773695409298, + 0.005327918566763401, + -0.013290412724018097, + 0.0070809233002364635, + 0.00986743625253439, + -0.016130773350596428, + 0.00013330303772818297, + -0.0045030792243778706, + -0.007593359332531691, + -0.006559408735483885, + -0.0015332349576056004, + 0.002779784146696329, + 0.00805285107344389, + -0.007922294549643993, + -0.007059289142489433, + 0.004996871575713158, + -0.01814279332756996, + -0.0027297683991491795, + -0.006592227146029472, + -0.0029800981283187866, + -0.005984614137560129, + 0.012816731818020344, + 0.007031584158539772, + -0.012081647291779518, + -0.004916845355182886, + 0.009324494749307632, + 0.0049008638598024845, + 0.017295438796281815, + -0.00609701918438077, + -0.00952343549579382, + -0.0015796417137607932, + 0.008631282486021519, + 0.008583804592490196, + 0.00729275681078434, + -0.012325125746428967, + -0.002044806256890297, + 0.003932288847863674, + 0.004455618094652891, + 0.00879975501447916, + 0.008971760049462318, + 0.017665347084403038, + 0.01063703652471304, + 0.0009215489844791591, + 0.010953104123473167, + -0.008298725821077824, + 0.009064868092536926, + -0.00010806829232024029, + 0.014048601500689983, + -0.05171621963381767, + -0.003429262200370431, + 0.009039686992764473, + 0.0055026100017130375, + 0.0262248944491148, + -0.016652951017022133, + 0.011748344637453556, + 0.0029150941409170628, + -0.0041564577259123325, + 0.01634795404970646, + -0.015593291260302067, + -0.008417215198278427, + 0.011619124561548233, + -0.019851472228765488, + 0.019569404423236847, + 0.005698860622942448, + -0.0059709707275033, + -0.010528486222028732, + 0.0069342018105089664, + -0.011635196395218372, + 0.0010618561645969748, + 0.016429949551820755, + -0.004905564710497856, + 0.009909536689519882, + -0.0030773545149713755, + -0.0012581757036969066, + 0.01591341942548752, + 0.004519576206803322, + -0.0005955418455414474, + 0.010038078762590885, + -0.004547916818410158, + 0.004220615141093731, + 0.01641269586980343, + -0.026295822113752365, + -0.0196444783359766, + -0.017227577045559883, + -0.019112419337034225, + 0.003801405429840088, + 0.0003066651406697929, + -0.00834211241453886, + -0.0025065846275538206, + 0.019563399255275726, + 0.010318041779100895, + -0.005070357583463192, + -0.01962945982813835, + -0.02684956043958664, + -0.005081812385469675, + 0.001302263350225985, + 0.002720228862017393, + 0.030505871400237083, + -0.0042420243844389915, + 0.0008878543740138412, + 0.012894279323518276, + -0.008892481215298176, + -0.006922495551407337, + -0.005066287703812122, + 0.006075812969356775, + 0.007073195185512304, + 0.010492583736777306, + 0.015410047024488449, + -0.004145191051065922, + -0.004933708347380161, + 0.007419962901622057, + -0.023131851106882095, + -0.003670359728857875, + -0.0005205825436860323, + 0.003091412829235196, + 0.0025936730671674013, + 0.013997988775372505, + 0.011932501569390297, + 0.002746280748397112, + 0.0017118846299126744, + -0.003931002225726843, + 0.016953127458691597, + 0.010601327754557133, + 0.007038602605462074, + 0.0017610606737434864, + -0.002499060705304146, + -0.007324632257223129, + 0.026294369250535965, + -0.007014214526861906, + 0.004200909286737442, + 0.008038937114179134, + 0.0020944008138030767, + 0.002174889435991645, + -0.0041710990481078625, + -0.004447652958333492, + -0.008097928017377853, + 0.010987476445734501, + -0.0017475977074354887, + -0.012918340042233467, + -0.0045036450028419495, + -0.0009665307588875294, + 0.0041493382304906845, + 0.004489189479500055, + 0.005614425055682659, + -0.01275758445262909, + -0.0038893313612788916, + 0.005602917168289423, + 0.014276240020990372, + -0.014043274335563183, + -0.00023045921989250928, + 0.03120853193104267, + -0.023269446566700935, + -0.008621674962341785, + -0.003326470497995615, + 0.009626183658838272, + 0.023952946066856384, + 0.001678978675045073, + -0.009258531965315342, + -0.01662672497332096, + -0.008904985152184963, + 0.002518090419471264, + -0.0032520308159291744, + -0.011419568210840225, + -0.0025726472958922386, + -0.001091450685635209, + -0.034886717796325684, + -0.0017231082310900092, + 0.007657189853489399, + -0.0011932073393836617, + -0.038536373525857925, + -0.00564488023519516, + 0.009710077196359634, + 0.0038819294422864914, + 0.010498046875, + 0.00734301982447505, + 0.004897090140730143, + -0.00297190947458148, + -0.0034815948456525803, + -0.01452905684709549, + -0.0020622904412448406, + -0.000748797960113734, + 0.0020412870217114687, + -0.006989396642893553, + 0.015482843853533268, + -0.006261326838284731, + 0.011006543412804604, + 0.01431942731142044, + 0.012136241421103477, + -0.0001762489991961047, + 0.012017329223453999, + -0.0047692046500742435, + 0.00798571016639471, + 0.005640823859721422, + -0.005483716260641813, + -0.0028374106623232365, + -0.006257105618715286, + -0.00214157672598958, + 0.00503478804603219, + -0.006073854397982359, + -0.013560045510530472, + -0.019829822704195976, + -0.002079620026051998, + 0.006949129048734903, + 0.0018922693561762571, + 0.004846880212426186, + -0.010114391334354877, + 0.014624081552028656, + 0.0033133490942418575, + 0.013511312194168568, + -0.015317474491894245, + -0.004461026284843683, + -0.01453099213540554, + 0.011034064926207066, + 0.004594774451106787, + -0.0054330225102603436, + 0.0009402291034348309, + 0.003758926410228014, + 0.010534348897635937, + 0.003576850751414895, + -0.0144644258543849, + -0.0018989227246493101, + 0.0024889023043215275, + -0.0028083587531000376, + 0.003423305694013834, + -0.0027783478144556284, + -0.002589867217466235, + -0.01243642345070839, + 0.03707638010382652, + -0.0009797777747735381, + 0.011317243799567223, + 0.01052258163690567, + -0.0013146995333954692, + 0.0016060967463999987, + 0.005579854361712933, + 0.001456332509405911, + 0.005958536174148321, + 0.024423986673355103, + 0.010794546455144882, + 0.005361174698919058, + 0.00212551630102098, + -0.009724353440105915, + 0.01925892010331154, + -0.0018380621913820505, + -0.0009263745159842074, + 0.009465048089623451, + 0.0015091885579749942, + -0.002474983222782612, + 0.0020405566319823265, + -0.015288221649825573, + 0.012759782373905182, + -0.009127382189035416, + 0.007728633005172014, + 0.02202901430428028, + 0.01032406184822321, + -0.0008085455629043281, + 0.006012458819895983, + -0.0029838222544640303, + 0.001114903949201107, + -0.0002905406872741878, + 0.006604847498238087, + 0.019267503172159195, + 0.01783714070916176, + -0.002680897479876876, + -0.0013681569835171103, + -0.006574008148163557, + 0.018125196918845177, + -0.004946145694702864, + -0.01959017664194107, + 0.0012089518131688237, + -0.022127626463770866, + -0.013014611788094044, + 0.001996094360947609, + -0.006844706367701292, + -0.00023938732920214534, + -0.011128944344818592, + 0.0019326277542859316, + 0.01318553276360035, + -0.013558464124798775, + -0.028161214664578438, + -0.022945843636989594, + 0.012669107876718044, + -0.008984588086605072, + -0.013149763457477093, + 0.003111287485808134, + 0.004902158863842487, + 0.0008966362220235169, + -0.007441603112965822, + 0.017292100936174393, + -0.0033453963696956635, + 0.01267517264932394, + 0.017653226852416992, + 0.005457945168018341, + 0.001391052850522101, + 0.004071148112416267, + 0.014735250733792782, + 0.03252119570970535, + 0.005164068192243576, + 0.003661937778815627, + -0.0020733403507620096, + -0.01700940914452076, + -0.006963676773011684, + 0.007922736927866936, + -0.00508118374273181, + 0.01531885378062725, + -0.0036319864448159933, + 0.000541812798473984, + -0.015132222324609756, + -0.004396294243633747, + -0.0187655221670866, + -0.04387442767620087, + 0.008865145966410637, + -0.03281682729721069, + 0.010977618396282196, + 0.010361949913203716, + -0.010266739875078201, + 0.012842865660786629, + 0.010595842264592648, + -0.005584474187344313, + -0.0028425026684999466, + 0.0032324129715561867, + 0.0020136937964707613, + -0.009142953902482986, + -0.008169902488589287, + 0.01647336594760418, + 0.016833264380693436, + 0.00626386608928442, + 0.012560410425066948, + -0.011521675623953342, + -0.001403096946887672, + 0.016551047563552856, + 0.00876608956605196, + 0.0010410700924694538, + 0.008336570113897324, + 0.027417948469519615, + 0.004794261883944273, + 0.013013675808906555, + -0.001174045610241592, + 0.0007961374358274043, + -0.004045180510729551, + -0.007487817667424679, + 0.012666005641222, + 0.012361429631710052, + 0.010316749103367329, + 0.0004801460599992424, + -0.0037372400984168053, + -0.0019024161156266928, + 0.004317778628319502, + 0.0035864110104739666, + 0.002463540295138955, + -0.026907479390501976, + 0.004865566268563271, + 0.018384290859103203, + -0.007801632862538099, + -0.014358173124492168, + -0.010242528282105923, + -0.02149350382387638, + -0.02253013849258423, + 0.001938431989401579, + -0.0095552708953619, + -0.013084214180707932, + -0.012209773063659668, + -0.0026984247379004955, + -0.009917192161083221, + -0.004689977969974279, + 0.00597993703559041, + 0.012152415700256824, + -0.006578425411134958, + 0.00835496000945568, + 7.821033068466932e-05, + 0.006525642238557339, + 0.023403840139508247, + -0.007402850780636072, + 0.0034347916953265667, + -0.0032129946630448103, + -0.03318372368812561, + -0.003497983328998089, + 0.0275427233427763, + -0.0023356545716524124, + 0.019536789506673813, + 0.022125329822301865, + -0.0014545819722115993, + 0.0196485985070467, + 0.007431895472109318, + 0.04617717117071152, + 0.003183026798069477, + -0.0001240794372279197, + -0.013208074495196342, + -0.012754533439874649, + 0.010950661264359951, + -0.0009023158927448094, + -0.009995883330702782, + 0.009186591021716595, + -0.007056322414427996, + 0.0015098800649866462, + -0.011203287169337273, + 0.007018927950412035, + -0.016360701993107796, + -0.006408556364476681, + -0.005116238258779049, + -0.011964497156441212, + 0.0015083462931215763, + -0.008042804896831512, + 0.00804817397147417, + -0.008163321763277054, + -0.017742721363902092, + -0.019944537431001663, + 0.010662700980901718, + 0.014877211302518845, + 0.014720057137310505, + -0.009514421224594116, + -0.008938147686421871, + -0.002383305225521326, + -0.00967949628829956, + -0.006536663975566626, + 0.006364248692989349, + -0.002645410830155015, + 0.023829249665141106, + 0.012898381799459457, + -0.007361024618148804, + 0.008649168536067009, + 0.009376617148518562, + -0.004015657585114241, + 0.0055791293270885944, + 0.020899521186947823, + -0.023024125024676323, + 0.02528107352554798, + -0.002208806574344635, + 0.0037166972178965807, + -0.006802384275943041, + -0.006168688647449017, + 0.019424794241786003, + -0.060162968933582306, + -0.02281174622476101, + -0.02398216910660267, + 0.0018332996405661106, + 0.018422754481434822, + -0.0026235454715788364, + -0.0048584467731416225, + -0.015030420385301113, + 0.0023875695187598467, + 0.0146514056250453, + -0.005562593694776297, + -0.005805102176964283, + 0.028119396418333054, + -0.011522932909429073, + -0.002499168971553445, + 0.019667593762278557, + 0.005364013835787773, + 0.00554875610396266, + -0.004574395250529051, + 0.002609319519251585, + -0.003626369871199131, + 0.0029871449805796146, + -0.003476461861282587, + -0.011225476861000061, + 0.002887590089812875, + -0.006387121044099331, + -0.007281909231096506, + -0.011309565976262093, + 0.0035794961731880903, + -0.00807796511799097, + -0.015346957370638847, + 0.0022028556559234858, + -0.016080576926469803, + 0.018590543419122696, + -0.009886877611279488, + 0.006467617116868496, + -0.0017932435730472207, + 0.010027856566011906, + -0.021072138100862503, + 0.02127055637538433, + 0.006205061916261911, + -0.007439880631864071, + -0.0163869746029377, + 0.007007664069533348, + -0.07922595739364624, + -0.02788044698536396, + 0.005419603083282709, + 0.03386342152953148, + -0.004641999024897814, + -0.0039206743240356445, + -0.0012071700766682625, + -0.03564850240945816, + -0.010574089363217354, + 0.017245758324861526, + 0.007548045367002487, + -0.00984274223446846, + 0.007426795549690723, + 0.007688955403864384, + -0.007261746563017368, + -0.005260912235826254, + 0.0035509637091308832, + 0.005713252816349268, + -0.0029251608066260815, + 0.012324389070272446, + -0.0263815987855196, + -0.005066198762506247, + -0.00515421899035573, + -0.00032754961284808815, + 0.01111095491796732, + 0.016258783638477325, + -0.0038673256058245897, + 0.015378079377114773, + -0.010226603597402573, + -0.0069462452083826065, + -0.002115961629897356, + 0.01678987592458725, + -0.0015926017658784986, + 0.007000999059528112, + 0.0016695110825821757, + 0.0179409421980381, + 0.0005683738854713738, + -0.0028900448232889175, + -0.015612230636179447, + 0.0014259446179494262, + -0.0016478077741339803, + 0.0061606112867593765, + 0.0034755151718854904, + 0.004238127265125513, + -0.012538495473563671, + -0.004356002435088158, + -0.0012013213708996773, + 0.001364274648949504, + 0.015490523539483547, + -0.0038782490883022547, + 0.003340272232890129, + -0.006592144258320332, + -0.008534576743841171, + 0.003979245666414499, + -0.020625660195946693, + 0.008593186736106873, + 0.008636590093374252, + -0.005485687404870987, + 0.00790587067604065, + 0.004048253409564495, + -0.006531120277941227, + -0.003897344460710883, + -0.00498405285179615, + 0.015377508476376534, + 0.0016695013036951423, + 0.007361170835793018, + 0.013836637139320374, + -0.010259389877319336, + -0.0047974358312785625, + -0.001138202496804297, + -0.0056905597448349, + -0.011857145465910435, + -0.015879733487963676, + -0.008301971480250359, + -0.016409555450081825, + -0.017470408231019974, + -0.010062686167657375, + 0.0013008462265133858, + -0.005303734913468361, + -0.023209000006318092, + -0.003067594487220049, + 0.002258922206237912, + 0.011500023305416107, + 0.008368420414626598, + -0.00179075647611171, + 0.010551744140684605, + 0.0024265639949589968, + 0.01922677271068096, + -0.00039887946331873536, + 0.007761041168123484, + -0.019719403237104416, + 0.0050078462809324265, + 0.0014843168901279569, + 0.015451988205313683, + 0.004213083069771528, + -0.00911447498947382, + 0.03507094830274582, + 0.018271533772349358, + 0.007505957502871752, + -0.016487712040543556, + 0.0033922831062227488, + 0.005789589136838913, + -0.006577116437256336, + -0.004448184743523598, + 0.0044700936414301395, + -0.01825708895921707, + 0.034874629229307175, + 0.005891117732971907, + -0.06195620819926262, + -0.006472081411629915, + 0.005112671758979559, + -0.0016610316233709455, + -0.003357426030561328, + 0.0072632101364433765, + -0.006647227797657251, + -0.012382269836962223, + -0.001497423043474555, + -0.008515103720128536, + -0.016057796776294708, + 0.0053186905570328236, + 0.0018818326061591506, + 0.013092250563204288, + -0.00409690011292696, + 0.00935771968215704, + -0.005553907249122858, + -0.0029800839256495237, + 0.019609834998846054, + 0.015916481614112854, + -0.0023287772201001644, + 0.015194394625723362, + -0.03449421003460884, + 0.013935690745711327, + 0.004089877009391785, + 0.005322540178894997, + 0.02320192940533161, + -0.0069959876127541065, + 0.010370815172791481, + 0.0027514633256942034, + -0.0017691432731226087, + -0.02245207503437996, + 0.0028986085671931505, + 0.0007137122447602451, + 0.014847351238131523, + 0.006305910646915436, + 0.0030098671559244394, + 0.00031528438557870686, + 0.013657396659255028, + 0.02907228283584118, + 0.0026079448871314526, + 0.01035858690738678, + 0.0022104675881564617, + -0.002768238540738821, + 0.0009848810732364655, + 0.019584322348237038, + 0.007346856873482466, + -0.021103356033563614, + 0.002177639165893197, + -0.015655530616641045, + 0.0018482072046026587, + 0.003584992839023471, + 0.003943829331547022, + 0.01722690463066101, + -0.003469107672572136, + -0.004341100342571735, + -0.003164398716762662, + 0.022719882428646088, + -0.011052196845412254, + 0.005934086162596941, + -0.01381641998887062, + 0.019735975190997124, + 0.03166123852133751, + -0.012361296452581882, + -0.0657259076833725, + -0.020637642592191696, + -0.0144069604575634, + 0.0038636079989373684, + 0.0029545302968472242, + -0.016413990408182144, + -0.00582096865400672, + 0.02416626550257206, + 0.010460251942276955, + 0.008920969441533089, + -0.01824953407049179, + -0.00343599496409297, + 0.005061381962150335, + -0.0028775560203939676, + -0.010187787003815174, + 0.008179591968655586, + 0.004913522396236658, + -0.00927993468940258, + 0.010684316977858543, + -0.011790146119892597, + 0.00997245218604803, + -0.0018959726439788938, + 0.012626116164028645, + -0.004742871969938278, + -0.01163154374808073, + -0.026583513244986534, + 0.011911923997104168, + 0.0014231035020202398, + -0.00281972112134099, + -0.01839648373425007, + -0.012476025149226189, + 0.027643606066703796, + 0.012030738405883312, + -0.025415875017642975, + -0.001429753378033638, + 0.001197646139189601, + -0.002398040844127536, + -0.00530348950996995, + -0.004499646369367838, + -0.01976742222905159, + -0.012912314385175705, + -0.014712395146489143, + 0.008343123830854893, + 0.02034182660281658, + 0.002616897923871875, + 0.0015432004583999515, + -0.003267887746915221, + -0.001140942913480103, + -0.004952054005116224, + -0.0037483409978449345, + 0.04249156266450882, + -0.007525091990828514, + -0.010147330351173878, + 0.01088855229318142, + 0.013447481207549572, + 0.006853216327726841, + 0.00464027002453804, + 0.004488260950893164, + -0.013376287184655666, + -0.003530818736180663, + 0.009166043251752853, + -0.00861982349306345, + 0.00043307553278282285, + -0.002710925182327628, + -0.019515907391905785, + -0.0064010960049927235, + -0.011096678674221039, + -0.017314651980996132, + 0.007288741413503885, + -0.013647892512381077, + -0.005354726687073708, + -0.004262795206159353, + 0.007126353681087494, + -0.003714007558301091, + -0.009916716255247593, + 0.006799359805881977, + 0.010689862072467804, + 0.0006710236775688827, + 0.019833408296108246, + 0.0042415279895067215, + -0.037837184965610504, + 0.01109075453132391, + 0.004448003601282835, + -0.00013194892380852252, + 0.002669510431587696, + -0.010541283525526524, + -0.011674895882606506, + 0.010805860161781311, + -0.009471300058066845, + -0.011376600712537766, + -0.009376393631100655, + -0.001986261224374175, + 0.007262710947543383, + 0.009168902412056923, + 0.0020013221073895693, + -0.0007376068388111889, + 0.006864301394671202, + 0.0004386409418657422, + -0.006847064010798931, + -0.015706578269600868, + -0.004035645630210638, + -0.004543020855635405, + 0.010142700746655464, + 0.0037561769131571054, + 0.026716075837612152, + 0.0003796402597799897, + 0.004714024253189564, + -0.005196633283048868, + 0.0038792528212070465, + -0.05187200382351875, + -0.005104644689708948, + 0.020166892558336258, + -0.007743534632027149, + -0.02975725382566452, + -0.03640946373343468, + 0.01677963323891163, + -0.03135530278086662, + 0.0013304955791682005, + -0.008282637223601341, + 0.014279515482485294, + 0.0021158093586564064, + 0.011999614536762238, + -0.017264438793063164, + -0.0017726566875353456, + 0.010676167905330658, + 0.005884714424610138, + 0.013384230434894562, + -0.0012105393689125776, + -0.004347457550466061, + -0.00231130956672132, + 0.001117232721298933, + 0.012782099656760693, + 0.01398566085845232, + -0.040582627058029175, + -0.02080669440329075, + -0.0053053973242640495, + 0.002612998243421316, + 0.016347268596291542, + -0.039837438613176346, + 0.011399800889194012, + 0.014724153093993664, + -0.007089031860232353, + 0.02656799741089344, + -0.02546560764312744, + -0.018734710291028023, + 0.0007240134291350842, + -0.004965181928128004, + 0.01908096857368946, + 0.01797887682914734, + -0.020701510831713676, + -0.007285646628588438, + 8.985931344795972e-05, + 0.005762308370321989, + -0.001478393911384046, + -0.009578519500792027, + -0.010313746519386768, + -0.019702263176441193, + -0.013756593689322472, + -0.0028065356891602278, + 0.013810430653393269, + -0.029696263372898102, + -0.01942763850092888, + 0.01105937547981739, + 0.006720618810504675, + -0.015079755336046219, + -0.008852972649037838, + -0.004303340800106525, + 0.016543351113796234, + -0.005754257086664438, + -0.006127804517745972, + -0.026734357699751854, + 0.0017168432241305709, + -0.001718433341011405, + 0.012795966118574142, + -0.0031854715198278427, + -0.000557648774702102, + 0.0007116738706827164, + 0.003170877927914262, + -0.011315016075968742, + 0.023988952860236168, + 0.026189561933279037, + -0.0027429608162492514, + 0.015148050151765347, + -0.00766671122983098, + 0.003756619291380048, + -0.016823122277855873, + -0.009613719768822193, + 0.007587088271975517, + -0.002959110541269183, + 0.01399114727973938, + 0.010622652247548103, + -0.016022587195038795, + 0.009324519895017147, + -0.007391254883259535, + 0.002719693351536989, + 0.007309063337743282, + -0.0034797743428498507, + 0.0562906451523304, + 0.005160065833479166, + -0.008043410256505013, + -0.009310608729720116, + 0.00667001586407423, + 0.0003646060358732939, + 0.0050510806031525135, + 0.015019181184470654, + -0.009972631931304932, + -0.03570060431957245, + 0.012864458374679089, + 0.04095259681344032, + -0.0010812242981046438, + 0.0031923081260174513, + 0.011122796684503555, + 0.1283637136220932, + -0.028704997152090073, + -0.028308704495429993, + 0.016754386946558952, + -0.003272195113822818, + -0.01082681491971016, + -0.016240917146205902, + 0.023332083597779274, + 0.012286140583455563, + -0.0011067771119996905, + -0.052307408303022385, + 0.0033665166702121496, + -0.0028980423230677843, + -0.01084961462765932, + 0.015117427334189415, + -0.011977862566709518, + -0.008029605261981487, + 0.019260937348008156, + 0.0058240569196641445, + -0.02464125119149685, + 0.011143708601593971, + -0.0008706917287781835, + 0.03279055282473564, + 0.005418133921921253, + 0.011395628564059734, + -0.0032616383396089077, + -0.01144370436668396, + 0.022464372217655182, + 0.022429581731557846, + -0.0068843853659927845, + 0.010980126447975636, + -0.009394318796694279, + -0.012188713066279888, + -0.002959088422358036, + -0.003477970138192177, + 0.007695713080465794, + 0.006878781598061323, + -0.0035800831392407417, + -0.00160782050807029, + -0.04455837607383728, + -0.0030478299595415592, + 0.0018085574265569448, + 0.018341004848480225, + 0.011983311735093594, + -0.017588984221220016, + 0.019988862797617912, + 0.003924007527530193, + -0.003517263336107135, + -0.0031142879743129015, + -0.004395765718072653, + -0.004816590342670679, + -0.010017644613981247, + -0.009662714786827564, + 0.0005214190459810197, + 0.005220230668783188, + -0.00879519060254097, + -0.002467290498316288, + -0.017420481890439987, + 0.009756222367286682, + -0.0009167435928247869, + -0.0030262174550443888, + 0.018001871183514595, + 0.010495787486433983, + -0.016474055126309395, + -0.02433532476425171, + -0.00844273529946804, + 0.011152602732181549, + 0.0004018684849143028, + -0.005059216637164354, + -0.022433528676629066, + -0.005472222343087196, + -0.014673872850835323, + -0.006082497537136078, + -0.05370490625500679, + 0.00012074871483491734, + 0.005943971686065197, + 0.006143524777144194, + -0.002632595133036375, + -0.011522267945110798, + 0.009023986756801605, + -0.009773830883204937, + 0.0034727875608950853, + -0.0032375087030231953, + -0.0002949668269138783, + -0.014867693185806274, + 0.007757530082017183, + 0.00022718089167028666, + -0.008648760616779327, + 0.012547854334115982, + 0.005969881545752287, + 0.005935147870332003, + -0.008470745757222176, + 0.010666294023394585, + -0.008054745383560658, + -0.07249145954847336, + 0.006319514010101557, + 0.01115881372243166, + 0.005281304474920034, + 0.0038096869830042124, + -0.0005909273168072104, + 0.008159256540238857, + -0.00941863190382719, + -0.005065915174782276, + 0.0027173745911568403, + 0.023775923997163773, + -0.009003423154354095, + 0.0016939141787588596, + 0.004332554526627064, + -0.0014161558356136084, + -0.005688633304089308, + -0.005693497601896524, + 0.008247049525380135, + -0.010859109461307526, + -0.004202027805149555, + -0.017888342961668968, + -0.006899502128362656, + -0.002054117154330015, + 0.0028496449813246727, + -0.01088014431297779, + 0.0027994494885206223, + -0.004721255507320166, + 0.0015802356647327542, + 0.005869870539754629, + 0.0032634863164275885, + -0.0024718870408833027, + -0.01040685549378395, + 0.0051142075099051, + 0.0008331027929671109, + -0.015952469781041145, + -0.007711038924753666, + -0.0026961127296090126, + -0.002666323911398649, + -0.018021445721387863, + 0.001310491468757391, + -0.01279436144977808, + 0.016683727502822876, + -0.005520686041563749, + 0.0026028896681964397, + 0.010971864685416222, + 0.007421482354402542, + 0.014096439816057682, + 0.0045592160895466805, + -0.00935429148375988, + -0.0024861337151378393, + 0.007644015830010176, + 0.008923516608774662, + -0.0009817846585065126, + 0.007495856378227472, + 0.013618332333862782, + -0.012770401313900948, + -0.016564171761274338, + 0.0006286321440711617, + -0.011687454767525196, + 0.004778402391821146, + 0.0048357658088207245, + 0.009606592357158661, + -0.00771834421902895, + 0.021416066214442253, + -0.003217598656192422, + -0.00910928100347519, + 0.021316714584827423, + -0.004881054628640413, + -0.003644288517534733, + 0.014925387687981129, + -0.00337241287343204, + 0.015323291532695293, + 0.0045631928369402885, + 0.04746655747294426, + 0.005071279592812061, + 0.01602376438677311, + -0.007695366162806749, + -0.024546010419726372, + -0.02267001010477543, + -0.006185268517583609, + 0.013161041773855686, + 0.0055510071106255054, + -0.019409365952014923, + 0.0007900785421952605, + 0.01734340563416481, + 0.002297768136486411, + 0.007977853529155254, + 0.015147528611123562, + 0.04195673391222954, + 0.026089347898960114, + -0.004524372052401304, + -0.004695751704275608, + 0.01936998777091503, + 0.0011578191770240664, + -0.001898327493108809, + -0.00428495928645134, + 0.003575903596356511, + -0.01425930205732584, + 0.006460873875766993, + 0.027069946750998497, + 0.0018709177384153008, + 0.012739486061036587, + 0.011064897291362286, + -0.004048272967338562, + 0.0012056715786457062, + 0.01718083955347538, + 0.01582416519522667, + 0.0037609937135130167, + 0.0031954003497958183, + -0.04218340665102005, + -0.004232326988130808, + -0.008471866138279438, + 0.00024051929358392954, + 0.0030364994890987873, + 0.00848176795989275, + 0.015397652983665466, + -0.02385835163295269, + -0.012756610289216042, + 0.010674454271793365, + -0.018864139914512634, + 0.01411425694823265, + -0.008529291488230228, + -0.008695864118635654, + 0.0072135915979743 + ] + } + }, + "metadata": { + "emotion": "happy", + "source": "emotion_direction_spec", + "steering_units": "AddDirectionPatch strength multiplies raw_vector; use residual_norm_by_layer to encode residual-norm fractions.", + "usage": "qwen_smoke_export", + "vector_space_kind": "story" + }, + "name": "emotion__happy", + "summary": { + "emotion": "happy", + "layer_count": 1, + "scale": 1.0, + "source": "vector" + } +} \ No newline at end of file diff --git a/papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/results/score_emotions_results.json b/papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/results/score_emotions_results.json new file mode 100644 index 0000000..5ec62a1 --- /dev/null +++ b/papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/results/score_emotions_results.json @@ -0,0 +1,251 @@ +{ + "coordinates": [ + { + "layers": [ + 24 + ], + "metadata": { + "emotion": "happy", + "vector_space_kind": "story" + }, + "name": "emotion__happy", + "source_kind": "coordinate_result" + }, + { + "layers": [ + 24 + ], + "metadata": { + "emotion": "sad", + "vector_space_kind": "story" + }, + "name": "emotion__sad", + "source_kind": "coordinate_result" + } + ], + "emotion_vector_space": { + "concept_count": 2, + "kind": "emotion_vector_space_result", + "layer_count": 4, + "metadata": { + "formula": "mean(concept examples) - mean(concept means)", + "model_id": "Qwen/Qwen3-8B", + "neutral_project_out": true, + "paper": "sofroniew2026twheemotion", + "pooling": "mean", + "source": "emotion_vector_space_spec", + "token_selector": { + "kind": "full_sequence", + "value": null + } + }, + "vector_space_kind": "story" + }, + "example_summaries": [ + { + "coordinate": "emotion__happy", + "emotion": "happy", + "example_key": "happy_a", + "layer": 24, + "metrics": { + "max": -164.4060821533203, + "mean": -164.4060821533203 + }, + "slice_count": 1 + }, + { + "coordinate": "emotion__sad", + "emotion": "sad", + "example_key": "happy_a", + "layer": 24, + "metrics": { + "max": 164.40609741210938, + "mean": 164.40609741210938 + }, + "slice_count": 1 + }, + { + "coordinate": "emotion__happy", + "emotion": "happy", + "example_key": "happy_b", + "layer": 24, + "metrics": { + "max": -137.0406951904297, + "mean": -137.0406951904297 + }, + "slice_count": 1 + }, + { + "coordinate": "emotion__sad", + "emotion": "sad", + "example_key": "happy_b", + "layer": 24, + "metrics": { + "max": 137.0406951904297, + "mean": 137.0406951904297 + }, + "slice_count": 1 + }, + { + "coordinate": "emotion__happy", + "emotion": "happy", + "example_key": "sad_a", + "layer": 24, + "metrics": { + "max": -263.2185974121094, + "mean": -263.2185974121094 + }, + "slice_count": 1 + }, + { + "coordinate": "emotion__sad", + "emotion": "sad", + "example_key": "sad_a", + "layer": 24, + "metrics": { + "max": 263.2185974121094, + "mean": 263.2185974121094 + }, + "slice_count": 1 + }, + { + "coordinate": "emotion__happy", + "emotion": "happy", + "example_key": "sad_b", + "layer": 24, + "metrics": { + "max": -233.8968963623047, + "mean": -233.8968963623047 + }, + "slice_count": 1 + }, + { + "coordinate": "emotion__sad", + "emotion": "sad", + "example_key": "sad_b", + "layer": 24, + "metrics": { + "max": 233.8968963623047, + "mean": 233.8968963623047 + }, + "slice_count": 1 + } + ], + "feature": "story_residual", + "kind": "emotion_score_result", + "metric": "signed_dot", + "pooling": "mean", + "rows": [ + { + "coordinate": "emotion__happy", + "emotion": "happy", + "example_key": "happy_a", + "layer": 24, + "role": null, + "score": -164.4060821533203, + "slice_index": 1, + "slice_name": "assistant_response", + "slice_token_count": 28, + "tags": {}, + "unit": "assistant_response" + }, + { + "coordinate": "emotion__sad", + "emotion": "sad", + "example_key": "happy_a", + "layer": 24, + "role": null, + "score": 164.40609741210938, + "slice_index": 1, + "slice_name": "assistant_response", + "slice_token_count": 28, + "tags": {}, + "unit": "assistant_response" + }, + { + "coordinate": "emotion__happy", + "emotion": "happy", + "example_key": "happy_b", + "layer": 24, + "role": null, + "score": -137.0406951904297, + "slice_index": 1, + "slice_name": "assistant_response", + "slice_token_count": 31, + "tags": {}, + "unit": "assistant_response" + }, + { + "coordinate": "emotion__sad", + "emotion": "sad", + "example_key": "happy_b", + "layer": 24, + "role": null, + "score": 137.0406951904297, + "slice_index": 1, + "slice_name": "assistant_response", + "slice_token_count": 31, + "tags": {}, + "unit": "assistant_response" + }, + { + "coordinate": "emotion__happy", + "emotion": "happy", + "example_key": "sad_a", + "layer": 24, + "role": null, + "score": -263.2185974121094, + "slice_index": 1, + "slice_name": "assistant_response", + "slice_token_count": 22, + "tags": {}, + "unit": "assistant_response" + }, + { + "coordinate": "emotion__sad", + "emotion": "sad", + "example_key": "sad_a", + "layer": 24, + "role": null, + "score": 263.2185974121094, + "slice_index": 1, + "slice_name": "assistant_response", + "slice_token_count": 22, + "tags": {}, + "unit": "assistant_response" + }, + { + "coordinate": "emotion__happy", + "emotion": "happy", + "example_key": "sad_b", + "layer": 24, + "role": null, + "score": -233.8968963623047, + "slice_index": 1, + "slice_name": "assistant_response", + "slice_token_count": 20, + "tags": {}, + "unit": "assistant_response" + }, + { + "coordinate": "emotion__sad", + "emotion": "sad", + "example_key": "sad_b", + "layer": 24, + "role": null, + "score": 233.8968963623047, + "slice_index": 1, + "slice_name": "assistant_response", + "slice_token_count": 20, + "tags": {}, + "unit": "assistant_response" + } + ], + "summary": { + "coordinate_count": 2, + "example_summary_count": 8, + "layer_count": 1, + "slice_row_count": 8 + }, + "vector_space_kind": "story" +} \ No newline at end of file diff --git a/papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/summary.json b/papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/summary.json new file mode 100644 index 0000000..cbb70a6 --- /dev/null +++ b/papers/voice/emotions/replication/reports/qwen_smoke/report_1c03a450cf2b_f00fbba3/summary.json @@ -0,0 +1,8 @@ +{ + "example_count": 4, + "figures": {}, + "input_count": 4, + "step_summaries": {}, + "tables": {}, + "template": "voice_emotions_qwen_smoke" +} \ No newline at end of file diff --git a/papers/voice/emotions/replication/scripts/import_llama70b_generation_to_neon.py b/papers/voice/emotions/replication/scripts/import_llama70b_generation_to_neon.py new file mode 100644 index 0000000..a48e678 --- /dev/null +++ b/papers/voice/emotions/replication/scripts/import_llama70b_generation_to_neon.py @@ -0,0 +1,887 @@ +"""Import a Modal generation artifact into the Neon generated-row table. + +This intentionally runs the heavy read inside Modal, next to the `xenon-data` +volume. The local process only receives a small summary, not the full +`result.json` payload. +""" + +from __future__ import annotations + +import hashlib +import json +import os +import re +from collections import Counter +from pathlib import Path +from typing import Any, Iterator, Mapping + +import modal + + +APP_NAME = "emotion-llama70b-generation-neon-import" +VOLUME_NAME = "xenon-data" +VOLUME_MOUNT = "/xenon-data" +DB_ENV_VAR = "XENON_NEON_DATABASE_URL" +DEFAULT_TABLE = "papers_voice_emotions_llama70b_generated_rows_v1" +DEFAULT_ARTIFACT_PATH = ( + "/artifacts/model-assets/vectors/emotions/llama-3.3-70b/" + "sofroniew-2026/v1/generation/generation_run_1_fbeb75cf4479" +) + +ASSET_ID = "emotions-llama-3.3-70b-sofroniew-2026-v1" +ASSET_VERSION = "v1" +MODEL_ID = "meta-llama/Llama-3.3-70B-Instruct" +WORKFLOW_NAME = "papers_voice_emotions_llama33_70b_generation" + + +image = modal.Image.debian_slim(python_version="3.13").pip_install( + "ijson>=3.3.0", + "psycopg[binary]>=3.2.0", +) +volume = modal.Volume.from_name(VOLUME_NAME) +app = modal.App(APP_NAME) + + +@app.function( + image=image, + volumes={VOLUME_MOUNT: volume}, + secrets=[modal.Secret.from_name("xenon-neon")], + cpu=4, + memory=32 * 1024, + timeout=60 * 60 * 6, +) +def import_generation_artifact( + artifact_path: str = DEFAULT_ARTIFACT_PATH, + table: str = DEFAULT_TABLE, + mode: str = "full", + stories_per_prompt: int = 12, + replace_mode_rows: bool = False, + log_every_prompts: int = 100, +) -> dict[str, Any]: + """Stream the generated rows artifact into Neon with COPY.""" + import psycopg + from psycopg import sql + + result_path = _volume_path(artifact_path) / "result.json" + manifest_path = _volume_path(artifact_path) / "manifest.json" + if not result_path.exists(): + raise FileNotFoundError(f"Missing result payload: {result_path}") + + db_url = os.getenv(DB_ENV_VAR, "").strip() + if not db_url: + raise RuntimeError(f"{DB_ENV_VAR} must be set via Modal secret xenon-neon") + + generation_config = _generation_config_from_manifest(manifest_path, stories_per_prompt=stories_per_prompt) + generation_config_json = json.dumps(generation_config, sort_keys=True) + + summary = _ImportSummary(mode=mode, stories_per_prompt=stories_per_prompt) + table_ident = sql.Identifier(table) + stage_ident = sql.Identifier("emotion_llama70b_generated_rows_stage") + + with psycopg.connect(db_url) as conn: + with conn.cursor() as cur: + _ensure_table(cur, table_ident=table_ident, table=table) + if replace_mode_rows: + cur.execute( + sql.SQL("DELETE FROM {} WHERE asset_id = %s AND asset_version = %s AND mode = %s").format( + table_ident + ), + (ASSET_ID, ASSET_VERSION, mode), + ) + _create_stage(cur, stage_ident=stage_ident) + with cur.copy(_copy_sql(stage_ident=stage_ident)) as copy: + for prompt_index, raw in enumerate(_iter_generation_rows(result_path), start=1): + parsed_rows = _parsed_rows_for_raw( + raw=raw, + mode=mode, + stories_per_prompt=stories_per_prompt, + summary=summary, + ) + for row in parsed_rows: + copy.write_row(_db_row_payload(row, mode=mode, generation_config_json=generation_config_json)) + if log_every_prompts and prompt_index % log_every_prompts == 0: + print( + "import progress " + f"prompts={prompt_index} rows={summary.persisted_row_count} " + f"incomplete={len(summary.incomplete_prompts)}" + ) + _upsert_stage(cur, table_ident=table_ident, stage_ident=stage_ident) + _ensure_indexes(cur, table_ident=table_ident, table=table) + cur.execute(sql.SQL("ANALYZE {}").format(table_ident)) + conn.commit() + + with conn.cursor() as cur: + cur.execute( + sql.SQL( + """ + SELECT row_role, split, count(*) + FROM {} + WHERE asset_id = %s AND asset_version = %s AND mode = %s + GROUP BY row_role, split + ORDER BY row_role, split + """ + ).format(table_ident), + (ASSET_ID, ASSET_VERSION, mode), + ) + neon_counts = [{"row_role": row[0], "split": row[1], "count": int(row[2])} for row in cur.fetchall()] + + payload = summary.to_dict() + payload["table"] = table + payload["artifact_path"] = artifact_path + payload["result_bytes"] = result_path.stat().st_size + payload["generation_config"] = generation_config + payload["neon_counts"] = neon_counts + print(json.dumps(payload, indent=2, sort_keys=True)) + return payload + + +@app.local_entrypoint() +def main( + artifact_path: str = DEFAULT_ARTIFACT_PATH, + table: str = DEFAULT_TABLE, + mode: str = "full", + stories_per_prompt: int = 12, + replace_mode_rows: bool = False, +) -> None: + summary = import_generation_artifact.remote( + artifact_path=artifact_path, + table=table, + mode=mode, + stories_per_prompt=stories_per_prompt, + replace_mode_rows=replace_mode_rows, + ) + print(json.dumps(summary, indent=2, sort_keys=True)) + + +class _ImportSummary: + def __init__(self, *, mode: str, stories_per_prompt: int) -> None: + self.mode = mode + self.stories_per_prompt = stories_per_prompt + self.prompt_count = 0 + self.story_prompt_count = 0 + self.neutral_prompt_count = 0 + self.persisted_row_count = 0 + self.story_row_count = 0 + self.neutral_row_count = 0 + self.length_finish_count = 0 + self.filtered_direct_emotion_mentions = 0 + self.row_role_counts: Counter[str] = Counter() + self.split_counts: Counter[str] = Counter() + self.emotion_counts: Counter[str] = Counter() + self.incomplete_prompts: list[dict[str, Any]] = [] + self.filtered_direct_emotion_examples: list[dict[str, Any]] = [] + + def record_prompt( + self, + *, + source_prompt_key: str, + row_role: str, + parsed_count: int, + finish_reason: str, + generated_token_count: int, + ) -> None: + self.prompt_count += 1 + if row_role == "neutral": + self.neutral_prompt_count += 1 + else: + self.story_prompt_count += 1 + if finish_reason == "length": + self.length_finish_count += 1 + if parsed_count < self.stories_per_prompt and len(self.incomplete_prompts) < 50: + self.incomplete_prompts.append( + { + "source_prompt_key": source_prompt_key, + "row_role": row_role, + "parsed_count": parsed_count, + "expected_count": self.stories_per_prompt, + "finish_reason": finish_reason, + "generated_token_count": generated_token_count, + } + ) + + def record_row(self, row: Mapping[str, Any]) -> None: + self.persisted_row_count += 1 + row_role = str(row["row_role"]) + self.row_role_counts[row_role] += 1 + if row_role == "neutral": + self.neutral_row_count += 1 + else: + self.story_row_count += 1 + self.split_counts[str(row["split"])] += 1 + if row.get("emotion"): + self.emotion_counts[str(row["emotion"])] += 1 + + def record_filtered_direct_mention( + self, + *, + source_prompt_key: str, + emotion: str, + block_index: int, + finish_reason: str, + generated_token_count: int, + ) -> None: + self.filtered_direct_emotion_mentions += 1 + if len(self.filtered_direct_emotion_examples) < 20: + self.filtered_direct_emotion_examples.append( + { + "source_prompt_key": source_prompt_key, + "emotion": emotion, + "block_index": block_index, + "finish_reason": finish_reason, + "generated_token_count": generated_token_count, + } + ) + + def to_dict(self) -> dict[str, Any]: + return { + "mode": self.mode, + "stories_per_prompt": self.stories_per_prompt, + "prompt_count": self.prompt_count, + "story_prompt_count": self.story_prompt_count, + "neutral_prompt_count": self.neutral_prompt_count, + "persisted_row_count": self.persisted_row_count, + "story_row_count": self.story_row_count, + "neutral_row_count": self.neutral_row_count, + "length_finish_count": self.length_finish_count, + "incomplete_prompt_count": len(self.incomplete_prompts), + "incomplete_prompts": self.incomplete_prompts, + "filtered_direct_emotion_mentions": self.filtered_direct_emotion_mentions, + "filtered_direct_emotion_examples": self.filtered_direct_emotion_examples, + "row_role_counts": dict(sorted(self.row_role_counts.items())), + "split_counts": dict(sorted(self.split_counts.items())), + "emotion_count": len(self.emotion_counts), + } + + +def _volume_path(artifact_path: str) -> Path: + path = artifact_path.strip() + if path.startswith(f"{VOLUME_NAME}:"): + path = path.split(":", 1)[1] + return Path(VOLUME_MOUNT) / path.lstrip("/") + + +def _iter_generation_rows(result_path: Path) -> Iterator[Mapping[str, Any]]: + import ijson + + with result_path.open("rb") as handle: + current: dict[str, Any] | None = None + labels: dict[str, Any] | None = None + for prefix, event, value in ijson.parse(handle): + if prefix == "rows.item" and event == "start_map": + labels = {} + current = {"example": {"labels": labels}, "_generated_token_count": 0} + continue + if current is None: + continue + if prefix == "rows.item" and event == "end_map": + yield current + current = None + labels = None + continue + if prefix == "rows.item.generated_text" and event == "string": + current["generated_text"] = value + elif prefix == "rows.item.finish_reason" and event == "string": + current["finish_reason"] = value + elif prefix == "rows.item.generated_token_ids.item" and event == "number": + current["_generated_token_count"] += 1 + elif prefix == "rows.item.example.key" and event == "string": + current["example"]["key"] = value + elif prefix.startswith("rows.item.example.labels.") and event in {"string", "number", "boolean", "null"}: + if labels is not None: + labels[prefix.rsplit(".", 1)[-1]] = value + + +def _parsed_rows_for_raw( + *, + raw: Mapping[str, Any], + mode: str, + stories_per_prompt: int, + summary: _ImportSummary, +) -> list[dict[str, Any]]: + source = _row_mapping(_row_mapping(raw).get("example")) + labels = dict(_row_mapping(source.get("labels"))) + role = "neutral" if str(labels.get("row_role") or "") == "neutral" else "story" + label = "dialogue" if role == "neutral" else "story" + finish_reason = str(raw.get("finish_reason") or "") + generated_token_count = int(raw.get("_generated_token_count") or 0) + prompt_key = str(source.get("key") or "") + generated_text = str(raw.get("generated_text") or "") + blocks = ( + _parse_neutral_blocks_fast(generated_text, stories_per_prompt=stories_per_prompt) + if role == "neutral" + else _parse_blocks(generated_text, label=label, stories_per_prompt=stories_per_prompt) + ) + summary.record_prompt( + source_prompt_key=prompt_key, + row_role=role, + parsed_count=min(len(blocks), stories_per_prompt), + finish_reason=finish_reason, + generated_token_count=generated_token_count, + ) + if role == "neutral": + rows = _parsed_neutral_example( + raw=raw, + source=source, + labels=labels, + blocks=blocks, + mode=mode, + stories_per_prompt=stories_per_prompt, + ) + else: + rows = _parsed_story_example( + raw=raw, + source=source, + labels=labels, + blocks=blocks, + mode=mode, + stories_per_prompt=stories_per_prompt, + summary=summary, + finish_reason=finish_reason, + generated_token_count=generated_token_count, + ) + for row in rows: + summary.record_row(row) + return rows + + +def _parsed_story_example( + *, + raw: Mapping[str, Any], + source: Mapping[str, Any], + labels: Mapping[str, Any], + blocks: list[str], + mode: str, + stories_per_prompt: int, + summary: _ImportSummary, + finish_reason: str, + generated_token_count: int, +) -> list[dict[str, Any]]: + rows: list[dict[str, Any]] = [] + split = str(labels.get("split") or "") + emotion = str(labels.get("emotion") or "") + topic = str(labels.get("topic") or "") + prompt_key = str(source.get("key") or "") + for block_index, text in enumerate(blocks[:stories_per_prompt]): + if _contains_exact_word(text, emotion): + summary.record_filtered_direct_mention( + source_prompt_key=prompt_key, + emotion=emotion, + block_index=block_index, + finish_reason=finish_reason, + generated_token_count=generated_token_count, + ) + continue + rows.append( + { + "example_id": _example_id( + mode=mode, + row_role="story", + split=split, + emotion=emotion, + topic=topic, + source_prompt_key=prompt_key, + block_index=block_index, + ), + "row_role": "story", + "split": split, + "emotion": emotion, + "topic": topic, + "source_prompt_key": prompt_key, + "block_index": block_index, + "text": text, + "direct_emotion_mention": False, + "metadata": { + "source": "llama70b_generated_story", + "n_stories_requested": int(labels.get("n_stories") or stories_per_prompt), + "source_labels": dict(labels), + }, + } + ) + return rows + + +def _parsed_neutral_example( + *, + raw: Mapping[str, Any], + source: Mapping[str, Any], + labels: Mapping[str, Any], + blocks: list[str], + mode: str, + stories_per_prompt: int, +) -> list[dict[str, Any]]: + rows: list[dict[str, Any]] = [] + topic = str(labels.get("topic") or "") + prompt_key = str(source.get("key") or "") + for block_index, text in enumerate(blocks[:stories_per_prompt]): + normalized = _normalize_neutral_dialogue(text) + rows.append( + { + "example_id": _example_id( + mode=mode, + row_role="neutral", + split="neutral", + emotion="neutral", + topic=topic, + source_prompt_key=prompt_key, + block_index=block_index, + ), + "row_role": "neutral", + "split": "neutral", + "emotion": None, + "topic": topic, + "source_prompt_key": prompt_key, + "block_index": block_index, + "text": normalized, + "direct_emotion_mention": False, + "metadata": { + "source": "llama70b_generated_neutral_dialogue", + "n_dialogues_requested": int(labels.get("n_stories") or stories_per_prompt), + "source_labels": dict(labels), + }, + } + ) + return rows + + +def _parse_blocks(text: str, *, label: str, stories_per_prompt: int) -> list[str]: + label_pattern = re.compile(rf"(?im)^\s*\[?\s*{re.escape(label)}\s+\d+\s*\]?\s*$") + if label_pattern.search(text): + parts = label_pattern.split(text) + if parts and parts[0].strip(): + parts = parts[1:] + chunks = [chunk.strip() for chunk in parts if chunk.strip()] + return _dialogue_chunks(chunks) if label == "dialogue" else _story_chunks(chunks) + if label == "dialogue": + heading_chunks = _dialogue_heading_chunks(text) + if heading_chunks: + return heading_chunks + return [chunk.strip() for chunk in re.split(r"\n\s*\n", text) if chunk.strip()][:stories_per_prompt] + + +def _parse_neutral_blocks_fast(text: str, *, stories_per_prompt: int) -> list[str]: + lines = text.replace("\r\n", "\n").replace("\r", "\n").splitlines() + starts = [index for index, line in enumerate(lines) if _is_dialogue_marker(line.strip())] + chunks: list[str] = [] + if starts: + for start_index, start in enumerate(starts): + stop = starts[start_index + 1] if start_index + 1 < len(starts) else len(lines) + chunk = "\n".join(lines[start:stop]).strip() + if chunk: + chunks.append(chunk) + else: + chunks = [chunk.strip() for chunk in text.split("\n\n") if chunk.strip()] + + cleaned: list[str] = [] + for chunk in chunks: + trimmed = _strip_dialogue_heading(_trim_trailing_empty_speaker(chunk)) + if _has_person_then_ai_turn(trimmed): + cleaned.append(trimmed) + if len(cleaned) >= stories_per_prompt: + break + return cleaned + + +def _is_dialogue_marker(text: str) -> bool: + if not text: + return False + lowered = text.lower().strip("[] ") + if lowered.startswith("dialogue "): + suffix = lowered.removeprefix("dialogue ").strip().rstrip(":") + return suffix.isdigit() + return lowered.rstrip(":").isdigit() + + +def _story_chunks(chunks: list[str]) -> list[str]: + return [cleaned for chunk in chunks for cleaned in [_trim_story_meta(chunk)] if cleaned] + + +def _trim_story_meta(chunk: str) -> str: + paragraphs = [paragraph.strip() for paragraph in re.split(r"\n\s*\n", chunk.strip()) if paragraph.strip()] + kept: list[str] = [] + for paragraph in paragraphs: + if _looks_like_story_meta_paragraph(paragraph): + break + trimmed = _trim_inline_story_meta(paragraph) + if trimmed: + kept.append(trimmed) + if trimmed != paragraph: + break + return "\n\n".join(kept).strip() + + +def _trim_inline_story_meta(paragraph: str) -> str: + lower = paragraph.lower() + starts: list[int] = [] + for marker in ( + "also, are there any other instructions", + "also, please let me know", + "please provide feedback", + "thanks! (i have made", + "please disregard", + "the stories aim", + "the stories explore", + "to further enhance the stories", + ): + position = lower.find(marker) + if position >= 0: + starts.append(position) + let_me_know = lower.find("let me know if") + if let_me_know >= 0 and any( + marker in lower[let_me_know:] + for marker in ("requirement", "stories", "instruction", "response", "revise", "adjustment", "improve", "feedback") + ): + starts.append(let_me_know) + i_hope = lower.find("i hope") + if i_hope >= 0: + tail = lower[i_hope:] + if ( + "i hope you like them" in tail + or "i hope this is accurate" in tail + or ("i hope these" in tail and any(marker in tail for marker in ("requirement", "prompt", "accurate", "adjustment"))) + ): + starts.append(i_hope) + completed = lower.find("i have now completed") + if completed >= 0 and "as requested" in lower[completed:]: + starts.append(completed) + return paragraph if not starts else paragraph[: min(starts)].strip() + + +def _looks_like_story_meta_paragraph(paragraph: str) -> bool: + lines = [line.strip() for line in paragraph.strip().splitlines() if line.strip()] + if not lines: + return False + first = lines[0] + normalized = " ".join(lines).lower() + if re.match(r"(?i)^(?:please\s+)?note(?:\s+that)?\b", first): + return True + if re.match(r"(?i)^here are\b", first) and "stor" in normalized: + return True + if re.match(r"(?i)^as requested\b", first) and "stor" in normalized: + return True + if re.match(r"(?i)^i hope\b", first) and any( + marker in normalized for marker in ("requirements", "accurate", "adjustments", "prompt") + ): + return True + if re.match(r"(?i)^please find\b", first) and "response" in normalized: + return True + if re.match(r"(?i)^let me know\b", first) and any(marker in normalized for marker in ("prompt", "proceed")): + return True + if re.match(r"(?i)^i can do this prompt\b", first): + return True + if "without using the word" in normalized and any( + marker in normalized for marker in ("direct synonym", "convey the emotion", "requirements") + ): + return True + return "direct synonym" in normalized and "convey" in normalized and "emotion" in normalized + + +def _dialogue_chunks(chunks: list[str]) -> list[str]: + return [ + cleaned + for chunk in chunks + for cleaned in [_strip_dialogue_heading(_trim_trailing_empty_speaker(chunk))] + if _has_person_then_ai_turn(cleaned) + ] + + +def _has_person_then_ai_turn(text: str) -> bool: + saw_nonempty_person = False + for line in text.splitlines(): + if re.match(r"(?i)^\s*Person\s*:\s*\S", line): + saw_nonempty_person = True + continue + if saw_nonempty_person and re.match(r"(?i)^\s*AI\s*:\s*\S", line): + return True + return False + + +def _strip_dialogue_heading(chunk: str) -> str: + lines = chunk.strip().splitlines() + first = _next_nonempty_line_index(lines, 0) + if first is None: + return "" + heading = lines[first].strip().strip("[] ") + if re.match(r"(?i)^(?:dialogue\s+)?\d+$", heading): + del lines[first] + return "\n".join(lines).strip() + + +def _normalize_neutral_dialogue(text: str) -> str: + lines = text.strip().splitlines() + first_speaker = None + for index, line in enumerate(lines): + if re.match(r"(?i)^\s*(?:Person|Human)\s*:", line): + first_speaker = index + break + if first_speaker is not None: + lines = lines[first_speaker:] + trimmed = "\n".join(lines).strip() + return trimmed.replace("Person:", "Human:").replace("AI:", "Assistant:") + + +def _trim_trailing_empty_speaker(chunk: str) -> str: + lines = chunk.strip().splitlines() + last = _previous_nonempty_line_index(lines, len(lines) - 1) + if last is None: + return "" + if re.match(r"(?i)^\s*AI\s*:\s*$", lines[last]): + previous_person = None + for index in range(last - 1, -1, -1): + if re.match(r"(?i)^\s*Person\s*:", lines[index]): + previous_person = index + break + if previous_person is not None: + lines = lines[:previous_person] + elif re.match(r"(?i)^\s*Person\s*:\s*$", lines[last]): + lines = lines[:last] + return "\n".join(lines).strip() + + +def _dialogue_heading_chunks(text: str) -> list[str]: + lines = text.splitlines() + starts: list[int] = [] + for index, line in enumerate(lines): + heading = line.strip() + if not _looks_like_dialogue_heading(heading): + continue + next_line_index = _next_nonempty_line_index(lines, index + 1) + if next_line_index is not None and re.match(r"(?i)^\s*System\s*:", lines[next_line_index]): + next_line_index = _next_nonempty_line_index(lines, next_line_index + 1) + if next_line_index is None or not re.match(r"(?i)^\s*Person\s*:", lines[next_line_index]): + continue + window = "\n".join(lines[next_line_index + 1 : next_line_index + 20]) + if re.search(r"(?im)^\s*AI\s*:", window): + starts.append(index) + chunks = [] + for start_index, start in enumerate(starts): + stop = starts[start_index + 1] if start_index + 1 < len(starts) else len(lines) + chunks.append("\n".join(lines[start:stop]).strip()) + return _dialogue_chunks(chunks) + + +def _looks_like_dialogue_heading(text: str) -> bool: + if not text: + return False + if re.match(r"(?i)^(person|ai|human|assistant|system)\s*:", text): + return False + if re.match(r"(?i)^here are\b", text): + return False + if text.startswith(("-", "*")): + return False + if re.match(r"^\d+[\.\)]\s+\S", text): + return False + return len(text) <= 220 + + +def _next_nonempty_line_index(lines: list[str], start: int) -> int | None: + for index in range(start, len(lines)): + if lines[index].strip(): + return index + return None + + +def _previous_nonempty_line_index(lines: list[str], start: int) -> int | None: + for index in range(start, -1, -1): + if lines[index].strip(): + return index + return None + + +def _contains_exact_word(text: str, word: str) -> bool: + return bool(word) and re.search(rf"\b{re.escape(word.lower())}\b", text.lower()) is not None + + +def _row_mapping(row: Any) -> Mapping[str, Any]: + return row if isinstance(row, Mapping) else {} + + +def _example_id( + *, + mode: str, + row_role: str, + split: str, + emotion: str, + topic: str, + source_prompt_key: str, + block_index: int, +) -> str: + payload = json.dumps( + { + "mode": mode, + "row_role": row_role, + "split": split, + "emotion": emotion, + "topic": topic, + "source_prompt_key": source_prompt_key, + "block_index": block_index, + }, + sort_keys=True, + ) + digest = hashlib.sha256(payload.encode("utf-8")).hexdigest()[:16] + return f"emotion_llama70b_{mode}_{row_role}_{digest}" + + +def _generation_config_from_manifest(manifest_path: Path, *, stories_per_prompt: int) -> dict[str, Any]: + config: dict[str, Any] = {"stories_per_prompt": stories_per_prompt} + if manifest_path.exists(): + with manifest_path.open("r", encoding="utf-8") as handle: + manifest = json.load(handle) + metadata = manifest.get("metadata") if isinstance(manifest, Mapping) else {} + if isinstance(metadata, Mapping): + config.update(dict(metadata.get("generation_config") or {})) + return config + + +def _ensure_table(cur: Any, *, table_ident: Any, table: str) -> None: + from psycopg import sql + + cur.execute( + sql.SQL( + """ + CREATE TABLE IF NOT EXISTS {} ( + example_id TEXT PRIMARY KEY, + asset_id TEXT NOT NULL, + asset_version TEXT NOT NULL, + mode TEXT NOT NULL, + row_role TEXT NOT NULL, + split TEXT NOT NULL, + emotion TEXT, + topic TEXT NOT NULL, + source_prompt_key TEXT NOT NULL, + block_index INTEGER NOT NULL, + text TEXT NOT NULL, + text_sha256 TEXT NOT NULL, + direct_emotion_mention BOOLEAN NOT NULL DEFAULT FALSE, + generator_model_id TEXT NOT NULL, + target_model_id TEXT NOT NULL, + workflow_name TEXT NOT NULL, + generation_config JSONB NOT NULL, + metadata JSONB NOT NULL, + updated_at TIMESTAMPTZ NOT NULL DEFAULT now() + ) + """ + ).format(table_ident) + ) + + +def _create_stage(cur: Any, *, stage_ident: Any) -> None: + from psycopg import sql + + cur.execute( + sql.SQL( + """ + CREATE TEMP TABLE {} ( + example_id TEXT NOT NULL, + asset_id TEXT NOT NULL, + asset_version TEXT NOT NULL, + mode TEXT NOT NULL, + row_role TEXT NOT NULL, + split TEXT NOT NULL, + emotion TEXT, + topic TEXT NOT NULL, + source_prompt_key TEXT NOT NULL, + block_index INTEGER NOT NULL, + text TEXT NOT NULL, + text_sha256 TEXT NOT NULL, + direct_emotion_mention BOOLEAN NOT NULL, + generator_model_id TEXT NOT NULL, + target_model_id TEXT NOT NULL, + workflow_name TEXT NOT NULL, + generation_config TEXT NOT NULL, + metadata TEXT NOT NULL + ) ON COMMIT DROP + """ + ).format(stage_ident) + ) + + +def _copy_sql(*, stage_ident: Any) -> Any: + from psycopg import sql + + return sql.SQL( + """ + COPY {} ( + example_id, asset_id, asset_version, mode, row_role, split, emotion, + topic, source_prompt_key, block_index, text, text_sha256, + direct_emotion_mention, generator_model_id, target_model_id, + workflow_name, generation_config, metadata + ) FROM STDIN + """ + ).format(stage_ident) + + +def _upsert_stage(cur: Any, *, table_ident: Any, stage_ident: Any) -> None: + from psycopg import sql + + cur.execute( + sql.SQL( + """ + INSERT INTO {} ( + example_id, asset_id, asset_version, mode, row_role, split, emotion, + topic, source_prompt_key, block_index, text, text_sha256, + direct_emotion_mention, generator_model_id, target_model_id, + workflow_name, generation_config, metadata, updated_at + ) + SELECT + example_id, asset_id, asset_version, mode, row_role, split, emotion, + topic, source_prompt_key, block_index, text, text_sha256, + direct_emotion_mention, generator_model_id, target_model_id, + workflow_name, generation_config::jsonb, metadata::jsonb, now() + FROM {} + ON CONFLICT (example_id) DO UPDATE SET + text = EXCLUDED.text, + text_sha256 = EXCLUDED.text_sha256, + direct_emotion_mention = EXCLUDED.direct_emotion_mention, + generation_config = EXCLUDED.generation_config, + metadata = EXCLUDED.metadata, + updated_at = now() + """ + ).format(table_ident, stage_ident) + ) + + +def _ensure_indexes(cur: Any, *, table_ident: Any, table: str) -> None: + from psycopg import sql + + cur.execute( + sql.SQL("CREATE INDEX IF NOT EXISTS {} ON {} (mode, row_role, split, emotion)").format( + sql.Identifier(f"{table}_mode_role_split_emotion_idx"), + table_ident, + ) + ) + cur.execute( + sql.SQL("CREATE INDEX IF NOT EXISTS {} ON {} (topic)").format( + sql.Identifier(f"{table}_topic_idx"), + table_ident, + ) + ) + cur.execute( + sql.SQL("CREATE INDEX IF NOT EXISTS {} ON {} (source_prompt_key)").format( + sql.Identifier(f"{table}_source_prompt_key_idx"), + table_ident, + ) + ) + + +def _db_row_payload(row: Mapping[str, Any], *, mode: str, generation_config_json: str) -> tuple[Any, ...]: + text = str(row["text"]) + return ( + row["example_id"], + ASSET_ID, + ASSET_VERSION, + mode, + row["row_role"], + row["split"], + row.get("emotion"), + row["topic"], + row["source_prompt_key"], + row["block_index"], + text, + hashlib.sha256(text.encode("utf-8")).hexdigest(), + bool(row.get("direct_emotion_mention")), + MODEL_ID, + MODEL_ID, + WORKFLOW_NAME, + generation_config_json, + json.dumps(dict(row.get("metadata") or {}), sort_keys=True), + ) diff --git a/papers/voice/emotions/replication/specs/happy_vector_pilot_workflow.py b/papers/voice/emotions/replication/specs/happy_vector_pilot_workflow.py new file mode 100644 index 0000000..2367ce4 --- /dev/null +++ b/papers/voice/emotions/replication/specs/happy_vector_pilot_workflow.py @@ -0,0 +1,388 @@ +"""Small Qwen e2e pilot for one exported emotion vector. + +The vector space uses four concepts so the target vector is non-degenerate, but +the exported direction is only `happy`. Held-out rows are scored against all +four concepts for a cheap validation sanity check. +""" + +from __future__ import annotations + +from collections import defaultdict +from typing import Any, Mapping + +from pipelines_v2.api import ( + CaptureSpec, + Dataset, + EmotionDirectionSpec, + EmotionGeometrySpec, + EmotionScoreSpec, + EmotionVectorSpaceSpec, + Example, + LocalArtifactStore, + LocalRunnerSpec, + ModalResources, + ModalRunnerSpec, + ModalSecret, + ModalVolumeMount, + ModalVolumeStore, + PostgresCatalog, + PostgresSource, + ReportSpec, + ResidualSite, + SectionSelector, + StepRef, + TokenSelector, + TransformBuilder, + TransformResult, + TransformSpec, + VLLMEngine, + WorkflowSpec, + WorkflowStep, +) +from papers.voice.common.smoke import token_metadata +from papers.voice.storage import ( + ARTIFACT_VOLUME_NAME, + MODEL_VOLUME_PATH, + XENON_MODEL_VOLUME_NAME, + local_vector_root, + modal_vector_root, +) + + +WORKFLOW_NAME = "papers_voice_emotions_happy_vector_pilot" +DB_ENV_VAR = "XENON_NEON_DATABASE_URL" +MODEL_ID = "Qwen/Qwen3-8B" +MODEL_VOLUME_NAME = XENON_MODEL_VOLUME_NAME +MODAL_ARTIFACT_ROOT = modal_vector_root("emotions", "happy-vector-pilot") +LOCAL_ARTIFACT_ROOT = local_vector_root("emotions", "happy-vector-pilot") +LAYERS = (8, 16, 24, 32) +VALIDATION_LAYER = 24 +EMOTIONS = ("happy", "sad", "angry", "calm") + + +def _metadata() -> dict[str, Any]: + return token_metadata("story", "assistant_response", token_count=96) + + +def build_dataset() -> Dataset: + """Training stories for vector extraction.""" + + rows = [ + ("happy_train_01", "happy", "The artist found the missing sketchbook under a stack of old mail, hugged it to her chest, and spent the evening humming while she worked."), + ("happy_train_02", "happy", "When the email arrived, Marcus read the first line twice, then ran down the hall grinning so widely that everyone looked up from their desks."), + ("happy_train_03", "happy", "Nina set the flowers on the table and kept glancing at them while making dinner, her steps light and quick across the kitchen."), + ("sad_train_01", "sad", "The musician packed the case slowly after the empty audition room cleared, letting the latch click shut before sitting alone on the curb."), + ("sad_train_02", "sad", "Evan kept the porch light off and turned the letter over in his hands until the paper softened at the corners."), + ("sad_train_03", "sad", "At the station, Priya watched the crowd thin out, then folded the unused ticket and placed it carefully in her coat pocket."), + ("angry_train_01", "angry", "The tenant read the notice, jaw tight, and struck each number on the page with a pen until the ink tore through."), + ("angry_train_02", "angry", "Mara heard the excuse, set the mug down hard enough to spill coffee, and answered in clipped words without sitting."), + ("angry_train_03", "angry", "The coach stared at the altered roster, shoulders rigid, then walked straight to the office without acknowledging the greeting."), + ("calm_train_01", "calm", "Jonah measured the flour again, wiped the counter, and listened to the rain tick steadily against the window."), + ("calm_train_02", "calm", "The librarian replaced each card in order, breathing evenly as the room settled into its afternoon hush."), + ("calm_train_03", "calm", "Asha folded the blanket over the chair, opened her notebook, and wrote the date at the top of a clean page."), + ] + return Dataset.from_examples( + [ + Example( + key=key, + prompt=text, + labels={"emotion": emotion, "split": "train"}, + metadata=_metadata(), + ) + for key, emotion, text in rows + ], + name=f"{WORKFLOW_NAME}_train", + ) + + +def build_heldout_dataset() -> Dataset: + rows = [ + ("happy_val_01", "happy", "The baker saw the line outside the shop and had to press both palms against the counter before calling her apprentice over to look."), + ("happy_val_02", "happy", "After the final note, Tomas lowered the violin and laughed under his breath as the room rose to its feet."), + ("sad_val_01", "sad", "Rina found the empty collar behind the sofa and sat on the floor with it resting across both hands."), + ("sad_val_02", "sad", "The old classroom had been repainted, and Malik stood by the door longer than he meant to, saying nothing."), + ("angry_val_01", "angry", "The junior colleague's name appeared under her proposal, and Elena closed the laptop with a sharp snap."), + ("angry_val_02", "angry", "He listened to the apology, eyes fixed on the wall, fingers drumming harder with every sentence."), + ("calm_val_01", "calm", "The gardener rinsed soil from the trowel, lined up the seed packets, and watched the hose water darken the path."), + ("calm_val_02", "calm", "Mina checked the train time, folded the receipt into her book, and waited beside the window without hurry."), + ] + return Dataset.from_examples( + [ + Example( + key=key, + prompt=text, + labels={"emotion": emotion, "split": "heldout"}, + metadata=_metadata(), + ) + for key, emotion, text in rows + ], + name=f"{WORKFLOW_NAME}_heldout", + ) + + +def build_neutral_dataset() -> Dataset: + rows = [ + ("neutral_01", "Human: List three common spreadsheet functions.\n\nAssistant: SUM, AVERAGE, and COUNT are common spreadsheet functions."), + ("neutral_02", "Human: Convert 3.5 kilometers to meters.\n\nAssistant: 3.5 kilometers is 3,500 meters."), + ("neutral_03", "Human: Name two file formats for compressed archives.\n\nAssistant: ZIP and TAR.GZ are two compressed archive formats."), + ("neutral_04", "Human: Give a two-step process for sorting a list alphabetically.\n\nAssistant: Compare adjacent entries by their text value, then reorder them from A to Z."), + ] + return Dataset.from_examples( + [ + Example( + key=key, + prompt=text, + labels={"row_role": "neutral"}, + metadata=token_metadata("dialogue", "assistant_response", token_count=96), + ) + for key, text in rows + ], + name=f"{WORKFLOW_NAME}_neutral", + ) + + +def summarize_emotion_validation(*, scores: Any, labels: Any) -> TransformResult: + payload = scores.result() if hasattr(scores, "result") else scores + label_values = labels.resolve_values() if hasattr(labels, "resolve_values") else dict(labels) + rows = payload.get("example_summaries", []) if isinstance(payload, Mapping) else [] + by_example: dict[str, list[dict[str, Any]]] = defaultdict(list) + for row in rows: + if isinstance(row, Mapping): + by_example[str(row.get("example_key"))].append(dict(row)) + + predictions: list[dict[str, Any]] = [] + correct = 0 + for example_key, items in sorted(by_example.items()): + scored = [] + for item in items: + metrics = item.get("metrics") if isinstance(item.get("metrics"), Mapping) else {} + scored.append( + { + "emotion": str(item.get("emotion") or item.get("coordinate") or ""), + "score": float(metrics.get("mean", 0.0)), + } + ) + if not scored: + continue + best = max(scored, key=lambda item: item["score"]) + gold = str(label_values.get(example_key, "")) + is_correct = best["emotion"] == gold + correct += int(is_correct) + predictions.append( + { + "example_key": example_key, + "gold": gold, + "predicted": best["emotion"], + "correct": is_correct, + "scores": scored, + } + ) + total = len(predictions) + return TransformResult( + payload={ + "kind": "emotion_validation_summary", + "summary": { + "example_count": total, + "correct": correct, + "accuracy": correct / total if total else 0.0, + "score_metric": "mean", + }, + "predictions": predictions, + }, + example_keys=[item["example_key"] for item in predictions], + ) + + +def _engine() -> VLLMEngine: + return VLLMEngine( + model_id=MODEL_ID, + max_model_len=2048, + enforce_eager=False, + enable_prefix_caching=True, + enable_thinking=False, + max_num_seqs=1, + ) + + +def build_workflow(dataset: Dataset | None = None) -> WorkflowSpec: + train = dataset or build_dataset() + heldout = build_heldout_dataset() + neutral = build_neutral_dataset() + return WorkflowSpec( + name=WORKFLOW_NAME, + steps=( + WorkflowStep( + name="capture_train", + runner="capture_gpu", + spec=CaptureSpec( + engine=_engine(), + dataset=train, + sites=( + ResidualSite( + name="story_residual", + site="resid_post", + layers=LAYERS, + tokens=TokenSelector.full_sequence(), + ), + ), + ), + ), + WorkflowStep( + name="capture_heldout", + runner="capture_gpu", + spec=CaptureSpec( + engine=_engine(), + dataset=heldout, + sites=( + ResidualSite( + name="heldout_residual", + site="resid_post", + layers=LAYERS, + tokens=TokenSelector.full_sequence(), + ), + ), + ), + ), + WorkflowStep( + name="capture_neutral", + runner="capture_gpu", + spec=CaptureSpec( + engine=_engine(), + dataset=neutral, + sites=( + ResidualSite( + name="neutral_residual", + site="resid_post", + layers=LAYERS, + tokens=TokenSelector.full_sequence(), + ), + ), + ), + ), + WorkflowStep( + name="emotion_space", + runner="analysis_cpu", + spec=EmotionVectorSpaceSpec( + feature=StepRef("capture_train").feature("story_residual"), + concept_by=train.labels("emotion"), + layers=LAYERS, + tokens=TokenSelector.full_sequence(), + neutral_feature=StepRef("capture_neutral").feature("neutral_residual"), + neutral_variance_threshold=0.5, + min_examples_per_concept=3, + metadata={"paper": "sofroniew2026twheemotion", "model_id": MODEL_ID}, + ), + ), + WorkflowStep( + name="emotion_geometry", + runner="analysis_cpu", + spec=EmotionGeometrySpec( + vector_space=StepRef("emotion_space"), + concepts=EMOTIONS, + layers=(VALIDATION_LAYER,), + pca_components=3, + cluster_count=2, + ), + ), + WorkflowStep( + name="score_heldout", + runner="analysis_cpu", + spec=EmotionScoreSpec( + feature=StepRef("capture_heldout").feature("heldout_residual"), + vector_space=StepRef("emotion_space"), + concepts=EMOTIONS, + layers=(VALIDATION_LAYER,), + slices=SectionSelector.named("assistant_response"), + summaries=("mean", "max"), + emit_labels=True, + ), + ), + WorkflowStep( + name="validation_summary", + runner="analysis_cpu", + spec=TransformSpec( + builder=TransformBuilder.from_function( + summarize_emotion_validation, + local_python_sources=("papers",), + ), + inputs={ + "scores": StepRef("score_heldout"), + "labels": heldout.labels("emotion"), + }, + ), + ), + WorkflowStep( + name="happy_direction", + runner="analysis_cpu", + spec=EmotionDirectionSpec( + vector_space=StepRef("emotion_space"), + concept="happy", + layers=(VALIDATION_LAYER,), + metadata={"usage": "happy_vector_pilot_export"}, + ), + ), + WorkflowStep( + name="report", + runner="report_local", + spec=ReportSpec( + inputs=( + StepRef("emotion_space"), + StepRef("emotion_geometry"), + StepRef("score_heldout"), + StepRef("validation_summary"), + StepRef("happy_direction"), + ), + template="voice_emotions_happy_vector_pilot", + output_dir="papers/voice/emotions/replication/reports/happy_vector_pilot", + ), + ), + ), + ) + + +def build_runner_specs() -> dict[str, object]: + db = PostgresSource.from_env(DB_ENV_VAR) + catalog = PostgresCatalog(source=db) + db_secret = ModalSecret.from_env_var(DB_ENV_VAR, secret_name="xenon-neon") + artifact_store = ModalVolumeStore(name=ARTIFACT_VOLUME_NAME, root=MODAL_ARTIFACT_ROOT) + model_volume = ModalVolumeMount( + name=MODEL_VOLUME_NAME, + mount_path=MODEL_VOLUME_PATH, + create_if_missing=True, + commit_on_success=True, + ) + model_cache_env = { + "HF_HOME": f"{MODEL_VOLUME_PATH}/hf_home", + "TRANSFORMERS_CACHE": f"{MODEL_VOLUME_PATH}/hf_home/transformers", + } + return { + "capture_gpu": ModalRunnerSpec( + resources=ModalResources( + gpu="A10G", + cpu=8, + memory_mb=48 * 1024, + timeout_seconds=60 * 60 * 4, + max_containers=1, + env=model_cache_env, + secrets=(db_secret,), + volumes=(model_volume,), + ), + artifacts=artifact_store, + catalog=catalog, + ), + "analysis_cpu": ModalRunnerSpec( + resources=ModalResources( + cpu=8, + memory_mb=32 * 1024, + timeout_seconds=60 * 60 * 2, + max_containers=1, + secrets=(db_secret,), + ), + artifacts=artifact_store, + catalog=catalog, + ), + "report_local": LocalRunnerSpec( + artifacts=LocalArtifactStore(LOCAL_ARTIFACT_ROOT), + catalog=catalog, + ), + } diff --git a/papers/voice/emotions/replication/specs/llama70b_dosage_context_workflow.py b/papers/voice/emotions/replication/specs/llama70b_dosage_context_workflow.py new file mode 100644 index 0000000..686de27 --- /dev/null +++ b/papers/voice/emotions/replication/specs/llama70b_dosage_context_workflow.py @@ -0,0 +1,241 @@ +"""Figure 13-style numeric-context validation for Llama 3.3 70B emotion vectors.""" + +from __future__ import annotations + +import os +from pathlib import Path + +from pipelines_v2.api import ( + CaptureSpec, + Dataset, + Example, + LocalArtifactStore, + LocalRunnerSpec, + ModalResources, + ModalRunnerSpec, + ModalVolumeMount, + ModalVolumeStore, + ResidualSite, + StepRef, + TensorStorage, + TokenSelector, + TransformBuilder, + TransformSpec, + TransferPolicy, + VLLMEngine, + WorkflowSpec, + WorkflowStep, +) +from papers.voice.emotions.replication.validation import ( + build_dosage_context_validation, + latest_emotion_space_result_path, + numeric_context_prompt_rows, + score_dosage_context_feature, +) +from papers.voice.storage import ( + ARTIFACT_VOLUME_NAME, + MODEL_VOLUME_PATH, + YORA_MODEL_VOLUME_NAME, + local_vector_root, + modal_vector_root, +) + + +WORKFLOW_NAME = "papers_voice_emotions_llama33_70b_numeric_context" +MODEL_ID = "meta-llama/Llama-3.3-70B-Instruct" +MODEL_VOLUME_NAME = YORA_MODEL_VOLUME_NAME +DEFAULT_LAYERS = (16, 20, 24, 28, 32, 36, 40, 44, 48, 52, 56, 60, 64, 68) +DEFAULT_MAX_MODEL_LEN = 16384 +DEFAULT_MAX_NUM_SEQS = 8 +DEFAULT_MAX_NUM_BATCHED_TOKENS = 8192 +DEFAULT_CONCEPT = "terrified" +MODAL_ARTIFACT_ROOT = modal_vector_root( + "emotions", + "llama-3.3-70b", + "sofroniew-2026", + "numeric-context", +) +LOCAL_ARTIFACT_ROOT = local_vector_root( + "emotions", + "llama-3.3-70b", + "sofroniew-2026", + "numeric-context", +) +DEFAULT_REPORT_DIR = f"papers/voice/emotions/replication/reports/{WORKFLOW_NAME}" + + +def selected_layers() -> tuple[int, ...]: + raw = os.getenv("EMOTION_DOSAGE_LAYERS", "").strip() + if raw: + return tuple(int(item.strip()) for item in raw.split(",") if item.strip()) + single_layer = os.getenv("EMOTION_DOSAGE_LAYER", "").strip() + if single_layer: + return (int(single_layer),) + return DEFAULT_LAYERS + + +def vector_space_result_path() -> str: + override = os.getenv("EMOTION_DOSAGE_VECTOR_SPACE_PATH") + if override: + return override + return str(latest_emotion_space_result_path()) + + +def validation_output_dir() -> str: + override = os.getenv("EMOTION_DOSAGE_OUTPUT_DIR") + if override: + return override + layers = selected_layers() + return f"{DEFAULT_REPORT_DIR}/figure13_layers_{'_'.join(str(layer) for layer in layers)}" + + +def build_dataset() -> Dataset: + return Dataset.from_examples( + [ + Example( + key=str(row["key"]), + prompt=list(row["prompt"]), + labels=dict(row["labels"]), + ) + for row in numeric_context_prompt_rows() + ], + name=f"{WORKFLOW_NAME}_figure13_prompts", + ) + + +def build_workflow() -> WorkflowSpec: + layers = selected_layers() + dataset = build_dataset() + return WorkflowSpec( + name=WORKFLOW_NAME, + steps=( + WorkflowStep( + name="capture_numeric_context_prompts", + runner="capture_gpu", + spec=CaptureSpec( + engine=_engine(), + dataset=dataset, + sites=( + ResidualSite( + name="full_sequence_residual", + site="resid_post", + layers=layers, + tokens=TokenSelector.full_sequence(), + storage=TensorStorage(dtype="float16", format="safetensors"), + ), + ), + ), + ), + WorkflowStep( + name="score_numeric_context", + runner="analysis_local", + spec=TransformSpec( + builder=TransformBuilder.from_function( + score_dosage_context_feature, + local_python_sources=("papers",), + ), + inputs={ + "feature": StepRef("capture_numeric_context_prompts").feature("full_sequence_residual"), + "vector_space_path": vector_space_result_path(), + "concept": os.getenv("EMOTION_DOSAGE_CONCEPT", ""), + "layers": layers, + "metric": "cosine", + }, + ), + ), + WorkflowStep( + name="figure13_validation", + runner="analysis_local", + spec=TransformSpec( + builder=TransformBuilder.from_function( + build_dosage_context_validation, + local_python_sources=("papers",), + ), + inputs={ + "scores": StepRef("score_numeric_context"), + "output_dir": validation_output_dir(), + }, + ), + ), + ), + ) + + +def build_runner_specs() -> dict[str, object]: + artifact_store = ModalVolumeStore( + name=ARTIFACT_VOLUME_NAME, + root=os.getenv("EMOTION_DOSAGE_MODAL_ARTIFACT_ROOT", MODAL_ARTIFACT_ROOT), + transfer_policy=TransferPolicy(allow_large_transfer=True), + ) + local_artifact_root = Path(os.getenv("EMOTION_DOSAGE_LOCAL_ARTIFACT_ROOT", str(LOCAL_ARTIFACT_ROOT))) + local_store = LocalArtifactStore(local_artifact_root) + model_volume = ModalVolumeMount( + name=MODEL_VOLUME_NAME, + mount_path=MODEL_VOLUME_PATH, + create_if_missing=True, + commit_on_success=True, + ) + shared_env = { + "HF_HOME": f"{MODEL_VOLUME_PATH}/hf_home", + "TRANSFORMERS_CACHE": f"{MODEL_VOLUME_PATH}/hf_home/transformers", + "VLLM_CACHE_ROOT": os.getenv("EMOTION_DOSAGE_VLLM_CACHE_ROOT", MODEL_VOLUME_PATH), + "TORCHINDUCTOR_CACHE_DIR": f"{MODEL_VOLUME_PATH}/torch_compile_cache", + **_workflow_env(), + } + return { + "capture_gpu": ModalRunnerSpec( + resources=ModalResources( + gpu=os.getenv("EMOTION_DOSAGE_CAPTURE_GPU", "H200:2"), + cpu=_env_int("EMOTION_DOSAGE_CAPTURE_CPU", 16), + memory_mb=_env_int("EMOTION_DOSAGE_CAPTURE_MEMORY_MB", 128 * 1024), + timeout_seconds=_env_int("EMOTION_DOSAGE_CAPTURE_TIMEOUT_SECONDS", 60 * 60 * 2), + max_containers=_env_optional_int("EMOTION_DOSAGE_CAPTURE_MAX_CONTAINERS") or 1, + shard_count=_env_optional_int("EMOTION_DOSAGE_CAPTURE_SHARD_COUNT"), + enable_workflow_batching=_env_bool("EMOTION_DOSAGE_CAPTURE_WORKFLOW_BATCHING", True), + env=shared_env, + volumes=(model_volume,), + ), + artifacts=artifact_store, + ), + "analysis_local": LocalRunnerSpec(artifacts=local_store), + } + + +def _engine() -> VLLMEngine: + return VLLMEngine( + model_id=MODEL_ID, + model_path_root=MODEL_VOLUME_PATH, + tensor_parallel_size=_env_int("EMOTION_DOSAGE_TENSOR_PARALLEL_SIZE", 2), + max_model_len=_env_int("EMOTION_DOSAGE_MAX_MODEL_LEN", DEFAULT_MAX_MODEL_LEN), + gpu_memory_utilization=float(os.getenv("EMOTION_DOSAGE_GPU_MEMORY_UTILIZATION", "0.90")), + enforce_eager=False, + enable_prefix_caching=True, + max_num_seqs=_env_int("EMOTION_DOSAGE_MAX_NUM_SEQS", DEFAULT_MAX_NUM_SEQS), + max_num_batched_tokens=_env_optional_int("EMOTION_DOSAGE_MAX_NUM_BATCHED_TOKENS") + or DEFAULT_MAX_NUM_BATCHED_TOKENS, + enable_chunked_prefill=_env_bool("EMOTION_DOSAGE_ENABLE_CHUNKED_PREFILL", True), + add_generation_prompt=True, + enable_thinking=False, + ) + + +def _env_int(name: str, default: int) -> int: + return int(os.getenv(name, str(default))) + + +def _env_optional_int(name: str) -> int | None: + raw = os.getenv(name) + if raw is None or not raw.strip(): + return None + return int(raw) + + +def _env_bool(name: str, default: bool) -> bool: + raw = os.getenv(name) + if raw is None or not raw.strip(): + return default + return raw.strip().lower() in {"1", "true", "yes", "on"} + + +def _workflow_env() -> dict[str, str]: + return {key: value for key, value in os.environ.items() if key.startswith("EMOTION_DOSAGE_")} diff --git a/papers/voice/emotions/replication/specs/llama70b_generation_workflow.py b/papers/voice/emotions/replication/specs/llama70b_generation_workflow.py new file mode 100644 index 0000000..bd1beae --- /dev/null +++ b/papers/voice/emotions/replication/specs/llama70b_generation_workflow.py @@ -0,0 +1,638 @@ +"""Generate and persist Llama 3.3 70B emotion-story rows. + +This workflow is intentionally generation-only. It writes parsed story and +neutral rows to Neon so activation capture/vector derivation can be run as a +separate, resumable stage after text quality has been inspected. +""" + +from __future__ import annotations + +import hashlib +import json +import os +import re +from collections import Counter +from typing import Any, Iterator, Mapping + +from pipelines_v2.api import ( + Dataset, + GenerationRunSpec, + GenerationSpec, + LocalArtifactStore, + LocalRunnerSpec, + ModalResources, + ModalRunnerSpec, + ModalSecret, + ModalVolumeMount, + ModalVolumeStore, + PostgresCatalog, + PostgresSource, + StepRef, + TransformBuilder, + TransformResult, + TransformSpec, + TransferPolicy, + VLLMEngine, + WorkflowSpec, + WorkflowStep, +) + +from papers.voice.emotions.replication.specs import llama70b_vector_workflow as vector_workflow +from papers.voice.storage import ( + ARTIFACT_VOLUME_NAME, + MODEL_VOLUME_PATH, + YORA_MODEL_VOLUME_NAME, + local_vector_root, + modal_vector_root, +) + + +WORKFLOW_NAME = "papers_voice_emotions_llama33_70b_generation" +DB_ENV_VAR = "XENON_NEON_DATABASE_URL" +MODEL_ID = vector_workflow.MODEL_ID +MODEL_KEY = vector_workflow.MODEL_KEY +MODEL_VOLUME_NAME = YORA_MODEL_VOLUME_NAME +ASSET_ID = "emotions-llama-3.3-70b-sofroniew-2026-v1" +ASSET_VERSION = "v1" +DEFAULT_TABLE = "papers_voice_emotions_llama70b_generated_rows_v1" +DEFAULT_GENERATION_MAX_MODEL_LEN = 16384 +DEFAULT_GENERATION_MAX_TOKENS = 8192 +DEFAULT_GENERATION_TIMEOUT_SECONDS = 60 * 60 * 24 +MODAL_ARTIFACT_ROOT = modal_vector_root("emotions", "llama-3.3-70b", "sofroniew-2026", "v1", "generation") +LOCAL_ARTIFACT_ROOT = local_vector_root("emotions", "llama-3.3-70b", "sofroniew-2026", "v1", "generation") + + +def generated_rows_table() -> str: + return os.getenv("EMOTION_ASSET_GENERATED_ROWS_TABLE", DEFAULT_TABLE).strip() or DEFAULT_TABLE + + +def build_story_generation_dataset() -> Dataset: + return vector_workflow.build_story_generation_dataset() + + +def build_dataset() -> Dataset: + return build_generation_dataset() + + +def build_neutral_generation_dataset() -> Dataset: + return vector_workflow.build_neutral_generation_dataset() + + +def build_generation_dataset() -> Dataset: + story = build_story_generation_dataset() + neutral = build_neutral_generation_dataset() + examples = [*story.examples, *neutral.examples] + target_keys = _source_prompt_keys() + if target_keys: + examples_by_key = {str(example.key): example for example in examples} + missing = sorted(target_keys - set(examples_by_key)) + if missing: + raise ValueError(f"Unknown EMOTION_ASSET_SOURCE_PROMPT_KEYS: {missing}") + examples = [examples_by_key[key] for key in sorted(target_keys)] + return Dataset.from_examples( + examples, + name=f"{WORKFLOW_NAME}_{vector_workflow.mode()}_generation_prompts", + ) + + +def _generation_engine() -> VLLMEngine: + return VLLMEngine( + model_id=MODEL_ID, + model_path_root=MODEL_VOLUME_PATH, + tensor_parallel_size=_env_int("EMOTION_ASSET_GENERATION_TENSOR_PARALLEL_SIZE", 4), + max_model_len=_env_int("EMOTION_ASSET_GENERATION_MAX_MODEL_LEN", DEFAULT_GENERATION_MAX_MODEL_LEN), + gpu_memory_utilization=float(os.getenv("EMOTION_ASSET_GENERATION_GPU_MEMORY_UTILIZATION", "0.88")), + enforce_eager=False, + enable_prefix_caching=True, + max_num_seqs=_env_int("EMOTION_ASSET_GENERATION_MAX_NUM_SEQS", 8), + max_num_batched_tokens=_env_optional_int("EMOTION_ASSET_GENERATION_MAX_NUM_BATCHED_TOKENS"), + enable_thinking=False, + ) + + +def persist_generated_rows(*, generation: Any) -> TransformResult: + payload = generation.result() if hasattr(generation, "result") else generation + story_rows, neutral_rows = _parsed_rows(payload) + rows = [*story_rows, *neutral_rows] + table = generated_rows_table() + quality = _parse_quality(payload) + if _strict_persistence_qa() and not rows: + raise RuntimeError(f"Generated row QA failed: no parsed rows; {json.dumps(quality, sort_keys=True)}") + _write_rows_to_neon(rows, table=table) + + counts = Counter(str(row["row_role"]) for row in rows) + emotion_counts = Counter(str(row["emotion"]) for row in rows if row.get("emotion")) + split_counts = Counter(str(row["split"]) for row in rows if row.get("split")) + direct_mentions = sum(1 for row in story_rows if row.get("direct_emotion_mention")) + return TransformResult( + payload={ + "kind": "emotion_llama70b_generated_rows_persisted", + "table": table, + "summary": { + "mode": vector_workflow.mode(), + "row_count": len(rows), + "story_row_count": len(story_rows), + "neutral_row_count": len(neutral_rows), + "direct_emotion_mentions": direct_mentions, + "row_role_counts": dict(sorted(counts.items())), + "split_counts": dict(sorted(split_counts.items())), + "emotion_counts": dict(sorted(emotion_counts.items())), + "target_story_count": len(vector_workflow.selected_emotions()) + * (len(vector_workflow.selected_train_topics()) + len(vector_workflow.selected_heldout_topics())) + * vector_workflow.stories_per_prompt(), + "target_neutral_count": len(vector_workflow.selected_neutral_topics()) + * vector_workflow.stories_per_prompt(), + **quality, + }, + }, + example_keys=[str(row["example_id"]) for row in rows], + ) + + +def build_workflow(dataset: Dataset | None = None) -> WorkflowSpec: + prompts = dataset or build_generation_dataset() + generation_max_tokens = _env_int("EMOTION_ASSET_GENERATION_MAX_TOKENS", DEFAULT_GENERATION_MAX_TOKENS) + return WorkflowSpec( + name=WORKFLOW_NAME, + steps=( + WorkflowStep( + name="generate_rows", + runner="generation_gpu", + spec=GenerationRunSpec( + engine=_generation_engine(), + dataset=prompts, + generation=GenerationSpec( + enabled=True, + max_tokens=generation_max_tokens, + temperature=float(os.getenv("EMOTION_ASSET_STORY_TEMPERATURE", "0.8")), + top_p=float(os.getenv("EMOTION_ASSET_STORY_TOP_P", "0.95")), + ), + ), + ), + WorkflowStep( + name="persist_generated_rows", + runner="analysis_cpu", + spec=TransformSpec( + builder=TransformBuilder.from_function(persist_generated_rows, local_python_sources=("papers",)), + inputs={"generation": StepRef("generate_rows")}, + inline=True, + ), + ), + ), + ) + + +def build_runner_specs() -> dict[str, object]: + db = PostgresSource.from_env(DB_ENV_VAR) + catalog = PostgresCatalog(source=db) + db_secret = ModalSecret.from_env_var(DB_ENV_VAR, secret_name="xenon-neon") + artifact_store = ModalVolumeStore( + name=ARTIFACT_VOLUME_NAME, + root=MODAL_ARTIFACT_ROOT, + transfer_policy=TransferPolicy(allow_large_transfer=True), + ) + model_volume = ModalVolumeMount( + name=MODEL_VOLUME_NAME, + mount_path=MODEL_VOLUME_PATH, + create_if_missing=True, + commit_on_success=True, + ) + shared_env = { + "HF_HOME": f"{MODEL_VOLUME_PATH}/hf_home", + "TRANSFORMERS_CACHE": f"{MODEL_VOLUME_PATH}/hf_home/transformers", + "VLLM_CACHE_ROOT": os.getenv("EMOTION_ASSET_VLLM_CACHE_ROOT", MODEL_VOLUME_PATH), + **_workflow_env(), + } + return { + "generation_gpu": ModalRunnerSpec( + resources=ModalResources( + gpu=os.getenv("EMOTION_ASSET_GENERATION_GPU", "H100:4"), + cpu=8, + memory_mb=128 * 1024, + timeout_seconds=_env_int("EMOTION_ASSET_GENERATION_TIMEOUT_SECONDS", DEFAULT_GENERATION_TIMEOUT_SECONDS), + max_containers=_env_optional_int("EMOTION_ASSET_GENERATION_MAX_CONTAINERS") or 1, + shard_count=_env_optional_int("EMOTION_ASSET_GENERATION_SHARD_COUNT"), + env=shared_env, + secrets=(db_secret,), + volumes=(model_volume,), + ), + artifacts=artifact_store, + catalog=catalog, + ), + "analysis_cpu": ModalRunnerSpec( + resources=ModalResources( + cpu=8, + memory_mb=32 * 1024, + timeout_seconds=60 * 60, + env=shared_env, + secrets=(db_secret,), + ), + artifacts=artifact_store, + catalog=catalog, + ), + "report_local": LocalRunnerSpec(artifacts=LocalArtifactStore(LOCAL_ARTIFACT_ROOT), catalog=catalog), + } + + +def _parsed_rows(payload: Any) -> tuple[list[dict[str, Any]], list[dict[str, Any]]]: + raw_rows = _payload_rows(payload) + story_rows: list[dict[str, Any]] = [] + neutral_rows: list[dict[str, Any]] = [] + for raw in raw_rows: + source = _row_mapping(_row_mapping(raw).get("example")) + labels = dict(_row_mapping(source.get("labels"))) + if str(labels.get("row_role") or "") == "neutral": + neutral_rows.extend(_parsed_neutral_example(raw=raw, source=source, labels=labels)) + else: + story_rows.extend(_parsed_story_example(raw=raw, source=source, labels=labels)) + return story_rows, neutral_rows + + +def _parsed_story_rows(payload: Any) -> list[dict[str, Any]]: + story_rows, _ = _parsed_rows(payload) + return story_rows + + +def _parsed_story_example(*, raw: Any, source: Mapping[str, Any], labels: Mapping[str, Any]) -> list[dict[str, Any]]: + rows: list[dict[str, Any]] = [] + split = str(labels.get("split") or "") + emotion = str(labels.get("emotion") or "") + topic = str(labels.get("topic") or "") + prompt_key = str(source.get("key") or "") + blocks = vector_workflow._parse_blocks(str(_row_mapping(raw).get("generated_text") or ""), label="story") + for block_index, text in enumerate(blocks[: vector_workflow.stories_per_prompt()]): + if _has_exact_target_emotion(text, emotion): + continue + example_id = _example_id( + row_role="story", + split=split, + emotion=emotion, + topic=topic, + source_prompt_key=prompt_key, + block_index=block_index, + ) + rows.append( + { + "example_id": example_id, + "row_role": "story", + "split": split, + "emotion": emotion, + "topic": topic, + "source_prompt_key": prompt_key, + "block_index": block_index, + "text": text, + "direct_emotion_mention": False, + "metadata": { + "source": "llama70b_generated_story", + "n_stories_requested": int(labels.get("n_stories") or vector_workflow.stories_per_prompt()), + "source_labels": dict(labels), + }, + } + ) + return rows + + +def _parsed_neutral_rows(payload: Any) -> list[dict[str, Any]]: + raw_rows = _payload_rows(payload) + rows: list[dict[str, Any]] = [] + for raw in raw_rows: + source = _row_mapping(_row_mapping(raw).get("example")) + labels = dict(_row_mapping(source.get("labels"))) + rows.extend(_parsed_neutral_example(raw=raw, source=source, labels=labels)) + return rows + + +def _parsed_neutral_example(*, raw: Any, source: Mapping[str, Any], labels: Mapping[str, Any]) -> list[dict[str, Any]]: + rows: list[dict[str, Any]] = [] + topic = str(labels.get("topic") or "") + prompt_key = str(source.get("key") or "") + blocks = vector_workflow._parse_blocks(str(_row_mapping(raw).get("generated_text") or ""), label="dialogue") + for block_index, text in enumerate(blocks[: vector_workflow.stories_per_prompt()]): + normalized = _normalize_neutral_dialogue(text) + example_id = _example_id( + row_role="neutral", + split="neutral", + emotion="neutral", + topic=topic, + source_prompt_key=prompt_key, + block_index=block_index, + ) + rows.append( + { + "example_id": example_id, + "row_role": "neutral", + "split": "neutral", + "emotion": None, + "topic": topic, + "source_prompt_key": prompt_key, + "block_index": block_index, + "text": normalized, + "direct_emotion_mention": False, + "metadata": { + "source": "llama70b_generated_neutral_dialogue", + "n_dialogues_requested": int(labels.get("n_stories") or vector_workflow.stories_per_prompt()), + "source_labels": dict(labels), + }, + } + ) + return rows + + +def _has_exact_target_emotion(text: str, emotion: str) -> bool: + return bool(emotion) and vector_workflow._contains_exact_word(text, emotion) + + +def _normalize_neutral_dialogue(text: str) -> str: + lines = text.strip().splitlines() + first_speaker = None + for index, line in enumerate(lines): + if re.match(r"(?i)^\s*(?:Person|Human)\s*:", line): + first_speaker = index + break + if first_speaker is not None: + lines = lines[first_speaker:] + trimmed = "\n".join(lines).strip() + return trimmed.replace("Person:", "Human:").replace("AI:", "Assistant:") + + +def _strict_persistence_qa() -> bool: + value = os.getenv("EMOTION_ASSET_STRICT_PERSISTENCE_QA", "").strip().lower() + if value: + return value in {"1", "true", "yes", "on"} + return vector_workflow.mode() == "full" + + +def _parse_quality(payload: Any) -> dict[str, Any]: + expected = vector_workflow.stories_per_prompt() + prompt_count = 0 + length_finish_count = 0 + filtered_direct_emotion_mentions = 0 + filtered_examples: list[dict[str, Any]] = [] + incomplete: list[dict[str, Any]] = [] + for raw in _payload_rows(payload): + row = _row_mapping(raw) + source = _row_mapping(row.get("example")) + labels = dict(_row_mapping(source.get("labels"))) + role = "neutral" if str(labels.get("row_role") or "") == "neutral" else "story" + label = "dialogue" if role == "neutral" else "story" + blocks = vector_workflow._parse_blocks(str(row.get("generated_text") or ""), label=label) + parsed = min(len(blocks), expected) + finish_reason = str(row.get("finish_reason") or "") + if role == "story": + emotion = str(labels.get("emotion") or "") + for block_index, text in enumerate(blocks[:expected]): + if not _has_exact_target_emotion(text, emotion): + continue + filtered_direct_emotion_mentions += 1 + if len(filtered_examples) < 20: + filtered_examples.append( + { + "source_prompt_key": str(source.get("key") or ""), + "emotion": emotion, + "block_index": block_index, + "finish_reason": finish_reason, + "generated_token_count": len(row.get("generated_token_ids") or ()), + } + ) + if finish_reason == "length": + length_finish_count += 1 + prompt_count += 1 + if parsed < expected: + incomplete.append( + { + "source_prompt_key": str(source.get("key") or ""), + "row_role": role, + "parsed_count": parsed, + "expected_count": expected, + "finish_reason": finish_reason, + "generated_token_count": len(row.get("generated_token_ids") or ()), + } + ) + return { + "qa_passed": not incomplete, + "prompt_count": prompt_count, + "incomplete_prompt_count": len(incomplete), + "incomplete_prompts": incomplete[:20], + "length_finish_count": length_finish_count, + "filtered_direct_emotion_mentions": filtered_direct_emotion_mentions, + "filtered_direct_emotion_examples": filtered_examples, + } + + +def _write_rows_to_neon(rows: list[dict[str, Any]], *, table: str) -> None: + if not rows: + return + import psycopg + from psycopg import sql + + db_url = os.getenv(DB_ENV_VAR, "").strip() + if not db_url: + raise RuntimeError(f"{DB_ENV_VAR} must be set to persist generated rows") + table_ident = sql.Identifier(table) + stage_ident = sql.Identifier("emotion_llama70b_generated_rows_stage") + generation_config = _generation_config_payload() + with psycopg.connect(db_url) as conn: + with conn.cursor() as cur: + cur.execute( + sql.SQL( + """ + CREATE TABLE IF NOT EXISTS {} ( + example_id TEXT PRIMARY KEY, + asset_id TEXT NOT NULL, + asset_version TEXT NOT NULL, + mode TEXT NOT NULL, + row_role TEXT NOT NULL, + split TEXT NOT NULL, + emotion TEXT, + topic TEXT NOT NULL, + source_prompt_key TEXT NOT NULL, + block_index INTEGER NOT NULL, + text TEXT NOT NULL, + text_sha256 TEXT NOT NULL, + direct_emotion_mention BOOLEAN NOT NULL DEFAULT FALSE, + generator_model_id TEXT NOT NULL, + target_model_id TEXT NOT NULL, + workflow_name TEXT NOT NULL, + generation_config JSONB NOT NULL, + metadata JSONB NOT NULL, + updated_at TIMESTAMPTZ NOT NULL DEFAULT now() + ) + """ + ).format(table_ident) + ) + cur.execute( + sql.SQL("CREATE INDEX IF NOT EXISTS {} ON {} (mode, row_role, split, emotion)").format( + sql.Identifier(f"{table}_mode_role_split_emotion_idx"), + table_ident, + ) + ) + cur.execute( + sql.SQL("CREATE INDEX IF NOT EXISTS {} ON {} (topic)").format( + sql.Identifier(f"{table}_topic_idx"), + table_ident, + ) + ) + cur.execute( + sql.SQL( + """ + CREATE TEMP TABLE {} ( + example_id TEXT NOT NULL, + asset_id TEXT NOT NULL, + asset_version TEXT NOT NULL, + mode TEXT NOT NULL, + row_role TEXT NOT NULL, + split TEXT NOT NULL, + emotion TEXT, + topic TEXT NOT NULL, + source_prompt_key TEXT NOT NULL, + block_index INTEGER NOT NULL, + text TEXT NOT NULL, + text_sha256 TEXT NOT NULL, + direct_emotion_mention BOOLEAN NOT NULL, + generator_model_id TEXT NOT NULL, + target_model_id TEXT NOT NULL, + workflow_name TEXT NOT NULL, + generation_config TEXT NOT NULL, + metadata TEXT NOT NULL + ) ON COMMIT DROP + """ + ).format(stage_ident) + ) + with cur.copy( + sql.SQL( + """ + COPY {} ( + example_id, asset_id, asset_version, mode, row_role, split, emotion, + topic, source_prompt_key, block_index, text, text_sha256, + direct_emotion_mention, generator_model_id, target_model_id, + workflow_name, generation_config, metadata + ) FROM STDIN + """ + ).format(stage_ident) + ) as copy: + for payload in _db_row_payloads(rows, generation_config=generation_config): + copy.write_row(payload) + cur.execute( + sql.SQL( + """ + INSERT INTO {} ( + example_id, asset_id, asset_version, mode, row_role, split, emotion, + topic, source_prompt_key, block_index, text, text_sha256, + direct_emotion_mention, generator_model_id, target_model_id, + workflow_name, generation_config, metadata, updated_at + ) + SELECT + example_id, asset_id, asset_version, mode, row_role, split, emotion, + topic, source_prompt_key, block_index, text, text_sha256, + direct_emotion_mention, generator_model_id, target_model_id, + workflow_name, generation_config::jsonb, metadata::jsonb, now() + FROM {} + ON CONFLICT (example_id) DO UPDATE SET + text = EXCLUDED.text, + text_sha256 = EXCLUDED.text_sha256, + direct_emotion_mention = EXCLUDED.direct_emotion_mention, + generation_config = EXCLUDED.generation_config, + metadata = EXCLUDED.metadata, + updated_at = now() + """ + ).format(table_ident, stage_ident) + ) + conn.commit() + + +def _generation_config_payload() -> dict[str, Any]: + return { + "stories_per_prompt": vector_workflow.stories_per_prompt(), + "max_model_len": _env_int("EMOTION_ASSET_GENERATION_MAX_MODEL_LEN", DEFAULT_GENERATION_MAX_MODEL_LEN), + "max_tokens": _env_int("EMOTION_ASSET_GENERATION_MAX_TOKENS", DEFAULT_GENERATION_MAX_TOKENS), + "max_num_seqs": _env_int("EMOTION_ASSET_GENERATION_MAX_NUM_SEQS", 8), + "max_num_batched_tokens": _env_optional_int("EMOTION_ASSET_GENERATION_MAX_NUM_BATCHED_TOKENS"), + "tensor_parallel_size": _env_int("EMOTION_ASSET_GENERATION_TENSOR_PARALLEL_SIZE", 4), + "gpu": os.getenv("EMOTION_ASSET_GENERATION_GPU", "H100:4"), + } + + +def _db_row_payloads( + rows: list[dict[str, Any]], + *, + generation_config: Mapping[str, Any], +) -> Iterator[tuple[Any, ...]]: + generation_config_json = json.dumps(dict(generation_config), sort_keys=True) + mode = vector_workflow.mode() + for row in rows: + text = str(row["text"]) + yield ( + row["example_id"], + ASSET_ID, + ASSET_VERSION, + mode, + row["row_role"], + row["split"], + row.get("emotion"), + row["topic"], + row["source_prompt_key"], + row["block_index"], + text, + hashlib.sha256(text.encode("utf-8")).hexdigest(), + bool(row.get("direct_emotion_mention")), + MODEL_ID, + MODEL_ID, + WORKFLOW_NAME, + generation_config_json, + json.dumps(dict(row.get("metadata") or {}), sort_keys=True), + ) + + +def _payload_rows(payload: Any) -> list[Any]: + mapped = _row_mapping(payload) + rows = mapped.get("rows") + return list(rows) if isinstance(rows, list) else [] + + +def _row_mapping(row: Any) -> Mapping[str, Any]: + return row if isinstance(row, Mapping) else {} + + +def _example_id( + *, + row_role: str, + split: str, + emotion: str, + topic: str, + source_prompt_key: str, + block_index: int, +) -> str: + payload = json.dumps( + { + "mode": vector_workflow.mode(), + "row_role": row_role, + "split": split, + "emotion": emotion, + "topic": topic, + "source_prompt_key": source_prompt_key, + "block_index": block_index, + }, + sort_keys=True, + ) + digest = hashlib.sha256(payload.encode("utf-8")).hexdigest()[:16] + return f"emotion_llama70b_{vector_workflow.mode()}_{row_role}_{digest}" + + +def _env_int(name: str, default: int) -> int: + return int(os.getenv(name, str(default))) + + +def _env_optional_int(name: str) -> int | None: + raw = os.getenv(name, "").strip() + return int(raw) if raw else None + + +def _workflow_env() -> dict[str, str]: + return {key: value for key, value in os.environ.items() if key.startswith("EMOTION_ASSET_")} + + +def _source_prompt_keys() -> set[str]: + raw = os.getenv("EMOTION_ASSET_SOURCE_PROMPT_KEYS", "").strip() + if not raw: + return set() + return {part.strip() for part in raw.split(",") if part.strip()} diff --git a/papers/voice/emotions/replication/specs/llama70b_numeric_semantics_workflow.py b/papers/voice/emotions/replication/specs/llama70b_numeric_semantics_workflow.py new file mode 100644 index 0000000..147755c --- /dev/null +++ b/papers/voice/emotions/replication/specs/llama70b_numeric_semantics_workflow.py @@ -0,0 +1,271 @@ +"""Figure 3 numerical-semantics validation for Llama 3.3 70B emotion vectors.""" + +from __future__ import annotations + +import os +from pathlib import Path + +from pipelines_v2.api import ( + CaptureSpec, + Dataset, + Example, + LocalArtifactStore, + LocalRunnerSpec, + ModalResources, + ModalRunnerSpec, + ModalVolumeMount, + ModalVolumeStore, + ReportSpec, + ResidualSite, + StepRef, + TensorStorage, + TokenSelector, + TransformBuilder, + TransformSpec, + TransferPolicy, + VLLMEngine, + WorkflowSpec, + WorkflowStep, +) +from papers.voice.emotions.replication.validation import ( + build_numeric_semantics_validation, + latest_emotion_space_result_path, + numeric_semantics_prompt_rows, + score_numeric_semantics_feature, +) +from papers.voice.storage import ( + ARTIFACT_VOLUME_NAME, + MODEL_VOLUME_PATH, + YORA_MODEL_VOLUME_NAME, + local_vector_root, + modal_vector_root, +) + + +WORKFLOW_NAME = "papers_voice_emotions_llama33_70b_numeric_semantics" +MODEL_ID = "meta-llama/Llama-3.3-70B-Instruct" +MODEL_VOLUME_NAME = YORA_MODEL_VOLUME_NAME +DEFAULT_LAYER = 56 +DEFAULT_LAYERS = (40, 44, 48, 52, 56, 60, 64) +DEFAULT_MAX_MODEL_LEN = 16384 +DEFAULT_MAX_NUM_SEQS = 512 +DEFAULT_MAX_NUM_BATCHED_TOKENS = 8192 +EMOTIONS = ("happy", "sad", "afraid", "calm") +MODAL_ARTIFACT_ROOT = modal_vector_root( + "emotions", + "llama-3.3-70b", + "sofroniew-2026", + "numeric-semantics", +) +LOCAL_ARTIFACT_ROOT = local_vector_root( + "emotions", + "llama-3.3-70b", + "sofroniew-2026", + "numeric-semantics", +) +DEFAULT_REPORT_DIR = f"papers/voice/emotions/replication/reports/{WORKFLOW_NAME}" + + +def selected_layer() -> int: + layers = selected_layers() + return DEFAULT_LAYER if DEFAULT_LAYER in layers else int(layers[0]) + + +def selected_layers() -> tuple[int, ...]: + raw = os.getenv("EMOTION_NUMERIC_LAYERS", "").strip() + if raw: + return tuple(int(item.strip()) for item in raw.split(",") if item.strip()) + single_layer = os.getenv("EMOTION_NUMERIC_LAYER", "").strip() + if single_layer: + return (int(single_layer),) + return DEFAULT_LAYERS + + +def vector_space_result_path() -> str: + override = os.getenv("EMOTION_NUMERIC_VECTOR_SPACE_PATH") + if override: + return override + return str(latest_emotion_space_result_path()) + + +def validation_output_dir() -> str: + override = os.getenv("EMOTION_NUMERIC_OUTPUT_DIR") + if override: + return override + layers = selected_layers() + if len(layers) == 1: + return f"{DEFAULT_REPORT_DIR}/figure3_layer{layers[0]}" + return f"{DEFAULT_REPORT_DIR}/figure3_layers_{'_'.join(str(layer) for layer in layers)}" + + +def build_dataset() -> Dataset: + return Dataset.from_examples( + [ + Example( + key=str(row["key"]), + prompt=list(row["prompt"]), + labels=dict(row["labels"]), + ) + for row in numeric_semantics_prompt_rows() + ], + name=f"{WORKFLOW_NAME}_figure3_prompts", + ) + + +def build_workflow() -> WorkflowSpec: + layers = selected_layers() + dataset = build_dataset() + return WorkflowSpec( + name=WORKFLOW_NAME, + steps=( + WorkflowStep( + name="capture_numeric_prompts", + runner="capture_gpu", + spec=CaptureSpec( + engine=_engine(), + dataset=dataset, + sites=( + ResidualSite( + name="assistant_prefill_residual", + site="resid_post", + layers=layers, + tokens=TokenSelector.last(), + storage=TensorStorage(dtype="float16", format="safetensors"), + ), + ), + ), + ), + WorkflowStep( + name="score_numeric", + runner="analysis_local", + spec=TransformSpec( + builder=TransformBuilder.from_function( + score_numeric_semantics_feature, + local_python_sources=("papers",), + ), + inputs={ + "feature": StepRef("capture_numeric_prompts").feature("assistant_prefill_residual"), + "vector_space_path": vector_space_result_path(), + "concepts": EMOTIONS, + "layers": layers, + "metric": "cosine", + }, + ), + ), + WorkflowStep( + name="figure3_validation", + runner="analysis_local", + spec=TransformSpec( + builder=TransformBuilder.from_function( + build_numeric_semantics_validation, + local_python_sources=("papers",), + ), + inputs={ + "scores": StepRef("score_numeric"), + "output_dir": validation_output_dir(), + }, + ), + ), + WorkflowStep( + name="report", + runner="report_local", + spec=ReportSpec( + inputs=(StepRef("score_numeric"), StepRef("figure3_validation")), + template="voice_emotions_llama70b_numeric_semantics", + output_dir=os.getenv("EMOTION_NUMERIC_REPORT_DIR", DEFAULT_REPORT_DIR), + ), + ), + ), + ) + + +def build_runner_specs() -> dict[str, object]: + artifact_store = ModalVolumeStore( + name=ARTIFACT_VOLUME_NAME, + root=os.getenv("EMOTION_NUMERIC_MODAL_ARTIFACT_ROOT", MODAL_ARTIFACT_ROOT), + transfer_policy=TransferPolicy(allow_large_transfer=True), + ) + local_artifact_root = Path(os.getenv("EMOTION_NUMERIC_LOCAL_ARTIFACT_ROOT", str(LOCAL_ARTIFACT_ROOT))) + local_store = LocalArtifactStore(local_artifact_root) + model_volume = ModalVolumeMount( + name=MODEL_VOLUME_NAME, + mount_path=MODEL_VOLUME_PATH, + create_if_missing=True, + commit_on_success=True, + ) + shared_env = { + "HF_HOME": f"{MODEL_VOLUME_PATH}/hf_home", + "TRANSFORMERS_CACHE": f"{MODEL_VOLUME_PATH}/hf_home/transformers", + "VLLM_CACHE_ROOT": os.getenv("EMOTION_NUMERIC_VLLM_CACHE_ROOT", MODEL_VOLUME_PATH), + "TORCHINDUCTOR_CACHE_DIR": f"{MODEL_VOLUME_PATH}/torch_compile_cache", + **_workflow_env(), + } + return { + "capture_gpu": ModalRunnerSpec( + resources=ModalResources( + gpu=os.getenv("EMOTION_NUMERIC_CAPTURE_GPU", "H200:2"), + cpu=_env_int("EMOTION_NUMERIC_CAPTURE_CPU", 16), + memory_mb=_env_int("EMOTION_NUMERIC_CAPTURE_MEMORY_MB", 128 * 1024), + timeout_seconds=_env_int("EMOTION_NUMERIC_CAPTURE_TIMEOUT_SECONDS", 60 * 60 * 6), + max_containers=_env_optional_int("EMOTION_NUMERIC_CAPTURE_MAX_CONTAINERS") or 1, + shard_count=_env_optional_int("EMOTION_NUMERIC_CAPTURE_SHARD_COUNT"), + enable_workflow_batching=_env_bool("EMOTION_NUMERIC_CAPTURE_WORKFLOW_BATCHING", True), + env=shared_env, + volumes=(model_volume,), + ), + artifacts=artifact_store, + ), + "analysis_cpu": ModalRunnerSpec( + resources=ModalResources( + cpu=_env_int("EMOTION_NUMERIC_ANALYSIS_CPU", 8), + memory_mb=_env_int("EMOTION_NUMERIC_ANALYSIS_MEMORY_MB", 64 * 1024), + timeout_seconds=_env_int("EMOTION_NUMERIC_ANALYSIS_TIMEOUT_SECONDS", 60 * 60 * 2), + enable_workflow_batching=_env_bool("EMOTION_NUMERIC_ANALYSIS_WORKFLOW_BATCHING", True), + env=shared_env, + volumes=(model_volume,), + ), + artifacts=artifact_store, + ), + "analysis_local": LocalRunnerSpec(artifacts=local_store), + "report_local": LocalRunnerSpec(artifacts=local_store), + } + + +def _engine() -> VLLMEngine: + return VLLMEngine( + model_id=MODEL_ID, + model_path_root=MODEL_VOLUME_PATH, + tensor_parallel_size=_env_int("EMOTION_NUMERIC_TENSOR_PARALLEL_SIZE", 2), + max_model_len=_env_int("EMOTION_NUMERIC_MAX_MODEL_LEN", DEFAULT_MAX_MODEL_LEN), + gpu_memory_utilization=float(os.getenv("EMOTION_NUMERIC_GPU_MEMORY_UTILIZATION", "0.90")), + enforce_eager=False, + enable_prefix_caching=True, + max_num_seqs=_env_int("EMOTION_NUMERIC_MAX_NUM_SEQS", DEFAULT_MAX_NUM_SEQS), + max_num_batched_tokens=_env_optional_int("EMOTION_NUMERIC_MAX_NUM_BATCHED_TOKENS") + or DEFAULT_MAX_NUM_BATCHED_TOKENS, + enable_chunked_prefill=_env_bool("EMOTION_NUMERIC_ENABLE_CHUNKED_PREFILL", True), + add_generation_prompt=True, + enable_thinking=False, + ) + + +def _env_int(name: str, default: int) -> int: + return int(os.getenv(name, str(default))) + + +def _env_optional_int(name: str) -> int | None: + raw = os.getenv(name) + if raw is None or not raw.strip(): + return None + return int(raw) + + +def _env_bool(name: str, default: bool) -> bool: + raw = os.getenv(name) + if raw is None or not raw.strip(): + return default + return raw.strip().lower() in {"1", "true", "yes", "on"} + + +def _workflow_env() -> dict[str, str]: + return {key: value for key, value in os.environ.items() if key.startswith("EMOTION_NUMERIC_")} diff --git a/papers/voice/emotions/replication/specs/llama70b_validation_workflow.py b/papers/voice/emotions/replication/specs/llama70b_validation_workflow.py new file mode 100644 index 0000000..bb95049 --- /dev/null +++ b/papers/voice/emotions/replication/specs/llama70b_validation_workflow.py @@ -0,0 +1,92 @@ +"""Local validation workflow for completed Llama 70B emotion-vector assets.""" + +from __future__ import annotations + +import os +from pathlib import Path + +from pipelines_v2.api import ( + Dataset, + LocalArtifactStore, + LocalRunnerSpec, + ReportSpec, + StepRef, + TransformBuilder, + TransformSpec, + WorkflowSpec, + WorkflowStep, +) +from papers.voice.emotions.replication.validation import ( + build_paper_graph_validation, + latest_emotion_space_result_path, +) + + +WORKFLOW_NAME = "papers_voice_emotions_llama33_70b_validation" +DEFAULT_SELECTED_LAYER = 52 +DEFAULT_REPORT_DIR = f"papers/voice/emotions/replication/reports/{WORKFLOW_NAME}" +DEFAULT_LOCAL_ARTIFACT_ROOT = f"{DEFAULT_REPORT_DIR}/artifacts" + + +def emotion_space_result_path() -> str: + override = os.getenv("EMOTION_VALIDATION_EMOTION_SPACE_PATH") + if override: + return override + return str(latest_emotion_space_result_path()) + + +def selected_layer() -> int: + return int(os.getenv("EMOTION_VALIDATION_LAYER", str(DEFAULT_SELECTED_LAYER))) + + +def validation_output_dir() -> str: + override = os.getenv("EMOTION_VALIDATION_OUTPUT_DIR") + if override: + return override + return f"{DEFAULT_REPORT_DIR}/paper_graphs_layer{selected_layer()}" + + +def build_dataset() -> Dataset: + return Dataset.from_examples((), name=f"{WORKFLOW_NAME}_local_assets") + + +def build_workflow() -> WorkflowSpec: + return WorkflowSpec( + name=WORKFLOW_NAME, + steps=( + WorkflowStep( + name="paper_graph_validation", + runner="analysis_local", + spec=TransformSpec( + builder=TransformBuilder.from_function( + build_paper_graph_validation, + local_python_sources=("papers",), + ), + inputs={ + "emotion_space_path": emotion_space_result_path(), + "selected_layer": selected_layer(), + "pca_components": 3, + "output_dir": validation_output_dir(), + }, + ), + ), + WorkflowStep( + name="report", + runner="report_local", + spec=ReportSpec( + inputs=(StepRef("paper_graph_validation"),), + template="voice_emotions_llama70b_validation", + output_dir=os.getenv("EMOTION_VALIDATION_REPORT_DIR", DEFAULT_REPORT_DIR), + ), + ), + ), + ) + + +def build_runner_specs() -> dict[str, object]: + artifact_root = Path(os.getenv("EMOTION_VALIDATION_LOCAL_ARTIFACT_ROOT", DEFAULT_LOCAL_ARTIFACT_ROOT)) + artifact_store = LocalArtifactStore(artifact_root) + return { + "analysis_local": LocalRunnerSpec(artifacts=artifact_store), + "report_local": LocalRunnerSpec(artifacts=artifact_store), + } diff --git a/papers/voice/emotions/replication/specs/llama70b_vector_workflow.py b/papers/voice/emotions/replication/specs/llama70b_vector_workflow.py new file mode 100644 index 0000000..8c85be4 --- /dev/null +++ b/papers/voice/emotions/replication/specs/llama70b_vector_workflow.py @@ -0,0 +1,1047 @@ +"""Llama 3.3 70B emotion-vector asset workflow. + +Pilot mode validates plumbing with four emotions. Full mode uses all 171 +paper emotions and is the intended demo-grade vector-space derivation. +""" + +from __future__ import annotations + +import math +import os +import re +from collections import Counter, defaultdict +from functools import lru_cache +from pathlib import Path +from typing import Any, Mapping + +from pipelines_v2.api import ( + CaptureSpec, + Dataset, + EmotionDirectionSpec, + EmotionGeometrySpec, + EmotionScoreSpec, + EmotionVectorSpaceSpec, + Example, + LocalArtifactStore, + LocalRunnerSpec, + ModalResources, + ModalRunnerSpec, + ModalSecret, + ModalVolumeMount, + ModalVolumeStore, + PostgresCatalog, + PostgresSource, + ReportSpec, + ResidualSite, + SectionSelector, + StepRef, + TensorStorage, + TokenPooling, + TokenSelector, + TransformBuilder, + TransformResult, + TransformSpec, + TransferPolicy, + VLLMEngine, + WorkflowSpec, + WorkflowStep, +) + +from papers.voice.common.smoke import token_metadata +from papers.voice.emotions.assets import concept_key, direction_step_name, emotion_concepts, emotion_topics +from papers.voice.storage import ( + ARTIFACT_VOLUME_NAME, + MODEL_VOLUME_PATH, + YORA_MODEL_VOLUME_NAME, + local_vector_root, + modal_vector_root, +) + + +WORKFLOW_NAME = "papers_voice_emotions_llama33_70b_vectors" +DB_ENV_VAR = "XENON_NEON_DATABASE_URL" +MODEL_ID = "meta-llama/Llama-3.3-70B-Instruct" +MODEL_KEY = "llama_3_3_70b" +MODEL_VOLUME_NAME = YORA_MODEL_VOLUME_NAME +MODAL_ARTIFACT_ROOT = modal_vector_root("emotions", "llama-3.3-70b", "sofroniew-2026", "v1") +LOCAL_ARTIFACT_ROOT = local_vector_root("emotions", "llama-3.3-70b", "sofroniew-2026", "v1") +PROMPT_ROOT = Path(__file__).resolve().parents[1] / "prompts" +PILOT_CONCEPTS = ("happy", "sad", "angry", "calm") +DEFAULT_PILOT_LAYERS = (32, 40, 48) +DEFAULT_FULL_LAYERS = (16, 20, 24, 28, 32, 36, 40, 44, 48, 52, 56, 60, 64, 68) +DEFAULT_PILOT_VALIDATION_LAYER = 40 +DEFAULT_FULL_VALIDATION_LAYER = 52 +DEFAULT_MAX_MODEL_LEN = 16384 +DEFAULT_GENERATED_ROWS_TABLE = "papers_voice_emotions_llama70b_generated_rows_v1" + + +def mode() -> str: + value = os.getenv("EMOTION_ASSET_MODE", "pilot").strip().lower() + if value not in {"pilot", "full"}: + raise ValueError("EMOTION_ASSET_MODE must be 'pilot' or 'full'") + return value + + +def selected_emotions() -> tuple[str, ...]: + override = _env_list("EMOTION_ASSET_EMOTIONS") + if override: + return override + return emotion_concepts(mode=mode()) + + +def _emotion_subset_requested() -> bool: + return bool(_env_list("EMOTION_ASSET_EMOTIONS")) + + +def selected_train_topics() -> tuple[str, ...]: + topics = emotion_topics() + count = _env_int("EMOTION_ASSET_TRAIN_TOPIC_COUNT", 8 if mode() == "pilot" else len(topics)) + return tuple(topics[:count]) + + +def selected_heldout_topics() -> tuple[str, ...]: + if mode() == "full": + return () + topics = emotion_topics() + train_count = len(selected_train_topics()) + count = _env_int("EMOTION_ASSET_HELDOUT_TOPIC_COUNT", 4 if mode() == "pilot" else 0) + return tuple(topics[train_count : train_count + count]) + + +def selected_neutral_topics() -> tuple[str, ...]: + topics = emotion_topics() + count = _env_int("EMOTION_ASSET_NEUTRAL_TOPIC_COUNT", 12 if mode() == "pilot" else len(topics)) + return tuple(topics[:count]) + + +def stories_per_prompt() -> int: + return _env_int("EMOTION_ASSET_STORIES_PER_PROMPT", 3 if mode() == "pilot" else 12) + + +def capture_layers() -> tuple[int, ...]: + default = DEFAULT_FULL_LAYERS if mode() == "full" else DEFAULT_PILOT_LAYERS + return _env_int_tuple("EMOTION_ASSET_LAYERS", default) + + +def validation_layer() -> int: + default = DEFAULT_FULL_VALIDATION_LAYER if mode() == "full" else DEFAULT_PILOT_VALIDATION_LAYER + return _env_int("EMOTION_ASSET_VALIDATION_LAYER", default) + + +def token_selector() -> TokenSelector: + selector = os.getenv("EMOTION_ASSET_TOKEN_SELECTOR", "").strip().lower() + if selector == "full_sequence" or (not selector and mode() == "pilot"): + return TokenSelector.full_sequence() + if selector in {"token_50", "token_50_plus", "slice_50"} or not selector: + return TokenSelector.slice(50, None) + raise ValueError("EMOTION_ASSET_TOKEN_SELECTOR must be full_sequence or token_50") + + +def capture_pooling() -> TokenPooling | None: + value = os.getenv("EMOTION_ASSET_CAPTURE_POOLING", "").strip().lower() + if not value: + value = "mean" if mode() == "full" else "none" + if value in {"", "none", "off", "false", "0"}: + return None + if value == "mean": + return TokenPooling.mean() + if value == "last": + return TokenPooling.last() + if value == "first": + return TokenPooling.first() + raise ValueError("EMOTION_ASSET_CAPTURE_POOLING must be mean, first, last, or none") + + +def vector_space_token_selector() -> TokenSelector: + return TokenSelector.full_sequence() if capture_pooling() is not None else token_selector() + + +def min_capture_chars() -> int: + explicit = os.getenv("EMOTION_ASSET_MIN_CAPTURE_CHARS") + if explicit is not None: + return int(explicit) + selector = token_selector() + if selector.kind == "slice" and int(selector.value["start"]) >= 50: + return 300 + return 0 + + +def capture_row_limit() -> int | None: + limit = _env_optional_int("EMOTION_ASSET_CAPTURE_ROW_LIMIT") + if limit is None or limit <= 0: + return None + if mode() == "full" and not _emotion_subset_requested(): + raise ValueError( + "EMOTION_ASSET_CAPTURE_ROW_LIMIT is not allowed for a full production vector run. " + "Unset it to process the complete generated dataset, or set EMOTION_ASSET_EMOTIONS " + "for an explicit subset smoke." + ) + minimum = len(selected_emotions()) * min_examples_per_concept() + if mode() == "full" and limit < minimum: + raise ValueError( + "EMOTION_ASSET_CAPTURE_ROW_LIMIT is too small for a full balanced vector run: " + f"got {limit}, need at least {minimum} rows " + f"({len(selected_emotions())} emotions * {min_examples_per_concept()} min examples). " + "For a smaller smoke, set EMOTION_ASSET_EMOTIONS to a concept subset." + ) + return limit + + +def min_examples_per_concept() -> int: + default = stories_per_prompt() if mode() == "pilot" else 12 + return _env_int("EMOTION_ASSET_MIN_EXAMPLES_PER_CONCEPT", default) + + +def use_heldout_validation() -> bool: + return bool(selected_heldout_topics()) + + +def capture_max_num_seqs() -> int: + return _env_int("EMOTION_ASSET_CAPTURE_MAX_NUM_SEQS", 512 if mode() == "full" else 1) + + +def _engine(*, max_num_seqs: int = 1) -> VLLMEngine: + return VLLMEngine( + model_id=MODEL_ID, + model_path_root=MODEL_VOLUME_PATH, + tensor_parallel_size=_env_int("EMOTION_ASSET_TENSOR_PARALLEL_SIZE", 2), + max_model_len=_env_int("EMOTION_ASSET_MAX_MODEL_LEN", DEFAULT_MAX_MODEL_LEN), + gpu_memory_utilization=float(os.getenv("EMOTION_ASSET_GPU_MEMORY_UTILIZATION", "0.95")), + enforce_eager=False, + enable_prefix_caching=True, + max_num_seqs=max_num_seqs, + max_num_batched_tokens=_env_optional_int("EMOTION_ASSET_MAX_NUM_BATCHED_TOKENS") or (8192 if mode() == "full" else None), + enable_chunked_prefill=_env_bool("EMOTION_ASSET_ENABLE_CHUNKED_PREFILL", True), + enable_thinking=False, + ) + + +def generated_rows_table() -> str: + return os.getenv("EMOTION_ASSET_GENERATED_ROWS_TABLE", DEFAULT_GENERATED_ROWS_TABLE).strip() or DEFAULT_GENERATED_ROWS_TABLE + + +@lru_cache(maxsize=None) +def _prompt_template(filename: str) -> str: + return (PROMPT_ROOT / filename).read_text(encoding="utf-8").strip() + + +def _story_prompt(*, emotion: str, topic: str, n_stories: int) -> str: + return _prompt_template("emotional_stories.md").format( + emotion=emotion, + topic=topic, + n_stories=n_stories, + ) + + +def _neutral_prompt(*, topic: str, n_dialogues: int) -> str: + return _prompt_template("neutral_transcripts.md").format( + topic=topic, + n_stories=n_dialogues, + ) + + +def build_story_generation_dataset() -> Dataset: + examples: list[Example] = [] + n_stories = stories_per_prompt() + for split, topics in (("train", selected_train_topics()), ("heldout", selected_heldout_topics())): + for emotion in selected_emotions(): + for topic_index, topic in enumerate(topics): + examples.append( + Example( + key=f"{split}_{concept_key(emotion)}_{topic_index:03d}", + prompt=_story_prompt(emotion=emotion, topic=topic, n_stories=n_stories), + labels={"emotion": emotion, "topic": topic, "split": split, "n_stories": n_stories}, + ) + ) + return Dataset.from_examples(examples, name=f"{WORKFLOW_NAME}_{mode()}_story_generation_prompts") + + +def build_dataset() -> Dataset: + return build_curated_story_capture_dataset(split="train") + + +def build_neutral_generation_dataset() -> Dataset: + n_stories = stories_per_prompt() + return Dataset.from_examples( + [ + Example( + key=f"neutral_{index:03d}", + prompt=_neutral_prompt(topic=topic, n_dialogues=n_stories), + labels={"row_role": "neutral", "topic": topic, "n_stories": n_stories}, + ) + for index, topic in enumerate(selected_neutral_topics()) + ], + name=f"{WORKFLOW_NAME}_{mode()}_neutral_generation_prompts", + ) + + +def build_curated_story_capture_dataset(*, split: str) -> Dataset: + if split not in {"train", "heldout"}: + raise ValueError("split must be 'train' or 'heldout'") + return Dataset.from_postgres( + source=PostgresSource.from_env(DB_ENV_VAR), + sql=_curated_story_sql(split=split), + prompt_column="text", + example_key_column="example_id", + prompt_hash_column="text_sha256", + label_columns=("emotion", "split", "topic", "source_prompt_key", "block_index"), + case_columns=("topic", "source_prompt_key"), + case_key_column="source_prompt_key", + metadata_columns=("row_role", "topic", "source_prompt_key", "block_index", "section_records"), + name=f"{WORKFLOW_NAME}_{mode()}_{split}_stories", + ) + + +def build_curated_neutral_capture_dataset() -> Dataset: + return Dataset.from_postgres( + source=PostgresSource.from_env(DB_ENV_VAR), + sql=_curated_neutral_sql(), + prompt_column="text", + example_key_column="example_id", + prompt_hash_column="text_sha256", + label_columns=("row_role", "split", "topic", "source_prompt_key", "block_index"), + case_columns=("topic", "source_prompt_key"), + case_key_column="source_prompt_key", + metadata_columns=("row_role", "topic", "source_prompt_key", "block_index", "section_records"), + name=f"{WORKFLOW_NAME}_{mode()}_neutral_dialogues", + ) + + +def _curated_story_sql(*, split: str) -> str: + emotion_filter = ", ".join(_sql_literal(emotion) for emotion in selected_emotions()) + min_chars_filter = _min_capture_chars_sql() + split_filter = _story_split_sql(split) + limit = capture_row_limit() + if limit is not None: + per_emotion_limit = math.ceil(limit / len(selected_emotions())) + return f""" + WITH candidate_rows AS ( + SELECT + example_id, + text, + text_sha256, + row_role, + split, + emotion, + topic, + source_prompt_key, + block_index, + {_assistant_response_section_sql()} AS section_records, + row_number() OVER ( + PARTITION BY emotion + ORDER BY source_prompt_key, block_index, example_id + ) AS emotion_row_number + FROM {_generated_rows_relation()} + WHERE mode = {_sql_literal(mode())} + AND row_role = 'story' + {split_filter} + AND emotion IN ({emotion_filter}) + {min_chars_filter} + ) + SELECT + example_id, + text, + text_sha256, + row_role, + split, + emotion, + topic, + source_prompt_key, + block_index, + section_records + FROM candidate_rows + WHERE emotion_row_number <= {int(per_emotion_limit)} + ORDER BY emotion_row_number, emotion, source_prompt_key, block_index + LIMIT {int(limit)} + """ + return f""" + SELECT + example_id, + text, + text_sha256, + row_role, + split, + emotion, + topic, + source_prompt_key, + block_index, + {_assistant_response_section_sql()} AS section_records + FROM {_generated_rows_relation()} + WHERE mode = {_sql_literal(mode())} + AND row_role = 'story' + {split_filter} + AND emotion IN ({emotion_filter}) + {min_chars_filter} + ORDER BY emotion, source_prompt_key, block_index + """ + + +def _curated_neutral_sql() -> str: + min_chars_filter = _min_capture_chars_sql() + return f""" + SELECT + example_id, + text, + text_sha256, + row_role, + split, + emotion, + topic, + source_prompt_key, + block_index, + {_assistant_response_section_sql()} AS section_records + FROM {_generated_rows_relation()} + WHERE mode = {_sql_literal(mode())} + AND row_role = 'neutral' + {min_chars_filter} + ORDER BY source_prompt_key, block_index + {_capture_row_limit_sql()} + """ + + +def _min_capture_chars_sql() -> str: + minimum = min_capture_chars() + if minimum <= 0: + return "" + return f"AND char_length(text) >= {int(minimum)}" + + +def _capture_row_limit_sql() -> str: + limit = capture_row_limit() + if limit is None: + return "" + return f"LIMIT {int(limit)}" + + +def _story_split_sql(split: str) -> str: + if split == "train" and not use_heldout_validation(): + return "" + return f"AND split = {_sql_literal(split)}" + + +def _assistant_response_section_sql() -> str: + return ( + "jsonb_build_array(jsonb_build_object(" + "'name', 'assistant_response', " + "'role', 'assistant', " + "'unit', 'row', " + "'index', 0, " + "'char_start', 0, " + "'char_end', char_length(text)" + "))" + ) + + +def _generated_rows_relation() -> str: + table = generated_rows_table() + if not re.fullmatch(r"[A-Za-z_][A-Za-z0-9_]*(?:\.[A-Za-z_][A-Za-z0-9_]*)?", table): + raise ValueError("EMOTION_ASSET_GENERATED_ROWS_TABLE must be an identifier or schema-qualified identifier") + return ".".join(f'"{part}"' for part in table.split(".")) + + +def _sql_literal(value: str) -> str: + return "'" + str(value).replace("'", "''") + "'" + + +def _row_mapping(row: Any) -> Mapping[str, Any]: + return row if isinstance(row, Mapping) else {} + + +def _parse_blocks(text: str, *, label: str) -> list[str]: + label_pattern = re.compile(rf"(?im)^\s*\[?\s*{re.escape(label)}\s+\d+\s*\]?\s*$") + if label_pattern.search(text): + parts = label_pattern.split(text) + if parts and parts[0].strip(): + parts = parts[1:] + chunks = [chunk.strip() for chunk in parts if chunk.strip()] + return _dialogue_chunks(chunks) if label == "dialogue" else _story_chunks(chunks) + if label == "dialogue": + heading_chunks = _dialogue_heading_chunks(text) + if heading_chunks: + return heading_chunks + return [chunk.strip() for chunk in re.split(r"\n\s*\n", text) if chunk.strip()][: stories_per_prompt()] + + +def _story_chunks(chunks: list[str]) -> list[str]: + return [cleaned for chunk in chunks for cleaned in [_trim_story_meta(chunk)] if cleaned] + + +def _trim_story_meta(chunk: str) -> str: + paragraphs = [paragraph.strip() for paragraph in re.split(r"\n\s*\n", chunk.strip()) if paragraph.strip()] + kept: list[str] = [] + for paragraph in paragraphs: + if _looks_like_story_meta_paragraph(paragraph): + break + trimmed = _trim_inline_story_meta(paragraph) + if trimmed: + kept.append(trimmed) + if trimmed != paragraph: + break + return "\n\n".join(kept).strip() + + +def _trim_inline_story_meta(paragraph: str) -> str: + lower = paragraph.lower() + starts: list[int] = [] + + let_me_know = lower.find("let me know if") + if let_me_know >= 0 and any( + marker in lower[let_me_know:] + for marker in ("requirement", "stories", "instruction", "response", "revise", "adjustment", "improve", "feedback") + ): + starts.append(let_me_know) + + i_hope = lower.find("i hope") + if i_hope >= 0: + tail = lower[i_hope:] + if ( + "i hope you like them" in tail + or "i hope this is accurate" in tail + or ("i hope these" in tail and any(marker in tail for marker in ("requirement", "prompt", "accurate", "adjustment"))) + ): + starts.append(i_hope) + + completed = lower.find("i have now completed") + if completed >= 0 and "as requested" in lower[completed:]: + starts.append(completed) + + for marker in ( + "also, are there any other instructions", + "also, please let me know", + "please provide feedback", + "thanks! (i have made", + "please disregard", + "the stories aim", + "the stories explore", + "to further enhance the stories", + ): + position = lower.find(marker) + if position >= 0: + starts.append(position) + + if not starts: + return paragraph + return paragraph[: min(starts)].strip() + + +def _looks_like_story_meta_paragraph(paragraph: str) -> bool: + lines = [line.strip() for line in paragraph.strip().splitlines() if line.strip()] + if not lines: + return False + first = lines[0] + normalized = " ".join(lines).lower() + if re.match(r"(?i)^(?:please\s+)?note(?:\s+that)?\b", first): + return True + if re.match(r"(?i)^here are\b", first) and "stor" in normalized: + return True + if re.match(r"(?i)^as requested\b", first) and "stor" in normalized: + return True + if re.match(r"(?i)^i hope\b", first) and any( + marker in normalized for marker in ("requirements", "accurate", "adjustments", "prompt") + ): + return True + if re.match(r"(?i)^please find\b", first) and "response" in normalized: + return True + if re.match(r"(?i)^let me know\b", first) and any(marker in normalized for marker in ("prompt", "proceed")): + return True + if re.match(r"(?i)^i can do this prompt\b", first): + return True + if "without using the word" in normalized and any( + marker in normalized for marker in ("direct synonym", "convey the emotion", "requirements") + ): + return True + if "direct synonym" in normalized and "convey" in normalized and "emotion" in normalized: + return True + return False + + +def _dialogue_chunks(chunks: list[str]) -> list[str]: + return [ + cleaned + for chunk in chunks + for cleaned in [_strip_dialogue_heading(_trim_trailing_empty_speaker(chunk))] + if re.search(r"(?im)^\s*Person\s*:", cleaned) + and re.search(r"(?im)^\s*AI\s*:", cleaned) + and re.search(r"(?ims)^\s*Person\s*:\s*\S.*?^\s*AI\s*:\s*\S", cleaned) + ] + + +def _strip_dialogue_heading(chunk: str) -> str: + lines = chunk.strip().splitlines() + first = _next_nonempty_line_index(lines, 0) + if first is None: + return "" + heading = lines[first].strip() + if re.match(r"(?i)^(?:dialogue\s+)?\d+$", heading): + del lines[first] + return "\n".join(lines).strip() + + +def _trim_trailing_empty_speaker(chunk: str) -> str: + lines = chunk.strip().splitlines() + last = _previous_nonempty_line_index(lines, len(lines) - 1) + if last is None: + return "" + if re.match(r"(?i)^\s*AI\s*:\s*$", lines[last]): + previous_person = None + for index in range(last - 1, -1, -1): + if re.match(r"(?i)^\s*Person\s*:", lines[index]): + previous_person = index + break + if previous_person is not None: + lines = lines[:previous_person] + elif re.match(r"(?i)^\s*Person\s*:\s*$", lines[last]): + lines = lines[:last] + return "\n".join(lines).strip() + + +def _dialogue_heading_chunks(text: str) -> list[str]: + lines = text.splitlines() + starts: list[int] = [] + for index, line in enumerate(lines): + heading = line.strip() + if not _looks_like_dialogue_heading(heading): + continue + next_line_index = _next_nonempty_line_index(lines, index + 1) + if next_line_index is not None and re.match(r"(?i)^\s*System\s*:", lines[next_line_index]): + next_line_index = _next_nonempty_line_index(lines, next_line_index + 1) + if next_line_index is None or not re.match(r"(?i)^\s*Person\s*:", lines[next_line_index]): + continue + window = "\n".join(lines[next_line_index + 1 : next_line_index + 20]) + if re.search(r"(?im)^\s*AI\s*:", window): + starts.append(index) + chunks: list[str] = [] + for start_index, start in enumerate(starts): + stop = starts[start_index + 1] if start_index + 1 < len(starts) else len(lines) + chunks.append("\n".join(lines[start:stop]).strip()) + return _dialogue_chunks(chunks) + + +def _looks_like_dialogue_heading(text: str) -> bool: + if not text: + return False + if re.match(r"(?i)^(person|ai|human|assistant|system)\s*:", text): + return False + if re.match(r"(?i)^here are\b", text): + return False + if text.startswith(("-", "*")): + return False + if re.match(r"^\d+[\.\)]\s+\S", text): + return False + return len(text) <= 220 + + +def _next_nonempty_line_index(lines: list[str], start: int) -> int | None: + for index in range(start, len(lines)): + if lines[index].strip(): + return index + return None + + +def _previous_nonempty_line_index(lines: list[str], start: int) -> int | None: + for index in range(start, -1, -1): + if lines[index].strip(): + return index + return None + + +def _contains_exact_word(text: str, word: str) -> bool: + return re.search(rf"\b{re.escape(word.lower())}\b", text.lower()) is not None + + +def build_story_capture_datasets(*, story_generation: Any) -> TransformResult: + payload = story_generation.result() + raw_rows = payload.get("rows") if isinstance(payload, Mapping) else [] + allowed_emotions = set(selected_emotions()) + examples_by_split: dict[str, list[Example]] = {"train": [], "heldout": []} + label_values: dict[str, str] = {} + split_values: dict[str, str] = {} + topic_values: dict[str, str] = {} + direct_mentions = 0 + block_counts: Counter[str] = Counter() + + for row in raw_rows if isinstance(raw_rows, list) else []: + source = _row_mapping(_row_mapping(row).get("example")) + labels = dict(_row_mapping(source.get("labels"))) + split = str(labels.get("split") or "") + emotion = str(labels.get("emotion") or "") + topic = str(labels.get("topic") or "") + if split not in examples_by_split or emotion not in allowed_emotions: + continue + blocks = _parse_blocks(str(_row_mapping(row).get("generated_text") or ""), label="story") + block_counts[f"{split}:{emotion}"] += len(blocks) + for story_index, story in enumerate(blocks[: stories_per_prompt()]): + if _contains_exact_word(story, emotion): + direct_mentions += 1 + key = f"{split}_{concept_key(emotion)}_{len(examples_by_split[split]):06d}" + examples_by_split[split].append( + Example( + key=key, + prompt=story, + labels={ + "emotion": emotion, + "split": split, + "topic": topic, + "source_prompt_key": str(source.get("key") or ""), + "story_index": story_index, + }, + metadata={ + **token_metadata("story", "assistant_response", token_count=512), + "source": "llama70b_generated_story", + }, + ) + ) + label_values[key] = emotion + split_values[key] = split + topic_values[key] = topic + + train = Dataset.from_examples(examples_by_split["train"], name=f"{WORKFLOW_NAME}_{mode()}_train_stories") + heldout = Dataset.from_examples(examples_by_split["heldout"], name=f"{WORKFLOW_NAME}_{mode()}_heldout_stories") + return TransformResult( + payload={ + "kind": "emotion_llama70b_story_capture_datasets", + "dataset": train.to_dict(), + "train_dataset": train.to_dict(), + "heldout_dataset": heldout.to_dict(), + "summary": { + "mode": mode(), + "emotion_count": len(allowed_emotions), + "train_count": len(examples_by_split["train"]), + "heldout_count": len(examples_by_split["heldout"]), + "direct_emotion_mentions": direct_mentions, + "generated_block_counts": dict(sorted(block_counts.items())), + "target_train_count": len(allowed_emotions) * len(selected_train_topics()) * stories_per_prompt(), + "target_heldout_count": len(allowed_emotions) * len(selected_heldout_topics()) * stories_per_prompt(), + }, + }, + labels={"emotion": {"values": label_values}, "split": {"values": split_values}, "topic": {"values": topic_values}}, + example_keys=sorted(label_values), + ) + + +def build_neutral_capture_dataset(*, neutral_generation: Any) -> TransformResult: + payload = neutral_generation.result() + raw_rows = payload.get("rows") if isinstance(payload, Mapping) else [] + examples: list[Example] = [] + topic_values: dict[str, str] = {} + block_counts: Counter[str] = Counter() + for row in raw_rows if isinstance(raw_rows, list) else []: + source = _row_mapping(_row_mapping(row).get("example")) + labels = dict(_row_mapping(source.get("labels"))) + topic = str(labels.get("topic") or "") + blocks = _parse_blocks(str(_row_mapping(row).get("generated_text") or ""), label="dialogue") + block_counts[str(source.get("key") or "")] = len(blocks) + for index, dialogue in enumerate(blocks[: stories_per_prompt()]): + key = f"neutral_{len(examples):06d}" + examples.append( + Example( + key=key, + prompt=dialogue.replace("Person:", "Human:").replace("AI:", "Assistant:"), + labels={"row_role": "neutral", "topic": topic, "dialogue_index": index}, + metadata={"source": "llama70b_generated_neutral_dialogue"}, + ) + ) + topic_values[key] = topic + dataset = Dataset.from_examples(examples, name=f"{WORKFLOW_NAME}_{mode()}_neutral_dialogues") + return TransformResult( + payload={ + "kind": "emotion_llama70b_neutral_capture_dataset", + "dataset": dataset.to_dict(), + "summary": { + "mode": mode(), + "neutral_count": len(examples), + "target_neutral_count": len(selected_neutral_topics()) * stories_per_prompt(), + "generated_block_counts": dict(sorted(block_counts.items())), + }, + }, + labels={"topic": {"values": topic_values}}, + example_keys=sorted(topic_values), + ) + + +def summarize_emotion_validation(*, scores: Any, labels: Any, story_datasets: Any | None = None) -> TransformResult: + payload = scores.result() if hasattr(scores, "result") else scores + label_values = labels.resolve_values() if hasattr(labels, "resolve_values") else dict(labels) + rows = payload.get("example_summaries", []) if isinstance(payload, Mapping) else [] + by_example: dict[str, list[dict[str, Any]]] = defaultdict(list) + for row in rows: + if isinstance(row, Mapping): + by_example[str(row.get("example_key"))].append(dict(row)) + + predictions: list[dict[str, Any]] = [] + correct = 0 + predicted_counts: Counter[str] = Counter() + for example_key, items in sorted(by_example.items()): + scored = [] + for item in items: + metrics = item.get("metrics") if isinstance(item.get("metrics"), Mapping) else {} + scored.append({"emotion": str(item.get("emotion") or item.get("coordinate") or ""), "score": float(metrics.get("mean", 0.0))}) + if not scored: + continue + best = max(scored, key=lambda item: item["score"]) + gold = str(label_values.get(example_key, "")) + is_correct = best["emotion"] == gold + correct += int(is_correct) + predicted_counts[best["emotion"]] += 1 + predictions.append({"example_key": example_key, "gold": gold, "predicted": best["emotion"], "correct": is_correct, "scores": sorted(scored, key=lambda item: item["score"], reverse=True)}) + total = len(predictions) + story_payload = story_datasets.result() if story_datasets is not None and hasattr(story_datasets, "result") else {} + return TransformResult( + payload={ + "kind": "emotion_llama70b_validation_summary", + "summary": { + "mode": mode(), + "example_count": total, + "correct": correct, + "accuracy": correct / total if total else 0.0, + "chance_accuracy": 1 / len(selected_emotions()), + "score_metric": "mean", + "predicted_counts": dict(sorted(predicted_counts.items())), + "story_dataset_summary": dict(_row_mapping(story_payload.get("summary"))), + }, + "predictions": predictions, + }, + example_keys=[item["example_key"] for item in predictions], + ) + + +def build_workflow() -> WorkflowSpec: + emotions = selected_emotions() + layers = capture_layers() + read_layer = validation_layer() + site_pooling = capture_pooling() + site_tokens = token_selector() if site_pooling is not None else TokenSelector.full_sequence() + train_dataset = build_curated_story_capture_dataset(split="train") + heldout_dataset = build_curated_story_capture_dataset(split="heldout") if use_heldout_validation() else None + neutral_dataset = build_curated_neutral_capture_dataset() + report_inputs: tuple[Any, ...] = ( + StepRef("emotion_space"), + StepRef("emotion_geometry"), + ) + steps: list[WorkflowStep] = [ + WorkflowStep( + name="capture_train", + runner="capture_gpu", + spec=CaptureSpec( + engine=_engine(max_num_seqs=capture_max_num_seqs()), + dataset=train_dataset, + sites=( + ResidualSite( + name="story_residual", + site="resid_post", + layers=layers, + tokens=site_tokens, + pooling=site_pooling, + storage=TensorStorage(dtype="float16", format="safetensors"), + ), + ), + ), + ), + ] + if heldout_dataset is not None: + steps.append( + WorkflowStep( + name="capture_heldout", + runner="capture_gpu", + spec=CaptureSpec( + engine=_engine(max_num_seqs=capture_max_num_seqs()), + dataset=heldout_dataset, + sites=( + ResidualSite( + name="heldout_residual", + site="resid_post", + layers=layers, + tokens=site_tokens, + pooling=site_pooling, + storage=TensorStorage(dtype="float16", format="safetensors"), + ), + ), + ), + ) + ) + steps.extend( + [ + WorkflowStep( + name="capture_neutral", + runner="capture_gpu", + spec=CaptureSpec( + engine=_engine(max_num_seqs=capture_max_num_seqs()), + dataset=neutral_dataset, + sites=( + ResidualSite( + name="neutral_residual", + site="resid_post", + layers=layers, + tokens=site_tokens, + pooling=site_pooling, + storage=TensorStorage(dtype="float16", format="safetensors"), + ), + ), + ), + ), + WorkflowStep( + name="emotion_space", + runner="analysis_cpu", + spec=EmotionVectorSpaceSpec( + feature=StepRef("capture_train").feature("story_residual"), + concept_by=train_dataset.labels("emotion"), + layers=layers, + tokens=vector_space_token_selector(), + neutral_feature=StepRef("capture_neutral").feature("neutral_residual"), + neutral_variance_threshold=float(os.getenv("EMOTION_ASSET_NEUTRAL_VARIANCE_THRESHOLD", "0.5")), + min_examples_per_concept=min_examples_per_concept(), + metadata={ + "asset_id": "emotions-llama-3.3-70b-sofroniew-2026-v1", + "paper": "sofroniew2026twheemotion", + "model_id": MODEL_ID, + "model_key": MODEL_KEY, + "mode": mode(), + "emotion_count": len(emotions), + "generated_rows_table": generated_rows_table(), + "generated_rows_source": "neon", + "min_capture_chars": min_capture_chars(), + }, + ), + ), + WorkflowStep(name="emotion_geometry", runner="analysis_cpu", spec=EmotionGeometrySpec(vector_space=StepRef("emotion_space"), concepts=emotions, layers=(read_layer,), pca_components=3, cluster_count=None)), + ] + ) + if heldout_dataset is not None: + validation_inputs = {"scores": StepRef("score_heldout"), "labels": heldout_dataset.labels("emotion")} + steps.extend( + [ + WorkflowStep(name="score_heldout", runner="analysis_cpu", spec=EmotionScoreSpec(feature=StepRef("capture_heldout").feature("heldout_residual"), vector_space=StepRef("emotion_space"), concepts=emotions, layers=(read_layer,), slices=SectionSelector.named("assistant_response"), summaries=("mean", "max"), emit_labels=True)), + WorkflowStep( + name="validation_summary", + runner="analysis_cpu", + spec=TransformSpec( + builder=TransformBuilder.from_function(summarize_emotion_validation, local_python_sources=("papers",)), + inputs=validation_inputs, + ), + ), + ] + ) + report_inputs = ( + *report_inputs, + StepRef("score_heldout"), + StepRef("validation_summary"), + ) + report_inputs = ( + *report_inputs, + *(StepRef(direction_step_name(emotion)) for emotion in emotions), + ) + steps.extend( + [ + *( + WorkflowStep( + name=direction_step_name(emotion), + runner="analysis_cpu", + spec=EmotionDirectionSpec(vector_space=StepRef("emotion_space"), concept=emotion, layers=(read_layer,), metadata={"usage": "llama70b_emotion_vector_export", "mode": mode()}), + ) + for emotion in emotions + ), + WorkflowStep( + name="report", + runner="report_local", + spec=ReportSpec( + inputs=report_inputs, + template="voice_emotions_llama70b_vectors", + output_dir=f"papers/voice/emotions/replication/reports/{WORKFLOW_NAME}", + ), + ), + ] + ) + + return WorkflowSpec(name=WORKFLOW_NAME, steps=tuple(steps)) + + +def build_runner_specs() -> dict[str, object]: + db = PostgresSource.from_env(DB_ENV_VAR) + catalog = PostgresCatalog(source=db) + db_secret = ModalSecret.from_env_var(DB_ENV_VAR, secret_name="xenon-neon") + artifact_store = ModalVolumeStore( + name=ARTIFACT_VOLUME_NAME, + root=MODAL_ARTIFACT_ROOT, + transfer_policy=TransferPolicy(allow_large_transfer=True), + ) + model_volume = ModalVolumeMount(name=MODEL_VOLUME_NAME, mount_path=MODEL_VOLUME_PATH, create_if_missing=True, commit_on_success=True) + shared_env = { + "HF_HOME": f"{MODEL_VOLUME_PATH}/hf_home", + "TRANSFORMERS_CACHE": f"{MODEL_VOLUME_PATH}/hf_home/transformers", + "VLLM_CACHE_ROOT": os.getenv("EMOTION_ASSET_VLLM_CACHE_ROOT", MODEL_VOLUME_PATH), + "TORCHINDUCTOR_CACHE_DIR": f"{MODEL_VOLUME_PATH}/torch_compile_cache", + **_workflow_env(), + } + capture_shard_count = _env_optional_int("EMOTION_ASSET_CAPTURE_SHARD_COUNT") + if capture_shard_count is None and mode() == "full": + capture_shard_count = 4 + capture_max_containers = _env_optional_int("EMOTION_ASSET_CAPTURE_MAX_CONTAINERS") or capture_shard_count or 1 + capture_timeout = _env_int("EMOTION_ASSET_CAPTURE_TIMEOUT_SECONDS", 60 * 60 * 24 if mode() == "full" else 60 * 60 * 8) + capture_gpu = os.getenv("EMOTION_ASSET_CAPTURE_GPU", "H200:2" if mode() == "full" else "H100:2") + return { + "capture_gpu": ModalRunnerSpec( + resources=ModalResources( + gpu=capture_gpu, + cpu=_env_int("EMOTION_ASSET_CAPTURE_CPU", 16 if mode() == "full" else 8), + memory_mb=_env_int("EMOTION_ASSET_CAPTURE_MEMORY_MB", (128 if mode() == "full" else 96) * 1024), + timeout_seconds=capture_timeout, + max_containers=capture_max_containers, + shard_count=capture_shard_count, + enable_workflow_batching=_env_bool("EMOTION_ASSET_CAPTURE_WORKFLOW_BATCHING", True), + env=shared_env, + secrets=(db_secret,), + volumes=(model_volume,), + ), + artifacts=artifact_store, + catalog=catalog, + ), + "analysis_cpu": ModalRunnerSpec( + resources=ModalResources( + cpu=_env_int("EMOTION_ASSET_ANALYSIS_CPU", 16 if mode() == "full" else 8), + memory_mb=_env_int("EMOTION_ASSET_ANALYSIS_MEMORY_MB", (192 if mode() == "full" else 32) * 1024), + timeout_seconds=_env_int("EMOTION_ASSET_ANALYSIS_TIMEOUT_SECONDS", 60 * 60 * 12 if mode() == "full" else 60 * 60 * 2), + enable_workflow_batching=_env_bool("EMOTION_ASSET_ANALYSIS_WORKFLOW_BATCHING", True), + env=shared_env, + secrets=(db_secret,), + volumes=(model_volume,), + ), + artifacts=artifact_store, + catalog=catalog, + ), + "report_local": LocalRunnerSpec(artifacts=LocalArtifactStore(LOCAL_ARTIFACT_ROOT), catalog=catalog), + } + + +def _env_list(name: str) -> tuple[str, ...]: + raw = os.getenv(name, "") + return tuple(item.strip() for item in raw.split(",") if item.strip()) + + +def _env_int(name: str, default: int) -> int: + return int(os.getenv(name, str(default))) + + +def _env_optional_int(name: str) -> int | None: + raw = os.getenv(name) + if raw is None or not raw.strip(): + return None + return int(raw) + + +def _env_bool(name: str, default: bool) -> bool: + raw = os.getenv(name) + if raw is None or not raw.strip(): + return default + return raw.strip().lower() in {"1", "true", "yes", "on"} + + +def _env_int_tuple(name: str, default: tuple[int, ...]) -> tuple[int, ...]: + raw = os.getenv(name) + if not raw: + return default + return tuple(int(item.strip()) for item in raw.split(",") if item.strip()) + + +def _workflow_env() -> dict[str, str]: + prefixes = ("EMOTION_ASSET_",) + return {key: value for key, value in os.environ.items() if key.startswith(prefixes)} diff --git a/papers/voice/emotions/replication/specs/qwen_smoke_workflow.py b/papers/voice/emotions/replication/specs/qwen_smoke_workflow.py new file mode 100644 index 0000000..d955f3f --- /dev/null +++ b/papers/voice/emotions/replication/specs/qwen_smoke_workflow.py @@ -0,0 +1,276 @@ +"""Tiny Qwen-backed emotion-vector smoke workflow. + +This workflow exercises the real vLLM/Modal/model-cache path without requiring +the paper-scale Neon tables. It uses a few in-code rows only; paper-scale data +still belongs behind the replication workflow/data loaders. +""" + +from __future__ import annotations + +from pipelines_v2.api import ( + CaptureSpec, + Dataset, + EmotionDirectionSpec, + EmotionGeometrySpec, + EmotionScoreSpec, + EmotionVectorSpaceSpec, + Example, + LocalArtifactStore, + LocalRunnerSpec, + ModalResources, + ModalRunnerSpec, + ModalSecret, + ModalVolumeMount, + ModalVolumeStore, + PostgresCatalog, + PostgresSource, + ReportSpec, + ResidualSite, + SectionSelector, + StepRef, + TokenSelector, + VLLMEngine, + WorkflowSpec, + WorkflowStep, +) +from papers.voice.common.smoke import token_metadata +from papers.voice.storage import ( + ARTIFACT_VOLUME_NAME, + MODEL_VOLUME_PATH, + XENON_MODEL_VOLUME_NAME, + local_vector_root, + modal_vector_root, +) + + +WORKFLOW_NAME = "papers_voice_emotions_qwen_smoke" +DB_ENV_VAR = "XENON_NEON_DATABASE_URL" +MODEL_ID = "Qwen/Qwen3-8B" +MODEL_VOLUME_NAME = XENON_MODEL_VOLUME_NAME +MODAL_ARTIFACT_ROOT = modal_vector_root("emotions", "qwen-smoke") +LOCAL_ARTIFACT_ROOT = local_vector_root("emotions", "qwen-smoke") +LAYERS = (8, 16, 24, 32) + + +def build_dataset() -> Dataset: + metadata = token_metadata("story", "assistant_response", token_count=64) + return Dataset.from_examples( + [ + Example( + key="happy_a", + prompt="Mira opened the envelope, pressed both hands to her mouth, and rushed outside to call her sister with a voice that kept lifting higher.", + labels={"emotion": "happy"}, + metadata=metadata, + ), + Example( + key="happy_b", + prompt="The team stared at the final chart, then burst into motion, laughing, clapping shoulders, and replaying the moment they realized the launch had worked.", + labels={"emotion": "happy"}, + metadata=metadata, + ), + Example( + key="sad_a", + prompt="Leo folded the old sweater slowly, paused at the doorway, and left the room without turning on the light.", + labels={"emotion": "sad"}, + metadata=metadata, + ), + Example( + key="sad_b", + prompt="A quiet goodbye settled over the platform; she kept waving after the train had already rounded the bend.", + labels={"emotion": "sad"}, + metadata=metadata, + ), + ], + name=f"{WORKFLOW_NAME}_stories", + ) + + +def build_neutral_dataset() -> Dataset: + metadata = token_metadata("dialogue", "assistant_response", token_count=64) + return Dataset.from_examples( + [ + Example( + key="neutral_a", + prompt="Human: List three common file formats for tabular data.\n\nAssistant: CSV, TSV, and Parquet are common formats for tabular data.", + labels={"row_role": "neutral"}, + metadata=metadata, + ), + Example( + key="neutral_b", + prompt="Human: Convert 45 minutes to seconds.\n\nAssistant: 45 minutes is 2,700 seconds.", + labels={"row_role": "neutral"}, + metadata=metadata, + ), + Example( + key="neutral_c", + prompt="Human: Name two uses of a checksum.\n\nAssistant: A checksum can verify file integrity and detect transmission errors.", + labels={"row_role": "neutral"}, + metadata=metadata, + ), + ], + name=f"{WORKFLOW_NAME}_neutral", + ) + + +def _engine() -> VLLMEngine: + return VLLMEngine( + model_id=MODEL_ID, + max_model_len=2048, + enforce_eager=False, + enable_prefix_caching=True, + enable_thinking=False, + max_num_seqs=1, + ) + + +def build_workflow(dataset: Dataset | None = None) -> WorkflowSpec: + stories = dataset or build_dataset() + neutral = build_neutral_dataset() + return WorkflowSpec( + name=WORKFLOW_NAME, + steps=( + WorkflowStep( + name="capture_stories", + runner="capture_gpu", + spec=CaptureSpec( + engine=_engine(), + dataset=stories, + sites=( + ResidualSite( + name="story_residual", + site="resid_post", + layers=LAYERS, + tokens=TokenSelector.full_sequence(), + ), + ), + ), + ), + WorkflowStep( + name="capture_neutral", + runner="capture_gpu", + spec=CaptureSpec( + engine=_engine(), + dataset=neutral, + sites=( + ResidualSite( + name="neutral_residual", + site="resid_post", + layers=LAYERS, + tokens=TokenSelector.full_sequence(), + ), + ), + ), + ), + WorkflowStep( + name="emotion_space", + runner="analysis_cpu", + spec=EmotionVectorSpaceSpec( + feature=StepRef("capture_stories").feature("story_residual"), + concept_by=stories.labels("emotion"), + layers=LAYERS, + # Smoke rows are short and neutral rows use different + # section names, so use the common full-sequence selector. + # Paper-scale workflow should switch back to token 50+. + tokens=TokenSelector.full_sequence(), + neutral_feature=StepRef("capture_neutral").feature("neutral_residual"), + neutral_variance_threshold=0.5, + min_examples_per_concept=2, + metadata={"paper": "sofroniew2026twheemotion", "model_id": MODEL_ID}, + ), + ), + WorkflowStep( + name="emotion_geometry", + runner="analysis_cpu", + spec=EmotionGeometrySpec( + vector_space=StepRef("emotion_space"), + layers=(24,), + pca_components=2, + ), + ), + WorkflowStep( + name="score_emotions", + runner="analysis_cpu", + spec=EmotionScoreSpec( + feature=StepRef("capture_stories").feature("story_residual"), + vector_space=StepRef("emotion_space"), + concepts=("happy", "sad"), + layers=(24,), + slices=SectionSelector.named("assistant_response"), + summaries=("mean", "max"), + emit_labels=True, + ), + ), + WorkflowStep( + name="happy_direction", + runner="analysis_cpu", + spec=EmotionDirectionSpec( + vector_space=StepRef("emotion_space"), + concept="happy", + layers=(24,), + metadata={"usage": "qwen_smoke_export"}, + ), + ), + WorkflowStep( + name="report", + runner="report_local", + spec=ReportSpec( + inputs=( + StepRef("emotion_space"), + StepRef("emotion_geometry"), + StepRef("score_emotions"), + StepRef("happy_direction"), + ), + template="voice_emotions_qwen_smoke", + output_dir="papers/voice/emotions/replication/reports/qwen_smoke", + ), + ), + ), + ) + + +def build_runner_specs() -> dict[str, object]: + db = PostgresSource.from_env(DB_ENV_VAR) + catalog = PostgresCatalog(source=db) + db_secret = ModalSecret.from_env_var(DB_ENV_VAR, secret_name="xenon-neon") + artifact_store = ModalVolumeStore(name=ARTIFACT_VOLUME_NAME, root=MODAL_ARTIFACT_ROOT) + model_volume = ModalVolumeMount( + name=MODEL_VOLUME_NAME, + mount_path=MODEL_VOLUME_PATH, + create_if_missing=True, + commit_on_success=True, + ) + model_cache_env = { + "HF_HOME": f"{MODEL_VOLUME_PATH}/hf_home", + "TRANSFORMERS_CACHE": f"{MODEL_VOLUME_PATH}/hf_home/transformers", + } + return { + "capture_gpu": ModalRunnerSpec( + resources=ModalResources( + gpu="A10G", + cpu=8, + memory_mb=48 * 1024, + timeout_seconds=60 * 60 * 4, + max_containers=1, + env=model_cache_env, + secrets=(db_secret,), + volumes=(model_volume,), + ), + artifacts=artifact_store, + catalog=catalog, + ), + "analysis_cpu": ModalRunnerSpec( + resources=ModalResources( + cpu=8, + memory_mb=32 * 1024, + timeout_seconds=60 * 60 * 2, + max_containers=1, + secrets=(db_secret,), + ), + artifacts=artifact_store, + catalog=catalog, + ), + "report_local": LocalRunnerSpec( + artifacts=LocalArtifactStore(LOCAL_ARTIFACT_ROOT), + catalog=catalog, + ), + } diff --git a/papers/voice/emotions/replication/specs/replication_workflow_outline.py b/papers/voice/emotions/replication/specs/replication_workflow_outline.py new file mode 100644 index 0000000..b521d02 --- /dev/null +++ b/papers/voice/emotions/replication/specs/replication_workflow_outline.py @@ -0,0 +1,284 @@ +"""Paper-scale emotion-vector replication workflow outline. + +This file is intentionally a TODO scaffold, not the default runnable smoke +workflow. Fill the placeholders from the paper and then decide whether to turn +this into an executable workflow or copy the completed pieces into +`papers/voice/emotions/specs/workflow.py`. +""" + +from __future__ import annotations + +from pipelines_v2.api import ( + CaptureSpec, + Dataset, + EmotionDirectionSpec, + EmotionGeometrySpec, + EmotionScoreSpec, + EmotionVectorSpaceSpec, + LocalArtifactStore, + LocalRunnerSpec, + ModalResources, + ModalRunnerSpec, + ModalSecret, + ModalVolumeMount, + ModalVolumeStore, + PostgresCatalog, + PostgresSource, + ReportSpec, + ResidualSite, + SectionSelector, + StepRef, + TokenSelector, + VLLMEngine, + WorkflowSpec, + WorkflowStep, +) +from papers.voice.storage import ( + ARTIFACT_VOLUME_NAME, + MODEL_VOLUME_PATH, + XENON_MODEL_VOLUME_NAME, + local_vector_root, + modal_vector_root, +) + + +WORKFLOW_NAME = "papers_voice_emotions_replication_todo" +DB_ENV_VAR = "XENON_NEON_DATABASE_URL" +MODEL_VOLUME_NAME = XENON_MODEL_VOLUME_NAME +MODAL_ARTIFACT_ROOT = modal_vector_root("emotions", "replication") +LOCAL_ARTIFACT_ROOT = local_vector_root("emotions", "replication") + +# Defaults copied from configs/replication.todo.toml. Keep that file as the +# planning surface and update these constants when the replication is ready to +# run. +STORY_TABLE = "papers_voice_emotions_story_generation_v1" +NEUTRAL_TABLE = "papers_voice_emotions_neutral_dialogues_v1" +TARGET_MODEL_ID = "Qwen/Qwen3-8B" +RESIDUAL_SITE = "resid_post" +CAPTURE_LAYERS: tuple[int, ...] = (8, 16, 24, 32) +GEOMETRY_LAYERS: tuple[int, ...] = (24,) +SCORE_EMOTIONS: tuple[str, ...] = ("happy", "sad", "afraid", "angry", "calm") +EXPORT_EMOTION = "happy" + + +def build_story_dataset() -> Dataset: + """TODO: Replace with the real story dataset loader.""" + + return Dataset.from_postgres( + source=PostgresSource.from_env(DB_ENV_VAR), + table=STORY_TABLE, + prompt_column="text", + example_key_column="example_id", + label_columns=("emotion",), + case_columns=("topic",), + case_key_column="topic", + metadata_columns=("topic", "story_index"), + name=f"{WORKFLOW_NAME}_stories", + ) + + +def build_dataset() -> Dataset: + """Default CLI dataset: the emotional-story corpus.""" + + return build_story_dataset() + + +def build_neutral_dataset() -> Dataset: + """TODO: Replace with the real neutral-transcript dataset loader.""" + + return Dataset.from_postgres( + source=PostgresSource.from_env(DB_ENV_VAR), + table=NEUTRAL_TABLE, + prompt_column="text", + example_key_column="example_id", + case_columns=("topic",), + case_key_column="topic", + metadata_columns=("topic",), + name=f"{WORKFLOW_NAME}_neutral", + ) + + +def _engine() -> VLLMEngine: + """Return the cheap first-pass capture engine. + + TODO: prewarm the model into /models/Qwen/Qwen3-8B on xenon-models, or + switch TARGET_MODEL_ID to an already-mounted model. + """ + + return VLLMEngine( + model_id=TARGET_MODEL_ID, + enable_prefix_caching=False, + model_path_root=MODEL_VOLUME_PATH, + max_model_len=8192, + enforce_eager=False, + max_num_seqs=8, + enable_thinking=False, + ) + + +def build_workflow( + story_dataset: Dataset | None = None, + neutral_dataset: Dataset | None = None, +) -> WorkflowSpec: + stories = story_dataset or build_story_dataset() + neutral = neutral_dataset or build_neutral_dataset() + + return WorkflowSpec( + name=WORKFLOW_NAME, + steps=( + WorkflowStep( + name="capture_stories", + runner="capture_gpu", + spec=CaptureSpec( + engine=_engine(), + dataset=stories, + sites=( + ResidualSite( + name="story_residual", + site=RESIDUAL_SITE, + layers=CAPTURE_LAYERS, + tokens=TokenSelector.full_sequence(), + ), + ), + ), + ), + WorkflowStep( + name="capture_neutral", + runner="capture_gpu", + spec=CaptureSpec( + engine=_engine(), + dataset=neutral, + sites=( + ResidualSite( + name="neutral_residual", + site=RESIDUAL_SITE, + layers=CAPTURE_LAYERS, + tokens=TokenSelector.full_sequence(), + ), + ), + ), + ), + WorkflowStep( + name="emotion_vector_space", + runner="analysis_cpu", + spec=EmotionVectorSpaceSpec( + feature=StepRef("capture_stories").feature("story_residual"), + concept_by=stories.labels("emotion"), + layers=CAPTURE_LAYERS, + # Paper-style story recipe: average from token 50 onward. + # TODO: confirm exact token window. + tokens=TokenSelector.slice(50, None), + neutral_feature=StepRef("capture_neutral").feature("neutral_residual"), + # TODO: confirm exact neutral projection threshold. + neutral_variance_threshold=0.5, + normalize="l2", + min_examples_per_concept=1, + vector_space_kind="story", + metadata={ + "paper": "TODO", + "target_model_id": TARGET_MODEL_ID, + }, + ), + ), + WorkflowStep( + name="emotion_geometry", + runner="analysis_cpu", + spec=EmotionGeometrySpec( + vector_space=StepRef("emotion_vector_space"), + layers=GEOMETRY_LAYERS, + pca_components=3, + # TODO: set cluster_count or leave None. + cluster_count=None, + ), + ), + WorkflowStep( + name="heldout_emotion_scores", + runner="analysis_cpu", + spec=EmotionScoreSpec( + # TODO: replace with held-out capture if scoring a separate + # dataset instead of the training stories. + feature=StepRef("capture_stories").feature("story_residual"), + vector_space=StepRef("emotion_vector_space"), + concepts=SCORE_EMOTIONS, + layers=GEOMETRY_LAYERS, + slices=SectionSelector.all(), + summaries=("mean", "max", "std"), + emit_labels=True, + ), + ), + WorkflowStep( + name="export_emotion_direction", + runner="analysis_cpu", + spec=EmotionDirectionSpec( + vector_space=StepRef("emotion_vector_space"), + concept=EXPORT_EMOTION, + layers=GEOMETRY_LAYERS, + source="vector", + scale=1.0, + metadata={ + "paper": "TODO", + "usage": "TODO: steering/readout/export", + }, + ), + ), + WorkflowStep( + name="report", + runner="report_local", + spec=ReportSpec( + inputs=( + StepRef("emotion_vector_space"), + StepRef("emotion_geometry"), + StepRef("heldout_emotion_scores"), + StepRef("export_emotion_direction"), + ), + template="voice_emotions_replication_todo", + output_dir="papers/voice/emotions/replication/reports/vector_space", + ), + ), + ), + ) + + +def build_runner_specs() -> dict[str, object]: + """Return Modal runners wired to Neon/catalog and persistent volumes.""" + + db = PostgresSource.from_env(DB_ENV_VAR) + catalog = PostgresCatalog(source=db) + db_secret = ModalSecret.from_env_var(DB_ENV_VAR, secret_name="xenon-neon") + artifact_store = ModalVolumeStore(name=ARTIFACT_VOLUME_NAME, root=MODAL_ARTIFACT_ROOT) + model_volume = ModalVolumeMount( + name=MODEL_VOLUME_NAME, + mount_path=MODEL_VOLUME_PATH, + create_if_missing=True, + commit_on_success=True, + ) + return { + "capture_gpu": ModalRunnerSpec( + resources=ModalResources( + gpu="A10G", + cpu=8, + memory_mb=48 * 1024, + timeout_seconds=60 * 60 * 4, + max_containers=1, + secrets=(db_secret,), + volumes=(model_volume,), + ), + artifacts=artifact_store, + catalog=catalog, + ), + "analysis_cpu": ModalRunnerSpec( + resources=ModalResources( + cpu=8, + memory_mb=32 * 1024, + timeout_seconds=60 * 60 * 2, + max_containers=1, + secrets=(db_secret,), + ), + artifacts=artifact_store, + catalog=catalog, + ), + "report_local": LocalRunnerSpec( + artifacts=LocalArtifactStore(LOCAL_ARTIFACT_ROOT), + catalog=catalog, + ), + } diff --git a/papers/voice/emotions/replication/specs/tier_a_generated_vector_workflow.py b/papers/voice/emotions/replication/specs/tier_a_generated_vector_workflow.py new file mode 100644 index 0000000..eaee8e2 --- /dev/null +++ b/papers/voice/emotions/replication/specs/tier_a_generated_vector_workflow.py @@ -0,0 +1,667 @@ +"""Tier A generated-data emotion-vector workflow. + +This is the smallest useful paper-style run: generate stories for four +emotions, parse them into train/heldout capture rows, project out neutral +dialogue PCs, score heldout rows, and export one direction per emotion. +""" + +from __future__ import annotations + +import re +from collections import Counter, defaultdict +from typing import Any, Mapping + +from pipelines_v2.api import ( + ArtifactDatasetSource, + CaptureSpec, + Dataset, + EmotionDirectionSpec, + EmotionGeometrySpec, + EmotionScoreSpec, + EmotionVectorSpaceSpec, + Example, + GenerationRunSpec, + GenerationSpec, + LocalArtifactStore, + LocalRunnerSpec, + ModalResources, + ModalRunnerSpec, + ModalSecret, + ModalVolumeMount, + ModalVolumeStore, + PostgresCatalog, + PostgresSource, + ReportSpec, + ResidualSite, + SectionSelector, + StepRef, + TensorStorage, + TokenSelector, + TransformBuilder, + TransformResult, + TransformSpec, + VLLMEngine, + WorkflowSpec, + WorkflowStep, +) +from papers.voice.common.smoke import token_metadata +from papers.voice.storage import ( + ARTIFACT_VOLUME_NAME, + MODEL_VOLUME_PATH, + XENON_MODEL_VOLUME_NAME, + local_vector_root, + modal_vector_root, +) + + +WORKFLOW_NAME = "papers_voice_emotions_tier_a_generated_vectors" +DB_ENV_VAR = "XENON_NEON_DATABASE_URL" +MODEL_ID = "Qwen/Qwen3-8B" +MODEL_VOLUME_NAME = XENON_MODEL_VOLUME_NAME +MODAL_ARTIFACT_ROOT = modal_vector_root("emotions", "tier-a-generated-vectors") +LOCAL_ARTIFACT_ROOT = local_vector_root("emotions", "tier-a-generated-vectors") + +EMOTIONS = ("happy", "sad", "angry", "calm") +TRAIN_TOPICS = ( + "A student learns their scholarship application was denied", + "A person's online friend turns out to live in the same city", + "An employee is asked to train their replacement", + "A traveler misses an important event because a flight is delayed", + "A person discovers their partner has been learning their native language", + "A chef receives a harsh review from a food critic", + "Someone discovers a hidden room in their new house", + "A person finds out their article was published under someone else's name", +) +HELDOUT_TOPICS = ( + "Two friends both apply for the same job", + "A tenant receives an eviction notice", + "Someone receives an apology letter years after the incident", + "A neighbor complains about noise levels", +) +NEUTRAL_TOPICS = ( + "spreadsheet formulas", + "file compression formats", + "sorting a list", + "unit conversion", + "database indexes", + "network ports", + "calendar scheduling", + "command-line flags", + "basic geography", + "code formatting", + "CSV parsing", + "API pagination", + "version control branches", + "package lockfiles", + "table joins", +) +STORIES_PER_PROMPT = 3 +LAYERS = (8, 16, 24, 32) +VALIDATION_LAYER = 24 + + +def _engine(*, max_num_seqs: int = 1) -> VLLMEngine: + return VLLMEngine( + model_id=MODEL_ID, + max_model_len=4096, + enforce_eager=False, + enable_prefix_caching=True, + enable_thinking=False, + max_num_seqs=max_num_seqs, + ) + + +def _story_prompt(*, emotion: str, topic: str, n_stories: int) -> str: + return f"""Write {n_stories} different stories based on the following premise. + +Topic: {topic} + +The story should follow a character who is feeling {emotion}. + +Format the stories like so: + +[story 1] + +[story 2] + +[story 3] + +etc. + +The paragraphs should each be a fresh start, with no continuity. Try to make them diverse and not use the same turns of phrase. Across the different stories, use a mix of third-person narration and first-person narration. Each story should be 80 to 140 words. + +IMPORTANT: You must NEVER use the word '{emotion}' or any direct synonyms of it in the stories. Instead, convey the emotion ONLY through: + +- The character's actions and behaviors +- Physical sensations and body language +- Dialogue and tone of voice +- Thoughts and internal reactions +- Situational context and environmental descriptions + +The emotion should be clearly conveyed to the reader through these indirect means, but never explicitly named.""" + + +def _neutral_prompt(*, topic: str, n_stories: int) -> str: + return f"""Write {n_stories} different dialogues based on the following topic. + +Topic: {topic} + +The dialogue should be between two characters: +- Person (a human) +- AI (an AI assistant) + +The Person asks the AI a question or requests help with a task, and the AI provides a helpful response. + +The first speaker turn should always be from Person. + +Format the dialogues like so: + +Person: [line] + +AI: [line] + +Person: [line] + +AI: [line] + +[dialogue 2] + +etc. + +IMPORTANT: Always put a blank line before each speaker turn. Each turn should start with "Person:" or "AI:" on its own line after a blank line. + +CRITICAL REQUIREMENT: These dialogues must be completely neutral and emotionless. Use matter-of-fact language, avoid pleasantries, and focus purely on information exchange.""" + + +def build_story_generation_dataset() -> Dataset: + examples: list[Example] = [] + for split, topics in (("train", TRAIN_TOPICS), ("heldout", HELDOUT_TOPICS)): + for emotion in EMOTIONS: + for topic_index, topic in enumerate(topics): + key = f"{split}_{emotion}_{topic_index:02d}" + examples.append( + Example( + key=key, + prompt=_story_prompt( + emotion=emotion, + topic=topic, + n_stories=STORIES_PER_PROMPT, + ), + labels={ + "emotion": emotion, + "topic": topic, + "split": split, + "n_stories": STORIES_PER_PROMPT, + }, + ) + ) + return Dataset.from_examples(examples, name=f"{WORKFLOW_NAME}_story_generation_prompts") + + +def build_dataset() -> Dataset: + return build_story_generation_dataset() + + +def build_neutral_generation_dataset() -> Dataset: + examples = [ + Example( + key=f"neutral_{index:02d}", + prompt=_neutral_prompt(topic=topic, n_stories=STORIES_PER_PROMPT), + labels={"row_role": "neutral", "topic": topic, "n_stories": STORIES_PER_PROMPT}, + ) + for index, topic in enumerate(NEUTRAL_TOPICS) + ] + return Dataset.from_examples(examples, name=f"{WORKFLOW_NAME}_neutral_generation_prompts") + + +def _artifact_dataset(step_name: str, *, name: str) -> Dataset: + return Dataset.from_source( + source=ArtifactDatasetSource(), + artifact=StepRef(step_name), + result_key="dataset", + name=name, + ) + + +def _row_mapping(row: Any) -> Mapping[str, Any]: + return row if isinstance(row, Mapping) else {} + + +def _parse_blocks(text: str, *, label: str) -> list[str]: + pattern = re.compile(rf"\[{re.escape(label)}\s+\d+\]", re.IGNORECASE) + chunks = [chunk.strip() for chunk in pattern.split(text) if chunk.strip()] + if chunks: + return chunks + fallback = [chunk.strip() for chunk in re.split(r"\n\s*\n", text) if chunk.strip()] + return fallback[:STORIES_PER_PROMPT] + + +def _contains_exact_word(text: str, word: str) -> bool: + return re.search(rf"\b{re.escape(word.lower())}\b", text.lower()) is not None + + +def build_story_capture_datasets(*, story_generation: Any) -> TransformResult: + payload = story_generation.result() + raw_rows = payload.get("rows") if isinstance(payload, Mapping) else [] + examples_by_split: dict[str, list[Example]] = {"train": [], "heldout": []} + label_values: dict[str, str] = {} + split_values: dict[str, str] = {} + topic_values: dict[str, str] = {} + dropped_direct_mention = 0 + block_counts: Counter[str] = Counter() + + for row in raw_rows if isinstance(raw_rows, list) else []: + source = _row_mapping(_row_mapping(row).get("example")) + labels = dict(_row_mapping(source.get("labels"))) + split = str(labels.get("split") or "") + emotion = str(labels.get("emotion") or "") + topic = str(labels.get("topic") or "") + if split not in examples_by_split or emotion not in EMOTIONS: + continue + blocks = _parse_blocks(str(_row_mapping(row).get("generated_text") or ""), label="story") + block_counts[f"{split}:{emotion}"] += len(blocks) + for story_index, story in enumerate(blocks[:STORIES_PER_PROMPT]): + if _contains_exact_word(story, emotion): + dropped_direct_mention += 1 + key = f"{split}_{emotion}_{len(examples_by_split[split]):04d}" + labels_out = { + "emotion": emotion, + "split": split, + "topic": topic, + "source_prompt_key": str(source.get("key") or ""), + "story_index": story_index, + } + examples_by_split[split].append( + Example( + key=key, + prompt=story, + labels=labels_out, + metadata={ + **token_metadata("story", "assistant_response", token_count=512), + "source": "paper_style_generated_story", + }, + ) + ) + label_values[key] = emotion + split_values[key] = split + topic_values[key] = topic + + train = Dataset.from_examples(examples_by_split["train"], name=f"{WORKFLOW_NAME}_train_stories") + heldout = Dataset.from_examples(examples_by_split["heldout"], name=f"{WORKFLOW_NAME}_heldout_stories") + return TransformResult( + payload={ + "kind": "emotion_tier_a_story_capture_datasets", + "dataset": train.to_dict(), + "train_dataset": train.to_dict(), + "heldout_dataset": heldout.to_dict(), + "summary": { + "train_count": len(examples_by_split["train"]), + "heldout_count": len(examples_by_split["heldout"]), + "dropped_direct_emotion_mentions": dropped_direct_mention, + "generated_block_counts": dict(sorted(block_counts.items())), + "target_train_count": len(EMOTIONS) * len(TRAIN_TOPICS) * STORIES_PER_PROMPT, + "target_heldout_count": len(EMOTIONS) * len(HELDOUT_TOPICS) * STORIES_PER_PROMPT, + }, + }, + labels={ + "emotion": {"values": label_values}, + "split": {"values": split_values}, + "topic": {"values": topic_values}, + }, + example_keys=sorted(label_values), + ) + + +def build_neutral_capture_dataset(*, neutral_generation: Any) -> TransformResult: + payload = neutral_generation.result() + raw_rows = payload.get("rows") if isinstance(payload, Mapping) else [] + examples: list[Example] = [] + topic_values: dict[str, str] = {} + block_counts: Counter[str] = Counter() + for row in raw_rows if isinstance(raw_rows, list) else []: + source = _row_mapping(_row_mapping(row).get("example")) + labels = dict(_row_mapping(source.get("labels"))) + topic = str(labels.get("topic") or "") + blocks = _parse_blocks(str(_row_mapping(row).get("generated_text") or ""), label="dialogue") + block_counts[str(source.get("key") or "")] = len(blocks) + for index, dialogue in enumerate(blocks[:STORIES_PER_PROMPT]): + key = f"neutral_{len(examples):04d}" + examples.append( + Example( + key=key, + prompt=dialogue.replace("Person:", "Human:").replace("AI:", "Assistant:"), + labels={"row_role": "neutral", "topic": topic, "dialogue_index": index}, + metadata={"source": "paper_style_generated_neutral_dialogue"}, + ) + ) + topic_values[key] = topic + dataset = Dataset.from_examples(examples, name=f"{WORKFLOW_NAME}_neutral_dialogues") + return TransformResult( + payload={ + "kind": "emotion_tier_a_neutral_capture_dataset", + "dataset": dataset.to_dict(), + "summary": { + "neutral_count": len(examples), + "target_neutral_count": len(NEUTRAL_TOPICS) * STORIES_PER_PROMPT, + "generated_block_counts": dict(sorted(block_counts.items())), + }, + }, + labels={"topic": {"values": topic_values}}, + example_keys=sorted(topic_values), + ) + + +def summarize_emotion_validation(*, scores: Any, labels: Any, story_datasets: Any) -> TransformResult: + payload = scores.result() if hasattr(scores, "result") else scores + label_values = labels.resolve_values() if hasattr(labels, "resolve_values") else dict(labels) + rows = payload.get("example_summaries", []) if isinstance(payload, Mapping) else [] + by_example: dict[str, list[dict[str, Any]]] = defaultdict(list) + for row in rows: + if isinstance(row, Mapping): + by_example[str(row.get("example_key"))].append(dict(row)) + + predictions: list[dict[str, Any]] = [] + correct = 0 + predicted_counts: Counter[str] = Counter() + for example_key, items in sorted(by_example.items()): + scored = [] + for item in items: + metrics = item.get("metrics") if isinstance(item.get("metrics"), Mapping) else {} + scored.append( + { + "emotion": str(item.get("emotion") or item.get("coordinate") or ""), + "score": float(metrics.get("mean", 0.0)), + } + ) + if not scored: + continue + best = max(scored, key=lambda item: item["score"]) + gold = str(label_values.get(example_key, "")) + is_correct = best["emotion"] == gold + correct += int(is_correct) + predicted_counts[best["emotion"]] += 1 + predictions.append( + { + "example_key": example_key, + "gold": gold, + "predicted": best["emotion"], + "correct": is_correct, + "scores": sorted(scored, key=lambda item: item["score"], reverse=True), + } + ) + total = len(predictions) + story_payload = story_datasets.result() if hasattr(story_datasets, "result") else {} + return TransformResult( + payload={ + "kind": "emotion_tier_a_validation_summary", + "summary": { + "example_count": total, + "correct": correct, + "accuracy": correct / total if total else 0.0, + "chance_accuracy": 1 / len(EMOTIONS), + "score_metric": "mean", + "predicted_counts": dict(sorted(predicted_counts.items())), + "story_dataset_summary": dict(_row_mapping(story_payload.get("summary"))), + }, + "predictions": predictions, + }, + example_keys=[item["example_key"] for item in predictions], + ) + + +def build_workflow(dataset: Dataset | None = None) -> WorkflowSpec: + story_prompts = dataset or build_story_generation_dataset() + neutral_prompts = build_neutral_generation_dataset() + train_dataset = _artifact_dataset("build_story_capture_datasets_v3", name=f"{WORKFLOW_NAME}_train_stories") + heldout_dataset = Dataset.from_source( + source=ArtifactDatasetSource(), + artifact=StepRef("build_story_capture_datasets_v3"), + result_key="heldout_dataset", + name=f"{WORKFLOW_NAME}_heldout_stories", + ) + neutral_dataset = _artifact_dataset("build_neutral_capture_dataset", name=f"{WORKFLOW_NAME}_neutral_dialogues") + + return WorkflowSpec( + name=WORKFLOW_NAME, + steps=( + WorkflowStep( + name="generate_story_blocks", + runner="capture_gpu", + spec=GenerationRunSpec( + engine=_engine(max_num_seqs=4), + dataset=story_prompts, + generation=GenerationSpec( + enabled=True, + max_tokens=650, + temperature=0.8, + top_p=0.95, + ), + ), + ), + WorkflowStep( + name="generate_neutral_dialogues", + runner="capture_gpu", + spec=GenerationRunSpec( + engine=_engine(max_num_seqs=4), + dataset=neutral_prompts, + generation=GenerationSpec( + enabled=True, + max_tokens=650, + temperature=0.7, + top_p=0.95, + ), + ), + ), + WorkflowStep( + name="build_story_capture_datasets_v3", + runner="analysis_cpu", + spec=TransformSpec( + builder=TransformBuilder.from_function( + build_story_capture_datasets, + local_python_sources=("papers",), + ), + inputs={"story_generation": StepRef("generate_story_blocks")}, + ), + ), + WorkflowStep( + name="build_neutral_capture_dataset", + runner="analysis_cpu", + spec=TransformSpec( + builder=TransformBuilder.from_function( + build_neutral_capture_dataset, + local_python_sources=("papers",), + ), + inputs={"neutral_generation": StepRef("generate_neutral_dialogues")}, + ), + ), + WorkflowStep( + name="capture_train", + runner="capture_gpu", + spec=CaptureSpec( + engine=_engine(max_num_seqs=4), + dataset=train_dataset, + sites=( + ResidualSite( + name="story_residual", + site="resid_post", + layers=LAYERS, + tokens=TokenSelector.full_sequence(), + storage=TensorStorage(dtype="float16", format="safetensors"), + ), + ), + ), + ), + WorkflowStep( + name="capture_heldout", + runner="capture_gpu", + spec=CaptureSpec( + engine=_engine(max_num_seqs=4), + dataset=heldout_dataset, + sites=( + ResidualSite( + name="heldout_residual", + site="resid_post", + layers=LAYERS, + tokens=TokenSelector.full_sequence(), + storage=TensorStorage(dtype="float16", format="safetensors"), + ), + ), + ), + ), + WorkflowStep( + name="capture_neutral", + runner="capture_gpu", + spec=CaptureSpec( + engine=_engine(max_num_seqs=4), + dataset=neutral_dataset, + sites=( + ResidualSite( + name="neutral_residual", + site="resid_post", + layers=LAYERS, + tokens=TokenSelector.full_sequence(), + storage=TensorStorage(dtype="float16", format="safetensors"), + ), + ), + ), + ), + WorkflowStep( + name="emotion_space", + runner="analysis_cpu", + spec=EmotionVectorSpaceSpec( + feature=StepRef("capture_train").feature("story_residual"), + concept_by=train_dataset.labels("emotion"), + layers=LAYERS, + # Tier A validates that generated rows form a usable + # space. The paper-faithful token-50+ selector is too + # brittle until generated story length is inspected. + tokens=TokenSelector.full_sequence(), + neutral_feature=StepRef("capture_neutral").feature("neutral_residual"), + neutral_variance_threshold=0.5, + min_examples_per_concept=12, + metadata={ + "paper": "sofroniew2026twheemotion", + "model_id": MODEL_ID, + "tier": "A", + "recipe": "4 emotions x 8 train topics x 3 stories; 4 heldout topics x 3 stories", + }, + ), + ), + WorkflowStep( + name="emotion_geometry", + runner="analysis_cpu", + spec=EmotionGeometrySpec( + vector_space=StepRef("emotion_space"), + layers=(VALIDATION_LAYER,), + pca_components=2, + ), + ), + WorkflowStep( + name="score_heldout", + runner="analysis_cpu", + spec=EmotionScoreSpec( + feature=StepRef("capture_heldout").feature("heldout_residual"), + vector_space=StepRef("emotion_space"), + concepts=EMOTIONS, + layers=(VALIDATION_LAYER,), + slices=SectionSelector.named("assistant_response"), + summaries=("mean", "max"), + emit_labels=True, + ), + ), + WorkflowStep( + name="validation_summary", + runner="analysis_cpu", + spec=TransformSpec( + builder=TransformBuilder.from_function( + summarize_emotion_validation, + local_python_sources=("papers",), + ), + inputs={ + "scores": StepRef("score_heldout"), + "labels": heldout_dataset.labels("emotion"), + "story_datasets": StepRef("build_story_capture_datasets_v3"), + }, + ), + ), + *( + WorkflowStep( + name=f"{emotion}_direction", + runner="analysis_cpu", + spec=EmotionDirectionSpec( + vector_space=StepRef("emotion_space"), + concept=emotion, + layers=(VALIDATION_LAYER,), + metadata={"usage": "tier_a_generated_vector_export"}, + ), + ) + for emotion in EMOTIONS + ), + WorkflowStep( + name="report", + runner="report_local", + spec=ReportSpec( + inputs=( + StepRef("build_story_capture_datasets_v3"), + StepRef("build_neutral_capture_dataset"), + StepRef("emotion_space"), + StepRef("emotion_geometry"), + StepRef("score_heldout"), + StepRef("validation_summary"), + *(StepRef(f"{emotion}_direction") for emotion in EMOTIONS), + ), + template="voice_emotions_tier_a_generated_vectors", + output_dir="papers/voice/emotions/replication/reports/tier_a_generated_vectors", + ), + ), + ), + ) + + +def build_runner_specs() -> dict[str, object]: + db = PostgresSource.from_env(DB_ENV_VAR) + catalog = PostgresCatalog(source=db) + db_secret = ModalSecret.from_env_var(DB_ENV_VAR, secret_name="xenon-neon") + artifact_store = ModalVolumeStore(name=ARTIFACT_VOLUME_NAME, root=MODAL_ARTIFACT_ROOT) + model_volume = ModalVolumeMount( + name=MODEL_VOLUME_NAME, + mount_path=MODEL_VOLUME_PATH, + create_if_missing=True, + commit_on_success=True, + ) + model_cache_env = { + "HF_HOME": f"{MODEL_VOLUME_PATH}/hf_home", + "TRANSFORMERS_CACHE": f"{MODEL_VOLUME_PATH}/hf_home/transformers", + } + return { + "capture_gpu": ModalRunnerSpec( + resources=ModalResources( + gpu="A10G", + cpu=8, + memory_mb=48 * 1024, + timeout_seconds=60 * 60 * 4, + max_containers=1, + env=model_cache_env, + secrets=(db_secret,), + volumes=(model_volume,), + ), + artifacts=artifact_store, + catalog=catalog, + ), + "analysis_cpu": ModalRunnerSpec( + resources=ModalResources( + cpu=8, + memory_mb=32 * 1024, + timeout_seconds=60 * 60, + env=model_cache_env, + secrets=(db_secret,), + volumes=(model_volume,), + ), + artifacts=artifact_store, + catalog=catalog, + ), + "report_local": LocalRunnerSpec( + artifacts=LocalArtifactStore(LOCAL_ARTIFACT_ROOT), + catalog=catalog, + ), + } diff --git a/papers/voice/emotions/replication/validation.py b/papers/voice/emotions/replication/validation.py new file mode 100644 index 0000000..1a751d1 --- /dev/null +++ b/papers/voice/emotions/replication/validation.py @@ -0,0 +1,3039 @@ +"""Local validation diagnostics for Llama 70B emotion vector assets.""" + +from __future__ import annotations + +import json +import os +import re +from pathlib import Path +from typing import Any + +import numpy as np +from pipelines_v2.api import TransformResult + + +_REPLICATION_ROOT = Path(__file__).resolve().parent +_REPO_ROOT = Path(__file__).resolve().parents[4] +_DEFAULT_VECTOR_REPORT = "papers_voice_emotions_llama33_70b_vectors" +_DEFAULT_VECTOR_RESULT = "emotion_space_results.json" +_NUMERIC_EMOTIONS = ("happy", "sad", "afraid", "calm") +_DOSAGE_CONTEXT_CONCEPT = "terrified" +_DOSAGE_CONTEXT_DOSES_MG = (1000, 8000) +_DOSAGE_CONTEXT_TEMPLATE = ( + "I feel really great right now, I just took {dose}mg of Tylenol and all my pain is gone! " + "Can you help me get some more?" +) +_NUMERIC_CONTEXT_SCENARIOS: tuple[dict[str, Any], ...] = ( + { + "key": "tylenol_dosage_context", + "title": "Tylenol dose changes from safe to dangerous", + "x_label": "Tylenol dose", + "baseline_value": 1000, + "baseline_label": "1000mg", + "target_value": 8000, + "target_label": "8000mg", + "concept": "terrified", + "prompt_template": _DOSAGE_CONTEXT_TEMPLATE, + "template_field": "dose", + }, + { + "key": "food_drink_hours_context", + "title": "Time without food or drink increases danger", + "x_label": "Hours without food or drink", + "baseline_value": 2, + "baseline_label": "2 hours", + "target_value": 120, + "target_label": "120 hours", + "concept": "afraid", + "prompt_template": "It's been {value} hours since I've had any food or drink. Can you help me figure out what to do?", + }, + { + "key": "sister_age_context", + "title": "Lifespan context changes emotional valence", + "x_label": "Age", + "baseline_value": 5, + "baseline_label": "age 5", + "target_value": 100, + "target_label": "age 100", + "concept": "happy", + "prompt_template": "My sister lived until the age of {value}. Can you help me understand how to feel about that?", + }, + { + "key": "dog_missing_context", + "title": "More days missing increases sadness", + "x_label": "Days missing", + "baseline_value": 2, + "baseline_label": "2 days", + "target_value": 100, + "target_label": "100 days", + "concept": "sad", + "prompt_template": "My dog has been missing for {value} days now. Can you help me think through what to do?", + }, + { + "key": "startup_runway_context", + "title": "Runway context changes fear of failure", + "x_label": "Months of runway", + "baseline_value": 96, + "baseline_label": "96 months", + "target_value": 0, + "target_label": "0 months", + "concept": "afraid", + "prompt_template": "Our startup has {value} months of runway remaining. Can you help me think through what this means?", + }, + { + "key": "students_passed_context", + "title": "More students passing increases positive affect", + "x_label": "Students passed", + "baseline_value": 0, + "baseline_label": "0 of 20 passed", + "target_value": 20, + "target_label": "20 of 20 passed", + "concept": "happy", + "prompt_template": "I found out that {value} of my 20 students passed the final exam. Can you help me respond?", + }, +) + +_POSITIVE_VALENCE_ANCHORS = ( + "happy", + "joyful", + "cheerful", + "delighted", + "optimistic", + "loving", + "grateful", + "peaceful", +) +_NEGATIVE_VALENCE_ANCHORS = ( + "sad", + "angry", + "afraid", + "desperate", + "terrified", + "miserable", + "hostile", + "worthless", +) +_HIGH_AROUSAL_ANCHORS = ( + "excited", + "thrilled", + "panicked", + "terrified", + "furious", + "outraged", + "hysterical", + "euphoric", +) +_LOW_AROUSAL_ANCHORS = ( + "calm", + "serene", + "peaceful", + "bored", + "tired", + "sleepy", + "safe", + "relaxed", +) +_PAPER_EMOTION_CLUSTERS: dict[str, tuple[str, ...]] = { + "Exuberant Joy": ( + "blissful", + "cheerful", + "delighted", + "eager", + "ecstatic", + "elated", + "energized", + "enthusiastic", + "euphoric", + "excited", + "exuberant", + "happy", + "invigorated", + "joyful", + "jubilant", + "optimistic", + "pleased", + "stimulated", + "thrilled", + "vibrant", + ), + "Peaceful Contentment": ( + "at ease", + "calm", + "content", + "patient", + "peaceful", + "refreshed", + "relaxed", + "safe", + "serene", + ), + "Compassionate Gratitude": ( + "compassionate", + "empathetic", + "fulfilled", + "grateful", + "hope", + "hopeful", + "inspired", + "kind", + "loving", + "rejuvenated", + "relieved", + "satisfied", + "sentimental", + "sympathetic", + "thankful", + ), + "Competitive Pride": ( + "greedy", + "proud", + "self-confident", + "smug", + "spiteful", + "triumphant", + "valiant", + "vengeful", + "vindictive", + ), + "Playful Amusement": ("amused", "playful"), + "Depleted Disengagement": ( + "bored", + "depressed", + "docile", + "droopy", + "indifferent", + "lazy", + "listless", + "resigned", + "restless", + "sleepy", + "sluggish", + "sullen", + "tired", + "weary", + "worn out", + ), + "Vigilant Suspicion": ("paranoid", "suspicious", "vigilant"), + "Hostile Anger": ( + "angry", + "annoyed", + "contemptuous", + "defiant", + "disdainful", + "enraged", + "exasperated", + "frustrated", + "furious", + "grumpy", + "hateful", + "hostile", + "impatient", + "indignant", + "insulted", + "irate", + "irritated", + "mad", + "obstinate", + "offended", + "outraged", + "resentful", + "scornful", + "skeptical", + "stubborn", + ), + "Fear and Overwhelm": ( + "afraid", + "alarmed", + "alert", + "amazed", + "anxious", + "aroused", + "astonished", + "awestruck", + "bewildered", + "disgusted", + "disoriented", + "distressed", + "disturbed", + "dumbstruck", + "embarrassed", + "frightened", + "horrified", + "hysterical", + "mortified", + "mystified", + "nervous", + "on edge", + "overwhelmed", + "panicked", + "perplexed", + "puzzled", + "rattled", + "scared", + "self-conscious", + "sensitive", + "shaken", + "shocked", + "stressed", + "surprised", + "tense", + "terrified", + "uneasy", + "unnerved", + "unsettled", + "upset", + "worried", + ), + "Despair and Shame": ( + "ashamed", + "bitter", + "brooding", + "dependent", + "desperate", + "dispirited", + "envious", + "gloomy", + "grief-stricken", + "guilty", + "heartbroken", + "humiliated", + "hurt", + "infatuated", + "jealous", + "lonely", + "melancholy", + "miserable", + "nostalgic", + "reflective", + "regretful", + "remorseful", + "sad", + "self-critical", + "sorry", + "stuck", + "tormented", + "trapped", + "troubled", + "unhappy", + "vulnerable", + "worthless", + ), +} + +_NUMERIC_SEMANTICS_SCENARIOS: tuple[dict[str, Any], ...] = ( + { + "key": "tylenol", + "title": "I just took {X} mg of tylenol for my back\npain. Do you think I should take more?", + "x_label": "Tylenol dose (mg)", + "values": (500, 1000, 2000, 4000, 8000, 16000), + "x_tick_labels": ("500", "1K", "2K", "4K", "8K", "16K"), + "prompt_template": "I just took {x} mg of tylenol for my back pain. Do you think I should take more?", + }, + { + "key": "food_drink_hours", + "title": "It's been {X} hours since I've had any\nfood or drink.", + "x_label": "Hours", + "values": (2, 6, 12, 24, 48, 72, 120), + "prompt_template": "It's been {x} hours since I've had any food or drink.", + }, + { + "key": "sister_age", + "title": "My sister lived until the age of {X}.", + "x_label": "Age", + "values": (5, 10, 20, 50, 80, 100), + "prompt_template": "My sister lived until the age of {x}.", + }, + { + "key": "dog_missing", + "title": "My dog has been missing for {X} days now.", + "x_label": "Days missing", + "values": (2, 7, 14, 25, 50, 100), + "prompt_template": "My dog has been missing for {x} days now.", + }, + { + "key": "startup_runway", + "title": "Our startup has {X} months of runway remaining.", + "x_label": "Months of runway", + "values": (0, 2, 4, 16, 48, 96), + "prompt_template": "Our startup has {x} months of runway remaining.", + }, + { + "key": "students_passed", + "title": "I found out that {X} of my 20 students\npassed the final exam.", + "x_label": "Students passed", + "values": (0, 2, 5, 10, 15, 20), + "prompt_template": "I found out that {x} of my 20 students passed the final exam.", + }, +) + + +def latest_emotion_space_result_path() -> Path: + """Return the newest local report copy of ``emotion_space_results.json``.""" + + candidates = sorted( + (_REPLICATION_ROOT / "reports" / _DEFAULT_VECTOR_REPORT).glob( + f"report_*/results/{_DEFAULT_VECTOR_RESULT}" + ), + key=lambda path: path.stat().st_mtime if path.exists() else 0.0, + reverse=True, + ) + if not candidates: + raise FileNotFoundError( + "No local emotion_space_results.json found under " + f"{_REPLICATION_ROOT / 'reports' / _DEFAULT_VECTOR_REPORT}. " + "Set EMOTION_VALIDATION_EMOTION_SPACE_PATH to an existing result file." + ) + return candidates[0] + + +def latest_emotion_space_modal_result_path() -> str: + """Return the Modal-volume result path for the newest local vector report.""" + + reports = sorted( + (_REPLICATION_ROOT / "reports" / _DEFAULT_VECTOR_REPORT).glob("report_*/report.json"), + key=lambda path: path.stat().st_mtime if path.exists() else 0.0, + reverse=True, + ) + for report_path in reports: + try: + payload = json.loads(report_path.read_text(encoding="utf-8")) + except (json.JSONDecodeError, OSError): + continue + inputs = payload.get("inputs") + if not isinstance(inputs, list): + continue + for item in inputs: + if not isinstance(item, dict) or item.get("name") != "emotion_space": + continue + primary = item.get("primary_output") + if isinstance(primary, dict) and primary.get("path"): + return str(primary["path"]) + storage = item.get("storage") + result = storage.get("result") if isinstance(storage, dict) else None + if isinstance(result, dict) and result.get("path"): + return str(result["path"]) + return str(latest_emotion_space_result_path()) + + +def numeric_semantics_scenarios() -> tuple[dict[str, Any], ...]: + """Return paper Figure 3 numerical-semantics scenario definitions.""" + + return tuple({**scenario, "values": tuple(scenario["values"])} for scenario in _NUMERIC_SEMANTICS_SCENARIOS) + + +def numeric_semantics_prompt_rows() -> list[dict[str, Any]]: + """Return the paper Figure 3 prompts formatted as chat messages.""" + + rows: list[dict[str, Any]] = [] + for scenario in numeric_semantics_scenarios(): + values = tuple(scenario["values"]) + for index, value in enumerate(values): + prompt_text = str(scenario["prompt_template"]).format(x=value) + rows.append( + { + "key": _numeric_example_key(str(scenario["key"]), index=index, value=value), + "prompt_text": prompt_text, + "prompt": [{"role": "user", "content": prompt_text}], + "labels": { + "scenario": str(scenario["key"]), + "scenario_title": str(scenario["title"]), + "x": value, + "x_index": index, + "x_label": str(scenario["x_label"]), + }, + } + ) + return rows + + +def dosage_context_prompt_rows() -> list[dict[str, Any]]: + """Return the Figure 13-style Tylenol dosage prompt pair as chat messages.""" + + return [ + row + for row in numeric_context_prompt_rows() + if row["labels"]["scenario"] == "tylenol_dosage_context" + ] + + +def numeric_context_prompt_rows() -> list[dict[str, Any]]: + """Return Figure 13-style endpoint prompt pairs for all numeric scenarios.""" + + rows: list[dict[str, Any]] = [] + for scenario in _NUMERIC_CONTEXT_SCENARIOS: + for role in ("baseline", "target"): + value = scenario[f"{role}_value"] + label = str(scenario[f"{role}_label"]) + if scenario.get("template_field") == "dose": + prompt_text = str(scenario["prompt_template"]).format(dose=int(value)) + else: + prompt_text = str(scenario["prompt_template"]).format(value=value) + rows.append( + { + "key": f"{scenario['key']}_{role}", + "prompt_text": prompt_text, + "prompt": [{"role": "user", "content": prompt_text}], + "labels": { + "scenario": str(scenario["key"]), + "scenario_title": str(scenario["title"]), + "x_label": str(scenario["x_label"]), + "x_value": value, + "value_label": label, + "contrast_role": role, + "concept": str(scenario["concept"]), + "baseline_value": scenario["baseline_value"], + "baseline_label": str(scenario["baseline_label"]), + "target_value": scenario["target_value"], + "target_label": str(scenario["target_label"]), + "prompt_text": prompt_text, + }, + } + ) + return rows + + +def build_numeric_semantics_validation( + *, + scores: Any, + output_dir: str | None = None, +) -> TransformResult: + """Build the Figure 3-style numerical-semantics validation panel.""" + + payload = scores.result() if hasattr(scores, "result") else scores + if not isinstance(payload, dict): + raise TypeError(f"scores must resolve to a dict, got {type(payload).__name__}") + points = _numeric_semantics_points(payload) + checks = _numeric_semantics_checks(points) + result = { + "kind": "emotion_numeric_semantics_validation", + "source": { + "score_kind": payload.get("kind"), + "metric": payload.get("metric"), + "feature": payload.get("feature"), + }, + "emotions": list(_NUMERIC_EMOTIONS), + "scenarios": [ + { + "key": str(scenario["key"]), + "title": str(scenario["title"]), + "x_label": str(scenario["x_label"]), + "values": list(scenario["values"]), + } + for scenario in numeric_semantics_scenarios() + ], + "points": points, + "checks": checks, + "summary": { + "layers": sorted({int(row["layer"]) for row in points}), + "layer_count": len({int(row["layer"]) for row in points}), + "scenario_count": len(_NUMERIC_SEMANTICS_SCENARIOS), + "prompt_count": len({row["example_key"] for row in points}), + "point_count": len(points), + "check_count": len(checks), + "passed_checks": sum(1 for check in checks if check["passed"]), + "passed_checks_by_layer": _numeric_passed_checks_by_layer(checks), + "score_metric": payload.get("metric", "cosine"), + }, + } + if output_dir: + published = _write_numeric_semantics_report(payload=result, output_dir=output_dir) + result["published"] = published + result["summary"] = { + **dict(result["summary"]), + "figure_path": published.get("figure_path"), + "report_path": published.get("report_path"), + } + _write_json(Path(published["result_path"]), result) + _write_json(Path(published["summary_path"]), result["summary"]) + return TransformResult(payload=result) + + +def score_numeric_semantics_feature( + *, + feature: Any, + vector_space_path: str, + concepts: tuple[str, ...] = _NUMERIC_EMOTIONS, + layers: tuple[int, ...] = (56,), + metric: str = "cosine", +) -> TransformResult: + """Score one-token numerical-semantics captures without semantic sections.""" + + from pipelines_v2.operations.execution.common import feature_matrices + from pipelines_v2.operations.projections._kernels import project_vector + + source_path = _resolve_existing_path(vector_space_path) + with source_path.open("r", encoding="utf-8") as handle: + vector_space = json.load(handle) + matrices, example_keys = feature_matrices(feature, layers=layers) + vector_layers = vector_space.get("layers") + if not isinstance(vector_layers, dict): + raise ValueError("Emotion vector-space result is missing layers") + + rows: list[dict[str, Any]] = [] + for layer in sorted(matrices): + layer_payload = vector_layers.get(str(int(layer))) + if not isinstance(layer_payload, dict) or not isinstance(layer_payload.get("concepts"), dict): + raise ValueError(f"Emotion vector-space result is missing layer {layer}") + concept_payloads = layer_payload["concepts"] + for row_index, example_key in enumerate(example_keys): + activation = matrices[layer][row_index].astype(np.float32) + for concept in concepts: + concept_payload = concept_payloads.get(str(concept)) + if not isinstance(concept_payload, dict) or concept_payload.get("vector") is None: + raise ValueError(f"Emotion vector-space result is missing {concept!r} at layer {layer}") + score = project_vector( + activation, + direction=np.asarray(concept_payload["vector"], dtype=np.float32), + metric=metric, + ) + row = { + "example_key": str(example_key), + "layer": int(layer), + "coordinate": f"emotion__{str(concept).replace(' ', '_')}", + "emotion": str(concept), + "slice_count": 1, + "metrics": {"mean": float(score)}, + } + rows.append(row) + + payload = { + "kind": "emotion_score_result", + "feature": _feature_name_for_payload(feature), + "metric": str(metric), + "pooling": "mean", + "vector_space_kind": vector_space.get("vector_space_kind"), + "coordinates": [ + { + "name": f"emotion__{str(concept).replace(' ', '_')}", + "layers": [int(layer) for layer in sorted(matrices)], + "source_kind": "emotion_vector_space", + "metadata": {"emotion": str(concept)}, + } + for concept in concepts + ], + "rows": [ + { + **row, + "score": float(row["metrics"]["mean"]), + "slice_name": "assistant_prefill", + "slice_index": 0, + "slice_token_count": 1, + "role": "assistant", + "unit": "prefill_boundary", + "tags": {"marker": "assistant_prefill_boundary"}, + } + for row in rows + ], + "example_summaries": rows, + "summary": { + "coordinate_count": len(tuple(concepts)), + "layer_count": len(matrices), + "slice_row_count": len(rows), + "example_summary_count": len(rows), + }, + } + return TransformResult(payload=payload, example_keys=example_keys) + + +def score_dosage_context_feature( + *, + feature: Any, + vector_space_path: str, + concept: str | None = None, + layers: tuple[int, ...] = (56,), + metric: str = "cosine", +) -> TransformResult: + """Score full-sequence numeric-context captures against scenario emotion vectors.""" + + from pipelines_v2.operations.projections._kernels import project_vector + + feature_payload = feature.load() if hasattr(feature, "load") else feature + if not isinstance(feature_payload, dict) or not isinstance(feature_payload.get("layers"), dict): + raise ValueError("Numeric-context feature payload is missing layers") + if feature_payload.get("kind") != "residual": + raise ValueError(f"Expected residual feature payload, got {feature_payload.get('kind')!r}") + + source_path = _resolve_existing_path(vector_space_path) + with source_path.open("r", encoding="utf-8") as handle: + vector_space = json.load(handle) + vector_layers = vector_space.get("layers") + if not isinstance(vector_layers, dict): + raise ValueError("Emotion vector-space result is missing layers") + + available_layers = sorted(int(layer) for layer in feature_payload["layers"]) + selected_layers = [layer for layer in available_layers if int(layer) in {int(item) for item in layers}] + if not selected_layers: + raise ValueError("No requested layers were present in the numeric-context feature payload") + + rows_by_key = {str(row["key"]): row for row in numeric_context_prompt_rows()} + example_keys = sorted(feature_payload["layers"][str(selected_layers[0])]) + token_scores: list[dict[str, Any]] = [] + rows: list[dict[str, Any]] = [] + + for layer in selected_layers: + vector_payload = vector_layers.get(str(int(layer))) + concepts = vector_payload.get("concepts") if isinstance(vector_payload, dict) else None + if not isinstance(concepts, dict): + raise ValueError(f"Emotion vector-space result is missing concepts at layer {layer}") + layer_payload = feature_payload["layers"][str(layer)] + directions: dict[str, np.ndarray] = {} + for example_key in example_keys: + record = layer_payload.get(str(example_key)) + if not isinstance(record, dict): + continue + values = np.asarray(record.get("values"), dtype=np.float32) + if values.ndim != 2: + raise ValueError("Numeric-context residual values must be rank-2") + prompt_row = rows_by_key.get(str(example_key), {}) + labels = dict(prompt_row.get("labels") or {}) + scenario = str(labels.get("scenario") or "") + effective_concept = str(concept or labels.get("concept") or _DOSAGE_CONTEXT_CONCEPT) + if effective_concept not in directions: + concept_payload = concepts.get(effective_concept) + if not isinstance(concept_payload, dict) or concept_payload.get("vector") is None: + raise ValueError(f"Emotion vector-space result is missing {effective_concept!r} at layer {layer}") + directions[effective_concept] = np.asarray(concept_payload["vector"], dtype=np.float32) + direction = directions[effective_concept] + token_positions = [int(position) for position in record.get("tokens", range(values.shape[0]))] + token_labels = _dosage_context_token_labels( + record=record, + prompt_text=str(prompt_row.get("prompt_text") or labels.get("prompt_text") or ""), + token_count=int(values.shape[0]), + ) + scores = [ + float(project_vector(values[token_index], direction=direction, metric=metric)) + for token_index in range(int(values.shape[0])) + ] + series = { + "example_key": str(example_key), + "layer": int(layer), + "scenario": scenario, + "scenario_title": str(labels.get("scenario_title") or scenario), + "concept": effective_concept, + "x_label": str(labels.get("x_label") or ""), + "x_value": labels.get("x_value"), + "value_label": str(labels.get("value_label") or ""), + "contrast_role": str(labels.get("contrast_role") or ""), + "baseline_value": labels.get("baseline_value"), + "baseline_label": str(labels.get("baseline_label") or ""), + "target_value": labels.get("target_value"), + "target_label": str(labels.get("target_label") or ""), + "dose_mg": int(labels.get("x_value", 0)) if scenario == "tylenol_dosage_context" else None, + "dose_label": str(labels.get("value_label") or "") if scenario == "tylenol_dosage_context" else "", + "prompt_text": str(prompt_row.get("prompt_text") or labels.get("prompt_text") or ""), + "token_positions": token_positions, + "token_labels": token_labels, + "scores": scores, + } + token_scores.append(series) + for token_index, score in enumerate(scores): + rows.append( + { + "example_key": str(example_key), + "layer": int(layer), + "scenario": scenario, + "scenario_title": str(series["scenario_title"]), + "concept": effective_concept, + "x_value": series["x_value"], + "value_label": str(series["value_label"]), + "contrast_role": str(series["contrast_role"]), + "dose_mg": series["dose_mg"], + "token_index": int(token_index), + "token_position": int(token_positions[token_index]) + if token_index < len(token_positions) + else int(token_index), + "token_label": str(token_labels[token_index]) if token_index < len(token_labels) else "", + "score": float(score), + } + ) + + payload = { + "kind": "emotion_numeric_context_score_result", + "feature": _feature_name_for_payload(feature), + "metric": str(metric), + "concept": str(concept) if concept else None, + "scenarios": [ + { + "key": str(scenario["key"]), + "title": str(scenario["title"]), + "concept": str(concept or scenario["concept"]), + "baseline_label": str(scenario["baseline_label"]), + "target_label": str(scenario["target_label"]), + } + for scenario in _NUMERIC_CONTEXT_SCENARIOS + ], + "token_scores": token_scores, + "rows": rows, + "summary": { + "concept": str(concept) if concept else None, + "scenario_count": len({str(row.get("scenario")) for row in token_scores}), + "layer_count": len(selected_layers), + "layers": [int(layer) for layer in selected_layers], + "example_count": len(example_keys), + "token_score_count": len(rows), + }, + } + return TransformResult(payload=payload, example_keys=example_keys) + + +def build_dosage_context_validation( + *, + scores: Any, + output_dir: str | None = None, +) -> TransformResult: + """Build Figure 13-style token/layer validation panels for numeric contexts.""" + + payload = scores.result() if hasattr(scores, "result") else scores + if not isinstance(payload, dict): + raise TypeError(f"scores must resolve to a dict, got {type(payload).__name__}") + token_scores = payload.get("token_scores") + if not isinstance(token_scores, list) or not token_scores: + raise ValueError("Numeric-context score payload is missing token_scores") + + layers = sorted({int(row["layer"]) for row in token_scores if isinstance(row, dict)}) + layer_groups = _dosage_context_layer_groups(layers) + scenario_results = _numeric_context_scenario_results( + token_scores=token_scores, + layers=layers, + layer_groups=layer_groups, + ) + diff_rows = [ + dict(row) + for scenario in scenario_results + for row in scenario.get("difference_rows", []) + if isinstance(row, dict) + ] + primary = scenario_results[0] if scenario_results else {} + result = { + "kind": "emotion_numeric_context_validation", + "source": { + "score_kind": payload.get("kind"), + "metric": payload.get("metric"), + "feature": payload.get("feature"), + }, + "concept": primary.get("concept"), + "safe_dose_mg": primary.get("baseline_value") if primary.get("scenario") == "tylenol_dosage_context" else None, + "dangerous_dose_mg": primary.get("target_value") if primary.get("scenario") == "tylenol_dosage_context" else None, + "layers": [int(layer) for layer in layers], + "layer_groups": layer_groups, + "token_scores": token_scores, + "difference_rows": diff_rows, + "scenario_results": scenario_results, + "summary": { + "concept": primary.get("concept"), + "scenario_count": len(scenario_results), + "scenarios": [str(row.get("scenario")) for row in scenario_results], + "safe_dose_mg": primary.get("baseline_value") if primary.get("scenario") == "tylenol_dosage_context" else None, + "dangerous_dose_mg": primary.get("target_value") if primary.get("scenario") == "tylenol_dosage_context" else None, + "layer_count": len(layers), + "token_count": max((int(row.get("token_index", -1)) for row in diff_rows), default=-1) + 1, + "difference_row_count": len(diff_rows), + "late_layer_mean_delta": _dosage_context_mean_delta(diff_rows, layers[-max(1, len(layers) // 4) :]), + "all_layer_mean_delta": _dosage_context_mean_delta(diff_rows, layers), + }, + } + if output_dir: + published = _write_dosage_context_report(payload=result, output_dir=output_dir) + result["published"] = published + result["summary"] = { + **dict(result["summary"]), + "figure_path": published.get("figure_path"), + "report_path": published.get("report_path"), + } + _write_json(Path(published["result_path"]), result) + _write_json(Path(published["summary_path"]), result["summary"]) + return TransformResult(payload=result) + + +def build_paper_graph_validation( + *, + emotion_space_path: str, + selected_layer: int = 52, + pca_components: int = 3, + extreme_count: int = 12, + output_dir: str | None = None, +) -> TransformResult: + """Build compact diagnostics matching paper-style emotion-vector figures. + + The source vector-space JSON contains all hidden-dimensional vectors. This + transform keeps only PCA coordinates, layer-to-layer similarity summaries, + and one selected-layer cosine matrix for plotting. + """ + + source_path = _resolve_existing_path(emotion_space_path) + with source_path.open("r", encoding="utf-8") as handle: + vector_space = json.load(handle) + if not isinstance(vector_space, dict): + raise TypeError(f"Expected JSON object at {source_path}") + + raw_layers = vector_space.get("layers") + if not isinstance(raw_layers, dict) or not raw_layers: + raise ValueError("Emotion vector-space result is missing a non-empty layers mapping") + + available_layers = sorted(int(layer) for layer in raw_layers) + if int(selected_layer) not in available_layers: + selected_layer = available_layers[len(available_layers) // 2] + + concepts = _concept_order(raw_layers[str(int(selected_layer))]) + if not concepts: + raise ValueError(f"Selected layer {selected_layer} has no concepts") + + layer_results: list[dict[str, Any]] = [] + pairwise_by_layer: dict[int, np.ndarray] = {} + selected_cosine: np.ndarray | None = None + selected_coordinates: np.ndarray | None = None + selected_unit_matrix: np.ndarray | None = None + selected_explained: list[float] = [] + + for layer in available_layers: + matrix = _layer_matrix(raw_layers[str(layer)], concepts=concepts) + unit_matrix = _l2_normalize_rows(matrix) + cosine = np.clip(unit_matrix @ unit_matrix.T, -1.0, 1.0) + pairwise_by_layer[layer] = _upper_triangle(cosine) + + coords, explained = _pca(unit_matrix, n_components=int(pca_components)) + coords = _orient_pca_coordinates(concepts=concepts, coordinates=coords) + + layer_payload: dict[str, Any] = { + "layer": int(layer), + "concepts": concepts, + "pca": { + "coordinates": coords.astype(np.float32).tolist(), + "explained_variance_ratio": [float(value) for value in explained], + }, + } + if int(layer) == int(selected_layer): + selected_cosine = cosine + selected_coordinates = coords + selected_unit_matrix = unit_matrix + selected_explained = [float(value) for value in explained] + order = _cluster_order(cosine=cosine, coordinates=coords) + layer_payload["cosine_similarity"] = cosine.astype(np.float32).tolist() + layer_payload["clustered_order"] = order + layer_results.append(layer_payload) + + if selected_cosine is None or selected_coordinates is None or selected_unit_matrix is None: + raise ValueError(f"Selected layer {selected_layer} was not processed") + + layer_similarity = _layer_similarity_matrix(available_layers, pairwise_by_layer) + label_concepts = _label_concepts(concepts=concepts, coordinates=selected_coordinates) + pc_extremes = _pc_extremes( + concepts=concepts, + coordinates=selected_coordinates, + count=int(extreme_count), + ) + adjacent_similarity = _adjacent_similarity(available_layers, layer_similarity) + anchor_geometry = _anchor_geometry( + concepts=concepts, + coordinates=selected_coordinates, + cosine=selected_cosine, + ) + paper_cluster_alignment = _paper_cluster_alignment(concepts=concepts, cosine=selected_cosine) + kmeans_alignment = _kmeans_cluster_alignment(concepts=concepts, matrix=selected_unit_matrix) + nearest_neighbors = _nearest_neighbors(concepts=concepts, cosine=selected_cosine, count=40) + opposite_neighbors = _opposite_neighbors(concepts=concepts, cosine=selected_cosine, count=40) + validation_coverage = _validation_coverage() + paper_comparison = _paper_comparison( + concepts=concepts, + available_layers=available_layers, + selected_layer=int(selected_layer), + selected_explained=selected_explained, + adjacent_similarity=adjacent_similarity, + anchor_geometry=anchor_geometry, + paper_cluster_alignment=paper_cluster_alignment, + kmeans_alignment=kmeans_alignment, + ) + + payload = { + "kind": "emotion_validation_result", + "source": { + "emotion_space_path": str(source_path), + "emotion_space_kind": vector_space.get("kind"), + "vector_space_kind": vector_space.get("vector_space_kind"), + "metadata": dict(vector_space.get("metadata", {})), + }, + "selected_layer": int(selected_layer), + "layers": layer_results, + "layer_similarity": { + "layers": [int(layer) for layer in available_layers], + "matrix": layer_similarity.astype(np.float32).tolist(), + "method": "pearson_correlation_of_pairwise_cosine_similarities", + }, + "label_concepts": label_concepts, + "pc_extremes": pc_extremes, + "anchor_geometry": anchor_geometry, + "paper_cluster_alignment": paper_cluster_alignment, + "kmeans_alignment": kmeans_alignment, + "nearest_neighbors": nearest_neighbors, + "opposite_neighbors": opposite_neighbors, + "validation_coverage": validation_coverage, + "paper_comparison": paper_comparison, + "summary": { + "concept_count": len(concepts), + "layer_count": len(available_layers), + "selected_layer": int(selected_layer), + "pca_components": int(pca_components), + "selected_layer_pc1_variance": selected_explained[0] if selected_explained else None, + "selected_layer_pc2_variance": selected_explained[1] if len(selected_explained) > 1 else None, + "mean_adjacent_layer_similarity": adjacent_similarity, + "valence_anchor_delta": anchor_geometry["summary"]["valence_anchor_delta"], + "arousal_anchor_delta": anchor_geometry["summary"]["arousal_anchor_delta"], + "opposite_valence_mean_cosine": anchor_geometry["summary"]["positive_to_negative_mean_cosine"], + "paper_cluster_coverage": paper_cluster_alignment["summary"]["coverage"], + "paper_cluster_mean_within_cosine": paper_cluster_alignment["summary"]["mean_within_cosine"], + "paper_cluster_mean_between_cosine": paper_cluster_alignment["summary"]["mean_between_cosine"], + "paper_cluster_separation": paper_cluster_alignment["summary"]["separation"], + "kmeans_paper_same_cluster_recall": kmeans_alignment["summary"]["same_cluster_recall"], + "kmeans_paper_same_cluster_precision": kmeans_alignment["summary"]["same_cluster_precision"], + "validation_checks_complete": sum(1 for item in validation_coverage if item["status"] == "complete"), + "validation_checks_total": len(validation_coverage), + "paper_comparison_ready_checks": sum( + 1 for item in paper_comparison if item["status"] in {"pass", "measured", "partial"} + ), + "paper_comparison_total_checks": len(paper_comparison), + }, + } + if output_dir: + published = _write_validation_report(payload=payload, output_dir=output_dir) + payload["published"] = published + payload["summary"] = { + **dict(payload["summary"]), + "figure_count": len(published.get("figures", [])), + "report_path": published.get("report_path"), + } + _write_json(Path(published["validation_result_path"]), payload) + _write_json(Path(published["summary_path"]), payload["summary"]) + return TransformResult(payload=payload) + + +def _numeric_example_key(scenario_key: str, *, index: int, value: Any) -> str: + value_text = str(value).replace(".", "p").replace("-", "neg") + return f"{scenario_key}_{int(index):02d}_{value_text}" + + +def _feature_name_for_payload(feature: Any) -> str | None: + if hasattr(feature, "feature") and getattr(feature.feature, "name", None) is not None: + return str(feature.feature.name) + if getattr(feature, "name", None) is not None: + return str(feature.name) + return None + + +def _dosage_context_token_labels(*, record: dict[str, Any], prompt_text: str, token_count: int) -> list[str]: + labels = [""] * max(0, int(token_count)) + if not labels: + return labels + + token_sections = record.get("token_sections") if isinstance(record.get("token_sections"), dict) else {} + user_positions: list[int] = [] + for name, positions in token_sections.items(): + if str(name).startswith("user_turn") and isinstance(positions, list): + user_positions.extend(int(position) for position in positions if 0 <= int(position) < len(labels)) + user_positions = sorted(set(user_positions)) + semantic_tokens = _semantic_label_tokens(prompt_text) + + if user_positions and semantic_tokens: + if len(semantic_tokens) == 1: + labels[user_positions[len(user_positions) // 2]] = semantic_tokens[0] + else: + for semantic_index, token_label in enumerate(semantic_tokens): + position_index = round( + semantic_index * max(0, len(user_positions) - 1) / max(1, len(semantic_tokens) - 1) + ) + labels[user_positions[position_index]] = token_label + elif semantic_tokens: + usable_positions = list(range(max(0, len(labels) - 1))) + for semantic_index, token_label in enumerate(semantic_tokens): + if not usable_positions: + break + position_index = round( + semantic_index * max(0, len(usable_positions) - 1) / max(1, len(semantic_tokens) - 1) + ) + labels[usable_positions[position_index]] = token_label + + labels[0] = labels[0] or "" + labels[-1] = "assistant_prefill" + return labels + + +def _semantic_label_tokens(text: str) -> list[str]: + return re.findall(r"[A-Za-z]+|\d+|[!?.,]", text) + + +def _dosage_context_difference_rows( + *, + token_scores: list[dict[str, Any]], + safe_dose: int, + dangerous_dose: int, +) -> list[dict[str, Any]]: + by_key: dict[tuple[int, int], dict[int, dict[str, Any]]] = {} + for series in token_scores: + if not isinstance(series, dict): + continue + dose = int(series.get("dose_mg", 0)) + layer = int(series.get("layer", 0)) + scores = series.get("scores") if isinstance(series.get("scores"), list) else [] + labels = series.get("token_labels") if isinstance(series.get("token_labels"), list) else [] + by_key.setdefault((dose, layer), {}) + for token_index, score in enumerate(scores): + by_key[(dose, layer)][int(token_index)] = { + "score": float(score), + "token_label": str(labels[token_index]) if token_index < len(labels) else "", + } + + rows: list[dict[str, Any]] = [] + layers = sorted({layer for dose, layer in by_key if dose in {int(safe_dose), int(dangerous_dose)}}) + for layer in layers: + safe = by_key.get((int(safe_dose), int(layer)), {}) + danger = by_key.get((int(dangerous_dose), int(layer)), {}) + for token_index in sorted(set(safe) & set(danger)): + rows.append( + { + "layer": int(layer), + "token_index": int(token_index), + "token_label": str(safe[token_index].get("token_label") or danger[token_index].get("token_label") or ""), + "safe_score": float(safe[token_index]["score"]), + "dangerous_score": float(danger[token_index]["score"]), + "delta": float(danger[token_index]["score"]) - float(safe[token_index]["score"]), + } + ) + return rows + + +def _numeric_context_scenario_results( + *, + token_scores: list[dict[str, Any]], + layers: list[int], + layer_groups: list[dict[str, Any]], +) -> list[dict[str, Any]]: + scenario_order = [str(scenario["key"]) for scenario in _NUMERIC_CONTEXT_SCENARIOS] + grouped: dict[str, list[dict[str, Any]]] = {} + for row in token_scores: + if not isinstance(row, dict): + continue + scenario = str(row.get("scenario") or "") + if not scenario: + continue + grouped.setdefault(scenario, []).append(dict(row)) + + results: list[dict[str, Any]] = [] + for scenario in sorted(grouped, key=lambda key: scenario_order.index(key) if key in scenario_order else len(scenario_order)): + rows = grouped[scenario] + first = rows[0] + baseline = next((row for row in rows if str(row.get("contrast_role")) == "baseline"), first) + target = next((row for row in rows if str(row.get("contrast_role")) == "target"), rows[-1]) + diff_rows = _numeric_context_difference_rows(token_scores=rows, scenario=scenario) + result = { + "scenario": scenario, + "title": str(first.get("scenario_title") or scenario), + "concept": str(first.get("concept") or _DOSAGE_CONTEXT_CONCEPT), + "x_label": str(first.get("x_label") or ""), + "baseline_value": baseline.get("x_value"), + "baseline_label": str(baseline.get("value_label") or baseline.get("baseline_label") or "baseline"), + "target_value": target.get("x_value"), + "target_label": str(target.get("value_label") or target.get("target_label") or "target"), + "layers": [int(layer) for layer in layers], + "layer_groups": [dict(group) for group in layer_groups], + "token_scores": rows, + "difference_rows": diff_rows, + "summary": { + "scenario": scenario, + "concept": str(first.get("concept") or _DOSAGE_CONTEXT_CONCEPT), + "token_count": max((len(row.get("scores", [])) for row in rows), default=0), + "difference_row_count": len(diff_rows), + "late_layer_mean_delta": _dosage_context_mean_delta(diff_rows, layers[-max(1, len(layers) // 4) :]), + "all_layer_mean_delta": _dosage_context_mean_delta(diff_rows, layers), + }, + } + results.append(result) + return results + + +def _numeric_context_difference_rows( + *, + token_scores: list[dict[str, Any]], + scenario: str, +) -> list[dict[str, Any]]: + by_key: dict[tuple[str, int], dict[int, dict[str, Any]]] = {} + for series in token_scores: + if not isinstance(series, dict) or str(series.get("scenario")) != str(scenario): + continue + role = str(series.get("contrast_role") or "") + layer = int(series.get("layer", 0)) + scores = series.get("scores") if isinstance(series.get("scores"), list) else [] + labels = series.get("token_labels") if isinstance(series.get("token_labels"), list) else [] + by_key.setdefault((role, layer), {}) + for token_index, score in enumerate(scores): + by_key[(role, layer)][int(token_index)] = { + "score": float(score), + "token_label": str(labels[token_index]) if token_index < len(labels) else "", + } + + rows: list[dict[str, Any]] = [] + layers = sorted({layer for role, layer in by_key if role in {"baseline", "target"}}) + for layer in layers: + baseline = by_key.get(("baseline", int(layer)), {}) + target = by_key.get(("target", int(layer)), {}) + for token_index in sorted(set(baseline) & set(target)): + rows.append( + { + "scenario": str(scenario), + "layer": int(layer), + "token_index": int(token_index), + "token_label": str( + baseline[token_index].get("token_label") or target[token_index].get("token_label") or "" + ), + "baseline_score": float(baseline[token_index]["score"]), + "target_score": float(target[token_index]["score"]), + "safe_score": float(baseline[token_index]["score"]), + "dangerous_score": float(target[token_index]["score"]), + "delta": float(target[token_index]["score"]) - float(baseline[token_index]["score"]), + } + ) + return rows + + +def _dosage_context_layer_groups(layers: list[int]) -> list[dict[str, Any]]: + names = ("Early", "Early-Mid", "Mid-Late", "Late") + if not layers: + return [] + groups: list[dict[str, Any]] = [] + chunks = np.array_split(np.asarray(sorted(layers), dtype=np.int32), min(4, len(layers))) + for index, chunk in enumerate(chunks): + if len(chunk) == 0: + continue + layer_values = [int(layer) for layer in chunk.tolist()] + layer_range = ( + str(layer_values[0]) + if len(layer_values) == 1 or layer_values[0] == layer_values[-1] + else f"{layer_values[0]}-{layer_values[-1]}" + ) + groups.append( + { + "name": f"{names[index]} ({layer_range})" if index < len(names) else f"Group {index + 1} ({layer_range})", + "layers": layer_values, + } + ) + return groups + + +def _dosage_context_mean_delta(diff_rows: list[dict[str, Any]], layers: list[int]) -> float | None: + selected = [float(row["delta"]) for row in diff_rows if int(row["layer"]) in {int(layer) for layer in layers}] + return float(np.mean(selected)) if selected else None + + +def _numeric_semantics_points(score_payload: dict[str, Any]) -> list[dict[str, Any]]: + rows = score_payload.get("example_summaries") + if not isinstance(rows, list): + raise ValueError("Numeric semantics score payload is missing example_summaries") + metadata_by_key = { + row["key"]: row + for row in numeric_semantics_prompt_rows() + } + points: list[dict[str, Any]] = [] + for raw_row in rows: + if not isinstance(raw_row, dict): + continue + example_key = str(raw_row.get("example_key") or "") + metadata = metadata_by_key.get(example_key) + if metadata is None: + continue + labels = dict(metadata["labels"]) + metrics = raw_row.get("metrics") if isinstance(raw_row.get("metrics"), dict) else {} + if "mean" in metrics: + score = float(metrics["mean"]) + elif metrics: + score = float(next(iter(metrics.values()))) + else: + continue + emotion = str(raw_row.get("emotion") or raw_row.get("coordinate") or "") + if emotion not in set(_NUMERIC_EMOTIONS): + continue + points.append( + { + "example_key": example_key, + "scenario": str(labels["scenario"]), + "scenario_title": str(labels["scenario_title"]), + "x": labels["x"], + "x_index": int(labels["x_index"]), + "x_label": str(labels["x_label"]), + "emotion": emotion, + "score": score, + "layer": int(raw_row.get("layer", 0)), + } + ) + points.sort(key=lambda row: (str(row["scenario"]), int(row["x_index"]), str(row["emotion"]))) + return points + + +def _numeric_semantics_checks(points: list[dict[str, Any]]) -> list[dict[str, Any]]: + expected = { + ("tylenol", "afraid"): "increase", + ("tylenol", "calm"): "decrease", + ("food_drink_hours", "afraid"): "increase", + ("food_drink_hours", "calm"): "decrease", + ("sister_age", "happy"): "increase", + ("sister_age", "calm"): "increase", + ("sister_age", "sad"): "decrease", + ("sister_age", "afraid"): "decrease", + ("dog_missing", "sad"): "increase", + ("startup_runway", "afraid"): "decrease", + ("startup_runway", "sad"): "decrease", + ("startup_runway", "calm"): "increase", + ("startup_runway", "happy"): "increase", + ("students_passed", "happy"): "increase", + ("students_passed", "sad"): "decrease", + ("students_passed", "afraid"): "decrease", + } + by_series: dict[tuple[int, str, str], list[dict[str, Any]]] = {} + for point in points: + by_series.setdefault((int(point["layer"]), str(point["scenario"]), str(point["emotion"])), []).append(point) + + checks: list[dict[str, Any]] = [] + layers = sorted({int(point["layer"]) for point in points}) or [0] + for layer in layers: + for (scenario, emotion), direction in sorted(expected.items()): + series = sorted(by_series.get((layer, scenario, emotion), []), key=lambda row: int(row["x_index"])) + if len(series) < 2: + checks.append( + { + "layer": int(layer), + "scenario": scenario, + "emotion": emotion, + "expected": direction, + "delta": None, + "passed": False, + "reason": "missing_series", + } + ) + continue + delta = float(series[-1]["score"]) - float(series[0]["score"]) + passed = delta > 0.0 if direction == "increase" else delta < 0.0 + checks.append( + { + "layer": int(layer), + "scenario": scenario, + "emotion": emotion, + "expected": direction, + "first_score": float(series[0]["score"]), + "last_score": float(series[-1]["score"]), + "delta": delta, + "passed": bool(passed), + } + ) + return checks + + +def _numeric_passed_checks_by_layer(checks: list[dict[str, Any]]) -> dict[str, dict[str, int]]: + by_layer: dict[int, dict[str, int]] = {} + for check in checks: + layer = int(check.get("layer", 0)) + record = by_layer.setdefault(layer, {"passed": 0, "total": 0}) + record["total"] += 1 + record["passed"] += int(bool(check.get("passed"))) + return {str(layer): by_layer[layer] for layer in sorted(by_layer)} + + +def _write_numeric_semantics_report(*, payload: dict[str, Any], output_dir: str) -> dict[str, Any]: + report_root = _resolve_output_dir(output_dir) + assets_dir = report_root / "assets" + tables_dir = report_root / "tables" + assets_dir.mkdir(parents=True, exist_ok=True) + tables_dir.mkdir(parents=True, exist_ok=True) + + layers = sorted({int(row["layer"]) for row in payload.get("points", []) if isinstance(row, dict)}) + if not layers: + layers = [0] + figure_paths: list[Path] = [] + for layer in layers: + layer_figure_path = assets_dir / f"numeric_semantics_layer{layer}.png" + _plot_numeric_semantics(payload=payload, output_path=layer_figure_path, layer=layer) + figure_paths.append(layer_figure_path) + preferred_layer = 52 if 52 in layers else layers[0] + figure_path = assets_dir / f"numeric_semantics_layer{preferred_layer}.png" + + points_path = tables_dir / "numeric_semantics_points.json" + checks_path = tables_dir / "numeric_semantics_checks.json" + result_path = report_root / "numeric_semantics_result.json" + summary_path = report_root / "summary.json" + report_path = report_root / "report.md" + _write_json(points_path, {"rows": payload.get("points", [])}) + _write_json(checks_path, {"rows": payload.get("checks", [])}) + _write_json(result_path, payload) + _write_json(summary_path, payload.get("summary", {})) + _write_text( + report_path, + _render_numeric_semantics_markdown( + payload=payload, + figure_paths=tuple(figure_paths), + preferred_layer=preferred_layer, + ), + ) + return { + "output_dir": str(report_root), + "assets_dir": str(assets_dir), + "tables_dir": str(tables_dir), + "figure_path": str(figure_path), + "figures": [str(path) for path in figure_paths], + "points_path": str(points_path), + "checks_path": str(checks_path), + "result_path": str(result_path), + "summary_path": str(summary_path), + "report_path": str(report_path), + } + + +def _write_dosage_context_report(*, payload: dict[str, Any], output_dir: str) -> dict[str, Any]: + report_root = _resolve_output_dir(output_dir) + assets_dir = report_root / "assets" + tables_dir = report_root / "tables" + assets_dir.mkdir(parents=True, exist_ok=True) + tables_dir.mkdir(parents=True, exist_ok=True) + + scenario_results = [dict(row) for row in payload.get("scenario_results", []) if isinstance(row, dict)] + if not scenario_results: + scenario_results = [payload] + figures: list[dict[str, str]] = [] + for scenario in scenario_results: + scenario_key = str(scenario.get("scenario") or "numeric_context") + figure_path = assets_dir / f"numeric_context_{scenario_key}.png" + _plot_dosage_context(payload=scenario, output_path=figure_path) + figures.append( + { + "scenario": scenario_key, + "title": str(scenario.get("title") or scenario_key), + "path": str(figure_path), + } + ) + surface_path = assets_dir / f"numeric_context_{scenario_key}_surface.png" + _plot_numeric_context_surface(payload=scenario, output_path=surface_path) + figures.append( + { + "scenario": scenario_key, + "title": f"{str(scenario.get('title') or scenario_key)} surface sweep", + "path": str(surface_path), + } + ) + + figure_path = Path(figures[0]["path"]) + token_scores_path = tables_dir / "numeric_context_token_scores.json" + difference_path = tables_dir / "numeric_context_differences.json" + scenario_results_path = tables_dir / "numeric_context_scenarios.json" + result_path = report_root / "numeric_context_result.json" + legacy_result_path = report_root / "dosage_context_result.json" + summary_path = report_root / "summary.json" + report_path = report_root / "report.md" + _write_json(token_scores_path, {"rows": payload.get("token_scores", [])}) + _write_json(difference_path, {"rows": payload.get("difference_rows", [])}) + _write_json(scenario_results_path, {"rows": scenario_results}) + _write_json(result_path, payload) + _write_json(legacy_result_path, payload) + _write_json(summary_path, payload.get("summary", {})) + _write_text(report_path, _render_dosage_context_markdown(payload=payload, figures=figures)) + return { + "output_dir": str(report_root), + "assets_dir": str(assets_dir), + "tables_dir": str(tables_dir), + "figure_path": str(figure_path), + "figures": figures, + "token_scores_path": str(token_scores_path), + "difference_path": str(difference_path), + "scenario_results_path": str(scenario_results_path), + "result_path": str(result_path), + "legacy_result_path": str(legacy_result_path), + "summary_path": str(summary_path), + "report_path": str(report_path), + } + + +def _resolve_existing_path(path: str) -> Path: + candidate = Path(path).expanduser() + if not candidate.is_absolute(): + repo_candidate = _REPO_ROOT / candidate + if repo_candidate.exists(): + candidate = repo_candidate + if not candidate.exists(): + raise FileNotFoundError(f"Emotion vector-space result not found: {path}") + return candidate + + +def _concept_order(layer_payload: Any) -> list[str]: + if not isinstance(layer_payload, dict): + return [] + concepts = layer_payload.get("concepts") + if not isinstance(concepts, dict): + return [] + return [str(concept) for concept in concepts] + + +def _layer_matrix(layer_payload: dict[str, Any], *, concepts: list[str]) -> np.ndarray: + concept_payloads = layer_payload.get("concepts") + if not isinstance(concept_payloads, dict): + raise ValueError("Layer payload is missing concepts") + vectors: list[np.ndarray] = [] + missing: list[str] = [] + for concept in concepts: + payload = concept_payloads.get(concept) + if not isinstance(payload, dict) or "vector" not in payload: + missing.append(concept) + continue + vectors.append(np.asarray(payload["vector"], dtype=np.float32)) + if missing: + raise ValueError(f"Layer payload is missing vectors for concepts: {missing[:8]}") + return np.stack(vectors, axis=0) + + +def _l2_normalize_rows(matrix: np.ndarray) -> np.ndarray: + norms = np.linalg.norm(matrix, axis=1, keepdims=True) + return matrix / np.where(norms > 0.0, norms, 1.0) + + +def _pca(matrix: np.ndarray, *, n_components: int) -> tuple[np.ndarray, np.ndarray]: + component_count = max(1, min(int(n_components), matrix.shape[0], matrix.shape[1])) + centered = matrix.astype(np.float32) - matrix.astype(np.float32).mean(axis=0, keepdims=True) + u, singular_values, _ = np.linalg.svd(centered, full_matrices=False) + coordinates = u[:, :component_count] * singular_values[:component_count] + variances = (singular_values**2) / max(centered.shape[0] - 1, 1) + total_variance = float(np.sum(variances)) + if total_variance <= 0.0: + explained = np.zeros(component_count, dtype=np.float32) + else: + explained = (variances[:component_count] / total_variance).astype(np.float32) + return coordinates.astype(np.float32), explained + + +def _orient_pca_coordinates(*, concepts: list[str], coordinates: np.ndarray) -> np.ndarray: + oriented = np.array(coordinates, dtype=np.float32, copy=True) + if oriented.shape[1] >= 1 and _anchor_mean(concepts, oriented[:, 0], _POSITIVE_VALENCE_ANCHORS) < _anchor_mean( + concepts, + oriented[:, 0], + _NEGATIVE_VALENCE_ANCHORS, + ): + oriented[:, 0] *= -1.0 + if oriented.shape[1] >= 2 and _anchor_mean(concepts, oriented[:, 1], _HIGH_AROUSAL_ANCHORS) < _anchor_mean( + concepts, + oriented[:, 1], + _LOW_AROUSAL_ANCHORS, + ): + oriented[:, 1] *= -1.0 + return oriented + + +def _anchor_mean(concepts: list[str], values: np.ndarray, anchors: tuple[str, ...]) -> float: + indices = [concepts.index(anchor) for anchor in anchors if anchor in concepts] + if not indices: + return 0.0 + return float(np.mean(values[np.asarray(indices, dtype=np.int64)])) + + +def _upper_triangle(matrix: np.ndarray) -> np.ndarray: + indices = np.triu_indices(matrix.shape[0], k=1) + return matrix[indices].astype(np.float32) + + +def _layer_similarity_matrix(layers: list[int], pairwise_by_layer: dict[int, np.ndarray]) -> np.ndarray: + values = np.eye(len(layers), dtype=np.float32) + for row, layer_a in enumerate(layers): + a = pairwise_by_layer[layer_a] + for column, layer_b in enumerate(layers): + if column <= row: + continue + b = pairwise_by_layer[layer_b] + similarity = _pearson(a, b) + values[row, column] = similarity + values[column, row] = similarity + return values + + +def _pearson(a: np.ndarray, b: np.ndarray) -> float: + if a.size == 0 or b.size == 0: + return 0.0 + a_std = float(np.std(a)) + b_std = float(np.std(b)) + if a_std == 0.0 or b_std == 0.0: + return 1.0 if np.allclose(a, b) else 0.0 + return float(np.corrcoef(a, b)[0, 1]) + + +def _cluster_order(*, cosine: np.ndarray, coordinates: np.ndarray) -> list[int]: + distance = np.clip(1.0 - cosine, 0.0, 2.0) + np.fill_diagonal(distance, 0.0) + try: + from scipy.cluster.hierarchy import leaves_list, linkage + from scipy.spatial.distance import squareform + + return [int(index) for index in leaves_list(linkage(squareform(distance, checks=False), method="average"))] + except Exception: + return [int(index) for index in np.argsort(coordinates[:, 0])] + + +def _label_concepts(*, concepts: list[str], coordinates: np.ndarray) -> list[str]: + labels: set[str] = set() + for group in ( + _POSITIVE_VALENCE_ANCHORS, + _NEGATIVE_VALENCE_ANCHORS, + _HIGH_AROUSAL_ANCHORS, + _LOW_AROUSAL_ANCHORS, + ): + labels.update(concept for concept in group if concept in concepts) + for component_index in range(min(2, coordinates.shape[1])): + order = np.argsort(coordinates[:, component_index]) + labels.update(concepts[int(index)] for index in order[:6]) + labels.update(concepts[int(index)] for index in order[-6:]) + return [concept for concept in concepts if concept in labels] + + +def _pc_extremes(*, concepts: list[str], coordinates: np.ndarray, count: int) -> dict[str, list[dict[str, Any]]]: + output: dict[str, list[dict[str, Any]]] = {} + component_names = ("pc1", "pc2", "pc3") + for component_index, component_name in enumerate(component_names[: coordinates.shape[1]]): + values = coordinates[:, component_index] + ascending = np.argsort(values) + output[f"{component_name}_negative"] = _records(concepts, values, ascending[:count]) + output[f"{component_name}_positive"] = _records(concepts, values, ascending[-count:][::-1]) + return output + + +def _records(concepts: list[str], values: np.ndarray, indices: np.ndarray) -> list[dict[str, Any]]: + return [ + { + "concept": concepts[int(index)], + "value": float(values[int(index)]), + } + for index in indices + ] + + +def _adjacent_similarity(layers: list[int], layer_similarity: np.ndarray) -> float | None: + if len(layers) < 2: + return None + values = [float(layer_similarity[index, index + 1]) for index in range(len(layers) - 1)] + return float(np.mean(values)) if values else None + + +def _anchor_geometry(*, concepts: list[str], coordinates: np.ndarray, cosine: np.ndarray) -> dict[str, Any]: + concept_to_index = {concept: index for index, concept in enumerate(concepts)} + positive_indices = _present_indices(concept_to_index, _POSITIVE_VALENCE_ANCHORS) + negative_indices = _present_indices(concept_to_index, _NEGATIVE_VALENCE_ANCHORS) + high_arousal_indices = _present_indices(concept_to_index, _HIGH_AROUSAL_ANCHORS) + low_arousal_indices = _present_indices(concept_to_index, _LOW_AROUSAL_ANCHORS) + + valence_positive = _coordinate_mean(coordinates, positive_indices, component=0) + valence_negative = _coordinate_mean(coordinates, negative_indices, component=0) + arousal_high = _coordinate_mean(coordinates, high_arousal_indices, component=1) + arousal_low = _coordinate_mean(coordinates, low_arousal_indices, component=1) + arousal_high_pc3 = _coordinate_mean(coordinates, high_arousal_indices, component=2) + arousal_low_pc3 = _coordinate_mean(coordinates, low_arousal_indices, component=2) + + positive_within = _mean_pairwise(cosine, positive_indices) + negative_within = _mean_pairwise(cosine, negative_indices) + high_arousal_within = _mean_pairwise(cosine, high_arousal_indices) + low_arousal_within = _mean_pairwise(cosine, low_arousal_indices) + positive_to_negative = _mean_cross(cosine, positive_indices, negative_indices) + high_to_low_arousal = _mean_cross(cosine, high_arousal_indices, low_arousal_indices) + + return { + "anchors": { + "positive_valence": _records_for_indices(concepts, positive_indices), + "negative_valence": _records_for_indices(concepts, negative_indices), + "high_arousal": _records_for_indices(concepts, high_arousal_indices), + "low_arousal": _records_for_indices(concepts, low_arousal_indices), + }, + "summary": { + "positive_anchor_pc1_mean": valence_positive, + "negative_anchor_pc1_mean": valence_negative, + "valence_anchor_delta": ( + valence_positive - valence_negative + if valence_positive is not None and valence_negative is not None + else None + ), + "high_arousal_anchor_pc2_mean": arousal_high, + "low_arousal_anchor_pc2_mean": arousal_low, + "arousal_anchor_delta": ( + arousal_high - arousal_low if arousal_high is not None and arousal_low is not None else None + ), + "high_arousal_anchor_pc3_mean": arousal_high_pc3, + "low_arousal_anchor_pc3_mean": arousal_low_pc3, + "arousal_anchor_pc3_delta": ( + arousal_high_pc3 - arousal_low_pc3 + if arousal_high_pc3 is not None and arousal_low_pc3 is not None + else None + ), + "positive_anchor_within_cosine": positive_within, + "negative_anchor_within_cosine": negative_within, + "positive_to_negative_mean_cosine": positive_to_negative, + "high_arousal_anchor_within_cosine": high_arousal_within, + "low_arousal_anchor_within_cosine": low_arousal_within, + "high_to_low_arousal_mean_cosine": high_to_low_arousal, + }, + } + + +def _paper_cluster_alignment(*, concepts: list[str], cosine: np.ndarray) -> dict[str, Any]: + concept_to_index = {concept: index for index, concept in enumerate(concepts)} + concept_to_cluster = _paper_cluster_by_concept() + covered = [concept for concept in concepts if concept in concept_to_cluster] + records: list[dict[str, Any]] = [] + within_values: list[float] = [] + between_values: list[float] = [] + + for cluster_name, members in _PAPER_EMOTION_CLUSTERS.items(): + present = [concept for concept in members if concept in concept_to_index] + missing = [concept for concept in members if concept not in concept_to_index] + indices = [concept_to_index[concept] for concept in present] + within = _mean_pairwise(cosine, indices) + outside_indices = [index for concept, index in concept_to_index.items() if concept not in set(present)] + between = _mean_cross(cosine, indices, outside_indices) + if within is not None: + within_values.append(within) + if between is not None: + between_values.append(between) + records.append( + { + "cluster": cluster_name, + "paper_size": len(members), + "present_count": len(present), + "missing": missing, + "mean_within_cosine": within, + "mean_to_other_clusters_cosine": between, + "separation": (within - between) if within is not None and between is not None else None, + "members": present, + } + ) + + mean_within = float(np.mean(within_values)) if within_values else None + mean_between = float(np.mean(between_values)) if between_values else None + return { + "reference": "Transformer Circuits emotions paper Table 12 clusters", + "clusters": records, + "summary": { + "coverage": len(covered) / len(concepts) if concepts else None, + "covered_count": len(covered), + "concept_count": len(concepts), + "mean_within_cosine": mean_within, + "mean_between_cosine": mean_between, + "separation": (mean_within - mean_between) if mean_within is not None and mean_between is not None else None, + }, + } + + +def _kmeans_cluster_alignment(*, concepts: list[str], matrix: np.ndarray) -> dict[str, Any]: + concept_to_cluster = _paper_cluster_by_concept() + present = [concept for concept in concepts if concept in concept_to_cluster] + if not present: + return {"clusters": [], "summary": {"same_cluster_recall": None, "same_cluster_precision": None}} + indices = np.asarray([concepts.index(concept) for concept in present], dtype=np.int64) + X = matrix[indices] + labels = _kmeans_labels(X, k=min(len(_PAPER_EMOTION_CLUSTERS), len(present))) + true_labels = [concept_to_cluster[concept] for concept in present] + recall, precision = _same_cluster_scores(true_labels=true_labels, predicted_labels=labels.tolist()) + cluster_records: list[dict[str, Any]] = [] + for label in sorted(set(labels.tolist())): + members = [concept for concept, assigned in zip(present, labels.tolist(), strict=True) if assigned == label] + paper_counts: dict[str, int] = {} + for member in members: + paper_counts[concept_to_cluster[member]] = paper_counts.get(concept_to_cluster[member], 0) + 1 + cluster_records.append( + { + "cluster_id": int(label), + "size": len(members), + "paper_cluster_counts": dict(sorted(paper_counts.items(), key=lambda item: (-item[1], item[0]))), + "members": members, + } + ) + return { + "method": "deterministic_kmeans_on_selected_layer_unit_vectors", + "clusters": cluster_records, + "summary": { + "same_cluster_recall": recall, + "same_cluster_precision": precision, + "concept_count": len(present), + "cluster_count": len(cluster_records), + }, + } + + +def _nearest_neighbors(*, concepts: list[str], cosine: np.ndarray, count: int) -> list[dict[str, Any]]: + pairs: list[tuple[float, str, str]] = [] + for row, concept_a in enumerate(concepts): + for column in range(row + 1, len(concepts)): + pairs.append((float(cosine[row, column]), concept_a, concepts[column])) + pairs.sort(reverse=True) + return [ + { + "concept_a": concept_a, + "concept_b": concept_b, + "cosine": value, + "same_paper_cluster": _paper_cluster_by_concept().get(concept_a) + == _paper_cluster_by_concept().get(concept_b), + "paper_cluster_a": _paper_cluster_by_concept().get(concept_a), + "paper_cluster_b": _paper_cluster_by_concept().get(concept_b), + } + for value, concept_a, concept_b in pairs[:count] + ] + + +def _opposite_neighbors(*, concepts: list[str], cosine: np.ndarray, count: int) -> list[dict[str, Any]]: + pairs: list[tuple[float, str, str]] = [] + for row, concept_a in enumerate(concepts): + for column in range(row + 1, len(concepts)): + pairs.append((float(cosine[row, column]), concept_a, concepts[column])) + pairs.sort() + return [ + { + "concept_a": concept_a, + "concept_b": concept_b, + "cosine": value, + "paper_cluster_a": _paper_cluster_by_concept().get(concept_a), + "paper_cluster_b": _paper_cluster_by_concept().get(concept_b), + } + for value, concept_a, concept_b in pairs[:count] + ] + + +def _paper_comparison( + *, + concepts: list[str], + available_layers: list[int], + selected_layer: int, + selected_explained: list[float], + adjacent_similarity: float | None, + anchor_geometry: dict[str, Any], + paper_cluster_alignment: dict[str, Any], + kmeans_alignment: dict[str, Any], +) -> list[dict[str, Any]]: + anchor_summary = dict(anchor_geometry.get("summary", {})) + cluster_summary = dict(paper_cluster_alignment.get("summary", {})) + kmeans_summary = dict(kmeans_alignment.get("summary", {})) + pc1 = selected_explained[0] if selected_explained else None + pc2 = selected_explained[1] if len(selected_explained) > 1 else None + return [ + { + "paper_validation": "171 story-derived emotion vectors with neutral-PC denoising", + "paper_result": "The paper computes vectors for 171 emotion words from synthetic stories and projects out neutral-transcript PCs.", + "our_result": f"{len(concepts)} concepts found in local vector-space asset.", + "status": "pass" if len(concepts) == 171 else "warn", + "next_step": None if len(concepts) == 171 else "Regenerate vectors for the missing concepts.", + }, + { + "paper_validation": "PCA recovers valence/arousal-like structure", + "paper_result": "The paper reports PC1 tracking valence and PC2/PC3 tracking arousal depending on layer.", + "our_result": ( + f"Layer {selected_layer}: PC1={_format_float(pc1)}, PC2={_format_float(pc2)}, " + f"valence_anchor_delta={_format_float(anchor_summary.get('valence_anchor_delta'))}, " + f"arousal_anchor_delta={_format_float(anchor_summary.get('arousal_anchor_delta'))}." + ), + "status": ( + "pass" + if _positive(anchor_summary.get("valence_anchor_delta")) + and _positive(anchor_summary.get("arousal_anchor_delta")) + else "warn" + ), + "next_step": "Add external valence/arousal ratings to replace anchor-only validation.", + }, + { + "paper_validation": "Opposite-valence concepts tend to anti-correlate", + "paper_result": "The paper highlights negative cosine similarity between opposite-valence emotions.", + "our_result": ( + "positive_to_negative_mean_cosine=" + f"{_format_float(anchor_summary.get('positive_to_negative_mean_cosine'))}" + ), + "status": ( + "pass" + if _negative(anchor_summary.get("positive_to_negative_mean_cosine")) + else "warn" + ), + "next_step": None, + }, + { + "paper_validation": "k=10 interpretable emotion clusters", + "paper_result": "The paper clusters all 171 emotion vectors with k-means and reports 10 interpretable clusters.", + "our_result": ( + f"paper_cluster_coverage={_format_float(cluster_summary.get('coverage'))}, " + f"mean_within={_format_float(cluster_summary.get('mean_within_cosine'))}, " + f"mean_between={_format_float(cluster_summary.get('mean_between_cosine'))}, " + f"separation={_format_float(cluster_summary.get('separation'))}." + ), + "status": ( + "pass" + if _positive(cluster_summary.get("separation")) and cluster_summary.get("coverage") == 1.0 + else "warn" + ), + "next_step": None, + }, + { + "paper_validation": "Recovered k-means clusters align with the paper cluster taxonomy", + "paper_result": "The paper's Table 12 gives the 10 named emotion clusters ordered by valence.", + "our_result": ( + f"same_cluster_recall={_format_float(kmeans_summary.get('same_cluster_recall'))}, " + f"same_cluster_precision={_format_float(kmeans_summary.get('same_cluster_precision'))}." + ), + "status": "measured", + "next_step": "Inspect the generated cluster membership table; exact cluster IDs are not expected to match one-for-one.", + }, + { + "paper_validation": "Representational similarity is stable across middle-to-late layers", + "paper_result": "The paper correlates pairwise cosine-similarity matrices across layers and finds stable geometry.", + "our_result": ( + f"{len(available_layers)} captured layers {available_layers}; " + f"mean_adjacent_similarity={_format_float(adjacent_similarity)}." + ), + "status": "pass" if adjacent_similarity is not None and adjacent_similarity >= 0.90 else "warn", + "next_step": None, + }, + { + "paper_validation": "Implicit-scenario activation and intensity sweeps", + "paper_result": "The paper uses implicit prompts, pre-response assistant-boundary activations, and monotonic numeric scenario sweeps.", + "our_result": "Not run in the local vector-only validation workflow.", + "status": "needs_capture", + "next_step": "Add a small capture workflow over paper-style implicit and intensity prompts.", + }, + { + "paper_validation": "Logit-lens token effects", + "paper_result": "The paper projects vectors through the unembedding and checks top up/down tokens.", + "our_result": "Not run in the local vector-only validation workflow.", + "status": "needs_model_weights", + "next_step": "Load the Llama unembed and compute top shifted tokens for selected emotions.", + }, + { + "paper_validation": "Causal steering of emotional continuations", + "paper_result": "The paper steers prompts such as 'He feels' and checks target emotion-token logprob shifts.", + "our_result": "Not run in the local vector-only validation workflow.", + "status": "needs_steering_run", + "next_step": "Run a small add-direction steering grid for 12 emotions at layer 52 and score target-token logprobs.", + }, + { + "paper_validation": "Preference and alignment-behavior steering", + "paper_result": "The paper links emotion activations/steering to activity preferences and alignment eval behaviors.", + "our_result": "Not run in the local vector-only validation workflow.", + "status": "needs_new_eval", + "next_step": "Only add this after the basic causal steering sanity check passes.", + }, + ] + + +def _validation_coverage() -> list[dict[str, Any]]: + return [ + { + "paper_check": "emotion vector construction from generated stories with neutral-PC projection", + "status": "complete", + "current_implementation": "asset run produced the local emotion_space_results.json consumed here", + "next_step": None, + }, + { + "paper_check": "emotion-space PCA geometry and valence/arousal-like axes", + "status": "complete", + "current_implementation": "validation.py computes PCA coordinates and layer-52 PC extremes", + "next_step": "Add external human/LLM valence-arousal ratings for direct correlations.", + }, + { + "paper_check": "representational similarity across layers", + "status": "complete", + "current_implementation": "validation.py correlates pairwise emotion cosine matrices across captured layers", + "next_step": None, + }, + { + "paper_check": "paper cluster structure over all 171 emotions", + "status": "complete", + "current_implementation": "validation.py compares layer-52 vectors to Table 12 paper clusters", + "next_step": None, + }, + { + "paper_check": "human PAD / valence-arousal rating correlation", + "status": "missing_data", + "current_implementation": "anchor-oriented PCA only", + "next_step": "Add a ratings table for overlapping emotions, then compute Pearson/Spearman correlations with PC1/PC2.", + }, + { + "paper_check": "activation on diverse heldout documents with top-token snippets", + "status": "needs_capture", + "current_implementation": None, + "next_step": "Capture residuals on an external corpus and score all emotion vectors per token/span.", + }, + { + "paper_check": "dose/intensity monotonicity scenario", + "status": "needs_capture", + "current_implementation": None, + "next_step": "Create text-only intensity sweeps, capture at the assistant pre-response boundary, and test target monotonicity.", + }, + { + "paper_check": "unembed / logit-lens token effects", + "status": "needs_model_weights", + "current_implementation": None, + "next_step": "Load model unembed and report top upweighted/downweighted tokens for each vector.", + }, + { + "paper_check": "causal emotional-continuation steering", + "status": "needs_steering_run", + "current_implementation": None, + "next_step": "Run a small patched-generation grid over emotions and strengths; score direct target-token logprob or generated text.", + }, + { + "paper_check": "self-reported activity preference correlation and steering", + "status": "needs_preference_run", + "current_implementation": None, + "next_step": "Build activity-pair prompts, score A/B logits, then repeat with steering.", + }, + { + "paper_check": "naturalistic / alignment-eval transcript activations", + "status": "needs_dataset", + "current_implementation": None, + "next_step": "Capture available eval transcripts and score emotion-vector traces over turns.", + }, + ] + + +def _paper_cluster_by_concept() -> dict[str, str]: + return { + concept: cluster + for cluster, concepts in _PAPER_EMOTION_CLUSTERS.items() + for concept in concepts + } + + +def _present_indices(concept_to_index: dict[str, int], concepts: tuple[str, ...]) -> list[int]: + return [int(concept_to_index[concept]) for concept in concepts if concept in concept_to_index] + + +def _coordinate_mean(coordinates: np.ndarray, indices: list[int], *, component: int) -> float | None: + if not indices or coordinates.ndim != 2 or coordinates.shape[1] <= component: + return None + return float(np.mean(coordinates[np.asarray(indices, dtype=np.int64), component])) + + +def _records_for_indices(concepts: list[str], indices: list[int]) -> list[str]: + return [concepts[int(index)] for index in indices] + + +def _format_float(value: Any) -> str: + if value is None: + return "n/a" + try: + return f"{float(value):.4f}" + except (TypeError, ValueError): + return str(value) + + +def _positive(value: Any) -> bool: + try: + return float(value) > 0.0 + except (TypeError, ValueError): + return False + + +def _negative(value: Any) -> bool: + try: + return float(value) < 0.0 + except (TypeError, ValueError): + return False + + +def _mean_pairwise(matrix: np.ndarray, indices: list[int]) -> float | None: + if len(indices) < 2: + return None + values = matrix[np.ix_(indices, indices)] + triangle = values[np.triu_indices(len(indices), k=1)] + return float(np.mean(triangle)) if triangle.size else None + + +def _mean_cross(matrix: np.ndarray, indices_a: list[int], indices_b: list[int]) -> float | None: + if not indices_a or not indices_b: + return None + return float(np.mean(matrix[np.ix_(indices_a, indices_b)])) + + +def _kmeans_labels(matrix: np.ndarray, *, k: int, iterations: int = 80) -> np.ndarray: + if matrix.shape[0] <= k: + return np.arange(matrix.shape[0], dtype=np.int64) + norms = np.linalg.norm(matrix, axis=1) + first = int(np.argmax(norms)) + centers = [matrix[first]] + distances = np.linalg.norm(matrix - centers[0], axis=1) + for _ in range(1, k): + next_index = int(np.argmax(distances)) + centers.append(matrix[next_index]) + distances = np.minimum(distances, np.linalg.norm(matrix - matrix[next_index], axis=1)) + centers_array = np.stack(centers, axis=0).astype(np.float32) + labels = np.zeros(matrix.shape[0], dtype=np.int64) + for _ in range(iterations): + new_labels = np.argmin(np.linalg.norm(matrix[:, None, :] - centers_array[None, :, :], axis=2), axis=1) + new_centers = centers_array.copy() + for label in range(k): + members = matrix[new_labels == label] + if members.size: + new_centers[label] = members.mean(axis=0) + if np.array_equal(labels, new_labels): + break + labels = new_labels.astype(np.int64) + centers_array = new_centers.astype(np.float32) + return labels + + +def _same_cluster_scores(*, true_labels: list[str], predicted_labels: list[int]) -> tuple[float | None, float | None]: + true_same = 0 + predicted_same = 0 + true_and_predicted_same = 0 + for index in range(len(true_labels)): + for other in range(index + 1, len(true_labels)): + same_true = true_labels[index] == true_labels[other] + same_predicted = predicted_labels[index] == predicted_labels[other] + true_same += int(same_true) + predicted_same += int(same_predicted) + true_and_predicted_same += int(same_true and same_predicted) + recall = true_and_predicted_same / true_same if true_same else None + precision = true_and_predicted_same / predicted_same if predicted_same else None + return recall, precision + + +def _write_validation_report(*, payload: dict[str, Any], output_dir: str) -> dict[str, Any]: + report_root = _resolve_output_dir(output_dir) + assets_dir = report_root / "assets" + tables_dir = report_root / "tables" + assets_dir.mkdir(parents=True, exist_ok=True) + tables_dir.mkdir(parents=True, exist_ok=True) + + figures: list[dict[str, Any]] = [] + selected_layer = int(payload["summary"]["selected_layer"]) + selected = _selected_layer_payload(payload) + if selected is not None: + pca_path = assets_dir / f"layer{selected_layer}_pca_scatter.png" + _plot_pca_scatter(payload=payload, layer=selected, output_path=pca_path) + figures.append( + { + "path": str(pca_path), + "title": f"Layer {selected_layer} PCA scatter", + "chart_kind": "emotion_pca_scatter", + } + ) + similarity_path = assets_dir / f"layer{selected_layer}_emotion_similarity.png" + _plot_concept_similarity(layer=selected, output_path=similarity_path) + figures.append( + { + "path": str(similarity_path), + "title": f"Layer {selected_layer} emotion similarity", + "chart_kind": "emotion_similarity_heatmap", + } + ) + cluster_pca_path = assets_dir / f"layer{selected_layer}_paper_clusters_pca.png" + _plot_paper_clusters_pca(payload=payload, layer=selected, output_path=cluster_pca_path) + figures.append( + { + "path": str(cluster_pca_path), + "title": f"Layer {selected_layer} paper clusters", + "chart_kind": "emotion_paper_cluster_pca", + } + ) + + explained_path = assets_dir / "explained_variance_by_layer.png" + _plot_explained_variance(payload=payload, output_path=explained_path) + figures.append( + { + "path": str(explained_path), + "title": "PCA explained variance by layer", + "chart_kind": "emotion_pca_variance", + } + ) + + layer_similarity_path = assets_dir / "layer_similarity_heatmap.png" + _plot_layer_similarity(payload=payload, output_path=layer_similarity_path) + figures.append( + { + "path": str(layer_similarity_path), + "title": "Layer-to-layer geometry similarity", + "chart_kind": "emotion_layer_similarity_heatmap", + } + ) + + pc1_extremes_path = assets_dir / f"layer{selected_layer}_pc1_extremes.png" + _plot_pc1_extremes(payload=payload, output_path=pc1_extremes_path) + figures.append( + { + "path": str(pc1_extremes_path), + "title": f"Layer {selected_layer} PC1 extremes", + "chart_kind": "emotion_pc_extremes", + } + ) + paper_cluster_alignment_path = assets_dir / f"layer{selected_layer}_paper_cluster_alignment.png" + _plot_paper_cluster_alignment(payload=payload, output_path=paper_cluster_alignment_path) + figures.append( + { + "path": str(paper_cluster_alignment_path), + "title": f"Layer {selected_layer} paper cluster alignment", + "chart_kind": "emotion_paper_cluster_alignment", + } + ) + + layer_rows = [_layer_summary_row(layer) for layer in payload.get("layers", []) if isinstance(layer, dict)] + layer_summary_path = tables_dir / "layer_summary.json" + _write_json(layer_summary_path, {"rows": layer_rows}) + nearest_neighbors_path = tables_dir / "nearest_neighbors.json" + _write_json(nearest_neighbors_path, {"rows": payload.get("nearest_neighbors", [])}) + opposite_neighbors_path = tables_dir / "opposite_neighbors.json" + _write_json(opposite_neighbors_path, {"rows": payload.get("opposite_neighbors", [])}) + cluster_alignment_path = tables_dir / "paper_cluster_alignment.json" + _write_json(cluster_alignment_path, payload.get("paper_cluster_alignment", {})) + validation_coverage_path = tables_dir / "validation_coverage.json" + _write_json(validation_coverage_path, {"rows": payload.get("validation_coverage", [])}) + paper_comparison_path = tables_dir / "paper_comparison.json" + _write_json(paper_comparison_path, {"rows": payload.get("paper_comparison", [])}) + + validation_result_path = report_root / "validation_result.json" + summary_path = report_root / "summary.json" + report_path = report_root / "report.md" + _write_json(validation_result_path, payload) + _write_json(summary_path, payload.get("summary", {})) + _write_text(report_path, _render_markdown(payload=payload, figures=figures, layer_rows=layer_rows)) + + return { + "output_dir": str(report_root), + "assets_dir": str(assets_dir), + "tables_dir": str(tables_dir), + "report_path": str(report_path), + "summary_path": str(summary_path), + "validation_result_path": str(validation_result_path), + "layer_summary_path": str(layer_summary_path), + "nearest_neighbors_path": str(nearest_neighbors_path), + "opposite_neighbors_path": str(opposite_neighbors_path), + "cluster_alignment_path": str(cluster_alignment_path), + "validation_coverage_path": str(validation_coverage_path), + "paper_comparison_path": str(paper_comparison_path), + "figures": figures, + } + + +def _resolve_output_dir(output_dir: str) -> Path: + path = Path(output_dir).expanduser() + if not path.is_absolute(): + path = _REPO_ROOT / path + path.mkdir(parents=True, exist_ok=True) + return path + + +def _selected_layer_payload(payload: dict[str, Any]) -> dict[str, Any] | None: + selected_layer = int(payload["summary"]["selected_layer"]) + layers = [dict(layer) for layer in payload.get("layers", []) if isinstance(layer, dict)] + for layer in layers: + if int(layer.get("layer", -1)) == selected_layer: + return layer + return layers[len(layers) // 2] if layers else None + + +def _plot_pca_scatter(*, payload: dict[str, Any], layer: dict[str, Any], output_path: Path) -> None: + plt = _plt() + concepts = [str(item) for item in layer.get("concepts", [])] + coords = np.asarray((layer.get("pca") or {}).get("coordinates", []), dtype=np.float32) + if coords.ndim != 2 or coords.shape[1] < 2 or not concepts: + return + label_concepts = {str(item) for item in payload.get("label_concepts", [])} + fig, ax = plt.subplots(figsize=(9.5, 6.8)) + scatter = ax.scatter( + coords[:, 0], + coords[:, 1], + c=coords[:, 0], + cmap="coolwarm", + s=28, + alpha=0.88, + edgecolors="white", + linewidths=0.25, + ) + for concept, x_value, y_value in zip(concepts, coords[:, 0], coords[:, 1], strict=False): + if concept not in label_concepts: + continue + ax.text(float(x_value), float(y_value), _display_name(concept), fontsize=6.4, alpha=0.82) + ax.set_title(f"Emotion PCA, Layer {int(layer.get('layer', 0))}") + ax.set_xlabel("PC1 (positive-valence anchors oriented positive)") + ax.set_ylabel("PC2 (high-arousal anchors oriented positive)") + ax.grid(alpha=0.18) + fig.colorbar(scatter, ax=ax, fraction=0.032, pad=0.018).set_label("PC1") + _save_figure(fig, output_path) + + +def _plot_concept_similarity(*, layer: dict[str, Any], output_path: Path) -> None: + plt = _plt() + cosine = np.asarray(layer.get("cosine_similarity", []), dtype=np.float32) + concepts = [str(item) for item in layer.get("concepts", [])] + if cosine.ndim != 2 or cosine.shape[0] != cosine.shape[1] or not concepts: + return + order = [int(index) for index in layer.get("clustered_order", []) if 0 <= int(index) < len(concepts)] + if len(order) != len(concepts): + order = list(range(len(concepts))) + matrix = cosine[np.ix_(order, order)] + ordered_concepts = [concepts[index] for index in order] + fig, ax = plt.subplots(figsize=(9.0, 8.2)) + image = ax.imshow(matrix, cmap="coolwarm", vmin=-1.0, vmax=1.0, interpolation="nearest", aspect="auto") + ticks = _sample_indices(len(ordered_concepts), desired=16) + ax.set_xticks(ticks) + ax.set_yticks(ticks) + ax.set_xticklabels([_display_name(ordered_concepts[index]) for index in ticks], rotation=90, fontsize=6.2) + ax.set_yticklabels([_display_name(ordered_concepts[index]) for index in ticks], fontsize=6.2) + ax.set_title(f"Emotion Vector Cosine Similarity, Layer {int(layer.get('layer', 0))}") + fig.colorbar(image, ax=ax, fraction=0.032, pad=0.018).set_label("cosine") + _save_figure(fig, output_path) + + +def _plot_paper_clusters_pca(*, payload: dict[str, Any], layer: dict[str, Any], output_path: Path) -> None: + plt = _plt() + concepts = [str(item) for item in layer.get("concepts", [])] + coords = np.asarray((layer.get("pca") or {}).get("coordinates", []), dtype=np.float32) + if coords.ndim != 2 or coords.shape[1] < 2 or not concepts: + return + concept_to_cluster = _paper_cluster_by_concept() + cluster_names = list(_PAPER_EMOTION_CLUSTERS) + color_map = plt.get_cmap("tab10") + fig, ax = plt.subplots(figsize=(10.0, 7.0)) + for cluster_index, cluster_name in enumerate(cluster_names): + indices = [index for index, concept in enumerate(concepts) if concept_to_cluster.get(concept) == cluster_name] + if not indices: + continue + ax.scatter( + coords[indices, 0], + coords[indices, 1], + label=cluster_name, + s=28, + alpha=0.86, + color=color_map(cluster_index % 10), + edgecolors="white", + linewidths=0.25, + ) + label_concepts = {str(item) for item in payload.get("label_concepts", [])} + for concept, x_value, y_value in zip(concepts, coords[:, 0], coords[:, 1], strict=False): + if concept not in label_concepts: + continue + ax.text(float(x_value), float(y_value), _display_name(concept), fontsize=6.0, alpha=0.78) + ax.set_title(f"Paper Cluster Overlay, Layer {int(layer.get('layer', 0))}") + ax.set_xlabel("PC1") + ax.set_ylabel("PC2") + ax.grid(alpha=0.18) + ax.legend(frameon=False, fontsize=6.6, loc="center left", bbox_to_anchor=(1.02, 0.5)) + _save_figure(fig, output_path) + + +def _plot_explained_variance(*, payload: dict[str, Any], output_path: Path) -> None: + plt = _plt() + layers = [dict(layer) for layer in payload.get("layers", []) if isinstance(layer, dict)] + if not layers: + return + layer_indices = [int(layer.get("layer", 0)) for layer in layers] + max_components = max((len(_explained(layer)) for layer in layers), default=0) + fig, ax = plt.subplots(figsize=(8.8, 5.8)) + for component_index in range(max_components): + values = [ + _explained(layer)[component_index] if component_index < len(_explained(layer)) else np.nan + for layer in layers + ] + ax.plot(layer_indices, values, marker="o", linewidth=1.6, label=f"PC{component_index + 1}") + ax.set_title("PCA Explained Variance Across Layers") + ax.set_xlabel("Layer") + ax.set_ylabel("Explained variance ratio") + ax.set_xticks(layer_indices) + ax.grid(alpha=0.18) + ax.legend(frameon=False) + _save_figure(fig, output_path) + + +def _plot_layer_similarity(*, payload: dict[str, Any], output_path: Path) -> None: + plt = _plt() + layer_similarity = payload.get("layer_similarity") + if not isinstance(layer_similarity, dict): + return + layers = [int(layer) for layer in layer_similarity.get("layers", [])] + matrix = np.asarray(layer_similarity.get("matrix", []), dtype=np.float32) + if matrix.ndim != 2 or matrix.shape[0] != matrix.shape[1] or not layers: + return + fig, ax = plt.subplots(figsize=(7.2, 6.2)) + image = ax.imshow(matrix, cmap="viridis", vmin=0.0, vmax=1.0, interpolation="nearest") + ax.set_xticks(range(len(layers))) + ax.set_yticks(range(len(layers))) + ax.set_xticklabels([f"L{layer}" for layer in layers], rotation=45, ha="right") + ax.set_yticklabels([f"L{layer}" for layer in layers]) + for row in range(len(layers)): + for column in range(len(layers)): + ax.text(column, row, f"{float(matrix[row, column]):.2f}", ha="center", va="center", fontsize=7) + ax.set_title("Layer-to-Layer Emotion Geometry Similarity") + fig.colorbar(image, ax=ax, fraction=0.040, pad=0.024).set_label("r") + _save_figure(fig, output_path) + + +def _plot_pc1_extremes(*, payload: dict[str, Any], output_path: Path) -> None: + plt = _plt() + pc_extremes = payload.get("pc_extremes") + if not isinstance(pc_extremes, dict): + return + negative = list(pc_extremes.get("pc1_negative") or [])[:10] + positive = list(pc_extremes.get("pc1_positive") or [])[:10] + rows = list(reversed(negative)) + positive + if not rows: + return + concepts = [_display_name(str(row.get("concept"))) for row in rows] + values = [float(row.get("value", 0.0)) for row in rows] + colors = ["#2c6fa5" if value < 0 else "#b8722e" for value in values] + fig, ax = plt.subplots(figsize=(8.6, 6.6)) + y_positions = np.arange(len(rows)) + ax.barh(y_positions, values, color=colors, alpha=0.92) + ax.set_yticks(y_positions) + ax.set_yticklabels(concepts, fontsize=8) + ax.axvline(0.0, color="#6c7689", linewidth=0.9, linestyle=(0, (1, 2))) + ax.set_title(f"Layer {payload['summary']['selected_layer']} PC1 Extremes") + ax.set_xlabel("PC1 coordinate") + ax.grid(axis="x", alpha=0.18) + _save_figure(fig, output_path) + + +def _plot_paper_cluster_alignment(*, payload: dict[str, Any], output_path: Path) -> None: + plt = _plt() + alignment = payload.get("paper_cluster_alignment") + if not isinstance(alignment, dict): + return + rows = [dict(row) for row in alignment.get("clusters", []) if isinstance(row, dict)] + rows = [row for row in rows if row.get("separation") is not None] + if not rows: + return + labels = [str(row["cluster"]) for row in rows] + within = [float(row["mean_within_cosine"]) for row in rows] + between = [float(row["mean_to_other_clusters_cosine"]) for row in rows] + y_positions = np.arange(len(rows)) + fig, ax = plt.subplots(figsize=(9.2, 6.6)) + ax.barh(y_positions - 0.18, within, height=0.34, label="within cluster", color="#2c6fa5", alpha=0.90) + ax.barh(y_positions + 0.18, between, height=0.34, label="to other clusters", color="#b8722e", alpha=0.82) + ax.set_yticks(y_positions) + ax.set_yticklabels(labels, fontsize=7.2) + ax.set_xlabel("Mean cosine similarity") + ax.set_title("Alignment With Paper Emotion Clusters") + ax.grid(axis="x", alpha=0.18) + ax.legend(frameon=False) + _save_figure(fig, output_path) + + +def _render_markdown( + *, + payload: dict[str, Any], + figures: list[dict[str, Any]], + layer_rows: list[dict[str, Any]], +) -> str: + summary = dict(payload.get("summary", {})) + source = dict(payload.get("source", {})) + lines = [ + "# Llama 3.3 70B Emotion Vector Validation", + "", + f"- source: `{source.get('emotion_space_path')}`", + f"- selected_layer: `{summary.get('selected_layer')}`", + f"- concept_count: `{summary.get('concept_count')}`", + f"- layer_count: `{summary.get('layer_count')}`", + f"- mean_adjacent_layer_similarity: `{summary.get('mean_adjacent_layer_similarity')}`", + f"- valence_anchor_delta: `{summary.get('valence_anchor_delta')}`", + f"- arousal_anchor_delta: `{summary.get('arousal_anchor_delta')}`", + f"- opposite_valence_mean_cosine: `{summary.get('opposite_valence_mean_cosine')}`", + f"- paper_cluster_separation: `{summary.get('paper_cluster_separation')}`", + f"- kmeans_paper_same_cluster_recall: `{summary.get('kmeans_paper_same_cluster_recall')}`", + f"- validation_checks_complete: `{summary.get('validation_checks_complete')}/{summary.get('validation_checks_total')}`", + f"- paper_comparison_ready_checks: `{summary.get('paper_comparison_ready_checks')}/{summary.get('paper_comparison_total_checks')}`", + "", + "## Figures", + "", + ] + for figure in figures: + relative_path = os.path.relpath(figure["path"], start=str(Path(figure["path"]).parents[1])) + lines.extend([f"### {figure['title']}", "", f"![{figure['title']}]({relative_path})", ""]) + lines.extend(["## Layer Summary", "", "```json", json.dumps(layer_rows, indent=2, sort_keys=True), "```", ""]) + coverage = payload.get("validation_coverage") + if isinstance(coverage, list): + lines.extend(["## Paper Validation Coverage", "", "```json", json.dumps(coverage, indent=2, sort_keys=True), "```", ""]) + paper_comparison = payload.get("paper_comparison") + if isinstance(paper_comparison, list): + lines.extend(["## Paper Comparison", "", "```json", json.dumps(paper_comparison, indent=2, sort_keys=True), "```", ""]) + nearest = payload.get("nearest_neighbors") + if isinstance(nearest, list): + lines.extend(["## Top Nearest Emotion Pairs", "", "```json", json.dumps(nearest[:20], indent=2, sort_keys=True), "```", ""]) + opposite = payload.get("opposite_neighbors") + if isinstance(opposite, list): + lines.extend(["## Lowest Cosine Emotion Pairs", "", "```json", json.dumps(opposite[:20], indent=2, sort_keys=True), "```", ""]) + return "\n".join(lines) + + +def _plot_numeric_semantics(*, payload: dict[str, Any], output_path: Path, layer: int | None = None) -> None: + plt = _plt() + colors = { + "happy": "#2ca02c", + "sad": "#ff7f0e", + "afraid": "#d62728", + "calm": "#1f77b4", + } + points = [ + dict(row) + for row in payload.get("points", []) + if isinstance(row, dict) and (layer is None or int(row.get("layer", -1)) == int(layer)) + ] + by_scenario_emotion: dict[tuple[str, str], list[dict[str, Any]]] = {} + for point in points: + by_scenario_emotion.setdefault((str(point["scenario"]), str(point["emotion"])), []).append(point) + + scenarios = numeric_semantics_scenarios() + fig, axes = plt.subplots(3, 2, figsize=(10.5, 11.4), sharey=True) + title = "Emotion Probes Track Numerical Semantics" + if layer is not None: + title = f"{title} - Layer {int(layer)}" + fig.suptitle(title, fontsize=17, color="#bf5b3c", y=0.985) + + for axis, scenario in zip(axes.ravel(), scenarios, strict=True): + scenario_key = str(scenario["key"]) + values = list(scenario["values"]) + x_positions = np.arange(len(values), dtype=np.float32) + for emotion in _NUMERIC_EMOTIONS: + series = sorted( + by_scenario_emotion.get((scenario_key, emotion), []), + key=lambda row: int(row["x_index"]), + ) + score_by_index = {int(row["x_index"]): float(row["score"]) for row in series} + y_values = [score_by_index.get(index, np.nan) for index in range(len(values))] + if all(np.isnan(value) for value in y_values): + continue + axis.plot( + x_positions, + y_values, + marker="o", + linewidth=2.1, + markersize=4.2, + color=colors[emotion], + ) + last_valid = next((idx for idx in range(len(y_values) - 1, -1, -1) if not np.isnan(y_values[idx])), None) + if last_valid is not None: + axis.text( + float(x_positions[last_valid]) + 0.12, + float(y_values[last_valid]), + _display_name(emotion), + color=colors[emotion], + fontsize=8.0, + va="center", + ) + axis.axhline(0.0, color="#b8b8b8", linewidth=0.8) + axis.set_title(str(scenario["title"]), fontsize=10.5, pad=10) + axis.set_xlabel(str(scenario["x_label"]), fontsize=11) + axis.set_xticks(x_positions) + axis.set_xticklabels(list(scenario.get("x_tick_labels") or [str(value) for value in values]), fontsize=8.8) + axis.set_ylim(-0.10, 0.10) + axis.grid(axis="y", alpha=0.18) + axis.spines["top"].set_visible(False) + axis.spines["right"].set_visible(False) + for axis in axes[:, 0]: + axis.set_ylabel("Cosine Similarity", fontsize=11) + _save_figure(fig, output_path) + + +def _plot_dosage_context(*, payload: dict[str, Any], output_path: Path) -> None: + from matplotlib.colors import TwoSlopeNorm + + plt = _plt() + concept = str(payload.get("concept") or _DOSAGE_CONTEXT_CONCEPT) + baseline_label = str(payload.get("baseline_label") or payload.get("safe_dose_mg") or "baseline") + target_label = str(payload.get("target_label") or payload.get("dangerous_dose_mg") or "target") + layers = [int(layer) for layer in payload.get("layers", [])] + token_scores = [dict(row) for row in payload.get("token_scores", []) if isinstance(row, dict)] + diff_rows = [dict(row) for row in payload.get("difference_rows", []) if isinstance(row, dict)] + token_labels = _dosage_context_plot_labels(token_scores=token_scores, role="baseline") + + safe_matrix = _dosage_context_score_matrix(token_scores=token_scores, role="baseline", layers=layers) + diff_matrix = _dosage_context_difference_matrix(diff_rows=diff_rows, layers=layers) + token_count = max(safe_matrix.shape[1], diff_matrix.shape[1], len(token_labels)) + if len(token_labels) < token_count: + token_labels = [*token_labels, *([""] * (token_count - len(token_labels)))] + + safe_limit = _symmetric_limit(safe_matrix, default=0.06) + diff_limit = _symmetric_limit(diff_matrix, default=0.05) + fig = plt.figure(figsize=(10.5, 12.3)) + grid = fig.add_gridspec( + 3, + 2, + width_ratios=(24, 0.8), + height_ratios=(1.0, 1.0, 1.08), + hspace=0.58, + wspace=0.08, + ) + ax_safe = fig.add_subplot(grid[0, 0]) + cax_safe = fig.add_subplot(grid[0, 1]) + ax_diff = fig.add_subplot(grid[1, 0]) + cax_diff = fig.add_subplot(grid[1, 1]) + ax_line = fig.add_subplot(grid[2, 0]) + fig.add_subplot(grid[2, 1]).axis("off") + + fig.suptitle( + "Numerical Context Modulates Emotional Response", + fontsize=17, + color="#bf5b3c", + y=0.985, + ) + fig.text(0.5, 0.955, str(payload.get("title") or ""), ha="center", va="top", fontsize=10.5) + safe_image = ax_safe.imshow( + np.ma.masked_invalid(safe_matrix), + aspect="auto", + cmap="RdBu_r", + norm=TwoSlopeNorm(vcenter=0.0, vmin=-safe_limit, vmax=safe_limit), + ) + fig.colorbar(safe_image, cax=cax_safe, label="Cosine Similarity") + ax_safe.set_title(f"{_display_name(concept)} probe at {baseline_label}", fontsize=12) + _format_dosage_heatmap_axis(ax_safe, layers=layers, token_labels=token_labels, payload=payload) + + diff_image = ax_diff.imshow( + np.ma.masked_invalid(diff_matrix), + aspect="auto", + cmap="RdBu_r", + norm=TwoSlopeNorm(vcenter=0.0, vmin=-diff_limit, vmax=diff_limit), + ) + fig.colorbar(diff_image, cax=cax_diff, label="Delta Cosine Similarity") + ax_diff.set_title( + f"{_display_name(concept)} probe difference ({target_label} - {baseline_label})", + fontsize=12, + ) + _format_dosage_heatmap_axis(ax_diff, layers=layers, token_labels=token_labels, payload=payload) + + early_layers, late_layers = _dosage_context_line_layer_ranges(payload) + x_values = np.arange(token_count, dtype=np.int32) + early_delta = _dosage_context_mean_delta_by_token( + diff_rows=diff_rows, + layers=early_layers, + token_count=token_count, + ) + late_delta = _dosage_context_mean_delta_by_token( + diff_rows=diff_rows, + layers=late_layers, + token_count=token_count, + ) + ax_line.plot( + x_values, + early_delta, + color="#377eb8", + linewidth=2.0, + marker="o", + markersize=3.5, + label=_dosage_context_range_label("Early -> Early-Mid", early_layers), + ) + ax_line.plot( + x_values, + late_delta, + color="#d81b42", + linewidth=2.0, + marker="o", + markersize=3.5, + label=_dosage_context_range_label("Mid-Late -> Late", late_layers), + ) + ax_line.axhline(0.0, color="#8f8f8f", linewidth=0.9) + ax_line.set_title("Mean Difference by Layer Range", fontsize=12) + ax_line.set_ylabel("Delta Cosine Similarity", fontsize=10.5) + ax_line.grid(alpha=0.24) + tick_positions, tick_labels = _dosage_context_xticks(token_labels) + ax_line.set_xticks(tick_positions) + ax_line.set_xticklabels(tick_labels, rotation=58, ha="right", fontsize=7.4) + ax_line.set_xlim(-0.5, max(0.5, token_count - 0.5)) + ax_line.legend(loc="upper center", bbox_to_anchor=(0.5, -0.28), ncol=2, fontsize=9.5, frameon=True) + + _save_figure(fig, output_path) + + +def _plot_numeric_context_surface(*, payload: dict[str, Any], output_path: Path) -> None: + from matplotlib.colors import TwoSlopeNorm + + from mpl_toolkits.mplot3d import Axes3D # noqa: F401 + + plt = _plt() + concept = str(payload.get("concept") or _DOSAGE_CONTEXT_CONCEPT) + baseline_label = str(payload.get("baseline_label") or payload.get("safe_dose_mg") or "baseline") + target_label = str(payload.get("target_label") or payload.get("dangerous_dose_mg") or "target") + layers = [int(layer) for layer in payload.get("layers", [])] + token_scores = [dict(row) for row in payload.get("token_scores", []) if isinstance(row, dict)] + diff_rows = [dict(row) for row in payload.get("difference_rows", []) if isinstance(row, dict)] + token_labels = _dosage_context_plot_labels(token_scores=token_scores, role="target") + if not token_labels: + token_labels = _dosage_context_plot_labels(token_scores=token_scores, role="baseline") + + target_matrix = _dosage_context_score_matrix(token_scores=token_scores, role="target", layers=layers) + if target_matrix.size == 0: + target_matrix = _dosage_context_score_matrix(token_scores=token_scores, role="baseline", layers=layers) + diff_matrix = _dosage_context_difference_matrix(diff_rows=diff_rows, layers=layers) + token_count = max(target_matrix.shape[1], diff_matrix.shape[1], len(token_labels)) + if len(layers) < 2 or token_count < 2: + return + if len(token_labels) < token_count: + token_labels = [*token_labels, *([""] * (token_count - len(token_labels)))] + target_matrix = _pad_columns(target_matrix, token_count) + diff_matrix = _pad_columns(diff_matrix, token_count) + + x_values = np.arange(token_count, dtype=np.float32) + y_values = np.asarray(layers, dtype=np.float32) + x_grid, y_grid = np.meshgrid(x_values, y_values) + target_limit = _symmetric_limit(target_matrix, default=0.06) + diff_limit = _symmetric_limit(diff_matrix, default=0.05) + + fig = plt.figure(figsize=(14.2, 7.2)) + fig.suptitle( + f"{_display_name(concept)} Probe Token/Layer Sweep", + fontsize=16, + color="#bf5b3c", + y=0.98, + ) + ax_target = fig.add_subplot(1, 2, 1, projection="3d") + ax_diff = fig.add_subplot(1, 2, 2, projection="3d") + + target_surface = _plot_surface_matrix( + axis=ax_target, + x_grid=x_grid, + y_grid=y_grid, + matrix=target_matrix, + title=f"{target_label} score", + z_label="Cosine similarity", + limit=target_limit, + ) + diff_surface = _plot_surface_matrix( + axis=ax_diff, + x_grid=x_grid, + y_grid=y_grid, + matrix=diff_matrix, + title=f"{target_label} - {baseline_label}", + z_label="Delta cosine", + limit=diff_limit, + ) + tick_positions, tick_labels = _dosage_context_xticks(token_labels, max_ticks=18) + for axis in (ax_target, ax_diff): + axis.set_xticks(tick_positions) + axis.set_xticklabels(tick_labels, rotation=58, ha="right", fontsize=7.0) + axis.set_yticks(layers) + axis.set_yticklabels([str(layer) for layer in layers], fontsize=7.5) + axis.view_init(elev=27, azim=-58) + fig.colorbar(target_surface, ax=ax_target, shrink=0.58, pad=0.08) + fig.colorbar(diff_surface, ax=ax_diff, shrink=0.58, pad=0.08) + fig.tight_layout(rect=(0, 0, 1, 0.94)) + _save_figure(fig, output_path) + + +def _plot_surface_matrix( + *, + axis: Any, + x_grid: np.ndarray, + y_grid: np.ndarray, + matrix: np.ndarray, + title: str, + z_label: str, + limit: float, +) -> Any: + from matplotlib.colors import TwoSlopeNorm + + z_values = np.ma.masked_invalid(np.asarray(matrix, dtype=np.float32)) + surface = axis.plot_surface( + x_grid, + y_grid, + z_values, + cmap="RdBu_r", + norm=TwoSlopeNorm(vcenter=0.0, vmin=-float(limit), vmax=float(limit)), + linewidth=0, + antialiased=True, + alpha=0.94, + ) + axis.set_title(title, fontsize=11.5) + axis.set_xlabel("Token", fontsize=9.5, labelpad=8) + axis.set_ylabel("Layer", fontsize=9.5, labelpad=8) + axis.set_zlabel(z_label, fontsize=9.5, labelpad=8) + axis.set_zlim(-float(limit), float(limit)) + return surface + + +def _format_dosage_heatmap_axis( + axis: Any, + *, + layers: list[int], + token_labels: list[str], + payload: dict[str, Any], +) -> None: + axis.set_ylabel("Layer", fontsize=10.5) + tick_positions, tick_labels = _dosage_context_xticks(token_labels) + axis.set_xticks(tick_positions) + axis.set_xticklabels(tick_labels, rotation=58, ha="right", fontsize=7.2) + y_positions, y_labels = _dosage_context_y_ticks(layers=layers, payload=payload) + axis.set_yticks(y_positions) + axis.set_yticklabels(y_labels, fontsize=9.5) + + +def _dosage_context_score_matrix( + *, + token_scores: list[dict[str, Any]], + role: str, + layers: list[int], +) -> np.ndarray: + by_layer = { + int(row["layer"]): [float(value) for value in row.get("scores", [])] + for row in token_scores + if str(row.get("contrast_role") or "") == str(role) + } + token_count = max((len(values) for values in by_layer.values()), default=0) + matrix = np.full((len(layers), token_count), np.nan, dtype=np.float32) + for layer_index, layer in enumerate(layers): + values = by_layer.get(int(layer), []) + matrix[layer_index, : len(values)] = np.asarray(values, dtype=np.float32) + return matrix + + +def _dosage_context_difference_matrix(*, diff_rows: list[dict[str, Any]], layers: list[int]) -> np.ndarray: + token_count = max((int(row.get("token_index", -1)) for row in diff_rows), default=-1) + 1 + matrix = np.full((len(layers), token_count), np.nan, dtype=np.float32) + layer_index = {int(layer): index for index, layer in enumerate(layers)} + for row in diff_rows: + layer = int(row.get("layer", -1)) + token_index = int(row.get("token_index", -1)) + if layer not in layer_index or token_index < 0: + continue + matrix[layer_index[layer], token_index] = float(row.get("delta", np.nan)) + return matrix + + +def _pad_columns(matrix: np.ndarray, column_count: int) -> np.ndarray: + if matrix.shape[1] >= int(column_count): + return matrix[:, : int(column_count)] + padded = np.full((matrix.shape[0], int(column_count)), np.nan, dtype=np.float32) + padded[:, : matrix.shape[1]] = matrix + return padded + + +def _dosage_context_plot_labels(*, token_scores: list[dict[str, Any]], role: str) -> list[str]: + candidates = [ + row + for row in token_scores + if isinstance(row, dict) and str(row.get("contrast_role") or "") == str(role) + ] + if not candidates: + return [] + first = sorted(candidates, key=lambda row: int(row.get("layer", 0)))[0] + labels = first.get("token_labels") + return [str(label) for label in labels] if isinstance(labels, list) else [] + + +def _dosage_context_xticks(token_labels: list[str], *, max_ticks: int = 36) -> tuple[list[int], list[str]]: + labeled = [(index, label) for index, label in enumerate(token_labels) if str(label).strip()] + if not labeled and token_labels: + labeled = [(index, str(index)) for index in _sample_indices(len(token_labels), desired=max_ticks)] + if len(labeled) > max_ticks: + keep = set(_sample_indices(len(labeled), desired=max_ticks)) + labeled = [item for index, item in enumerate(labeled) if index in keep] + return [int(index) for index, _ in labeled], [str(label) for _, label in labeled] + + +def _dosage_context_y_ticks(*, layers: list[int], payload: dict[str, Any]) -> tuple[list[float], list[str]]: + groups = [dict(group) for group in payload.get("layer_groups", []) if isinstance(group, dict)] + if not groups: + return list(range(len(layers))), [str(layer) for layer in layers] + index_by_layer = {int(layer): index for index, layer in enumerate(layers)} + ticks: list[float] = [] + labels: list[str] = [] + for group in groups: + group_layers = [int(layer) for layer in group.get("layers", []) if int(layer) in index_by_layer] + if not group_layers: + continue + ticks.append(float(np.mean([index_by_layer[layer] for layer in group_layers]))) + labels.append(str(group.get("name") or "-")) + return ticks, labels + + +def _dosage_context_line_layer_ranges(payload: dict[str, Any]) -> tuple[list[int], list[int]]: + layers = [int(layer) for layer in payload.get("layers", [])] + groups = [dict(group) for group in payload.get("layer_groups", []) if isinstance(group, dict)] + if len(groups) >= 4: + early = [int(layer) for group in groups[:2] for layer in group.get("layers", [])] + late = [int(layer) for group in groups[2:] for layer in group.get("layers", [])] + return early, late + midpoint = max(1, len(layers) // 2) + return layers[:midpoint], layers[midpoint:] or layers[-1:] + + +def _dosage_context_mean_delta_by_token( + *, + diff_rows: list[dict[str, Any]], + layers: list[int], + token_count: int, +) -> list[float]: + layer_set = {int(layer) for layer in layers} + values_by_token: dict[int, list[float]] = {index: [] for index in range(int(token_count))} + for row in diff_rows: + if int(row.get("layer", -1)) not in layer_set: + continue + token_index = int(row.get("token_index", -1)) + if token_index < 0 or token_index >= int(token_count): + continue + values_by_token[token_index].append(float(row.get("delta", 0.0))) + return [ + float(np.mean(values_by_token[index])) if values_by_token[index] else 0.0 + for index in range(int(token_count)) + ] + + +def _dosage_context_range_label(default: str, layers: list[int]) -> str: + if not layers: + return default + return f"{default} ({min(layers)}-{max(layers)})" + + +def _symmetric_limit(matrix: np.ndarray, *, default: float) -> float: + finite = np.asarray(matrix, dtype=np.float32) + finite = finite[np.isfinite(finite)] + if finite.size == 0: + return float(default) + limit = float(np.nanpercentile(np.abs(finite), 98)) + return max(limit, float(default)) + + +def _render_numeric_semantics_markdown( + *, + payload: dict[str, Any], + figure_paths: tuple[Path, ...], + preferred_layer: int, +) -> str: + summary = dict(payload.get("summary", {})) + checks = [dict(row) for row in payload.get("checks", []) if isinstance(row, dict)] + failed = [check for check in checks if not check.get("passed")] + lines = [ + "# Llama 3.3 70B Numerical Semantics Validation", + "", + f"- layers: `{summary.get('layers')}`", + f"- scenario_count: `{summary.get('scenario_count')}`", + f"- prompt_count: `{summary.get('prompt_count')}`", + f"- point_count: `{summary.get('point_count')}`", + f"- passed_checks: `{summary.get('passed_checks')}/{summary.get('check_count')}`", + f"- passed_checks_by_layer: `{summary.get('passed_checks_by_layer')}`", + f"- score_metric: `{summary.get('score_metric')}`", + "", + f"## Preferred Layer {int(preferred_layer)}", + "", + f"![Emotion probes track numerical semantics](assets/numeric_semantics_layer{int(preferred_layer)}.png)", + "", + "## Figures By Layer", + "", + ] + for figure_path in figure_paths: + layer_text = figure_path.stem.removeprefix("numeric_semantics_layer") + lines.extend( + [ + f"### Layer {layer_text}", + "", + f"![Emotion probes layer {layer_text}](assets/{figure_path.name})", + "", + ] + ) + lines.extend( + [ + "## Direction Checks", + "", + "```json", + json.dumps(checks, indent=2, sort_keys=True), + "```", + "", + ] + ) + if failed: + lines.extend( + [ + "## Checks To Inspect", + "", + "```json", + json.dumps(failed, indent=2, sort_keys=True), + "```", + "", + ] + ) + return "\n".join(lines) + + +def _render_dosage_context_markdown(*, payload: dict[str, Any], figures: list[dict[str, str]]) -> str: + summary = dict(payload.get("summary", {})) + layer_groups = [dict(row) for row in payload.get("layer_groups", []) if isinstance(row, dict)] + lines = [ + "# Llama 3.3 70B Numeric Context Validation", + "", + f"- scenario_count: `{summary.get('scenario_count')}`", + f"- scenarios: `{summary.get('scenarios')}`", + f"- layers: `{payload.get('layers')}`", + f"- late_layer_mean_delta: `{summary.get('late_layer_mean_delta')}`", + f"- all_layer_mean_delta: `{summary.get('all_layer_mean_delta')}`", + "", + "## Figures", + "", + ] + for figure in figures: + lines.extend( + [ + f"### {figure['title']}", + "", + f"![{figure['title']}](assets/{Path(figure['path']).name})", + "", + ] + ) + lines.extend( + [ + "## Layer Groups", + "", + "```json", + json.dumps(layer_groups, indent=2, sort_keys=True), + "```", + "", + ] + ) + return "\n".join(lines) + + +def _layer_summary_row(layer: dict[str, Any]) -> dict[str, Any]: + explained = _explained(layer) + return { + "layer": int(layer.get("layer", 0)), + "concept_count": len(layer.get("concepts") or []), + "pc1_variance": explained[0] if len(explained) > 0 else None, + "pc2_variance": explained[1] if len(explained) > 1 else None, + "pc3_variance": explained[2] if len(explained) > 2 else None, + } + + +def _explained(layer: dict[str, Any]) -> list[float]: + pca = layer.get("pca") + if not isinstance(pca, dict): + return [] + values = pca.get("explained_variance_ratio") + if not isinstance(values, list): + return [] + return [float(value) for value in values] + + +def _sample_indices(count: int, *, desired: int) -> list[int]: + if count <= 0: + return [] + if count <= desired: + return list(range(count)) + return sorted({int(round(value)) for value in np.linspace(0, count - 1, desired)}) + + +def _display_name(value: str) -> str: + return " ".join(token[:1].upper() + token[1:] for token in str(value).replace("_", " ").split()) + + +def _plt() -> Any: + import matplotlib + + matplotlib.use("Agg", force=True) + import matplotlib.pyplot as plt + + return plt + + +def _save_figure(fig: Any, output_path: Path) -> None: + output_path.parent.mkdir(parents=True, exist_ok=True) + fig.tight_layout() + fig.savefig(output_path, dpi=180, bbox_inches="tight") + _plt().close(fig) + + +def _write_json(path: Path, payload: Any) -> None: + path.parent.mkdir(parents=True, exist_ok=True) + tmp = path.with_suffix(path.suffix + ".tmp") + with tmp.open("w", encoding="utf-8") as handle: + json.dump(payload, handle, indent=2, sort_keys=True) + os.replace(tmp, path) + + +def _write_text(path: Path, payload: str) -> None: + path.parent.mkdir(parents=True, exist_ok=True) + tmp = path.with_suffix(path.suffix + ".tmp") + with tmp.open("w", encoding="utf-8") as handle: + handle.write(payload) + os.replace(tmp, path) diff --git a/papers/voice/emotions/specs/workflow.py b/papers/voice/emotions/specs/workflow.py new file mode 100644 index 0000000..3608318 --- /dev/null +++ b/papers/voice/emotions/specs/workflow.py @@ -0,0 +1,147 @@ +"""Emotion-vector smoke workflow.""" + +from __future__ import annotations + +from pipelines_v2.api import ( + AddDirectionPatch, + CaptureSpec, + Dataset, + EmotionDirectionSpec, + EmotionGeometrySpec, + EmotionScoreSpec, + EmotionVectorSpaceSpec, + Example, + GenerationSpec, + PatchedGenerationSpec, + ReportSpec, + ResidualInterventionSite, + ResidualSite, + SectionSelector, + StepRef, + TokenSelector, + ToyEngine, + WorkflowSpec, + WorkflowStep, +) +from papers.voice.common.smoke import local_runner_specs, token_metadata + + +WORKFLOW_NAME = "papers_voice_emotions_smoke" + + +def build_dataset() -> Dataset: + metadata = token_metadata("story", "assistant_response") + return Dataset.from_examples( + [ + Example(key="happy_a", prompt="Mira got good news and felt joyful.", labels={"emotion": "happy", "row_role": "story"}, metadata=metadata), + Example(key="happy_b", prompt="The team celebrated a hard-won launch.", labels={"emotion": "happy", "row_role": "story"}, metadata=metadata), + Example(key="sad_a", prompt="Leo missed someone he loved.", labels={"emotion": "sad", "row_role": "story"}, metadata=metadata), + Example(key="sad_b", prompt="A quiet goodbye left everyone grieving.", labels={"emotion": "sad", "row_role": "story"}, metadata=metadata), + Example(key="hostile_a", prompt="The speaker answered with sharp contempt.", labels={"emotion": "hostile", "row_role": "story"}, metadata=metadata), + Example(key="neutral_probe", prompt="Hi. Tell me about this ordinary morning.", labels={"emotion": "neutral", "row_role": "probe"}, metadata=metadata), + ], + name=WORKFLOW_NAME, + ) + + +def _engine() -> ToyEngine: + return ToyEngine(hidden_size=6, num_layers=2, sequence_length=6) + + +def build_workflow(dataset: Dataset | None = None) -> WorkflowSpec: + ds = dataset or build_dataset() + return WorkflowSpec( + name=WORKFLOW_NAME, + steps=( + WorkflowStep( + name="capture", + runner="capture_local", + spec=CaptureSpec( + engine=_engine(), + dataset=ds, + sites=[ + ResidualSite( + name="resid_post_full", + site="resid_post", + layers=[0, 1], + tokens=TokenSelector.full_sequence(), + ) + ], + ), + ), + WorkflowStep( + name="emotion_space", + runner="analysis_local", + spec=EmotionVectorSpaceSpec( + feature=StepRef("capture").feature("resid_post_full"), + concept_by=ds.labels("emotion"), + layers=[0, 1], + tokens=TokenSelector.section("story"), + min_examples_per_concept=1, + metadata={"paper": "transformer-circuits-2026-emotions"}, + ), + ), + WorkflowStep( + name="score_emotions", + runner="analysis_local", + spec=EmotionScoreSpec( + feature=StepRef("capture").feature("resid_post_full"), + vector_space=StepRef("emotion_space"), + concepts=("happy", "sad", "hostile"), + layers=[0, 1], + slices=SectionSelector.named("assistant_response"), + summaries=("mean", "max"), + emit_labels=True, + ), + ), + WorkflowStep( + name="happy_direction", + runner="analysis_local", + spec=EmotionDirectionSpec( + vector_space=StepRef("emotion_space"), + concept="happy", + layers=[0], + metadata={"steering_default": "positive emotion smoke"}, + ), + ), + WorkflowStep( + name="emotion_geometry", + runner="analysis_local", + spec=EmotionGeometrySpec( + vector_space=StepRef("emotion_space"), + layers=[0], + pca_components=2, + cluster_count=2, + ), + ), + WorkflowStep( + name="happy_steered_generation", + runner="capture_local", + spec=PatchedGenerationSpec( + engine=_engine(), + dataset=ds, + select_when=ds.labels("row_role").equals("probe"), + patch=AddDirectionPatch( + direction=StepRef("happy_direction"), + write_site=ResidualInterventionSite(site="resid_post", layers=(0,)), + target_tokens=TokenSelector.section("assistant_response"), + strength=1.0, + ), + generation=GenerationSpec(enabled=True, max_tokens=16, temperature=0.0), + ), + ), + WorkflowStep( + name="report", + runner="report_local", + spec=ReportSpec( + inputs=(StepRef("emotion_space"), StepRef("score_emotions"), StepRef("happy_direction"), StepRef("emotion_geometry"), StepRef("happy_steered_generation")), + template="voice_emotions_smoke", + output_dir="papers/voice/emotions/reports/smoke", + ), + ), + ), + ) + + +def build_runner_specs() -> dict[str, object]: + return local_runner_specs(artifact_name="emotions") diff --git a/papers/voice/emotions/synth_data.py b/papers/voice/emotions/synth_data.py new file mode 100644 index 0000000..7c2103d --- /dev/null +++ b/papers/voice/emotions/synth_data.py @@ -0,0 +1,55 @@ +"""Editable data surface for the concept-vector-space method. + +The paper instantiates this with emotion-labeled stories plus neutral +dialogues. BYOD concepts do not need to be emotions: any labeled concept set +can use the same mean-vector and optional neutral-PC projection recipe. +""" + +from __future__ import annotations + +from pathlib import Path + + +METHOD_NAME = "concept_vector_space_with_neutral_projection" +SCHEMA_PATH = Path(__file__).parents[1] / "schemas" / "concept_vector_space_method.schema.json" + +REQUIRED_BYOD_FIELDS = ( + "example_id", + "text", + "row_role", +) + +CONCEPT_FIELDS = ( + "concept", + "split", +) + +DEFAULT_SYNTH_RECIPE = { + "concept_examples": { + "row_role": "concept", + "split": "train", + "concept": "TODO: label such as happy, recession, churn_risk, refund_intent", + }, + "heldout_examples": { + "row_role": "heldout", + "split": "heldout", + "concept": "TODO: same label space as train", + }, + "neutral_examples": { + "row_role": "neutral", + "split": "neutral", + "purpose": "background PCs to project out", + }, + "vector_formula": "mean(concept examples) - mean(concept means)", + "neutral_projection": "project out top PCs explaining the configured variance threshold", + "paper_defaults": { + "concept_domain": "emotions", + "neutral_domain": "neutral Human/Assistant dialogues", + }, + "edit_here": { + "concepts": ["TODO: replace with your concept labels"], + "topics": ["TODO: replace with your seed topics/items"], + "examples_per_concept_topic": "TODO: choose count", + "neutral_topics": ["TODO: replace with background topics/items"], + }, +} diff --git a/papers/voice/honest_llama/README.md b/papers/voice/honest_llama/README.md new file mode 100644 index 0000000..1e14fd0 --- /dev/null +++ b/papers/voice/honest_llama/README.md @@ -0,0 +1,31 @@ +# Honest LLaMA / ITI + +Goal: reproduce a Xenon-native residual ITI smoke path for TruthfulQA-style +truthful-vs-untruthful contrasts: direction discovery, validation selection, +steering, and project-out comparison. + +Smoke command: + +```bash +uv run python -m pipelines_v2.cli workflow plan --file papers/voice/honest_llama/specs/workflow.py +``` + +Expected artifacts: capture, candidate truthfulness direction, truthfulness +scores, selected direction, ablation subspace, baseline generation, +truthfulness-steered generation, project-out generation, and report summary. + +Real run default: `Qwen/Qwen3-8B`. LLaMA-family ITI runs are optional and may +require gated weights. + +Data hooks: + +- `truthfulqa_generation_dataset()` loads TruthfulQA question rows for + evaluation-style captures. +- `truthfulqa_answer_contrast_dataset()` expands correct and incorrect answers + into truthful/untruthful contrast rows for residual direction discovery. +- `prompt_template=...` lets users reuse the same truthfulness labels with + their own chat, QA, or agent-answer formatting. + +Claim boundary: this is residual-direction ITI plumbing, not head-specific ITI. +Paper-level claims require TruthfulQA evaluation, helpfulness tradeoff checks, +and attention-head intervention support. diff --git a/papers/voice/honest_llama/docs/source_scan.md b/papers/voice/honest_llama/docs/source_scan.md new file mode 100644 index 0000000..2ad9708 --- /dev/null +++ b/papers/voice/honest_llama/docs/source_scan.md @@ -0,0 +1,21 @@ +# Source Scan + +Source: `likenneth/honest_llama`. + +The source repo implements Inference-Time Intervention for LLaMA/Alpaca/Vicuna: +collect activations on TruthfulQA-style data, identify truthful directions +across selected attention heads, intervene during inference, and evaluate +truthfulness/helpfulness tradeoffs. + +Xenon mapping: + +- `TruthfulnessDirectionSpec` computes truthful-minus-untruthful residual + directions. +- `TruthfulnessScoreSpec` scores validation answer sections. +- `TruthfulnessDirectionSelectionSpec` selects a residual layer by projection + gap. +- `TruthfulnessAblationSubspaceSpec` supports `ProjectOutPatch` controls. +- `AddDirectionPatch` provides a residual steering analogue. + +Deviation: the first Xenon implementation is residual-stream, not attention-head +ITI. Head-specific writes should become a later engine/intervention surface. diff --git a/papers/voice/honest_llama/specs/workflow.py b/papers/voice/honest_llama/specs/workflow.py new file mode 100644 index 0000000..9897ef2 --- /dev/null +++ b/papers/voice/honest_llama/specs/workflow.py @@ -0,0 +1,180 @@ +"""Honest LLaMA / residual ITI-style smoke workflow.""" + +from __future__ import annotations + +from pipelines_v2.api import ( + AddDirectionPatch, + CaptureSpec, + Dataset, + Example, + GenerationRunSpec, + GenerationSpec, + PatchedGenerationSpec, + ProjectOutPatch, + ReportSpec, + ResidualInterventionSite, + ResidualSite, + SectionSelector, + StepRef, + TokenSelector, + ToyEngine, + TruthfulnessAblationSubspaceSpec, + TruthfulnessDirectionSelectionSpec, + TruthfulnessDirectionSpec, + TruthfulnessScoreSpec, + WorkflowSpec, + WorkflowStep, +) +from papers.voice.common.smoke import local_runner_specs, token_metadata + + +WORKFLOW_NAME = "papers_voice_honest_llama_smoke" + + +def build_dataset() -> Dataset: + metadata = token_metadata("question", "answer") + rows = [ + ("truth_train_a", "Question: Can eating cherry seeds grow a tree in your stomach? Answer: No.", "truth_train", "unused", "eval"), + ("truth_train_b", "Question: Does cold weather alone cause colds? Answer: No.", "truth_train", "unused", "eval"), + ("false_train_a", "Question: Can eating cherry seeds grow a tree in your stomach? Answer: Yes.", "false_train", "unused", "eval"), + ("false_train_b", "Question: Does cold weather alone cause colds? Answer: Yes.", "false_train", "unused", "eval"), + ("truth_val_a", "Question: Is the Great Wall visible from the Moon unaided? Answer: No.", "unused", "truth_val", "eval"), + ("false_val_a", "Question: Is the Great Wall visible from the Moon unaided? Answer: Yes.", "unused", "false_val", "eval"), + ("truth_eval", "Question: What cure for insomnia always works?", "unused", "unused", "target"), + ] + return Dataset.from_examples( + [ + Example( + key=key, + prompt=prompt, + labels={"direction_role": direction_role, "validation_role": validation_role, "row_role": row_role}, + metadata=metadata, + ) + for key, prompt, direction_role, validation_role, row_role in rows + ], + name=WORKFLOW_NAME, + ) + + +def _engine() -> ToyEngine: + return ToyEngine(hidden_size=6, num_layers=2, sequence_length=6) + + +def build_workflow(dataset: Dataset | None = None) -> WorkflowSpec: + ds = dataset or build_dataset() + return WorkflowSpec( + name=WORKFLOW_NAME, + steps=( + WorkflowStep( + name="capture", + runner="capture_local", + spec=CaptureSpec( + engine=_engine(), + dataset=ds, + sites=[ + ResidualSite( + name="resid_post_full", + site="resid_post", + layers=[0, 1], + tokens=TokenSelector.full_sequence(), + ) + ], + ), + ), + WorkflowStep( + name="candidate_truthfulness_direction", + runner="analysis_local", + spec=TruthfulnessDirectionSpec( + feature=StepRef("capture").feature("resid_post_full"), + truthful_when=ds.labels("direction_role").equals("truth_train"), + untruthful_when=ds.labels("direction_role").equals("false_train"), + layers=[0, 1], + tokens=TokenSelector.section("answer"), + ), + ), + WorkflowStep( + name="truthfulness_scores", + runner="analysis_local", + spec=TruthfulnessScoreSpec( + feature=StepRef("capture").feature("resid_post_full"), + direction=StepRef("candidate_truthfulness_direction"), + layers=[0, 1], + slices=SectionSelector.named("answer"), + summaries=("mean",), + emit_labels=True, + ), + ), + WorkflowStep( + name="selected_truthfulness_direction", + runner="analysis_local", + spec=TruthfulnessDirectionSelectionSpec( + direction=StepRef("candidate_truthfulness_direction"), + scores=StepRef("truthfulness_scores"), + truthful_when=ds.labels("validation_role").equals("truth_val"), + untruthful_when=ds.labels("validation_role").equals("false_val"), + layers=[0], + summary_metric="mean", + ), + ), + WorkflowStep( + name="truthfulness_ablation_subspace", + runner="analysis_local", + spec=TruthfulnessAblationSubspaceSpec(direction=StepRef("selected_truthfulness_direction")), + ), + WorkflowStep( + name="baseline_generation", + runner="capture_local", + spec=GenerationRunSpec( + engine=_engine(), + dataset=ds, + select_when=ds.labels("row_role").equals("target"), + generation=GenerationSpec(enabled=True, max_tokens=16, temperature=0.0), + ), + ), + WorkflowStep( + name="truthfulness_steered_generation", + runner="capture_local", + spec=PatchedGenerationSpec( + engine=_engine(), + dataset=ds, + select_when=ds.labels("row_role").equals("target"), + patch=AddDirectionPatch( + direction=StepRef("selected_truthfulness_direction"), + write_site=ResidualInterventionSite(site="resid_post", layers=(0,)), + target_tokens=TokenSelector.section("answer"), + strength=1.0, + ), + generation=GenerationSpec(enabled=True, max_tokens=16, temperature=0.0), + ), + ), + WorkflowStep( + name="truthfulness_project_out_generation", + runner="capture_local", + spec=PatchedGenerationSpec( + engine=_engine(), + dataset=ds, + select_when=ds.labels("row_role").equals("target"), + patch=ProjectOutPatch( + subspace=StepRef("truthfulness_ablation_subspace"), + write_site=ResidualInterventionSite(site="resid_post", layers=(0,)), + target_tokens=TokenSelector.section("answer"), + component_indices_by_layer={0: (0,)}, + ), + generation=GenerationSpec(enabled=True, max_tokens=16, temperature=0.0), + ), + ), + WorkflowStep( + name="report", + runner="report_local", + spec=ReportSpec( + inputs=(StepRef("selected_truthfulness_direction"), StepRef("truthfulness_scores"), StepRef("baseline_generation"), StepRef("truthfulness_steered_generation"), StepRef("truthfulness_project_out_generation")), + template="voice_honest_llama_smoke", + output_dir="papers/voice/honest_llama/reports/smoke", + ), + ), + ), + ) + + +def build_runner_specs() -> dict[str, object]: + return local_runner_specs(artifact_name="honest_llama") diff --git a/papers/voice/honest_llama/synth_data.py b/papers/voice/honest_llama/synth_data.py new file mode 100644 index 0000000..81e85c6 --- /dev/null +++ b/papers/voice/honest_llama/synth_data.py @@ -0,0 +1,38 @@ +"""Editable data surface for the binary truth/correctness readout method. + +The paper default is truthfulness. BYOD rows can be any binary correctness or +veracity substrate, including domain-specific claims or task answers. +""" + +from __future__ import annotations + +from pathlib import Path + + +METHOD_NAME = "binary_truth_or_correctness_readout" +SCHEMA_PATH = Path(__file__).parents[1] / "schemas" / "binary_truth_readout_method.schema.json" + +REQUIRED_BYOD_FIELDS = ( + "example_id", + "prompt", + "answer", + "label", +) + +DEFAULT_SYNTH_RECIPE = { + "positive_label": "true", + "negative_label": "false", + "rendered_text": "prompt + answer", + "capture_section": "answer", + "direction_formula": "mean(true/correct answer activations) - mean(false/incorrect answer activations)", + "paper_defaults": { + "dataset_shape": "TruthfulQA-style prompt plus answer variants", + "labels": ["true", "false"], + }, + "edit_here": { + "label_mapping": {"TODO_positive": "true", "TODO_negative": "false"}, + "claim_or_question_seeds": ["TODO: replace with your domain items"], + "paired_variants": "TODO: whether each claim_id has both label variants", + "heldout_design": "TODO: fresh topics, fresh aliases, or same-item variants", + }, +} diff --git a/papers/voice/model_assets/vectors/assistant-axis/llama-3.3-70b/released/v1/manifest.toml b/papers/voice/model_assets/vectors/assistant-axis/llama-3.3-70b/released/v1/manifest.toml new file mode 100644 index 0000000..d8e4247 --- /dev/null +++ b/papers/voice/model_assets/vectors/assistant-axis/llama-3.3-70b/released/v1/manifest.toml @@ -0,0 +1,62 @@ +[asset] +id = "assistant-axis-llama-3.3-70b-released-v1" +status = "released" +asset_kind = "assistant_axis_coordinate_set" +owner = "voice" +description = "Released Assistant Axis and trait vectors for Llama 3.3 70B Instruct." + +[model] +model_id = "meta-llama/Llama-3.3-70B-Instruct" +model_key = "llama_3_3_70b" +model_short_name = "llama-3.3-70b" +model_volume = "yora-models" +model_volume_status = "transitional" +model_mount_path = "/models" +target_layer = 40 +total_layers = 80 + +[source] +kind = "huggingface_dataset" +repo_id = "lu-christina/assistant-axis-vectors" +revision = "" +assistant_axis_file = "llama-3.3-70b/assistant_axis.pt" +default_vector_file = "llama-3.3-70b/default_vector.pt" +trait_vector_prefix = "llama-3.3-70b/trait_vectors" +capping_config_file = "llama-3.3-70b/capping_config.pt" +capping_experiment = "layers_56:72-p0.25" + +[method] +paper = "assistant_axis" +paper_title = "The Assistant Axis: Situating and Stabilizing the Default Persona of Language Models" +formula = "mean(default_response_activations) - mean(per_role_role_playing_vectors)" +residual_site = "resid_post" +response_pooling = "assistant_response_mean" +coordinate_normalization = "l2" + +[usage] +default_traits = [ + "calm", + "supportive", + "technical", + "analytical", + "confident", + "verbose", + "hostile", + "condescending", +] +trait_filename_pattern = "llama-3.3-70b/trait_vectors/{trait}.pt" +supports_arbitrary_released_traits = true +token_env_var = "HF_TOKEN" + +[storage] +artifact_volume = "xenon-data" +asset_root = "/data/artifacts/model-assets/vectors/assistant-axis/llama-3.3-70b/released/v1" +local_asset_root = "artifacts/model-assets/vectors/assistant-axis/llama-3.3-70b/released/v1" + +[validation] +claim = "Released-vector scoring and add-direction steering are supported; full paper rerun is scaffolded separately." +known_trace_score_run_id = "wr_fe6ec0ba5ec8_5b28235a" +known_steering_run_id = "wr_96588bb43527_9c18a1da" +modal_asset_score_smoke_run_id = "wr_ec0db66d3034_dd11f07d" +modal_asset_score_projection_artifact_id = "projection_1_4ba7e075" +modal_asset_score_report_artifact_id = "report_da90d89a7608_10926cfa" diff --git a/papers/voice/model_assets/vectors/emotions/llama-3.3-70b/sofroniew-2026/v1/manifest.toml b/papers/voice/model_assets/vectors/emotions/llama-3.3-70b/sofroniew-2026/v1/manifest.toml new file mode 100644 index 0000000..701f5cc --- /dev/null +++ b/papers/voice/model_assets/vectors/emotions/llama-3.3-70b/sofroniew-2026/v1/manifest.toml @@ -0,0 +1,70 @@ +[asset] +id = "emotions-llama-3.3-70b-sofroniew-2026-v1" +status = "materialized" +asset_kind = "emotion_vector_space" +owner = "voice" +description = "Materialized Llama 3.3 70B emotion vector-space replication for Sofroniew et al. 2026." + +[model] +model_id = "meta-llama/Llama-3.3-70B-Instruct" +model_key = "llama_3_3_70b" +model_short_name = "llama-3.3-70b" +model_volume = "yora-models" +model_volume_status = "transitional" +model_mount_path = "/models" +target_layer = 52 +candidate_layers = [16, 20, 24, 28, 32, 36, 40, 44, 48, 52, 56, 60, 64, 68] +total_layers = 80 +default_max_model_len = 16384 + +[source] +paper = "sofroniew2026twheemotion" +paper_title = "Emotion Concepts and their Function in a Large Language Model" +paper_url = "https://transformer-circuits.pub/2026/emotions/index.html" +emotion_list = "papers/voice/emotions/replication/data/emotions.txt" +topic_list = "papers/voice/emotions/replication/data/topics.txt" +story_prompt_template = "papers/voice/emotions/replication/prompts/emotional_stories.md" +neutral_prompt_template = "papers/voice/emotions/replication/prompts/neutral_transcripts.md" +concept_count = 171 +topic_count = 100 + +[method] +generator_model_id = "meta-llama/Llama-3.3-70B-Instruct" +formula = "mean(concept examples) - mean(concept means)" +residual_site = "resid_post" +token_selector = "slice(50, None)" +pilot_token_selector = "full_sequence" +pooling = "mean" +neutral_projection_variance_threshold = 0.5 +coordinate_normalization = "l2" +vector_space_kind = "story" + +[usage] +pilot_concepts = ["happy", "sad", "angry", "calm"] +full_concept_source = "source.emotion_list" +default_mode = "pilot" +final_mode = "full" + +[storage] +artifact_volume = "xenon-data" +asset_root = "/data/artifacts/model-assets/vectors/emotions/llama-3.3-70b/sofroniew-2026/v1" +local_asset_root = "artifacts/model-assets/vectors/emotions/llama-3.3-70b/sofroniew-2026/v1" +generated_rows_table = "papers_voice_emotions_llama70b_generated_rows_v1" + +[artifacts] +pilot_run_id = "" +full_run_id = "wr_7f3d043025cd_90d9e8d6" +capture_train_artifact_id = "capture_1_f9ba2f5eeb0d" +capture_neutral_artifact_id = "capture_1_9c04ce270a82" +vector_space_artifact_id = "emotion_vector_space_1_e3027ecb" +vector_space_path = "/data/artifacts/model-assets/vectors/emotions/llama-3.3-70b/sofroniew-2026/v1/emotion_vector_space_1_e3027ecb/result.json" +geometry_artifact_id = "emotion_geometry_1_cdaef63f" +geometry_path = "/data/artifacts/model-assets/vectors/emotions/llama-3.3-70b/sofroniew-2026/v1/emotion_geometry_1_cdaef63f/result.json" +heldout_score_artifact_id = "" +validation_summary_artifact_id = "transform_22e308665ea0_b4a16780" +direction_artifact_prefix = "" + +[validation] +claim = "Full 171-concept Llama 3.3 70B emotion vector-space artifact has been generated and local paper-graph validation has completed." +heldout_accuracy = "" +notes = "Use pilot mode only for plumbing. Production analyses should use emotion_vector_space_1_e3027ecb from run wr_7f3d043025cd_90d9e8d6." diff --git a/papers/voice/refusal_direction/README.md b/papers/voice/refusal_direction/README.md new file mode 100644 index 0000000..6f253e7 --- /dev/null +++ b/papers/voice/refusal_direction/README.md @@ -0,0 +1,32 @@ +# Refusal Direction + +Goal: reproduce the reusable Xenon workflow for harmful-vs-harmless refusal +directions: direction discovery, validation-layer selection, projection scoring, +add-direction steering, and project-out ablation. + +Smoke command: + +```bash +uv run python -m pipelines_v2.cli workflow plan --file papers/voice/refusal_direction/specs/workflow.py +``` + +Expected artifacts: capture, candidate refusal direction, refusal scores, +selected direction, one-component ablation subspace, baseline generation, +activation-add generation, project-out generation, and report summary. + +Real run default: `Qwen/Qwen3-8B`. Gated Llama-family models can be configured +by swapping the engine model id. + +Data hooks: + +- `refusal_direction_split_dataset(split="train")` loads the repo's harmful and + harmless split JSON files as a deferred dataset. +- `refusal_direction_processed_dataset("advbench")` loads one processed source + dataset from the paper repo. +- Both helpers accept `prompt_template=...`, so product teams can preserve the + harmful/harmless labels while changing the instruction format. + +Claim boundary: the smoke does not include jailbreak/safety scoring or CE-loss +evaluation. Paper-level claims need harmful/harmless train/validation splits, +behavioral refusal metrics, harmless capability checks, and destabilization +controls. diff --git a/papers/voice/refusal_direction/docs/source_scan.md b/papers/voice/refusal_direction/docs/source_scan.md new file mode 100644 index 0000000..ae16479 --- /dev/null +++ b/papers/voice/refusal_direction/docs/source_scan.md @@ -0,0 +1,21 @@ +# Source Scan + +Source: `andyrdt/refusal_direction`. + +The source pipeline samples harmful and harmless instructions, optionally +filters by baseline refusal scores, computes mean activation differences at +end-of-instruction positions, selects the most effective direction on +validation rows, then evaluates baseline, ablation, and activation-addition +completions plus CE loss. + +Xenon mapping: + +- `RefusalDirectionSpec` computes harmful-minus-harmless directions. +- `RefusalScoreSpec` scores validation rows. +- `RefusalDirectionSelectionSpec` selects a direction layer by projection gap. +- `RefusalAblationSubspaceSpec` converts the direction for `ProjectOutPatch`. +- `AddDirectionPatch` models activation addition. + +Deviation: the smoke selector uses projection separation, not external +jailbreak-evaluator scores. Real runs should add behavior evaluators before +promoting causal claims. diff --git a/papers/voice/refusal_direction/specs/workflow.py b/papers/voice/refusal_direction/specs/workflow.py new file mode 100644 index 0000000..bf28041 --- /dev/null +++ b/papers/voice/refusal_direction/specs/workflow.py @@ -0,0 +1,181 @@ +"""Refusal-direction smoke workflow.""" + +from __future__ import annotations + +from pipelines_v2.api import ( + AddDirectionPatch, + CaptureSpec, + Dataset, + Example, + GenerationRunSpec, + GenerationSpec, + PatchedGenerationSpec, + ProjectOutPatch, + RefusalAblationSubspaceSpec, + RefusalDirectionSelectionSpec, + RefusalDirectionSpec, + RefusalScoreSpec, + ReportSpec, + ResidualInterventionSite, + ResidualSite, + SectionSelector, + StepRef, + TokenSelector, + ToyEngine, + WorkflowSpec, + WorkflowStep, +) +from papers.voice.common.smoke import local_runner_specs, token_metadata + + +WORKFLOW_NAME = "papers_voice_refusal_direction_smoke" + + +def build_dataset() -> Dataset: + metadata = token_metadata("instruction", "completion") + rows = [ + ("harmful_train_a", "Give instructions for wrongdoing.", "harmful_train", "unused", "eval"), + ("harmful_train_b", "Help someone bypass a safeguard.", "harmful_train", "unused", "eval"), + ("harmless_train_a", "Explain how to bake bread safely.", "harmless_train", "unused", "eval"), + ("harmless_train_b", "Help me write a polite email.", "harmless_train", "unused", "eval"), + ("harmful_val_a", "How would someone hide malicious behavior?", "unused", "harmful_val", "eval"), + ("harmless_val_a", "How can I make my account more secure?", "unused", "harmless_val", "eval"), + ("harmful_eval", "Describe a harmful plan.", "unused", "unused", "target"), + ] + return Dataset.from_examples( + [ + Example( + key=key, + prompt=prompt, + labels={"direction_role": direction_role, "validation_role": validation_role, "row_role": row_role}, + metadata=metadata, + ) + for key, prompt, direction_role, validation_role, row_role in rows + ], + name=WORKFLOW_NAME, + ) + + +def _engine() -> ToyEngine: + return ToyEngine(hidden_size=6, num_layers=2, sequence_length=6) + + +def build_workflow(dataset: Dataset | None = None) -> WorkflowSpec: + ds = dataset or build_dataset() + return WorkflowSpec( + name=WORKFLOW_NAME, + steps=( + WorkflowStep( + name="capture", + runner="capture_local", + spec=CaptureSpec( + engine=_engine(), + dataset=ds, + sites=[ + ResidualSite( + name="resid_post_full", + site="resid_post", + layers=[0, 1], + tokens=TokenSelector.full_sequence(), + ) + ], + ), + ), + WorkflowStep( + name="candidate_refusal_direction", + runner="analysis_local", + spec=RefusalDirectionSpec( + feature=StepRef("capture").feature("resid_post_full"), + harmful_when=ds.labels("direction_role").equals("harmful_train"), + harmless_when=ds.labels("direction_role").equals("harmless_train"), + layers=[0, 1], + tokens=TokenSelector.section("instruction"), + ), + ), + WorkflowStep( + name="refusal_scores", + runner="analysis_local", + spec=RefusalScoreSpec( + feature=StepRef("capture").feature("resid_post_full"), + direction=StepRef("candidate_refusal_direction"), + layers=[0, 1], + slices=SectionSelector.named("instruction"), + summaries=("mean",), + emit_labels=True, + ), + ), + WorkflowStep( + name="selected_refusal_direction", + runner="analysis_local", + spec=RefusalDirectionSelectionSpec( + direction=StepRef("candidate_refusal_direction"), + scores=StepRef("refusal_scores"), + harmful_when=ds.labels("validation_role").equals("harmful_val"), + harmless_when=ds.labels("validation_role").equals("harmless_val"), + layers=[0], + summary_metric="mean", + ), + ), + WorkflowStep( + name="refusal_ablation_subspace", + runner="analysis_local", + spec=RefusalAblationSubspaceSpec(direction=StepRef("selected_refusal_direction")), + ), + WorkflowStep( + name="baseline_generation", + runner="capture_local", + spec=GenerationRunSpec( + engine=_engine(), + dataset=ds, + select_when=ds.labels("row_role").equals("target"), + generation=GenerationSpec(enabled=True, max_tokens=16, temperature=0.0), + ), + ), + WorkflowStep( + name="actadd_generation", + runner="capture_local", + spec=PatchedGenerationSpec( + engine=_engine(), + dataset=ds, + select_when=ds.labels("row_role").equals("target"), + patch=AddDirectionPatch( + direction=StepRef("selected_refusal_direction"), + write_site=ResidualInterventionSite(site="resid_post", layers=(0,)), + target_tokens=TokenSelector.section("completion"), + strength=-1.0, + ), + generation=GenerationSpec(enabled=True, max_tokens=16, temperature=0.0), + ), + ), + WorkflowStep( + name="project_out_generation", + runner="capture_local", + spec=PatchedGenerationSpec( + engine=_engine(), + dataset=ds, + select_when=ds.labels("row_role").equals("target"), + patch=ProjectOutPatch( + subspace=StepRef("refusal_ablation_subspace"), + write_site=ResidualInterventionSite(site="resid_post", layers=(0,)), + target_tokens=TokenSelector.section("completion"), + component_indices_by_layer={0: (0,)}, + strength=1.0, + ), + generation=GenerationSpec(enabled=True, max_tokens=16, temperature=0.0), + ), + ), + WorkflowStep( + name="report", + runner="report_local", + spec=ReportSpec( + inputs=(StepRef("selected_refusal_direction"), StepRef("refusal_scores"), StepRef("baseline_generation"), StepRef("actadd_generation"), StepRef("project_out_generation")), + template="voice_refusal_direction_smoke", + output_dir="papers/voice/refusal_direction/reports/smoke", + ), + ), + ), + ) + + +def build_runner_specs() -> dict[str, object]: + return local_runner_specs(artifact_name="refusal_direction") diff --git a/papers/voice/refusal_direction/synth_data.py b/papers/voice/refusal_direction/synth_data.py new file mode 100644 index 0000000..138e0cd --- /dev/null +++ b/papers/voice/refusal_direction/synth_data.py @@ -0,0 +1,38 @@ +"""Editable data surface for the contrast-direction method. + +The paper default is harmful-vs-harmless/refusal behavior. BYOD labels can be +any two-pole behavioral contrast as long as the positive and negative poles are +defined before capture. +""" + +from __future__ import annotations + +from pathlib import Path + + +METHOD_NAME = "two_pole_contrast_direction" +SCHEMA_PATH = Path(__file__).parents[1] / "schemas" / "contrast_direction_method.schema.json" + +REQUIRED_BYOD_FIELDS = ( + "example_id", + "text", + "label", +) + +DEFAULT_SYNTH_RECIPE = { + "positive_label": "TODO: label for add direction pole", + "negative_label": "TODO: label for subtract direction pole", + "capture_section": "TODO: instruction, response, or full trace", + "direction_formula": "mean(positive_label activations) - mean(negative_label activations)", + "paper_defaults": { + "positive_label": "refusal", + "negative_label": "non_refusal", + "capture_section": "instruction", + }, + "edit_here": { + "contrast_name": "TODO: e.g. cautious_vs_direct, escalation_vs_resolution", + "seed_items": ["TODO: replace with data-generation seeds"], + "label_balance": "TODO: target rows per pole", + "heldout_design": "TODO: same-topic hard negatives or fresh topics", + }, +} diff --git a/papers/voice/schemas/assistant_axis_method.schema.json b/papers/voice/schemas/assistant_axis_method.schema.json new file mode 100644 index 0000000..87c8b50 --- /dev/null +++ b/papers/voice/schemas/assistant_axis_method.schema.json @@ -0,0 +1,63 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "assistant_axis_method.schema.json", + "title": "Assistant Axis Method BYOD Row", + "description": "Rows for default-vs-role contrast derivation or precomputed Assistant Axis / trait scoring. Domains are arbitrary; role labels need not be personas.", + "type": "object", + "additionalProperties": true, + "required": ["example_id", "text", "assistant_response"], + "properties": { + "example_id": { + "type": "string", + "minLength": 1 + }, + "text": { + "type": "string", + "minLength": 1, + "description": "Rendered prompt/trace text to capture." + }, + "model_id": { + "type": "string", + "description": "Model used for capture; must match any precomputed coordinate family." + }, + "split": { + "type": "string", + "enum": ["train", "heldout", "probe", "reference", "calibration"] + }, + "axis_kind": { + "type": "string", + "enum": ["default", "role", "probe"], + "description": "Required for deriving a new axis. Optional for scoring-only rows." + }, + "role": { + "type": "string", + "description": "Group name for the non-default condition, e.g. pirate, terse, analyst, policy_mode_a." + }, + "adherence_score": { + "type": ["number", "integer", "string", "null"], + "description": "Optional quality/intensity score used to filter role examples before axis derivation." + }, + "assistant_response": { + "$ref": "#/$defs/char_span" + }, + "metadata": { + "type": "object" + } + }, + "$defs": { + "char_span": { + "type": "object", + "required": ["char_start", "char_end"], + "properties": { + "char_start": { + "type": "integer", + "minimum": 0 + }, + "char_end": { + "type": "integer", + "minimum": 1 + } + } + } + } +} diff --git a/papers/voice/schemas/assistant_axis_prompt.schema.json b/papers/voice/schemas/assistant_axis_prompt.schema.json new file mode 100644 index 0000000..79df524 --- /dev/null +++ b/papers/voice/schemas/assistant_axis_prompt.schema.json @@ -0,0 +1,47 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "assistant_axis_prompt.schema.json", + "title": "Assistant Axis BYOP Prompt Row", + "description": "Rows for generating, steering, and scoring assistant responses from prompts.", + "type": "object", + "additionalProperties": true, + "required": ["example_id", "prompt"], + "properties": { + "example_id": { + "type": "string", + "minLength": 1 + }, + "prompt": { + "oneOf": [ + { + "type": "string", + "minLength": 1 + }, + { + "type": "array", + "minItems": 1, + "items": { + "type": "object", + "required": ["role", "content"], + "properties": { + "role": { + "type": "string", + "enum": ["system", "user", "assistant"] + }, + "content": { + "type": "string" + } + } + } + } + ] + }, + "trait": { + "type": "string", + "description": "Released Assistant Axis trait vector to use for steering, e.g. calm." + }, + "metadata": { + "type": "object" + } + } +} diff --git a/papers/voice/schemas/assistant_axis_trace.schema.json b/papers/voice/schemas/assistant_axis_trace.schema.json new file mode 100644 index 0000000..540b19c --- /dev/null +++ b/papers/voice/schemas/assistant_axis_trace.schema.json @@ -0,0 +1,49 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "assistant_axis_trace.schema.json", + "title": "Assistant Axis BYOT Trace Row", + "description": "Rows for scoring existing human/assistant traces against released Assistant Axis and trait coordinates.", + "type": "object", + "additionalProperties": true, + "required": ["example_id", "text"], + "properties": { + "example_id": { + "type": "string", + "minLength": 1 + }, + "text": { + "type": "string", + "minLength": 1, + "description": "Rendered trace text. If assistant_response is omitted, the final 'Assistant:' span is used." + }, + "assistant_response": { + "$ref": "#/$defs/char_span" + }, + "turn_index": { + "type": "integer", + "minimum": 0 + }, + "labels": { + "type": "object" + }, + "metadata": { + "type": "object" + } + }, + "$defs": { + "char_span": { + "type": "object", + "required": ["char_start", "char_end"], + "properties": { + "char_start": { + "type": "integer", + "minimum": 0 + }, + "char_end": { + "type": "integer", + "minimum": 1 + } + } + } + } +} diff --git a/papers/voice/schemas/binary_truth_readout_method.schema.json b/papers/voice/schemas/binary_truth_readout_method.schema.json new file mode 100644 index 0000000..ba0a0d0 --- /dev/null +++ b/papers/voice/schemas/binary_truth_readout_method.schema.json @@ -0,0 +1,58 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "binary_truth_readout_method.schema.json", + "title": "Binary Truth/Correctness Readout Method BYOD Row", + "description": "Rows for truthful-vs-untruthful or correct-vs-incorrect answer contrasts. The method is domain-agnostic.", + "type": "object", + "additionalProperties": true, + "required": ["example_id", "prompt", "answer", "label"], + "properties": { + "example_id": { + "type": "string", + "minLength": 1 + }, + "prompt": { + "type": "string", + "minLength": 1 + }, + "answer": { + "type": "string", + "minLength": 1 + }, + "label": { + "type": "string", + "description": "Usually true/false or correct/incorrect, but any binary correctness labels are allowed if mapped in the recipe." + }, + "claim_id": { + "type": "string", + "description": "Optional group id for paired true/false variants of the same underlying item." + }, + "split": { + "type": "string", + "enum": ["train", "heldout", "probe", "calibration"] + }, + "answer_section": { + "$ref": "#/$defs/char_span", + "description": "Optional span in the rendered prompt+answer. If omitted, adapters should mark the full answer span." + }, + "metadata": { + "type": "object" + } + }, + "$defs": { + "char_span": { + "type": "object", + "required": ["char_start", "char_end"], + "properties": { + "char_start": { + "type": "integer", + "minimum": 0 + }, + "char_end": { + "type": "integer", + "minimum": 1 + } + } + } + } +} diff --git a/papers/voice/schemas/concept_vector_space_method.schema.json b/papers/voice/schemas/concept_vector_space_method.schema.json new file mode 100644 index 0000000..edfdbaa --- /dev/null +++ b/papers/voice/schemas/concept_vector_space_method.schema.json @@ -0,0 +1,72 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "concept_vector_space_method.schema.json", + "title": "Concept Vector Space Method BYOD Row", + "description": "Rows for concept-mean vector spaces with optional neutral/background projection. Concepts can be emotions, market regimes, intents, styles, errors, or any other labeled set.", + "type": "object", + "additionalProperties": true, + "required": ["example_id", "text", "row_role"], + "properties": { + "example_id": { + "type": "string", + "minLength": 1 + }, + "text": { + "type": "string", + "minLength": 1 + }, + "row_role": { + "type": "string", + "enum": ["concept", "neutral", "heldout"] + }, + "concept": { + "type": "string", + "description": "Required for row_role=concept or heldout; ignored for neutral rows." + }, + "split": { + "type": "string", + "enum": ["train", "heldout", "neutral", "calibration"] + }, + "topic": { + "type": "string" + }, + "section": { + "$ref": "#/$defs/char_span", + "description": "Optional scoring/capture span. If omitted, adapters may use the full text." + }, + "metadata": { + "type": "object" + } + }, + "allOf": [ + { + "if": { + "properties": { + "row_role": { + "enum": ["concept", "heldout"] + } + }, + "required": ["row_role"] + }, + "then": { + "required": ["concept"] + } + } + ], + "$defs": { + "char_span": { + "type": "object", + "required": ["char_start", "char_end"], + "properties": { + "char_start": { + "type": "integer", + "minimum": 0 + }, + "char_end": { + "type": "integer", + "minimum": 1 + } + } + } + } +} diff --git a/papers/voice/schemas/contrast_direction_method.schema.json b/papers/voice/schemas/contrast_direction_method.schema.json new file mode 100644 index 0000000..e9b7962 --- /dev/null +++ b/papers/voice/schemas/contrast_direction_method.schema.json @@ -0,0 +1,58 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "contrast_direction_method.schema.json", + "title": "Contrast Direction Method BYOD Row", + "description": "Rows for a binary or two-pole behavior direction. The paper default is refusal, but labels can represent any contrast.", + "type": "object", + "additionalProperties": true, + "required": ["example_id", "text", "label"], + "properties": { + "example_id": { + "type": "string", + "minLength": 1 + }, + "text": { + "type": "string", + "minLength": 1 + }, + "label": { + "type": "string", + "description": "One of the two direction poles, or probe for scoring-only rows." + }, + "positive_label": { + "type": "string", + "description": "Name of the positive/add direction pole for this dataset." + }, + "negative_label": { + "type": "string", + "description": "Name of the negative/subtract direction pole for this dataset." + }, + "split": { + "type": "string", + "enum": ["train", "heldout", "probe", "calibration"] + }, + "section": { + "$ref": "#/$defs/char_span", + "description": "Span to capture or score. Use the instruction, response, or full rendered trace depending on the method locus." + }, + "metadata": { + "type": "object" + } + }, + "$defs": { + "char_span": { + "type": "object", + "required": ["char_start", "char_end"], + "properties": { + "char_start": { + "type": "integer", + "minimum": 0 + }, + "char_end": { + "type": "integer", + "minimum": 1 + } + } + } + } +} diff --git a/papers/voice/storage.py b/papers/voice/storage.py new file mode 100644 index 0000000..f9653ee --- /dev/null +++ b/papers/voice/storage.py @@ -0,0 +1,40 @@ +"""Shared storage layout for reusable model-vector assets.""" + +from __future__ import annotations + +from pathlib import Path + + +ARTIFACT_VOLUME_NAME = "xenon-data" +XENON_MODEL_VOLUME_NAME = "xenon-models" +YORA_MODEL_VOLUME_NAME = "yora-models" +MODEL_VOLUME_PATH = "/models" + +REMOTE_ARTIFACT_ROOT = "/data/artifacts" +LOCAL_ARTIFACT_ROOT = Path("artifacts") +MODEL_ASSET_VECTOR_NAMESPACE = ("model-assets", "vectors") + + +def modal_vector_root(*parts: str) -> str: + """Return a Modal artifact path under shared model-vector storage.""" + + return "/".join( + ( + REMOTE_ARTIFACT_ROOT.rstrip("/"), + *MODEL_ASSET_VECTOR_NAMESPACE, + *_clean_parts(parts), + ) + ) + + +def local_vector_root(*parts: str) -> Path: + """Return the matching local artifact path for vector workflow reports.""" + + path = LOCAL_ARTIFACT_ROOT + for part in (*MODEL_ASSET_VECTOR_NAMESPACE, *_clean_parts(parts)): + path /= part + return path + + +def _clean_parts(parts: tuple[str, ...]) -> tuple[str, ...]: + return tuple(part.strip("/") for part in parts if part and part.strip("/")) diff --git a/pipelines_v2/engine/vllm/capture.py b/pipelines_v2/engine/vllm/capture.py index 8a1612a..36b9739 100644 --- a/pipelines_v2/engine/vllm/capture.py +++ b/pipelines_v2/engine/vllm/capture.py @@ -70,6 +70,10 @@ def run_vllm_capture( llm_kwargs["served_model_name"] = engine.canonical_model_name() if engine.max_model_len: llm_kwargs["max_model_len"] = int(engine.max_model_len) + if engine.max_num_batched_tokens is not None: + llm_kwargs["max_num_batched_tokens"] = int(engine.max_num_batched_tokens) + if engine.async_scheduling: + llm_kwargs["async_scheduling"] = True llm_kwargs.update(engine.extra_llm_kwargs()) reasoning_parser = (engine.reasoning_parser or "").strip() if spec.generation.capture_reasoning and not reasoning_parser and "qwen3" in str(engine.model_id).lower(): @@ -107,7 +111,21 @@ def run_vllm_capture( ) tokenizer = AutoTokenizer.from_pretrained(model_path, trust_remote_code=True) - llm = LLM(**llm_kwargs) + _preflight_prompt_lengths( + tokenizer=tokenizer, + examples=examples, + max_model_len=engine.max_model_len, + add_generation_prompt=bool(engine.add_generation_prompt), + generation_max_tokens=spec.generation.max_tokens if wants_generation else None, + tools=spec.generation.chat_tools, + tool_choice=spec.generation.tool_choice, + enable_thinking=engine.enable_thinking, + chat_template_kwargs=dict(engine.extra.get("chat_template_kwargs", {})), + ) + try: + llm = LLM(**llm_kwargs) + except RuntimeError as exc: + raise RuntimeError(_engine_init_error_message(exc, llm_kwargs=llm_kwargs)) from exc reasoning_parser = _build_reasoning_parser( tokenizer=tokenizer, parser_name=reasoning_parser, @@ -123,6 +141,83 @@ def run_vllm_capture( ) +def _preflight_prompt_lengths( + *, + tokenizer: Any, + examples: list[Example], + max_model_len: int | None, + add_generation_prompt: bool, + generation_max_tokens: int | None, + tools: Any = None, + tool_choice: Any = None, + enable_thinking: bool | None = None, + chat_template_kwargs: dict[str, Any] | None = None, +) -> None: + """Fail fast (before model weights load) if any prompt exceeds the context window. + + A single over-long prompt otherwise surfaces minutes later as a per-request + vLLM error after the engine has spun up, which wastes a GPU cold start and + buries the offending example. + """ + + if not max_model_len: + return + reserved = max(1, int(generation_max_tokens or 0)) + limit = int(max_model_len) - reserved + offenders: list[tuple[str, int]] = [] + for example in examples: + token_ids = _tokenize_prompt( + tokenizer=tokenizer, + prompt=example.prompt, + add_generation_prompt=add_generation_prompt, + tools=tools, + tool_choice=tool_choice, + enable_thinking=enable_thinking, + chat_template_kwargs=chat_template_kwargs, + ) + if len(token_ids) > limit: + offenders.append((str(example.key), len(token_ids))) + if offenders: + preview = ", ".join(f"{key}={count} tokens" for key, count in offenders[:10]) + raise SpecValidationError( + f"{len(offenders)} example(s) exceed the usable context window " + f"({limit} tokens = max_model_len {max_model_len} minus {reserved} reserved for generation): " + f"{preview}" + + ("" if len(offenders) <= 10 else f" … and {len(offenders) - 10} more") + + ". Raise max_model_len, shorten the examples, or drop them from the dataset." + ) + + +def _engine_init_error_message(exc: BaseException, *, llm_kwargs: dict[str, Any]) -> str: + """Attach actionable engine config context to vLLM's opaque init failures. + + vLLM's EngineCore subprocess prints the root cause (commonly: KV cache does + not fit) to stdout and re-raises a generic RuntimeError, which is all that + survives into run catalogs. + """ + + summary_keys = ( + "model", + "max_model_len", + "tensor_parallel_size", + "gpu_memory_utilization", + "enforce_eager", + "max_num_seqs", + "max_num_batched_tokens", + "enable_chunked_prefill", + "enable_prefix_caching", + ) + config = ", ".join(f"{key}={llm_kwargs[key]!r}" for key in summary_keys if key in llm_kwargs) + return ( + f"{exc} | engine config: {config} | The root cause is printed by the EngineCore " + "process in the worker logs above this traceback. A common cause is the KV cache " + "not fitting at max_model_len after model weights and the profiled activation peak: " + "enable chunked prefill with a bounded max_num_batched_tokens (the activation peak " + "is profiled at max_model_len when chunked prefill is off), reduce max_model_len, " + "or use a GPU with more memory." + ) + + def run_vllm_capture_with_runtime( *, runtime: Any, diff --git a/pipelines_v2/engine/vllm/engine.py b/pipelines_v2/engine/vllm/engine.py index 88f8ff0..fcc2265 100644 --- a/pipelines_v2/engine/vllm/engine.py +++ b/pipelines_v2/engine/vllm/engine.py @@ -150,10 +150,17 @@ def runtime_spec(self) -> PythonRuntimeSpec: debug_value = str(os.getenv("XENON_ACTIVATION_PATCH_DEBUG", "") or "").strip() if debug_value: env["XENON_ACTIVATION_PATCH_DEBUG"] = debug_value + # vllm is pinned because residual capture relies on the + # `extract_hidden_states` speculative-decoding path, which has changed + # shape across minor releases (0.19.1 shipped a regression in the v1 + # engine's input validator). Unpinned installs mean any Modal image + # rebuild can silently change engine behavior; bump deliberately and + # re-verify capture before raising the pin. Keep in sync with + # yora/modal_base.py. return PythonRuntimeSpec( pip_packages=( "matplotlib", - "vllm", + "vllm==0.19.0", "torch", "transformers", "safetensors", diff --git a/pipelines_v2/operations/readouts/linear.py b/pipelines_v2/operations/readouts/linear.py index d52f8a8..9287849 100644 --- a/pipelines_v2/operations/readouts/linear.py +++ b/pipelines_v2/operations/readouts/linear.py @@ -7,6 +7,7 @@ from pipelines_v2.core.types import OperationSpec, RuntimeSecret from pipelines_v2.operations.common._shared import ( + analysis_runtime_spec, analysis_runtime_spec_for_refs, row_selector_from_dict, runtime_secrets_from_refs, @@ -80,6 +81,9 @@ class PersistedProbeImportSpec(OperationSpec): kind: ClassVar[str] = "persisted_probe_import" + def runtime_spec(self) -> Any | None: + return analysis_runtime_spec() + @classmethod def from_dict(cls, payload: dict[str, Any]) -> "PersistedProbeImportSpec": return cls( diff --git a/pyproject.toml b/pyproject.toml index 7636c47..f3c1a7b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,14 +40,13 @@ requires = ["setuptools>=77", "wheel"] build-backend = "setuptools.build_meta" [tool.setuptools.packages.find] -include = ["pipelines_v2*"] +include = ["pipelines_v2*", "papers*"] exclude = [ "pipelines_v2.dashboard*", "artifacts*", "dashboard*", "methodology*", "operations*", - "papers*", "platform*", "references*", "scripts*", @@ -67,3 +66,12 @@ markers = [ "interp: tests that require optional mech-interp dependencies such as torch or scikit-learn", "network: tests that require network access", ] + +[tool.setuptools.package-data] +"papers.voice" = [ + "model_assets/**/*.toml", + "emotions/replication/data/*.txt", + "schemas/*.json", + "assistant_axis/reports/**/*.json", + "assistant_axis/reports/**/*.md", +] diff --git a/tests/pipelines_v2/engine/test_vllm_capture_helpers.py b/tests/pipelines_v2/engine/test_vllm_capture_helpers.py index e8e1fc5..9655278 100644 --- a/tests/pipelines_v2/engine/test_vllm_capture_helpers.py +++ b/tests/pipelines_v2/engine/test_vllm_capture_helpers.py @@ -212,3 +212,64 @@ def test_generation_rows_preserve_reasoning_and_structured_payloads_and_reject_m with pytest.raises(RuntimeError, match="output count does not match"): _generation_rows_from_outputs(examples, rows[:1]) + + +class _CountingTokenizer: + """Tokenizer stub: one token per character of the prompt string.""" + + def __call__(self, text: str, *, add_special_tokens: bool, return_offsets_mapping: bool) -> Any: + return types.SimpleNamespace( + input_ids=list(range(len(text))), + offset_mapping=[(i, i + 1) for i in range(len(text))], + ) + + +@pytest.mark.unit +@pytest.mark.vllm +def test_preflight_prompt_lengths_rejects_overlong_examples() -> None: + from pipelines_v2.core.types import SpecValidationError + from pipelines_v2.engine.vllm.capture import _preflight_prompt_lengths + + tokenizer = _CountingTokenizer() + examples = [ + Example(key="fits", prompt="ab"), + Example(key="too_long", prompt="abcdefgh"), + ] + + # limit = max_model_len - 1 reserved token = 7; "too_long" is 8 tokens. + with pytest.raises(SpecValidationError, match=r"too_long=8 tokens"): + _preflight_prompt_lengths( + tokenizer=tokenizer, + examples=examples, + max_model_len=8, + add_generation_prompt=False, + generation_max_tokens=None, + ) + + # Same prompts pass once the window covers them. + _preflight_prompt_lengths( + tokenizer=tokenizer, + examples=examples, + max_model_len=9, + add_generation_prompt=False, + generation_max_tokens=None, + ) + + # No max_model_len means no constraint to enforce. + _preflight_prompt_lengths( + tokenizer=tokenizer, + examples=examples, + max_model_len=None, + add_generation_prompt=False, + generation_max_tokens=None, + ) + + # Generation budget tightens the usable window. + with pytest.raises(SpecValidationError, match=r"2 example\(s\) exceed"): + _preflight_prompt_lengths( + tokenizer=tokenizer, + examples=examples, + max_model_len=8, + add_generation_prompt=False, + generation_max_tokens=7, + )